@alepha/devtools 0.11.12 → 0.12.0
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.cts +160 -160
- package/dist/index.d.cts.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,220 +1,220 @@
|
|
|
1
1
|
import * as alepha0 from "alepha";
|
|
2
2
|
import { Alepha, Static } from "alepha";
|
|
3
3
|
import * as alepha_logger0 from "alepha/logger";
|
|
4
|
-
import * as
|
|
4
|
+
import * as typebox132 from "typebox";
|
|
5
5
|
|
|
6
6
|
//#region src/schemas/DevActionMetadata.d.ts
|
|
7
|
-
declare const devActionMetadataSchema:
|
|
8
|
-
name:
|
|
9
|
-
group:
|
|
10
|
-
method:
|
|
11
|
-
path:
|
|
12
|
-
prefix:
|
|
13
|
-
fullPath:
|
|
14
|
-
description:
|
|
15
|
-
summary:
|
|
16
|
-
disabled:
|
|
17
|
-
secure:
|
|
18
|
-
hide:
|
|
19
|
-
body:
|
|
20
|
-
params:
|
|
21
|
-
query:
|
|
22
|
-
response:
|
|
23
|
-
bodyContentType:
|
|
7
|
+
declare const devActionMetadataSchema: typebox132.TObject<{
|
|
8
|
+
name: typebox132.TString;
|
|
9
|
+
group: typebox132.TString;
|
|
10
|
+
method: typebox132.TString;
|
|
11
|
+
path: typebox132.TString;
|
|
12
|
+
prefix: typebox132.TString;
|
|
13
|
+
fullPath: typebox132.TString;
|
|
14
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
15
|
+
summary: typebox132.TOptional<typebox132.TString>;
|
|
16
|
+
disabled: typebox132.TOptional<typebox132.TBoolean>;
|
|
17
|
+
secure: typebox132.TOptional<typebox132.TBoolean>;
|
|
18
|
+
hide: typebox132.TOptional<typebox132.TBoolean>;
|
|
19
|
+
body: typebox132.TOptional<typebox132.TAny>;
|
|
20
|
+
params: typebox132.TOptional<typebox132.TAny>;
|
|
21
|
+
query: typebox132.TOptional<typebox132.TAny>;
|
|
22
|
+
response: typebox132.TOptional<typebox132.TAny>;
|
|
23
|
+
bodyContentType: typebox132.TOptional<typebox132.TString>;
|
|
24
24
|
}>;
|
|
25
25
|
type DevActionMetadata = Static<typeof devActionMetadataSchema>;
|
|
26
26
|
//#endregion
|
|
27
27
|
//#region src/schemas/DevBucketMetadata.d.ts
|
|
28
|
-
declare const devBucketMetadataSchema:
|
|
29
|
-
name:
|
|
30
|
-
description:
|
|
31
|
-
mimeTypes:
|
|
32
|
-
maxSize:
|
|
33
|
-
provider:
|
|
28
|
+
declare const devBucketMetadataSchema: typebox132.TObject<{
|
|
29
|
+
name: typebox132.TString;
|
|
30
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
31
|
+
mimeTypes: typebox132.TOptional<typebox132.TArray<typebox132.TString>>;
|
|
32
|
+
maxSize: typebox132.TOptional<typebox132.TNumber>;
|
|
33
|
+
provider: typebox132.TString;
|
|
34
34
|
}>;
|
|
35
35
|
type DevBucketMetadata = Static<typeof devBucketMetadataSchema>;
|
|
36
36
|
//#endregion
|
|
37
37
|
//#region src/schemas/DevCacheMetadata.d.ts
|
|
38
|
-
declare const devCacheMetadataSchema:
|
|
39
|
-
name:
|
|
40
|
-
ttl:
|
|
41
|
-
disabled:
|
|
42
|
-
provider:
|
|
38
|
+
declare const devCacheMetadataSchema: typebox132.TObject<{
|
|
39
|
+
name: typebox132.TString;
|
|
40
|
+
ttl: typebox132.TOptional<typebox132.TAny>;
|
|
41
|
+
disabled: typebox132.TOptional<typebox132.TBoolean>;
|
|
42
|
+
provider: typebox132.TString;
|
|
43
43
|
}>;
|
|
44
44
|
type DevCacheMetadata = Static<typeof devCacheMetadataSchema>;
|
|
45
45
|
//#endregion
|
|
46
46
|
//#region src/schemas/DevMetadata.d.ts
|
|
47
|
-
declare const devMetadataSchema:
|
|
48
|
-
actions:
|
|
49
|
-
name:
|
|
50
|
-
group:
|
|
51
|
-
method:
|
|
52
|
-
path:
|
|
53
|
-
prefix:
|
|
54
|
-
fullPath:
|
|
55
|
-
description:
|
|
56
|
-
summary:
|
|
57
|
-
disabled:
|
|
58
|
-
secure:
|
|
59
|
-
hide:
|
|
60
|
-
body:
|
|
61
|
-
params:
|
|
62
|
-
query:
|
|
63
|
-
response:
|
|
64
|
-
bodyContentType:
|
|
47
|
+
declare const devMetadataSchema: typebox132.TObject<{
|
|
48
|
+
actions: typebox132.TArray<typebox132.TObject<{
|
|
49
|
+
name: typebox132.TString;
|
|
50
|
+
group: typebox132.TString;
|
|
51
|
+
method: typebox132.TString;
|
|
52
|
+
path: typebox132.TString;
|
|
53
|
+
prefix: typebox132.TString;
|
|
54
|
+
fullPath: typebox132.TString;
|
|
55
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
56
|
+
summary: typebox132.TOptional<typebox132.TString>;
|
|
57
|
+
disabled: typebox132.TOptional<typebox132.TBoolean>;
|
|
58
|
+
secure: typebox132.TOptional<typebox132.TBoolean>;
|
|
59
|
+
hide: typebox132.TOptional<typebox132.TBoolean>;
|
|
60
|
+
body: typebox132.TOptional<typebox132.TAny>;
|
|
61
|
+
params: typebox132.TOptional<typebox132.TAny>;
|
|
62
|
+
query: typebox132.TOptional<typebox132.TAny>;
|
|
63
|
+
response: typebox132.TOptional<typebox132.TAny>;
|
|
64
|
+
bodyContentType: typebox132.TOptional<typebox132.TString>;
|
|
65
65
|
}>>;
|
|
66
|
-
queues:
|
|
67
|
-
name:
|
|
68
|
-
description:
|
|
69
|
-
schema:
|
|
70
|
-
provider:
|
|
66
|
+
queues: typebox132.TArray<typebox132.TObject<{
|
|
67
|
+
name: typebox132.TString;
|
|
68
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
69
|
+
schema: typebox132.TOptional<typebox132.TAny>;
|
|
70
|
+
provider: typebox132.TString;
|
|
71
71
|
}>>;
|
|
72
|
-
schedulers:
|
|
73
|
-
name:
|
|
74
|
-
description:
|
|
75
|
-
cron:
|
|
76
|
-
interval:
|
|
77
|
-
lock:
|
|
72
|
+
schedulers: typebox132.TArray<typebox132.TObject<{
|
|
73
|
+
name: typebox132.TString;
|
|
74
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
75
|
+
cron: typebox132.TOptional<typebox132.TString>;
|
|
76
|
+
interval: typebox132.TOptional<typebox132.TAny>;
|
|
77
|
+
lock: typebox132.TOptional<typebox132.TBoolean>;
|
|
78
78
|
}>>;
|
|
79
|
-
topics:
|
|
80
|
-
name:
|
|
81
|
-
description:
|
|
82
|
-
schema:
|
|
83
|
-
provider:
|
|
79
|
+
topics: typebox132.TArray<typebox132.TObject<{
|
|
80
|
+
name: typebox132.TString;
|
|
81
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
82
|
+
schema: typebox132.TOptional<typebox132.TAny>;
|
|
83
|
+
provider: typebox132.TString;
|
|
84
84
|
}>>;
|
|
85
|
-
buckets:
|
|
86
|
-
name:
|
|
87
|
-
description:
|
|
88
|
-
mimeTypes:
|
|
89
|
-
maxSize:
|
|
90
|
-
provider:
|
|
85
|
+
buckets: typebox132.TArray<typebox132.TObject<{
|
|
86
|
+
name: typebox132.TString;
|
|
87
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
88
|
+
mimeTypes: typebox132.TOptional<typebox132.TArray<typebox132.TString>>;
|
|
89
|
+
maxSize: typebox132.TOptional<typebox132.TNumber>;
|
|
90
|
+
provider: typebox132.TString;
|
|
91
91
|
}>>;
|
|
92
|
-
realms:
|
|
93
|
-
name:
|
|
94
|
-
description:
|
|
95
|
-
roles:
|
|
96
|
-
type:
|
|
97
|
-
settings:
|
|
98
|
-
accessTokenExpiration:
|
|
99
|
-
refreshTokenExpiration:
|
|
100
|
-
hasOnCreateSession:
|
|
101
|
-
hasOnRefreshSession:
|
|
102
|
-
hasOnDeleteSession:
|
|
92
|
+
realms: typebox132.TArray<typebox132.TObject<{
|
|
93
|
+
name: typebox132.TString;
|
|
94
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
95
|
+
roles: typebox132.TOptional<typebox132.TArray<typebox132.TAny>>;
|
|
96
|
+
type: typebox132.TUnsafe<"internal" | "external">;
|
|
97
|
+
settings: typebox132.TOptional<typebox132.TObject<{
|
|
98
|
+
accessTokenExpiration: typebox132.TOptional<typebox132.TAny>;
|
|
99
|
+
refreshTokenExpiration: typebox132.TOptional<typebox132.TAny>;
|
|
100
|
+
hasOnCreateSession: typebox132.TBoolean;
|
|
101
|
+
hasOnRefreshSession: typebox132.TBoolean;
|
|
102
|
+
hasOnDeleteSession: typebox132.TBoolean;
|
|
103
103
|
}>>;
|
|
104
104
|
}>>;
|
|
105
|
-
caches:
|
|
106
|
-
name:
|
|
107
|
-
ttl:
|
|
108
|
-
disabled:
|
|
109
|
-
provider:
|
|
105
|
+
caches: typebox132.TArray<typebox132.TObject<{
|
|
106
|
+
name: typebox132.TString;
|
|
107
|
+
ttl: typebox132.TOptional<typebox132.TAny>;
|
|
108
|
+
disabled: typebox132.TOptional<typebox132.TBoolean>;
|
|
109
|
+
provider: typebox132.TString;
|
|
110
110
|
}>>;
|
|
111
|
-
pages:
|
|
112
|
-
name:
|
|
113
|
-
description:
|
|
114
|
-
path:
|
|
115
|
-
params:
|
|
116
|
-
query:
|
|
117
|
-
hasComponent:
|
|
118
|
-
hasLazy:
|
|
119
|
-
hasResolve:
|
|
120
|
-
hasChildren:
|
|
121
|
-
hasParent:
|
|
122
|
-
hasErrorHandler:
|
|
123
|
-
static:
|
|
124
|
-
cache:
|
|
125
|
-
client:
|
|
126
|
-
animation:
|
|
111
|
+
pages: typebox132.TArray<typebox132.TObject<{
|
|
112
|
+
name: typebox132.TString;
|
|
113
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
114
|
+
path: typebox132.TOptional<typebox132.TString>;
|
|
115
|
+
params: typebox132.TOptional<typebox132.TAny>;
|
|
116
|
+
query: typebox132.TOptional<typebox132.TAny>;
|
|
117
|
+
hasComponent: typebox132.TBoolean;
|
|
118
|
+
hasLazy: typebox132.TBoolean;
|
|
119
|
+
hasResolve: typebox132.TBoolean;
|
|
120
|
+
hasChildren: typebox132.TBoolean;
|
|
121
|
+
hasParent: typebox132.TBoolean;
|
|
122
|
+
hasErrorHandler: typebox132.TBoolean;
|
|
123
|
+
static: typebox132.TOptional<typebox132.TBoolean>;
|
|
124
|
+
cache: typebox132.TOptional<typebox132.TAny>;
|
|
125
|
+
client: typebox132.TOptional<typebox132.TAny>;
|
|
126
|
+
animation: typebox132.TOptional<typebox132.TAny>;
|
|
127
127
|
}>>;
|
|
128
|
-
providers:
|
|
129
|
-
name:
|
|
130
|
-
module:
|
|
131
|
-
dependencies:
|
|
132
|
-
aliases:
|
|
128
|
+
providers: typebox132.TArray<typebox132.TObject<{
|
|
129
|
+
name: typebox132.TString;
|
|
130
|
+
module: typebox132.TOptional<typebox132.TString>;
|
|
131
|
+
dependencies: typebox132.TArray<typebox132.TString>;
|
|
132
|
+
aliases: typebox132.TOptional<typebox132.TArray<typebox132.TString>>;
|
|
133
133
|
}>>;
|
|
134
|
-
modules:
|
|
135
|
-
name:
|
|
136
|
-
providers:
|
|
134
|
+
modules: typebox132.TArray<typebox132.TObject<{
|
|
135
|
+
name: typebox132.TString;
|
|
136
|
+
providers: typebox132.TArray<typebox132.TString>;
|
|
137
137
|
}>>;
|
|
138
138
|
}>;
|
|
139
139
|
type DevMetadata = Static<typeof devMetadataSchema>;
|
|
140
140
|
//#endregion
|
|
141
141
|
//#region src/schemas/DevModuleMetadata.d.ts
|
|
142
|
-
declare const devModuleMetadataSchema:
|
|
143
|
-
name:
|
|
144
|
-
providers:
|
|
142
|
+
declare const devModuleMetadataSchema: typebox132.TObject<{
|
|
143
|
+
name: typebox132.TString;
|
|
144
|
+
providers: typebox132.TArray<typebox132.TString>;
|
|
145
145
|
}>;
|
|
146
146
|
type DevModuleMetadata = Static<typeof devModuleMetadataSchema>;
|
|
147
147
|
//#endregion
|
|
148
148
|
//#region src/schemas/DevPageMetadata.d.ts
|
|
149
|
-
declare const devPageMetadataSchema:
|
|
150
|
-
name:
|
|
151
|
-
description:
|
|
152
|
-
path:
|
|
153
|
-
params:
|
|
154
|
-
query:
|
|
155
|
-
hasComponent:
|
|
156
|
-
hasLazy:
|
|
157
|
-
hasResolve:
|
|
158
|
-
hasChildren:
|
|
159
|
-
hasParent:
|
|
160
|
-
hasErrorHandler:
|
|
161
|
-
static:
|
|
162
|
-
cache:
|
|
163
|
-
client:
|
|
164
|
-
animation:
|
|
149
|
+
declare const devPageMetadataSchema: typebox132.TObject<{
|
|
150
|
+
name: typebox132.TString;
|
|
151
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
152
|
+
path: typebox132.TOptional<typebox132.TString>;
|
|
153
|
+
params: typebox132.TOptional<typebox132.TAny>;
|
|
154
|
+
query: typebox132.TOptional<typebox132.TAny>;
|
|
155
|
+
hasComponent: typebox132.TBoolean;
|
|
156
|
+
hasLazy: typebox132.TBoolean;
|
|
157
|
+
hasResolve: typebox132.TBoolean;
|
|
158
|
+
hasChildren: typebox132.TBoolean;
|
|
159
|
+
hasParent: typebox132.TBoolean;
|
|
160
|
+
hasErrorHandler: typebox132.TBoolean;
|
|
161
|
+
static: typebox132.TOptional<typebox132.TBoolean>;
|
|
162
|
+
cache: typebox132.TOptional<typebox132.TAny>;
|
|
163
|
+
client: typebox132.TOptional<typebox132.TAny>;
|
|
164
|
+
animation: typebox132.TOptional<typebox132.TAny>;
|
|
165
165
|
}>;
|
|
166
166
|
type DevPageMetadata = Static<typeof devPageMetadataSchema>;
|
|
167
167
|
//#endregion
|
|
168
168
|
//#region src/schemas/DevProviderMetadata.d.ts
|
|
169
|
-
declare const devProviderMetadataSchema:
|
|
170
|
-
name:
|
|
171
|
-
module:
|
|
172
|
-
dependencies:
|
|
173
|
-
aliases:
|
|
169
|
+
declare const devProviderMetadataSchema: typebox132.TObject<{
|
|
170
|
+
name: typebox132.TString;
|
|
171
|
+
module: typebox132.TOptional<typebox132.TString>;
|
|
172
|
+
dependencies: typebox132.TArray<typebox132.TString>;
|
|
173
|
+
aliases: typebox132.TOptional<typebox132.TArray<typebox132.TString>>;
|
|
174
174
|
}>;
|
|
175
175
|
type DevProviderMetadata = Static<typeof devProviderMetadataSchema>;
|
|
176
176
|
//#endregion
|
|
177
177
|
//#region src/schemas/DevQueueMetadata.d.ts
|
|
178
|
-
declare const devQueueMetadataSchema:
|
|
179
|
-
name:
|
|
180
|
-
description:
|
|
181
|
-
schema:
|
|
182
|
-
provider:
|
|
178
|
+
declare const devQueueMetadataSchema: typebox132.TObject<{
|
|
179
|
+
name: typebox132.TString;
|
|
180
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
181
|
+
schema: typebox132.TOptional<typebox132.TAny>;
|
|
182
|
+
provider: typebox132.TString;
|
|
183
183
|
}>;
|
|
184
184
|
type DevQueueMetadata = Static<typeof devQueueMetadataSchema>;
|
|
185
185
|
//#endregion
|
|
186
186
|
//#region src/schemas/DevRealmMetadata.d.ts
|
|
187
|
-
declare const devRealmMetadataSchema:
|
|
188
|
-
name:
|
|
189
|
-
description:
|
|
190
|
-
roles:
|
|
191
|
-
type:
|
|
192
|
-
settings:
|
|
193
|
-
accessTokenExpiration:
|
|
194
|
-
refreshTokenExpiration:
|
|
195
|
-
hasOnCreateSession:
|
|
196
|
-
hasOnRefreshSession:
|
|
197
|
-
hasOnDeleteSession:
|
|
187
|
+
declare const devRealmMetadataSchema: typebox132.TObject<{
|
|
188
|
+
name: typebox132.TString;
|
|
189
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
190
|
+
roles: typebox132.TOptional<typebox132.TArray<typebox132.TAny>>;
|
|
191
|
+
type: typebox132.TUnsafe<"internal" | "external">;
|
|
192
|
+
settings: typebox132.TOptional<typebox132.TObject<{
|
|
193
|
+
accessTokenExpiration: typebox132.TOptional<typebox132.TAny>;
|
|
194
|
+
refreshTokenExpiration: typebox132.TOptional<typebox132.TAny>;
|
|
195
|
+
hasOnCreateSession: typebox132.TBoolean;
|
|
196
|
+
hasOnRefreshSession: typebox132.TBoolean;
|
|
197
|
+
hasOnDeleteSession: typebox132.TBoolean;
|
|
198
198
|
}>>;
|
|
199
199
|
}>;
|
|
200
200
|
type DevRealmMetadata = Static<typeof devRealmMetadataSchema>;
|
|
201
201
|
//#endregion
|
|
202
202
|
//#region src/schemas/DevSchedulerMetadata.d.ts
|
|
203
|
-
declare const devSchedulerMetadataSchema:
|
|
204
|
-
name:
|
|
205
|
-
description:
|
|
206
|
-
cron:
|
|
207
|
-
interval:
|
|
208
|
-
lock:
|
|
203
|
+
declare const devSchedulerMetadataSchema: typebox132.TObject<{
|
|
204
|
+
name: typebox132.TString;
|
|
205
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
206
|
+
cron: typebox132.TOptional<typebox132.TString>;
|
|
207
|
+
interval: typebox132.TOptional<typebox132.TAny>;
|
|
208
|
+
lock: typebox132.TOptional<typebox132.TBoolean>;
|
|
209
209
|
}>;
|
|
210
210
|
type DevSchedulerMetadata = Static<typeof devSchedulerMetadataSchema>;
|
|
211
211
|
//#endregion
|
|
212
212
|
//#region src/schemas/DevTopicMetadata.d.ts
|
|
213
|
-
declare const devTopicMetadataSchema:
|
|
214
|
-
name:
|
|
215
|
-
description:
|
|
216
|
-
schema:
|
|
217
|
-
provider:
|
|
213
|
+
declare const devTopicMetadataSchema: typebox132.TObject<{
|
|
214
|
+
name: typebox132.TString;
|
|
215
|
+
description: typebox132.TOptional<typebox132.TString>;
|
|
216
|
+
schema: typebox132.TOptional<typebox132.TAny>;
|
|
217
|
+
provider: typebox132.TString;
|
|
218
218
|
}>;
|
|
219
219
|
type DevTopicMetadata = Static<typeof devTopicMetadataSchema>;
|
|
220
220
|
//#endregion
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/schemas/DevActionMetadata.ts","../src/schemas/DevBucketMetadata.ts","../src/schemas/DevCacheMetadata.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/providers/DevToolsMetadataProvider.ts","../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAEa,
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/schemas/DevActionMetadata.ts","../src/schemas/DevBucketMetadata.ts","../src/schemas/DevCacheMetadata.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/providers/DevToolsMetadataProvider.ts","../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAEa,oCAAuB;QAiBlC,UAAA,CAAA;;;;EAjBW,MAAA,oBAiBX;EAAA,QAAA,oBAAA;;;;;;;;;;;;KAEU,iBAAA,GAAoB,cAAc;;;cCnBjC,oCAAuB;QAMlC,UAAA,CAAA;;;;EDNW,QAAA,oBAiBX;CAAA,CAAA;KCTU,iBAAA,GAAoB,cAAc;;;cCRjC,mCAAsB;QAKjC,UAAA,CAAA;;;;AFLF,CAAA,CAAA;AAiBE,KEVU,gBAAA,GAAmB,MFU7B,CAAA,OEV2C,sBFU3C,CAAA;;;cGPW,8BAAiB;;UAY5B,UAAA,CAAA;;;IHtBW,IAAA,oBAiBX;IAAA,MAAA,oBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;2BAjBkC,mBAAA,CAAA;IAAA,IAAA,oBAAA;IAmBxB,WAAA,sBAAkC,oBAAR;;;;ECnBzB,OAAA,mBAMX,mBAAA,CAAA;IAAA,IAAA,oBAAA;;;;;;;;;SANkC,sBAAA,kBAAA,iBAAA,CAAA;IAAA,IAAA,oBAAA,CAAA,UAAA,GAAA,UAAA,CAAA;IAQxB,QAAA,sBAAkC,mBAAR,CAAA;;;;MCRzB,mBAKX,qBAAA;MAAA,kBAAA,qBAAA;;;;;;YALiC,sBAAA,qBAAA;IAAA,QAAA,oBAAA;EAOvB,CAAA,CAAA,CAAA;;;;ICGC,IAAA,sBAYX,oBAAA;IAAA,MAAA,sBAAA,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;KAEU,WAAA,GAAc,cAAc;;;cCxB3B,oCAAuB;QAGlC,UAAA,CAAA;;;KAEU,iBAAA,GAAoB,cAAc;;;cCLjC,kCAAqB;QAgBhC,UAAA,CAAA;;;;ELhBW,KAAA,sBAiBX,iBAAA;EAAA,YAAA,qBAAA;;;;;;;;;;;KKCU,eAAA,GAAkB,cAAc;;;cClB/B,sCAAyB;QAKpC,UAAA,CAAA;;;;ANLF,CAAA,CAAA;AAiBE,KMVU,mBAAA,GAAsB,MNUhC,CAAA,OMV8C,yBNU9C,CAAA;;;cOjBW,mCAAsB;QAKjC,UAAA,CAAA;;;;APLF,CAAA,CAAA;AAiBE,KOVU,gBAAA,GAAmB,MPU7B,CAAA,OOV2C,sBPU3C,CAAA;;;cQjBW,mCAAsB;QAcjC,UAAA,CAAA;;;;ERdW,QAAA,sBAiBX,mBAAA,CAAA;IAAA,qBAAA,sBAAA,iBAAA;;;;;;;KQDU,gBAAA,GAAmB,cAAc;;;cChBhC,uCAA0B;QAMrC,UAAA,CAAA;;;;ETNW,IAAA,sBAiBX,qBAAA;CAAA,CAAA;KSTU,oBAAA,GAAuB,cAAc;;;cCRpC,mCAAsB;QAKjC,UAAA,CAAA;;;;AVLF,CAAA,CAAA;AAiBE,KUVU,gBAAA,GAAmB,MVU7B,CAAA,OUV2C,sBVU3C,CAAA;;;cWEW,wBAAA;6BACc;0BAAA,cAAA,CACH;gBAED;eA4BD;mBAWI;eAYJ;gBAWC;eAYD;eAmBA;cAWD;kBA2BI;gBAWF;iBAoBC;;;;;;;;;;;;;;cC3JX,gBAAc,OAAA,CAAA,QAezB,OAAA,CAfyB,MAAA"}
|
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.
|
|
4
|
+
"version": "0.12.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=22.0.0"
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
"src"
|
|
15
15
|
],
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@alepha/react": "0.
|
|
18
|
-
"@alepha/ui": "0.
|
|
17
|
+
"@alepha/react": "0.12.0",
|
|
18
|
+
"@alepha/ui": "0.12.0",
|
|
19
19
|
"@tabler/icons-react": "^3.35.0",
|
|
20
|
-
"alepha": "0.
|
|
20
|
+
"alepha": "0.12.0",
|
|
21
21
|
"react": "^19.2.0",
|
|
22
22
|
"tsdown": "^0.16.4",
|
|
23
23
|
"vitest": "^4.0.9"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"alepha": "0.
|
|
26
|
+
"alepha": "0.12.0"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"lint": "alepha lint",
|