@jskit-ai/crud 0.1.22 → 0.1.24
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/package.descriptor.mjs +15 -15
- package/package.json +6 -6
package/package.descriptor.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default Object.freeze({
|
|
2
2
|
packageVersion: 1,
|
|
3
3
|
packageId: "@jskit-ai/crud",
|
|
4
|
-
version: "0.1.
|
|
4
|
+
version: "0.1.24",
|
|
5
5
|
installationMode: "clone-only",
|
|
6
6
|
description: "CRUD module with server routes, actions, persistence, and client pages.",
|
|
7
7
|
options: {
|
|
@@ -95,15 +95,15 @@ export default Object.freeze({
|
|
|
95
95
|
mutations: {
|
|
96
96
|
dependencies: {
|
|
97
97
|
runtime: {
|
|
98
|
-
"@jskit-ai/auth-core": "0.1.
|
|
99
|
-
"@jskit-ai/crud-core": "0.1.
|
|
100
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
101
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
102
|
-
"@jskit-ai/kernel": "0.1.
|
|
103
|
-
"@jskit-ai/realtime": "0.1.
|
|
104
|
-
"@jskit-ai/shell-web": "0.1.
|
|
105
|
-
"@jskit-ai/users-core": "0.1.
|
|
106
|
-
"@jskit-ai/users-web": "0.1.
|
|
98
|
+
"@jskit-ai/auth-core": "0.1.15",
|
|
99
|
+
"@jskit-ai/crud-core": "0.1.24",
|
|
100
|
+
"@jskit-ai/database-runtime": "0.1.16",
|
|
101
|
+
"@jskit-ai/http-runtime": "0.1.15",
|
|
102
|
+
"@jskit-ai/kernel": "0.1.15",
|
|
103
|
+
"@jskit-ai/realtime": "0.1.15",
|
|
104
|
+
"@jskit-ai/shell-web": "0.1.15",
|
|
105
|
+
"@jskit-ai/users-core": "0.1.20",
|
|
106
|
+
"@jskit-ai/users-web": "0.1.25",
|
|
107
107
|
"@local/${option:namespace|kebab}": "file:packages/${option:namespace|kebab}",
|
|
108
108
|
"@tanstack/vue-query": "5.92.12",
|
|
109
109
|
"typebox": "^1.0.81",
|
|
@@ -260,7 +260,7 @@ export default Object.freeze({
|
|
|
260
260
|
id: "crud-page-surface-crud-index",
|
|
261
261
|
when: {
|
|
262
262
|
config: "tenancyMode",
|
|
263
|
-
in: ["personal", "
|
|
263
|
+
in: ["personal", "workspaces"]
|
|
264
264
|
}
|
|
265
265
|
},
|
|
266
266
|
{
|
|
@@ -272,7 +272,7 @@ export default Object.freeze({
|
|
|
272
272
|
id: "crud-page-surface-crud-new",
|
|
273
273
|
when: {
|
|
274
274
|
config: "tenancyMode",
|
|
275
|
-
in: ["personal", "
|
|
275
|
+
in: ["personal", "workspaces"]
|
|
276
276
|
}
|
|
277
277
|
},
|
|
278
278
|
{
|
|
@@ -284,7 +284,7 @@ export default Object.freeze({
|
|
|
284
284
|
id: "crud-page-surface-crud-view",
|
|
285
285
|
when: {
|
|
286
286
|
config: "tenancyMode",
|
|
287
|
-
in: ["personal", "
|
|
287
|
+
in: ["personal", "workspaces"]
|
|
288
288
|
}
|
|
289
289
|
},
|
|
290
290
|
{
|
|
@@ -296,7 +296,7 @@ export default Object.freeze({
|
|
|
296
296
|
id: "crud-page-surface-crud-edit",
|
|
297
297
|
when: {
|
|
298
298
|
config: "tenancyMode",
|
|
299
|
-
in: ["personal", "
|
|
299
|
+
in: ["personal", "workspaces"]
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
302
|
],
|
|
@@ -313,7 +313,7 @@ export default Object.freeze({
|
|
|
313
313
|
id: "crud-placement-menu",
|
|
314
314
|
when: {
|
|
315
315
|
config: "tenancyMode",
|
|
316
|
-
in: ["personal", "
|
|
316
|
+
in: ["personal", "workspaces"]
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/crud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"./shared/crud/crudResource": "./src/shared/crud/crudResource.js"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@jskit-ai/crud-core": "0.1.
|
|
17
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
18
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
19
|
-
"@jskit-ai/kernel": "0.1.
|
|
20
|
-
"@jskit-ai/users-core": "0.1.
|
|
16
|
+
"@jskit-ai/crud-core": "0.1.24",
|
|
17
|
+
"@jskit-ai/database-runtime": "0.1.16",
|
|
18
|
+
"@jskit-ai/http-runtime": "0.1.15",
|
|
19
|
+
"@jskit-ai/kernel": "0.1.15",
|
|
20
|
+
"@jskit-ai/users-core": "0.1.20",
|
|
21
21
|
"typebox": "^1.0.81"
|
|
22
22
|
}
|
|
23
23
|
}
|