@omnibase/core-js 0.5.10 → 0.7.0
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/README.md +64 -198
- package/dist/chunk-4VFICD7B.js +563 -0
- package/dist/chunk-4WXOODCF.js +579 -0
- package/dist/chunk-5MDBFHTF.js +555 -0
- package/dist/chunk-6OGESVXW.js +651 -0
- package/dist/chunk-BZSZVT4V.js +152 -0
- package/dist/chunk-CUBJFCZH.js +579 -0
- package/dist/chunk-I6DMWC32.js +129 -0
- package/dist/chunk-IVPULXIA.js +150 -0
- package/dist/chunk-LCEBQTB7.js +563 -0
- package/dist/chunk-LMDKQ6Z2.js +706 -0
- package/dist/chunk-NBPRDG6O.js +643 -0
- package/dist/chunk-QPW6G4PA.js +490 -0
- package/dist/chunk-QXPPBLH4.js +556 -0
- package/dist/chunk-V56G36FZ.js +558 -0
- package/dist/chunk-ZBRAIBZZ.js +658 -0
- package/dist/chunk-ZYLNNK7H.js +555 -0
- package/dist/database/index.cjs +215 -1
- package/dist/database/index.d.cts +194 -1
- package/dist/database/index.d.ts +194 -1
- package/dist/database/index.js +214 -1
- package/dist/index.cjs +449 -185
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +105 -4
- package/dist/payments/index.cjs +22 -74
- package/dist/payments/index.d.cts +554 -245
- package/dist/payments/index.d.ts +554 -245
- package/dist/payments/index.js +1 -1
- package/dist/storage/index.cjs +153 -0
- package/dist/storage/index.d.cts +3 -0
- package/dist/storage/index.d.ts +3 -0
- package/dist/storage/index.js +6 -0
- package/dist/tenants/index.cjs +200 -109
- package/dist/tenants/index.d.cts +1 -1
- package/dist/tenants/index.d.ts +1 -1
- package/dist/tenants/index.js +1 -1
- package/package.json +17 -12
package/package.json
CHANGED
|
@@ -1,43 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnibase/core-js",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "OmniBase core Javascript SDK - framework agnostic",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*"
|
|
7
7
|
],
|
|
8
8
|
"type": "module",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "tsup src/index.ts src/permissions/index.ts src/database/index.ts src/tenants/index.ts src/auth/index.ts src/payments/index.ts --format cjs,esm --dts",
|
|
10
|
+
"build": "tsup src/index.ts src/permissions/index.ts src/database/index.ts src/tenants/index.ts src/auth/index.ts src/payments/index.ts src/storage/index.ts --format cjs,esm --dts",
|
|
11
11
|
"prepublishOnly": "npm run build"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
15
16
|
"import": "./dist/index.js",
|
|
16
|
-
"require": "./dist/index.cjs"
|
|
17
|
-
"types": "./dist/index.d.ts"
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
18
|
},
|
|
19
19
|
"./auth": {
|
|
20
20
|
"types": "./dist/auth/index.d.ts"
|
|
21
21
|
},
|
|
22
22
|
"./permissions": {
|
|
23
|
+
"types": "./dist/permissions/index.d.ts",
|
|
23
24
|
"import": "./dist/permissions/index.js",
|
|
24
|
-
"require": "./dist/permissions/index.cjs"
|
|
25
|
-
"types": "./dist/permissions/index.d.ts"
|
|
25
|
+
"require": "./dist/permissions/index.cjs"
|
|
26
26
|
},
|
|
27
27
|
"./database": {
|
|
28
|
+
"types": "./dist/database/index.d.ts",
|
|
28
29
|
"import": "./dist/database/index.js",
|
|
29
|
-
"require": "./dist/database/index.cjs"
|
|
30
|
-
"types": "./dist/database/index.d.ts"
|
|
30
|
+
"require": "./dist/database/index.cjs"
|
|
31
31
|
},
|
|
32
32
|
"./tenants": {
|
|
33
|
+
"types": "./dist/tenants/index.d.ts",
|
|
33
34
|
"import": "./dist/tenants/index.js",
|
|
34
|
-
"require": "./dist/tenants/index.cjs"
|
|
35
|
-
"types": "./dist/tenants/index.d.ts"
|
|
35
|
+
"require": "./dist/tenants/index.cjs"
|
|
36
36
|
},
|
|
37
37
|
"./payments": {
|
|
38
|
+
"types": "./dist/payments/index.d.ts",
|
|
38
39
|
"import": "./dist/payments/index.js",
|
|
39
|
-
"require": "./dist/payments/index.cjs"
|
|
40
|
-
|
|
40
|
+
"require": "./dist/payments/index.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./storage": {
|
|
43
|
+
"types": "./dist/storage/index.d.ts",
|
|
44
|
+
"import": "./dist/storage/index.js",
|
|
45
|
+
"require": "./dist/storage/index.cjs"
|
|
41
46
|
}
|
|
42
47
|
},
|
|
43
48
|
"keywords": [
|