@jskit-ai/crud 0.1.23 → 0.1.25

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.
@@ -1,7 +1,7 @@
1
1
  export default Object.freeze({
2
2
  packageVersion: 1,
3
3
  packageId: "@jskit-ai/crud",
4
- version: "0.1.23",
4
+ version: "0.1.25",
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.14",
99
- "@jskit-ai/crud-core": "0.1.23",
100
- "@jskit-ai/database-runtime": "0.1.15",
101
- "@jskit-ai/http-runtime": "0.1.14",
102
- "@jskit-ai/kernel": "0.1.14",
103
- "@jskit-ai/realtime": "0.1.14",
104
- "@jskit-ai/shell-web": "0.1.14",
105
- "@jskit-ai/users-core": "0.1.19",
106
- "@jskit-ai/users-web": "0.1.24",
98
+ "@jskit-ai/auth-core": "0.1.16",
99
+ "@jskit-ai/crud-core": "0.1.25",
100
+ "@jskit-ai/database-runtime": "0.1.17",
101
+ "@jskit-ai/http-runtime": "0.1.16",
102
+ "@jskit-ai/kernel": "0.1.17",
103
+ "@jskit-ai/realtime": "0.1.16",
104
+ "@jskit-ai/shell-web": "0.1.16",
105
+ "@jskit-ai/users-core": "0.1.23",
106
+ "@jskit-ai/users-web": "0.1.27",
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", "workspace"]
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", "workspace"]
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", "workspace"]
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", "workspace"]
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", "workspace"]
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.23",
3
+ "version": "0.1.25",
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.23",
17
- "@jskit-ai/database-runtime": "0.1.15",
18
- "@jskit-ai/http-runtime": "0.1.14",
19
- "@jskit-ai/kernel": "0.1.14",
20
- "@jskit-ai/users-core": "0.1.19",
16
+ "@jskit-ai/crud-core": "0.1.25",
17
+ "@jskit-ai/database-runtime": "0.1.17",
18
+ "@jskit-ai/http-runtime": "0.1.16",
19
+ "@jskit-ai/kernel": "0.1.17",
20
+ "@jskit-ai/users-core": "0.1.23",
21
21
  "typebox": "^1.0.81"
22
22
  }
23
23
  }