@amgix/amgix-client 1.0.0-beta1.3 → 1.0.0-beta2.1
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/dist/apis/AmgixApi.d.ts +19 -6
- package/dist/apis/AmgixApi.d.ts.map +1 -1
- package/dist/apis/AmgixApi.js +32 -4
- package/dist/models/BulkUploadRequest.d.ts +1 -1
- package/dist/models/BulkUploadRequest.js +1 -1
- package/dist/models/CollectionConfig.d.ts +2 -2
- package/dist/models/CollectionConfig.js +1 -1
- package/dist/models/CollectionExistsResponse.d.ts +33 -0
- package/dist/models/CollectionExistsResponse.d.ts.map +1 -0
- package/dist/models/CollectionExistsResponse.js +50 -0
- package/dist/models/CustomDocumentVector.d.ts +1 -1
- package/dist/models/CustomDocumentVector.js +1 -1
- package/dist/models/CustomVector.d.ts +1 -1
- package/dist/models/CustomVector.js +1 -1
- package/dist/models/Document.d.ts +1 -1
- package/dist/models/Document.js +1 -1
- package/dist/models/DocumentStatus.d.ts +1 -1
- package/dist/models/DocumentStatus.js +1 -1
- package/dist/models/DocumentStatusResponse.d.ts +1 -1
- package/dist/models/DocumentStatusResponse.js +1 -1
- package/dist/models/HTTPValidationError.d.ts +1 -1
- package/dist/models/HTTPValidationError.js +1 -1
- package/dist/models/MetadataFilter.d.ts +1 -1
- package/dist/models/MetadataFilter.js +1 -1
- package/dist/models/MetadataIndex.d.ts +1 -1
- package/dist/models/MetadataIndex.js +1 -1
- package/dist/models/OkResponse.d.ts +1 -1
- package/dist/models/OkResponse.js +1 -1
- package/dist/models/QueueInfo.d.ts +1 -1
- package/dist/models/QueueInfo.js +1 -1
- package/dist/models/ReadyResponse.d.ts +57 -0
- package/dist/models/ReadyResponse.d.ts.map +1 -0
- package/dist/models/ReadyResponse.js +66 -0
- package/dist/models/SearchQuery.d.ts +1 -1
- package/dist/models/SearchQuery.js +1 -1
- package/dist/models/SearchResult.d.ts +1 -1
- package/dist/models/SearchResult.js +1 -1
- package/dist/models/ValidationError.d.ts +1 -1
- package/dist/models/ValidationError.js +1 -1
- package/dist/models/ValidationErrorLocInner.d.ts +1 -1
- package/dist/models/ValidationErrorLocInner.js +1 -1
- package/dist/models/Vector.d.ts +1 -1
- package/dist/models/Vector.js +1 -1
- package/dist/models/VectorConfig.d.ts +7 -1
- package/dist/models/VectorConfig.d.ts.map +1 -1
- package/dist/models/VectorConfig.js +3 -1
- package/dist/models/VectorScore.d.ts +1 -1
- package/dist/models/VectorScore.js +1 -1
- package/dist/models/VectorSearchWeight.d.ts +1 -1
- package/dist/models/VectorSearchWeight.js +1 -1
- package/dist/models/VersionResponse.d.ts +1 -1
- package/dist/models/VersionResponse.js +1 -1
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +2 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
package/dist/apis/AmgixApi.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { BulkUploadRequest, CollectionConfig, Document, DocumentStatusResponse, OkResponse, QueueInfo, SearchQuery, SearchResult, VersionResponse } from '../models/index';
|
|
13
|
+
import type { BulkUploadRequest, CollectionConfig, CollectionExistsResponse, Document, DocumentStatusResponse, OkResponse, QueueInfo, ReadyResponse, SearchQuery, SearchResult, VersionResponse } from '../models/index';
|
|
14
|
+
export interface CollectionExistsRequest {
|
|
15
|
+
collectionName: string;
|
|
16
|
+
}
|
|
14
17
|
export interface CreateCollectionRequest {
|
|
15
18
|
collectionName: string;
|
|
16
19
|
collectionConfig: CollectionConfig;
|
|
@@ -62,6 +65,16 @@ export interface UpsertDocumentsBulkRequest {
|
|
|
62
65
|
*
|
|
63
66
|
*/
|
|
64
67
|
export declare class AmgixApi extends runtime.BaseAPI {
|
|
68
|
+
/**
|
|
69
|
+
* Check if a collection exists. Always returns 200 with exists true or false.
|
|
70
|
+
* Collection Exists
|
|
71
|
+
*/
|
|
72
|
+
collectionExistsRaw(requestParameters: CollectionExistsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CollectionExistsResponse>>;
|
|
73
|
+
/**
|
|
74
|
+
* Check if a collection exists. Always returns 200 with exists true or false.
|
|
75
|
+
* Collection Exists
|
|
76
|
+
*/
|
|
77
|
+
collectionExists(requestParameters: CollectionExistsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CollectionExistsResponse>;
|
|
65
78
|
/**
|
|
66
79
|
* Create a new collection. This endpoint creates a new collection with the specified name and vector configurations. It validates the provided model configurations and ensures all required features are supported by the database. Args: collection_name: The unique name for the new collection (alphanumeric, underscores, hyphens only). config: Configuration details for the collection, including vector types and storage options. Returns: An `OkResponse` object indicating the success of the operation. Raises: HTTPException: - 400 if model validation fails or required features are not supported. - 409 if a collection with the same name already exists. - 500 if the collection creation fails in the database.
|
|
67
80
|
* Create Collection
|
|
@@ -163,15 +176,15 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
163
176
|
*/
|
|
164
177
|
healthCheck(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
165
178
|
/**
|
|
166
|
-
* Check if service is ready to handle requests.
|
|
179
|
+
* Check if service is ready to handle requests. Runs four probes: database, rabbitmq, encoder (ping-encoder), rpc (ping-rpc). Returns 200 if all pass (fully ready), 218 if some fail (partial ready). Response body always includes all four probe results and a ready flag.
|
|
167
180
|
* Readiness Check
|
|
168
181
|
*/
|
|
169
|
-
healthReadyRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
182
|
+
healthReadyRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ReadyResponse>>;
|
|
170
183
|
/**
|
|
171
|
-
* Check if service is ready to handle requests.
|
|
184
|
+
* Check if service is ready to handle requests. Runs four probes: database, rabbitmq, encoder (ping-encoder), rpc (ping-rpc). Returns 200 if all pass (fully ready), 218 if some fail (partial ready). Response body always includes all four probe results and a ready flag.
|
|
172
185
|
* Readiness Check
|
|
173
186
|
*/
|
|
174
|
-
healthReady(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
187
|
+
healthReady(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReadyResponse>;
|
|
175
188
|
/**
|
|
176
189
|
* List all available collections. Retrieves a list of all collections managed by the application. Returns: A list of strings, where each string is the name of an available collection.
|
|
177
190
|
* List Collections
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AmgixApi.d.ts","sourceRoot":"","sources":["../../apis/AmgixApi.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,OAAO,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,EACV,iBAAiB,EACjB,gBAAgB,EAChB,QAAQ,EACR,sBAAsB,EAEtB,UAAU,EACV,SAAS,EACT,WAAW,EACX,YAAY,EACZ,eAAe,EAChB,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"AmgixApi.d.ts","sourceRoot":"","sources":["../../apis/AmgixApi.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,OAAO,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,EACV,iBAAiB,EACjB,gBAAgB,EAChB,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EAEtB,UAAU,EACV,SAAS,EACT,aAAa,EACb,WAAW,EACX,YAAY,EACZ,eAAe,EAChB,MAAM,iBAAiB,CAAC;AA4BzB,MAAM,WAAW,uBAAuB;IACpC,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,uBAAuB;IACpC,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,gBAAgB,CAAC;CACtC;AAED,MAAM,WAAW,uBAAuB;IACpC,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,4BAA4B;IACzC,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,qBAAqB;IAClC,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,sBAAsB;IACnC,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,0BAA0B;IACvC,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,6BAA6B;IAC1C,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,kBAAkB;IAC/B,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,wBAAwB;IACrC,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,aAAa;IAC1B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,WAAW,CAAC;CAC5B;AAED,MAAM,WAAW,qBAAqB;IAClC,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAED,MAAM,WAAW,yBAAyB;IACtC,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAED,MAAM,WAAW,0BAA0B;IACvC,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,iBAAiB,CAAC;CACxC;AAED;;GAEG;AACH,qBAAa,QAAS,SAAQ,OAAO,CAAC,OAAO;IAEzC;;;OAGG;IACG,mBAAmB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC;IA0BzL;;;OAGG;IACG,gBAAgB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,wBAAwB,CAAC;IAKjK;;;OAGG;IACG,mBAAmB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAoC3K;;;OAGG;IACG,gBAAgB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKnJ;;;OAGG;IACG,mBAAmB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IA0B3K;;;OAGG;IACG,gBAAgB,CAAC,iBAAiB,EAAE,uBAAuB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKnJ;;;OAGG;IACG,wBAAwB,CAAC,iBAAiB,EAAE,4BAA4B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IA0BrL;;;OAGG;IACG,qBAAqB,CAAC,iBAAiB,EAAE,4BAA4B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAK7J;;;OAGG;IACG,iBAAiB,CAAC,iBAAiB,EAAE,qBAAqB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAkCvK;;;OAGG;IACG,cAAc,CAAC,iBAAiB,EAAE,qBAAqB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAK/I;;;OAGG;IACG,kBAAkB,CAAC,iBAAiB,EAAE,sBAAsB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IA0BzK;;;OAGG;IACG,eAAe,CAAC,iBAAiB,EAAE,sBAAsB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKjJ;;;OAGG;IACG,sBAAsB,CAAC,iBAAiB,EAAE,0BAA0B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;IA0BvL;;;OAGG;IACG,mBAAmB,CAAC,iBAAiB,EAAE,0BAA0B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAK/J;;;OAGG;IACG,yBAAyB,CAAC,iBAAiB,EAAE,6BAA6B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;IA0BtL;;;OAGG;IACG,sBAAsB,CAAC,iBAAiB,EAAE,6BAA6B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,SAAS,CAAC;IAK9J;;;OAGG;IACG,cAAc,CAAC,iBAAiB,EAAE,kBAAkB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;IAkC/J;;;OAGG;IACG,WAAW,CAAC,iBAAiB,EAAE,kBAAkB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAKvI;;;OAGG;IACG,oBAAoB,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,sBAAsB,CAAC,CAAC;IAkCzL;;;OAGG;IACG,iBAAiB,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAKjK;;;OAGG;IACG,cAAc,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAkB1H;;;OAGG;IACG,WAAW,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKlG;;;OAGG;IACG,cAAc,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;IAkB7H;;;OAGG;IACG,WAAW,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,aAAa,CAAC;IAKrG;;;OAGG;IACG,kBAAkB,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;IAkBjI;;;OAGG;IACG,eAAe,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAKzG;;;OAGG;IACG,SAAS,CAAC,iBAAiB,EAAE,aAAa,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC;IAoChK;;;OAGG;IACG,MAAM,CAAC,iBAAiB,EAAE,aAAa,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAKxI;;;OAGG;IACG,iBAAiB,CAAC,iBAAiB,EAAE,qBAAqB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAoCvK;;;OAGG;IACG,cAAc,CAAC,iBAAiB,EAAE,qBAAqB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAK/I;;;OAGG;IACG,qBAAqB,CAAC,iBAAiB,EAAE,yBAAyB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAoC/K;;;OAGG;IACG,kBAAkB,CAAC,iBAAiB,EAAE,yBAAyB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKvJ;;;OAGG;IACG,sBAAsB,CAAC,iBAAiB,EAAE,0BAA0B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAoCjL;;;OAGG;IACG,mBAAmB,CAAC,iBAAiB,EAAE,0BAA0B,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKzJ;;;OAGG;IACG,UAAU,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC;IAkB3H;;;OAGG;IACG,OAAO,CAAC,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,eAAe,CAAC;CAKtG"}
|
package/dist/apis/AmgixApi.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -53,6 +53,34 @@ const index_1 = require("../models/index");
|
|
|
53
53
|
*
|
|
54
54
|
*/
|
|
55
55
|
class AmgixApi extends runtime.BaseAPI {
|
|
56
|
+
/**
|
|
57
|
+
* Check if a collection exists. Always returns 200 with exists true or false.
|
|
58
|
+
* Collection Exists
|
|
59
|
+
*/
|
|
60
|
+
async collectionExistsRaw(requestParameters, initOverrides) {
|
|
61
|
+
if (requestParameters['collectionName'] == null) {
|
|
62
|
+
throw new runtime.RequiredError('collectionName', 'Required parameter "collectionName" was null or undefined when calling collectionExists().');
|
|
63
|
+
}
|
|
64
|
+
const queryParameters = {};
|
|
65
|
+
const headerParameters = {};
|
|
66
|
+
let urlPath = `/v1/collections/{collection_name}/exists`;
|
|
67
|
+
urlPath = urlPath.replace(`{${"collection_name"}}`, encodeURIComponent(String(requestParameters['collectionName'])));
|
|
68
|
+
const response = await this.request({
|
|
69
|
+
path: urlPath,
|
|
70
|
+
method: 'GET',
|
|
71
|
+
headers: headerParameters,
|
|
72
|
+
query: queryParameters,
|
|
73
|
+
}, initOverrides);
|
|
74
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.CollectionExistsResponseFromJSON)(jsonValue));
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Check if a collection exists. Always returns 200 with exists true or false.
|
|
78
|
+
* Collection Exists
|
|
79
|
+
*/
|
|
80
|
+
async collectionExists(requestParameters, initOverrides) {
|
|
81
|
+
const response = await this.collectionExistsRaw(requestParameters, initOverrides);
|
|
82
|
+
return await response.value();
|
|
83
|
+
}
|
|
56
84
|
/**
|
|
57
85
|
* Create a new collection. This endpoint creates a new collection with the specified name and vector configurations. It validates the provided model configurations and ensures all required features are supported by the database. Args: collection_name: The unique name for the new collection (alphanumeric, underscores, hyphens only). config: Configuration details for the collection, including vector types and storage options. Returns: An `OkResponse` object indicating the success of the operation. Raises: HTTPException: - 400 if model validation fails or required features are not supported. - 409 if a collection with the same name already exists. - 500 if the collection creation fails in the database.
|
|
58
86
|
* Create Collection
|
|
@@ -347,7 +375,7 @@ class AmgixApi extends runtime.BaseAPI {
|
|
|
347
375
|
return await response.value();
|
|
348
376
|
}
|
|
349
377
|
/**
|
|
350
|
-
* Check if service is ready to handle requests.
|
|
378
|
+
* Check if service is ready to handle requests. Runs four probes: database, rabbitmq, encoder (ping-encoder), rpc (ping-rpc). Returns 200 if all pass (fully ready), 218 if some fail (partial ready). Response body always includes all four probe results and a ready flag.
|
|
351
379
|
* Readiness Check
|
|
352
380
|
*/
|
|
353
381
|
async healthReadyRaw(initOverrides) {
|
|
@@ -360,10 +388,10 @@ class AmgixApi extends runtime.BaseAPI {
|
|
|
360
388
|
headers: headerParameters,
|
|
361
389
|
query: queryParameters,
|
|
362
390
|
}, initOverrides);
|
|
363
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.
|
|
391
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ReadyResponseFromJSON)(jsonValue));
|
|
364
392
|
}
|
|
365
393
|
/**
|
|
366
|
-
* Check if service is ready to handle requests.
|
|
394
|
+
* Check if service is ready to handle requests. Runs four probes: database, rabbitmq, encoder (ping-encoder), rpc (ping-rpc). Returns 200 if all pass (fully ready), 218 if some fail (partial ready). Response body always includes all four probe results and a ready flag.
|
|
367
395
|
* Readiness Check
|
|
368
396
|
*/
|
|
369
397
|
async healthReady(initOverrides) {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -24,7 +24,7 @@ export interface CollectionConfig {
|
|
|
24
24
|
*/
|
|
25
25
|
vectors: Array<VectorConfig>;
|
|
26
26
|
/**
|
|
27
|
-
* Whether to store document content in the database.
|
|
27
|
+
* Whether to store document content in the database.
|
|
28
28
|
* @type {boolean}
|
|
29
29
|
* @memberof CollectionConfig
|
|
30
30
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Amalgam Index API
|
|
3
|
+
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CollectionExistsResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface CollectionExistsResponse {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof CollectionExistsResponse
|
|
22
|
+
*/
|
|
23
|
+
_exists: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the CollectionExistsResponse interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfCollectionExistsResponse(value: object): value is CollectionExistsResponse;
|
|
29
|
+
export declare function CollectionExistsResponseFromJSON(json: any): CollectionExistsResponse;
|
|
30
|
+
export declare function CollectionExistsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionExistsResponse;
|
|
31
|
+
export declare function CollectionExistsResponseToJSON(json: any): CollectionExistsResponse;
|
|
32
|
+
export declare function CollectionExistsResponseToJSONTyped(value?: CollectionExistsResponse | null, ignoreDiscriminator?: boolean): any;
|
|
33
|
+
//# sourceMappingURL=CollectionExistsResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollectionExistsResponse.d.ts","sourceRoot":"","sources":["../../models/CollectionExistsResponse.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,wBAAwB,CAGnG;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAEpF;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,wBAAwB,CAQvH;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAElF;AAED,wBAAgB,mCAAmC,CAAC,KAAK,CAAC,EAAE,wBAAwB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAStI"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Amalgam Index API
|
|
6
|
+
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
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.instanceOfCollectionExistsResponse = instanceOfCollectionExistsResponse;
|
|
17
|
+
exports.CollectionExistsResponseFromJSON = CollectionExistsResponseFromJSON;
|
|
18
|
+
exports.CollectionExistsResponseFromJSONTyped = CollectionExistsResponseFromJSONTyped;
|
|
19
|
+
exports.CollectionExistsResponseToJSON = CollectionExistsResponseToJSON;
|
|
20
|
+
exports.CollectionExistsResponseToJSONTyped = CollectionExistsResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CollectionExistsResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCollectionExistsResponse(value) {
|
|
25
|
+
if (!('_exists' in value) || value['_exists'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function CollectionExistsResponseFromJSON(json) {
|
|
30
|
+
return CollectionExistsResponseFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function CollectionExistsResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'_exists': json['exists'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function CollectionExistsResponseToJSON(json) {
|
|
41
|
+
return CollectionExistsResponseToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function CollectionExistsResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'exists': value['_exists'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Document.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/QueueInfo.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Amalgam Index API
|
|
3
|
+
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ReadyResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface ReadyResponse {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof ReadyResponse
|
|
22
|
+
*/
|
|
23
|
+
database: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof ReadyResponse
|
|
28
|
+
*/
|
|
29
|
+
rabbitmq: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof ReadyResponse
|
|
34
|
+
*/
|
|
35
|
+
index: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof ReadyResponse
|
|
40
|
+
*/
|
|
41
|
+
query: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof ReadyResponse
|
|
46
|
+
*/
|
|
47
|
+
ready: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the ReadyResponse interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfReadyResponse(value: object): value is ReadyResponse;
|
|
53
|
+
export declare function ReadyResponseFromJSON(json: any): ReadyResponse;
|
|
54
|
+
export declare function ReadyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadyResponse;
|
|
55
|
+
export declare function ReadyResponseToJSON(json: any): ReadyResponse;
|
|
56
|
+
export declare function ReadyResponseToJSONTyped(value?: ReadyResponse | null, ignoreDiscriminator?: boolean): any;
|
|
57
|
+
//# sourceMappingURL=ReadyResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReadyResponse.d.ts","sourceRoot":"","sources":["../../models/ReadyResponse.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;;;OAIG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;;;OAIG;IACH,KAAK,EAAE,OAAO,CAAC;IACf;;;;OAIG;IACH,KAAK,EAAE,OAAO,CAAC;IACf;;;;OAIG;IACH,KAAK,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,aAAa,CAO7E;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,GAAG,GAAG,aAAa,CAE9D;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,aAAa,CAYjG;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,aAAa,CAE5D;AAED,wBAAgB,wBAAwB,CAAC,KAAK,CAAC,EAAE,aAAa,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAahH"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Amalgam Index API
|
|
6
|
+
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
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.instanceOfReadyResponse = instanceOfReadyResponse;
|
|
17
|
+
exports.ReadyResponseFromJSON = ReadyResponseFromJSON;
|
|
18
|
+
exports.ReadyResponseFromJSONTyped = ReadyResponseFromJSONTyped;
|
|
19
|
+
exports.ReadyResponseToJSON = ReadyResponseToJSON;
|
|
20
|
+
exports.ReadyResponseToJSONTyped = ReadyResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ReadyResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfReadyResponse(value) {
|
|
25
|
+
if (!('database' in value) || value['database'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('rabbitmq' in value) || value['rabbitmq'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('index' in value) || value['index'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('query' in value) || value['query'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('ready' in value) || value['ready'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
function ReadyResponseFromJSON(json) {
|
|
38
|
+
return ReadyResponseFromJSONTyped(json, false);
|
|
39
|
+
}
|
|
40
|
+
function ReadyResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
41
|
+
if (json == null) {
|
|
42
|
+
return json;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
'database': json['database'],
|
|
46
|
+
'rabbitmq': json['rabbitmq'],
|
|
47
|
+
'index': json['index'],
|
|
48
|
+
'query': json['query'],
|
|
49
|
+
'ready': json['ready'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function ReadyResponseToJSON(json) {
|
|
53
|
+
return ReadyResponseToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
function ReadyResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
'database': value['database'],
|
|
61
|
+
'rabbitmq': value['rabbitmq'],
|
|
62
|
+
'index': value['index'],
|
|
63
|
+
'query': value['query'],
|
|
64
|
+
'ready': value['ready'],
|
|
65
|
+
};
|
|
66
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Vector.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Vector.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -67,6 +67,12 @@ export interface VectorConfig {
|
|
|
67
67
|
* @memberof VectorConfig
|
|
68
68
|
*/
|
|
69
69
|
top_k?: number;
|
|
70
|
+
/**
|
|
71
|
+
* Percentage of WMTR top_k allocated to word weights.
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @memberof VectorConfig
|
|
74
|
+
*/
|
|
75
|
+
wmtr_word_weight?: number;
|
|
70
76
|
/**
|
|
71
77
|
* List of fields to index with this vector (name, description, content). Defaults to ['content'] if not specified.
|
|
72
78
|
* @type {Array<string>}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VectorConfig.d.ts","sourceRoot":"","sources":["../../models/VectorConfig.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;;;;GAOG;AACH,MAAM,WAAW,YAAY;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC;IACzB;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,IAAI,EAAE,oBAAoB,CAAC;IAC3B;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAClD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,6BAA6B,CAAC;IAC/C;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAGD;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;CAUvB,CAAC;AACX,MAAM,MAAM,oBAAoB,GAAG,OAAO,oBAAoB,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AAElG;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;CAI9B,CAAC;AACX,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAC,MAAM,OAAO,2BAA2B,CAAC,CAAC;AAEvH;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;CAIhC,CAAC;AACX,MAAM,MAAM,6BAA6B,GAAG,OAAO,6BAA6B,CAAC,MAAM,OAAO,6BAA6B,CAAC,CAAC;AAG7H;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,YAAY,CAI3E;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,GAAG,YAAY,CAE5D;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,YAAY,
|
|
1
|
+
{"version":3,"file":"VectorConfig.d.ts","sourceRoot":"","sources":["../../models/VectorConfig.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;;;;GAOG;AACH,MAAM,WAAW,YAAY;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC;IACzB;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,IAAI,EAAE,oBAAoB,CAAC;IAC3B;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAClD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,6BAA6B,CAAC;IAC/C;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAGD;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;CAUvB,CAAC;AACX,MAAM,MAAM,oBAAoB,GAAG,OAAO,oBAAoB,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AAElG;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;CAI9B,CAAC;AACX,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAC,MAAM,OAAO,2BAA2B,CAAC,CAAC;AAEvH;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;CAIhC,CAAC;AACX,MAAM,MAAM,6BAA6B,GAAG,OAAO,6BAA6B,CAAC,MAAM,OAAO,6BAA6B,CAAC,CAAC;AAG7H;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,YAAY,CAI3E;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,GAAG,YAAY,CAE5D;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,YAAY,CAwB/F;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,YAAY,CAE1D;AAED,wBAAgB,uBAAuB,CAAC,KAAK,CAAC,EAAE,YAAY,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAyB9G"}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -76,6 +76,7 @@ function VectorConfigFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
76
76
|
'query_revision': json['query_revision'] == null ? undefined : json['query_revision'],
|
|
77
77
|
'dimensions': json['dimensions'] == null ? undefined : json['dimensions'],
|
|
78
78
|
'top_k': json['top_k'] == null ? undefined : json['top_k'],
|
|
79
|
+
'wmtr_word_weight': json['wmtr_word_weight'] == null ? undefined : json['wmtr_word_weight'],
|
|
79
80
|
'index_fields': json['index_fields'] == null ? undefined : json['index_fields'],
|
|
80
81
|
'language_default_code': json['language_default_code'] == null ? undefined : json['language_default_code'],
|
|
81
82
|
'language_detect': json['language_detect'] == null ? undefined : json['language_detect'],
|
|
@@ -102,6 +103,7 @@ function VectorConfigToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
102
103
|
'query_revision': value['query_revision'],
|
|
103
104
|
'dimensions': value['dimensions'],
|
|
104
105
|
'top_k': value['top_k'],
|
|
106
|
+
'wmtr_word_weight': value['wmtr_word_weight'],
|
|
105
107
|
'index_fields': value['index_fields'],
|
|
106
108
|
'language_default_code': value['language_default_code'],
|
|
107
109
|
'language_detect': value['language_detect'],
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './BulkUploadRequest';
|
|
2
2
|
export * from './CollectionConfig';
|
|
3
|
+
export * from './CollectionExistsResponse';
|
|
3
4
|
export * from './CustomDocumentVector';
|
|
4
5
|
export * from './CustomVector';
|
|
5
6
|
export * from './Document';
|
|
@@ -10,6 +11,7 @@ export * from './MetadataFilter';
|
|
|
10
11
|
export * from './MetadataIndex';
|
|
11
12
|
export * from './OkResponse';
|
|
12
13
|
export * from './QueueInfo';
|
|
14
|
+
export * from './ReadyResponse';
|
|
13
15
|
export * from './SearchQuery';
|
|
14
16
|
export * from './SearchResult';
|
|
15
17
|
export * from './ValidationError';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../models/index.ts"],"names":[],"mappings":"AAEA,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../models/index.ts"],"names":[],"mappings":"AAEA,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
|
package/dist/models/index.js
CHANGED
|
@@ -18,6 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
/* eslint-disable */
|
|
19
19
|
__exportStar(require("./BulkUploadRequest"), exports);
|
|
20
20
|
__exportStar(require("./CollectionConfig"), exports);
|
|
21
|
+
__exportStar(require("./CollectionExistsResponse"), exports);
|
|
21
22
|
__exportStar(require("./CustomDocumentVector"), exports);
|
|
22
23
|
__exportStar(require("./CustomVector"), exports);
|
|
23
24
|
__exportStar(require("./Document"), exports);
|
|
@@ -28,6 +29,7 @@ __exportStar(require("./MetadataFilter"), exports);
|
|
|
28
29
|
__exportStar(require("./MetadataIndex"), exports);
|
|
29
30
|
__exportStar(require("./OkResponse"), exports);
|
|
30
31
|
__exportStar(require("./QueueInfo"), exports);
|
|
32
|
+
__exportStar(require("./ReadyResponse"), exports);
|
|
31
33
|
__exportStar(require("./SearchQuery"), exports);
|
|
32
34
|
__exportStar(require("./SearchResult"), exports);
|
|
33
35
|
__exportStar(require("./ValidationError"), exports);
|
package/dist/runtime.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/runtime.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Amalgam Index API
|
|
6
6
|
* Amalgam Index (Amgix). The Hybrid Semantic Search Platform, API
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0-
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0-beta3.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|