@xyo-network/manifest-model 5.3.30 → 5.4.1
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/README.md +0 -598
- package/dist/neutral/Manifest.d.ts +3 -4
- package/dist/neutral/Manifest.d.ts.map +1 -1
- package/dist/neutral/Manifest.zod.d.ts +2618 -1
- package/dist/neutral/Manifest.zod.d.ts.map +1 -1
- package/dist/neutral/Payload.d.ts +1 -24
- package/dist/neutral/Payload.d.ts.map +1 -1
- package/dist/neutral/Payload.zod.d.ts +1591 -0
- package/dist/neutral/Payload.zod.d.ts.map +1 -0
- package/dist/neutral/index.d.ts +0 -1
- package/dist/neutral/index.d.ts.map +1 -1
- package/dist/neutral/index.mjs +96 -14
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +13 -17
- package/dist/neutral/ManifestZod.d.ts +0 -573
- package/dist/neutral/ManifestZod.d.ts.map +0 -1
|
@@ -1,573 +0,0 @@
|
|
|
1
|
-
import type { Brand } from '@xylabs/sdk-js';
|
|
2
|
-
import type { Schema } from '@xyo-network/payload-model';
|
|
3
|
-
import { z } from 'zod';
|
|
4
|
-
export declare const asBrandedZod: <TBrand, TSchema extends z.ZodType<string>>(schema: TSchema) => z.ZodType<Brand<string, TBrand>, Brand<string, TBrand>>;
|
|
5
|
-
export type ModuleAlias = Brand<string, {
|
|
6
|
-
__moduleAlias: true;
|
|
7
|
-
}>;
|
|
8
|
-
export declare const ModuleAliasZodSchema: z.ZodType<Brand<string, {
|
|
9
|
-
__moduleAlias: true;
|
|
10
|
-
}>, Brand<string, {
|
|
11
|
-
__moduleAlias: true;
|
|
12
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
13
|
-
__moduleAlias: true;
|
|
14
|
-
}>, Brand<string, {
|
|
15
|
-
__moduleAlias: true;
|
|
16
|
-
}>>>;
|
|
17
|
-
export declare const ManifestZod: z.ZodObject<{
|
|
18
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
19
|
-
description: z.ZodOptional<z.ZodString>;
|
|
20
|
-
}, z.core.$strip>;
|
|
21
|
-
export declare const ConfigManifestZod: z.ZodObject<{
|
|
22
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
23
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
25
|
-
language: z.ZodOptional<z.ZodString>;
|
|
26
|
-
name: z.ZodString;
|
|
27
|
-
os: z.ZodOptional<z.ZodString>;
|
|
28
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
29
|
-
}, z.core.$loose>;
|
|
30
|
-
export declare const ModuleManifestStatusZod: z.ZodObject<{
|
|
31
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
32
|
-
readonly __hex: true;
|
|
33
|
-
} & {
|
|
34
|
-
readonly __address: true;
|
|
35
|
-
}, Lowercase<string> & {
|
|
36
|
-
readonly __hex: true;
|
|
37
|
-
} & {
|
|
38
|
-
readonly __address: true;
|
|
39
|
-
}>;
|
|
40
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
41
|
-
readonly __hex: true;
|
|
42
|
-
} & {
|
|
43
|
-
readonly __address: true;
|
|
44
|
-
}, Lowercase<string> & {
|
|
45
|
-
readonly __hex: true;
|
|
46
|
-
} & {
|
|
47
|
-
readonly __address: true;
|
|
48
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
49
|
-
}, z.core.$strip>;
|
|
50
|
-
export declare const ModuleManifestZod: z.ZodObject<{
|
|
51
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
52
|
-
description: z.ZodOptional<z.ZodString>;
|
|
53
|
-
config: z.ZodObject<{
|
|
54
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
55
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
56
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
57
|
-
language: z.ZodOptional<z.ZodString>;
|
|
58
|
-
name: z.ZodString;
|
|
59
|
-
os: z.ZodOptional<z.ZodString>;
|
|
60
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
61
|
-
}, z.core.$loose>;
|
|
62
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
63
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
64
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
65
|
-
readonly __hex: true;
|
|
66
|
-
} & {
|
|
67
|
-
readonly __address: true;
|
|
68
|
-
}, Lowercase<string> & {
|
|
69
|
-
readonly __hex: true;
|
|
70
|
-
} & {
|
|
71
|
-
readonly __address: true;
|
|
72
|
-
}>;
|
|
73
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
74
|
-
readonly __hex: true;
|
|
75
|
-
} & {
|
|
76
|
-
readonly __address: true;
|
|
77
|
-
}, Lowercase<string> & {
|
|
78
|
-
readonly __hex: true;
|
|
79
|
-
} & {
|
|
80
|
-
readonly __address: true;
|
|
81
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
82
|
-
}, z.core.$strip>>;
|
|
83
|
-
}, z.core.$strip>;
|
|
84
|
-
export declare const ModuleManifestReferenceZod: z.ZodUnion<readonly [z.ZodObject<{
|
|
85
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
86
|
-
description: z.ZodOptional<z.ZodString>;
|
|
87
|
-
config: z.ZodObject<{
|
|
88
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
89
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
90
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
91
|
-
language: z.ZodOptional<z.ZodString>;
|
|
92
|
-
name: z.ZodString;
|
|
93
|
-
os: z.ZodOptional<z.ZodString>;
|
|
94
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
95
|
-
}, z.core.$loose>;
|
|
96
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
97
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
98
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
99
|
-
readonly __hex: true;
|
|
100
|
-
} & {
|
|
101
|
-
readonly __address: true;
|
|
102
|
-
}, Lowercase<string> & {
|
|
103
|
-
readonly __hex: true;
|
|
104
|
-
} & {
|
|
105
|
-
readonly __address: true;
|
|
106
|
-
}>;
|
|
107
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
108
|
-
readonly __hex: true;
|
|
109
|
-
} & {
|
|
110
|
-
readonly __address: true;
|
|
111
|
-
}, Lowercase<string> & {
|
|
112
|
-
readonly __hex: true;
|
|
113
|
-
} & {
|
|
114
|
-
readonly __address: true;
|
|
115
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
116
|
-
}, z.core.$strip>>;
|
|
117
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
118
|
-
__moduleAlias: true;
|
|
119
|
-
}>, Brand<string, {
|
|
120
|
-
__moduleAlias: true;
|
|
121
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
122
|
-
__moduleAlias: true;
|
|
123
|
-
}>, Brand<string, {
|
|
124
|
-
__moduleAlias: true;
|
|
125
|
-
}>>>]>;
|
|
126
|
-
export declare const NodeManifestZod: z.ZodObject<{
|
|
127
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
128
|
-
description: z.ZodOptional<z.ZodString>;
|
|
129
|
-
config: z.ZodObject<{
|
|
130
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
131
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
132
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
133
|
-
language: z.ZodOptional<z.ZodString>;
|
|
134
|
-
name: z.ZodString;
|
|
135
|
-
os: z.ZodOptional<z.ZodString>;
|
|
136
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
137
|
-
}, z.core.$loose>;
|
|
138
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
139
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
140
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
141
|
-
readonly __hex: true;
|
|
142
|
-
} & {
|
|
143
|
-
readonly __address: true;
|
|
144
|
-
}, Lowercase<string> & {
|
|
145
|
-
readonly __hex: true;
|
|
146
|
-
} & {
|
|
147
|
-
readonly __address: true;
|
|
148
|
-
}>;
|
|
149
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
150
|
-
readonly __hex: true;
|
|
151
|
-
} & {
|
|
152
|
-
readonly __address: true;
|
|
153
|
-
}, Lowercase<string> & {
|
|
154
|
-
readonly __hex: true;
|
|
155
|
-
} & {
|
|
156
|
-
readonly __address: true;
|
|
157
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
158
|
-
}, z.core.$strip>>;
|
|
159
|
-
modules: z.ZodOptional<z.ZodObject<{
|
|
160
|
-
private: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
161
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
162
|
-
description: z.ZodOptional<z.ZodString>;
|
|
163
|
-
config: z.ZodObject<{
|
|
164
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
165
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
166
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
167
|
-
language: z.ZodOptional<z.ZodString>;
|
|
168
|
-
name: z.ZodString;
|
|
169
|
-
os: z.ZodOptional<z.ZodString>;
|
|
170
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
171
|
-
}, z.core.$loose>;
|
|
172
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
173
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
174
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
175
|
-
readonly __hex: true;
|
|
176
|
-
} & {
|
|
177
|
-
readonly __address: true;
|
|
178
|
-
}, Lowercase<string> & {
|
|
179
|
-
readonly __hex: true;
|
|
180
|
-
} & {
|
|
181
|
-
readonly __address: true;
|
|
182
|
-
}>;
|
|
183
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
184
|
-
readonly __hex: true;
|
|
185
|
-
} & {
|
|
186
|
-
readonly __address: true;
|
|
187
|
-
}, Lowercase<string> & {
|
|
188
|
-
readonly __hex: true;
|
|
189
|
-
} & {
|
|
190
|
-
readonly __address: true;
|
|
191
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
192
|
-
}, z.core.$strip>>;
|
|
193
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
194
|
-
__moduleAlias: true;
|
|
195
|
-
}>, Brand<string, {
|
|
196
|
-
__moduleAlias: true;
|
|
197
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
198
|
-
__moduleAlias: true;
|
|
199
|
-
}>, Brand<string, {
|
|
200
|
-
__moduleAlias: true;
|
|
201
|
-
}>>>]>>>;
|
|
202
|
-
public: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
203
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
204
|
-
description: z.ZodOptional<z.ZodString>;
|
|
205
|
-
config: z.ZodObject<{
|
|
206
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
207
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
208
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
209
|
-
language: z.ZodOptional<z.ZodString>;
|
|
210
|
-
name: z.ZodString;
|
|
211
|
-
os: z.ZodOptional<z.ZodString>;
|
|
212
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
213
|
-
}, z.core.$loose>;
|
|
214
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
216
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
217
|
-
readonly __hex: true;
|
|
218
|
-
} & {
|
|
219
|
-
readonly __address: true;
|
|
220
|
-
}, Lowercase<string> & {
|
|
221
|
-
readonly __hex: true;
|
|
222
|
-
} & {
|
|
223
|
-
readonly __address: true;
|
|
224
|
-
}>;
|
|
225
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
226
|
-
readonly __hex: true;
|
|
227
|
-
} & {
|
|
228
|
-
readonly __address: true;
|
|
229
|
-
}, Lowercase<string> & {
|
|
230
|
-
readonly __hex: true;
|
|
231
|
-
} & {
|
|
232
|
-
readonly __address: true;
|
|
233
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
234
|
-
}, z.core.$strip>>;
|
|
235
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
236
|
-
__moduleAlias: true;
|
|
237
|
-
}>, Brand<string, {
|
|
238
|
-
__moduleAlias: true;
|
|
239
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
240
|
-
__moduleAlias: true;
|
|
241
|
-
}>, Brand<string, {
|
|
242
|
-
__moduleAlias: true;
|
|
243
|
-
}>>>]>>>;
|
|
244
|
-
}, z.core.$strip>>;
|
|
245
|
-
}, z.core.$strip>;
|
|
246
|
-
export declare const PackageManifestZod: z.ZodObject<{
|
|
247
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
248
|
-
description: z.ZodOptional<z.ZodString>;
|
|
249
|
-
modules: z.ZodOptional<z.ZodRecord<z.ZodType<Brand<string, {
|
|
250
|
-
__moduleAlias: true;
|
|
251
|
-
}>, Brand<string, {
|
|
252
|
-
__moduleAlias: true;
|
|
253
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
254
|
-
__moduleAlias: true;
|
|
255
|
-
}>, Brand<string, {
|
|
256
|
-
__moduleAlias: true;
|
|
257
|
-
}>>>, z.ZodObject<{
|
|
258
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
259
|
-
description: z.ZodOptional<z.ZodString>;
|
|
260
|
-
config: z.ZodObject<{
|
|
261
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
262
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
263
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
264
|
-
language: z.ZodOptional<z.ZodString>;
|
|
265
|
-
name: z.ZodString;
|
|
266
|
-
os: z.ZodOptional<z.ZodString>;
|
|
267
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
268
|
-
}, z.core.$loose>;
|
|
269
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
270
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
271
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
272
|
-
readonly __hex: true;
|
|
273
|
-
} & {
|
|
274
|
-
readonly __address: true;
|
|
275
|
-
}, Lowercase<string> & {
|
|
276
|
-
readonly __hex: true;
|
|
277
|
-
} & {
|
|
278
|
-
readonly __address: true;
|
|
279
|
-
}>;
|
|
280
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
281
|
-
readonly __hex: true;
|
|
282
|
-
} & {
|
|
283
|
-
readonly __address: true;
|
|
284
|
-
}, Lowercase<string> & {
|
|
285
|
-
readonly __hex: true;
|
|
286
|
-
} & {
|
|
287
|
-
readonly __address: true;
|
|
288
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
289
|
-
}, z.core.$strip>>;
|
|
290
|
-
}, z.core.$strip>>>;
|
|
291
|
-
nodes: z.ZodArray<z.ZodObject<{
|
|
292
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
293
|
-
description: z.ZodOptional<z.ZodString>;
|
|
294
|
-
config: z.ZodObject<{
|
|
295
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
296
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
297
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
298
|
-
language: z.ZodOptional<z.ZodString>;
|
|
299
|
-
name: z.ZodString;
|
|
300
|
-
os: z.ZodOptional<z.ZodString>;
|
|
301
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
302
|
-
}, z.core.$loose>;
|
|
303
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
304
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
305
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
306
|
-
readonly __hex: true;
|
|
307
|
-
} & {
|
|
308
|
-
readonly __address: true;
|
|
309
|
-
}, Lowercase<string> & {
|
|
310
|
-
readonly __hex: true;
|
|
311
|
-
} & {
|
|
312
|
-
readonly __address: true;
|
|
313
|
-
}>;
|
|
314
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
315
|
-
readonly __hex: true;
|
|
316
|
-
} & {
|
|
317
|
-
readonly __address: true;
|
|
318
|
-
}, Lowercase<string> & {
|
|
319
|
-
readonly __hex: true;
|
|
320
|
-
} & {
|
|
321
|
-
readonly __address: true;
|
|
322
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
323
|
-
}, z.core.$strip>>;
|
|
324
|
-
modules: z.ZodOptional<z.ZodObject<{
|
|
325
|
-
private: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
326
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
327
|
-
description: z.ZodOptional<z.ZodString>;
|
|
328
|
-
config: z.ZodObject<{
|
|
329
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
330
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
331
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
332
|
-
language: z.ZodOptional<z.ZodString>;
|
|
333
|
-
name: z.ZodString;
|
|
334
|
-
os: z.ZodOptional<z.ZodString>;
|
|
335
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
336
|
-
}, z.core.$loose>;
|
|
337
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
338
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
339
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
340
|
-
readonly __hex: true;
|
|
341
|
-
} & {
|
|
342
|
-
readonly __address: true;
|
|
343
|
-
}, Lowercase<string> & {
|
|
344
|
-
readonly __hex: true;
|
|
345
|
-
} & {
|
|
346
|
-
readonly __address: true;
|
|
347
|
-
}>;
|
|
348
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
349
|
-
readonly __hex: true;
|
|
350
|
-
} & {
|
|
351
|
-
readonly __address: true;
|
|
352
|
-
}, Lowercase<string> & {
|
|
353
|
-
readonly __hex: true;
|
|
354
|
-
} & {
|
|
355
|
-
readonly __address: true;
|
|
356
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
357
|
-
}, z.core.$strip>>;
|
|
358
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
359
|
-
__moduleAlias: true;
|
|
360
|
-
}>, Brand<string, {
|
|
361
|
-
__moduleAlias: true;
|
|
362
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
363
|
-
__moduleAlias: true;
|
|
364
|
-
}>, Brand<string, {
|
|
365
|
-
__moduleAlias: true;
|
|
366
|
-
}>>>]>>>;
|
|
367
|
-
public: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
368
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
369
|
-
description: z.ZodOptional<z.ZodString>;
|
|
370
|
-
config: z.ZodObject<{
|
|
371
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
372
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
373
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
374
|
-
language: z.ZodOptional<z.ZodString>;
|
|
375
|
-
name: z.ZodString;
|
|
376
|
-
os: z.ZodOptional<z.ZodString>;
|
|
377
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
378
|
-
}, z.core.$loose>;
|
|
379
|
-
lazyStart: z.ZodOptional<z.ZodBoolean>;
|
|
380
|
-
status: z.ZodOptional<z.ZodObject<{
|
|
381
|
-
address: z.ZodCustom<Lowercase<string> & {
|
|
382
|
-
readonly __hex: true;
|
|
383
|
-
} & {
|
|
384
|
-
readonly __address: true;
|
|
385
|
-
}, Lowercase<string> & {
|
|
386
|
-
readonly __hex: true;
|
|
387
|
-
} & {
|
|
388
|
-
readonly __address: true;
|
|
389
|
-
}>;
|
|
390
|
-
children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
|
|
391
|
-
readonly __hex: true;
|
|
392
|
-
} & {
|
|
393
|
-
readonly __address: true;
|
|
394
|
-
}, Lowercase<string> & {
|
|
395
|
-
readonly __hex: true;
|
|
396
|
-
} & {
|
|
397
|
-
readonly __address: true;
|
|
398
|
-
}>, z.ZodNullable<z.ZodString>>>;
|
|
399
|
-
}, z.core.$strip>>;
|
|
400
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
401
|
-
__moduleAlias: true;
|
|
402
|
-
}>, Brand<string, {
|
|
403
|
-
__moduleAlias: true;
|
|
404
|
-
}>, z.core.$ZodTypeInternals<Brand<string, {
|
|
405
|
-
__moduleAlias: true;
|
|
406
|
-
}>, Brand<string, {
|
|
407
|
-
__moduleAlias: true;
|
|
408
|
-
}>>>]>>>;
|
|
409
|
-
}, z.core.$strip>>;
|
|
410
|
-
}, z.core.$strip>>;
|
|
411
|
-
}, z.core.$strip>;
|
|
412
|
-
export declare const AuthoredModuleManifestZod: z.ZodObject<{
|
|
413
|
-
config: z.ZodObject<{
|
|
414
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
415
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
416
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
417
|
-
language: z.ZodOptional<z.ZodString>;
|
|
418
|
-
name: z.ZodString;
|
|
419
|
-
os: z.ZodOptional<z.ZodString>;
|
|
420
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
421
|
-
}, z.core.$loose>;
|
|
422
|
-
description: z.ZodOptional<z.ZodString>;
|
|
423
|
-
}, z.core.$strict>;
|
|
424
|
-
export declare const AuthoredNodeManifestZod: z.ZodObject<{
|
|
425
|
-
config: z.ZodObject<{
|
|
426
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
427
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
428
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
429
|
-
language: z.ZodOptional<z.ZodString>;
|
|
430
|
-
name: z.ZodString;
|
|
431
|
-
os: z.ZodOptional<z.ZodString>;
|
|
432
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
433
|
-
}, z.core.$loose>;
|
|
434
|
-
description: z.ZodOptional<z.ZodString>;
|
|
435
|
-
modules: z.ZodOptional<z.ZodObject<{
|
|
436
|
-
private: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
437
|
-
config: z.ZodObject<{
|
|
438
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
439
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
440
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
441
|
-
language: z.ZodOptional<z.ZodString>;
|
|
442
|
-
name: z.ZodString;
|
|
443
|
-
os: z.ZodOptional<z.ZodString>;
|
|
444
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
445
|
-
}, z.core.$loose>;
|
|
446
|
-
description: z.ZodOptional<z.ZodString>;
|
|
447
|
-
}, z.core.$strict>>>;
|
|
448
|
-
public: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
449
|
-
config: z.ZodObject<{
|
|
450
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
451
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
452
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
453
|
-
language: z.ZodOptional<z.ZodString>;
|
|
454
|
-
name: z.ZodString;
|
|
455
|
-
os: z.ZodOptional<z.ZodString>;
|
|
456
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
457
|
-
}, z.core.$loose>;
|
|
458
|
-
description: z.ZodOptional<z.ZodString>;
|
|
459
|
-
}, z.core.$strict>>>;
|
|
460
|
-
}, z.core.$strict>>;
|
|
461
|
-
name: z.ZodOptional<z.ZodString>;
|
|
462
|
-
}, z.core.$strict>;
|
|
463
|
-
export declare const AuthoredPackageManifestZod: z.ZodObject<{
|
|
464
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
465
|
-
description: z.ZodOptional<z.ZodString>;
|
|
466
|
-
nodes: z.ZodArray<z.ZodObject<{
|
|
467
|
-
config: z.ZodObject<{
|
|
468
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
469
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
470
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
471
|
-
language: z.ZodOptional<z.ZodString>;
|
|
472
|
-
name: z.ZodString;
|
|
473
|
-
os: z.ZodOptional<z.ZodString>;
|
|
474
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
475
|
-
}, z.core.$loose>;
|
|
476
|
-
description: z.ZodOptional<z.ZodString>;
|
|
477
|
-
modules: z.ZodOptional<z.ZodObject<{
|
|
478
|
-
private: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
479
|
-
config: z.ZodObject<{
|
|
480
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
481
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
482
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
483
|
-
language: z.ZodOptional<z.ZodString>;
|
|
484
|
-
name: z.ZodString;
|
|
485
|
-
os: z.ZodOptional<z.ZodString>;
|
|
486
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
487
|
-
}, z.core.$loose>;
|
|
488
|
-
description: z.ZodOptional<z.ZodString>;
|
|
489
|
-
}, z.core.$strict>>>;
|
|
490
|
-
public: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
491
|
-
config: z.ZodObject<{
|
|
492
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
493
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
494
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
495
|
-
language: z.ZodOptional<z.ZodString>;
|
|
496
|
-
name: z.ZodString;
|
|
497
|
-
os: z.ZodOptional<z.ZodString>;
|
|
498
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
499
|
-
}, z.core.$loose>;
|
|
500
|
-
description: z.ZodOptional<z.ZodString>;
|
|
501
|
-
}, z.core.$strict>>>;
|
|
502
|
-
}, z.core.$strict>>;
|
|
503
|
-
name: z.ZodOptional<z.ZodString>;
|
|
504
|
-
}, z.core.$strict>>;
|
|
505
|
-
schema: z.ZodLiteral<"network.xyo.manifest">;
|
|
506
|
-
}, z.core.$strict>;
|
|
507
|
-
export declare const ExternalModuleRequestZod: z.ZodObject<{
|
|
508
|
-
name: z.ZodString;
|
|
509
|
-
}, z.core.$strict>;
|
|
510
|
-
export declare const ExternalManifestZod: z.ZodObject<{
|
|
511
|
-
modules: z.ZodArray<z.ZodObject<{
|
|
512
|
-
name: z.ZodString;
|
|
513
|
-
}, z.core.$strict>>;
|
|
514
|
-
}, z.core.$strict>;
|
|
515
|
-
export declare const AuthoredDappPackageManifestZod: z.ZodObject<{
|
|
516
|
-
$schema: z.ZodOptional<z.ZodString>;
|
|
517
|
-
description: z.ZodOptional<z.ZodString>;
|
|
518
|
-
external: z.ZodOptional<z.ZodObject<{
|
|
519
|
-
modules: z.ZodArray<z.ZodObject<{
|
|
520
|
-
name: z.ZodString;
|
|
521
|
-
}, z.core.$strict>>;
|
|
522
|
-
}, z.core.$strict>>;
|
|
523
|
-
nodes: z.ZodArray<z.ZodObject<{
|
|
524
|
-
config: z.ZodObject<{
|
|
525
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
526
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
527
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
528
|
-
language: z.ZodOptional<z.ZodString>;
|
|
529
|
-
name: z.ZodString;
|
|
530
|
-
os: z.ZodOptional<z.ZodString>;
|
|
531
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
532
|
-
}, z.core.$loose>;
|
|
533
|
-
description: z.ZodOptional<z.ZodString>;
|
|
534
|
-
modules: z.ZodOptional<z.ZodObject<{
|
|
535
|
-
private: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
536
|
-
config: z.ZodObject<{
|
|
537
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
538
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
539
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
540
|
-
language: z.ZodOptional<z.ZodString>;
|
|
541
|
-
name: z.ZodString;
|
|
542
|
-
os: z.ZodOptional<z.ZodString>;
|
|
543
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
544
|
-
}, z.core.$loose>;
|
|
545
|
-
description: z.ZodOptional<z.ZodString>;
|
|
546
|
-
}, z.core.$strict>>>;
|
|
547
|
-
public: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
548
|
-
config: z.ZodObject<{
|
|
549
|
-
accountPath: z.ZodOptional<z.ZodString>;
|
|
550
|
-
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
551
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
|
|
552
|
-
language: z.ZodOptional<z.ZodString>;
|
|
553
|
-
name: z.ZodString;
|
|
554
|
-
os: z.ZodOptional<z.ZodString>;
|
|
555
|
-
schema: z.ZodCustom<Schema, Schema>;
|
|
556
|
-
}, z.core.$loose>;
|
|
557
|
-
description: z.ZodOptional<z.ZodString>;
|
|
558
|
-
}, z.core.$strict>>>;
|
|
559
|
-
}, z.core.$strict>>;
|
|
560
|
-
name: z.ZodOptional<z.ZodString>;
|
|
561
|
-
}, z.core.$strict>>;
|
|
562
|
-
schema: z.ZodLiteral<"network.xyo.manifest.package.dapp">;
|
|
563
|
-
}, z.core.$strict>;
|
|
564
|
-
export type Manifest = z.infer<typeof ManifestZod>;
|
|
565
|
-
export type ConfigManifest = z.infer<typeof ConfigManifestZod>;
|
|
566
|
-
export type ModuleManifest = z.infer<typeof ModuleManifestZod>;
|
|
567
|
-
export type NodeManifest = z.infer<typeof NodeManifestZod>;
|
|
568
|
-
export type PackageManifest = z.infer<typeof PackageManifestZod>;
|
|
569
|
-
export type AuthoredModuleManifest = z.infer<typeof AuthoredModuleManifestZod>;
|
|
570
|
-
export type AuthoredNodeManifest = z.infer<typeof AuthoredNodeManifestZod>;
|
|
571
|
-
export type AuthoredPackageManifest = z.infer<typeof AuthoredPackageManifestZod>;
|
|
572
|
-
export type AuthoredDappPackageManifest = z.infer<typeof AuthoredDappPackageManifestZod>;
|
|
573
|
-
//# sourceMappingURL=ManifestZod.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ManifestZod.d.ts","sourceRoot":"","sources":["../../src/ManifestZod.ts"],"names":[],"mappings":"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"}
|