@taujs/server 0.6.1 → 0.6.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.
|
@@ -279,4 +279,4 @@ type RouteData<C extends TaujsConfig = TaujsConfig, P extends string = string> =
|
|
|
279
279
|
|
|
280
280
|
declare function defineConfig<const C extends TaujsConfig>(config: C): C;
|
|
281
281
|
|
|
282
|
-
export { type AppConfig as A, type BaseLogger as B, type CoreAppConfig as C, type DebugConfig as D, type JsonObject as J, type
|
|
282
|
+
export { type AppConfig as A, type BaseLogger as B, type CoreAppConfig as C, type DebugConfig as D, type JsonObject as J, type RegistryCaller as R, type ServiceRegistry as S, type TaujsConfig as T, AppError as a, type JsonPrimitive as b, type JsonValue as c, type RouteContext as d, type RouteData as e, type SecurityConfig as f, type ServiceContext as g, type TypedServiceContext as h, callServiceMethod as i, defineConfig as j, defineService as k, defineServiceRegistry as l, withDeadline as w };
|
package/dist/Config.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import 'fastify';
|
|
2
2
|
import 'vite';
|
|
3
|
-
export { A as AppConfig,
|
|
3
|
+
export { A as AppConfig, a as AppError, J as JsonObject, b as JsonPrimitive, c as JsonValue, R as RegistryCaller, d as RouteContext, e as RouteData, f as SecurityConfig, g as ServiceContext, T as TaujsConfig, h as TypedServiceContext, i as callServiceMethod, j as defineConfig, k as defineService, l as defineServiceRegistry, w as withDeadline } from './Config-BzkpdUvu.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FastifyPluginCallback, FastifyPluginAsync, FastifyInstance } from 'fastify';
|
|
2
|
-
import { T as TaujsConfig, S as ServiceRegistry, D as DebugConfig, B as BaseLogger, C as CoreAppConfig } from './Config-
|
|
2
|
+
import { T as TaujsConfig, S as ServiceRegistry, D as DebugConfig, B as BaseLogger, C as CoreAppConfig } from './Config-BzkpdUvu.js';
|
|
3
3
|
import { InlineConfig } from 'vite';
|
|
4
4
|
|
|
5
5
|
type NetResolved = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taujs/server",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "τjs [ taujs ]",
|
|
5
5
|
"author": "John Smith | Aoede <taujs@aoede.uk.net> (https://www.aoede.uk.net)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastify/static": "^8.3.0",
|
|
48
|
-
"fastify": "^5.
|
|
48
|
+
"fastify": "^5.8.5",
|
|
49
49
|
"fastify-plugin": "^5.1.0",
|
|
50
50
|
"path-to-regexp": "^8.1.0",
|
|
51
51
|
"vite": "^7.3.1"
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"vitest": "^3.2.4"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"fastify": "^5.6.1",
|
|
68
67
|
"typescript": "^5.5.4",
|
|
69
68
|
"vite": "^7.3.1"
|
|
70
69
|
},
|