create-arkos 1.2.16-beta.2 → 1.2.16-beta.3

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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-arkos",
3
- "version": "1.2.16-beta.2",
3
+ "version": "1.2.16-beta.3",
4
4
  "type": "module",
5
5
  "description": "CLI for creating Arkos.js projects, see docs at www.arkosjs.com",
6
6
  "bin": {
File without changes
@@ -22,13 +22,16 @@
22
22
  "@types/node": "^24.0.12",
23
23
  "@types/express": "^5.0.0",
24
24
  "@types/swagger-jsdoc": "^6.0.4",
25
+ "tsx": "^4.20.5",
26
+ "tsx-strict": "^0.1.2",
27
+ "tsc": "^2.0.4",
25
28
  {{else}}
26
29
  "node-dev": "^8.0.0",
27
30
  {{/if}}
28
31
  "prisma": "^6.11.1"
29
32
  },
30
33
  "dependencies": {
31
- "arkos": "^1.2.16-beta",
34
+ "arkos": "^1.3.0-canary",
32
35
  "express": "^4.21.2",
33
36
  "@prisma/client": "^6.4.1",
34
37
  "swagger-jsdoc": "^6.2.8"{{#if validation.type}},{{/if}}
@@ -18,7 +18,6 @@ model AuthPermission {
18
18
  {{/if}}
19
19
  roleId String {{#if (eq prisma.provider "mongodb")}}@db.ObjectId{{/if}}
20
20
  role AuthRole @relation(fields: [roleId], references: [id])
21
- description String?
22
21
  createdAt DateTime @default(now())
23
22
  updatedAt DateTime @updatedAt
24
23
 
@@ -16,7 +16,9 @@ model User {
16
16
  {{else}}
17
17
  roles UserRole[]
18
18
  {{/if}}
19
- {{/if}}
19
+ {{else}}
20
+ roles UserRole[]
21
+ {{/if}}
20
22
  {{else}}
21
23
  {{#if (eq authentication.type "dynamic")}}
22
24
  role UserRole?