@wix/data 1.0.166 → 1.0.167
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/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.167",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"keywords": [
|
|
9
|
-
"wix-sdk-module=backend,page,public"
|
|
10
|
-
],
|
|
11
8
|
"sideEffects": false,
|
|
12
9
|
"module": "build/es/index.js",
|
|
13
10
|
"main": "build/cjs/index.js",
|
|
@@ -22,7 +19,7 @@
|
|
|
22
19
|
"service-plugins"
|
|
23
20
|
],
|
|
24
21
|
"dependencies": {
|
|
25
|
-
"@wix/data_collections": "1.0.
|
|
22
|
+
"@wix/data_collections": "1.0.56",
|
|
26
23
|
"@wix/data_external-database": "1.0.24",
|
|
27
24
|
"@wix/data_external-database-connections": "1.0.46",
|
|
28
25
|
"@wix/data_indexes": "1.0.39",
|
|
@@ -51,5 +48,5 @@
|
|
|
51
48
|
"fqdn": ""
|
|
52
49
|
}
|
|
53
50
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "95d69f171739408e9a9baf28a458cd43b0fe3b577b940a84ce10e73b"
|
|
55
52
|
}
|
|
@@ -1688,6 +1688,11 @@ interface GetDataCollectionRequest {
|
|
|
1688
1688
|
* Default: `false`
|
|
1689
1689
|
*/
|
|
1690
1690
|
consistentRead?: boolean;
|
|
1691
|
+
/**
|
|
1692
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1693
|
+
* Affects all returned collections
|
|
1694
|
+
*/
|
|
1695
|
+
fields?: string[];
|
|
1691
1696
|
}
|
|
1692
1697
|
declare enum Segment {
|
|
1693
1698
|
UNKNOWN_SEGMENT = "UNKNOWN_SEGMENT",
|
|
@@ -1720,6 +1725,11 @@ interface ListDataCollectionsRequest {
|
|
|
1720
1725
|
* Default: `false`
|
|
1721
1726
|
*/
|
|
1722
1727
|
consistentRead?: boolean;
|
|
1728
|
+
/**
|
|
1729
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1730
|
+
* Affects all returned collections
|
|
1731
|
+
*/
|
|
1732
|
+
fields?: string[];
|
|
1723
1733
|
}
|
|
1724
1734
|
interface Sorting$1 {
|
|
1725
1735
|
/** Name of the field to sort by. */
|
|
@@ -1778,6 +1788,11 @@ interface BulkGetDataCollectionsRequest {
|
|
|
1778
1788
|
* Default: `false`
|
|
1779
1789
|
*/
|
|
1780
1790
|
consistentRead?: boolean;
|
|
1791
|
+
/**
|
|
1792
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1793
|
+
* Affects all returned collections
|
|
1794
|
+
*/
|
|
1795
|
+
fields?: string[];
|
|
1781
1796
|
}
|
|
1782
1797
|
interface BulkGetDataCollectionsResponse {
|
|
1783
1798
|
/**
|
|
@@ -2253,6 +2268,11 @@ interface GetDataCollectionOptions {
|
|
|
2253
2268
|
* Default: `false`
|
|
2254
2269
|
*/
|
|
2255
2270
|
consistentRead?: boolean;
|
|
2271
|
+
/**
|
|
2272
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
2273
|
+
* Affects all returned collections
|
|
2274
|
+
*/
|
|
2275
|
+
fields?: string[];
|
|
2256
2276
|
}
|
|
2257
2277
|
interface ListDataCollectionsOptions {
|
|
2258
2278
|
/**
|
|
@@ -2271,6 +2291,11 @@ interface ListDataCollectionsOptions {
|
|
|
2271
2291
|
* Default: `false`
|
|
2272
2292
|
*/
|
|
2273
2293
|
consistentRead?: boolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
2296
|
+
* Affects all returned collections
|
|
2297
|
+
*/
|
|
2298
|
+
fields?: string[];
|
|
2274
2299
|
}
|
|
2275
2300
|
|
|
2276
2301
|
declare function createDataCollection$1(httpClient: HttpClient): CreateDataCollectionSignature;
|
|
@@ -1688,6 +1688,11 @@ interface GetDataCollectionRequest {
|
|
|
1688
1688
|
* Default: `false`
|
|
1689
1689
|
*/
|
|
1690
1690
|
consistentRead?: boolean;
|
|
1691
|
+
/**
|
|
1692
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1693
|
+
* Affects all returned collections
|
|
1694
|
+
*/
|
|
1695
|
+
fields?: string[];
|
|
1691
1696
|
}
|
|
1692
1697
|
declare enum Segment {
|
|
1693
1698
|
UNKNOWN_SEGMENT = "UNKNOWN_SEGMENT",
|
|
@@ -1720,6 +1725,11 @@ interface ListDataCollectionsRequest {
|
|
|
1720
1725
|
* Default: `false`
|
|
1721
1726
|
*/
|
|
1722
1727
|
consistentRead?: boolean;
|
|
1728
|
+
/**
|
|
1729
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1730
|
+
* Affects all returned collections
|
|
1731
|
+
*/
|
|
1732
|
+
fields?: string[];
|
|
1723
1733
|
}
|
|
1724
1734
|
interface Sorting$1 {
|
|
1725
1735
|
/** Name of the field to sort by. */
|
|
@@ -1778,6 +1788,11 @@ interface BulkGetDataCollectionsRequest {
|
|
|
1778
1788
|
* Default: `false`
|
|
1779
1789
|
*/
|
|
1780
1790
|
consistentRead?: boolean;
|
|
1791
|
+
/**
|
|
1792
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1793
|
+
* Affects all returned collections
|
|
1794
|
+
*/
|
|
1795
|
+
fields?: string[];
|
|
1781
1796
|
}
|
|
1782
1797
|
interface BulkGetDataCollectionsResponse {
|
|
1783
1798
|
/**
|
|
@@ -2253,6 +2268,11 @@ interface GetDataCollectionOptions {
|
|
|
2253
2268
|
* Default: `false`
|
|
2254
2269
|
*/
|
|
2255
2270
|
consistentRead?: boolean;
|
|
2271
|
+
/**
|
|
2272
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
2273
|
+
* Affects all returned collections
|
|
2274
|
+
*/
|
|
2275
|
+
fields?: string[];
|
|
2256
2276
|
}
|
|
2257
2277
|
interface ListDataCollectionsOptions {
|
|
2258
2278
|
/**
|
|
@@ -2271,6 +2291,11 @@ interface ListDataCollectionsOptions {
|
|
|
2271
2291
|
* Default: `false`
|
|
2272
2292
|
*/
|
|
2273
2293
|
consistentRead?: boolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
2296
|
+
* Affects all returned collections
|
|
2297
|
+
*/
|
|
2298
|
+
fields?: string[];
|
|
2274
2299
|
}
|
|
2275
2300
|
|
|
2276
2301
|
declare function createDataCollection$1(httpClient: HttpClient): CreateDataCollectionSignature;
|
|
@@ -1078,6 +1078,11 @@ interface GetDataCollectionRequest$1 {
|
|
|
1078
1078
|
* Default: `false`
|
|
1079
1079
|
*/
|
|
1080
1080
|
consistentRead?: boolean;
|
|
1081
|
+
/**
|
|
1082
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1083
|
+
* Affects all returned collections
|
|
1084
|
+
*/
|
|
1085
|
+
fields?: string[];
|
|
1081
1086
|
}
|
|
1082
1087
|
interface GetDataCollectionResponse$1 {
|
|
1083
1088
|
/** Details of the collection requested. */
|
|
@@ -1105,6 +1110,11 @@ interface ListDataCollectionsRequest$1 {
|
|
|
1105
1110
|
* Default: `false`
|
|
1106
1111
|
*/
|
|
1107
1112
|
consistentRead?: boolean;
|
|
1113
|
+
/**
|
|
1114
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1115
|
+
* Affects all returned collections
|
|
1116
|
+
*/
|
|
1117
|
+
fields?: string[];
|
|
1108
1118
|
}
|
|
1109
1119
|
interface Sorting$3 {
|
|
1110
1120
|
/** Name of the field to sort by. */
|
|
@@ -1908,6 +1918,11 @@ interface GetDataCollectionRequest {
|
|
|
1908
1918
|
* Default: `false`
|
|
1909
1919
|
*/
|
|
1910
1920
|
consistentRead?: boolean;
|
|
1921
|
+
/**
|
|
1922
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1923
|
+
* Affects all returned collections
|
|
1924
|
+
*/
|
|
1925
|
+
fields?: string[];
|
|
1911
1926
|
}
|
|
1912
1927
|
interface GetDataCollectionResponse {
|
|
1913
1928
|
/** Details of the collection requested. */
|
|
@@ -1935,6 +1950,11 @@ interface ListDataCollectionsRequest {
|
|
|
1935
1950
|
* Default: `false`
|
|
1936
1951
|
*/
|
|
1937
1952
|
consistentRead?: boolean;
|
|
1953
|
+
/**
|
|
1954
|
+
* List of specific field names to return, if empty all fields are returned.
|
|
1955
|
+
* Affects all returned collections
|
|
1956
|
+
*/
|
|
1957
|
+
fields?: string[];
|
|
1938
1958
|
}
|
|
1939
1959
|
interface Sorting$2 {
|
|
1940
1960
|
/** Name of the field to sort by. */
|