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