alepha 0.10.5 → 0.10.7

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