@wix/data 1.0.78 → 1.0.79
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.
|
@@ -705,32 +705,38 @@ export interface ReplaceDataItemReferencesResponse {
|
|
|
705
705
|
export interface InsertDataItemResponseNonNullableFields {
|
|
706
706
|
dataItem?: {
|
|
707
707
|
id: string;
|
|
708
|
+
dataCollectionId: string;
|
|
708
709
|
};
|
|
709
710
|
}
|
|
710
711
|
export interface UpdateDataItemResponseNonNullableFields {
|
|
711
712
|
dataItem?: {
|
|
712
713
|
id: string;
|
|
714
|
+
dataCollectionId: string;
|
|
713
715
|
};
|
|
714
716
|
}
|
|
715
717
|
export interface SaveDataItemResponseNonNullableFields {
|
|
716
718
|
action: Action;
|
|
717
719
|
dataItem?: {
|
|
718
720
|
id: string;
|
|
721
|
+
dataCollectionId: string;
|
|
719
722
|
};
|
|
720
723
|
}
|
|
721
724
|
export interface GetDataItemResponseNonNullableFields {
|
|
722
725
|
dataItem?: {
|
|
723
726
|
id: string;
|
|
727
|
+
dataCollectionId: string;
|
|
724
728
|
};
|
|
725
729
|
}
|
|
726
730
|
export interface RemoveDataItemResponseNonNullableFields {
|
|
727
731
|
dataItem?: {
|
|
728
732
|
id: string;
|
|
733
|
+
dataCollectionId: string;
|
|
729
734
|
};
|
|
730
735
|
}
|
|
731
736
|
export interface QueryDataItemsResponseNonNullableFields {
|
|
732
737
|
dataItems: {
|
|
733
738
|
id: string;
|
|
739
|
+
dataCollectionId: string;
|
|
734
740
|
}[];
|
|
735
741
|
}
|
|
736
742
|
export interface CountDataItemsResponseNonNullableFields {
|
|
@@ -749,6 +755,7 @@ export interface BulkInsertDataItemsResponseNonNullableFields {
|
|
|
749
755
|
};
|
|
750
756
|
dataItem?: {
|
|
751
757
|
id: string;
|
|
758
|
+
dataCollectionId: string;
|
|
752
759
|
};
|
|
753
760
|
}[];
|
|
754
761
|
bulkActionMetadata?: {
|
|
@@ -769,6 +776,7 @@ export interface BulkUpdateDataItemsResponseNonNullableFields {
|
|
|
769
776
|
};
|
|
770
777
|
dataItem?: {
|
|
771
778
|
id: string;
|
|
779
|
+
dataCollectionId: string;
|
|
772
780
|
};
|
|
773
781
|
}[];
|
|
774
782
|
bulkActionMetadata?: {
|
|
@@ -789,6 +797,7 @@ export interface BulkSaveDataItemsResponseNonNullableFields {
|
|
|
789
797
|
};
|
|
790
798
|
dataItem?: {
|
|
791
799
|
id: string;
|
|
800
|
+
dataCollectionId: string;
|
|
792
801
|
};
|
|
793
802
|
}[];
|
|
794
803
|
bulkActionMetadata?: {
|
|
@@ -809,6 +818,7 @@ export interface BulkRemoveDataItemsResponseNonNullableFields {
|
|
|
809
818
|
};
|
|
810
819
|
dataItem?: {
|
|
811
820
|
id: string;
|
|
821
|
+
dataCollectionId: string;
|
|
812
822
|
};
|
|
813
823
|
}[];
|
|
814
824
|
bulkActionMetadata?: {
|
|
@@ -820,6 +830,7 @@ export interface QueryReferencedDataItemsResponseNonNullableFields {
|
|
|
820
830
|
results: {
|
|
821
831
|
dataItem?: {
|
|
822
832
|
id: string;
|
|
833
|
+
dataCollectionId: string;
|
|
823
834
|
};
|
|
824
835
|
unresolvedReference?: {
|
|
825
836
|
referringItemId: string;
|
|
@@ -1193,11 +1193,11 @@ export interface DataItemsQueryBuilder {
|
|
|
1193
1193
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1194
1194
|
* @documentationMaturity preview
|
|
1195
1195
|
*/
|
|
1196
|
-
ascending: (...propertyNames: Array<'_id' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1196
|
+
ascending: (...propertyNames: Array<'_id' | 'dataCollectionId' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1197
1197
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1198
1198
|
* @documentationMaturity preview
|
|
1199
1199
|
*/
|
|
1200
|
-
descending: (...propertyNames: Array<'_id' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1200
|
+
descending: (...propertyNames: Array<'_id' | 'dataCollectionId' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1201
1201
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
1202
1202
|
* @documentationMaturity preview
|
|
1203
1203
|
*/
|
|
@@ -705,32 +705,38 @@ export interface ReplaceDataItemReferencesResponse {
|
|
|
705
705
|
export interface InsertDataItemResponseNonNullableFields {
|
|
706
706
|
dataItem?: {
|
|
707
707
|
id: string;
|
|
708
|
+
dataCollectionId: string;
|
|
708
709
|
};
|
|
709
710
|
}
|
|
710
711
|
export interface UpdateDataItemResponseNonNullableFields {
|
|
711
712
|
dataItem?: {
|
|
712
713
|
id: string;
|
|
714
|
+
dataCollectionId: string;
|
|
713
715
|
};
|
|
714
716
|
}
|
|
715
717
|
export interface SaveDataItemResponseNonNullableFields {
|
|
716
718
|
action: Action;
|
|
717
719
|
dataItem?: {
|
|
718
720
|
id: string;
|
|
721
|
+
dataCollectionId: string;
|
|
719
722
|
};
|
|
720
723
|
}
|
|
721
724
|
export interface GetDataItemResponseNonNullableFields {
|
|
722
725
|
dataItem?: {
|
|
723
726
|
id: string;
|
|
727
|
+
dataCollectionId: string;
|
|
724
728
|
};
|
|
725
729
|
}
|
|
726
730
|
export interface RemoveDataItemResponseNonNullableFields {
|
|
727
731
|
dataItem?: {
|
|
728
732
|
id: string;
|
|
733
|
+
dataCollectionId: string;
|
|
729
734
|
};
|
|
730
735
|
}
|
|
731
736
|
export interface QueryDataItemsResponseNonNullableFields {
|
|
732
737
|
dataItems: {
|
|
733
738
|
id: string;
|
|
739
|
+
dataCollectionId: string;
|
|
734
740
|
}[];
|
|
735
741
|
}
|
|
736
742
|
export interface CountDataItemsResponseNonNullableFields {
|
|
@@ -749,6 +755,7 @@ export interface BulkInsertDataItemsResponseNonNullableFields {
|
|
|
749
755
|
};
|
|
750
756
|
dataItem?: {
|
|
751
757
|
id: string;
|
|
758
|
+
dataCollectionId: string;
|
|
752
759
|
};
|
|
753
760
|
}[];
|
|
754
761
|
bulkActionMetadata?: {
|
|
@@ -769,6 +776,7 @@ export interface BulkUpdateDataItemsResponseNonNullableFields {
|
|
|
769
776
|
};
|
|
770
777
|
dataItem?: {
|
|
771
778
|
id: string;
|
|
779
|
+
dataCollectionId: string;
|
|
772
780
|
};
|
|
773
781
|
}[];
|
|
774
782
|
bulkActionMetadata?: {
|
|
@@ -789,6 +797,7 @@ export interface BulkSaveDataItemsResponseNonNullableFields {
|
|
|
789
797
|
};
|
|
790
798
|
dataItem?: {
|
|
791
799
|
id: string;
|
|
800
|
+
dataCollectionId: string;
|
|
792
801
|
};
|
|
793
802
|
}[];
|
|
794
803
|
bulkActionMetadata?: {
|
|
@@ -809,6 +818,7 @@ export interface BulkRemoveDataItemsResponseNonNullableFields {
|
|
|
809
818
|
};
|
|
810
819
|
dataItem?: {
|
|
811
820
|
id: string;
|
|
821
|
+
dataCollectionId: string;
|
|
812
822
|
};
|
|
813
823
|
}[];
|
|
814
824
|
bulkActionMetadata?: {
|
|
@@ -820,6 +830,7 @@ export interface QueryReferencedDataItemsResponseNonNullableFields {
|
|
|
820
830
|
results: {
|
|
821
831
|
dataItem?: {
|
|
822
832
|
id: string;
|
|
833
|
+
dataCollectionId: string;
|
|
823
834
|
};
|
|
824
835
|
unresolvedReference?: {
|
|
825
836
|
referringItemId: string;
|
|
@@ -1193,11 +1193,11 @@ export interface DataItemsQueryBuilder {
|
|
|
1193
1193
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1194
1194
|
* @documentationMaturity preview
|
|
1195
1195
|
*/
|
|
1196
|
-
ascending: (...propertyNames: Array<'_id' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1196
|
+
ascending: (...propertyNames: Array<'_id' | 'dataCollectionId' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1197
1197
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
1198
1198
|
* @documentationMaturity preview
|
|
1199
1199
|
*/
|
|
1200
|
-
descending: (...propertyNames: Array<'_id' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1200
|
+
descending: (...propertyNames: Array<'_id' | 'dataCollectionId' | 'data' | string>) => DataItemsQueryBuilder;
|
|
1201
1201
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
1202
1202
|
* @documentationMaturity preview
|
|
1203
1203
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.79",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "0572a5bcb9da8e02cabee9f32af8a154beab20dcca16ff63dda2cf52"
|
|
37
37
|
}
|