@wix/wix-data-items-sdk 1.0.529 → 1.0.531
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/build/cjs/src/data-v2-data-item-items.public.d.ts +2 -2
- package/build/cjs/src/data-v2-data-item-items.public.js.map +1 -1
- package/build/cjs/src/data-v2-data-item-items.universal.d.ts +96 -147
- package/build/cjs/src/data-v2-data-item-items.universal.js +68 -70
- package/build/cjs/src/data-v2-data-item-items.universal.js.map +1 -1
- package/build/es/src/data-v2-data-item-items.public.d.ts +2 -2
- package/build/es/src/data-v2-data-item-items.public.js.map +1 -1
- package/build/es/src/data-v2-data-item-items.universal.d.ts +96 -147
- package/build/es/src/data-v2-data-item-items.universal.js +68 -70
- package/build/es/src/data-v2-data-item-items.universal.js.map +1 -1
- package/package.json +3 -3
|
@@ -17,6 +17,10 @@ import { QueryBase, pipelineBuilder, QueryBuilder, Sort, Filter, InsertOptionsBu
|
|
|
17
17
|
*
|
|
18
18
|
* When inserting an item into a collection that has a reference field, set the
|
|
19
19
|
* value of the reference field to the referenced item's `_id` value or the entire referenced item object.
|
|
20
|
+
* When inserting an item into a collection that has a multi-reference field, set the
|
|
21
|
+
* value of the multi-reference field to an array of the referenced items' `_id` values or an array of the
|
|
22
|
+
* entire referenced item objects.
|
|
23
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
20
24
|
*
|
|
21
25
|
* The `insert()` method adds the following properties and values to the item
|
|
22
26
|
* when it adds it to the collection:
|
|
@@ -36,7 +40,6 @@ import { QueryBase, pipelineBuilder, QueryBuilder, Sort, Filter, InsertOptionsBu
|
|
|
36
40
|
* > - If an item's `_id` property value is set to `null` or an empty string, an error is thrown.
|
|
37
41
|
* > - When creating a [single-item collection](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection), an item with the system field `_id` is pre-inserted into the collection. [Single-item collections](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection) may contain only one item.
|
|
38
42
|
* > - If there is a pre-existing item in a [single-item collection](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection), the `insert()` method will not run. To update or change an item in a single-item collection see the `update()` and `save()` methods.
|
|
39
|
-
* > - The `insert()` method does not support multi-reference fields. For multi-reference fields, use `insertReference()`.
|
|
40
43
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `insert()` fails and issues an error.
|
|
41
44
|
* @public
|
|
42
45
|
* @param dataCollectionId - ID of the collection item belongs to.
|
|
@@ -78,12 +81,15 @@ export async function insert(dataCollectionId, item, options) {
|
|
|
78
81
|
* When updating an item in a collection that has a reference field, set the
|
|
79
82
|
* value of the reference field to the referenced item's `_id` value or the
|
|
80
83
|
* entire referenced item object.
|
|
84
|
+
* When updating an item in a collection that has a multi-reference field, set the
|
|
85
|
+
* value of the multi-reference field to an array of the referenced items' `_id` values or an array of the
|
|
86
|
+
* entire referenced item objects.
|
|
87
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
81
88
|
*
|
|
82
89
|
* The maximum size of an item that you can update in a collection is 500kb.
|
|
83
90
|
*
|
|
84
91
|
* > **Notes:**
|
|
85
92
|
* > - The specified item must include an `_id` property that already exists in the collection.
|
|
86
|
-
* > - The `update()` method does not support multi-reference fields. For multi-reference fields, use `replaceReferences()` or `insertReference()`.
|
|
87
93
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `update()` fails and issues an error.
|
|
88
94
|
*
|
|
89
95
|
* @param dataCollectionId - ID of the collection item belongs to.
|
|
@@ -125,11 +131,14 @@ export async function update(dataCollectionId, item, options) {
|
|
|
125
131
|
* When saving an item to a collection that has a reference field, set the
|
|
126
132
|
* value of the reference field to the referenced item's `_id` value or the
|
|
127
133
|
* entire referenced item object.
|
|
134
|
+
* When saving an item to a collection that has a multi-reference field, set the
|
|
135
|
+
* value of the multi-reference field to an array of the referenced items' `_id` values or an array of the
|
|
136
|
+
* entire referenced item objects.
|
|
137
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
128
138
|
*
|
|
129
139
|
* > **Notes:**
|
|
130
140
|
* > - The maximum size of an item that you can save to a collection is 500kb.
|
|
131
141
|
* > - If an item's `_id` property value is set to null or an empty string, an error is thrown.
|
|
132
|
-
* > - The `save()` method does not support multi-reference fields. For multi-reference fields, use `insertReference() `or `replaceReferences()`.
|
|
133
142
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `save()` fails and issues an error.
|
|
134
143
|
*
|
|
135
144
|
* @public
|
|
@@ -249,6 +258,10 @@ export async function truncate(dataCollectionId) {
|
|
|
249
258
|
* When inserting items into a collection that has a reference field, set the
|
|
250
259
|
* values of the reference fields to the referenced item's `_id` value or the
|
|
251
260
|
* entire referenced item object.
|
|
261
|
+
* When inserting items into a collection that has a multi-reference field, set the
|
|
262
|
+
* values of the multi-reference fields to arrays of the referenced items' `_id` values or arrays of the
|
|
263
|
+
* entire referenced item objects.
|
|
264
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
252
265
|
*
|
|
253
266
|
* The `bulkInsert()` method adds the following properties and values to the
|
|
254
267
|
* item when it adds it to the collection:
|
|
@@ -271,7 +284,6 @@ export async function truncate(dataCollectionId) {
|
|
|
271
284
|
* > - If an item's `_id` property value is set to `null` or an empty string, an error is thrown.
|
|
272
285
|
* > - Bulk operations are limited to 1000 items per method call.
|
|
273
286
|
* > - The `bulkInsert()` method is not supported for [single-item collections](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection).
|
|
274
|
-
* > - The `bulkInsert()` method does not support multi-reference fields. For multi-reference fields, use `insertReference()`.
|
|
275
287
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `bulkInsert()` fails and issues an error.
|
|
276
288
|
* @public
|
|
277
289
|
* @documentationMaturity preview
|
|
@@ -316,11 +328,14 @@ export async function bulkInsert(dataCollectionId, items, options) {
|
|
|
316
328
|
* When updating items in a collection that has a reference field, set the
|
|
317
329
|
* values of the reference field to the referenced item's `_id` value or the
|
|
318
330
|
* entire referenced item object.
|
|
331
|
+
* When updating items in a collection that has a multi-reference field, set the
|
|
332
|
+
* values of the multi-reference field to arrays of the referenced items' `_id` values or arrays of the
|
|
333
|
+
* entire referenced item objects.
|
|
334
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
319
335
|
*
|
|
320
336
|
* > **Notes:**
|
|
321
337
|
* > - The maximum size of an item that you can update in a collection is 500kb.
|
|
322
338
|
* > - Bulk operations are limited to 1000 items per method call.
|
|
323
|
-
* > - The `bulkUpdate()` method does not support multi-reference fields. For multi-reference fields, use `replaceReferences()` or `insertReference()`.
|
|
324
339
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `bulkUpdate()` fails and issues an error.
|
|
325
340
|
*
|
|
326
341
|
* @public
|
|
@@ -363,13 +378,16 @@ export async function bulkUpdate(dataCollectionId, items, options) {
|
|
|
363
378
|
* When saving items to a collection that has a reference field, set the values
|
|
364
379
|
* of the reference fields to the referenced item's `_id` value or the entire
|
|
365
380
|
* referenced item object.
|
|
381
|
+
* When saving items to a collection that has a multi-reference field, set the
|
|
382
|
+
* values of the multi-reference fields to arrays of the referenced items' `_id` values or arrays of the
|
|
383
|
+
* entire referenced item objects.
|
|
384
|
+
* To save multi-reference values, pass `saveReferences: true` in the `options` argument.
|
|
366
385
|
*
|
|
367
386
|
* > **Notes:**
|
|
368
387
|
* > - The maximum size of an item that you can save to a collection is 500kb.
|
|
369
388
|
* > - If an item's `_id` property value is set to null or an empty string, an error is thrown.
|
|
370
389
|
* > - Bulk operations are limited to 1000 items per method call.
|
|
371
390
|
* > - The `bulkSave()` method is not supported for [single-item collections](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection).
|
|
372
|
-
* > - The `bulkSave()` method does not support multi-reference fields. For multi-reference fields, use `replaceReferences()` or `insertReference()`.
|
|
373
391
|
* > - [Translatable collections](https://support.wix.com/en/article/wix-multilingual-translating-cms-collection-content) do not allow insertion and modification of items when working in a non-primary language. For example, if a collection's primary language is English, and the site visitor is viewing the site in French, calling `bulkSave()` fails and issues an error.
|
|
374
392
|
*
|
|
375
393
|
* @public
|
|
@@ -564,9 +582,7 @@ export function bulkPatch(dataCollectionId, itemIds, fieldModifications, options
|
|
|
564
582
|
/**
|
|
565
583
|
* Creates an async patch to modify all items matching a filter.
|
|
566
584
|
*
|
|
567
|
-
* The `asyncPatchByFilter()` method
|
|
568
|
-
* It returns a `WixDataPatchByFilter` object that you can refine with patch methods such as `setField()`,
|
|
569
|
-
* `removeField()`, `incrementField()`, `appendToArray()`, and `removeFromArray()`. To start the job, chain `run()`.
|
|
585
|
+
* The `asyncPatchByFilter()` method selects items by filter and starts a background job to partially update them.
|
|
570
586
|
*
|
|
571
587
|
* Pass an empty filter object to patch all items in the collection.
|
|
572
588
|
*
|
|
@@ -574,9 +590,11 @@ export function bulkPatch(dataCollectionId, itemIds, fieldModifications, options
|
|
|
574
590
|
* @documentationMaturity preview
|
|
575
591
|
* @requiredField dataCollectionId
|
|
576
592
|
* @requiredField filter
|
|
593
|
+
* @requiredField fieldModifications
|
|
577
594
|
* @param dataCollectionId - ID of the collection containing the items to patch.
|
|
578
595
|
* @param filter - Filter selecting items to patch. Use `{}` to select all items.
|
|
579
596
|
* @param fieldModifications - Field modifications to apply to the items.
|
|
597
|
+
* @param options - Options to use when processing this operation.
|
|
580
598
|
* @permissionScope Write Data Items
|
|
581
599
|
* @permissionScopeId SCOPE.DC-DATA.WRITE
|
|
582
600
|
* @fqn com.wixpress.cloud.data.api.data.DataItemService.AsyncPatchDataItemsByFilter
|
|
@@ -647,35 +665,17 @@ export function aggregate(dataCollectionId, pipeline, options) {
|
|
|
647
665
|
}
|
|
648
666
|
return createWixData(httpClient, sideEffects).aggregate(dataCollectionId);
|
|
649
667
|
}
|
|
650
|
-
/**
|
|
651
|
-
* Runs an aggregation pipeline on a data collection and returns the results.
|
|
652
|
-
*
|
|
653
|
-
* Aggregations enable you to perform advanced data calculations, transformations, and groupings. While [`aggregate()`](https://dev.wix.com/docs/sdk/backend-modules/data/items/aggregate) allows you to perform basic aggregations, `aggregatePipeline()` allows you to perform advanced aggregations sequentially in stages, with each stage transforming the results of the previous stage.
|
|
654
|
-
*
|
|
655
|
-
* When calling the `aggregatePipeline()` method, specify the collection ID and an aggregation pipeline. To build the pipeline, call the [`pipelineBuilder()`](https://dev.wix.com/docs/sdk/backend-modules/data/items/pipeline-builder) method and chain [`PipelineBuilder`](https://dev.wix.com/docs/sdk/backend-modules/data/items/pipeline-builder/introduction) methods to add stages and configure paging.
|
|
656
|
-
*
|
|
657
|
-
* `aggregatePipeline()` returns the aggregated results and pagination information.
|
|
658
|
-
*
|
|
659
|
-
* > **Note**: You can only build an aggregation pipeline for collections [created in the CMS](https://support.wix.com/en/article/cms-formerly-content-manager-creating-a-collection) or with the [Data Collections API](https://dev.wix.com/docs/sdk/backend-modules/data/collections/introduction). They cannot be used on [Wix app collections](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) or [external collections](https://dev.wix.com/docs/develop-websites/articles/databases/external-databases/overview/integrating-external-databases-with-your-wix-site).
|
|
660
|
-
*
|
|
661
|
-
* @public
|
|
662
|
-
* @documentationMaturity preview
|
|
663
|
-
* @requiredField dataCollectionId
|
|
664
|
-
* @param dataCollectionId - ID of the collection to run the aggregation pipeline on.
|
|
665
|
-
* @param pipeline - Aggregation pipeline with data processing stages and paging configuration. Call [`pipelineBuilder()`](https://dev.wix.com/docs/sdk/backend-modules/data/items/pipeline-builder) to build the pipeline.
|
|
666
|
-
* @param options - Options for running the aggregation pipeline.
|
|
667
|
-
* @permissionScope Read Data Items
|
|
668
|
-
* @permissionScopeId SCOPE.DC-DATA.READ
|
|
669
|
-
* @applicableIdentity APP
|
|
670
|
-
* @fqn com.wixpress.cloud.data.api.data.DataItemService.AggregatePipelineDataItems
|
|
671
|
-
*/
|
|
672
668
|
export async function aggregatePipeline(dataCollectionId, pipeline, options) {
|
|
673
669
|
const { httpClient, sideEffects } = arguments[3];
|
|
674
670
|
return createWixData(httpClient, sideEffects).aggregatePipeline(dataCollectionId, pipeline, options);
|
|
675
671
|
}
|
|
676
672
|
/**
|
|
677
673
|
* Retrieves distinct values for a specified field directly from a data collection.
|
|
678
|
-
*
|
|
674
|
+
*
|
|
675
|
+
* @public
|
|
676
|
+
* @documentationMaturity preview
|
|
677
|
+
* @requiredField dataCollectionId
|
|
678
|
+
* @requiredField fieldName
|
|
679
679
|
* @param dataCollectionId - ID of the collection to retrieve distinct values from.
|
|
680
680
|
* @param fieldName - Field whose distinct values are retrieved.
|
|
681
681
|
* @param options - Options for running the distinct operation.
|
|
@@ -687,7 +687,10 @@ export async function distinct(dataCollectionId, fieldName, options) {
|
|
|
687
687
|
}
|
|
688
688
|
/**
|
|
689
689
|
* Counts the number of items directly in a data collection.
|
|
690
|
-
*
|
|
690
|
+
*
|
|
691
|
+
* @public
|
|
692
|
+
* @documentationMaturity preview
|
|
693
|
+
* @requiredField dataCollectionId
|
|
691
694
|
* @param dataCollectionId - ID of the collection to count items in.
|
|
692
695
|
* @param options - Options for running the count.
|
|
693
696
|
* @returns Promise that resolves to the number of items.
|
|
@@ -696,18 +699,21 @@ export async function count(dataCollectionId, options) {
|
|
|
696
699
|
const { httpClient, sideEffects } = arguments[2];
|
|
697
700
|
return createWixData(httpClient, sideEffects).count(dataCollectionId, options);
|
|
698
701
|
}
|
|
702
|
+
export async function queryReferenced(dataCollectionId, referringItem, field, options) {
|
|
703
|
+
const { httpClient, sideEffects } = arguments[4];
|
|
704
|
+
return createWixData(httpClient, sideEffects).queryReferenced(dataCollectionId, referringItem, field, options);
|
|
705
|
+
}
|
|
699
706
|
/**
|
|
700
707
|
* Retrieves the full items referenced in the specified field of an item.
|
|
701
708
|
*
|
|
702
709
|
* Reference and multi-reference fields refer to items in different collections. Use this method to retrieve the full details of the referenced items.
|
|
703
710
|
*
|
|
704
|
-
* For example, suppose you have a **Movies** collection with an **Actors** field that contains references to items in a **People** collection. Querying the **Movies** collection using `
|
|
711
|
+
* For example, suppose you have a **Movies** collection with an **Actors** field that contains references to items in a **People** collection. Querying the **Movies** collection using `queryReferencedItems()` retrieves the relevant **People** items referenced in the **Actors** field of the specified **Movie** item. This gives you information from the **People** collection about each of the actors in the specified movie.
|
|
705
712
|
*
|
|
706
|
-
* The `
|
|
713
|
+
* The `queryReferencedItems()` method returns a Promise that resolves to the full items referenced in the specified property of the item from the specified collection. The Promise is rejected if the current user does not have read permissions for the specified collection or the collection containing the referenced items.
|
|
707
714
|
*
|
|
708
715
|
* > **Notes**:
|
|
709
|
-
* > - You can
|
|
710
|
-
* > - This method does not support [single-item collections](https://support.wix.com/en/article/cms-adding-and-setting-up-a-single-item-collection).
|
|
716
|
+
* > - You can call `queryReferencedItems()` for both [reference](https://support.wix.com/en/article/cms-using-reference-fields-to-display-content-from-multiple-collections) and [multi-reference](https://support.wix.com/en/article/about-referencing-multiple-items-in-one-field) fields.
|
|
711
717
|
* > - When calling `queryReferenced()` immediately following an update to your collection, the data retrieved [may not contain the most recent changes](https://dev.wix.com/docs/sdk/backend-modules/data/eventual-consistency). If you need the most up-to-date data, set `options.consistentRead` to `true`.
|
|
712
718
|
* > - To speed up data retrieval, the results of certain data queries are cached. Learn more about [caching data query results](https://dev.wix.com/docs/develop-websites/articles/databases/wix-data/data-api/about-caching-data-query-results).
|
|
713
719
|
*
|
|
@@ -718,26 +724,6 @@ export async function count(dataCollectionId, options) {
|
|
|
718
724
|
* @requiredField referringItem
|
|
719
725
|
* @requiredField field
|
|
720
726
|
* @param dataCollectionId - ID of the collection that contains the referring item.
|
|
721
|
-
* @param referringItem - Referring item or referring item's ID.
|
|
722
|
-
* @param field - Field that contains the references to the referenced items.
|
|
723
|
-
* @param options - Options for querying referenced data items.
|
|
724
|
-
* @permissionScope Read Data Items
|
|
725
|
-
* @permissionScopeId SCOPE.DC-DATA.READ
|
|
726
|
-
* @applicableIdentity APP
|
|
727
|
-
* @fqn com.wixpress.cloud.data.api.data.DataItemService.QueryReferencedDataItems
|
|
728
|
-
*/
|
|
729
|
-
export async function queryReferenced(dataCollectionId, referringItem, field, options) {
|
|
730
|
-
const { httpClient, sideEffects } = arguments[4];
|
|
731
|
-
return createWixData(httpClient, sideEffects).queryReferenced(dataCollectionId, referringItem, field, options);
|
|
732
|
-
}
|
|
733
|
-
/**
|
|
734
|
-
* Queries referenced items for one or more referring items.
|
|
735
|
-
* @internal
|
|
736
|
-
* @documentationMaturity preview
|
|
737
|
-
* @requiredField dataCollectionId
|
|
738
|
-
* @requiredField referringItem
|
|
739
|
-
* @requiredField field
|
|
740
|
-
* @param dataCollectionId - ID of the collection that contains the referring item.
|
|
741
727
|
* @param referringItem - Referring item, referring item's ID, or a list of referring items or IDs.
|
|
742
728
|
* @param field - Field that contains the references to the referenced items.
|
|
743
729
|
* @param options - Options for querying referenced data items.
|
|
@@ -750,16 +736,6 @@ export async function queryReferencedItems(dataCollectionId, referringItem, fiel
|
|
|
750
736
|
const { httpClient, sideEffects } = arguments[4];
|
|
751
737
|
return createWixData(httpClient, sideEffects).queryReferencedItems(dataCollectionId, referringItem, field, options);
|
|
752
738
|
}
|
|
753
|
-
/**
|
|
754
|
-
* Creates a filter for queries and aggregations.
|
|
755
|
-
*
|
|
756
|
-
* The `filter()` method builds a filter to be applied to a query or an aggregation. It returns a `WixDataFilter` object, which can be used with other filter methods such as `and()`, `or()` and `not()`, to create complex filter definitions.
|
|
757
|
-
*
|
|
758
|
-
* When working with [Wix app collections](https://dev.wix.com/docs/develop-websites/articles/databases/wix-data/collections/working-with-wix-app-collections-and-code), check which fields can be used in a filter.
|
|
759
|
-
*
|
|
760
|
-
* @public
|
|
761
|
-
* @documentationMaturity preview
|
|
762
|
-
*/
|
|
763
739
|
export function filter() {
|
|
764
740
|
const { httpClient, sideEffects } = arguments[0];
|
|
765
741
|
return createWixData(httpClient, sideEffects).filter;
|
|
@@ -793,11 +769,33 @@ export var Environment;
|
|
|
793
769
|
Environment["SANDBOX_PREFERRED"] = "SANDBOX_PREFERRED";
|
|
794
770
|
})(Environment || (Environment = {}));
|
|
795
771
|
export { QueryBase, FieldModificationsBuilder, pipelineBuilder, QueryBuilder, Sort, Filter, InsertOptionsBuilder, SaveOptionsBuilder, BulkSaveOptionsBuilder, GetOptionsBuilder, QueryOptionsBuilder, QueryReferencedItemsOptionsBuilder, AggregateOptionsBuilder, DistinctOptionsBuilder, CountOptionsBuilder, IsReferencedOptionsBuilder, SearchOptionsBuilder, UpdateOptionsBuilder, BulkUpdateOptionsBuilder, BulkInsertOptionsBuilder, PatchOptionsBuilder, BulkPatchOptionsBuilder, BulkRemoveOptionsBuilder, RemoveOptionsBuilder, AsyncRemoveByFilterOptionsBuilder, AsyncPatchByFilterOptionsBuilder, SearchBuilder, SearchParams, expressions, stages, };
|
|
796
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* Builds an aggregation pipeline for use with [`aggregate()`](https://dev.wix.com/docs/sdk/backend-modules/data/items/aggregate).
|
|
774
|
+
*
|
|
775
|
+
* Configure the pipeline by calling `PipelineBuilder()` and chaining [`PipelineBuilder`](https://dev.wix.com/docs/sdk/backend-modules/data/items/pipeline-builder/introduction) methods. Then, specify the pipeline as the `pipeline` parameter when calling the [`aggregate()`](https://dev.wix.com/docs/sdk/backend-modules/data/items/aggregate) method.
|
|
776
|
+
*
|
|
777
|
+
* > **Note**: You can only build an aggregation pipeline for collections [created in the CMS](https://support.wix.com/en/article/cms-formerly-content-manager-creating-a-collection) or with the [Data Collections API](https://dev.wix.com/docs/sdk/backend-modules/data/collections/introduction). They cannot be used on [Wix app collections](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) or [external collections](https://dev.wix.com/docs/develop-websites/articles/databases/external-databases/overview/integrating-external-databases-with-your-wix-site).
|
|
778
|
+
*
|
|
779
|
+
* @public
|
|
780
|
+
* @documentationMaturity preview
|
|
781
|
+
* @returns PipelineBuilder object
|
|
782
|
+
*/
|
|
797
783
|
export const PipelineBuilder = pipelineBuilder;
|
|
798
|
-
/**
|
|
784
|
+
/**
|
|
785
|
+
* Use `Stages` to create and configure pipeline stages such as `filter()`,
|
|
786
|
+
* `group()`, `project()`, `sort()`, `limit()`, `skip()`, `unwind()`, and
|
|
787
|
+
* `objectToArray()` when building an aggregation pipeline.
|
|
788
|
+
*
|
|
789
|
+
* @public
|
|
790
|
+
* @documentationMaturity preview
|
|
791
|
+
*/
|
|
799
792
|
export const Stages = stages;
|
|
800
|
-
/**
|
|
793
|
+
/**
|
|
794
|
+
* Use `Expressions` to build computed values for aggregation stages such as
|
|
795
|
+
* `project()`, `group()`, and `reshape()`.
|
|
796
|
+
* @public
|
|
797
|
+
* @documentationMaturity preview
|
|
798
|
+
*/
|
|
801
799
|
export const Expressions = expressions;
|
|
802
800
|
export * from './data-v2-data-item-items.types';
|
|
803
801
|
//# sourceMappingURL=data-v2-data-item-items.universal.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-v2-data-item-items.universal.js","sourceRoot":"","sources":["../../../src/data-v2-data-item-items.universal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAE9C,OAAO,EAwCL,SAAS,EAkBT,eAAe,EAEf,YAAY,EACZ,IAAI,EACJ,MAAM,EACN,oBAAoB,EACpB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kCAAkC,EAClC,uBAAuB,EACvB,sBAAsB,EACtB,mBAAmB,EACnB,0BAA0B,EAC1B,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,wBAAwB,EACxB,mBAAmB,EACnB,uBAAuB,EACvB,wBAAwB,EACxB,oBAAoB,EACpB,iCAAiC,EACjC,gCAAgC,EAIhC,WAAW,EACX,MAAM,EAwBN,aAAa,EACb,YAAY,EACZ,yBAAyB,GAE1B,MAAM,4BAA4B,CAAA;AAOnC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAM,CAAC,KAAK,UAAU,MAAM,CAC1B,gBAAwB,EACxB,IAAU,EACV,OAA8B;IAE9B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAClD,gBAAgB,EAChB,IAAI,EACJ,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAM,CAAC,KAAK,UAAU,MAAM,CAC1B,gBAAwB,EACxB,IAAU,EACV,OAA8B;IAE9B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAClD,gBAAgB,EAChB,IAAI,EACJ,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAM,CAAC,KAAK,UAAU,IAAI,CACxB,gBAAwB,EACxB,IAAU,EACV,OAA4B;IAE5B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,IAAI,CAChD,gBAAgB,EAChB,IAAI,EACJ,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAM,CAAC,KAAK,UAAU,GAAG,CACvB,gBAAwB,EACxB,MAAc,EACd,OAA2B;IAE3B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,GAAG,CAC/C,gBAAgB,EAChB,MAAM,EACN,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAM,CAAC,KAAK,UAAU,MAAM,CAC1B,gBAAwB,EACxB,MAAc,EACd,OAA8B;IAE9B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAClD,gBAAgB,EAChB,MAAM,EACN,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,CAAC,KAAK,UAAU,QAAQ,CAAC,gBAAwB;IACrD,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAA;AAC1E,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAC9B,gBAAwB,EACxB,KAAa,EACb,OAAkC;IAElC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,UAAU,CACtD,gBAAgB,EAChB,KAAK,EACL,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAC9B,gBAAwB,EACxB,KAAa,EACb,OAAkC;IAElC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,UAAU,CACtD,gBAAgB,EAChB,KAAK,EACL,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAM,CAAC,KAAK,UAAU,QAAQ,CAC5B,gBAAwB,EACxB,KAAa,EACb,OAAgC;IAEhC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,QAAQ,CACpD,gBAAgB,EAChB,KAAK,EACL,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,CAAC,KAAK,UAAU,UAAU,CAC9B,gBAAwB,EACxB,OAAiB,EACjB,OAAkC;IAElC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,UAAU,CACtD,gBAAgB,EAChB,OAAO,EACP,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,CAAC,KAAK,UAAU,YAAY,CAIhC,gBAAwB,EACxB,KAAa,EACb,aAAgC,EAChC,cAAkC,EAClC,OAAoC;IAEpC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,YAAY,CACxD,gBAAgB,EAChB,KAAK,EACL,aAAa,EACb,cAAc,EACd,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,CAAC,KAAK,UAAU,eAAe,CAInC,gBAAwB,EACxB,KAAa,EACb,aAAgC,EAChC,cAA2D,EAC3D,OAAwB;IAExB,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,IACE,OAAO,KAAK,KAAK,QAAQ;QACzB,aAAa,IAAI,SAAS;QAC1B,cAAc,IAAI,SAAS,EAC3B,CAAC;QACD,0FAA0F;QAC1F,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,eAAe,CAC3D,gBAAgB,EAChB,KAAK,EACL,OAAO,CACR,CAAA;IACH,CAAC;SAAM,CAAC;QACN,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,eAAe,CAC3D,gBAAgB,EAChB,KAAK,EACL,aAAa,EACb,cAAc,EACd,OAAO,CACR,CAAA;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,CAAC,KAAK,UAAU,eAAe,CAInC,gBAAwB,EACxB,KAAa,EACb,aAAgC,EAChC,cAA2D,EAC3D,OAAwB;IAExB,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,eAAe,CAC3D,gBAAgB,EAChB,KAAK,EACL,aAAa,EACb,cAAc,EACd,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,CAAC,KAAK,UAAU,iBAAiB,CAIrC,gBAAwB,EACxB,KAAa,EACb,aAAgC,EAChC,cAA2D,EAC3D,OAAwB;IAExB,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,iBAAiB,CAC7D,gBAAgB,EAChB,KAAK,EACL,aAAa,EACb,cAAc,EACd,OAAO,CACR,CAAA;AACH,CAAC;AAmCD,MAAM,UAAU,KAAK,CACnB,gBAAwB,EACxB,MAAc,EACd,kBAAwC,EACxC,OAA6B;IAE7B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAGjE,CAAA;IAED,IAAI,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC;QAC1B,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,KAAK,CACjD,gBAAgB,EAChB,MAAM,EACN,kBAAmB,EAAE,uEAAuE;QAC5F,OAAO,CACR,CAAA;IACH,CAAC;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,KAAK,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAA;AAC/E,CAAC;AAwCD,MAAM,UAAU,SAAS,CACvB,gBAAwB,EACxB,OAAiB,EACjB,kBAAwC,EACxC,OAAiC;IAEjC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAGjE,CAAA;IAED,IAAI,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC;QAC1B,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,SAAS,CACrD,gBAAgB,EAChB,OAAO,EACP,kBAAkB,EAClB,OAAO,CACR,CAAA;IACH,CAAC;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,SAAS,CACrD,gBAAgB,EAChB,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,CAAC,KAAK,UAAU,kBAAkB,CACtC,gBAAwB,EACxB,MAA0B,EAC1B,kBAAuC,EACvC,OAA0C;IAE1C,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,kBAAkB,CAC9D,gBAAgB,EAChB,MAAM,EACN,kBAAkB,EAClB,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,KAAK,UAAU,mBAAmB,CACvC,gBAAwB,EACxB,MAA0B,EAC1B,OAA2C;IAE3C,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,mBAAmB,CAC/D,gBAAgB,EAChB,MAAM,EACN,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,KAAK,UAAU,iBAAiB,CACrC,KAAa;IAEb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACxE,CAAC;AAwDD,MAAM,UAAU,KAAK,CACnB,gBAAwB,EACxB,YAAkC,EAClC,OAA6B;IAE7B,gEAAgE;IAChE,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,IAAI,YAAY,KAAK,SAAS,EAAE,CAAC;QAC/B,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,KAAK,CACjD,gBAAgB,EAChB,YAAY,EACZ,OAAO,CACR,CAAA;IACH,CAAC;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAA;AACvE,CAAC;AA2CD,MAAM,UAAU,MAAM,CACpB,gBAAwB,EACxB,aAAoC,EACpC,OAA8B;IAE9B,gEAAgE;IAChE,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,IAAI,aAAa,KAAK,SAAS,EAAE,CAAC;QAChC,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAClD,gBAAgB,EAChB,aAAa,EACb,OAAO,CACR,CAAA;IACH,CAAC;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAA;AACxE,CAAC;AA6CD,MAAM,UAAU,SAAS,CAGvB,gBAAwB,EACxB,QAA8B,EAC9B,OAAiC;IAEjC,gEAAgE;IAChE,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;QAC3B,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,SAAS,CACrD,gBAAgB,EAChB,QAAQ,EACR,OAAO,CACR,CAAA;IACH,CAAC;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAA;AAC3E,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,CAAC,KAAK,UAAU,iBAAiB,CACrC,gBAAwB,EACxB,QAA6B,EAC7B,OAAiC;IAEjC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,iBAAiB,CAC7D,gBAAgB,EAChB,QAAQ,EACR,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;GAOG;AACH,MAAM,CAAC,KAAK,UAAU,QAAQ,CAC5B,gBAAwB,EACxB,SAAiB,EACjB,OAAgC;IAEhC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,QAAQ,CACpD,gBAAgB,EAChB,SAAS,EACT,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;GAMG;AACH,MAAM,CAAC,KAAK,UAAU,KAAK,CACzB,gBAAwB,EACxB,OAA6B;IAE7B,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,KAAK,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAChF,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAM,CAAC,KAAK,UAAU,eAAe,CACnC,gBAAwB,EACxB,aAAmC,EACnC,KAAa,EACb,OAAuC;IAEvC,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,eAAe,CAC3D,gBAAgB,EAChB,aAAa,EACb,KAAK,EACL,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,CAAC,KAAK,UAAU,oBAAoB,CAGxC,gBAAwB,EACxB,aAA8D,EAC9D,KAAa,EACb,OAA4C;IAE5C,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,oBAAoB,CAChE,gBAAgB,EAChB,aAAa,EACb,KAAK,EACL,OAAO,CACR,CAAA;AACH,CAAC;AAED;;;;;;;;;GASG;AACH,MAAM,UAAU,MAAM;IACpB,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAAA;AACtD,CAAC;AAED;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,eAAe,CAAC,WAAwB;IACtD,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAA;IAED,OAAO,aAAa,CAAC,UAAU,EAAE,WAAW,EAAE,WAAW,CAAC,CAAA;AAC5D,CAAC;AAED,MAAM,CAAN,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,6IAA6I;IAC7I,4BAAa,CAAA;IACb,mJAAmJ;IACnJ,kCAAmB,CAAA;IACnB,oPAAoP;IACpP,sDAAuC,CAAA;AACzC,CAAC,EAPW,WAAW,KAAX,WAAW,QAOtB;AA+CD,OAAO,EAwCL,SAAS,EAaT,yBAAyB,EAIzB,eAAe,EACf,YAAY,EACZ,IAAI,EACJ,MAAM,EACN,oBAAoB,EACpB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kCAAkC,EAClC,uBAAuB,EACvB,sBAAsB,EACtB,mBAAmB,EACnB,0BAA0B,EAC1B,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,wBAAwB,EACxB,mBAAmB,EACnB,uBAAuB,EACvB,wBAAwB,EACxB,oBAAoB,EACpB,iCAAiC,EACjC,gCAAgC,EAIhC,aAAa,EACb,YAAY,EACZ,WAAW,EACX,MAAM,GAwBP,CAAA;AAID,cAAc;AACd,MAAM,CAAC,MAAM,eAAe,GAA2B,eAAe,CAAA;AACtE,cAAc;AACd,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAA;AAC5B,cAAc;AACd,MAAM,CAAC,MAAM,WAAW,GAAG,WAAW,CAAA;AA4BtC,cAAc,iCAAiC,CAAA"}
|
|
1
|
+
{"version":3,"file":"data-v2-data-item-items.universal.js","sourceRoot":"","sources":["../../../src/data-v2-data-item-items.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/wix-data-items-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.531",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Rimvydas Gimbutas",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@wix/sdk-runtime": "^0.7.0",
|
|
38
38
|
"@wix/sdk-types": "^1.14.0",
|
|
39
|
-
"@wix/wix-data-items-common": "1.0.
|
|
39
|
+
"@wix/wix-data-items-common": "1.0.313"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@eslint/js": "^9.39.1",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"wallaby": {
|
|
96
96
|
"autoDetect": true
|
|
97
97
|
},
|
|
98
|
-
"falconPackageHash": "
|
|
98
|
+
"falconPackageHash": "d23b7ba926058621f11dbd536249939500dc0a4829cd0a42fe63a1d6"
|
|
99
99
|
}
|