mixpeek 0.81.449 → 0.81.451
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.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { FieldPassthrough } from './field-passthrough';
|
|
12
13
|
import type { SourceFiltersInput } from './source-filters-input';
|
|
13
14
|
import type { SourceType } from './source-type';
|
|
14
15
|
/**
|
|
@@ -59,5 +60,13 @@ export interface SourceConfigInput {
|
|
|
59
60
|
* @memberof SourceConfigInput
|
|
60
61
|
*/
|
|
61
62
|
'source_filters'?: SourceFiltersInput;
|
|
63
|
+
/**
|
|
64
|
+
* Optional per-source field selection for multi-source collections (multiple bucket_ids or collection_ids, possibly with DIFFERENT schemas). Maps each source id (a bucket_id or collection_id) to a list of FieldPassthrough entries choosing which of THAT source\'s fields land in the merged collection, and where (source_path -> target_path). OMITTED SOURCE: a source declared in bucket_ids/collection_ids but absent from field_map passes ALL of its fields through unchanged — field_map is a narrowing, not a required allowlist. TARGET-PATH COLLISION: if two sources (or two entries) map fields to the same target_path, collection creation fails with 422 naming the colliding target_path and the source ids. No silent first/last-wins — rename one target_path to resolve.
|
|
65
|
+
* @type {{ [key: string]: Array<FieldPassthrough>; }}
|
|
66
|
+
* @memberof SourceConfigInput
|
|
67
|
+
*/
|
|
68
|
+
'field_map'?: {
|
|
69
|
+
[key: string]: Array<FieldPassthrough>;
|
|
70
|
+
};
|
|
62
71
|
}
|
|
63
72
|
//# sourceMappingURL=source-config-input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source-config-input.d.ts","sourceRoot":"","sources":["../../models/source-config-input.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAGjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,EAAE,UAAU,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACjC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"source-config-input.d.ts","sourceRoot":"","sources":["../../models/source-config-input.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAG5D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAGjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,EAAE,UAAU,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACjC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,kBAAkB,CAAC;IACtC;;;;OAIG;IACH,WAAW,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,KAAK,CAAC,gBAAgB,CAAC,CAAC;KAAE,CAAC;CAC7D"}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { FieldPassthrough } from './field-passthrough';
|
|
12
13
|
import type { SourceFiltersOutput } from './source-filters-output';
|
|
13
14
|
import type { SourceType } from './source-type';
|
|
14
15
|
/**
|
|
@@ -59,5 +60,13 @@ export interface SourceConfigOutput {
|
|
|
59
60
|
* @memberof SourceConfigOutput
|
|
60
61
|
*/
|
|
61
62
|
'source_filters'?: SourceFiltersOutput;
|
|
63
|
+
/**
|
|
64
|
+
* Optional per-source field selection for multi-source collections (multiple bucket_ids or collection_ids, possibly with DIFFERENT schemas). Maps each source id (a bucket_id or collection_id) to a list of FieldPassthrough entries choosing which of THAT source\'s fields land in the merged collection, and where (source_path -> target_path). OMITTED SOURCE: a source declared in bucket_ids/collection_ids but absent from field_map passes ALL of its fields through unchanged — field_map is a narrowing, not a required allowlist. TARGET-PATH COLLISION: if two sources (or two entries) map fields to the same target_path, collection creation fails with 422 naming the colliding target_path and the source ids. No silent first/last-wins — rename one target_path to resolve.
|
|
65
|
+
* @type {{ [key: string]: Array<FieldPassthrough>; }}
|
|
66
|
+
* @memberof SourceConfigOutput
|
|
67
|
+
*/
|
|
68
|
+
'field_map'?: {
|
|
69
|
+
[key: string]: Array<FieldPassthrough>;
|
|
70
|
+
};
|
|
62
71
|
}
|
|
63
72
|
//# sourceMappingURL=source-config-output.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source-config-output.d.ts","sourceRoot":"","sources":["../../models/source-config-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAGnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,MAAM,EAAE,UAAU,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACjC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"source-config-output.d.ts","sourceRoot":"","sources":["../../models/source-config-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAG5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAGnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,MAAM,EAAE,UAAU,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACjC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,mBAAmB,CAAC;IACvC;;;;OAIG;IACH,WAAW,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,KAAK,CAAC,gBAAgB,CAAC,CAAC;KAAE,CAAC;CAC7D"}
|
package/package.json
CHANGED