|
| 1 | +imports: |
| 2 | + commons: ./commons.yml |
| 3 | + apiReadV1Endpoint: ./api/v1/read/endpoint.yml |
| 4 | + navigation: ./navigation/__package__.yml |
| 5 | +types: |
| 6 | + AlgoliaSearchIndex: string |
| 7 | + Breadcrumbs: list<string> |
| 8 | + IndexSegmentId: string |
| 9 | + AlgoliaRecord: |
| 10 | + union: |
| 11 | + page-v3: AlgoliaPageRecordV3 |
| 12 | + endpoint-v3: AlgoliaEndpointRecordV3 |
| 13 | + websocket-v3: AlgoliaWebSocketRecordV3 |
| 14 | + webhook-v3: AlgoliaWebhookRecordV3 |
| 15 | + endpoint: AlgoliaEndpointRecord |
| 16 | + page: AlgoliaPageRecord |
| 17 | + endpoint-v2: AlgoliaEndpointRecordV2 |
| 18 | + page-v2: AlgoliaPageRecordV2 |
| 19 | + audiences: |
| 20 | + - read |
| 21 | + AlgoliaRecordVersionV3: |
| 22 | + properties: |
| 23 | + id: commons.VersionId |
| 24 | + slug: navigation.Slug |
| 25 | + AlgoliaPageRecordV3: |
| 26 | + properties: |
| 27 | + title: string |
| 28 | + content: optional<string> |
| 29 | + breadcrumbs: Breadcrumbs |
| 30 | + slug: navigation.Slug |
| 31 | + version: optional<AlgoliaRecordVersionV3> |
| 32 | + indexSegmentId: IndexSegmentId |
| 33 | + AlgoliaEndpointRecordV3: |
| 34 | + extends: AlgoliaPageRecordV3 |
| 35 | + properties: |
| 36 | + method: apiReadV1Endpoint.HttpMethod |
| 37 | + endpointPath: list<apiReadV1Endpoint.EndpointPathPart> |
| 38 | + isResponseStream: optional<boolean> |
| 39 | + AlgoliaWebSocketRecordV3: |
| 40 | + extends: AlgoliaPageRecordV3 |
| 41 | + properties: |
| 42 | + endpointPath: list<apiReadV1Endpoint.EndpointPathPart> |
| 43 | + AlgoliaWebhookRecordV3: |
| 44 | + extends: AlgoliaPageRecordV3 |
| 45 | + properties: |
| 46 | + method: apiReadV1Endpoint.HttpMethod |
| 47 | + endpointPath: list<apiReadV1Endpoint.EndpointPathPart> |
| 48 | + IndexSegment: |
| 49 | + properties: |
| 50 | + id: IndexSegmentId |
| 51 | + searchApiKey: string |
| 52 | + SingleAlgoliaIndexInfo: |
| 53 | + union: |
| 54 | + unversioned: UnversionedSingleAlgoliaIndexInfo |
| 55 | + versioned: VersionedSingleAlgoliaIndexInfo |
| 56 | + UnversionedSingleAlgoliaIndexInfo: |
| 57 | + properties: |
| 58 | + indexSegment: IndexSegment |
| 59 | + VersionedSingleAlgoliaIndexInfo: |
| 60 | + properties: |
| 61 | + indexSegmentsByVersionId: map<commons.VersionId, IndexSegment> |
| 62 | + SearchInfo: |
| 63 | + union: |
| 64 | + legacyMultiAlgoliaIndex: |
| 65 | + type: LegacyMultiAlgoliaIndexInfo |
| 66 | + docs: >- |
| 67 | + The legacy search storage where each docs website got its own algolia |
| 68 | + index. |
| 69 | + singleAlgoliaIndex: |
| 70 | + type: SingleAlgoliaIndexInfo |
| 71 | + docs: Every docs website is indexed in a global Algolia Index |
| 72 | + LegacyMultiAlgoliaIndexInfo: |
| 73 | + properties: |
| 74 | + algoliaIndex: optional<string> |
| 75 | + availability: deprecated |
| 76 | + AlgoliaEndpointRecord: |
| 77 | + properties: |
| 78 | + title: string |
| 79 | + subtitle: string |
| 80 | + path: string |
| 81 | + version: optional<commons.VersionId> |
| 82 | + versionSlug: optional<string> |
| 83 | + indexSegmentId: optional<string> |
| 84 | + availability: deprecated |
| 85 | + AlgoliaPageRecord: |
| 86 | + properties: |
| 87 | + title: string |
| 88 | + subtitle: string |
| 89 | + path: string |
| 90 | + version: optional<commons.VersionId> |
| 91 | + versionSlug: optional<string> |
| 92 | + indexSegmentId: optional<string> |
| 93 | + availability: deprecated |
| 94 | + AlgoliaRecordEndpointPath: |
| 95 | + properties: |
| 96 | + parts: list<apiReadV1Endpoint.EndpointPathPart> |
| 97 | + availability: deprecated |
| 98 | + AlgoliaRecordPathPart: |
| 99 | + properties: |
| 100 | + name: string |
| 101 | + urlSlug: string |
| 102 | + skipUrlSlug: optional<boolean> |
| 103 | + availability: deprecated |
| 104 | + AlgoliaRecordPath: |
| 105 | + properties: |
| 106 | + parts: list<AlgoliaRecordPathPart> |
| 107 | + docs: >- |
| 108 | + The path corresponding to a search record represented as a list of parts. |
| 109 | + If the docs are versioned, the version prefix must be added when building |
| 110 | + the string representation of the path. |
| 111 | + availability: deprecated |
| 112 | + AlgoliaRecordEndpointSummary: |
| 113 | + properties: |
| 114 | + name: optional<string> |
| 115 | + description: optional<string> |
| 116 | + method: apiReadV1Endpoint.HttpMethod |
| 117 | + path: AlgoliaRecordEndpointPath |
| 118 | + availability: deprecated |
| 119 | + AlgoliaRecordVersion: |
| 120 | + properties: |
| 121 | + id: commons.VersionId |
| 122 | + urlSlug: string |
| 123 | + availability: deprecated |
| 124 | + AlgoliaEndpointRecordV2: |
| 125 | + properties: |
| 126 | + endpoint: AlgoliaRecordEndpointSummary |
| 127 | + path: AlgoliaRecordPath |
| 128 | + version: optional<AlgoliaRecordVersion> |
| 129 | + indexSegmentId: IndexSegmentId |
| 130 | + availability: deprecated |
| 131 | + AlgoliaPageRecordV2: |
| 132 | + properties: |
| 133 | + title: string |
| 134 | + content: string |
| 135 | + path: AlgoliaRecordPath |
| 136 | + version: optional<AlgoliaRecordVersion> |
| 137 | + indexSegmentId: IndexSegmentId |
| 138 | + availability: deprecated |
0 commit comments