@ditojs/server 2.36.0 → 2.36.2

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/types/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ditojs/server",
3
- "version": "2.36.0",
3
+ "version": "2.36.2",
4
4
  "type": "module",
5
5
  "description": "Dito.js Server – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js",
6
6
  "repository": "https://github.com/ditojs/dito/tree/master/packages/server",
@@ -25,8 +25,8 @@
25
25
  "node >= 18"
26
26
  ],
27
27
  "dependencies": {
28
- "@ditojs/admin": "^2.36.0",
29
- "@ditojs/build": "^2.36.0",
28
+ "@ditojs/admin": "^2.36.2",
29
+ "@ditojs/build": "^2.36.2",
30
30
  "@ditojs/router": "^2.36.0",
31
31
  "@ditojs/utils": "^2.36.0",
32
32
  "@koa/cors": "^5.0.0",
@@ -38,7 +38,7 @@
38
38
  "bytes": "^3.1.2",
39
39
  "data-uri-to-buffer": "^6.0.2",
40
40
  "eventemitter2": "^6.4.9",
41
- "file-type": "^19.5.0",
41
+ "file-type": "^19.6.0",
42
42
  "koa": "^2.15.3",
43
43
  "koa-bodyparser": "^4.4.1",
44
44
  "koa-compose": "^4.1.0",
@@ -59,14 +59,14 @@
59
59
  "parse-duration": "^1.1.0",
60
60
  "passport-local": "^1.0.0",
61
61
  "passthrough-counter": "^1.0.0",
62
- "picocolors": "^1.1.0",
62
+ "picocolors": "^1.1.1",
63
63
  "picomatch": "^4.0.2",
64
- "pino": "^9.4.0",
65
- "pino-pretty": "^11.2.2",
64
+ "pino": "^9.5.0",
65
+ "pino-pretty": "^11.3.0",
66
66
  "pluralize": "^8.0.0",
67
67
  "repl": "^0.1.3",
68
68
  "type-fest": "^4.26.1",
69
- "uuid": "^10.0.0"
69
+ "uuid": "^11.0.0"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "@aws-sdk/client-s3": "^3.0.0",
@@ -83,11 +83,11 @@
83
83
  "@types/koa-session": "^6.4.5",
84
84
  "@types/koa-static": "^4.0.4",
85
85
  "@types/koa__cors": "^5.0.0",
86
- "@types/node": "^22.7.5",
86
+ "@types/node": "^22.8.1",
87
87
  "knex": "^3.1.0",
88
88
  "objection": "^3.1.5",
89
89
  "typescript": "^5.6.3"
90
90
  },
91
91
  "types": "types",
92
- "gitHead": "ba2704e52f9f04ea2d28fb5a418c4e721784aa50"
92
+ "gitHead": "1fe383dfcdd9f856f324450d60c081be51071cf9"
93
93
  }
package/types/index.d.ts CHANGED
@@ -385,7 +385,7 @@ export class Application<$Models extends Models = Models> {
385
385
  addController(controllers: Controller, namespace?: string): void
386
386
  addControllers(controllers: ApplicationControllers, namespace?: string): void
387
387
  setupControllers(): Promise<void>
388
- getAdminViteConfig(config?: UserConfig): UserConfig
388
+ defineAdminViteConfig(config?: UserConfig): UserConfig
389
389
  logger: PinoLogger
390
390
  requestStorage: AsyncLocalStorage<AsyncRequestLocals>
391
391
  requestLocals: AsyncRequestLocals