@xyo-network/manifest-model 5.6.2 → 6.0.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/neutral/Manifest.zod.d.ts +295 -295
- package/dist/neutral/Manifest.zod.d.ts.map +1 -1
- package/dist/neutral/Payload.zod.d.ts +143 -143
- package/dist/neutral/Payload.zod.d.ts.map +1 -1
- package/dist/neutral/index.mjs +48 -48
- package/dist/neutral/index.mjs.map +7 -1
- package/package.json +24 -21
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Brand } from '@xylabs/sdk-js';
|
|
2
2
|
import type { Schema } from '@xyo-network/payload-model';
|
|
3
|
-
import
|
|
4
|
-
export declare const asBrandedZod: <TBrand, TSchema extends z.ZodType<string>>(schema: TSchema) => z.ZodType<Brand<string, TBrand>, Brand<string, TBrand>>;
|
|
3
|
+
import * as z from 'zod/mini';
|
|
4
|
+
export declare const asBrandedZod: <TBrand, TSchema extends z.core.$ZodType<string>>(schema: TSchema) => z.core.$ZodType<Brand<string, TBrand>, Brand<string, TBrand>>;
|
|
5
5
|
export type ModuleAlias = Brand<string, {
|
|
6
6
|
__moduleAlias: true;
|
|
7
7
|
}>;
|
|
8
|
-
export declare const ModuleAliasZod: z.ZodType<Brand<string, {
|
|
8
|
+
export declare const ModuleAliasZod: z.core.$ZodType<Brand<string, {
|
|
9
9
|
__moduleAlias: true;
|
|
10
10
|
}>, Brand<string, {
|
|
11
11
|
__moduleAlias: true;
|
|
@@ -14,9 +14,9 @@ export declare const ModuleAliasZod: z.ZodType<Brand<string, {
|
|
|
14
14
|
}>, Brand<string, {
|
|
15
15
|
__moduleAlias: true;
|
|
16
16
|
}>>>;
|
|
17
|
-
export declare const ManifestZod: z.
|
|
18
|
-
$schema: z.
|
|
19
|
-
description: z.
|
|
17
|
+
export declare const ManifestZod: z.ZodMiniObject<{
|
|
18
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
19
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
export type Manifest = z.infer<typeof ManifestZod>;
|
|
22
22
|
export declare const isManifest: <T>(value: T) => value is T & {
|
|
@@ -43,14 +43,14 @@ export declare const toManifest: {
|
|
|
43
43
|
description?: string | undefined;
|
|
44
44
|
};
|
|
45
45
|
};
|
|
46
|
-
export declare const ConfigManifestZod: z.
|
|
47
|
-
accountPath: z.
|
|
48
|
-
features: z.
|
|
49
|
-
labels: z.
|
|
50
|
-
language: z.
|
|
51
|
-
name: z.
|
|
52
|
-
os: z.
|
|
53
|
-
schema: z.
|
|
46
|
+
export declare const ConfigManifestZod: z.ZodMiniObject<{
|
|
47
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
48
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
49
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
50
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
|
+
name: z.ZodMiniString<string>;
|
|
52
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
53
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
54
54
|
}, z.core.$loose>;
|
|
55
55
|
export type ConfigManifest = z.infer<typeof ConfigManifestZod>;
|
|
56
56
|
export declare const isConfigManifest: <T>(value: T) => value is T & {
|
|
@@ -107,8 +107,8 @@ export declare const toConfigManifest: {
|
|
|
107
107
|
os?: string | undefined;
|
|
108
108
|
};
|
|
109
109
|
};
|
|
110
|
-
export declare const ModuleManifestStatusZod: z.
|
|
111
|
-
address: z.
|
|
110
|
+
export declare const ModuleManifestStatusZod: z.ZodMiniObject<{
|
|
111
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
112
112
|
readonly __hex: true;
|
|
113
113
|
} & {
|
|
114
114
|
readonly __address: true;
|
|
@@ -117,7 +117,7 @@ export declare const ModuleManifestStatusZod: z.ZodObject<{
|
|
|
117
117
|
} & {
|
|
118
118
|
readonly __address: true;
|
|
119
119
|
}>;
|
|
120
|
-
children: z.
|
|
120
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
121
121
|
readonly __hex: true;
|
|
122
122
|
} & {
|
|
123
123
|
readonly __address: true;
|
|
@@ -125,23 +125,23 @@ export declare const ModuleManifestStatusZod: z.ZodObject<{
|
|
|
125
125
|
readonly __hex: true;
|
|
126
126
|
} & {
|
|
127
127
|
readonly __address: true;
|
|
128
|
-
}>, z.
|
|
128
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
129
129
|
}, z.core.$strip>;
|
|
130
|
-
export declare const ModuleManifestZod: z.
|
|
131
|
-
$schema: z.
|
|
132
|
-
description: z.
|
|
133
|
-
config: z.
|
|
134
|
-
accountPath: z.
|
|
135
|
-
features: z.
|
|
136
|
-
labels: z.
|
|
137
|
-
language: z.
|
|
138
|
-
name: z.
|
|
139
|
-
os: z.
|
|
140
|
-
schema: z.
|
|
130
|
+
export declare const ModuleManifestZod: z.ZodMiniObject<{
|
|
131
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
132
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
133
|
+
config: z.ZodMiniObject<{
|
|
134
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
135
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
136
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
137
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
138
|
+
name: z.ZodMiniString<string>;
|
|
139
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
140
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
141
141
|
}, z.core.$loose>;
|
|
142
|
-
lazyStart: z.
|
|
143
|
-
status: z.
|
|
144
|
-
address: z.
|
|
142
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
143
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
144
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
145
145
|
readonly __hex: true;
|
|
146
146
|
} & {
|
|
147
147
|
readonly __address: true;
|
|
@@ -150,7 +150,7 @@ export declare const ModuleManifestZod: z.ZodObject<{
|
|
|
150
150
|
} & {
|
|
151
151
|
readonly __address: true;
|
|
152
152
|
}>;
|
|
153
|
-
children: z.
|
|
153
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
154
154
|
readonly __hex: true;
|
|
155
155
|
} & {
|
|
156
156
|
readonly __address: true;
|
|
@@ -158,7 +158,7 @@ export declare const ModuleManifestZod: z.ZodObject<{
|
|
|
158
158
|
readonly __hex: true;
|
|
159
159
|
} & {
|
|
160
160
|
readonly __address: true;
|
|
161
|
-
}>, z.
|
|
161
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
162
162
|
}, z.core.$strip>>;
|
|
163
163
|
}, z.core.$strip>;
|
|
164
164
|
export type ModuleManifest = z.infer<typeof ModuleManifestZod>;
|
|
@@ -301,21 +301,21 @@ export declare const toModuleManifest: {
|
|
|
301
301
|
} | undefined;
|
|
302
302
|
};
|
|
303
303
|
};
|
|
304
|
-
export declare const ModuleManifestReferenceZod: z.
|
|
305
|
-
$schema: z.
|
|
306
|
-
description: z.
|
|
307
|
-
config: z.
|
|
308
|
-
accountPath: z.
|
|
309
|
-
features: z.
|
|
310
|
-
labels: z.
|
|
311
|
-
language: z.
|
|
312
|
-
name: z.
|
|
313
|
-
os: z.
|
|
314
|
-
schema: z.
|
|
304
|
+
export declare const ModuleManifestReferenceZod: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
305
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
306
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
307
|
+
config: z.ZodMiniObject<{
|
|
308
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
309
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
310
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
311
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
312
|
+
name: z.ZodMiniString<string>;
|
|
313
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
314
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
315
315
|
}, z.core.$loose>;
|
|
316
|
-
lazyStart: z.
|
|
317
|
-
status: z.
|
|
318
|
-
address: z.
|
|
316
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
317
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
318
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
319
319
|
readonly __hex: true;
|
|
320
320
|
} & {
|
|
321
321
|
readonly __address: true;
|
|
@@ -324,7 +324,7 @@ export declare const ModuleManifestReferenceZod: z.ZodUnion<readonly [z.ZodObjec
|
|
|
324
324
|
} & {
|
|
325
325
|
readonly __address: true;
|
|
326
326
|
}>;
|
|
327
|
-
children: z.
|
|
327
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
328
328
|
readonly __hex: true;
|
|
329
329
|
} & {
|
|
330
330
|
readonly __address: true;
|
|
@@ -332,9 +332,9 @@ export declare const ModuleManifestReferenceZod: z.ZodUnion<readonly [z.ZodObjec
|
|
|
332
332
|
readonly __hex: true;
|
|
333
333
|
} & {
|
|
334
334
|
readonly __address: true;
|
|
335
|
-
}>, z.
|
|
335
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
336
336
|
}, z.core.$strip>>;
|
|
337
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
337
|
+
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
338
338
|
__moduleAlias: true;
|
|
339
339
|
}>, Brand<string, {
|
|
340
340
|
__moduleAlias: true;
|
|
@@ -343,21 +343,21 @@ export declare const ModuleManifestReferenceZod: z.ZodUnion<readonly [z.ZodObjec
|
|
|
343
343
|
}>, Brand<string, {
|
|
344
344
|
__moduleAlias: true;
|
|
345
345
|
}>>>]>;
|
|
346
|
-
export declare const NodeManifestZod: z.
|
|
347
|
-
$schema: z.
|
|
348
|
-
description: z.
|
|
349
|
-
config: z.
|
|
350
|
-
accountPath: z.
|
|
351
|
-
features: z.
|
|
352
|
-
labels: z.
|
|
353
|
-
language: z.
|
|
354
|
-
name: z.
|
|
355
|
-
os: z.
|
|
356
|
-
schema: z.
|
|
346
|
+
export declare const NodeManifestZod: z.ZodMiniObject<{
|
|
347
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
348
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
349
|
+
config: z.ZodMiniObject<{
|
|
350
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
351
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
352
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
353
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
354
|
+
name: z.ZodMiniString<string>;
|
|
355
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
356
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
357
357
|
}, z.core.$loose>;
|
|
358
|
-
lazyStart: z.
|
|
359
|
-
status: z.
|
|
360
|
-
address: z.
|
|
358
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
359
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
360
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
361
361
|
readonly __hex: true;
|
|
362
362
|
} & {
|
|
363
363
|
readonly __address: true;
|
|
@@ -366,7 +366,7 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
366
366
|
} & {
|
|
367
367
|
readonly __address: true;
|
|
368
368
|
}>;
|
|
369
|
-
children: z.
|
|
369
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
370
370
|
readonly __hex: true;
|
|
371
371
|
} & {
|
|
372
372
|
readonly __address: true;
|
|
@@ -374,24 +374,24 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
374
374
|
readonly __hex: true;
|
|
375
375
|
} & {
|
|
376
376
|
readonly __address: true;
|
|
377
|
-
}>, z.
|
|
377
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
378
378
|
}, z.core.$strip>>;
|
|
379
|
-
modules: z.
|
|
380
|
-
private: z.
|
|
381
|
-
$schema: z.
|
|
382
|
-
description: z.
|
|
383
|
-
config: z.
|
|
384
|
-
accountPath: z.
|
|
385
|
-
features: z.
|
|
386
|
-
labels: z.
|
|
387
|
-
language: z.
|
|
388
|
-
name: z.
|
|
389
|
-
os: z.
|
|
390
|
-
schema: z.
|
|
379
|
+
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
380
|
+
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
381
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
382
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
383
|
+
config: z.ZodMiniObject<{
|
|
384
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
385
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
386
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
387
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
388
|
+
name: z.ZodMiniString<string>;
|
|
389
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
390
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
391
391
|
}, z.core.$loose>;
|
|
392
|
-
lazyStart: z.
|
|
393
|
-
status: z.
|
|
394
|
-
address: z.
|
|
392
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
393
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
394
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
395
395
|
readonly __hex: true;
|
|
396
396
|
} & {
|
|
397
397
|
readonly __address: true;
|
|
@@ -400,7 +400,7 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
400
400
|
} & {
|
|
401
401
|
readonly __address: true;
|
|
402
402
|
}>;
|
|
403
|
-
children: z.
|
|
403
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
404
404
|
readonly __hex: true;
|
|
405
405
|
} & {
|
|
406
406
|
readonly __address: true;
|
|
@@ -408,9 +408,9 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
408
408
|
readonly __hex: true;
|
|
409
409
|
} & {
|
|
410
410
|
readonly __address: true;
|
|
411
|
-
}>, z.
|
|
411
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
412
412
|
}, z.core.$strip>>;
|
|
413
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
413
|
+
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
414
414
|
__moduleAlias: true;
|
|
415
415
|
}>, Brand<string, {
|
|
416
416
|
__moduleAlias: true;
|
|
@@ -419,21 +419,21 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
419
419
|
}>, Brand<string, {
|
|
420
420
|
__moduleAlias: true;
|
|
421
421
|
}>>>]>>>;
|
|
422
|
-
public: z.
|
|
423
|
-
$schema: z.
|
|
424
|
-
description: z.
|
|
425
|
-
config: z.
|
|
426
|
-
accountPath: z.
|
|
427
|
-
features: z.
|
|
428
|
-
labels: z.
|
|
429
|
-
language: z.
|
|
430
|
-
name: z.
|
|
431
|
-
os: z.
|
|
432
|
-
schema: z.
|
|
422
|
+
public: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
423
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
424
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
425
|
+
config: z.ZodMiniObject<{
|
|
426
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
427
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
428
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
429
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
430
|
+
name: z.ZodMiniString<string>;
|
|
431
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
432
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
433
433
|
}, z.core.$loose>;
|
|
434
|
-
lazyStart: z.
|
|
435
|
-
status: z.
|
|
436
|
-
address: z.
|
|
434
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
435
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
436
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
437
437
|
readonly __hex: true;
|
|
438
438
|
} & {
|
|
439
439
|
readonly __address: true;
|
|
@@ -442,7 +442,7 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
442
442
|
} & {
|
|
443
443
|
readonly __address: true;
|
|
444
444
|
}>;
|
|
445
|
-
children: z.
|
|
445
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
446
446
|
readonly __hex: true;
|
|
447
447
|
} & {
|
|
448
448
|
readonly __address: true;
|
|
@@ -450,9 +450,9 @@ export declare const NodeManifestZod: z.ZodObject<{
|
|
|
450
450
|
readonly __hex: true;
|
|
451
451
|
} & {
|
|
452
452
|
readonly __address: true;
|
|
453
|
-
}>, z.
|
|
453
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
454
454
|
}, z.core.$strip>>;
|
|
455
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
455
|
+
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
456
456
|
__moduleAlias: true;
|
|
457
457
|
}>, Brand<string, {
|
|
458
458
|
__moduleAlias: true;
|
|
@@ -903,10 +903,10 @@ export declare const toNodeManifest: {
|
|
|
903
903
|
} | undefined;
|
|
904
904
|
};
|
|
905
905
|
};
|
|
906
|
-
export declare const PackageManifestZod: z.
|
|
907
|
-
$schema: z.
|
|
908
|
-
description: z.
|
|
909
|
-
modules: z.
|
|
906
|
+
export declare const PackageManifestZod: z.ZodMiniObject<{
|
|
907
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
908
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
909
|
+
modules: z.ZodMiniOptional<z.ZodMiniRecord<z.core.$ZodType<Brand<string, {
|
|
910
910
|
__moduleAlias: true;
|
|
911
911
|
}>, Brand<string, {
|
|
912
912
|
__moduleAlias: true;
|
|
@@ -914,21 +914,21 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
914
914
|
__moduleAlias: true;
|
|
915
915
|
}>, Brand<string, {
|
|
916
916
|
__moduleAlias: true;
|
|
917
|
-
}>>>, z.
|
|
918
|
-
$schema: z.
|
|
919
|
-
description: z.
|
|
920
|
-
config: z.
|
|
921
|
-
accountPath: z.
|
|
922
|
-
features: z.
|
|
923
|
-
labels: z.
|
|
924
|
-
language: z.
|
|
925
|
-
name: z.
|
|
926
|
-
os: z.
|
|
927
|
-
schema: z.
|
|
917
|
+
}>>>, z.ZodMiniObject<{
|
|
918
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
919
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
920
|
+
config: z.ZodMiniObject<{
|
|
921
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
922
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
923
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
924
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
925
|
+
name: z.ZodMiniString<string>;
|
|
926
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
927
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
928
928
|
}, z.core.$loose>;
|
|
929
|
-
lazyStart: z.
|
|
930
|
-
status: z.
|
|
931
|
-
address: z.
|
|
929
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
930
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
931
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
932
932
|
readonly __hex: true;
|
|
933
933
|
} & {
|
|
934
934
|
readonly __address: true;
|
|
@@ -937,7 +937,7 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
937
937
|
} & {
|
|
938
938
|
readonly __address: true;
|
|
939
939
|
}>;
|
|
940
|
-
children: z.
|
|
940
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
941
941
|
readonly __hex: true;
|
|
942
942
|
} & {
|
|
943
943
|
readonly __address: true;
|
|
@@ -945,24 +945,24 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
945
945
|
readonly __hex: true;
|
|
946
946
|
} & {
|
|
947
947
|
readonly __address: true;
|
|
948
|
-
}>, z.
|
|
948
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
949
949
|
}, z.core.$strip>>;
|
|
950
950
|
}, z.core.$strip>>>;
|
|
951
|
-
nodes: z.
|
|
952
|
-
$schema: z.
|
|
953
|
-
description: z.
|
|
954
|
-
config: z.
|
|
955
|
-
accountPath: z.
|
|
956
|
-
features: z.
|
|
957
|
-
labels: z.
|
|
958
|
-
language: z.
|
|
959
|
-
name: z.
|
|
960
|
-
os: z.
|
|
961
|
-
schema: z.
|
|
951
|
+
nodes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
952
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
953
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
954
|
+
config: z.ZodMiniObject<{
|
|
955
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
956
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
957
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
958
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
959
|
+
name: z.ZodMiniString<string>;
|
|
960
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
961
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
962
962
|
}, z.core.$loose>;
|
|
963
|
-
lazyStart: z.
|
|
964
|
-
status: z.
|
|
965
|
-
address: z.
|
|
963
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
964
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
965
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
966
966
|
readonly __hex: true;
|
|
967
967
|
} & {
|
|
968
968
|
readonly __address: true;
|
|
@@ -971,7 +971,7 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
971
971
|
} & {
|
|
972
972
|
readonly __address: true;
|
|
973
973
|
}>;
|
|
974
|
-
children: z.
|
|
974
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
975
975
|
readonly __hex: true;
|
|
976
976
|
} & {
|
|
977
977
|
readonly __address: true;
|
|
@@ -979,24 +979,24 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
979
979
|
readonly __hex: true;
|
|
980
980
|
} & {
|
|
981
981
|
readonly __address: true;
|
|
982
|
-
}>, z.
|
|
982
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
983
983
|
}, z.core.$strip>>;
|
|
984
|
-
modules: z.
|
|
985
|
-
private: z.
|
|
986
|
-
$schema: z.
|
|
987
|
-
description: z.
|
|
988
|
-
config: z.
|
|
989
|
-
accountPath: z.
|
|
990
|
-
features: z.
|
|
991
|
-
labels: z.
|
|
992
|
-
language: z.
|
|
993
|
-
name: z.
|
|
994
|
-
os: z.
|
|
995
|
-
schema: z.
|
|
984
|
+
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
985
|
+
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
986
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
987
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
988
|
+
config: z.ZodMiniObject<{
|
|
989
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
990
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
991
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
992
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
993
|
+
name: z.ZodMiniString<string>;
|
|
994
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
995
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
996
996
|
}, z.core.$loose>;
|
|
997
|
-
lazyStart: z.
|
|
998
|
-
status: z.
|
|
999
|
-
address: z.
|
|
997
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
998
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
999
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
1000
1000
|
readonly __hex: true;
|
|
1001
1001
|
} & {
|
|
1002
1002
|
readonly __address: true;
|
|
@@ -1005,7 +1005,7 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
1005
1005
|
} & {
|
|
1006
1006
|
readonly __address: true;
|
|
1007
1007
|
}>;
|
|
1008
|
-
children: z.
|
|
1008
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
1009
1009
|
readonly __hex: true;
|
|
1010
1010
|
} & {
|
|
1011
1011
|
readonly __address: true;
|
|
@@ -1013,9 +1013,9 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
1013
1013
|
readonly __hex: true;
|
|
1014
1014
|
} & {
|
|
1015
1015
|
readonly __address: true;
|
|
1016
|
-
}>, z.
|
|
1016
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1017
1017
|
}, z.core.$strip>>;
|
|
1018
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
1018
|
+
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
1019
1019
|
__moduleAlias: true;
|
|
1020
1020
|
}>, Brand<string, {
|
|
1021
1021
|
__moduleAlias: true;
|
|
@@ -1024,21 +1024,21 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
1024
1024
|
}>, Brand<string, {
|
|
1025
1025
|
__moduleAlias: true;
|
|
1026
1026
|
}>>>]>>>;
|
|
1027
|
-
public: z.
|
|
1028
|
-
$schema: z.
|
|
1029
|
-
description: z.
|
|
1030
|
-
config: z.
|
|
1031
|
-
accountPath: z.
|
|
1032
|
-
features: z.
|
|
1033
|
-
labels: z.
|
|
1034
|
-
language: z.
|
|
1035
|
-
name: z.
|
|
1036
|
-
os: z.
|
|
1037
|
-
schema: z.
|
|
1027
|
+
public: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1028
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1029
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1030
|
+
config: z.ZodMiniObject<{
|
|
1031
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1032
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1033
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
1034
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1035
|
+
name: z.ZodMiniString<string>;
|
|
1036
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1037
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
1038
1038
|
}, z.core.$loose>;
|
|
1039
|
-
lazyStart: z.
|
|
1040
|
-
status: z.
|
|
1041
|
-
address: z.
|
|
1039
|
+
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1040
|
+
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1041
|
+
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
1042
1042
|
readonly __hex: true;
|
|
1043
1043
|
} & {
|
|
1044
1044
|
readonly __address: true;
|
|
@@ -1047,7 +1047,7 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
1047
1047
|
} & {
|
|
1048
1048
|
readonly __address: true;
|
|
1049
1049
|
}>;
|
|
1050
|
-
children: z.
|
|
1050
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
1051
1051
|
readonly __hex: true;
|
|
1052
1052
|
} & {
|
|
1053
1053
|
readonly __address: true;
|
|
@@ -1055,9 +1055,9 @@ export declare const PackageManifestZod: z.ZodObject<{
|
|
|
1055
1055
|
readonly __hex: true;
|
|
1056
1056
|
} & {
|
|
1057
1057
|
readonly __address: true;
|
|
1058
|
-
}>, z.
|
|
1058
|
+
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1059
1059
|
}, z.core.$strip>>;
|
|
1060
|
-
}, z.core.$strip>, z.ZodType<Brand<string, {
|
|
1060
|
+
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
1061
1061
|
__moduleAlias: true;
|
|
1062
1062
|
}>, Brand<string, {
|
|
1063
1063
|
__moduleAlias: true;
|
|
@@ -1674,17 +1674,17 @@ export declare const toPackageManifest: {
|
|
|
1674
1674
|
}> | undefined;
|
|
1675
1675
|
};
|
|
1676
1676
|
};
|
|
1677
|
-
export declare const AuthoredModuleManifestZod: z.
|
|
1678
|
-
config: z.
|
|
1679
|
-
accountPath: z.
|
|
1680
|
-
features: z.
|
|
1681
|
-
labels: z.
|
|
1682
|
-
language: z.
|
|
1683
|
-
name: z.
|
|
1684
|
-
os: z.
|
|
1685
|
-
schema: z.
|
|
1677
|
+
export declare const AuthoredModuleManifestZod: z.ZodMiniObject<{
|
|
1678
|
+
config: z.ZodMiniObject<{
|
|
1679
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1680
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1681
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
1682
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1683
|
+
name: z.ZodMiniString<string>;
|
|
1684
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1685
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
1686
1686
|
}, z.core.$loose>;
|
|
1687
|
-
description: z.
|
|
1687
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1688
1688
|
}, z.core.$strict>;
|
|
1689
1689
|
export type AuthoredModuleManifest = z.infer<typeof AuthoredModuleManifestZod>;
|
|
1690
1690
|
export declare const isAuthoredModuleManifest: <T>(value: T) => value is T & {
|
|
@@ -1756,44 +1756,44 @@ export declare const toAuthoredModuleManifest: {
|
|
|
1756
1756
|
description?: string | undefined;
|
|
1757
1757
|
};
|
|
1758
1758
|
};
|
|
1759
|
-
export declare const AuthoredNodeManifestZod: z.
|
|
1760
|
-
config: z.
|
|
1761
|
-
accountPath: z.
|
|
1762
|
-
features: z.
|
|
1763
|
-
labels: z.
|
|
1764
|
-
language: z.
|
|
1765
|
-
name: z.
|
|
1766
|
-
os: z.
|
|
1767
|
-
schema: z.
|
|
1759
|
+
export declare const AuthoredNodeManifestZod: z.ZodMiniObject<{
|
|
1760
|
+
config: z.ZodMiniObject<{
|
|
1761
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1762
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1763
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
1764
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1765
|
+
name: z.ZodMiniString<string>;
|
|
1766
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1767
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
1768
1768
|
}, z.core.$loose>;
|
|
1769
|
-
description: z.
|
|
1770
|
-
modules: z.
|
|
1771
|
-
private: z.
|
|
1772
|
-
config: z.
|
|
1773
|
-
accountPath: z.
|
|
1774
|
-
features: z.
|
|
1775
|
-
labels: z.
|
|
1776
|
-
language: z.
|
|
1777
|
-
name: z.
|
|
1778
|
-
os: z.
|
|
1779
|
-
schema: z.
|
|
1769
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1770
|
+
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1771
|
+
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1772
|
+
config: z.ZodMiniObject<{
|
|
1773
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1774
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1775
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
1776
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1777
|
+
name: z.ZodMiniString<string>;
|
|
1778
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1779
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
1780
1780
|
}, z.core.$loose>;
|
|
1781
|
-
description: z.
|
|
1781
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1782
1782
|
}, z.core.$strict>>>;
|
|
1783
|
-
public: z.
|
|
1784
|
-
config: z.
|
|
1785
|
-
accountPath: z.
|
|
1786
|
-
features: z.
|
|
1787
|
-
labels: z.
|
|
1788
|
-
language: z.
|
|
1789
|
-
name: z.
|
|
1790
|
-
os: z.
|
|
1791
|
-
schema: z.
|
|
1783
|
+
public: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1784
|
+
config: z.ZodMiniObject<{
|
|
1785
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1786
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1787
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
1788
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1789
|
+
name: z.ZodMiniString<string>;
|
|
1790
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1791
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
1792
1792
|
}, z.core.$loose>;
|
|
1793
|
-
description: z.
|
|
1793
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1794
1794
|
}, z.core.$strict>>>;
|
|
1795
1795
|
}, z.core.$strict>>;
|
|
1796
|
-
name: z.
|
|
1796
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1797
1797
|
}, z.core.$strict>;
|
|
1798
1798
|
export type AuthoredNodeManifest = z.infer<typeof AuthoredNodeManifestZod>;
|
|
1799
1799
|
export declare const isAuthoredNodeManifest: <T>(value: T) => value is T & {
|
|
@@ -2010,49 +2010,49 @@ export declare const toAuthoredNodeManifest: {
|
|
|
2010
2010
|
name?: string | undefined;
|
|
2011
2011
|
};
|
|
2012
2012
|
};
|
|
2013
|
-
export declare const AuthoredPackageManifestZod: z.
|
|
2014
|
-
$schema: z.
|
|
2015
|
-
description: z.
|
|
2016
|
-
nodes: z.
|
|
2017
|
-
config: z.
|
|
2018
|
-
accountPath: z.
|
|
2019
|
-
features: z.
|
|
2020
|
-
labels: z.
|
|
2021
|
-
language: z.
|
|
2022
|
-
name: z.
|
|
2023
|
-
os: z.
|
|
2024
|
-
schema: z.
|
|
2013
|
+
export declare const AuthoredPackageManifestZod: z.ZodMiniObject<{
|
|
2014
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2015
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2016
|
+
nodes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2017
|
+
config: z.ZodMiniObject<{
|
|
2018
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2019
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2020
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2021
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2022
|
+
name: z.ZodMiniString<string>;
|
|
2023
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2024
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2025
2025
|
}, z.core.$loose>;
|
|
2026
|
-
description: z.
|
|
2027
|
-
modules: z.
|
|
2028
|
-
private: z.
|
|
2029
|
-
config: z.
|
|
2030
|
-
accountPath: z.
|
|
2031
|
-
features: z.
|
|
2032
|
-
labels: z.
|
|
2033
|
-
language: z.
|
|
2034
|
-
name: z.
|
|
2035
|
-
os: z.
|
|
2036
|
-
schema: z.
|
|
2026
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2027
|
+
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2028
|
+
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2029
|
+
config: z.ZodMiniObject<{
|
|
2030
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2031
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2032
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2033
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2034
|
+
name: z.ZodMiniString<string>;
|
|
2035
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2036
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2037
2037
|
}, z.core.$loose>;
|
|
2038
|
-
description: z.
|
|
2038
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2039
2039
|
}, z.core.$strict>>>;
|
|
2040
|
-
public: z.
|
|
2041
|
-
config: z.
|
|
2042
|
-
accountPath: z.
|
|
2043
|
-
features: z.
|
|
2044
|
-
labels: z.
|
|
2045
|
-
language: z.
|
|
2046
|
-
name: z.
|
|
2047
|
-
os: z.
|
|
2048
|
-
schema: z.
|
|
2040
|
+
public: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2041
|
+
config: z.ZodMiniObject<{
|
|
2042
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2043
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2044
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2045
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2046
|
+
name: z.ZodMiniString<string>;
|
|
2047
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2048
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2049
2049
|
}, z.core.$loose>;
|
|
2050
|
-
description: z.
|
|
2050
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2051
2051
|
}, z.core.$strict>>>;
|
|
2052
2052
|
}, z.core.$strict>>;
|
|
2053
|
-
name: z.
|
|
2053
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2054
2054
|
}, z.core.$strict>>;
|
|
2055
|
-
schema: z.
|
|
2055
|
+
schema: z.ZodMiniLiteral<"network.xyo.manifest">;
|
|
2056
2056
|
}, z.core.$strict>;
|
|
2057
2057
|
export type AuthoredPackageManifest = z.infer<typeof AuthoredPackageManifestZod>;
|
|
2058
2058
|
export declare const isAuthoredPackageManifest: <T>(value: T) => value is T & {
|
|
@@ -2294,62 +2294,62 @@ export declare const toAuthoredPackageManifest: {
|
|
|
2294
2294
|
description?: string | undefined;
|
|
2295
2295
|
};
|
|
2296
2296
|
};
|
|
2297
|
-
export declare const ExternalModuleRequestZod: z.
|
|
2298
|
-
name: z.
|
|
2297
|
+
export declare const ExternalModuleRequestZod: z.ZodMiniObject<{
|
|
2298
|
+
name: z.ZodMiniString<string>;
|
|
2299
2299
|
}, z.core.$strict>;
|
|
2300
|
-
export declare const ExternalManifestZod: z.
|
|
2301
|
-
modules: z.
|
|
2302
|
-
name: z.
|
|
2300
|
+
export declare const ExternalManifestZod: z.ZodMiniObject<{
|
|
2301
|
+
modules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2302
|
+
name: z.ZodMiniString<string>;
|
|
2303
2303
|
}, z.core.$strict>>;
|
|
2304
2304
|
}, z.core.$strict>;
|
|
2305
|
-
export declare const AuthoredDappPackageManifestZod: z.
|
|
2306
|
-
$schema: z.
|
|
2307
|
-
description: z.
|
|
2308
|
-
external: z.
|
|
2309
|
-
modules: z.
|
|
2310
|
-
name: z.
|
|
2305
|
+
export declare const AuthoredDappPackageManifestZod: z.ZodMiniObject<{
|
|
2306
|
+
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2307
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2308
|
+
external: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2309
|
+
modules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2310
|
+
name: z.ZodMiniString<string>;
|
|
2311
2311
|
}, z.core.$strict>>;
|
|
2312
2312
|
}, z.core.$strict>>;
|
|
2313
|
-
nodes: z.
|
|
2314
|
-
config: z.
|
|
2315
|
-
accountPath: z.
|
|
2316
|
-
features: z.
|
|
2317
|
-
labels: z.
|
|
2318
|
-
language: z.
|
|
2319
|
-
name: z.
|
|
2320
|
-
os: z.
|
|
2321
|
-
schema: z.
|
|
2313
|
+
nodes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
2314
|
+
config: z.ZodMiniObject<{
|
|
2315
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2316
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2317
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2318
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2319
|
+
name: z.ZodMiniString<string>;
|
|
2320
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2321
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2322
2322
|
}, z.core.$loose>;
|
|
2323
|
-
description: z.
|
|
2324
|
-
modules: z.
|
|
2325
|
-
private: z.
|
|
2326
|
-
config: z.
|
|
2327
|
-
accountPath: z.
|
|
2328
|
-
features: z.
|
|
2329
|
-
labels: z.
|
|
2330
|
-
language: z.
|
|
2331
|
-
name: z.
|
|
2332
|
-
os: z.
|
|
2333
|
-
schema: z.
|
|
2323
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2324
|
+
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2325
|
+
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2326
|
+
config: z.ZodMiniObject<{
|
|
2327
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2328
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2329
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2330
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2331
|
+
name: z.ZodMiniString<string>;
|
|
2332
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2333
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2334
2334
|
}, z.core.$loose>;
|
|
2335
|
-
description: z.
|
|
2335
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2336
2336
|
}, z.core.$strict>>>;
|
|
2337
|
-
public: z.
|
|
2338
|
-
config: z.
|
|
2339
|
-
accountPath: z.
|
|
2340
|
-
features: z.
|
|
2341
|
-
labels: z.
|
|
2342
|
-
language: z.
|
|
2343
|
-
name: z.
|
|
2344
|
-
os: z.
|
|
2345
|
-
schema: z.
|
|
2337
|
+
public: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2338
|
+
config: z.ZodMiniObject<{
|
|
2339
|
+
accountPath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2340
|
+
features: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
2341
|
+
labels: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
|
|
2342
|
+
language: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2343
|
+
name: z.ZodMiniString<string>;
|
|
2344
|
+
os: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2345
|
+
schema: z.ZodMiniCustom<Schema, Schema>;
|
|
2346
2346
|
}, z.core.$loose>;
|
|
2347
|
-
description: z.
|
|
2347
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2348
2348
|
}, z.core.$strict>>>;
|
|
2349
2349
|
}, z.core.$strict>>;
|
|
2350
|
-
name: z.
|
|
2350
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2351
2351
|
}, z.core.$strict>>;
|
|
2352
|
-
schema: z.
|
|
2352
|
+
schema: z.ZodMiniLiteral<"network.xyo.manifest.package.dapp">;
|
|
2353
2353
|
}, z.core.$strict>;
|
|
2354
2354
|
export type AuthoredDappPackageManifest = z.infer<typeof AuthoredDappPackageManifestZod>;
|
|
2355
2355
|
export declare const isAuthoredDappPackageManifest: <T>(value: T) => value is T & {
|