@absolutejs/absolute 0.19.0-beta.1062 → 0.19.0-beta.1064
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/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/index.js +128 -111
- package/dist/index.js.map +6 -6
- package/dist/src/core/prepare.d.ts +0 -32
- package/dist/src/plugins/networking.d.ts +2 -2
- package/package.json +2 -2
|
@@ -11,9 +11,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
11
11
|
} & {
|
|
12
12
|
typebox: {};
|
|
13
13
|
error: {};
|
|
14
|
-
} & {
|
|
15
|
-
typebox: {};
|
|
16
|
-
error: {};
|
|
17
14
|
}, {
|
|
18
15
|
schema: {};
|
|
19
16
|
standaloneSchema: {};
|
|
@@ -35,13 +32,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
35
32
|
macroFn: {};
|
|
36
33
|
parser: {};
|
|
37
34
|
response: {};
|
|
38
|
-
} & {
|
|
39
|
-
schema: {};
|
|
40
|
-
standaloneSchema: {};
|
|
41
|
-
macro: {};
|
|
42
|
-
macroFn: {};
|
|
43
|
-
parser: {};
|
|
44
|
-
response: {};
|
|
45
35
|
} & {
|
|
46
36
|
schema: {};
|
|
47
37
|
standaloneSchema: {};
|
|
@@ -301,12 +291,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
301
291
|
schema: {};
|
|
302
292
|
standaloneSchema: {};
|
|
303
293
|
response: {};
|
|
304
|
-
} & {
|
|
305
|
-
derive: {};
|
|
306
|
-
resolve: {};
|
|
307
|
-
schema: {};
|
|
308
|
-
standaloneSchema: {};
|
|
309
|
-
response: {};
|
|
310
294
|
}>;
|
|
311
295
|
manifest: Record<string, string>;
|
|
312
296
|
} | {
|
|
@@ -318,9 +302,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
318
302
|
}, {
|
|
319
303
|
typebox: {};
|
|
320
304
|
error: {};
|
|
321
|
-
} & {
|
|
322
|
-
typebox: {};
|
|
323
|
-
error: {};
|
|
324
305
|
}, {
|
|
325
306
|
schema: {};
|
|
326
307
|
standaloneSchema: {};
|
|
@@ -328,13 +309,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
328
309
|
macroFn: {};
|
|
329
310
|
parser: {};
|
|
330
311
|
response: {};
|
|
331
|
-
} & {
|
|
332
|
-
schema: {};
|
|
333
|
-
standaloneSchema: {};
|
|
334
|
-
macro: {};
|
|
335
|
-
macroFn: {};
|
|
336
|
-
parser: {};
|
|
337
|
-
response: {};
|
|
338
312
|
} & {
|
|
339
313
|
schema: {};
|
|
340
314
|
standaloneSchema: {};
|
|
@@ -422,12 +396,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
422
396
|
schema: {};
|
|
423
397
|
standaloneSchema: {};
|
|
424
398
|
response: {};
|
|
425
|
-
} & {
|
|
426
|
-
derive: {};
|
|
427
|
-
resolve: {};
|
|
428
|
-
schema: {};
|
|
429
|
-
standaloneSchema: {};
|
|
430
|
-
response: {};
|
|
431
399
|
}>;
|
|
432
400
|
manifest: Record<string, string>;
|
|
433
401
|
}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const networking: <A extends
|
|
1
|
+
import { type AnyElysia } from 'elysia';
|
|
2
|
+
export declare const networking: <A extends AnyElysia>(app: A) => A;
|
package/package.json
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
"absolute": "dist/cli/index.js"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@elysia/static": "^1.4.11",
|
|
7
8
|
"@elysiajs/openapi": "^1.4.15",
|
|
8
9
|
"@elysiajs/server-timing": "^1.4.0",
|
|
9
|
-
"@elysiajs/static": "^1.4.0",
|
|
10
10
|
"zustand": "^5.0.12"
|
|
11
11
|
},
|
|
12
12
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
]
|
|
415
415
|
}
|
|
416
416
|
},
|
|
417
|
-
"version": "0.19.0-beta.
|
|
417
|
+
"version": "0.19.0-beta.1064",
|
|
418
418
|
"workspaces": [
|
|
419
419
|
"tests/fixtures/*",
|
|
420
420
|
"tests/fixtures/_packages/*"
|