@alien_intelligence/data-api-client 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -0
- package/dist/apis/AdminApi.d.ts +84 -0
- package/dist/apis/AdminApi.js +106 -0
- package/dist/apis/DatasetsApi.d.ts +221 -0
- package/dist/apis/DatasetsApi.js +250 -0
- package/dist/apis/DefaultApi.d.ts +48 -0
- package/dist/apis/DefaultApi.js +84 -0
- package/dist/apis/EmbeddingsApi.d.ts +111 -0
- package/dist/apis/EmbeddingsApi.js +134 -0
- package/dist/apis/EntriesApi.d.ts +458 -0
- package/dist/apis/EntriesApi.js +500 -0
- package/dist/apis/HealthApi.d.ts +118 -0
- package/dist/apis/HealthApi.js +125 -0
- package/dist/apis/PipelinesApi.d.ts +229 -0
- package/dist/apis/PipelinesApi.js +242 -0
- package/dist/apis/SearchApi.d.ts +109 -0
- package/dist/apis/SearchApi.js +144 -0
- package/dist/apis/SyncApi.d.ts +80 -0
- package/dist/apis/SyncApi.js +103 -0
- package/dist/apis/WebhooksApi.d.ts +94 -0
- package/dist/apis/WebhooksApi.js +127 -0
- package/dist/apis/WeightsApi.d.ts +276 -0
- package/dist/apis/WeightsApi.js +328 -0
- package/dist/apis/index.d.ts +11 -0
- package/dist/apis/index.js +29 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +21 -0
- package/dist/models/ArtifactInputConfig.d.ts +46 -0
- package/dist/models/ArtifactInputConfig.js +58 -0
- package/dist/models/BatchContentRequest.d.ts +32 -0
- package/dist/models/BatchContentRequest.js +50 -0
- package/dist/models/BatchContentResponse.d.ts +33 -0
- package/dist/models/BatchContentResponse.js +51 -0
- package/dist/models/BatchGetEntriesRequest.d.ts +56 -0
- package/dist/models/BatchGetEntriesRequest.js +58 -0
- package/dist/models/BatchGetEntriesResponse.d.ts +39 -0
- package/dist/models/BatchGetEntriesResponse.js +55 -0
- package/dist/models/ChunkSearchResponse.d.ts +47 -0
- package/dist/models/ChunkSearchResponse.js +57 -0
- package/dist/models/ChunkSearchResult.d.ts +52 -0
- package/dist/models/ChunkSearchResult.js +58 -0
- package/dist/models/CollectionInfo.d.ts +50 -0
- package/dist/models/CollectionInfo.js +62 -0
- package/dist/models/ComponentArtifact.d.ts +46 -0
- package/dist/models/ComponentArtifact.js +54 -0
- package/dist/models/ComponentListResponse.d.ts +47 -0
- package/dist/models/ComponentListResponse.js +57 -0
- package/dist/models/ComponentMetadata.d.ts +95 -0
- package/dist/models/ComponentMetadata.js +74 -0
- package/dist/models/ComponentParameter.d.ts +48 -0
- package/dist/models/ComponentParameter.js +55 -0
- package/dist/models/CreateCollectionRequest.d.ts +44 -0
- package/dist/models/CreateCollectionRequest.js +54 -0
- package/dist/models/Dataset.d.ts +117 -0
- package/dist/models/Dataset.js +94 -0
- package/dist/models/DatasetCreateRequest.d.ts +58 -0
- package/dist/models/DatasetCreateRequest.js +68 -0
- package/dist/models/DatasetListResponse.d.ts +51 -0
- package/dist/models/DatasetListResponse.js +59 -0
- package/dist/models/DatasetPipelineConfigInput.d.ts +62 -0
- package/dist/models/DatasetPipelineConfigInput.js +65 -0
- package/dist/models/DatasetPipelineConfigOutput.d.ts +62 -0
- package/dist/models/DatasetPipelineConfigOutput.js +65 -0
- package/dist/models/DatasetResponse.d.ts +124 -0
- package/dist/models/DatasetResponse.js +100 -0
- package/dist/models/DatasetSchemaDefinition.d.ts +65 -0
- package/dist/models/DatasetSchemaDefinition.js +71 -0
- package/dist/models/DatasetSchemaOriginal.d.ts +46 -0
- package/dist/models/DatasetSchemaOriginal.js +52 -0
- package/dist/models/DatasetSchemaProcessed.d.ts +46 -0
- package/dist/models/DatasetSchemaProcessed.js +52 -0
- package/dist/models/DatasetSchemaProcessing.d.ts +38 -0
- package/dist/models/DatasetSchemaProcessing.js +50 -0
- package/dist/models/DatasetType.d.ts +27 -0
- package/dist/models/DatasetType.js +53 -0
- package/dist/models/DatasetUpdateSchemaRequest.d.ts +39 -0
- package/dist/models/DatasetUpdateSchemaRequest.js +55 -0
- package/dist/models/Default.d.ts +26 -0
- package/dist/models/Default.js +38 -0
- package/dist/models/EmbeddingProvider.d.ts +27 -0
- package/dist/models/EmbeddingProvider.js +53 -0
- package/dist/models/EmbeddingResponse.d.ts +57 -0
- package/dist/models/EmbeddingResponse.js +67 -0
- package/dist/models/Entry.d.ts +130 -0
- package/dist/models/Entry.js +100 -0
- package/dist/models/EntryContentResponse.d.ts +40 -0
- package/dist/models/EntryContentResponse.js +54 -0
- package/dist/models/EntryCreateRequest.d.ts +58 -0
- package/dist/models/EntryCreateRequest.js +62 -0
- package/dist/models/EntryCreateResponse.d.ts +39 -0
- package/dist/models/EntryCreateResponse.js +53 -0
- package/dist/models/EntryManifest.d.ts +71 -0
- package/dist/models/EntryManifest.js +65 -0
- package/dist/models/EntryPreview.d.ts +56 -0
- package/dist/models/EntryPreview.js +54 -0
- package/dist/models/EntrySearchResponse.d.ts +47 -0
- package/dist/models/EntrySearchResponse.js +57 -0
- package/dist/models/EntrySearchResult.d.ts +65 -0
- package/dist/models/EntrySearchResult.js +69 -0
- package/dist/models/EntryStatus.d.ts +29 -0
- package/dist/models/EntryStatus.js +55 -0
- package/dist/models/EntryUpdateRequest.d.ts +53 -0
- package/dist/models/EntryUpdateRequest.js +55 -0
- package/dist/models/EntryWithContent.d.ts +132 -0
- package/dist/models/EntryWithContent.js +102 -0
- package/dist/models/FileMetadata.d.ts +62 -0
- package/dist/models/FileMetadata.js +64 -0
- package/dist/models/GenerateEmbeddingsRequest.d.ts +44 -0
- package/dist/models/GenerateEmbeddingsRequest.js +54 -0
- package/dist/models/HTTPValidationError.d.ts +33 -0
- package/dist/models/HTTPValidationError.js +49 -0
- package/dist/models/HealthResponse.d.ts +50 -0
- package/dist/models/HealthResponse.js +62 -0
- package/dist/models/KeywordSearchHit.d.ts +96 -0
- package/dist/models/KeywordSearchHit.js +82 -0
- package/dist/models/KeywordSearchRequest.d.ts +102 -0
- package/dist/models/KeywordSearchRequest.js +80 -0
- package/dist/models/KeywordSearchResponse.d.ts +47 -0
- package/dist/models/KeywordSearchResponse.js +57 -0
- package/dist/models/ModelInfo.d.ts +51 -0
- package/dist/models/ModelInfo.js +63 -0
- package/dist/models/OriginalManifest.d.ts +41 -0
- package/dist/models/OriginalManifest.js +51 -0
- package/dist/models/PipelineStepConfig.d.ts +80 -0
- package/dist/models/PipelineStepConfig.js +69 -0
- package/dist/models/PresetListResponse.d.ts +42 -0
- package/dist/models/PresetListResponse.js +54 -0
- package/dist/models/ProcessedManifest.d.ts +59 -0
- package/dist/models/ProcessedManifest.js +57 -0
- package/dist/models/ProcessingManifest.d.ts +39 -0
- package/dist/models/ProcessingManifest.js +51 -0
- package/dist/models/RetryFailedWebhooksResponse.d.ts +44 -0
- package/dist/models/RetryFailedWebhooksResponse.js +58 -0
- package/dist/models/SaveProcessedContentRequest.d.ts +42 -0
- package/dist/models/SaveProcessedContentRequest.js +52 -0
- package/dist/models/SaveProcessedContentResponse.d.ts +45 -0
- package/dist/models/SaveProcessedContentResponse.js +57 -0
- package/dist/models/SearchSnippet.d.ts +57 -0
- package/dist/models/SearchSnippet.js +65 -0
- package/dist/models/SnippetContext.d.ts +68 -0
- package/dist/models/SnippetContext.js +75 -0
- package/dist/models/UploadFileResponse.d.ts +63 -0
- package/dist/models/UploadFileResponse.js +69 -0
- package/dist/models/ValidationError.d.ts +45 -0
- package/dist/models/ValidationError.js +59 -0
- package/dist/models/ValidationErrorLocInner.d.ts +26 -0
- package/dist/models/ValidationErrorLocInner.js +38 -0
- package/dist/models/VectorSearchRequest.d.ts +71 -0
- package/dist/models/VectorSearchRequest.js +60 -0
- package/dist/models/WebhookEndpointCreate.d.ts +32 -0
- package/dist/models/WebhookEndpointCreate.js +50 -0
- package/dist/models/WebhookEndpointResponse.d.ts +50 -0
- package/dist/models/WebhookEndpointResponse.js +62 -0
- package/dist/models/Weight.d.ts +101 -0
- package/dist/models/Weight.js +85 -0
- package/dist/models/WeightListResponse.d.ts +51 -0
- package/dist/models/WeightListResponse.js +59 -0
- package/dist/models/WeightResponse.d.ts +107 -0
- package/dist/models/WeightResponse.js +87 -0
- package/dist/models/WeightType.d.ts +26 -0
- package/dist/models/WeightType.js +52 -0
- package/dist/models/index.d.ts +66 -0
- package/dist/models/index.js +84 -0
- package/dist/runtime.d.ts +182 -0
- package/dist/runtime.js +334 -0
- package/package.json +38 -0
- package/src/apis/AdminApi.ts +140 -0
- package/src/apis/DatasetsApi.ts +461 -0
- package/src/apis/DefaultApi.ts +79 -0
- package/src/apis/EmbeddingsApi.ts +204 -0
- package/src/apis/EntriesApi.ts +969 -0
- package/src/apis/HealthApi.ts +161 -0
- package/src/apis/PipelinesApi.ts +432 -0
- package/src/apis/SearchApi.ts +234 -0
- package/src/apis/SyncApi.ts +125 -0
- package/src/apis/WebhooksApi.ts +191 -0
- package/src/apis/WeightsApi.ts +600 -0
- package/src/apis/index.ts +13 -0
- package/src/index.ts +5 -0
- package/src/models/ArtifactInputConfig.ts +86 -0
- package/src/models/BatchContentRequest.ts +66 -0
- package/src/models/BatchContentResponse.ts +74 -0
- package/src/models/BatchGetEntriesRequest.ts +98 -0
- package/src/models/BatchGetEntriesResponse.ts +83 -0
- package/src/models/ChunkSearchResponse.ts +91 -0
- package/src/models/ChunkSearchResult.ts +91 -0
- package/src/models/CollectionInfo.ts +93 -0
- package/src/models/ComponentArtifact.ts +84 -0
- package/src/models/ComponentListResponse.ts +93 -0
- package/src/models/ComponentMetadata.ts +158 -0
- package/src/models/ComponentParameter.ts +93 -0
- package/src/models/CreateCollectionRequest.ts +82 -0
- package/src/models/Dataset.ts +200 -0
- package/src/models/DatasetCreateRequest.ts +119 -0
- package/src/models/DatasetListResponse.ts +99 -0
- package/src/models/DatasetPipelineConfigInput.ts +112 -0
- package/src/models/DatasetPipelineConfigOutput.ts +112 -0
- package/src/models/DatasetResponse.ts +212 -0
- package/src/models/DatasetSchemaDefinition.ts +132 -0
- package/src/models/DatasetSchemaOriginal.ts +81 -0
- package/src/models/DatasetSchemaProcessed.ts +81 -0
- package/src/models/DatasetSchemaProcessing.ts +73 -0
- package/src/models/DatasetType.ts +55 -0
- package/src/models/DatasetUpdateSchemaRequest.ts +83 -0
- package/src/models/Default.ts +46 -0
- package/src/models/EmbeddingProvider.ts +55 -0
- package/src/models/EmbeddingResponse.ts +112 -0
- package/src/models/Entry.ts +218 -0
- package/src/models/EntryContentResponse.ts +75 -0
- package/src/models/EntryCreateRequest.ts +100 -0
- package/src/models/EntryCreateResponse.ts +82 -0
- package/src/models/EntryManifest.ts +135 -0
- package/src/models/EntryPreview.ts +89 -0
- package/src/models/EntrySearchResponse.ts +91 -0
- package/src/models/EntrySearchResult.ts +118 -0
- package/src/models/EntryStatus.ts +57 -0
- package/src/models/EntryUpdateRequest.ts +99 -0
- package/src/models/EntryWithContent.ts +220 -0
- package/src/models/FileMetadata.ts +108 -0
- package/src/models/GenerateEmbeddingsRequest.ts +82 -0
- package/src/models/HTTPValidationError.ts +73 -0
- package/src/models/HealthResponse.ts +93 -0
- package/src/models/KeywordSearchHit.ts +166 -0
- package/src/models/KeywordSearchRequest.ts +159 -0
- package/src/models/KeywordSearchResponse.ts +91 -0
- package/src/models/ModelInfo.ts +103 -0
- package/src/models/OriginalManifest.ts +81 -0
- package/src/models/PipelineStepConfig.ts +135 -0
- package/src/models/PresetListResponse.ts +77 -0
- package/src/models/ProcessedManifest.ts +105 -0
- package/src/models/ProcessingManifest.ts +81 -0
- package/src/models/RetryFailedWebhooksResponse.ts +84 -0
- package/src/models/SaveProcessedContentRequest.ts +74 -0
- package/src/models/SaveProcessedContentResponse.ts +91 -0
- package/src/models/SearchSnippet.ts +109 -0
- package/src/models/SnippetContext.ts +113 -0
- package/src/models/UploadFileResponse.ts +118 -0
- package/src/models/ValidationError.ts +92 -0
- package/src/models/ValidationErrorLocInner.ts +46 -0
- package/src/models/VectorSearchRequest.ts +116 -0
- package/src/models/WebhookEndpointCreate.ts +66 -0
- package/src/models/WebhookEndpointResponse.ts +93 -0
- package/src/models/Weight.ts +170 -0
- package/src/models/WeightListResponse.ts +99 -0
- package/src/models/WeightResponse.ts +178 -0
- package/src/models/WeightType.ts +54 -0
- package/src/models/index.ts +68 -0
- package/src/runtime.ts +431 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Request to create a new entry.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface EntryCreateRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface EntryCreateRequest {
|
|
18
|
+
/**
|
|
19
|
+
* Parent dataset ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof EntryCreateRequest
|
|
22
|
+
*/
|
|
23
|
+
datasetId: number;
|
|
24
|
+
/**
|
|
25
|
+
* Entry name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EntryCreateRequest
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
* URL-friendly slug
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EntryCreateRequest
|
|
34
|
+
*/
|
|
35
|
+
slug: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EntryCreateRequest
|
|
40
|
+
*/
|
|
41
|
+
description?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {{ [key: string]: any; }}
|
|
45
|
+
* @memberof EntryCreateRequest
|
|
46
|
+
*/
|
|
47
|
+
metadata?: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
} | null;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the EntryCreateRequest interface.
|
|
53
|
+
*/
|
|
54
|
+
export declare function instanceOfEntryCreateRequest(value: object): value is EntryCreateRequest;
|
|
55
|
+
export declare function EntryCreateRequestFromJSON(json: any): EntryCreateRequest;
|
|
56
|
+
export declare function EntryCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntryCreateRequest;
|
|
57
|
+
export declare function EntryCreateRequestToJSON(json: any): EntryCreateRequest;
|
|
58
|
+
export declare function EntryCreateRequestToJSONTyped(value?: EntryCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Client Data API
|
|
6
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfEntryCreateRequest = instanceOfEntryCreateRequest;
|
|
17
|
+
exports.EntryCreateRequestFromJSON = EntryCreateRequestFromJSON;
|
|
18
|
+
exports.EntryCreateRequestFromJSONTyped = EntryCreateRequestFromJSONTyped;
|
|
19
|
+
exports.EntryCreateRequestToJSON = EntryCreateRequestToJSON;
|
|
20
|
+
exports.EntryCreateRequestToJSONTyped = EntryCreateRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the EntryCreateRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfEntryCreateRequest(value) {
|
|
25
|
+
if (!('datasetId' in value) || value['datasetId'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('slug' in value) || value['slug'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function EntryCreateRequestFromJSON(json) {
|
|
34
|
+
return EntryCreateRequestFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function EntryCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'datasetId': json['dataset_id'],
|
|
42
|
+
'name': json['name'],
|
|
43
|
+
'slug': json['slug'],
|
|
44
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
45
|
+
'metadata': json['metadata'] == null ? undefined : json['metadata'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
function EntryCreateRequestToJSON(json) {
|
|
49
|
+
return EntryCreateRequestToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function EntryCreateRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
52
|
+
if (value == null) {
|
|
53
|
+
return value;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'dataset_id': value['datasetId'],
|
|
57
|
+
'name': value['name'],
|
|
58
|
+
'slug': value['slug'],
|
|
59
|
+
'description': value['description'],
|
|
60
|
+
'metadata': value['metadata'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Entry } from './Entry';
|
|
13
|
+
/**
|
|
14
|
+
* Response after creating an entry.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EntryCreateResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface EntryCreateResponse {
|
|
19
|
+
/**
|
|
20
|
+
* Created entry
|
|
21
|
+
* @type {Entry}
|
|
22
|
+
* @memberof EntryCreateResponse
|
|
23
|
+
*/
|
|
24
|
+
entry: Entry;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EntryCreateResponse
|
|
29
|
+
*/
|
|
30
|
+
uploadUrl?: string | null;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the EntryCreateResponse interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfEntryCreateResponse(value: object): value is EntryCreateResponse;
|
|
36
|
+
export declare function EntryCreateResponseFromJSON(json: any): EntryCreateResponse;
|
|
37
|
+
export declare function EntryCreateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntryCreateResponse;
|
|
38
|
+
export declare function EntryCreateResponseToJSON(json: any): EntryCreateResponse;
|
|
39
|
+
export declare function EntryCreateResponseToJSONTyped(value?: EntryCreateResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Client Data API
|
|
6
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfEntryCreateResponse = instanceOfEntryCreateResponse;
|
|
17
|
+
exports.EntryCreateResponseFromJSON = EntryCreateResponseFromJSON;
|
|
18
|
+
exports.EntryCreateResponseFromJSONTyped = EntryCreateResponseFromJSONTyped;
|
|
19
|
+
exports.EntryCreateResponseToJSON = EntryCreateResponseToJSON;
|
|
20
|
+
exports.EntryCreateResponseToJSONTyped = EntryCreateResponseToJSONTyped;
|
|
21
|
+
const Entry_1 = require("./Entry");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the EntryCreateResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfEntryCreateResponse(value) {
|
|
26
|
+
if (!('entry' in value) || value['entry'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function EntryCreateResponseFromJSON(json) {
|
|
31
|
+
return EntryCreateResponseFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function EntryCreateResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'entry': (0, Entry_1.EntryFromJSON)(json['entry']),
|
|
39
|
+
'uploadUrl': json['upload_url'] == null ? undefined : json['upload_url'],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function EntryCreateResponseToJSON(json) {
|
|
43
|
+
return EntryCreateResponseToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
function EntryCreateResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'entry': (0, Entry_1.EntryToJSON)(value['entry']),
|
|
51
|
+
'upload_url': value['uploadUrl'],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ProcessingManifest } from './ProcessingManifest';
|
|
13
|
+
import type { ProcessedManifest } from './ProcessedManifest';
|
|
14
|
+
import type { OriginalManifest } from './OriginalManifest';
|
|
15
|
+
/**
|
|
16
|
+
* Complete entry manifest structure.
|
|
17
|
+
*
|
|
18
|
+
* Schema versioning allows incremental migration:
|
|
19
|
+
* - Dataset has current_schema_version (e.g., "v3")
|
|
20
|
+
* - Each entry manifest has schema_version (e.g., "v1", "v2", "v3")
|
|
21
|
+
* - Entries with old versions can be migrated one by one
|
|
22
|
+
* - Query: WHERE manifest->>'schema_version' < dataset.current_schema_version
|
|
23
|
+
* @export
|
|
24
|
+
* @interface EntryManifest
|
|
25
|
+
*/
|
|
26
|
+
export interface EntryManifest {
|
|
27
|
+
/**
|
|
28
|
+
* Schema version (e.g., 'v3')
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof EntryManifest
|
|
31
|
+
*/
|
|
32
|
+
schemaVersion: string;
|
|
33
|
+
/**
|
|
34
|
+
* Dataset schema identifier (e.g., 'arxiv_papers_ocr')
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof EntryManifest
|
|
37
|
+
*/
|
|
38
|
+
datasetSchemaId: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {OriginalManifest}
|
|
42
|
+
* @memberof EntryManifest
|
|
43
|
+
*/
|
|
44
|
+
original?: OriginalManifest | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {ProcessingManifest}
|
|
48
|
+
* @memberof EntryManifest
|
|
49
|
+
*/
|
|
50
|
+
processing?: ProcessingManifest | null;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {ProcessedManifest}
|
|
54
|
+
* @memberof EntryManifest
|
|
55
|
+
*/
|
|
56
|
+
processed?: ProcessedManifest | null;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof EntryManifest
|
|
61
|
+
*/
|
|
62
|
+
fullManifestKey?: string | null;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Check if a given object implements the EntryManifest interface.
|
|
66
|
+
*/
|
|
67
|
+
export declare function instanceOfEntryManifest(value: object): value is EntryManifest;
|
|
68
|
+
export declare function EntryManifestFromJSON(json: any): EntryManifest;
|
|
69
|
+
export declare function EntryManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntryManifest;
|
|
70
|
+
export declare function EntryManifestToJSON(json: any): EntryManifest;
|
|
71
|
+
export declare function EntryManifestToJSONTyped(value?: EntryManifest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Client Data API
|
|
6
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfEntryManifest = instanceOfEntryManifest;
|
|
17
|
+
exports.EntryManifestFromJSON = EntryManifestFromJSON;
|
|
18
|
+
exports.EntryManifestFromJSONTyped = EntryManifestFromJSONTyped;
|
|
19
|
+
exports.EntryManifestToJSON = EntryManifestToJSON;
|
|
20
|
+
exports.EntryManifestToJSONTyped = EntryManifestToJSONTyped;
|
|
21
|
+
const ProcessingManifest_1 = require("./ProcessingManifest");
|
|
22
|
+
const ProcessedManifest_1 = require("./ProcessedManifest");
|
|
23
|
+
const OriginalManifest_1 = require("./OriginalManifest");
|
|
24
|
+
/**
|
|
25
|
+
* Check if a given object implements the EntryManifest interface.
|
|
26
|
+
*/
|
|
27
|
+
function instanceOfEntryManifest(value) {
|
|
28
|
+
if (!('schemaVersion' in value) || value['schemaVersion'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('datasetSchemaId' in value) || value['datasetSchemaId'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
function EntryManifestFromJSON(json) {
|
|
35
|
+
return EntryManifestFromJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
function EntryManifestFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if (json == null) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'schemaVersion': json['schema_version'],
|
|
43
|
+
'datasetSchemaId': json['dataset_schema_id'],
|
|
44
|
+
'original': json['original'] == null ? undefined : (0, OriginalManifest_1.OriginalManifestFromJSON)(json['original']),
|
|
45
|
+
'processing': json['processing'] == null ? undefined : (0, ProcessingManifest_1.ProcessingManifestFromJSON)(json['processing']),
|
|
46
|
+
'processed': json['processed'] == null ? undefined : (0, ProcessedManifest_1.ProcessedManifestFromJSON)(json['processed']),
|
|
47
|
+
'fullManifestKey': json['full_manifest_key'] == null ? undefined : json['full_manifest_key'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
function EntryManifestToJSON(json) {
|
|
51
|
+
return EntryManifestToJSONTyped(json, false);
|
|
52
|
+
}
|
|
53
|
+
function EntryManifestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'schema_version': value['schemaVersion'],
|
|
59
|
+
'dataset_schema_id': value['datasetSchemaId'],
|
|
60
|
+
'original': (0, OriginalManifest_1.OriginalManifestToJSON)(value['original']),
|
|
61
|
+
'processing': (0, ProcessingManifest_1.ProcessingManifestToJSON)(value['processing']),
|
|
62
|
+
'processed': (0, ProcessedManifest_1.ProcessedManifestToJSON)(value['processed']),
|
|
63
|
+
'full_manifest_key': value['fullManifestKey'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Lightweight entry metadata for search results (without full content).
|
|
14
|
+
* @export
|
|
15
|
+
* @interface EntryPreview
|
|
16
|
+
*/
|
|
17
|
+
export interface EntryPreview {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EntryPreview
|
|
22
|
+
*/
|
|
23
|
+
doi?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
* Author list (if available)
|
|
26
|
+
* @type {Array<{ [key: string]: string; }>}
|
|
27
|
+
* @memberof EntryPreview
|
|
28
|
+
*/
|
|
29
|
+
authors?: Array<{
|
|
30
|
+
[key: string]: string;
|
|
31
|
+
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Document categories (if available)
|
|
34
|
+
* @type {{ [key: string]: string; }}
|
|
35
|
+
* @memberof EntryPreview
|
|
36
|
+
*/
|
|
37
|
+
categories?: {
|
|
38
|
+
[key: string]: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Document statistics (contentLength, figureCount, referenceCount)
|
|
42
|
+
* @type {{ [key: string]: number; }}
|
|
43
|
+
* @memberof EntryPreview
|
|
44
|
+
*/
|
|
45
|
+
stats?: {
|
|
46
|
+
[key: string]: number;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the EntryPreview interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfEntryPreview(value: object): value is EntryPreview;
|
|
53
|
+
export declare function EntryPreviewFromJSON(json: any): EntryPreview;
|
|
54
|
+
export declare function EntryPreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntryPreview;
|
|
55
|
+
export declare function EntryPreviewToJSON(json: any): EntryPreview;
|
|
56
|
+
export declare function EntryPreviewToJSONTyped(value?: EntryPreview | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Client Data API
|
|
6
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfEntryPreview = instanceOfEntryPreview;
|
|
17
|
+
exports.EntryPreviewFromJSON = EntryPreviewFromJSON;
|
|
18
|
+
exports.EntryPreviewFromJSONTyped = EntryPreviewFromJSONTyped;
|
|
19
|
+
exports.EntryPreviewToJSON = EntryPreviewToJSON;
|
|
20
|
+
exports.EntryPreviewToJSONTyped = EntryPreviewToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the EntryPreview interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfEntryPreview(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function EntryPreviewFromJSON(json) {
|
|
28
|
+
return EntryPreviewFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function EntryPreviewFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'doi': json['doi'] == null ? undefined : json['doi'],
|
|
36
|
+
'authors': json['authors'] == null ? undefined : json['authors'],
|
|
37
|
+
'categories': json['categories'] == null ? undefined : json['categories'],
|
|
38
|
+
'stats': json['stats'] == null ? undefined : json['stats'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function EntryPreviewToJSON(json) {
|
|
42
|
+
return EntryPreviewToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function EntryPreviewToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'doi': value['doi'],
|
|
50
|
+
'authors': value['authors'],
|
|
51
|
+
'categories': value['categories'],
|
|
52
|
+
'stats': value['stats'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { EntrySearchResult } from './EntrySearchResult';
|
|
13
|
+
/**
|
|
14
|
+
* Response schema for entry-based vector search.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EntrySearchResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface EntrySearchResponse {
|
|
19
|
+
/**
|
|
20
|
+
* List of matching entries
|
|
21
|
+
* @type {Array<EntrySearchResult>}
|
|
22
|
+
* @memberof EntrySearchResponse
|
|
23
|
+
*/
|
|
24
|
+
results: Array<EntrySearchResult>;
|
|
25
|
+
/**
|
|
26
|
+
* Total number of entries returned
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof EntrySearchResponse
|
|
29
|
+
*/
|
|
30
|
+
total: number;
|
|
31
|
+
/**
|
|
32
|
+
* Query metadata
|
|
33
|
+
* @type {{ [key: string]: any; }}
|
|
34
|
+
* @memberof EntrySearchResponse
|
|
35
|
+
*/
|
|
36
|
+
queryInfo?: {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Check if a given object implements the EntrySearchResponse interface.
|
|
42
|
+
*/
|
|
43
|
+
export declare function instanceOfEntrySearchResponse(value: object): value is EntrySearchResponse;
|
|
44
|
+
export declare function EntrySearchResponseFromJSON(json: any): EntrySearchResponse;
|
|
45
|
+
export declare function EntrySearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntrySearchResponse;
|
|
46
|
+
export declare function EntrySearchResponseToJSON(json: any): EntrySearchResponse;
|
|
47
|
+
export declare function EntrySearchResponseToJSONTyped(value?: EntrySearchResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Client Data API
|
|
6
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfEntrySearchResponse = instanceOfEntrySearchResponse;
|
|
17
|
+
exports.EntrySearchResponseFromJSON = EntrySearchResponseFromJSON;
|
|
18
|
+
exports.EntrySearchResponseFromJSONTyped = EntrySearchResponseFromJSONTyped;
|
|
19
|
+
exports.EntrySearchResponseToJSON = EntrySearchResponseToJSON;
|
|
20
|
+
exports.EntrySearchResponseToJSONTyped = EntrySearchResponseToJSONTyped;
|
|
21
|
+
const EntrySearchResult_1 = require("./EntrySearchResult");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the EntrySearchResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfEntrySearchResponse(value) {
|
|
26
|
+
if (!('results' in value) || value['results'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('total' in value) || value['total'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function EntrySearchResponseFromJSON(json) {
|
|
33
|
+
return EntrySearchResponseFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function EntrySearchResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'results': (json['results'].map(EntrySearchResult_1.EntrySearchResultFromJSON)),
|
|
41
|
+
'total': json['total'],
|
|
42
|
+
'queryInfo': json['query_info'] == null ? undefined : json['query_info'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function EntrySearchResponseToJSON(json) {
|
|
46
|
+
return EntrySearchResponseToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function EntrySearchResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'results': (value['results'].map(EntrySearchResult_1.EntrySearchResultToJSON)),
|
|
54
|
+
'total': value['total'],
|
|
55
|
+
'query_info': value['queryInfo'],
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client Data API
|
|
3
|
+
* Client Cluster Data API - Manifest-based storage service
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ChunkSearchResult } from './ChunkSearchResult';
|
|
13
|
+
/**
|
|
14
|
+
* Single entry search result with full content.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EntrySearchResult
|
|
17
|
+
*/
|
|
18
|
+
export interface EntrySearchResult {
|
|
19
|
+
/**
|
|
20
|
+
* Entry ID
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof EntrySearchResult
|
|
23
|
+
*/
|
|
24
|
+
entryId: number;
|
|
25
|
+
/**
|
|
26
|
+
* Dataset ID
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof EntrySearchResult
|
|
29
|
+
*/
|
|
30
|
+
datasetId: number;
|
|
31
|
+
/**
|
|
32
|
+
* Entry name
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof EntrySearchResult
|
|
35
|
+
*/
|
|
36
|
+
name: string;
|
|
37
|
+
/**
|
|
38
|
+
* Best matching score from chunks
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof EntrySearchResult
|
|
41
|
+
*/
|
|
42
|
+
score: number;
|
|
43
|
+
/**
|
|
44
|
+
* Chunks that matched from this entry
|
|
45
|
+
* @type {Array<ChunkSearchResult>}
|
|
46
|
+
* @memberof EntrySearchResult
|
|
47
|
+
*/
|
|
48
|
+
matchingChunks: Array<ChunkSearchResult>;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {{ [key: string]: any; }}
|
|
52
|
+
* @memberof EntrySearchResult
|
|
53
|
+
*/
|
|
54
|
+
content?: {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
} | null;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Check if a given object implements the EntrySearchResult interface.
|
|
60
|
+
*/
|
|
61
|
+
export declare function instanceOfEntrySearchResult(value: object): value is EntrySearchResult;
|
|
62
|
+
export declare function EntrySearchResultFromJSON(json: any): EntrySearchResult;
|
|
63
|
+
export declare function EntrySearchResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntrySearchResult;
|
|
64
|
+
export declare function EntrySearchResultToJSON(json: any): EntrySearchResult;
|
|
65
|
+
export declare function EntrySearchResultToJSONTyped(value?: EntrySearchResult | null, ignoreDiscriminator?: boolean): any;
|