@wix/data 1.0.179 → 1.0.181

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.
Files changed (35) hide show
  1. package/context.js.map +1 -0
  2. package/context.ts +4 -0
  3. package/index.js.map +1 -0
  4. package/index.ts +6 -0
  5. package/meta.js.map +1 -0
  6. package/meta.ts +4 -0
  7. package/package.json +35 -23
  8. package/service-plugins-context.js.map +1 -0
  9. package/service-plugins-context.ts +1 -0
  10. package/service-plugins.js.map +1 -0
  11. package/service-plugins.ts +1 -0
  12. package/build/cjs/context.js.map +0 -1
  13. package/build/cjs/index.js.map +0 -1
  14. package/build/cjs/meta.js.map +0 -1
  15. package/build/cjs/service-plugins-context.js.map +0 -1
  16. package/build/cjs/service-plugins.js.map +0 -1
  17. package/context/package.json +0 -7
  18. package/meta/package.json +0 -7
  19. package/service-plugins/context/package.json +0 -7
  20. package/service-plugins/package.json +0 -7
  21. package/type-bundles/context.bundle.d.ts +0 -5235
  22. package/type-bundles/index.bundle.d.ts +0 -5235
  23. package/type-bundles/meta.bundle.d.ts +0 -4623
  24. package/type-bundles/service-plugins-context.bundle.d.ts +0 -1330
  25. package/type-bundles/service-plugins.bundle.d.ts +0 -1330
  26. /package/{build/cjs/context.d.ts → context.d.ts} +0 -0
  27. /package/{build/cjs/context.js → context.js} +0 -0
  28. /package/{build/cjs/index.d.ts → index.d.ts} +0 -0
  29. /package/{build/cjs/index.js → index.js} +0 -0
  30. /package/{build/cjs/meta.d.ts → meta.d.ts} +0 -0
  31. /package/{build/cjs/meta.js → meta.js} +0 -0
  32. /package/{build/cjs/service-plugins-context.d.ts → service-plugins-context.d.ts} +0 -0
  33. /package/{build/cjs/service-plugins-context.js → service-plugins-context.js} +0 -0
  34. /package/{build/cjs/service-plugins.d.ts → service-plugins.d.ts} +0 -0
  35. /package/{build/cjs/service-plugins.js → service-plugins.js} +0 -0
package/context.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.js","sourceRoot":"","sources":["context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+GAA+F;AAC/F,6EAA6D;AAC7D,iEAAiD;AACjD,qEAAqD"}
package/context.ts ADDED
@@ -0,0 +1,4 @@
1
+ export * as externalDatabaseConnections from '@wix/data_external-database-connections/context';
2
+ export * as collections from '@wix/data_collections/context';
3
+ export * as items from '@wix/data_items/context';
4
+ export * as indexes from '@wix/data_indexes/context';
package/index.js.map ADDED
@@ -0,0 +1 @@
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/index.ts ADDED
@@ -0,0 +1,6 @@
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
+
6
+ export { externalDatabaseConnections, collections, items, indexes };
package/meta.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meta.js","sourceRoot":"","sources":["meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4GAA4F;AAC5F,0EAA0D;AAC1D,8DAA8C;AAC9C,kEAAkD"}
package/meta.ts ADDED
@@ -0,0 +1,4 @@
1
+ export * as externalDatabaseConnections from '@wix/data_external-database-connections/meta';
2
+ export * as collections from '@wix/data_collections/meta';
3
+ export * as items from '@wix/data_items/meta';
4
+ export * as indexes from '@wix/data_indexes/meta';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/data",
3
- "version": "1.0.179",
3
+ "version": "1.0.181",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -9,35 +9,47 @@
9
9
  "wix-sdk-module=backend,page,public"
10
10
  ],
11
11
  "sideEffects": false,
