@amgix/amgix-client 1.1.0 → 1.2.0
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 +101 -4
- package/dist/apis/AmgixApi.d.ts.map +1 -1
- package/dist/apis/AmgixApi.js +222 -3
- package/dist/models/BulkUploadRequest.d.ts +1 -1
- package/dist/models/BulkUploadRequest.js +1 -1
- package/dist/models/CollectionConfig.d.ts +1 -1
- package/dist/models/CollectionConfig.js +1 -1
- package/dist/models/CollectionExistsResponse.d.ts +1 -1
- package/dist/models/CollectionExistsResponse.js +1 -1
- package/dist/models/CollectionStatsResponse.d.ts +40 -0
- package/dist/models/CollectionStatsResponse.d.ts.map +1 -0
- package/dist/models/CollectionStatsResponse.js +55 -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/MetricDefinitionItem.d.ts +45 -0
- package/dist/models/MetricDefinitionItem.d.ts.map +1 -0
- package/dist/models/MetricDefinitionItem.js +58 -0
- package/dist/models/MetricTrend.d.ts +46 -0
- package/dist/models/MetricTrend.d.ts.map +1 -0
- package/dist/models/MetricTrend.js +57 -0
- package/dist/models/Metrics.d.ts +36 -0
- package/dist/models/Metrics.d.ts.map +1 -0
- package/dist/models/Metrics.js +50 -0
- package/dist/models/MetricsBucket.d.ts +63 -0
- package/dist/models/MetricsBucket.d.ts.map +1 -0
- package/dist/models/MetricsBucket.js +66 -0
- package/dist/models/NodeMetricSeries.d.ts +58 -0
- package/dist/models/NodeMetricSeries.d.ts.map +1 -0
- package/dist/models/NodeMetricSeries.js +58 -0
- package/dist/models/NodeView.d.ts +60 -0
- package/dist/models/NodeView.d.ts.map +1 -0
- package/dist/models/NodeView.js +61 -0
- 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 +1 -1
- package/dist/models/ReadyResponse.js +1 -1
- 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/SystemInfoResponse.d.ts +65 -0
- package/dist/models/SystemInfoResponse.d.ts.map +1 -0
- package/dist/models/SystemInfoResponse.js +70 -0
- package/dist/models/ValidationError.d.ts +1 -1
- package/dist/models/ValidationError.js +1 -1
- package/dist/models/ValidationErrorLocItem.d.ts +1 -1
- package/dist/models/ValidationErrorLocItem.js +1 -1
- package/dist/models/Vector.d.ts +1 -1
- package/dist/models/Vector.js +1 -1
- package/dist/models/VectorConfig.d.ts +1 -1
- package/dist/models/VectorConfig.js +1 -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/WindowSample.d.ts +39 -0
- package/dist/models/WindowSample.d.ts.map +1 -0
- package/dist/models/WindowSample.js +52 -0
- package/dist/models/index.d.ts +9 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +9 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +5 -2
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Amalgam Index API
|
|
6
|
+
* Amalgam Index (Amgix). Open-Source Hybrid Search System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.2.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.instanceOfWindowSample = instanceOfWindowSample;
|
|
17
|
+
exports.WindowSampleFromJSON = WindowSampleFromJSON;
|
|
18
|
+
exports.WindowSampleFromJSONTyped = WindowSampleFromJSONTyped;
|
|
19
|
+
exports.WindowSampleToJSON = WindowSampleToJSON;
|
|
20
|
+
exports.WindowSampleToJSONTyped = WindowSampleToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the WindowSample interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfWindowSample(value) {
|
|
25
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function WindowSampleFromJSON(json) {
|
|
30
|
+
return WindowSampleFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function WindowSampleFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'value': json['value'],
|
|
38
|
+
'n': json['n'] == null ? undefined : json['n'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function WindowSampleToJSON(json) {
|
|
42
|
+
return WindowSampleToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function WindowSampleToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'value': value['value'],
|
|
50
|
+
'n': value['n'],
|
|
51
|
+
};
|
|
52
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './BulkUploadRequest';
|
|
2
2
|
export * from './CollectionConfig';
|
|
3
3
|
export * from './CollectionExistsResponse';
|
|
4
|
+
export * from './CollectionStatsResponse';
|
|
4
5
|
export * from './CustomDocumentVector';
|
|
5
6
|
export * from './CustomVector';
|
|
6
7
|
export * from './Document';
|
|
@@ -9,11 +10,18 @@ export * from './DocumentStatusResponse';
|
|
|
9
10
|
export * from './HTTPValidationError';
|
|
10
11
|
export * from './MetadataFilter';
|
|
11
12
|
export * from './MetadataIndex';
|
|
13
|
+
export * from './MetricDefinitionItem';
|
|
14
|
+
export * from './MetricTrend';
|
|
15
|
+
export * from './Metrics';
|
|
16
|
+
export * from './MetricsBucket';
|
|
17
|
+
export * from './NodeMetricSeries';
|
|
18
|
+
export * from './NodeView';
|
|
12
19
|
export * from './OkResponse';
|
|
13
20
|
export * from './QueueInfo';
|
|
14
21
|
export * from './ReadyResponse';
|
|
15
22
|
export * from './SearchQuery';
|
|
16
23
|
export * from './SearchResult';
|
|
24
|
+
export * from './SystemInfoResponse';
|
|
17
25
|
export * from './ValidationError';
|
|
18
26
|
export * from './ValidationErrorLocItem';
|
|
19
27
|
export * from './Vector';
|
|
@@ -21,4 +29,5 @@ export * from './VectorConfig';
|
|
|
21
29
|
export * from './VectorScore';
|
|
22
30
|
export * from './VectorSearchWeight';
|
|
23
31
|
export * from './VersionResponse';
|
|
32
|
+
export * from './WindowSample';
|
|
24
33
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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,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,0BAA0B,CAAC;AACzC,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,2BAA2B,CAAC;AAC1C,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,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC"}
|
package/dist/models/index.js
CHANGED
|
@@ -19,6 +19,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
__exportStar(require("./BulkUploadRequest"), exports);
|
|
20
20
|
__exportStar(require("./CollectionConfig"), exports);
|
|
21
21
|
__exportStar(require("./CollectionExistsResponse"), exports);
|
|
22
|
+
__exportStar(require("./CollectionStatsResponse"), exports);
|
|
22
23
|
__exportStar(require("./CustomDocumentVector"), exports);
|
|
23
24
|
__exportStar(require("./CustomVector"), exports);
|
|
24
25
|
__exportStar(require("./Document"), exports);
|
|
@@ -27,11 +28,18 @@ __exportStar(require("./DocumentStatusResponse"), exports);
|
|
|
27
28
|
__exportStar(require("./HTTPValidationError"), exports);
|
|
28
29
|
__exportStar(require("./MetadataFilter"), exports);
|
|
29
30
|
__exportStar(require("./MetadataIndex"), exports);
|
|
31
|
+
__exportStar(require("./MetricDefinitionItem"), exports);
|
|
32
|
+
__exportStar(require("./MetricTrend"), exports);
|
|
33
|
+
__exportStar(require("./Metrics"), exports);
|
|
34
|
+
__exportStar(require("./MetricsBucket"), exports);
|
|
35
|
+
__exportStar(require("./NodeMetricSeries"), exports);
|
|
36
|
+
__exportStar(require("./NodeView"), exports);
|
|
30
37
|
__exportStar(require("./OkResponse"), exports);
|
|
31
38
|
__exportStar(require("./QueueInfo"), exports);
|
|
32
39
|
__exportStar(require("./ReadyResponse"), exports);
|
|
33
40
|
__exportStar(require("./SearchQuery"), exports);
|
|
34
41
|
__exportStar(require("./SearchResult"), exports);
|
|
42
|
+
__exportStar(require("./SystemInfoResponse"), exports);
|
|
35
43
|
__exportStar(require("./ValidationError"), exports);
|
|
36
44
|
__exportStar(require("./ValidationErrorLocItem"), exports);
|
|
37
45
|
__exportStar(require("./Vector"), exports);
|
|
@@ -39,3 +47,4 @@ __exportStar(require("./VectorConfig"), exports);
|
|
|
39
47
|
__exportStar(require("./VectorScore"), exports);
|
|
40
48
|
__exportStar(require("./VectorSearchWeight"), exports);
|
|
41
49
|
__exportStar(require("./VersionResponse"), exports);
|
|
50
|
+
__exportStar(require("./WindowSample"), exports);
|
package/dist/runtime.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Amalgam Index API
|
|
3
3
|
* Amalgam Index (Amgix). Open-Source Hybrid Search System
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
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). Open-Source Hybrid Search System
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amgix/amgix-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Client for the Amalgam Index (Amgix) API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"keywords": [
|
|
23
23
|
"amgix",
|
|
24
24
|
"amalgam-index",
|
|
25
|
-
"search"
|
|
25
|
+
"search",
|
|
26
|
+
"vector-search",
|
|
27
|
+
"hybrid-search",
|
|
28
|
+
"semantic-search"
|
|
26
29
|
],
|
|
27
30
|
"author": "Amgix",
|
|
28
31
|
"license": "Apache-2.0",
|