@wix/data 1.0.144 → 1.0.146
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/index.d.ts +5 -4
- package/build/cjs/index.js +8 -4
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +5 -4
- package/build/es/index.js +5 -4
- package/build/es/index.js.map +1 -1
- package/package.json +7 -7
- package/type-bundles/context.bundle.d.ts +937 -78
- package/type-bundles/index.bundle.d.ts +937 -78
- package/type-bundles/meta.bundle.d.ts +378 -4
- package/type-bundles/service-plugins-context.bundle.d.ts +58 -0
- package/type-bundles/service-plugins.bundle.d.ts +67 -18
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import * as externalDatabaseConnections from '@wix/data_external-database-connections';
|
|
2
|
+
import * as collections from '@wix/data_collections';
|
|
3
|
+
import * as items from '@wix/data_items';
|
|
4
|
+
import * as indexes from '@wix/data_indexes';
|
|
5
|
+
export { externalDatabaseConnections, collections, items, indexes };
|
package/build/cjs/index.js
CHANGED
|
@@ -24,8 +24,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.indexes = exports.items = exports.collections = exports.externalDatabaseConnections = void 0;
|
|
27
|
-
|
|
28
|
-
exports.
|
|
29
|
-
|
|
30
|
-
exports.
|
|
27
|
+
const externalDatabaseConnections = __importStar(require("@wix/data_external-database-connections"));
|
|
28
|
+
exports.externalDatabaseConnections = externalDatabaseConnections;
|
|
29
|
+
const collections = __importStar(require("@wix/data_collections"));
|
|
30
|
+
exports.collections = collections;
|
|
31
|
+
const items = __importStar(require("@wix/data_items"));
|
|
32
|
+
exports.items = items;
|
|
33
|
+
const indexes = __importStar(require("@wix/data_indexes"));
|
|
34
|
+
exports.indexes = indexes;
|
|
31
35
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
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/es/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import * as externalDatabaseConnections from '@wix/data_external-database-connections';
|
|
2
|
+
import * as collections from '@wix/data_collections';
|
|
3
|
+
import * as items from '@wix/data_items';
|
|
4
|
+
import * as indexes from '@wix/data_indexes';
|
|
5
|
+
export { externalDatabaseConnections, collections, items, indexes };
|
package/build/es/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import * as externalDatabaseConnections from '@wix/data_external-database-connections';
|
|
2
|
+
import * as collections from '@wix/data_collections';
|
|
3
|
+
import * as items from '@wix/data_items';
|
|
4
|
+
import * as indexes from '@wix/data_indexes';
|
|
5
|
+
export { externalDatabaseConnections, collections, items, indexes };
|
|
5
6
|
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,2BAA2B,MAAM,yCAAyC,CAAC;AACvF,OAAO,KAAK,WAAW,MAAM,uBAAuB,CAAC;AACrD,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,2BAA2B,MAAM,yCAAyC,CAAC;AACvF,OAAO,KAAK,WAAW,MAAM,uBAAuB,CAAC;AACrD,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAE7C,OAAO,EAAE,2BAA2B,EAAE,WAAW,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.146",
|
|
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.41",
|
|
23
|
+
"@wix/data_external-database": "1.0.19",
|
|
24
|
+
"@wix/data_external-database-connections": "1.0.37",
|
|
25
|
+
"@wix/data_indexes": "1.0.31",
|
|
26
|
+
"@wix/data_items": "1.0.46"
|
|
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": "be1c188620f3a8891fb406dfd7b752eb900265333859e912f6690ca0"
|
|
52
52
|
}
|