12
- "module": "build/es/index.js",
13
- "main": "build/cjs/index.js",
14
- "typings": "./build/cjs/index.d.ts",
15
- "typesBundle": "./type-bundles/index.bundle.d.ts",
12
+ "main": "./index.js",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./build/es/index.js",
16
+ "require": "./index.js"
17
+ },
18
+ "./meta": {
19
+ "import": "./build/es/meta.js",
20
+ "require": "./meta.js"
21
+ },
22
+ "./context": {
23
+ "import": "./build/es/context.js",
24
+ "require": "./context.js"
25
+ },
26
+ "./service-plugins": {
27
+ "import": "./build/es/service-plugins.js",
28
+ "require": "./service-plugins.js"
29
+ },
30
+ "./service-plugins/context": {
31
+ "import": "./build/es/service-plugins-context.js",
32
+ "require": "./service-plugins-context.js"
33
+ }
34
+ },
16
35
  "files": [
17
- "build",
18
- "frontend/package.json",
19
- "meta",
20
- "context",
21
- "type-bundles",
22
- "service-plugins"
36
+ "*",
37
+ "!config/*",
38
+ "!tsconfig.json",
39
+ "!tsconfig.esm.json"
23
40
  ],
24
41
  "dependencies": {
25
- "@wix/data_collections": "1.0.65",
26
- "@wix/data_external-database": "1.0.28",
27
- "@wix/data_external-database-connections": "1.0.49",
28
- "@wix/data_indexes": "1.0.44",
29
- "@wix/data_items": "1.0.60"
42
+ "@wix/data_collections": "1.0.66",
43
+ "@wix/data_external-database": "1.0.29",
44
+ "@wix/data_external-database-connections": "1.0.51",
45
+ "@wix/data_indexes": "1.0.45",
46
+ "@wix/data_items": "1.0.61"
30
47
  },
31
48
  "devDependencies": {
32
- "glob": "^10.4.1",
33
- "rollup": "^4.18.0",
34
- "rollup-plugin-dts": "^6.1.1",
35
49
  "typescript": "^5.3.2"
36
50
  },
37
51
  "scripts": {
38
- "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles && npm run build:validate-dts",
39
- "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
40
- "build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
52
+ "build": "tsc -b tsconfig.json tsconfig.esm.json",
41
53
  "test": ":"
42
54
  },
43
55
  "wix": {
@@ -51,5 +63,5 @@
51
63
  "fqdn": ""
52
64
  }
53
65
  },
54
- "falconPackageHash": "df9e931145e0b9111788204776f401b7f560f0fa75299cab02f07bb6"
66
+ "falconPackageHash": "5351b6e9ed10acf5c2b4c1029bb19965b7ae02ce8783c21bd0b73115"
55
67
  }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service-plugins-context.js","sourceRoot":"","sources":["service-plugins-context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wFAAwE"}
@@ -0,0 +1 @@
1
+ export * as externalDatabase from '@wix/data_external-database/context';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service-plugins.js","sourceRoot":"","sources":["service-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,gFAAgE"}
@@ -0,0 +1 @@
1
+ export * as externalDatabase from '@wix/data_external-database';
@@ -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"}
@@ -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"}
@@ -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"}
@@ -1,7 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "../build/es/context.js",
4
- "main": "../build/cjs/context.js",
5
- "typings": "../build/cjs/context.d.ts",
6
- "typesBundle": "../type-bundles/context.bundle.d.ts"
7
- }
package/meta/package.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "../build/es/meta.js",
4
- "main": "../build/cjs/meta.js",
5
- "typings": "../build/cjs/meta.d.ts",
6
- "typesBundle": "../type-bundles/meta.bundle.d.ts"
7
- }
@@ -1,7 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "../../build/es/service-plugins-context.js",
4
- "main": "../../build/cjs/service-plugins-context.js",
5
- "typings": "../../build/cjs/service-plugins-context.d.ts",
6
- "typesBundle": "../../type-bundles/service-plugins-context.bundle.d.ts"
7
- }
@@ -1,7 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "../build/es/service-plugins.js",
4
- "main": "../build/cjs/service-plugins.js",
5
- "typings": "../build/cjs/service-plugins.d.ts",
6
- "typesBundle": "../type-bundles/service-plugins.bundle.d.ts"
7
- }