@dashai/sdk 0.7.0 → 0.9.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 +27 -2
- package/dist/auth/client.cjs +2 -1
- package/dist/auth/client.cjs.map +1 -1
- package/dist/auth/client.js +2 -1
- package/dist/auth/client.js.map +1 -1
- package/dist/auth/middleware.cjs.map +1 -1
- package/dist/auth/middleware.js.map +1 -1
- package/dist/auth/server.cjs.map +1 -1
- package/dist/auth/server.js.map +1 -1
- package/dist/auth/types.cjs.map +1 -1
- package/dist/auth/types.d.cts +1 -1
- package/dist/auth/types.d.ts +1 -1
- package/dist/auth/types.js.map +1 -1
- package/dist/deps/index.d.cts +2 -2
- package/dist/deps/index.d.ts +2 -2
- package/dist/index.cjs +55 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +70 -17
- package/dist/index.d.ts +70 -17
- package/dist/index.js +55 -5
- package/dist/index.js.map +1 -1
- package/dist/query/index.d.cts +1 -1
- package/dist/query/index.d.ts +1 -1
- package/dist/react/index.d.cts +1 -1
- package/dist/react/index.d.ts +1 -1
- package/dist/{types-BLNQ1S1C.d.cts → types-DXsbCVkb.d.cts} +47 -1
- package/dist/{types-BLNQ1S1C.d.ts → types-DXsbCVkb.d.ts} +47 -1
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dashai/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Runtime client for DashWise: typed data access + auth helpers for modules.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -59,15 +59,6 @@
|
|
|
59
59
|
"README.md",
|
|
60
60
|
"LICENSE"
|
|
61
61
|
],
|
|
62
|
-
"scripts": {
|
|
63
|
-
"build": "tsup",
|
|
64
|
-
"dev": "tsup --watch",
|
|
65
|
-
"test": "vitest run",
|
|
66
|
-
"test:watch": "vitest",
|
|
67
|
-
"typecheck": "tsc --noEmit",
|
|
68
|
-
"lint": "echo 'lint: TODO (eslint config in follow-up)'",
|
|
69
|
-
"clean": "rm -rf dist .turbo coverage"
|
|
70
|
-
},
|
|
71
62
|
"peerDependencies": {
|
|
72
63
|
"next": "^14.0.0 || ^15.0.0",
|
|
73
64
|
"react": "^18.0.0 || ^19.0.0"
|
|
@@ -90,8 +81,7 @@
|
|
|
90
81
|
"vitest": "^2.1.8"
|
|
91
82
|
},
|
|
92
83
|
"publishConfig": {
|
|
93
|
-
"access": "public"
|
|
94
|
-
"provenance": true
|
|
84
|
+
"access": "public"
|
|
95
85
|
},
|
|
96
86
|
"repository": {
|
|
97
87
|
"type": "git",
|
|
@@ -105,5 +95,14 @@
|
|
|
105
95
|
"auth",
|
|
106
96
|
"modules",
|
|
107
97
|
"low-code"
|
|
108
|
-
]
|
|
109
|
-
|
|
98
|
+
],
|
|
99
|
+
"scripts": {
|
|
100
|
+
"build": "tsup",
|
|
101
|
+
"dev": "tsup --watch",
|
|
102
|
+
"test": "vitest run",
|
|
103
|
+
"test:watch": "vitest",
|
|
104
|
+
"typecheck": "tsc --noEmit",
|
|
105
|
+
"lint": "echo 'lint: TODO (eslint config in follow-up)'",
|
|
106
|
+
"clean": "rm -rf dist .turbo coverage"
|
|
107
|
+
}
|
|
108
|
+
}
|