mixpeek 0.81.433 → 0.81.435
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/api/collections-api.d.ts +55 -0
- package/dist/api/collections-api.d.ts.map +1 -1
- package/dist/index.js +57 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +57 -0
- package/dist/index.mjs.map +1 -1
- package/dist/models/collection-reconciliation-response.d.ts +68 -0
- package/dist/models/collection-reconciliation-response.d.ts.map +1 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/reconciliation-discrepancy.d.ts +56 -0
- package/dist/models/reconciliation-discrepancy.d.ts.map +1 -0
- package/dist/models/reconciliation-reason.d.ts +25 -0
- package/dist/models/reconciliation-reason.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import type { CloneCollectionRequest } from '../models';
|
|
|
16
16
|
import type { CloneCollectionResponse } from '../models';
|
|
17
17
|
import type { CollectionExportRequest } from '../models';
|
|
18
18
|
import type { CollectionExportResponse } from '../models';
|
|
19
|
+
import type { CollectionReconciliationResponse } from '../models';
|
|
19
20
|
import type { CollectionResponse } from '../models';
|
|
20
21
|
import type { CreateCollectionRequest } from '../models';
|
|
21
22
|
import type { DescribeCollectionFeaturesResponse } from '../models';
|
|
@@ -134,6 +135,15 @@ export declare const CollectionsApiAxiosParamCreator: (configuration?: Configura
|
|
|
134
135
|
* @throws {RequiredError}
|
|
135
136
|
*/
|
|
136
137
|
listCollectionsGet: (search?: string, namespaceId?: string, limit?: number, pageSize?: number, offset?: number, page?: number, cursor?: string, nextCursor?: string, after?: string, includeTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
138
|
+
/**
|
|
139
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
140
|
+
* @summary Reconcile objects vs documents
|
|
141
|
+
* @param {string} collectionIdentifier The ID or name of the collection to reconcile
|
|
142
|
+
* @param {number} [limit] Cap on the itemized discrepancies list.
|
|
143
|
+
* @param {*} [options] Override http request option.
|
|
144
|
+
* @throws {RequiredError}
|
|
145
|
+
*/
|
|
146
|
+
reconcileCollectionReconciliation: (collectionIdentifier: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
137
147
|
/**
|
|
138
148
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
139
149
|
* @summary Trigger Collection Processing
|
|
@@ -268,6 +278,15 @@ export declare const CollectionsApiFp: (configuration?: Configuration) => {
|
|
|
268
278
|
* @throws {RequiredError}
|
|
269
279
|
*/
|
|
270
280
|
listCollectionsGet(search?: string, namespaceId?: string, limit?: number, pageSize?: number, offset?: number, page?: number, cursor?: string, nextCursor?: string, after?: string, includeTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionsResponse>>;
|
|
281
|
+
/**
|
|
282
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
283
|
+
* @summary Reconcile objects vs documents
|
|
284
|
+
* @param {string} collectionIdentifier The ID or name of the collection to reconcile
|
|
285
|
+
* @param {number} [limit] Cap on the itemized discrepancies list.
|
|
286
|
+
* @param {*} [options] Override http request option.
|
|
287
|
+
* @throws {RequiredError}
|
|
288
|
+
*/
|
|
289
|
+
reconcileCollectionReconciliation(collectionIdentifier: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionReconciliationResponse>>;
|
|
271
290
|
/**
|
|
272
291
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
273
292
|
* @summary Trigger Collection Processing
|
|
@@ -382,6 +401,14 @@ export declare const CollectionsApiFactory: (configuration?: Configuration, base
|
|
|
382
401
|
* @throws {RequiredError}
|
|
383
402
|
*/
|
|
384
403
|
listCollectionsGet(requestParameters?: CollectionsApiListCollectionsGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListCollectionsResponse>;
|
|
404
|
+
/**
|
|
405
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
406
|
+
* @summary Reconcile objects vs documents
|
|
407
|
+
* @param {CollectionsApiReconcileCollectionReconciliationRequest} requestParameters Request parameters.
|
|
408
|
+
* @param {*} [options] Override http request option.
|
|
409
|
+
* @throws {RequiredError}
|
|
410
|
+
*/
|
|
411
|
+
reconcileCollectionReconciliation(requestParameters: CollectionsApiReconcileCollectionReconciliationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionReconciliationResponse>;
|
|
385
412
|
/**
|
|
386
413
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
387
414
|
* @summary Trigger Collection Processing
|
|
@@ -657,6 +684,25 @@ export interface CollectionsApiListCollectionsGetRequest {
|
|
|
657
684
|
*/
|
|
658
685
|
readonly includeTotal?: boolean;
|
|
659
686
|
}
|
|
687
|
+
/**
|
|
688
|
+
* Request parameters for reconcileCollectionReconciliation operation in CollectionsApi.
|
|
689
|
+
* @export
|
|
690
|
+
* @interface CollectionsApiReconcileCollectionReconciliationRequest
|
|
691
|
+
*/
|
|
692
|
+
export interface CollectionsApiReconcileCollectionReconciliationRequest {
|
|
693
|
+
/**
|
|
694
|
+
* The ID or name of the collection to reconcile
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof CollectionsApiReconcileCollectionReconciliation
|
|
697
|
+
*/
|
|
698
|
+
readonly collectionIdentifier: string;
|
|
699
|
+
/**
|
|
700
|
+
* Cap on the itemized discrepancies list.
|
|
701
|
+
* @type {number}
|
|
702
|
+
* @memberof CollectionsApiReconcileCollectionReconciliation
|
|
703
|
+
*/
|
|
704
|
+
readonly limit?: number;
|
|
705
|
+
}
|
|
660
706
|
/**
|
|
661
707
|
* Request parameters for triggerCollection operation in CollectionsApi.
|
|
662
708
|
* @export
|
|
@@ -807,6 +853,15 @@ export declare class CollectionsApi extends BaseAPI {
|
|
|
807
853
|
* @memberof CollectionsApi
|
|
808
854
|
*/
|
|
809
855
|
listCollectionsGet(requestParameters?: CollectionsApiListCollectionsGetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionsResponse, any, {}>>;
|
|
856
|
+
/**
|
|
857
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
858
|
+
* @summary Reconcile objects vs documents
|
|
859
|
+
* @param {CollectionsApiReconcileCollectionReconciliationRequest} requestParameters Request parameters.
|
|
860
|
+
* @param {*} [options] Override http request option.
|
|
861
|
+
* @throws {RequiredError}
|
|
862
|
+
* @memberof CollectionsApi
|
|
863
|
+
*/
|
|
864
|
+
reconcileCollectionReconciliation(requestParameters: CollectionsApiReconcileCollectionReconciliationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionReconciliationResponse, any, {}>>;
|
|
810
865
|
/**
|
|
811
866
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
812
867
|
* @summary Trigger Collection Processing
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collections-api.d.ts","sourceRoot":"","sources":["../../api/collections-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"collections-api.d.ts","sourceRoot":"","sources":["../../api/collections-api.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -13641,6 +13641,38 @@ var CollectionsApiAxiosParamCreator = function(configuration) {
|
|
|
13641
13641
|
options: localVarRequestOptions
|
|
13642
13642
|
};
|
|
13643
13643
|
},
|
|
13644
|
+
/**
|
|
13645
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
13646
|
+
* @summary Reconcile objects vs documents
|
|
13647
|
+
* @param {string} collectionIdentifier The ID or name of the collection to reconcile
|
|
13648
|
+
* @param {number} [limit] Cap on the itemized discrepancies list.
|
|
13649
|
+
* @param {*} [options] Override http request option.
|
|
13650
|
+
* @throws {RequiredError}
|
|
13651
|
+
*/
|
|
13652
|
+
reconcileCollectionReconciliation: async (collectionIdentifier, limit, options = {}) => {
|
|
13653
|
+
assertParamExists("reconcileCollectionReconciliation", "collectionIdentifier", collectionIdentifier);
|
|
13654
|
+
const localVarPath = `/v1/collections/{collection_identifier}/reconciliation`.replace(`{${"collection_identifier"}}`, encodeURIComponent(String(collectionIdentifier)));
|
|
13655
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13656
|
+
let baseOptions;
|
|
13657
|
+
if (configuration) {
|
|
13658
|
+
baseOptions = configuration.baseOptions;
|
|
13659
|
+
}
|
|
13660
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
13661
|
+
const localVarHeaderParameter = {};
|
|
13662
|
+
const localVarQueryParameter = {};
|
|
13663
|
+
await setApiKeyToObject(localVarHeaderParameter, "X-Namespace", configuration);
|
|
13664
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
13665
|
+
if (limit !== void 0) {
|
|
13666
|
+
localVarQueryParameter["limit"] = limit;
|
|
13667
|
+
}
|
|
13668
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13669
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13670
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
13671
|
+
return {
|
|
13672
|
+
url: toPathString(localVarUrlObj),
|
|
13673
|
+
options: localVarRequestOptions
|
|
13674
|
+
};
|
|
13675
|
+
},
|
|
13644
13676
|
/**
|
|
13645
13677
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
13646
13678
|
* @summary Trigger Collection Processing
|
|
@@ -13889,6 +13921,20 @@ var CollectionsApiFp = function(configuration) {
|
|
|
13889
13921
|
const localVarOperationServerBasePath = operationServerMap["CollectionsApi.listCollectionsGet"]?.[localVarOperationServerIndex]?.url;
|
|
13890
13922
|
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios6__default.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
13891
13923
|
},
|
|
13924
|
+
/**
|
|
13925
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
13926
|
+
* @summary Reconcile objects vs documents
|
|
13927
|
+
* @param {string} collectionIdentifier The ID or name of the collection to reconcile
|
|
13928
|
+
* @param {number} [limit] Cap on the itemized discrepancies list.
|
|
13929
|
+
* @param {*} [options] Override http request option.
|
|
13930
|
+
* @throws {RequiredError}
|
|
13931
|
+
*/
|
|
13932
|
+
async reconcileCollectionReconciliation(collectionIdentifier, limit, options) {
|
|
13933
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.reconcileCollectionReconciliation(collectionIdentifier, limit, options);
|
|
13934
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13935
|
+
const localVarOperationServerBasePath = operationServerMap["CollectionsApi.reconcileCollectionReconciliation"]?.[localVarOperationServerIndex]?.url;
|
|
13936
|
+
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios6__default.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
13937
|
+
},
|
|
13892
13938
|
/**
|
|
13893
13939
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
13894
13940
|
* @summary Trigger Collection Processing
|
|
@@ -14043,6 +14089,17 @@ var CollectionsApi = class extends BaseAPI {
|
|
|
14043
14089
|
listCollectionsGet(requestParameters = {}, options) {
|
|
14044
14090
|
return CollectionsApiFp(this.configuration).listCollectionsGet(requestParameters.search, requestParameters.namespaceId, requestParameters.limit, requestParameters.pageSize, requestParameters.offset, requestParameters.page, requestParameters.cursor, requestParameters.nextCursor, requestParameters.after, requestParameters.includeTotal, options).then((request) => request(this.axios, this.basePath));
|
|
14045
14091
|
}
|
|
14092
|
+
/**
|
|
14093
|
+
* Objects-vs-documents conservation for a collection. Returns the distinct source-object count, the count that produced at least one document, the document count, and their delta, plus an itemized (bounded) list of source objects that produced no document with a machine-readable reason for each.
|
|
14094
|
+
* @summary Reconcile objects vs documents
|
|
14095
|
+
* @param {CollectionsApiReconcileCollectionReconciliationRequest} requestParameters Request parameters.
|
|
14096
|
+
* @param {*} [options] Override http request option.
|
|
14097
|
+
* @throws {RequiredError}
|
|
14098
|
+
* @memberof CollectionsApi
|
|
14099
|
+
*/
|
|
14100
|
+
reconcileCollectionReconciliation(requestParameters, options) {
|
|
14101
|
+
return CollectionsApiFp(this.configuration).reconcileCollectionReconciliation(requestParameters.collectionIdentifier, requestParameters.limit, options).then((request) => request(this.axios, this.basePath));
|
|
14102
|
+
}
|
|
14046
14103
|
/**
|
|
14047
14104
|
* Process data through a collection - works for both bucket-sourced and collection-sourced collections. **For bucket-sourced collections:** Discovers objects from source bucket(s), creates a batch, and submits for processing. Use `include_buckets` to limit which source buckets to process from. **For collection-sourced collections:** Processes existing documents from upstream collection(s). Use `include_collections` to limit which source collections to process from. **Filtering:** - `source_filters`: Field-level filters using LogicalOperator format - Example: `{\"AND\": [{\"field\": \"status\", \"operator\": \"eq\", \"value\": \"pending\"}]}` - For specific objects: `{\"AND\": [{\"field\": \"object_id\", \"operator\": \"in\", \"value\": [\"obj_1\", \"obj_2\"]}]}` **Returns:** - batch_id: Track progress via GET /batches/{batch_id} - task_id: Monitor via GET /tasks/{task_id}
|
|
14048
14105
|
* @summary Trigger Collection Processing
|