@absolutejs/absolute 0.19.0-beta.1045 → 0.19.0-beta.1047
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/cli/index.js +25 -5
- package/dist/index.js +656 -489
- package/dist/index.js.map +7 -5
- package/dist/src/core/prepare.d.ts +16 -0
- package/dist/src/plugins/telemetryPlugin.d.ts +10 -0
- package/package.json +2 -1
|
@@ -11,6 +11,9 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
11
11
|
} & {
|
|
12
12
|
typebox: {};
|
|
13
13
|
error: {};
|
|
14
|
+
} & {
|
|
15
|
+
typebox: {};
|
|
16
|
+
error: {};
|
|
14
17
|
}, {
|
|
15
18
|
schema: {};
|
|
16
19
|
standaloneSchema: {};
|
|
@@ -32,6 +35,13 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
32
35
|
macroFn: {};
|
|
33
36
|
parser: {};
|
|
34
37
|
response: {};
|
|
38
|
+
} & {
|
|
39
|
+
schema: {};
|
|
40
|
+
standaloneSchema: {};
|
|
41
|
+
macro: {};
|
|
42
|
+
macroFn: {};
|
|
43
|
+
parser: {};
|
|
44
|
+
response: {};
|
|
35
45
|
} & {
|
|
36
46
|
schema: {};
|
|
37
47
|
standaloneSchema: {};
|
|
@@ -291,6 +301,12 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
291
301
|
schema: {};
|
|
292
302
|
standaloneSchema: {};
|
|
293
303
|
response: {};
|
|
304
|
+
} & {
|
|
305
|
+
derive: {};
|
|
306
|
+
resolve: {};
|
|
307
|
+
schema: {};
|
|
308
|
+
standaloneSchema: {};
|
|
309
|
+
response: {};
|
|
294
310
|
}>;
|
|
295
311
|
manifest: Record<string, string>;
|
|
296
312
|
} | {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { AnyElysia } from 'elysia';
|
|
2
|
+
import type { BuildConfig } from '../../types/build';
|
|
3
|
+
export declare const withTelemetry: (app: AnyElysia, config: BuildConfig, cwd: string) => Promise<AnyElysia | import("elysia").default<any, {
|
|
4
|
+
decorator: any;
|
|
5
|
+
store: {
|
|
6
|
+
[x: string]: any;
|
|
7
|
+
};
|
|
8
|
+
derive: any;
|
|
9
|
+
resolve: any;
|
|
10
|
+
}, any, any, any, any, any>>;
|
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@elysiajs/openapi": "^1.4.15",
|
|
8
|
+
"@elysiajs/server-timing": "^1.4.0",
|
|
8
9
|
"@elysiajs/static": "^1.4.0",
|
|
9
10
|
"zustand": "^5.0.12"
|
|
10
11
|
},
|
|
@@ -412,7 +413,7 @@
|
|
|
412
413
|
]
|
|
413
414
|
}
|
|
414
415
|
},
|
|
415
|
-
"version": "0.19.0-beta.
|
|
416
|
+
"version": "0.19.0-beta.1047",
|
|
416
417
|
"workspaces": [
|
|
417
418
|
"tests/fixtures/*",
|
|
418
419
|
"tests/fixtures/_packages/*"
|