@alepha/devtools 0.11.3 → 0.11.5
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/index.d.ts +261 -259
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +28 -1346
- package/dist/index.js.map +1 -1
- package/package.json +26 -16
- package/src/DevCollectorProvider.ts +29 -29
- package/src/index.ts +4 -1
- package/src/ui/AppRouter.tsx +61 -0
- package/src/ui/DevLogs.tsx +143 -0
- package/src/ui/main.ts +4 -0
- package/src/ui/styles.css +7 -0
- package/src/ui/wotfardregular/stylesheet.css +12 -0
- package/src/ui/wotfardregular/wotfard-regular-webfont.eot +0 -0
- package/src/ui/wotfardregular/wotfard-regular-webfont.ttf +0 -0
- package/src/ui/wotfardregular/wotfard-regular-webfont.woff2 +0 -0
- package/src/constants/ui.ts +0 -1317
- package/src/schemas/DevLogEntry.ts +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,343 +1,345 @@
|
|
|
1
1
|
import * as _alepha_core1 from "@alepha/core";
|
|
2
2
|
import { Alepha, Static } from "@alepha/core";
|
|
3
|
-
import * as
|
|
4
|
-
import * as typebox144 from "typebox";
|
|
3
|
+
import * as _alepha_logger0 from "@alepha/logger";
|
|
5
4
|
import { LogEntry } from "@alepha/logger";
|
|
5
|
+
import * as _alepha_server0 from "@alepha/server";
|
|
6
|
+
import { ServerProvider } from "@alepha/server";
|
|
7
|
+
import * as _alepha_server_static0 from "@alepha/server-static";
|
|
8
|
+
import * as typebox156 from "typebox";
|
|
9
|
+
import * as dayjs0 from "dayjs";
|
|
6
10
|
|
|
7
11
|
//#region src/schemas/DevActionMetadata.d.ts
|
|
8
|
-
declare const devActionMetadataSchema:
|
|
9
|
-
name:
|
|
10
|
-
group:
|
|
11
|
-
method:
|
|
12
|
-
path:
|
|
13
|
-
prefix:
|
|
14
|
-
fullPath:
|
|
15
|
-
description:
|
|
16
|
-
summary:
|
|
17
|
-
disabled:
|
|
18
|
-
secure:
|
|
19
|
-
hide:
|
|
20
|
-
body:
|
|
21
|
-
params:
|
|
22
|
-
query:
|
|
23
|
-
response:
|
|
24
|
-
bodyContentType:
|
|
12
|
+
declare const devActionMetadataSchema: typebox156.TObject<{
|
|
13
|
+
name: typebox156.TString;
|
|
14
|
+
group: typebox156.TString;
|
|
15
|
+
method: typebox156.TString;
|
|
16
|
+
path: typebox156.TString;
|
|
17
|
+
prefix: typebox156.TString;
|
|
18
|
+
fullPath: typebox156.TString;
|
|
19
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
20
|
+
summary: typebox156.TOptional<typebox156.TString>;
|
|
21
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
22
|
+
secure: typebox156.TOptional<typebox156.TBoolean>;
|
|
23
|
+
hide: typebox156.TOptional<typebox156.TBoolean>;
|
|
24
|
+
body: typebox156.TOptional<typebox156.TAny>;
|
|
25
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
26
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
27
|
+
response: typebox156.TOptional<typebox156.TAny>;
|
|
28
|
+
bodyContentType: typebox156.TOptional<typebox156.TString>;
|
|
25
29
|
}>;
|
|
26
30
|
type DevActionMetadata = Static<typeof devActionMetadataSchema>;
|
|
27
31
|
//#endregion
|
|
28
32
|
//#region src/schemas/DevBucketMetadata.d.ts
|
|
29
|
-
declare const devBucketMetadataSchema:
|
|
30
|
-
name:
|
|
31
|
-
description:
|
|
32
|
-
mimeTypes:
|
|
33
|
-
maxSize:
|
|
34
|
-
provider:
|
|
33
|
+
declare const devBucketMetadataSchema: typebox156.TObject<{
|
|
34
|
+
name: typebox156.TString;
|
|
35
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
36
|
+
mimeTypes: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
37
|
+
maxSize: typebox156.TOptional<typebox156.TNumber>;
|
|
38
|
+
provider: typebox156.TString;
|
|
35
39
|
}>;
|
|
36
40
|
type DevBucketMetadata = Static<typeof devBucketMetadataSchema>;
|
|
37
41
|
//#endregion
|
|
38
42
|
//#region src/schemas/DevCacheMetadata.d.ts
|
|
39
|
-
declare const devCacheMetadataSchema:
|
|
40
|
-
name:
|
|
41
|
-
ttl:
|
|
42
|
-
disabled:
|
|
43
|
-
provider:
|
|
43
|
+
declare const devCacheMetadataSchema: typebox156.TObject<{
|
|
44
|
+
name: typebox156.TString;
|
|
45
|
+
ttl: typebox156.TOptional<typebox156.TAny>;
|
|
46
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
47
|
+
provider: typebox156.TString;
|
|
44
48
|
}>;
|
|
45
49
|
type DevCacheMetadata = Static<typeof devCacheMetadataSchema>;
|
|
46
50
|
//#endregion
|
|
47
|
-
//#region src/schemas/DevLogEntry.d.ts
|
|
48
|
-
declare const devLogEntrySchema: typebox144.TObject<{
|
|
49
|
-
formatted: typebox144.TString;
|
|
50
|
-
entry: typebox144.TAny;
|
|
51
|
-
}>;
|
|
52
|
-
type DevLogEntry = Static<typeof devLogEntrySchema> & {
|
|
53
|
-
entry: LogEntry;
|
|
54
|
-
};
|
|
55
|
-
//#endregion
|
|
56
51
|
//#region src/schemas/DevMetadata.d.ts
|
|
57
|
-
declare const devMetadataSchema:
|
|
58
|
-
actions:
|
|
59
|
-
name:
|
|
60
|
-
group:
|
|
61
|
-
method:
|
|
62
|
-
path:
|
|
63
|
-
prefix:
|
|
64
|
-
fullPath:
|
|
65
|
-
description:
|
|
66
|
-
summary:
|
|
67
|
-
disabled:
|
|
68
|
-
secure:
|
|
69
|
-
hide:
|
|
70
|
-
body:
|
|
71
|
-
params:
|
|
72
|
-
query:
|
|
73
|
-
response:
|
|
74
|
-
bodyContentType:
|
|
52
|
+
declare const devMetadataSchema: typebox156.TObject<{
|
|
53
|
+
actions: typebox156.TArray<typebox156.TObject<{
|
|
54
|
+
name: typebox156.TString;
|
|
55
|
+
group: typebox156.TString;
|
|
56
|
+
method: typebox156.TString;
|
|
57
|
+
path: typebox156.TString;
|
|
58
|
+
prefix: typebox156.TString;
|
|
59
|
+
fullPath: typebox156.TString;
|
|
60
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
61
|
+
summary: typebox156.TOptional<typebox156.TString>;
|
|
62
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
63
|
+
secure: typebox156.TOptional<typebox156.TBoolean>;
|
|
64
|
+
hide: typebox156.TOptional<typebox156.TBoolean>;
|
|
65
|
+
body: typebox156.TOptional<typebox156.TAny>;
|
|
66
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
67
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
68
|
+
response: typebox156.TOptional<typebox156.TAny>;
|
|
69
|
+
bodyContentType: typebox156.TOptional<typebox156.TString>;
|
|
75
70
|
}>>;
|
|
76
|
-
queues:
|
|
77
|
-
name:
|
|
78
|
-
description:
|
|
79
|
-
schema:
|
|
80
|
-
provider:
|
|
71
|
+
queues: typebox156.TArray<typebox156.TObject<{
|
|
72
|
+
name: typebox156.TString;
|
|
73
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
74
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
75
|
+
provider: typebox156.TString;
|
|
81
76
|
}>>;
|
|
82
|
-
schedulers:
|
|
83
|
-
name:
|
|
84
|
-
description:
|
|
85
|
-
cron:
|
|
86
|
-
interval:
|
|
87
|
-
lock:
|
|
77
|
+
schedulers: typebox156.TArray<typebox156.TObject<{
|
|
78
|
+
name: typebox156.TString;
|
|
79
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
80
|
+
cron: typebox156.TOptional<typebox156.TString>;
|
|
81
|
+
interval: typebox156.TOptional<typebox156.TAny>;
|
|
82
|
+
lock: typebox156.TOptional<typebox156.TBoolean>;
|
|
88
83
|
}>>;
|
|
89
|
-
topics:
|
|
90
|
-
name:
|
|
91
|
-
description:
|
|
92
|
-
schema:
|
|
93
|
-
provider:
|
|
84
|
+
topics: typebox156.TArray<typebox156.TObject<{
|
|
85
|
+
name: typebox156.TString;
|
|
86
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
87
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
88
|
+
provider: typebox156.TString;
|
|
94
89
|
}>>;
|
|
95
|
-
buckets:
|
|
96
|
-
name:
|
|
97
|
-
description:
|
|
98
|
-
mimeTypes:
|
|
99
|
-
maxSize:
|
|
100
|
-
provider:
|
|
90
|
+
buckets: typebox156.TArray<typebox156.TObject<{
|
|
91
|
+
name: typebox156.TString;
|
|
92
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
93
|
+
mimeTypes: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
94
|
+
maxSize: typebox156.TOptional<typebox156.TNumber>;
|
|
95
|
+
provider: typebox156.TString;
|
|
101
96
|
}>>;
|
|
102
|
-
realms:
|
|
103
|
-
name:
|
|
104
|
-
description:
|
|
105
|
-
roles:
|
|
106
|
-
type:
|
|
107
|
-
settings:
|
|
108
|
-
accessTokenExpiration:
|
|
109
|
-
refreshTokenExpiration:
|
|
110
|
-
hasOnCreateSession:
|
|
111
|
-
hasOnRefreshSession:
|
|
112
|
-
hasOnDeleteSession:
|
|
97
|
+
realms: typebox156.TArray<typebox156.TObject<{
|
|
98
|
+
name: typebox156.TString;
|
|
99
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
100
|
+
roles: typebox156.TOptional<typebox156.TArray<typebox156.TAny>>;
|
|
101
|
+
type: typebox156.TUnsafe<"internal" | "external">;
|
|
102
|
+
settings: typebox156.TOptional<typebox156.TObject<{
|
|
103
|
+
accessTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
104
|
+
refreshTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
105
|
+
hasOnCreateSession: typebox156.TBoolean;
|
|
106
|
+
hasOnRefreshSession: typebox156.TBoolean;
|
|
107
|
+
hasOnDeleteSession: typebox156.TBoolean;
|
|
113
108
|
}>>;
|
|
114
109
|
}>>;
|
|
115
|
-
caches:
|
|
116
|
-
name:
|
|
117
|
-
ttl:
|
|
118
|
-
disabled:
|
|
119
|
-
provider:
|
|
110
|
+
caches: typebox156.TArray<typebox156.TObject<{
|
|
111
|
+
name: typebox156.TString;
|
|
112
|
+
ttl: typebox156.TOptional<typebox156.TAny>;
|
|
113
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
114
|
+
provider: typebox156.TString;
|
|
120
115
|
}>>;
|
|
121
|
-
pages:
|
|
122
|
-
name:
|
|
123
|
-
description:
|
|
124
|
-
path:
|
|
125
|
-
params:
|
|
126
|
-
query:
|
|
127
|
-
hasComponent:
|
|
128
|
-
hasLazy:
|
|
129
|
-
hasResolve:
|
|
130
|
-
hasChildren:
|
|
131
|
-
hasParent:
|
|
132
|
-
hasErrorHandler:
|
|
133
|
-
static:
|
|
134
|
-
cache:
|
|
135
|
-
client:
|
|
136
|
-
animation:
|
|
116
|
+
pages: typebox156.TArray<typebox156.TObject<{
|
|
117
|
+
name: typebox156.TString;
|
|
118
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
119
|
+
path: typebox156.TOptional<typebox156.TString>;
|
|
120
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
121
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
122
|
+
hasComponent: typebox156.TBoolean;
|
|
123
|
+
hasLazy: typebox156.TBoolean;
|
|
124
|
+
hasResolve: typebox156.TBoolean;
|
|
125
|
+
hasChildren: typebox156.TBoolean;
|
|
126
|
+
hasParent: typebox156.TBoolean;
|
|
127
|
+
hasErrorHandler: typebox156.TBoolean;
|
|
128
|
+
static: typebox156.TOptional<typebox156.TBoolean>;
|
|
129
|
+
cache: typebox156.TOptional<typebox156.TAny>;
|
|
130
|
+
client: typebox156.TOptional<typebox156.TAny>;
|
|
131
|
+
animation: typebox156.TOptional<typebox156.TAny>;
|
|
137
132
|
}>>;
|
|
138
|
-
providers:
|
|
139
|
-
name:
|
|
140
|
-
module:
|
|
141
|
-
dependencies:
|
|
142
|
-
aliases:
|
|
133
|
+
providers: typebox156.TArray<typebox156.TObject<{
|
|
134
|
+
name: typebox156.TString;
|
|
135
|
+
module: typebox156.TOptional<typebox156.TString>;
|
|
136
|
+
dependencies: typebox156.TArray<typebox156.TString>;
|
|
137
|
+
aliases: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
143
138
|
}>>;
|
|
144
|
-
modules:
|
|
145
|
-
name:
|
|
146
|
-
providers:
|
|
139
|
+
modules: typebox156.TArray<typebox156.TObject<{
|
|
140
|
+
name: typebox156.TString;
|
|
141
|
+
providers: typebox156.TArray<typebox156.TString>;
|
|
147
142
|
}>>;
|
|
148
143
|
}>;
|
|
149
144
|
type DevMetadata = Static<typeof devMetadataSchema>;
|
|
150
145
|
//#endregion
|
|
151
146
|
//#region src/schemas/DevModuleMetadata.d.ts
|
|
152
|
-
declare const devModuleMetadataSchema:
|
|
153
|
-
name:
|
|
154
|
-
providers:
|
|
147
|
+
declare const devModuleMetadataSchema: typebox156.TObject<{
|
|
148
|
+
name: typebox156.TString;
|
|
149
|
+
providers: typebox156.TArray<typebox156.TString>;
|
|
155
150
|
}>;
|
|
156
151
|
type DevModuleMetadata = Static<typeof devModuleMetadataSchema>;
|
|
157
152
|
//#endregion
|
|
158
153
|
//#region src/schemas/DevPageMetadata.d.ts
|
|
159
|
-
declare const devPageMetadataSchema:
|
|
160
|
-
name:
|
|
161
|
-
description:
|
|
162
|
-
path:
|
|
163
|
-
params:
|
|
164
|
-
query:
|
|
165
|
-
hasComponent:
|
|
166
|
-
hasLazy:
|
|
167
|
-
hasResolve:
|
|
168
|
-
hasChildren:
|
|
169
|
-
hasParent:
|
|
170
|
-
hasErrorHandler:
|
|
171
|
-
static:
|
|
172
|
-
cache:
|
|
173
|
-
client:
|
|
174
|
-
animation:
|
|
154
|
+
declare const devPageMetadataSchema: typebox156.TObject<{
|
|
155
|
+
name: typebox156.TString;
|
|
156
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
157
|
+
path: typebox156.TOptional<typebox156.TString>;
|
|
158
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
159
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
160
|
+
hasComponent: typebox156.TBoolean;
|
|
161
|
+
hasLazy: typebox156.TBoolean;
|
|
162
|
+
hasResolve: typebox156.TBoolean;
|
|
163
|
+
hasChildren: typebox156.TBoolean;
|
|
164
|
+
hasParent: typebox156.TBoolean;
|
|
165
|
+
hasErrorHandler: typebox156.TBoolean;
|
|
166
|
+
static: typebox156.TOptional<typebox156.TBoolean>;
|
|
167
|
+
cache: typebox156.TOptional<typebox156.TAny>;
|
|
168
|
+
client: typebox156.TOptional<typebox156.TAny>;
|
|
169
|
+
animation: typebox156.TOptional<typebox156.TAny>;
|
|
175
170
|
}>;
|
|
176
171
|
type DevPageMetadata = Static<typeof devPageMetadataSchema>;
|
|
177
172
|
//#endregion
|
|
178
173
|
//#region src/schemas/DevProviderMetadata.d.ts
|
|
179
|
-
declare const devProviderMetadataSchema:
|
|
180
|
-
name:
|
|
181
|
-
module:
|
|
182
|
-
dependencies:
|
|
183
|
-
aliases:
|
|
174
|
+
declare const devProviderMetadataSchema: typebox156.TObject<{
|
|
175
|
+
name: typebox156.TString;
|
|
176
|
+
module: typebox156.TOptional<typebox156.TString>;
|
|
177
|
+
dependencies: typebox156.TArray<typebox156.TString>;
|
|
178
|
+
aliases: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
184
179
|
}>;
|
|
185
180
|
type DevProviderMetadata = Static<typeof devProviderMetadataSchema>;
|
|
186
181
|
//#endregion
|
|
187
182
|
//#region src/schemas/DevQueueMetadata.d.ts
|
|
188
|
-
declare const devQueueMetadataSchema:
|
|
189
|
-
name:
|
|
190
|
-
description:
|
|
191
|
-
schema:
|
|
192
|
-
provider:
|
|
183
|
+
declare const devQueueMetadataSchema: typebox156.TObject<{
|
|
184
|
+
name: typebox156.TString;
|
|
185
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
186
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
187
|
+
provider: typebox156.TString;
|
|
193
188
|
}>;
|
|
194
189
|
type DevQueueMetadata = Static<typeof devQueueMetadataSchema>;
|
|
195
190
|
//#endregion
|
|
196
191
|
//#region src/schemas/DevRealmMetadata.d.ts
|
|
197
|
-
declare const devRealmMetadataSchema:
|
|
198
|
-
name:
|
|
199
|
-
description:
|
|
200
|
-
roles:
|
|
201
|
-
type:
|
|
202
|
-
settings:
|
|
203
|
-
accessTokenExpiration:
|
|
204
|
-
refreshTokenExpiration:
|
|
205
|
-
hasOnCreateSession:
|
|
206
|
-
hasOnRefreshSession:
|
|
207
|
-
hasOnDeleteSession:
|
|
192
|
+
declare const devRealmMetadataSchema: typebox156.TObject<{
|
|
193
|
+
name: typebox156.TString;
|
|
194
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
195
|
+
roles: typebox156.TOptional<typebox156.TArray<typebox156.TAny>>;
|
|
196
|
+
type: typebox156.TUnsafe<"internal" | "external">;
|
|
197
|
+
settings: typebox156.TOptional<typebox156.TObject<{
|
|
198
|
+
accessTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
199
|
+
refreshTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
200
|
+
hasOnCreateSession: typebox156.TBoolean;
|
|
201
|
+
hasOnRefreshSession: typebox156.TBoolean;
|
|
202
|
+
hasOnDeleteSession: typebox156.TBoolean;
|
|
208
203
|
}>>;
|
|
209
204
|
}>;
|
|
210
205
|
type DevRealmMetadata = Static<typeof devRealmMetadataSchema>;
|
|
211
206
|
//#endregion
|
|
212
207
|
//#region src/schemas/DevSchedulerMetadata.d.ts
|
|
213
|
-
declare const devSchedulerMetadataSchema:
|
|
214
|
-
name:
|
|
215
|
-
description:
|
|
216
|
-
cron:
|
|
217
|
-
interval:
|
|
218
|
-
lock:
|
|
208
|
+
declare const devSchedulerMetadataSchema: typebox156.TObject<{
|
|
209
|
+
name: typebox156.TString;
|
|
210
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
211
|
+
cron: typebox156.TOptional<typebox156.TString>;
|
|
212
|
+
interval: typebox156.TOptional<typebox156.TAny>;
|
|
213
|
+
lock: typebox156.TOptional<typebox156.TBoolean>;
|
|
219
214
|
}>;
|
|
220
215
|
type DevSchedulerMetadata = Static<typeof devSchedulerMetadataSchema>;
|
|
221
216
|
//#endregion
|
|
222
217
|
//#region src/schemas/DevTopicMetadata.d.ts
|
|
223
|
-
declare const devTopicMetadataSchema:
|
|
224
|
-
name:
|
|
225
|
-
description:
|
|
226
|
-
schema:
|
|
227
|
-
provider:
|
|
218
|
+
declare const devTopicMetadataSchema: typebox156.TObject<{
|
|
219
|
+
name: typebox156.TString;
|
|
220
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
221
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
222
|
+
provider: typebox156.TString;
|
|
228
223
|
}>;
|
|
229
224
|
type DevTopicMetadata = Static<typeof devTopicMetadataSchema>;
|
|
230
225
|
//#endregion
|
|
231
226
|
//#region src/DevCollectorProvider.d.ts
|
|
232
227
|
declare class DevCollectorProvider {
|
|
233
228
|
protected readonly alepha: Alepha;
|
|
234
|
-
protected readonly
|
|
229
|
+
protected readonly serverProvider: ServerProvider;
|
|
230
|
+
protected readonly log: _alepha_logger0.Logger;
|
|
231
|
+
protected readonly logs: LogEntry[];
|
|
235
232
|
protected readonly maxLogs = 10000;
|
|
233
|
+
protected readonly onStart: _alepha_core1.HookDescriptor<"start">;
|
|
236
234
|
protected readonly onLog: _alepha_core1.HookDescriptor<"log">;
|
|
237
|
-
protected readonly uiRoute:
|
|
238
|
-
response: typebox144.TString;
|
|
239
|
-
}>;
|
|
235
|
+
protected readonly uiRoute: _alepha_server_static0.ServeDescriptor;
|
|
240
236
|
protected readonly metadataRoute: _alepha_server0.RouteDescriptor<{
|
|
241
|
-
response:
|
|
242
|
-
actions:
|
|
243
|
-
name:
|
|
244
|
-
group:
|
|
245
|
-
method:
|
|
246
|
-
path:
|
|
247
|
-
prefix:
|
|
248
|
-
fullPath:
|
|
249
|
-
description:
|
|
250
|
-
summary:
|
|
251
|
-
disabled:
|
|
252
|
-
secure:
|
|
253
|
-
hide:
|
|
254
|
-
body:
|
|
255
|
-
params:
|
|
256
|
-
query:
|
|
257
|
-
response:
|
|
258
|
-
bodyContentType:
|
|
237
|
+
response: typebox156.TObject<{
|
|
238
|
+
actions: typebox156.TArray<typebox156.TObject<{
|
|
239
|
+
name: typebox156.TString;
|
|
240
|
+
group: typebox156.TString;
|
|
241
|
+
method: typebox156.TString;
|
|
242
|
+
path: typebox156.TString;
|
|
243
|
+
prefix: typebox156.TString;
|
|
244
|
+
fullPath: typebox156.TString;
|
|
245
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
246
|
+
summary: typebox156.TOptional<typebox156.TString>;
|
|
247
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
248
|
+
secure: typebox156.TOptional<typebox156.TBoolean>;
|
|
249
|
+
hide: typebox156.TOptional<typebox156.TBoolean>;
|
|
250
|
+
body: typebox156.TOptional<typebox156.TAny>;
|
|
251
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
252
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
253
|
+
response: typebox156.TOptional<typebox156.TAny>;
|
|
254
|
+
bodyContentType: typebox156.TOptional<typebox156.TString>;
|
|
259
255
|
}>>;
|
|
260
|
-
queues:
|
|
261
|
-
name:
|
|
262
|
-
description:
|
|
263
|
-
schema:
|
|
264
|
-
provider:
|
|
256
|
+
queues: typebox156.TArray<typebox156.TObject<{
|
|
257
|
+
name: typebox156.TString;
|
|
258
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
259
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
260
|
+
provider: typebox156.TString;
|
|
265
261
|
}>>;
|
|
266
|
-
schedulers:
|
|
267
|
-
name:
|
|
268
|
-
description:
|
|
269
|
-
cron:
|
|
270
|
-
interval:
|
|
271
|
-
lock:
|
|
262
|
+
schedulers: typebox156.TArray<typebox156.TObject<{
|
|
263
|
+
name: typebox156.TString;
|
|
264
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
265
|
+
cron: typebox156.TOptional<typebox156.TString>;
|
|
266
|
+
interval: typebox156.TOptional<typebox156.TAny>;
|
|
267
|
+
lock: typebox156.TOptional<typebox156.TBoolean>;
|
|
272
268
|
}>>;
|
|
273
|
-
topics:
|
|
274
|
-
name:
|
|
275
|
-
description:
|
|
276
|
-
schema:
|
|
277
|
-
provider:
|
|
269
|
+
topics: typebox156.TArray<typebox156.TObject<{
|
|
270
|
+
name: typebox156.TString;
|
|
271
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
272
|
+
schema: typebox156.TOptional<typebox156.TAny>;
|
|
273
|
+
provider: typebox156.TString;
|
|
278
274
|
}>>;
|
|
279
|
-
buckets:
|
|
280
|
-
name:
|
|
281
|
-
description:
|
|
282
|
-
mimeTypes:
|
|
283
|
-
maxSize:
|
|
284
|
-
provider:
|
|
275
|
+
buckets: typebox156.TArray<typebox156.TObject<{
|
|
276
|
+
name: typebox156.TString;
|
|
277
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
278
|
+
mimeTypes: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
279
|
+
maxSize: typebox156.TOptional<typebox156.TNumber>;
|
|
280
|
+
provider: typebox156.TString;
|
|
285
281
|
}>>;
|
|
286
|
-
realms:
|
|
287
|
-
name:
|
|
288
|
-
description:
|
|
289
|
-
roles:
|
|
290
|
-
type:
|
|
291
|
-
settings:
|
|
292
|
-
accessTokenExpiration:
|
|
293
|
-
refreshTokenExpiration:
|
|
294
|
-
hasOnCreateSession:
|
|
295
|
-
hasOnRefreshSession:
|
|
296
|
-
hasOnDeleteSession:
|
|
282
|
+
realms: typebox156.TArray<typebox156.TObject<{
|
|
283
|
+
name: typebox156.TString;
|
|
284
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
285
|
+
roles: typebox156.TOptional<typebox156.TArray<typebox156.TAny>>;
|
|
286
|
+
type: typebox156.TUnsafe<"internal" | "external">;
|
|
287
|
+
settings: typebox156.TOptional<typebox156.TObject<{
|
|
288
|
+
accessTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
289
|
+
refreshTokenExpiration: typebox156.TOptional<typebox156.TAny>;
|
|
290
|
+
hasOnCreateSession: typebox156.TBoolean;
|
|
291
|
+
hasOnRefreshSession: typebox156.TBoolean;
|
|
292
|
+
hasOnDeleteSession: typebox156.TBoolean;
|
|
297
293
|
}>>;
|
|
298
294
|
}>>;
|
|
299
|
-
caches:
|
|
300
|
-
name:
|
|
301
|
-
ttl:
|
|
302
|
-
disabled:
|
|
303
|
-
provider:
|
|
295
|
+
caches: typebox156.TArray<typebox156.TObject<{
|
|
296
|
+
name: typebox156.TString;
|
|
297
|
+
ttl: typebox156.TOptional<typebox156.TAny>;
|
|
298
|
+
disabled: typebox156.TOptional<typebox156.TBoolean>;
|
|
299
|
+
provider: typebox156.TString;
|
|
304
300
|
}>>;
|
|
305
|
-
pages:
|
|
306
|
-
name:
|
|
307
|
-
description:
|
|
308
|
-
path:
|
|
309
|
-
params:
|
|
310
|
-
query:
|
|
311
|
-
hasComponent:
|
|
312
|
-
hasLazy:
|
|
313
|
-
hasResolve:
|
|
314
|
-
hasChildren:
|
|
315
|
-
hasParent:
|
|
316
|
-
hasErrorHandler:
|
|
317
|
-
static:
|
|
318
|
-
cache:
|
|
319
|
-
client:
|
|
320
|
-
animation:
|
|
301
|
+
pages: typebox156.TArray<typebox156.TObject<{
|
|
302
|
+
name: typebox156.TString;
|
|
303
|
+
description: typebox156.TOptional<typebox156.TString>;
|
|
304
|
+
path: typebox156.TOptional<typebox156.TString>;
|
|
305
|
+
params: typebox156.TOptional<typebox156.TAny>;
|
|
306
|
+
query: typebox156.TOptional<typebox156.TAny>;
|
|
307
|
+
hasComponent: typebox156.TBoolean;
|
|
308
|
+
hasLazy: typebox156.TBoolean;
|
|
309
|
+
hasResolve: typebox156.TBoolean;
|
|
310
|
+
hasChildren: typebox156.TBoolean;
|
|
311
|
+
hasParent: typebox156.TBoolean;
|
|
312
|
+
hasErrorHandler: typebox156.TBoolean;
|
|
313
|
+
static: typebox156.TOptional<typebox156.TBoolean>;
|
|
314
|
+
cache: typebox156.TOptional<typebox156.TAny>;
|
|
315
|
+
client: typebox156.TOptional<typebox156.TAny>;
|
|
316
|
+
animation: typebox156.TOptional<typebox156.TAny>;
|
|
321
317
|
}>>;
|
|
322
|
-
providers:
|
|
323
|
-
name:
|
|
324
|
-
module:
|
|
325
|
-
dependencies:
|
|
326
|
-
aliases:
|
|
318
|
+
providers: typebox156.TArray<typebox156.TObject<{
|
|
319
|
+
name: typebox156.TString;
|
|
320
|
+
module: typebox156.TOptional<typebox156.TString>;
|
|
321
|
+
dependencies: typebox156.TArray<typebox156.TString>;
|
|
322
|
+
aliases: typebox156.TOptional<typebox156.TArray<typebox156.TString>>;
|
|
327
323
|
}>>;
|
|
328
|
-
modules:
|
|
329
|
-
name:
|
|
330
|
-
providers:
|
|
324
|
+
modules: typebox156.TArray<typebox156.TObject<{
|
|
325
|
+
name: typebox156.TString;
|
|
326
|
+
providers: typebox156.TArray<typebox156.TString>;
|
|
331
327
|
}>>;
|
|
332
328
|
}>;
|
|
333
329
|
}>;
|
|
334
330
|
protected readonly logsRoute: _alepha_server0.RouteDescriptor<{
|
|
335
|
-
response:
|
|
336
|
-
|
|
337
|
-
|
|
331
|
+
response: typebox156.TArray<typebox156.TObject<{
|
|
332
|
+
level: typebox156.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
333
|
+
message: typebox156.TString;
|
|
334
|
+
service: typebox156.TString;
|
|
335
|
+
module: typebox156.TString;
|
|
336
|
+
context: typebox156.TOptional<typebox156.TString>;
|
|
337
|
+
app: typebox156.TOptional<typebox156.TString>;
|
|
338
|
+
data: typebox156.TOptional<typebox156.TAny>;
|
|
339
|
+
timestamp: typebox156.TCodec<typebox156.TString, dayjs0.Dayjs>;
|
|
338
340
|
}>>;
|
|
339
341
|
}>;
|
|
340
|
-
getLogs():
|
|
342
|
+
getLogs(): LogEntry[];
|
|
341
343
|
getActions(): DevActionMetadata[];
|
|
342
344
|
getQueues(): DevQueueMetadata[];
|
|
343
345
|
getSchedulers(): DevSchedulerMetadata[];
|
|
@@ -364,5 +366,5 @@ declare class DevCollectorProvider {
|
|
|
364
366
|
*/
|
|
365
367
|
declare const AlephaDevtools: _alepha_core1.Service<_alepha_core1.Module<{}>>;
|
|
366
368
|
//#endregion
|
|
367
|
-
export { AlephaDevtools, DevActionMetadata, DevBucketMetadata, DevCacheMetadata, DevCollectorProvider,
|
|
369
|
+
export { AlephaDevtools, DevActionMetadata, DevBucketMetadata, DevCacheMetadata, DevCollectorProvider, DevMetadata, DevModuleMetadata, DevPageMetadata, DevProviderMetadata, DevQueueMetadata, DevRealmMetadata, DevSchedulerMetadata, DevTopicMetadata, devActionMetadataSchema, devBucketMetadataSchema, devCacheMetadataSchema, devMetadataSchema, devModuleMetadataSchema, devPageMetadataSchema, devProviderMetadataSchema, devQueueMetadataSchema, devRealmMetadataSchema, devSchedulerMetadataSchema, devTopicMetadataSchema };
|
|
368
370
|
//# sourceMappingURL=index.d.ts.map
|