@wix/data 1.0.151 → 1.0.152
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.152",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/data_collections": "1.0.
|
|
22
|
+
"@wix/data_collections": "1.0.45",
|
|
23
23
|
"@wix/data_external-database": "1.0.20",
|
|
24
24
|
"@wix/data_external-database-connections": "1.0.39",
|
|
25
25
|
"@wix/data_indexes": "1.0.33",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "0fdf504bfae0f9e8abcadf40ba640bf9106e8791de1dcd1d2ce2c4e9"
|
|
52
52
|
}
|
|
@@ -556,6 +556,10 @@ declare enum CollectionType$1 {
|
|
|
556
556
|
/** Collection located in externally connected storage. */
|
|
557
557
|
EXTERNAL = "EXTERNAL"
|
|
558
558
|
}
|
|
559
|
+
declare enum Direction$1 {
|
|
560
|
+
ASC = "ASC",
|
|
561
|
+
DESC = "DESC"
|
|
562
|
+
}
|
|
559
563
|
interface Sort$1 {
|
|
560
564
|
/** Field to sort by. */
|
|
561
565
|
fieldKey?: string;
|
|
@@ -566,10 +570,6 @@ interface Sort$1 {
|
|
|
566
570
|
*/
|
|
567
571
|
direction?: Direction$1;
|
|
568
572
|
}
|
|
569
|
-
declare enum Direction$1 {
|
|
570
|
-
ASC = "ASC",
|
|
571
|
-
DESC = "DESC"
|
|
572
|
-
}
|
|
573
573
|
interface CollectionCapabilities$1 {
|
|
574
574
|
/**
|
|
575
575
|
* Data operations the collection supports. The listed operations can be performed on data the collection contains.
|