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