@wix/data 1.0.152 → 1.0.154
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/context.js +0 -1
- package/build/cjs/index.js +0 -1
- package/build/cjs/meta.js +0 -1
- package/build/cjs/service-plugins-context.js +0 -1
- package/build/cjs/service-plugins.js +0 -1
- package/package.json +7 -7
- package/type-bundles/meta.bundle.d.ts +4 -4
- package/build/cjs/context.js.map +0 -1
- package/build/cjs/index.js.map +0 -1
- package/build/cjs/meta.js.map +0 -1
- package/build/cjs/service-plugins-context.js.map +0 -1
- package/build/cjs/service-plugins.js.map +0 -1
package/build/cjs/context.js
CHANGED
|
@@ -28,4 +28,3 @@ exports.externalDatabaseConnections = __importStar(require("@wix/data_external-d
|
|
|
28
28
|
exports.collections = __importStar(require("@wix/data_collections/context"));
|
|
29
29
|
exports.items = __importStar(require("@wix/data_items/context"));
|
|
30
30
|
exports.indexes = __importStar(require("@wix/data_indexes/context"));
|
|
31
|
-
//# sourceMappingURL=context.js.map
|
package/build/cjs/index.js
CHANGED
package/build/cjs/meta.js
CHANGED
|
@@ -28,4 +28,3 @@ exports.externalDatabaseConnections = __importStar(require("@wix/data_external-d
|
|
|
28
28
|
exports.collections = __importStar(require("@wix/data_collections/meta"));
|
|
29
29
|
exports.items = __importStar(require("@wix/data_items/meta"));
|
|
30
30
|
exports.indexes = __importStar(require("@wix/data_indexes/meta"));
|
|
31
|
-
//# sourceMappingURL=meta.js.map
|
|
@@ -25,4 +25,3 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.externalDatabase = void 0;
|
|
27
27
|
exports.externalDatabase = __importStar(require("@wix/data_external-database/context"));
|
|
28
|
-
//# sourceMappingURL=service-plugins-context.js.map
|
|
@@ -25,4 +25,3 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.externalDatabase = void 0;
|
|
27
27
|
exports.externalDatabase = __importStar(require("@wix/data_external-database"));
|
|
28
|
-
//# sourceMappingURL=service-plugins.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.154",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/data_collections": "1.0.
|
|
23
|
-
"@wix/data_external-database": "1.0.
|
|
24
|
-
"@wix/data_external-database-connections": "1.0.
|
|
25
|
-
"@wix/data_indexes": "1.0.
|
|
26
|
-
"@wix/data_items": "1.0.
|
|
22
|
+
"@wix/data_collections": "1.0.47",
|
|
23
|
+
"@wix/data_external-database": "1.0.21",
|
|
24
|
+
"@wix/data_external-database-connections": "1.0.40",
|
|
25
|
+
"@wix/data_indexes": "1.0.34",
|
|
26
|
+
"@wix/data_items": "1.0.50"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "b9812402adcaf37c6d4743e63a086b6229e268a1e6dfa96585522edb"
|
|
52
52
|
}
|
|
@@ -556,10 +556,6 @@ 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
|
-
}
|
|
563
559
|
interface Sort$1 {
|
|
564
560
|
/** Field to sort by. */
|
|
565
561
|
fieldKey?: string;
|
|
@@ -570,6 +566,10 @@ interface Sort$1 {
|
|
|
570
566
|
*/
|
|
571
567
|
direction?: Direction$1;
|
|
572
568
|
}
|
|
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.
|
package/build/cjs/context.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+GAA+F;AAC/F,6EAA6D;AAC7D,iEAAiD;AACjD,qEAAqD"}
|
package/build/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qGAAuF;AAK9E,kEAA2B;AAJpC,mEAAqD;AAIf,kCAAW;AAHjD,uDAAyC;AAGU,sBAAK;AAFxD,2DAA6C;AAEa,0BAAO"}
|
package/build/cjs/meta.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4GAA4F;AAC5F,0EAA0D;AAC1D,8DAA8C;AAC9C,kEAAkD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-plugins-context.js","sourceRoot":"","sources":["../../service-plugins-context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wFAAwE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-plugins.js","sourceRoot":"","sources":["../../service-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,gFAAgE"}
|