@amgix/amgix-client 1.0.0-beta3.2 → 1.1.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/README.md +8 -2
- package/dist/apis/AmgixApi.d.ts +74 -2
- package/dist/apis/AmgixApi.d.ts.map +1 -1
- package/dist/apis/AmgixApi.js +218 -92
- package/dist/models/BulkUploadRequest.d.ts +2 -2
- package/dist/models/BulkUploadRequest.js +2 -2
- package/dist/models/CollectionConfig.d.ts +2 -2
- package/dist/models/CollectionConfig.js +2 -2
- package/dist/models/CollectionExistsResponse.d.ts +2 -2
- package/dist/models/CollectionExistsResponse.js +2 -2
- package/dist/models/CustomDocumentVector.d.ts +3 -3
- package/dist/models/CustomDocumentVector.js +2 -2
- package/dist/models/CustomVector.d.ts +2 -2
- package/dist/models/CustomVector.js +2 -2
- package/dist/models/Document.d.ts +6 -5
- package/dist/models/Document.d.ts.map +1 -1
- package/dist/models/Document.js +3 -5
- package/dist/models/DocumentStatus.d.ts +3 -3
- package/dist/models/DocumentStatus.js +3 -3
- package/dist/models/DocumentStatusResponse.d.ts +2 -2
- package/dist/models/DocumentStatusResponse.js +2 -2
- package/dist/models/HTTPValidationError.d.ts +2 -2
- package/dist/models/HTTPValidationError.js +2 -2
- package/dist/models/LocationInner.d.ts +27 -0
- package/dist/models/LocationInner.d.ts.map +1 -0
- package/dist/models/LocationInner.js +38 -0
- package/dist/models/MetadataFilter.d.ts +3 -3
- package/dist/models/MetadataFilter.js +2 -2
- package/dist/models/MetadataIndex.d.ts +3 -3
- package/dist/models/MetadataIndex.js +2 -2
- package/dist/models/OkResponse.d.ts +2 -2
- package/dist/models/OkResponse.js +2 -2
- package/dist/models/QueueInfo.d.ts +2 -2
- package/dist/models/QueueInfo.js +2 -2
- package/dist/models/ReadyResponse.d.ts +2 -2
- package/dist/models/ReadyResponse.js +2 -2
- package/dist/models/SearchQuery.d.ts +22 -2
- package/dist/models/SearchQuery.d.ts.map +1 -1
- package/dist/models/SearchQuery.js +14 -2
- package/dist/models/SearchResult.d.ts +6 -5
- package/dist/models/SearchResult.d.ts.map +1 -1
- package/dist/models/SearchResult.js +3 -5
- package/dist/models/ValidationError.d.ts +5 -5
- package/dist/models/ValidationError.d.ts.map +1 -1
- package/dist/models/ValidationError.js +5 -5
- package/dist/models/ValidationErrorLocItem.d.ts +27 -0
- package/dist/models/ValidationErrorLocItem.d.ts.map +1 -0
- package/dist/models/ValidationErrorLocItem.js +38 -0
- package/dist/models/Vector.d.ts +2 -2
- package/dist/models/Vector.js +2 -2
- package/dist/models/VectorConfig.d.ts +5 -6
- package/dist/models/VectorConfig.d.ts.map +1 -1
- package/dist/models/VectorConfig.js +2 -4
- package/dist/models/VectorScore.d.ts +2 -2
- package/dist/models/VectorScore.js +2 -2
- package/dist/models/VectorSearchWeight.d.ts +3 -4
- package/dist/models/VectorSearchWeight.d.ts.map +1 -1
- package/dist/models/VectorSearchWeight.js +2 -4
- package/dist/models/VersionResponse.d.ts +2 -2
- package/dist/models/VersionResponse.js +2 -2
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +1 -1
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +17 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
Client for the Amalgam Index (Amgix) API
|
|
1
|
+
TypeScript Client for the Amalgam Index (Amgix) API
|
|
2
|
+
|
|
3
|
+
## Install
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install @amgix/amgix-client
|
|
7
|
+
```
|
|
2
8
|
|
|
3
9
|
See [Amgix server](https://github.com/amgix/amgix-server)
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
Read [Documentation](https://docs.amgix.io/client-typescript/AmgixApi/)
|
package/dist/apis/AmgixApi.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Amalgam Index API
|
|
3
|
-
* Amalgam Index (Amgix).
|
|
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.1.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -65,6 +65,10 @@ export interface UpsertDocumentsBulkRequest {
|
|
|
65
65
|
*
|
|
66
66
|
*/
|
|
67
67
|
export declare class AmgixApi extends runtime.BaseAPI {
|
|
68
|
+
/**
|
|
69
|
+
* Creates request options for collectionExists without sending the request
|
|
70
|
+
*/
|
|
71
|
+
collectionExistsRequestOpts(requestParameters: CollectionExistsRequest): Promise<runtime.RequestOpts>;
|
|
68
72
|
/**
|
|
69
73
|
* Check if a collection exists. Always returns 200 with exists true or false.
|
|
70
74
|
* Collection Exists
|
|
@@ -75,6 +79,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
75
79
|
* Collection Exists
|
|
76
80
|
*/
|
|
77
81
|
collectionExists(requestParameters: CollectionExistsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CollectionExistsResponse>;
|
|
82
|
+
/**
|
|
83
|
+
* Creates request options for createCollection without sending the request
|
|
84
|
+
*/
|
|
85
|
+
createCollectionRequestOpts(requestParameters: CreateCollectionRequest): Promise<runtime.RequestOpts>;
|
|
78
86
|
/**
|
|
79
87
|
* 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.
|
|
80
88
|
* Create Collection
|
|
@@ -85,6 +93,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
85
93
|
* Create Collection
|
|
86
94
|
*/
|
|
87
95
|
createCollection(requestParameters: CreateCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
96
|
+
/**
|
|
97
|
+
* Creates request options for deleteCollection without sending the request
|
|
98
|
+
*/
|
|
99
|
+
deleteCollectionRequestOpts(requestParameters: DeleteCollectionRequest): Promise<runtime.RequestOpts>;
|
|
88
100
|
/**
|
|
89
101
|
* Delete a collection. Deletes a collection and all its associated data. This operation is irreversible. Args: collection_name: The name of the collection to delete. Returns: An `OkResponse` object indicating the success of the operation.
|
|
90
102
|
* Delete Collection
|
|
@@ -95,6 +107,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
95
107
|
* Delete Collection
|
|
96
108
|
*/
|
|
97
109
|
deleteCollection(requestParameters: DeleteCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
110
|
+
/**
|
|
111
|
+
* Creates request options for deleteCollectionQueue without sending the request
|
|
112
|
+
*/
|
|
113
|
+
deleteCollectionQueueRequestOpts(requestParameters: DeleteCollectionQueueRequest): Promise<runtime.RequestOpts>;
|
|
98
114
|
/**
|
|
99
115
|
* Delete all queue entries for a collection. Removes all documents from the processing queue for a specified collection. This does not affect documents already indexed in the collection. Args: collection_name: The name of the collection for which to delete queue entries. Returns: An `OkResponse` object indicating the success of the operation.
|
|
100
116
|
* Delete Collection Queue
|
|
@@ -105,6 +121,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
105
121
|
* Delete Collection Queue
|
|
106
122
|
*/
|
|
107
123
|
deleteCollectionQueue(requestParameters: DeleteCollectionQueueRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
124
|
+
/**
|
|
125
|
+
* Creates request options for deleteDocument without sending the request
|
|
126
|
+
*/
|
|
127
|
+
deleteDocumentRequestOpts(requestParameters: DeleteDocumentRequest): Promise<runtime.RequestOpts>;
|
|
108
128
|
/**
|
|
109
129
|
* Delete a document. Deletes a specific document by its ID from the specified collection. Args: collection_name: The name of the collection. document_id: The unique identifier of the document to delete. Returns: An `OkResponse` object indicating the success of the operation.
|
|
110
130
|
* Delete Document
|
|
@@ -115,6 +135,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
115
135
|
* Delete Document
|
|
116
136
|
*/
|
|
117
137
|
deleteDocument(requestParameters: DeleteDocumentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
138
|
+
/**
|
|
139
|
+
* Creates request options for emptyCollection without sending the request
|
|
140
|
+
*/
|
|
141
|
+
emptyCollectionRequestOpts(requestParameters: EmptyCollectionRequest): Promise<runtime.RequestOpts>;
|
|
118
142
|
/**
|
|
119
143
|
* Empty a collection. Removes all documents and their associated vector data from a specified collection, but keeps the collection\'s configuration. Args: collection_name: The name of the collection to empty. Returns: An `OkResponse` object indicating the success of the operation.
|
|
120
144
|
* Empty Collection
|
|
@@ -125,6 +149,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
125
149
|
* Empty Collection
|
|
126
150
|
*/
|
|
127
151
|
emptyCollection(requestParameters: EmptyCollectionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
152
|
+
/**
|
|
153
|
+
* Creates request options for getCollectionConfig without sending the request
|
|
154
|
+
*/
|
|
155
|
+
getCollectionConfigRequestOpts(requestParameters: GetCollectionConfigRequest): Promise<runtime.RequestOpts>;
|
|
128
156
|
/**
|
|
129
157
|
* Get collection configuration. Retrieves the configuration details for a specific collection. Args: collection_name: The name of the collection. Returns: The configuration of the specified collection.
|
|
130
158
|
* Get Collection Config
|
|
@@ -135,6 +163,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
135
163
|
* Get Collection Config
|
|
136
164
|
*/
|
|
137
165
|
getCollectionConfig(requestParameters: GetCollectionConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CollectionConfig>;
|
|
166
|
+
/**
|
|
167
|
+
* Creates request options for getCollectionQueueInfo without sending the request
|
|
168
|
+
*/
|
|
169
|
+
getCollectionQueueInfoRequestOpts(requestParameters: GetCollectionQueueInfoRequest): Promise<runtime.RequestOpts>;
|
|
138
170
|
/**
|
|
139
171
|
* Get queue statistics for a collection. Retrieves counts of documents in different queue states (queued, requeued, failed). Args: collection_name: The name of the collection. Returns: A `QueueInfo` object with counts for each queue state.
|
|
140
172
|
* Get Collection Queue Info
|
|
@@ -145,6 +177,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
145
177
|
* Get Collection Queue Info
|
|
146
178
|
*/
|
|
147
179
|
getCollectionQueueInfo(requestParameters: GetCollectionQueueInfoRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<QueueInfo>;
|
|
180
|
+
/**
|
|
181
|
+
* Creates request options for getDocument without sending the request
|
|
182
|
+
*/
|
|
183
|
+
getDocumentRequestOpts(requestParameters: GetDocumentRequest): Promise<runtime.RequestOpts>;
|
|
148
184
|
/**
|
|
149
185
|
* Retrieve a single document. Retrieves a specific document by its ID from the specified collection. Args: collection_name: The name of the collection. document_id: The unique identifier of the document to retrieve. Returns: The retrieved `Document` object. Raises: HTTPException: 404 if the document is not found in the collection.
|
|
150
186
|
* Get Document
|
|
@@ -155,6 +191,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
155
191
|
* Get Document
|
|
156
192
|
*/
|
|
157
193
|
getDocument(requestParameters: GetDocumentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Document>;
|
|
194
|
+
/**
|
|
195
|
+
* Creates request options for getDocumentStatus without sending the request
|
|
196
|
+
*/
|
|
197
|
+
getDocumentStatusRequestOpts(requestParameters: GetDocumentStatusRequest): Promise<runtime.RequestOpts>;
|
|
158
198
|
/**
|
|
159
199
|
* Get document processing status. Retrieves the processing status of a document, including its current state in the queue and any associated messages. Args: collection_name: The name of the collection. document_id: The unique identifier of the document. Returns: A `DocumentStatusResponse` object containing the processing status of the document. Raises: HTTPException: 404 if the document is not found in the collection\'s queue.
|
|
160
200
|
* Get Document Status
|
|
@@ -165,6 +205,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
165
205
|
* Get Document Status
|
|
166
206
|
*/
|
|
167
207
|
getDocumentStatus(requestParameters: GetDocumentStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DocumentStatusResponse>;
|
|
208
|
+
/**
|
|
209
|
+
* Creates request options for healthCheck without sending the request
|
|
210
|
+
*/
|
|
211
|
+
healthCheckRequestOpts(): Promise<runtime.RequestOpts>;
|
|
168
212
|
/**
|
|
169
213
|
* Check API service responsiveness. This endpoint returns a simple \'ok\' status to indicate that the API service is running and able to respond to requests. Returns: An `OkResponse` object with the \'ok\' field set to True, confirming the service\'s responsiveness.
|
|
170
214
|
* Health
|
|
@@ -175,6 +219,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
175
219
|
* Health
|
|
176
220
|
*/
|
|
177
221
|
healthCheck(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
222
|
+
/**
|
|
223
|
+
* Creates request options for healthReady without sending the request
|
|
224
|
+
*/
|
|
225
|
+
healthReadyRequestOpts(): Promise<runtime.RequestOpts>;
|
|
178
226
|
/**
|
|
179
227
|
* 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.
|
|
180
228
|
* Readiness Check
|
|
@@ -185,6 +233,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
185
233
|
* Readiness Check
|
|
186
234
|
*/
|
|
187
235
|
healthReady(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReadyResponse>;
|
|
236
|
+
/**
|
|
237
|
+
* Creates request options for listCollections without sending the request
|
|
238
|
+
*/
|
|
239
|
+
listCollectionsRequestOpts(): Promise<runtime.RequestOpts>;
|
|
188
240
|
/**
|
|
189
241
|
* 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.
|
|
190
242
|
* List Collections
|
|
@@ -195,6 +247,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
195
247
|
* List Collections
|
|
196
248
|
*/
|
|
197
249
|
listCollections(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
|
|
250
|
+
/**
|
|
251
|
+
* Creates request options for search without sending the request
|
|
252
|
+
*/
|
|
253
|
+
searchRequestOpts(requestParameters: SearchRequest): Promise<runtime.RequestOpts>;
|
|
198
254
|
/**
|
|
199
255
|
* Perform a search query on a collection. Executes a search query against the specified collection. Args: collection_name: The name of the collection to search. query: The `SearchQuery` object containing the search text, filters, and other parameters. Returns: A list of `SearchResult` objects, where each object represents a search result.
|
|
200
256
|
* Search
|
|
@@ -205,6 +261,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
205
261
|
* Search
|
|
206
262
|
*/
|
|
207
263
|
search(requestParameters: SearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<SearchResult>>;
|
|
264
|
+
/**
|
|
265
|
+
* Creates request options for upsertDocument without sending the request
|
|
266
|
+
*/
|
|
267
|
+
upsertDocumentRequestOpts(requestParameters: UpsertDocumentRequest): Promise<runtime.RequestOpts>;
|
|
208
268
|
/**
|
|
209
269
|
* Upsert a single document asynchronously. Adds or updates a single document in the specified collection by placing it into a processing queue. The document will be vectorized and indexed asynchronously. Args: collection_name: The name of the collection to upsert the document into. document: The document object to be upserted. Returns: An `OkResponse` object indicating that the document has been accepted for processing. Raises: HTTPException: 500 if publishing the event to the internal queue fails.
|
|
210
270
|
* Upsert Document
|
|
@@ -215,6 +275,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
215
275
|
* Upsert Document
|
|
216
276
|
*/
|
|
217
277
|
upsertDocument(requestParameters: UpsertDocumentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
278
|
+
/**
|
|
279
|
+
* Creates request options for upsertDocumentSync without sending the request
|
|
280
|
+
*/
|
|
281
|
+
upsertDocumentSyncRequestOpts(requestParameters: UpsertDocumentSyncRequest): Promise<runtime.RequestOpts>;
|
|
218
282
|
/**
|
|
219
283
|
* Upsert a single document synchronously. Adds or updates a single document in the specified collection and waits for the operation to complete, including vectorization and indexing. Args: collection_name: The name of the collection to upsert the document into. document: The document object to be upserted. Returns: An `OkResponse` object indicating the success of the operation. Raises: HTTPException: - 409 if a document with the same ID and newer timestamp already exists (conflict). - 500 for other internal server errors during processing.
|
|
220
284
|
* Upsert Document Sync
|
|
@@ -225,6 +289,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
225
289
|
* Upsert Document Sync
|
|
226
290
|
*/
|
|
227
291
|
upsertDocumentSync(requestParameters: UpsertDocumentSyncRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
292
|
+
/**
|
|
293
|
+
* Creates request options for upsertDocumentsBulk without sending the request
|
|
294
|
+
*/
|
|
295
|
+
upsertDocumentsBulkRequestOpts(requestParameters: UpsertDocumentsBulkRequest): Promise<runtime.RequestOpts>;
|
|
228
296
|
/**
|
|
229
297
|
* Upsert multiple documents in bulk asynchronously. Adds or updates multiple documents in the specified collection by placing them into a processing queue. Documents will be vectorized and indexed asynchronously. This method is optimized for bulk operations. Args: collection_name: The name of the collection to upsert the documents into. request: A `BulkUploadRequest` object containing a list of `Document` objects to be upserted. Returns: An `OkResponse` object indicating that the documents have been accepted for processing. Raises: HTTPException: 500 if publishing events to the internal queue fails for any document.
|
|
230
298
|
* Upsert Documents Bulk
|
|
@@ -235,6 +303,10 @@ export declare class AmgixApi extends runtime.BaseAPI {
|
|
|
235
303
|
* Upsert Documents Bulk
|
|
236
304
|
*/
|
|
237
305
|
upsertDocumentsBulk(requestParameters: UpsertDocumentsBulkRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OkResponse>;
|
|
306
|
+
/**
|
|
307
|
+
* Creates request options for version without sending the request
|
|
308
|
+
*/
|
|
309
|
+
versionRequestOpts(): Promise<runtime.RequestOpts>;
|
|
238
310
|
/**
|
|
239
311
|
* Return the system version. Returns: A `VersionResponse` object with the system version.
|
|
240
312
|
* Version
|
|
@@ -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,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;
|
|
1
|
+
{"version":3,"file":"AmgixApi.d.ts","sourceRoot":"","sources":["../../apis/AmgixApi.ts"],"names":[],"mappings":"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"}
|