mixpeek 0.81.76 → 0.81.78

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.
@@ -89,6 +89,54 @@ export interface ClusterExecutionResult {
89
89
  * @memberof ClusterExecutionResult
90
90
  */
91
91
  'llm_labeling_errors'?: Array<string>;
92
+ /**
93
+ * OPTIONAL. Authoritative count of documents in the source collection(s) at cluster time — an INDEPENDENT Mongo count, not derived from the index/parquet path the clustering consumed. \'What SHOULD have clustered.\' Compare with vectors_retrieved: a positive index_gap means the index could not serve some documents\' vectors, so the result is computed on a biased sample.
94
+ * @type {number}
95
+ * @memberof ClusterExecutionResult
96
+ */
97
+ 'source_documents'?: number;
98
+ /**
99
+ * OPTIONAL. Number of vectors the index actually SERVED into the clustering (parquet rows). Below source_documents ⇒ index gap (MI-4159 signature).
100
+ * @type {number}
101
+ * @memberof ClusterExecutionResult
102
+ */
103
+ 'vectors_retrieved'?: number;
104
+ /**
105
+ * OPTIONAL. Number of documents that left the algorithm with a cluster assignment. Below vectors_retrieved for an assign-every-point algorithm ⇒ a silent pipeline drop; for a noise-producing algorithm the gap is expected noise.
106
+ * @type {number}
107
+ * @memberof ClusterExecutionResult
108
+ */
109
+ 'vectors_clustered'?: number;
110
+ /**
111
+ * source_documents − vectors_retrieved (>0 = index gap).
112
+ * @type {number}
113
+ * @memberof ClusterExecutionResult
114
+ */
115
+ 'index_gap'?: number;
116
+ /**
117
+ * vectors_retrieved − vectors_clustered.
118
+ * @type {number}
119
+ * @memberof ClusterExecutionResult
120
+ */
121
+ 'pipeline_drop'?: number;
122
+ /**
123
+ * OPTIONAL. False when an UNEXPECTED input-count gap was detected (index gap, or a pipeline drop under an assign-every-point algorithm). Expected noise does not set this False.
124
+ * @type {boolean}
125
+ * @memberof ClusterExecutionResult
126
+ */
127
+ 'input_reconciliation_ok'?: boolean;
128
+ /**
129
+ * Human-readable descriptions of any reconciliation gaps.
130
+ * @type {Array<string>}
131
+ * @memberof ClusterExecutionResult
132
+ */
133
+ 'input_reconciliation_reasons'?: Array<string>;
134
+ /**
135
+ * OPTIONAL. True when the algorithm legitimately leaves points unassigned (HDBSCAN/DBSCAN/OPTICS/EVoC), so a positive pipeline_drop is expected noise rather than a silent drop.
136
+ * @type {boolean}
137
+ * @memberof ClusterExecutionResult
138
+ */
139
+ 'pipeline_drop_expected_as_noise'?: boolean;
92
140
  /**
93
141
  * OPTIONAL. User-applied cluster label renames for this run, keyed by cluster_id (e.g. {\'cl_0\': \'Gadget Reviews\'}). Written via PATCH /v1/clusters/{cluster_id}/executions/{run_id}/labels and persisted on the execution record (per-run, since cluster_ids are per-run) — no re-execution required. When present, centroids[].label and the visualization endpoint\'s cluster_label fields are already remapped server-side; this map is returned so clients can distinguish user renames from LLM/auto labels. Omitted from the response entirely when no overrides exist (schema-additive).
94
142
  * @type {{ [key: string]: string; }}
@@ -1 +1 @@
1
- {"version":3,"file":"cluster-execution-result.d.ts","sourceRoot":"","sources":["../../models/cluster-execution-result.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAG7E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAE3E;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,QAAQ,EAAE,gCAAgC,CAAC;IAC3C;;;;OAIG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,SAAS,CAAC,EAAE,uBAAuB,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAC9C;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KAAE,CAAC;IAC/C;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,gDAAgD,CAAC;IAC9E;;;;OAIG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;CACtC;AAED,eAAO,MAAM,gCAAgC;;;;;CAKnC,CAAC;AAEX,MAAM,MAAM,gCAAgC,GAAG,OAAO,gCAAgC,CAAC,MAAM,OAAO,gCAAgC,CAAC,CAAC;AACtI,eAAO,MAAM,gDAAgD;;;;CAInD,CAAC;AAEX,MAAM,MAAM,gDAAgD,GAAG,OAAO,gDAAgD,CAAC,MAAM,OAAO,gDAAgD,CAAC,CAAC"}
1
+ {"version":3,"file":"cluster-execution-result.d.ts","sourceRoot":"","sources":["../../models/cluster-execution-result.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAG7E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAE3E;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,QAAQ,EAAE,gCAAgC,CAAC;IAC3C;;;;OAIG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,SAAS,CAAC,EAAE,uBAAuB,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAC9C;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC;;;;OAIG;IACH,8BAA8B,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC/C;;;;OAIG;IACH,iCAAiC,CAAC,EAAE,OAAO,CAAC;IAC5C;;;;OAIG;IACH,iBAAiB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KAAE,CAAC;IAC/C;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,gDAAgD,CAAC;IAC9E;;;;OAIG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;CACtC;AAED,eAAO,MAAM,gCAAgC;;;;;CAKnC,CAAC;AAEX,MAAM,MAAM,gCAAgC,GAAG,OAAO,gCAAgC,CAAC,MAAM,OAAO,gCAAgC,CAAC,CAAC;AACtI,eAAO,MAAM,gDAAgD;;;;CAInD,CAAC;AAEX,MAAM,MAAM,gDAAgD,GAAG,OAAO,gDAAgD,CAAC,MAAM,OAAO,gDAAgD,CAAC,CAAC"}
@@ -31,6 +31,9 @@ export declare const FilterOperator: {
31
31
  readonly IsNull: "is_null";
32
32
  readonly Text: "text";
33
33
  readonly Phrase: "phrase";
34
+ readonly GeoRadius: "geo_radius";
35
+ readonly GeoBoundingBox: "geo_bounding_box";
36
+ readonly GeoPolygon: "geo_polygon";
34
37
  };
35
38
  export type FilterOperator = typeof FilterOperator[keyof typeof FilterOperator];
36
39
  //# sourceMappingURL=filter-operator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filter-operator.d.ts","sourceRoot":"","sources":["../../models/filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;CAiBjB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC"}
1
+ {"version":3,"file":"filter-operator.d.ts","sourceRoot":"","sources":["../../models/filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;CAoBjB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC"}
@@ -24,7 +24,7 @@ export interface PayloadIndexConfigInput {
24
24
  */
25
25
  'field_name': string;
26
26
  /**
27
- * Data type of the indexed field. Determines query capabilities and storage optimization. TEXT: Full-text search. KEYWORD: Exact matching, filtering. INTEGER/FLOAT: Range queries, sorting. DATETIME: Temporal queries. GEO: Geospatial queries. BOOL: Boolean filtering. UUID: Unique identifier matching.
27
+ * Data type of the indexed field. Determines query capabilities and storage optimization. TEXT: Full-text search. KEYWORD: Exact matching, filtering. INTEGER/FLOAT: Range queries, sorting. DATETIME: Temporal queries. GEO: geospatial filtering — the geo_radius, geo_bounding_box and geo_polygon operators (MI-4164). Store the point as {lat, lon} or as a [lon, lat] GeoJSON array; a field holding a list of points matches if ANY point matches. NOTE: geo conditions are evaluated by a payload SCAN, not by this index — declaring GEO does not yet accelerate them, so AND a geo condition with a selective non-geo condition on a large collection. BOOL: Boolean filtering. UUID: Unique identifier matching.
28
28
  * @type {PayloadSchemaType}
29
29
  * @memberof PayloadIndexConfigInput
30
30
  */
@@ -24,7 +24,7 @@ export interface PayloadIndexConfigOutput {
24
24
  */
25
25
  'field_name': string;
26
26
  /**
27
- * Data type of the indexed field. Determines query capabilities and storage optimization. TEXT: Full-text search. KEYWORD: Exact matching, filtering. INTEGER/FLOAT: Range queries, sorting. DATETIME: Temporal queries. GEO: Geospatial queries. BOOL: Boolean filtering. UUID: Unique identifier matching.
27
+ * Data type of the indexed field. Determines query capabilities and storage optimization. TEXT: Full-text search. KEYWORD: Exact matching, filtering. INTEGER/FLOAT: Range queries, sorting. DATETIME: Temporal queries. GEO: geospatial filtering — the geo_radius, geo_bounding_box and geo_polygon operators (MI-4164). Store the point as {lat, lon} or as a [lon, lat] GeoJSON array; a field holding a list of points matches if ANY point matches. NOTE: geo conditions are evaluated by a payload SCAN, not by this index — declaring GEO does not yet accelerate them, so AND a geo condition with a selective non-geo condition on a large collection. BOOL: Boolean filtering. UUID: Unique identifier matching.
28
28
  * @type {PayloadSchemaType}
29
29
  * @memberof PayloadIndexConfigOutput
30
30
  */
@@ -31,6 +31,9 @@ export declare const StageDefsFilterOperator: {
31
31
  readonly IsNull: "is_null";
32
32
  readonly Text: "text";
33
33
  readonly Phrase: "phrase";
34
+ readonly GeoRadius: "geo_radius";
35
+ readonly GeoBoundingBox: "geo_bounding_box";
36
+ readonly GeoPolygon: "geo_polygon";
34
37
  };
35
38
  export type StageDefsFilterOperator = typeof StageDefsFilterOperator[keyof typeof StageDefsFilterOperator];
36
39
  //# sourceMappingURL=stage-defs-filter-operator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"stage-defs-filter-operator.d.ts","sourceRoot":"","sources":["../../models/stage-defs-filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;CAiB1B,CAAC;AAEX,MAAM,MAAM,uBAAuB,GAAG,OAAO,uBAAuB,CAAC,MAAM,OAAO,uBAAuB,CAAC,CAAC"}
1
+ {"version":3,"file":"stage-defs-filter-operator.d.ts","sourceRoot":"","sources":["../../models/stage-defs-filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;CAoB1B,CAAC;AAEX,MAAM,MAAM,uBAAuB,GAAG,OAAO,uBAAuB,CAAC,MAAM,OAAO,uBAAuB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixpeek",
3
- "version": "0.81.76",
3
+ "version": "0.81.78",
4
4
  "description": "Official Mixpeek TypeScript/JavaScript SDK for multimodal data processing and retrieval",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",