@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.
@@ -1,2 +1,2619 @@
1
- export * from './ManifestZod.ts';
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 ModuleAliasZod: 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 type Manifest = z.infer<typeof ManifestZod>;
22
+ export declare const isManifest: <T>(value: T) => value is T & {
23
+ $schema?: string | undefined;
24
+ description?: string | undefined;
25
+ };
26
+ export declare const asManifest: {
27
+ <T>(value: T): (T & {
28
+ $schema?: string | undefined;
29
+ description?: string | undefined;
30
+ }) | undefined;
31
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
32
+ $schema?: string | undefined;
33
+ description?: string | undefined;
34
+ };
35
+ };
36
+ export declare const toManifest: {
37
+ <T>(value: T): (T & {
38
+ $schema?: string | undefined;
39
+ description?: string | undefined;
40
+ }) | undefined;
41
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
42
+ $schema?: string | undefined;
43
+ description?: string | undefined;
44
+ };
45
+ };
46
+ export declare const ConfigManifestZod: z.ZodObject<{
47
+ accountPath: z.ZodOptional<z.ZodString>;
48
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
49
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
50
+ language: z.ZodOptional<z.ZodString>;
51
+ name: z.ZodString;
52
+ os: z.ZodOptional<z.ZodString>;
53
+ schema: z.ZodCustom<Schema, Schema>;
54
+ }, z.core.$loose>;
55
+ export type ConfigManifest = z.infer<typeof ConfigManifestZod>;
56
+ export declare const isConfigManifest: <T>(value: T) => value is T & {
57
+ [x: string]: unknown;
58
+ name: string;
59
+ schema: Schema;
60
+ accountPath?: string | undefined;
61
+ features?: string[] | undefined;
62
+ labels?: Record<string, string | undefined> | undefined;
63
+ language?: string | undefined;
64
+ os?: string | undefined;
65
+ };
66
+ export declare const asConfigManifest: {
67
+ <T>(value: T): (T & {
68
+ [x: string]: unknown;
69
+ name: string;
70
+ schema: Schema;
71
+ accountPath?: string | undefined;
72
+ features?: string[] | undefined;
73
+ labels?: Record<string, string | undefined> | undefined;
74
+ language?: string | undefined;
75
+ os?: string | undefined;
76
+ }) | undefined;
77
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
78
+ [x: string]: unknown;
79
+ name: string;
80
+ schema: Schema;
81
+ accountPath?: string | undefined;
82
+ features?: string[] | undefined;
83
+ labels?: Record<string, string | undefined> | undefined;
84
+ language?: string | undefined;
85
+ os?: string | undefined;
86
+ };
87
+ };
88
+ export declare const toConfigManifest: {
89
+ <T>(value: T): (T & {
90
+ [x: string]: unknown;
91
+ name: string;
92
+ schema: Schema;
93
+ accountPath?: string | undefined;
94
+ features?: string[] | undefined;
95
+ labels?: Record<string, string | undefined> | undefined;
96
+ language?: string | undefined;
97
+ os?: string | undefined;
98
+ }) | undefined;
99
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
100
+ [x: string]: unknown;
101
+ name: string;
102
+ schema: Schema;
103
+ accountPath?: string | undefined;
104
+ features?: string[] | undefined;
105
+ labels?: Record<string, string | undefined> | undefined;
106
+ language?: string | undefined;
107
+ os?: string | undefined;
108
+ };
109
+ };
110
+ export declare const ModuleManifestStatusZod: z.ZodObject<{
111
+ address: z.ZodCustom<Lowercase<string> & {
112
+ readonly __hex: true;
113
+ } & {
114
+ readonly __address: true;
115
+ }, Lowercase<string> & {
116
+ readonly __hex: true;
117
+ } & {
118
+ readonly __address: true;
119
+ }>;
120
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
121
+ readonly __hex: true;
122
+ } & {
123
+ readonly __address: true;
124
+ }, Lowercase<string> & {
125
+ readonly __hex: true;
126
+ } & {
127
+ readonly __address: true;
128
+ }>, z.ZodNullable<z.ZodString>>>;
129
+ }, z.core.$strip>;
130
+ export declare const ModuleManifestZod: z.ZodObject<{
131
+ $schema: z.ZodOptional<z.ZodString>;
132
+ description: z.ZodOptional<z.ZodString>;
133
+ config: z.ZodObject<{
134
+ accountPath: z.ZodOptional<z.ZodString>;
135
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
136
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
137
+ language: z.ZodOptional<z.ZodString>;
138
+ name: z.ZodString;
139
+ os: z.ZodOptional<z.ZodString>;
140
+ schema: z.ZodCustom<Schema, Schema>;
141
+ }, z.core.$loose>;
142
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
143
+ status: z.ZodOptional<z.ZodObject<{
144
+ address: z.ZodCustom<Lowercase<string> & {
145
+ readonly __hex: true;
146
+ } & {
147
+ readonly __address: true;
148
+ }, Lowercase<string> & {
149
+ readonly __hex: true;
150
+ } & {
151
+ readonly __address: true;
152
+ }>;
153
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
154
+ readonly __hex: true;
155
+ } & {
156
+ readonly __address: true;
157
+ }, Lowercase<string> & {
158
+ readonly __hex: true;
159
+ } & {
160
+ readonly __address: true;
161
+ }>, z.ZodNullable<z.ZodString>>>;
162
+ }, z.core.$strip>>;
163
+ }, z.core.$strip>;
164
+ export type ModuleManifest = z.infer<typeof ModuleManifestZod>;
165
+ export declare const isModuleManifest: <T>(value: T) => value is T & {
166
+ config: {
167
+ [x: string]: unknown;
168
+ name: string;
169
+ schema: Schema;
170
+ accountPath?: string | undefined;
171
+ features?: string[] | undefined;
172
+ labels?: Record<string, string | undefined> | undefined;
173
+ language?: string | undefined;
174
+ os?: string | undefined;
175
+ };
176
+ $schema?: string | undefined;
177
+ description?: string | undefined;
178
+ lazyStart?: boolean | undefined;
179
+ status?: {
180
+ address: Lowercase<string> & {
181
+ readonly __hex: true;
182
+ } & {
183
+ readonly __address: true;
184
+ };
185
+ children?: Record<Lowercase<string> & {
186
+ readonly __hex: true;
187
+ } & {
188
+ readonly __address: true;
189
+ }, string | null> | undefined;
190
+ } | undefined;
191
+ };
192
+ export declare const asModuleManifest: {
193
+ <T>(value: T): (T & {
194
+ config: {
195
+ [x: string]: unknown;
196
+ name: string;
197
+ schema: Schema;
198
+ accountPath?: string | undefined;
199
+ features?: string[] | undefined;
200
+ labels?: Record<string, string | undefined> | undefined;
201
+ language?: string | undefined;
202
+ os?: string | undefined;
203
+ };
204
+ $schema?: string | undefined;
205
+ description?: string | undefined;
206
+ lazyStart?: boolean | undefined;
207
+ status?: {
208
+ address: Lowercase<string> & {
209
+ readonly __hex: true;
210
+ } & {
211
+ readonly __address: true;
212
+ };
213
+ children?: Record<Lowercase<string> & {
214
+ readonly __hex: true;
215
+ } & {
216
+ readonly __address: true;
217
+ }, string | null> | undefined;
218
+ } | undefined;
219
+ }) | undefined;
220
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
221
+ config: {
222
+ [x: string]: unknown;
223
+ name: string;
224
+ schema: Schema;
225
+ accountPath?: string | undefined;
226
+ features?: string[] | undefined;
227
+ labels?: Record<string, string | undefined> | undefined;
228
+ language?: string | undefined;
229
+ os?: string | undefined;
230
+ };
231
+ $schema?: string | undefined;
232
+ description?: string | undefined;
233
+ lazyStart?: boolean | undefined;
234
+ status?: {
235
+ address: Lowercase<string> & {
236
+ readonly __hex: true;
237
+ } & {
238
+ readonly __address: true;
239
+ };
240
+ children?: Record<Lowercase<string> & {
241
+ readonly __hex: true;
242
+ } & {
243
+ readonly __address: true;
244
+ }, string | null> | undefined;
245
+ } | undefined;
246
+ };
247
+ };
248
+ export declare const toModuleManifest: {
249
+ <T>(value: T): (T & {
250
+ config: {
251
+ [x: string]: unknown;
252
+ name: string;
253
+ schema: Schema;
254
+ accountPath?: string | undefined;
255
+ features?: string[] | undefined;
256
+ labels?: Record<string, string | undefined> | undefined;
257
+ language?: string | undefined;
258
+ os?: string | undefined;
259
+ };
260
+ $schema?: string | undefined;
261
+ description?: string | undefined;
262
+ lazyStart?: boolean | undefined;
263
+ status?: {
264
+ address: Lowercase<string> & {
265
+ readonly __hex: true;
266
+ } & {
267
+ readonly __address: true;
268
+ };
269
+ children?: Record<Lowercase<string> & {
270
+ readonly __hex: true;
271
+ } & {
272
+ readonly __address: true;
273
+ }, string | null> | undefined;
274
+ } | undefined;
275
+ }) | undefined;
276
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
277
+ config: {
278
+ [x: string]: unknown;
279
+ name: string;
280
+ schema: Schema;
281
+ accountPath?: string | undefined;
282
+ features?: string[] | undefined;
283
+ labels?: Record<string, string | undefined> | undefined;
284
+ language?: string | undefined;
285
+ os?: string | undefined;
286
+ };
287
+ $schema?: string | undefined;
288
+ description?: string | undefined;
289
+ lazyStart?: boolean | undefined;
290
+ status?: {
291
+ address: Lowercase<string> & {
292
+ readonly __hex: true;
293
+ } & {
294
+ readonly __address: true;
295
+ };
296
+ children?: Record<Lowercase<string> & {
297
+ readonly __hex: true;
298
+ } & {
299
+ readonly __address: true;
300
+ }, string | null> | undefined;
301
+ } | undefined;
302
+ };
303
+ };
304
+ export declare const ModuleManifestReferenceZod: z.ZodUnion<readonly [z.ZodObject<{
305
+ $schema: z.ZodOptional<z.ZodString>;
306
+ description: z.ZodOptional<z.ZodString>;
307
+ config: z.ZodObject<{
308
+ accountPath: z.ZodOptional<z.ZodString>;
309
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
310
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
311
+ language: z.ZodOptional<z.ZodString>;
312
+ name: z.ZodString;
313
+ os: z.ZodOptional<z.ZodString>;
314
+ schema: z.ZodCustom<Schema, Schema>;
315
+ }, z.core.$loose>;
316
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
317
+ status: z.ZodOptional<z.ZodObject<{
318
+ address: z.ZodCustom<Lowercase<string> & {
319
+ readonly __hex: true;
320
+ } & {
321
+ readonly __address: true;
322
+ }, Lowercase<string> & {
323
+ readonly __hex: true;
324
+ } & {
325
+ readonly __address: true;
326
+ }>;
327
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
328
+ readonly __hex: true;
329
+ } & {
330
+ readonly __address: true;
331
+ }, Lowercase<string> & {
332
+ readonly __hex: true;
333
+ } & {
334
+ readonly __address: true;
335
+ }>, z.ZodNullable<z.ZodString>>>;
336
+ }, z.core.$strip>>;
337
+ }, z.core.$strip>, z.ZodType<Brand<string, {
338
+ __moduleAlias: true;
339
+ }>, Brand<string, {
340
+ __moduleAlias: true;
341
+ }>, z.core.$ZodTypeInternals<Brand<string, {
342
+ __moduleAlias: true;
343
+ }>, Brand<string, {
344
+ __moduleAlias: true;
345
+ }>>>]>;
346
+ export declare const NodeManifestZod: z.ZodObject<{
347
+ $schema: z.ZodOptional<z.ZodString>;
348
+ description: z.ZodOptional<z.ZodString>;
349
+ config: z.ZodObject<{
350
+ accountPath: z.ZodOptional<z.ZodString>;
351
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
352
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
353
+ language: z.ZodOptional<z.ZodString>;
354
+ name: z.ZodString;
355
+ os: z.ZodOptional<z.ZodString>;
356
+ schema: z.ZodCustom<Schema, Schema>;
357
+ }, z.core.$loose>;
358
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
359
+ status: z.ZodOptional<z.ZodObject<{
360
+ address: z.ZodCustom<Lowercase<string> & {
361
+ readonly __hex: true;
362
+ } & {
363
+ readonly __address: true;
364
+ }, Lowercase<string> & {
365
+ readonly __hex: true;
366
+ } & {
367
+ readonly __address: true;
368
+ }>;
369
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
370
+ readonly __hex: true;
371
+ } & {
372
+ readonly __address: true;
373
+ }, Lowercase<string> & {
374
+ readonly __hex: true;
375
+ } & {
376
+ readonly __address: true;
377
+ }>, z.ZodNullable<z.ZodString>>>;
378
+ }, z.core.$strip>>;
379
+ modules: z.ZodOptional<z.ZodObject<{
380
+ private: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
381
+ $schema: z.ZodOptional<z.ZodString>;
382
+ description: z.ZodOptional<z.ZodString>;
383
+ config: z.ZodObject<{
384
+ accountPath: z.ZodOptional<z.ZodString>;
385
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
386
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
387
+ language: z.ZodOptional<z.ZodString>;
388
+ name: z.ZodString;
389
+ os: z.ZodOptional<z.ZodString>;
390
+ schema: z.ZodCustom<Schema, Schema>;
391
+ }, z.core.$loose>;
392
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
393
+ status: z.ZodOptional<z.ZodObject<{
394
+ address: z.ZodCustom<Lowercase<string> & {
395
+ readonly __hex: true;
396
+ } & {
397
+ readonly __address: true;
398
+ }, Lowercase<string> & {
399
+ readonly __hex: true;
400
+ } & {
401
+ readonly __address: true;
402
+ }>;
403
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
404
+ readonly __hex: true;
405
+ } & {
406
+ readonly __address: true;
407
+ }, Lowercase<string> & {
408
+ readonly __hex: true;
409
+ } & {
410
+ readonly __address: true;
411
+ }>, z.ZodNullable<z.ZodString>>>;
412
+ }, z.core.$strip>>;
413
+ }, z.core.$strip>, z.ZodType<Brand<string, {
414
+ __moduleAlias: true;
415
+ }>, Brand<string, {
416
+ __moduleAlias: true;
417
+ }>, z.core.$ZodTypeInternals<Brand<string, {
418
+ __moduleAlias: true;
419
+ }>, Brand<string, {
420
+ __moduleAlias: true;
421
+ }>>>]>>>;
422
+ public: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
423
+ $schema: z.ZodOptional<z.ZodString>;
424
+ description: z.ZodOptional<z.ZodString>;
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
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
435
+ status: z.ZodOptional<z.ZodObject<{
436
+ address: z.ZodCustom<Lowercase<string> & {
437
+ readonly __hex: true;
438
+ } & {
439
+ readonly __address: true;
440
+ }, Lowercase<string> & {
441
+ readonly __hex: true;
442
+ } & {
443
+ readonly __address: true;
444
+ }>;
445
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
446
+ readonly __hex: true;
447
+ } & {
448
+ readonly __address: true;
449
+ }, Lowercase<string> & {
450
+ readonly __hex: true;
451
+ } & {
452
+ readonly __address: true;
453
+ }>, z.ZodNullable<z.ZodString>>>;
454
+ }, z.core.$strip>>;
455
+ }, z.core.$strip>, z.ZodType<Brand<string, {
456
+ __moduleAlias: true;
457
+ }>, Brand<string, {
458
+ __moduleAlias: true;
459
+ }>, z.core.$ZodTypeInternals<Brand<string, {
460
+ __moduleAlias: true;
461
+ }>, Brand<string, {
462
+ __moduleAlias: true;
463
+ }>>>]>>>;
464
+ }, z.core.$strip>>;
465
+ }, z.core.$strip>;
466
+ export type NodeManifest = z.infer<typeof NodeManifestZod>;
467
+ export declare const isNodeManifest: <T>(value: T) => value is T & {
468
+ config: {
469
+ [x: string]: unknown;
470
+ name: string;
471
+ schema: Schema;
472
+ accountPath?: string | undefined;
473
+ features?: string[] | undefined;
474
+ labels?: Record<string, string | undefined> | undefined;
475
+ language?: string | undefined;
476
+ os?: string | undefined;
477
+ };
478
+ $schema?: string | undefined;
479
+ description?: string | undefined;
480
+ lazyStart?: boolean | undefined;
481
+ status?: {
482
+ address: Lowercase<string> & {
483
+ readonly __hex: true;
484
+ } & {
485
+ readonly __address: true;
486
+ };
487
+ children?: Record<Lowercase<string> & {
488
+ readonly __hex: true;
489
+ } & {
490
+ readonly __address: true;
491
+ }, string | null> | undefined;
492
+ } | undefined;
493
+ modules?: {
494
+ private?: (Brand<string, {
495
+ __moduleAlias: true;
496
+ }> | {
497
+ config: {
498
+ [x: string]: unknown;
499
+ name: string;
500
+ schema: Schema;
501
+ accountPath?: string | undefined;
502
+ features?: string[] | undefined;
503
+ labels?: Record<string, string | undefined> | undefined;
504
+ language?: string | undefined;
505
+ os?: string | undefined;
506
+ };
507
+ $schema?: string | undefined;
508
+ description?: string | undefined;
509
+ lazyStart?: boolean | undefined;
510
+ status?: {
511
+ address: Lowercase<string> & {
512
+ readonly __hex: true;
513
+ } & {
514
+ readonly __address: true;
515
+ };
516
+ children?: Record<Lowercase<string> & {
517
+ readonly __hex: true;
518
+ } & {
519
+ readonly __address: true;
520
+ }, string | null> | undefined;
521
+ } | undefined;
522
+ })[] | undefined;
523
+ public?: (Brand<string, {
524
+ __moduleAlias: true;
525
+ }> | {
526
+ config: {
527
+ [x: string]: unknown;
528
+ name: string;
529
+ schema: Schema;
530
+ accountPath?: string | undefined;
531
+ features?: string[] | undefined;
532
+ labels?: Record<string, string | undefined> | undefined;
533
+ language?: string | undefined;
534
+ os?: string | undefined;
535
+ };
536
+ $schema?: string | undefined;
537
+ description?: string | undefined;
538
+ lazyStart?: boolean | undefined;
539
+ status?: {
540
+ address: Lowercase<string> & {
541
+ readonly __hex: true;
542
+ } & {
543
+ readonly __address: true;
544
+ };
545
+ children?: Record<Lowercase<string> & {
546
+ readonly __hex: true;
547
+ } & {
548
+ readonly __address: true;
549
+ }, string | null> | undefined;
550
+ } | undefined;
551
+ })[] | undefined;
552
+ } | undefined;
553
+ };
554
+ export declare const asNodeManifest: {
555
+ <T>(value: T): (T & {
556
+ config: {
557
+ [x: string]: unknown;
558
+ name: string;
559
+ schema: Schema;
560
+ accountPath?: string | undefined;
561
+ features?: string[] | undefined;
562
+ labels?: Record<string, string | undefined> | undefined;
563
+ language?: string | undefined;
564
+ os?: string | undefined;
565
+ };
566
+ $schema?: string | undefined;
567
+ description?: string | undefined;
568
+ lazyStart?: boolean | undefined;
569
+ status?: {
570
+ address: Lowercase<string> & {
571
+ readonly __hex: true;
572
+ } & {
573
+ readonly __address: true;
574
+ };
575
+ children?: Record<Lowercase<string> & {
576
+ readonly __hex: true;
577
+ } & {
578
+ readonly __address: true;
579
+ }, string | null> | undefined;
580
+ } | undefined;
581
+ modules?: {
582
+ private?: (Brand<string, {
583
+ __moduleAlias: true;
584
+ }> | {
585
+ config: {
586
+ [x: string]: unknown;
587
+ name: string;
588
+ schema: Schema;
589
+ accountPath?: string | undefined;
590
+ features?: string[] | undefined;
591
+ labels?: Record<string, string | undefined> | undefined;
592
+ language?: string | undefined;
593
+ os?: string | undefined;
594
+ };
595
+ $schema?: string | undefined;
596
+ description?: string | undefined;
597
+ lazyStart?: boolean | undefined;
598
+ status?: {
599
+ address: Lowercase<string> & {
600
+ readonly __hex: true;
601
+ } & {
602
+ readonly __address: true;
603
+ };
604
+ children?: Record<Lowercase<string> & {
605
+ readonly __hex: true;
606
+ } & {
607
+ readonly __address: true;
608
+ }, string | null> | undefined;
609
+ } | undefined;
610
+ })[] | undefined;
611
+ public?: (Brand<string, {
612
+ __moduleAlias: true;
613
+ }> | {
614
+ config: {
615
+ [x: string]: unknown;
616
+ name: string;
617
+ schema: Schema;
618
+ accountPath?: string | undefined;
619
+ features?: string[] | undefined;
620
+ labels?: Record<string, string | undefined> | undefined;
621
+ language?: string | undefined;
622
+ os?: string | undefined;
623
+ };
624
+ $schema?: string | undefined;
625
+ description?: string | undefined;
626
+ lazyStart?: boolean | undefined;
627
+ status?: {
628
+ address: Lowercase<string> & {
629
+ readonly __hex: true;
630
+ } & {
631
+ readonly __address: true;
632
+ };
633
+ children?: Record<Lowercase<string> & {
634
+ readonly __hex: true;
635
+ } & {
636
+ readonly __address: true;
637
+ }, string | null> | undefined;
638
+ } | undefined;
639
+ })[] | undefined;
640
+ } | undefined;
641
+ }) | undefined;
642
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
643
+ config: {
644
+ [x: string]: unknown;
645
+ name: string;
646
+ schema: Schema;
647
+ accountPath?: string | undefined;
648
+ features?: string[] | undefined;
649
+ labels?: Record<string, string | undefined> | undefined;
650
+ language?: string | undefined;
651
+ os?: string | undefined;
652
+ };
653
+ $schema?: string | undefined;
654
+ description?: string | undefined;
655
+ lazyStart?: boolean | undefined;
656
+ status?: {
657
+ address: Lowercase<string> & {
658
+ readonly __hex: true;
659
+ } & {
660
+ readonly __address: true;
661
+ };
662
+ children?: Record<Lowercase<string> & {
663
+ readonly __hex: true;
664
+ } & {
665
+ readonly __address: true;
666
+ }, string | null> | undefined;
667
+ } | undefined;
668
+ modules?: {
669
+ private?: (Brand<string, {
670
+ __moduleAlias: true;
671
+ }> | {
672
+ config: {
673
+ [x: string]: unknown;
674
+ name: string;
675
+ schema: Schema;
676
+ accountPath?: string | undefined;
677
+ features?: string[] | undefined;
678
+ labels?: Record<string, string | undefined> | undefined;
679
+ language?: string | undefined;
680
+ os?: string | undefined;
681
+ };
682
+ $schema?: string | undefined;
683
+ description?: string | undefined;
684
+ lazyStart?: boolean | undefined;
685
+ status?: {
686
+ address: Lowercase<string> & {
687
+ readonly __hex: true;
688
+ } & {
689
+ readonly __address: true;
690
+ };
691
+ children?: Record<Lowercase<string> & {
692
+ readonly __hex: true;
693
+ } & {
694
+ readonly __address: true;
695
+ }, string | null> | undefined;
696
+ } | undefined;
697
+ })[] | undefined;
698
+ public?: (Brand<string, {
699
+ __moduleAlias: true;
700
+ }> | {
701
+ config: {
702
+ [x: string]: unknown;
703
+ name: string;
704
+ schema: Schema;
705
+ accountPath?: string | undefined;
706
+ features?: string[] | undefined;
707
+ labels?: Record<string, string | undefined> | undefined;
708
+ language?: string | undefined;
709
+ os?: string | undefined;
710
+ };
711
+ $schema?: string | undefined;
712
+ description?: string | undefined;
713
+ lazyStart?: boolean | undefined;
714
+ status?: {
715
+ address: Lowercase<string> & {
716
+ readonly __hex: true;
717
+ } & {
718
+ readonly __address: true;
719
+ };
720
+ children?: Record<Lowercase<string> & {
721
+ readonly __hex: true;
722
+ } & {
723
+ readonly __address: true;
724
+ }, string | null> | undefined;
725
+ } | undefined;
726
+ })[] | undefined;
727
+ } | undefined;
728
+ };
729
+ };
730
+ export declare const toNodeManifest: {
731
+ <T>(value: T): (T & {
732
+ config: {
733
+ [x: string]: unknown;
734
+ name: string;
735
+ schema: Schema;
736
+ accountPath?: string | undefined;
737
+ features?: string[] | undefined;
738
+ labels?: Record<string, string | undefined> | undefined;
739
+ language?: string | undefined;
740
+ os?: string | undefined;
741
+ };
742
+ $schema?: string | undefined;
743
+ description?: string | undefined;
744
+ lazyStart?: boolean | undefined;
745
+ status?: {
746
+ address: Lowercase<string> & {
747
+ readonly __hex: true;
748
+ } & {
749
+ readonly __address: true;
750
+ };
751
+ children?: Record<Lowercase<string> & {
752
+ readonly __hex: true;
753
+ } & {
754
+ readonly __address: true;
755
+ }, string | null> | undefined;
756
+ } | undefined;
757
+ modules?: {
758
+ private?: (Brand<string, {
759
+ __moduleAlias: true;
760
+ }> | {
761
+ config: {
762
+ [x: string]: unknown;
763
+ name: string;
764
+ schema: Schema;
765
+ accountPath?: string | undefined;
766
+ features?: string[] | undefined;
767
+ labels?: Record<string, string | undefined> | undefined;
768
+ language?: string | undefined;
769
+ os?: string | undefined;
770
+ };
771
+ $schema?: string | undefined;
772
+ description?: string | undefined;
773
+ lazyStart?: boolean | undefined;
774
+ status?: {
775
+ address: Lowercase<string> & {
776
+ readonly __hex: true;
777
+ } & {
778
+ readonly __address: true;
779
+ };
780
+ children?: Record<Lowercase<string> & {
781
+ readonly __hex: true;
782
+ } & {
783
+ readonly __address: true;
784
+ }, string | null> | undefined;
785
+ } | undefined;
786
+ })[] | undefined;
787
+ public?: (Brand<string, {
788
+ __moduleAlias: true;
789
+ }> | {
790
+ config: {
791
+ [x: string]: unknown;
792
+ name: string;
793
+ schema: Schema;
794
+ accountPath?: string | undefined;
795
+ features?: string[] | undefined;
796
+ labels?: Record<string, string | undefined> | undefined;
797
+ language?: string | undefined;
798
+ os?: string | undefined;
799
+ };
800
+ $schema?: string | undefined;
801
+ description?: string | undefined;
802
+ lazyStart?: boolean | undefined;
803
+ status?: {
804
+ address: Lowercase<string> & {
805
+ readonly __hex: true;
806
+ } & {
807
+ readonly __address: true;
808
+ };
809
+ children?: Record<Lowercase<string> & {
810
+ readonly __hex: true;
811
+ } & {
812
+ readonly __address: true;
813
+ }, string | null> | undefined;
814
+ } | undefined;
815
+ })[] | undefined;
816
+ } | undefined;
817
+ }) | undefined;
818
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
819
+ config: {
820
+ [x: string]: unknown;
821
+ name: string;
822
+ schema: Schema;
823
+ accountPath?: string | undefined;
824
+ features?: string[] | undefined;
825
+ labels?: Record<string, string | undefined> | undefined;
826
+ language?: string | undefined;
827
+ os?: string | undefined;
828
+ };
829
+ $schema?: string | undefined;
830
+ description?: string | undefined;
831
+ lazyStart?: boolean | undefined;
832
+ status?: {
833
+ address: Lowercase<string> & {
834
+ readonly __hex: true;
835
+ } & {
836
+ readonly __address: true;
837
+ };
838
+ children?: Record<Lowercase<string> & {
839
+ readonly __hex: true;
840
+ } & {
841
+ readonly __address: true;
842
+ }, string | null> | undefined;
843
+ } | undefined;
844
+ modules?: {
845
+ private?: (Brand<string, {
846
+ __moduleAlias: true;
847
+ }> | {
848
+ config: {
849
+ [x: string]: unknown;
850
+ name: string;
851
+ schema: Schema;
852
+ accountPath?: string | undefined;
853
+ features?: string[] | undefined;
854
+ labels?: Record<string, string | undefined> | undefined;
855
+ language?: string | undefined;
856
+ os?: string | undefined;
857
+ };
858
+ $schema?: string | undefined;
859
+ description?: string | undefined;
860
+ lazyStart?: boolean | undefined;
861
+ status?: {
862
+ address: Lowercase<string> & {
863
+ readonly __hex: true;
864
+ } & {
865
+ readonly __address: true;
866
+ };
867
+ children?: Record<Lowercase<string> & {
868
+ readonly __hex: true;
869
+ } & {
870
+ readonly __address: true;
871
+ }, string | null> | undefined;
872
+ } | undefined;
873
+ })[] | undefined;
874
+ public?: (Brand<string, {
875
+ __moduleAlias: true;
876
+ }> | {
877
+ config: {
878
+ [x: string]: unknown;
879
+ name: string;
880
+ schema: Schema;
881
+ accountPath?: string | undefined;
882
+ features?: string[] | undefined;
883
+ labels?: Record<string, string | undefined> | undefined;
884
+ language?: string | undefined;
885
+ os?: string | undefined;
886
+ };
887
+ $schema?: string | undefined;
888
+ description?: string | undefined;
889
+ lazyStart?: boolean | undefined;
890
+ status?: {
891
+ address: Lowercase<string> & {
892
+ readonly __hex: true;
893
+ } & {
894
+ readonly __address: true;
895
+ };
896
+ children?: Record<Lowercase<string> & {
897
+ readonly __hex: true;
898
+ } & {
899
+ readonly __address: true;
900
+ }, string | null> | undefined;
901
+ } | undefined;
902
+ })[] | undefined;
903
+ } | undefined;
904
+ };
905
+ };
906
+ export declare const PackageManifestZod: z.ZodObject<{
907
+ $schema: z.ZodOptional<z.ZodString>;
908
+ description: z.ZodOptional<z.ZodString>;
909
+ modules: z.ZodOptional<z.ZodRecord<z.ZodType<Brand<string, {
910
+ __moduleAlias: true;
911
+ }>, Brand<string, {
912
+ __moduleAlias: true;
913
+ }>, z.core.$ZodTypeInternals<Brand<string, {
914
+ __moduleAlias: true;
915
+ }>, Brand<string, {
916
+ __moduleAlias: true;
917
+ }>>>, z.ZodObject<{
918
+ $schema: z.ZodOptional<z.ZodString>;
919
+ description: z.ZodOptional<z.ZodString>;
920
+ config: z.ZodObject<{
921
+ accountPath: z.ZodOptional<z.ZodString>;
922
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
923
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
924
+ language: z.ZodOptional<z.ZodString>;
925
+ name: z.ZodString;
926
+ os: z.ZodOptional<z.ZodString>;
927
+ schema: z.ZodCustom<Schema, Schema>;
928
+ }, z.core.$loose>;
929
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
930
+ status: z.ZodOptional<z.ZodObject<{
931
+ address: z.ZodCustom<Lowercase<string> & {
932
+ readonly __hex: true;
933
+ } & {
934
+ readonly __address: true;
935
+ }, Lowercase<string> & {
936
+ readonly __hex: true;
937
+ } & {
938
+ readonly __address: true;
939
+ }>;
940
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
941
+ readonly __hex: true;
942
+ } & {
943
+ readonly __address: true;
944
+ }, Lowercase<string> & {
945
+ readonly __hex: true;
946
+ } & {
947
+ readonly __address: true;
948
+ }>, z.ZodNullable<z.ZodString>>>;
949
+ }, z.core.$strip>>;
950
+ }, z.core.$strip>>>;
951
+ nodes: z.ZodArray<z.ZodObject<{
952
+ $schema: z.ZodOptional<z.ZodString>;
953
+ description: z.ZodOptional<z.ZodString>;
954
+ config: z.ZodObject<{
955
+ accountPath: z.ZodOptional<z.ZodString>;
956
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
957
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
958
+ language: z.ZodOptional<z.ZodString>;
959
+ name: z.ZodString;
960
+ os: z.ZodOptional<z.ZodString>;
961
+ schema: z.ZodCustom<Schema, Schema>;
962
+ }, z.core.$loose>;
963
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
964
+ status: z.ZodOptional<z.ZodObject<{
965
+ address: z.ZodCustom<Lowercase<string> & {
966
+ readonly __hex: true;
967
+ } & {
968
+ readonly __address: true;
969
+ }, Lowercase<string> & {
970
+ readonly __hex: true;
971
+ } & {
972
+ readonly __address: true;
973
+ }>;
974
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
975
+ readonly __hex: true;
976
+ } & {
977
+ readonly __address: true;
978
+ }, Lowercase<string> & {
979
+ readonly __hex: true;
980
+ } & {
981
+ readonly __address: true;
982
+ }>, z.ZodNullable<z.ZodString>>>;
983
+ }, z.core.$strip>>;
984
+ modules: z.ZodOptional<z.ZodObject<{
985
+ private: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
986
+ $schema: z.ZodOptional<z.ZodString>;
987
+ description: z.ZodOptional<z.ZodString>;
988
+ config: z.ZodObject<{
989
+ accountPath: z.ZodOptional<z.ZodString>;
990
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
991
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
992
+ language: z.ZodOptional<z.ZodString>;
993
+ name: z.ZodString;
994
+ os: z.ZodOptional<z.ZodString>;
995
+ schema: z.ZodCustom<Schema, Schema>;
996
+ }, z.core.$loose>;
997
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
998
+ status: z.ZodOptional<z.ZodObject<{
999
+ address: z.ZodCustom<Lowercase<string> & {
1000
+ readonly __hex: true;
1001
+ } & {
1002
+ readonly __address: true;
1003
+ }, Lowercase<string> & {
1004
+ readonly __hex: true;
1005
+ } & {
1006
+ readonly __address: true;
1007
+ }>;
1008
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
1009
+ readonly __hex: true;
1010
+ } & {
1011
+ readonly __address: true;
1012
+ }, Lowercase<string> & {
1013
+ readonly __hex: true;
1014
+ } & {
1015
+ readonly __address: true;
1016
+ }>, z.ZodNullable<z.ZodString>>>;
1017
+ }, z.core.$strip>>;
1018
+ }, z.core.$strip>, z.ZodType<Brand<string, {
1019
+ __moduleAlias: true;
1020
+ }>, Brand<string, {
1021
+ __moduleAlias: true;
1022
+ }>, z.core.$ZodTypeInternals<Brand<string, {
1023
+ __moduleAlias: true;
1024
+ }>, Brand<string, {
1025
+ __moduleAlias: true;
1026
+ }>>>]>>>;
1027
+ public: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1028
+ $schema: z.ZodOptional<z.ZodString>;
1029
+ description: z.ZodOptional<z.ZodString>;
1030
+ config: z.ZodObject<{
1031
+ accountPath: z.ZodOptional<z.ZodString>;
1032
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
1033
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
1034
+ language: z.ZodOptional<z.ZodString>;
1035
+ name: z.ZodString;
1036
+ os: z.ZodOptional<z.ZodString>;
1037
+ schema: z.ZodCustom<Schema, Schema>;
1038
+ }, z.core.$loose>;
1039
+ lazyStart: z.ZodOptional<z.ZodBoolean>;
1040
+ status: z.ZodOptional<z.ZodObject<{
1041
+ address: z.ZodCustom<Lowercase<string> & {
1042
+ readonly __hex: true;
1043
+ } & {
1044
+ readonly __address: true;
1045
+ }, Lowercase<string> & {
1046
+ readonly __hex: true;
1047
+ } & {
1048
+ readonly __address: true;
1049
+ }>;
1050
+ children: z.ZodOptional<z.ZodRecord<z.ZodCustom<Lowercase<string> & {
1051
+ readonly __hex: true;
1052
+ } & {
1053
+ readonly __address: true;
1054
+ }, Lowercase<string> & {
1055
+ readonly __hex: true;
1056
+ } & {
1057
+ readonly __address: true;
1058
+ }>, z.ZodNullable<z.ZodString>>>;
1059
+ }, z.core.$strip>>;
1060
+ }, z.core.$strip>, z.ZodType<Brand<string, {
1061
+ __moduleAlias: true;
1062
+ }>, Brand<string, {
1063
+ __moduleAlias: true;
1064
+ }>, z.core.$ZodTypeInternals<Brand<string, {
1065
+ __moduleAlias: true;
1066
+ }>, Brand<string, {
1067
+ __moduleAlias: true;
1068
+ }>>>]>>>;
1069
+ }, z.core.$strip>>;
1070
+ }, z.core.$strip>>;
1071
+ }, z.core.$strip>;
1072
+ export type PackageManifest = z.infer<typeof PackageManifestZod>;
1073
+ export declare const isPackageManifest: <T>(value: T) => value is T & {
1074
+ nodes: {
1075
+ config: {
1076
+ [x: string]: unknown;
1077
+ name: string;
1078
+ schema: Schema;
1079
+ accountPath?: string | undefined;
1080
+ features?: string[] | undefined;
1081
+ labels?: Record<string, string | undefined> | undefined;
1082
+ language?: string | undefined;
1083
+ os?: string | undefined;
1084
+ };
1085
+ $schema?: string | undefined;
1086
+ description?: string | undefined;
1087
+ lazyStart?: boolean | undefined;
1088
+ status?: {
1089
+ address: Lowercase<string> & {
1090
+ readonly __hex: true;
1091
+ } & {
1092
+ readonly __address: true;
1093
+ };
1094
+ children?: Record<Lowercase<string> & {
1095
+ readonly __hex: true;
1096
+ } & {
1097
+ readonly __address: true;
1098
+ }, string | null> | undefined;
1099
+ } | undefined;
1100
+ modules?: {
1101
+ private?: (Brand<string, {
1102
+ __moduleAlias: true;
1103
+ }> | {
1104
+ config: {
1105
+ [x: string]: unknown;
1106
+ name: string;
1107
+ schema: Schema;
1108
+ accountPath?: string | undefined;
1109
+ features?: string[] | undefined;
1110
+ labels?: Record<string, string | undefined> | undefined;
1111
+ language?: string | undefined;
1112
+ os?: string | undefined;
1113
+ };
1114
+ $schema?: string | undefined;
1115
+ description?: string | undefined;
1116
+ lazyStart?: boolean | undefined;
1117
+ status?: {
1118
+ address: Lowercase<string> & {
1119
+ readonly __hex: true;
1120
+ } & {
1121
+ readonly __address: true;
1122
+ };
1123
+ children?: Record<Lowercase<string> & {
1124
+ readonly __hex: true;
1125
+ } & {
1126
+ readonly __address: true;
1127
+ }, string | null> | undefined;
1128
+ } | undefined;
1129
+ })[] | undefined;
1130
+ public?: (Brand<string, {
1131
+ __moduleAlias: true;
1132
+ }> | {
1133
+ config: {
1134
+ [x: string]: unknown;
1135
+ name: string;
1136
+ schema: Schema;
1137
+ accountPath?: string | undefined;
1138
+ features?: string[] | undefined;
1139
+ labels?: Record<string, string | undefined> | undefined;
1140
+ language?: string | undefined;
1141
+ os?: string | undefined;
1142
+ };
1143
+ $schema?: string | undefined;
1144
+ description?: string | undefined;
1145
+ lazyStart?: boolean | undefined;
1146
+ status?: {
1147
+ address: Lowercase<string> & {
1148
+ readonly __hex: true;
1149
+ } & {
1150
+ readonly __address: true;
1151
+ };
1152
+ children?: Record<Lowercase<string> & {
1153
+ readonly __hex: true;
1154
+ } & {
1155
+ readonly __address: true;
1156
+ }, string | null> | undefined;
1157
+ } | undefined;
1158
+ })[] | undefined;
1159
+ } | undefined;
1160
+ }[];
1161
+ $schema?: string | undefined;
1162
+ description?: string | undefined;
1163
+ modules?: Record<Brand<string, {
1164
+ __moduleAlias: true;
1165
+ }>, {
1166
+ config: {
1167
+ [x: string]: unknown;
1168
+ name: string;
1169
+ schema: Schema;
1170
+ accountPath?: string | undefined;
1171
+ features?: string[] | undefined;
1172
+ labels?: Record<string, string | undefined> | undefined;
1173
+ language?: string | undefined;
1174
+ os?: string | undefined;
1175
+ };
1176
+ $schema?: string | undefined;
1177
+ description?: string | undefined;
1178
+ lazyStart?: boolean | undefined;
1179
+ status?: {
1180
+ address: Lowercase<string> & {
1181
+ readonly __hex: true;
1182
+ } & {
1183
+ readonly __address: true;
1184
+ };
1185
+ children?: Record<Lowercase<string> & {
1186
+ readonly __hex: true;
1187
+ } & {
1188
+ readonly __address: true;
1189
+ }, string | null> | undefined;
1190
+ } | undefined;
1191
+ }> | undefined;
1192
+ };
1193
+ export declare const asPackageManifest: {
1194
+ <T>(value: T): (T & {
1195
+ nodes: {
1196
+ config: {
1197
+ [x: string]: unknown;
1198
+ name: string;
1199
+ schema: Schema;
1200
+ accountPath?: string | undefined;
1201
+ features?: string[] | undefined;
1202
+ labels?: Record<string, string | undefined> | undefined;
1203
+ language?: string | undefined;
1204
+ os?: string | undefined;
1205
+ };
1206
+ $schema?: string | undefined;
1207
+ description?: string | undefined;
1208
+ lazyStart?: boolean | undefined;
1209
+ status?: {
1210
+ address: Lowercase<string> & {
1211
+ readonly __hex: true;
1212
+ } & {
1213
+ readonly __address: true;
1214
+ };
1215
+ children?: Record<Lowercase<string> & {
1216
+ readonly __hex: true;
1217
+ } & {
1218
+ readonly __address: true;
1219
+ }, string | null> | undefined;
1220
+ } | undefined;
1221
+ modules?: {
1222
+ private?: (Brand<string, {
1223
+ __moduleAlias: true;
1224
+ }> | {
1225
+ config: {
1226
+ [x: string]: unknown;
1227
+ name: string;
1228
+ schema: Schema;
1229
+ accountPath?: string | undefined;
1230
+ features?: string[] | undefined;
1231
+ labels?: Record<string, string | undefined> | undefined;
1232
+ language?: string | undefined;
1233
+ os?: string | undefined;
1234
+ };
1235
+ $schema?: string | undefined;
1236
+ description?: string | undefined;
1237
+ lazyStart?: boolean | undefined;
1238
+ status?: {
1239
+ address: Lowercase<string> & {
1240
+ readonly __hex: true;
1241
+ } & {
1242
+ readonly __address: true;
1243
+ };
1244
+ children?: Record<Lowercase<string> & {
1245
+ readonly __hex: true;
1246
+ } & {
1247
+ readonly __address: true;
1248
+ }, string | null> | undefined;
1249
+ } | undefined;
1250
+ })[] | undefined;
1251
+ public?: (Brand<string, {
1252
+ __moduleAlias: true;
1253
+ }> | {
1254
+ config: {
1255
+ [x: string]: unknown;
1256
+ name: string;
1257
+ schema: Schema;
1258
+ accountPath?: string | undefined;
1259
+ features?: string[] | undefined;
1260
+ labels?: Record<string, string | undefined> | undefined;
1261
+ language?: string | undefined;
1262
+ os?: string | undefined;
1263
+ };
1264
+ $schema?: string | undefined;
1265
+ description?: string | undefined;
1266
+ lazyStart?: boolean | undefined;
1267
+ status?: {
1268
+ address: Lowercase<string> & {
1269
+ readonly __hex: true;
1270
+ } & {
1271
+ readonly __address: true;
1272
+ };
1273
+ children?: Record<Lowercase<string> & {
1274
+ readonly __hex: true;
1275
+ } & {
1276
+ readonly __address: true;
1277
+ }, string | null> | undefined;
1278
+ } | undefined;
1279
+ })[] | undefined;
1280
+ } | undefined;
1281
+ }[];
1282
+ $schema?: string | undefined;
1283
+ description?: string | undefined;
1284
+ modules?: Record<Brand<string, {
1285
+ __moduleAlias: true;
1286
+ }>, {
1287
+ config: {
1288
+ [x: string]: unknown;
1289
+ name: string;
1290
+ schema: Schema;
1291
+ accountPath?: string | undefined;
1292
+ features?: string[] | undefined;
1293
+ labels?: Record<string, string | undefined> | undefined;
1294
+ language?: string | undefined;
1295
+ os?: string | undefined;
1296
+ };
1297
+ $schema?: string | undefined;
1298
+ description?: string | undefined;
1299
+ lazyStart?: boolean | undefined;
1300
+ status?: {
1301
+ address: Lowercase<string> & {
1302
+ readonly __hex: true;
1303
+ } & {
1304
+ readonly __address: true;
1305
+ };
1306
+ children?: Record<Lowercase<string> & {
1307
+ readonly __hex: true;
1308
+ } & {
1309
+ readonly __address: true;
1310
+ }, string | null> | undefined;
1311
+ } | undefined;
1312
+ }> | undefined;
1313
+ }) | undefined;
1314
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1315
+ nodes: {
1316
+ config: {
1317
+ [x: string]: unknown;
1318
+ name: string;
1319
+ schema: Schema;
1320
+ accountPath?: string | undefined;
1321
+ features?: string[] | undefined;
1322
+ labels?: Record<string, string | undefined> | undefined;
1323
+ language?: string | undefined;
1324
+ os?: string | undefined;
1325
+ };
1326
+ $schema?: string | undefined;
1327
+ description?: string | undefined;
1328
+ lazyStart?: boolean | undefined;
1329
+ status?: {
1330
+ address: Lowercase<string> & {
1331
+ readonly __hex: true;
1332
+ } & {
1333
+ readonly __address: true;
1334
+ };
1335
+ children?: Record<Lowercase<string> & {
1336
+ readonly __hex: true;
1337
+ } & {
1338
+ readonly __address: true;
1339
+ }, string | null> | undefined;
1340
+ } | undefined;
1341
+ modules?: {
1342
+ private?: (Brand<string, {
1343
+ __moduleAlias: true;
1344
+ }> | {
1345
+ config: {
1346
+ [x: string]: unknown;
1347
+ name: string;
1348
+ schema: Schema;
1349
+ accountPath?: string | undefined;
1350
+ features?: string[] | undefined;
1351
+ labels?: Record<string, string | undefined> | undefined;
1352
+ language?: string | undefined;
1353
+ os?: string | undefined;
1354
+ };
1355
+ $schema?: string | undefined;
1356
+ description?: string | undefined;
1357
+ lazyStart?: boolean | undefined;
1358
+ status?: {
1359
+ address: Lowercase<string> & {
1360
+ readonly __hex: true;
1361
+ } & {
1362
+ readonly __address: true;
1363
+ };
1364
+ children?: Record<Lowercase<string> & {
1365
+ readonly __hex: true;
1366
+ } & {
1367
+ readonly __address: true;
1368
+ }, string | null> | undefined;
1369
+ } | undefined;
1370
+ })[] | undefined;
1371
+ public?: (Brand<string, {
1372
+ __moduleAlias: true;
1373
+ }> | {
1374
+ config: {
1375
+ [x: string]: unknown;
1376
+ name: string;
1377
+ schema: Schema;
1378
+ accountPath?: string | undefined;
1379
+ features?: string[] | undefined;
1380
+ labels?: Record<string, string | undefined> | undefined;
1381
+ language?: string | undefined;
1382
+ os?: string | undefined;
1383
+ };
1384
+ $schema?: string | undefined;
1385
+ description?: string | undefined;
1386
+ lazyStart?: boolean | undefined;
1387
+ status?: {
1388
+ address: Lowercase<string> & {
1389
+ readonly __hex: true;
1390
+ } & {
1391
+ readonly __address: true;
1392
+ };
1393
+ children?: Record<Lowercase<string> & {
1394
+ readonly __hex: true;
1395
+ } & {
1396
+ readonly __address: true;
1397
+ }, string | null> | undefined;
1398
+ } | undefined;
1399
+ })[] | undefined;
1400
+ } | undefined;
1401
+ }[];
1402
+ $schema?: string | undefined;
1403
+ description?: string | undefined;
1404
+ modules?: Record<Brand<string, {
1405
+ __moduleAlias: true;
1406
+ }>, {
1407
+ config: {
1408
+ [x: string]: unknown;
1409
+ name: string;
1410
+ schema: Schema;
1411
+ accountPath?: string | undefined;
1412
+ features?: string[] | undefined;
1413
+ labels?: Record<string, string | undefined> | undefined;
1414
+ language?: string | undefined;
1415
+ os?: string | undefined;
1416
+ };
1417
+ $schema?: string | undefined;
1418
+ description?: string | undefined;
1419
+ lazyStart?: boolean | undefined;
1420
+ status?: {
1421
+ address: Lowercase<string> & {
1422
+ readonly __hex: true;
1423
+ } & {
1424
+ readonly __address: true;
1425
+ };
1426
+ children?: Record<Lowercase<string> & {
1427
+ readonly __hex: true;
1428
+ } & {
1429
+ readonly __address: true;
1430
+ }, string | null> | undefined;
1431
+ } | undefined;
1432
+ }> | undefined;
1433
+ };
1434
+ };
1435
+ export declare const toPackageManifest: {
1436
+ <T>(value: T): (T & {
1437
+ nodes: {
1438
+ config: {
1439
+ [x: string]: unknown;
1440
+ name: string;
1441
+ schema: Schema;
1442
+ accountPath?: string | undefined;
1443
+ features?: string[] | undefined;
1444
+ labels?: Record<string, string | undefined> | undefined;
1445
+ language?: string | undefined;
1446
+ os?: string | undefined;
1447
+ };
1448
+ $schema?: string | undefined;
1449
+ description?: string | undefined;
1450
+ lazyStart?: boolean | undefined;
1451
+ status?: {
1452
+ address: Lowercase<string> & {
1453
+ readonly __hex: true;
1454
+ } & {
1455
+ readonly __address: true;
1456
+ };
1457
+ children?: Record<Lowercase<string> & {
1458
+ readonly __hex: true;
1459
+ } & {
1460
+ readonly __address: true;
1461
+ }, string | null> | undefined;
1462
+ } | undefined;
1463
+ modules?: {
1464
+ private?: (Brand<string, {
1465
+ __moduleAlias: true;
1466
+ }> | {
1467
+ config: {
1468
+ [x: string]: unknown;
1469
+ name: string;
1470
+ schema: Schema;
1471
+ accountPath?: string | undefined;
1472
+ features?: string[] | undefined;
1473
+ labels?: Record<string, string | undefined> | undefined;
1474
+ language?: string | undefined;
1475
+ os?: string | undefined;
1476
+ };
1477
+ $schema?: string | undefined;
1478
+ description?: string | undefined;
1479
+ lazyStart?: boolean | undefined;
1480
+ status?: {
1481
+ address: Lowercase<string> & {
1482
+ readonly __hex: true;
1483
+ } & {
1484
+ readonly __address: true;
1485
+ };
1486
+ children?: Record<Lowercase<string> & {
1487
+ readonly __hex: true;
1488
+ } & {
1489
+ readonly __address: true;
1490
+ }, string | null> | undefined;
1491
+ } | undefined;
1492
+ })[] | undefined;
1493
+ public?: (Brand<string, {
1494
+ __moduleAlias: true;
1495
+ }> | {
1496
+ config: {
1497
+ [x: string]: unknown;
1498
+ name: string;
1499
+ schema: Schema;
1500
+ accountPath?: string | undefined;
1501
+ features?: string[] | undefined;
1502
+ labels?: Record<string, string | undefined> | undefined;
1503
+ language?: string | undefined;
1504
+ os?: string | undefined;
1505
+ };
1506
+ $schema?: string | undefined;
1507
+ description?: string | undefined;
1508
+ lazyStart?: boolean | undefined;
1509
+ status?: {
1510
+ address: Lowercase<string> & {
1511
+ readonly __hex: true;
1512
+ } & {
1513
+ readonly __address: true;
1514
+ };
1515
+ children?: Record<Lowercase<string> & {
1516
+ readonly __hex: true;
1517
+ } & {
1518
+ readonly __address: true;
1519
+ }, string | null> | undefined;
1520
+ } | undefined;
1521
+ })[] | undefined;
1522
+ } | undefined;
1523
+ }[];
1524
+ $schema?: string | undefined;
1525
+ description?: string | undefined;
1526
+ modules?: Record<Brand<string, {
1527
+ __moduleAlias: true;
1528
+ }>, {
1529
+ config: {
1530
+ [x: string]: unknown;
1531
+ name: string;
1532
+ schema: Schema;
1533
+ accountPath?: string | undefined;
1534
+ features?: string[] | undefined;
1535
+ labels?: Record<string, string | undefined> | undefined;
1536
+ language?: string | undefined;
1537
+ os?: string | undefined;
1538
+ };
1539
+ $schema?: string | undefined;
1540
+ description?: string | undefined;
1541
+ lazyStart?: boolean | undefined;
1542
+ status?: {
1543
+ address: Lowercase<string> & {
1544
+ readonly __hex: true;
1545
+ } & {
1546
+ readonly __address: true;
1547
+ };
1548
+ children?: Record<Lowercase<string> & {
1549
+ readonly __hex: true;
1550
+ } & {
1551
+ readonly __address: true;
1552
+ }, string | null> | undefined;
1553
+ } | undefined;
1554
+ }> | undefined;
1555
+ }) | undefined;
1556
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1557
+ nodes: {
1558
+ config: {
1559
+ [x: string]: unknown;
1560
+ name: string;
1561
+ schema: Schema;
1562
+ accountPath?: string | undefined;
1563
+ features?: string[] | undefined;
1564
+ labels?: Record<string, string | undefined> | undefined;
1565
+ language?: string | undefined;
1566
+ os?: string | undefined;
1567
+ };
1568
+ $schema?: string | undefined;
1569
+ description?: string | undefined;
1570
+ lazyStart?: boolean | undefined;
1571
+ status?: {
1572
+ address: Lowercase<string> & {
1573
+ readonly __hex: true;
1574
+ } & {
1575
+ readonly __address: true;
1576
+ };
1577
+ children?: Record<Lowercase<string> & {
1578
+ readonly __hex: true;
1579
+ } & {
1580
+ readonly __address: true;
1581
+ }, string | null> | undefined;
1582
+ } | undefined;
1583
+ modules?: {
1584
+ private?: (Brand<string, {
1585
+ __moduleAlias: true;
1586
+ }> | {
1587
+ config: {
1588
+ [x: string]: unknown;
1589
+ name: string;
1590
+ schema: Schema;
1591
+ accountPath?: string | undefined;
1592
+ features?: string[] | undefined;
1593
+ labels?: Record<string, string | undefined> | undefined;
1594
+ language?: string | undefined;
1595
+ os?: string | undefined;
1596
+ };
1597
+ $schema?: string | undefined;
1598
+ description?: string | undefined;
1599
+ lazyStart?: boolean | undefined;
1600
+ status?: {
1601
+ address: Lowercase<string> & {
1602
+ readonly __hex: true;
1603
+ } & {
1604
+ readonly __address: true;
1605
+ };
1606
+ children?: Record<Lowercase<string> & {
1607
+ readonly __hex: true;
1608
+ } & {
1609
+ readonly __address: true;
1610
+ }, string | null> | undefined;
1611
+ } | undefined;
1612
+ })[] | undefined;
1613
+ public?: (Brand<string, {
1614
+ __moduleAlias: true;
1615
+ }> | {
1616
+ config: {
1617
+ [x: string]: unknown;
1618
+ name: string;
1619
+ schema: Schema;
1620
+ accountPath?: string | undefined;
1621
+ features?: string[] | undefined;
1622
+ labels?: Record<string, string | undefined> | undefined;
1623
+ language?: string | undefined;
1624
+ os?: string | undefined;
1625
+ };
1626
+ $schema?: string | undefined;
1627
+ description?: string | undefined;
1628
+ lazyStart?: boolean | undefined;
1629
+ status?: {
1630
+ address: Lowercase<string> & {
1631
+ readonly __hex: true;
1632
+ } & {
1633
+ readonly __address: true;
1634
+ };
1635
+ children?: Record<Lowercase<string> & {
1636
+ readonly __hex: true;
1637
+ } & {
1638
+ readonly __address: true;
1639
+ }, string | null> | undefined;
1640
+ } | undefined;
1641
+ })[] | undefined;
1642
+ } | undefined;
1643
+ }[];
1644
+ $schema?: string | undefined;
1645
+ description?: string | undefined;
1646
+ modules?: Record<Brand<string, {
1647
+ __moduleAlias: true;
1648
+ }>, {
1649
+ config: {
1650
+ [x: string]: unknown;
1651
+ name: string;
1652
+ schema: Schema;
1653
+ accountPath?: string | undefined;
1654
+ features?: string[] | undefined;
1655
+ labels?: Record<string, string | undefined> | undefined;
1656
+ language?: string | undefined;
1657
+ os?: string | undefined;
1658
+ };
1659
+ $schema?: string | undefined;
1660
+ description?: string | undefined;
1661
+ lazyStart?: boolean | undefined;
1662
+ status?: {
1663
+ address: Lowercase<string> & {
1664
+ readonly __hex: true;
1665
+ } & {
1666
+ readonly __address: true;
1667
+ };
1668
+ children?: Record<Lowercase<string> & {
1669
+ readonly __hex: true;
1670
+ } & {
1671
+ readonly __address: true;
1672
+ }, string | null> | undefined;
1673
+ } | undefined;
1674
+ }> | undefined;
1675
+ };
1676
+ };
1677
+ export declare const AuthoredModuleManifestZod: z.ZodObject<{
1678
+ config: z.ZodObject<{
1679
+ accountPath: z.ZodOptional<z.ZodString>;
1680
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
1681
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
1682
+ language: z.ZodOptional<z.ZodString>;
1683
+ name: z.ZodString;
1684
+ os: z.ZodOptional<z.ZodString>;
1685
+ schema: z.ZodCustom<Schema, Schema>;
1686
+ }, z.core.$loose>;
1687
+ description: z.ZodOptional<z.ZodString>;
1688
+ }, z.core.$strict>;
1689
+ export type AuthoredModuleManifest = z.infer<typeof AuthoredModuleManifestZod>;
1690
+ export declare const isAuthoredModuleManifest: <T>(value: T) => value is T & {
1691
+ config: {
1692
+ [x: string]: unknown;
1693
+ name: string;
1694
+ schema: Schema;
1695
+ accountPath?: string | undefined;
1696
+ features?: string[] | undefined;
1697
+ labels?: Record<string, string | undefined> | undefined;
1698
+ language?: string | undefined;
1699
+ os?: string | undefined;
1700
+ };
1701
+ description?: string | undefined;
1702
+ };
1703
+ export declare const asAuthoredModuleManifest: {
1704
+ <T>(value: T): (T & {
1705
+ config: {
1706
+ [x: string]: unknown;
1707
+ name: string;
1708
+ schema: Schema;
1709
+ accountPath?: string | undefined;
1710
+ features?: string[] | undefined;
1711
+ labels?: Record<string, string | undefined> | undefined;
1712
+ language?: string | undefined;
1713
+ os?: string | undefined;
1714
+ };
1715
+ description?: string | undefined;
1716
+ }) | undefined;
1717
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1718
+ config: {
1719
+ [x: string]: unknown;
1720
+ name: string;
1721
+ schema: Schema;
1722
+ accountPath?: string | undefined;
1723
+ features?: string[] | undefined;
1724
+ labels?: Record<string, string | undefined> | undefined;
1725
+ language?: string | undefined;
1726
+ os?: string | undefined;
1727
+ };
1728
+ description?: string | undefined;
1729
+ };
1730
+ };
1731
+ export declare const toAuthoredModuleManifest: {
1732
+ <T>(value: T): (T & {
1733
+ config: {
1734
+ [x: string]: unknown;
1735
+ name: string;
1736
+ schema: Schema;
1737
+ accountPath?: string | undefined;
1738
+ features?: string[] | undefined;
1739
+ labels?: Record<string, string | undefined> | undefined;
1740
+ language?: string | undefined;
1741
+ os?: string | undefined;
1742
+ };
1743
+ description?: string | undefined;
1744
+ }) | undefined;
1745
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1746
+ config: {
1747
+ [x: string]: unknown;
1748
+ name: string;
1749
+ schema: Schema;
1750
+ accountPath?: string | undefined;
1751
+ features?: string[] | undefined;
1752
+ labels?: Record<string, string | undefined> | undefined;
1753
+ language?: string | undefined;
1754
+ os?: string | undefined;
1755
+ };
1756
+ description?: string | undefined;
1757
+ };
1758
+ };
1759
+ export declare const AuthoredNodeManifestZod: z.ZodObject<{
1760
+ config: z.ZodObject<{
1761
+ accountPath: z.ZodOptional<z.ZodString>;
1762
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
1763
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
1764
+ language: z.ZodOptional<z.ZodString>;
1765
+ name: z.ZodString;
1766
+ os: z.ZodOptional<z.ZodString>;
1767
+ schema: z.ZodCustom<Schema, Schema>;
1768
+ }, z.core.$loose>;
1769
+ description: z.ZodOptional<z.ZodString>;
1770
+ modules: z.ZodOptional<z.ZodObject<{
1771
+ private: z.ZodOptional<z.ZodArray<z.ZodObject<{
1772
+ config: z.ZodObject<{
1773
+ accountPath: z.ZodOptional<z.ZodString>;
1774
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
1775
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
1776
+ language: z.ZodOptional<z.ZodString>;
1777
+ name: z.ZodString;
1778
+ os: z.ZodOptional<z.ZodString>;
1779
+ schema: z.ZodCustom<Schema, Schema>;
1780
+ }, z.core.$loose>;
1781
+ description: z.ZodOptional<z.ZodString>;
1782
+ }, z.core.$strict>>>;
1783
+ public: z.ZodOptional<z.ZodArray<z.ZodObject<{
1784
+ config: z.ZodObject<{
1785
+ accountPath: z.ZodOptional<z.ZodString>;
1786
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
1787
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
1788
+ language: z.ZodOptional<z.ZodString>;
1789
+ name: z.ZodString;
1790
+ os: z.ZodOptional<z.ZodString>;
1791
+ schema: z.ZodCustom<Schema, Schema>;
1792
+ }, z.core.$loose>;
1793
+ description: z.ZodOptional<z.ZodString>;
1794
+ }, z.core.$strict>>>;
1795
+ }, z.core.$strict>>;
1796
+ name: z.ZodOptional<z.ZodString>;
1797
+ }, z.core.$strict>;
1798
+ export type AuthoredNodeManifest = z.infer<typeof AuthoredNodeManifestZod>;
1799
+ export declare const isAuthoredNodeManifest: <T>(value: T) => value is T & {
1800
+ config: {
1801
+ [x: string]: unknown;
1802
+ name: string;
1803
+ schema: Schema;
1804
+ accountPath?: string | undefined;
1805
+ features?: string[] | undefined;
1806
+ labels?: Record<string, string | undefined> | undefined;
1807
+ language?: string | undefined;
1808
+ os?: string | undefined;
1809
+ };
1810
+ description?: string | undefined;
1811
+ modules?: {
1812
+ private?: {
1813
+ config: {
1814
+ [x: string]: unknown;
1815
+ name: string;
1816
+ schema: Schema;
1817
+ accountPath?: string | undefined;
1818
+ features?: string[] | undefined;
1819
+ labels?: Record<string, string | undefined> | undefined;
1820
+ language?: string | undefined;
1821
+ os?: string | undefined;
1822
+ };
1823
+ description?: string | undefined;
1824
+ }[] | undefined;
1825
+ public?: {
1826
+ config: {
1827
+ [x: string]: unknown;
1828
+ name: string;
1829
+ schema: Schema;
1830
+ accountPath?: string | undefined;
1831
+ features?: string[] | undefined;
1832
+ labels?: Record<string, string | undefined> | undefined;
1833
+ language?: string | undefined;
1834
+ os?: string | undefined;
1835
+ };
1836
+ description?: string | undefined;
1837
+ }[] | undefined;
1838
+ } | undefined;
1839
+ name?: string | undefined;
1840
+ };
1841
+ export declare const asAuthoredNodeManifest: {
1842
+ <T>(value: T): (T & {
1843
+ config: {
1844
+ [x: string]: unknown;
1845
+ name: string;
1846
+ schema: Schema;
1847
+ accountPath?: string | undefined;
1848
+ features?: string[] | undefined;
1849
+ labels?: Record<string, string | undefined> | undefined;
1850
+ language?: string | undefined;
1851
+ os?: string | undefined;
1852
+ };
1853
+ description?: string | undefined;
1854
+ modules?: {
1855
+ private?: {
1856
+ config: {
1857
+ [x: string]: unknown;
1858
+ name: string;
1859
+ schema: Schema;
1860
+ accountPath?: string | undefined;
1861
+ features?: string[] | undefined;
1862
+ labels?: Record<string, string | undefined> | undefined;
1863
+ language?: string | undefined;
1864
+ os?: string | undefined;
1865
+ };
1866
+ description?: string | undefined;
1867
+ }[] | undefined;
1868
+ public?: {
1869
+ config: {
1870
+ [x: string]: unknown;
1871
+ name: string;
1872
+ schema: Schema;
1873
+ accountPath?: string | undefined;
1874
+ features?: string[] | undefined;
1875
+ labels?: Record<string, string | undefined> | undefined;
1876
+ language?: string | undefined;
1877
+ os?: string | undefined;
1878
+ };
1879
+ description?: string | undefined;
1880
+ }[] | undefined;
1881
+ } | undefined;
1882
+ name?: string | undefined;
1883
+ }) | undefined;
1884
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1885
+ config: {
1886
+ [x: string]: unknown;
1887
+ name: string;
1888
+ schema: Schema;
1889
+ accountPath?: string | undefined;
1890
+ features?: string[] | undefined;
1891
+ labels?: Record<string, string | undefined> | undefined;
1892
+ language?: string | undefined;
1893
+ os?: string | undefined;
1894
+ };
1895
+ description?: string | undefined;
1896
+ modules?: {
1897
+ private?: {
1898
+ config: {
1899
+ [x: string]: unknown;
1900
+ name: string;
1901
+ schema: Schema;
1902
+ accountPath?: string | undefined;
1903
+ features?: string[] | undefined;
1904
+ labels?: Record<string, string | undefined> | undefined;
1905
+ language?: string | undefined;
1906
+ os?: string | undefined;
1907
+ };
1908
+ description?: string | undefined;
1909
+ }[] | undefined;
1910
+ public?: {
1911
+ config: {
1912
+ [x: string]: unknown;
1913
+ name: string;
1914
+ schema: Schema;
1915
+ accountPath?: string | undefined;
1916
+ features?: string[] | undefined;
1917
+ labels?: Record<string, string | undefined> | undefined;
1918
+ language?: string | undefined;
1919
+ os?: string | undefined;
1920
+ };
1921
+ description?: string | undefined;
1922
+ }[] | undefined;
1923
+ } | undefined;
1924
+ name?: string | undefined;
1925
+ };
1926
+ };
1927
+ export declare const toAuthoredNodeManifest: {
1928
+ <T>(value: T): (T & {
1929
+ config: {
1930
+ [x: string]: unknown;
1931
+ name: string;
1932
+ schema: Schema;
1933
+ accountPath?: string | undefined;
1934
+ features?: string[] | undefined;
1935
+ labels?: Record<string, string | undefined> | undefined;
1936
+ language?: string | undefined;
1937
+ os?: string | undefined;
1938
+ };
1939
+ description?: string | undefined;
1940
+ modules?: {
1941
+ private?: {
1942
+ config: {
1943
+ [x: string]: unknown;
1944
+ name: string;
1945
+ schema: Schema;
1946
+ accountPath?: string | undefined;
1947
+ features?: string[] | undefined;
1948
+ labels?: Record<string, string | undefined> | undefined;
1949
+ language?: string | undefined;
1950
+ os?: string | undefined;
1951
+ };
1952
+ description?: string | undefined;
1953
+ }[] | undefined;
1954
+ public?: {
1955
+ config: {
1956
+ [x: string]: unknown;
1957
+ name: string;
1958
+ schema: Schema;
1959
+ accountPath?: string | undefined;
1960
+ features?: string[] | undefined;
1961
+ labels?: Record<string, string | undefined> | undefined;
1962
+ language?: string | undefined;
1963
+ os?: string | undefined;
1964
+ };
1965
+ description?: string | undefined;
1966
+ }[] | undefined;
1967
+ } | undefined;
1968
+ name?: string | undefined;
1969
+ }) | undefined;
1970
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
1971
+ config: {
1972
+ [x: string]: unknown;
1973
+ name: string;
1974
+ schema: Schema;
1975
+ accountPath?: string | undefined;
1976
+ features?: string[] | undefined;
1977
+ labels?: Record<string, string | undefined> | undefined;
1978
+ language?: string | undefined;
1979
+ os?: string | undefined;
1980
+ };
1981
+ description?: string | undefined;
1982
+ modules?: {
1983
+ private?: {
1984
+ config: {
1985
+ [x: string]: unknown;
1986
+ name: string;
1987
+ schema: Schema;
1988
+ accountPath?: string | undefined;
1989
+ features?: string[] | undefined;
1990
+ labels?: Record<string, string | undefined> | undefined;
1991
+ language?: string | undefined;
1992
+ os?: string | undefined;
1993
+ };
1994
+ description?: string | undefined;
1995
+ }[] | undefined;
1996
+ public?: {
1997
+ config: {
1998
+ [x: string]: unknown;
1999
+ name: string;
2000
+ schema: Schema;
2001
+ accountPath?: string | undefined;
2002
+ features?: string[] | undefined;
2003
+ labels?: Record<string, string | undefined> | undefined;
2004
+ language?: string | undefined;
2005
+ os?: string | undefined;
2006
+ };
2007
+ description?: string | undefined;
2008
+ }[] | undefined;
2009
+ } | undefined;
2010
+ name?: string | undefined;
2011
+ };
2012
+ };
2013
+ export declare const AuthoredPackageManifestZod: z.ZodObject<{
2014
+ $schema: z.ZodOptional<z.ZodString>;
2015
+ description: z.ZodOptional<z.ZodString>;
2016
+ nodes: z.ZodArray<z.ZodObject<{
2017
+ config: z.ZodObject<{
2018
+ accountPath: z.ZodOptional<z.ZodString>;
2019
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2020
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2021
+ language: z.ZodOptional<z.ZodString>;
2022
+ name: z.ZodString;
2023
+ os: z.ZodOptional<z.ZodString>;
2024
+ schema: z.ZodCustom<Schema, Schema>;
2025
+ }, z.core.$loose>;
2026
+ description: z.ZodOptional<z.ZodString>;
2027
+ modules: z.ZodOptional<z.ZodObject<{
2028
+ private: z.ZodOptional<z.ZodArray<z.ZodObject<{
2029
+ config: z.ZodObject<{
2030
+ accountPath: z.ZodOptional<z.ZodString>;
2031
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2032
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2033
+ language: z.ZodOptional<z.ZodString>;
2034
+ name: z.ZodString;
2035
+ os: z.ZodOptional<z.ZodString>;
2036
+ schema: z.ZodCustom<Schema, Schema>;
2037
+ }, z.core.$loose>;
2038
+ description: z.ZodOptional<z.ZodString>;
2039
+ }, z.core.$strict>>>;
2040
+ public: z.ZodOptional<z.ZodArray<z.ZodObject<{
2041
+ config: z.ZodObject<{
2042
+ accountPath: z.ZodOptional<z.ZodString>;
2043
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2044
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2045
+ language: z.ZodOptional<z.ZodString>;
2046
+ name: z.ZodString;
2047
+ os: z.ZodOptional<z.ZodString>;
2048
+ schema: z.ZodCustom<Schema, Schema>;
2049
+ }, z.core.$loose>;
2050
+ description: z.ZodOptional<z.ZodString>;
2051
+ }, z.core.$strict>>>;
2052
+ }, z.core.$strict>>;
2053
+ name: z.ZodOptional<z.ZodString>;
2054
+ }, z.core.$strict>>;
2055
+ schema: z.ZodLiteral<"network.xyo.manifest">;
2056
+ }, z.core.$strict>;
2057
+ export type AuthoredPackageManifest = z.infer<typeof AuthoredPackageManifestZod>;
2058
+ export declare const isAuthoredPackageManifest: <T>(value: T) => value is T & {
2059
+ nodes: {
2060
+ config: {
2061
+ [x: string]: unknown;
2062
+ name: string;
2063
+ schema: Schema;
2064
+ accountPath?: string | undefined;
2065
+ features?: string[] | undefined;
2066
+ labels?: Record<string, string | undefined> | undefined;
2067
+ language?: string | undefined;
2068
+ os?: string | undefined;
2069
+ };
2070
+ description?: string | undefined;
2071
+ modules?: {
2072
+ private?: {
2073
+ config: {
2074
+ [x: string]: unknown;
2075
+ name: string;
2076
+ schema: Schema;
2077
+ accountPath?: string | undefined;
2078
+ features?: string[] | undefined;
2079
+ labels?: Record<string, string | undefined> | undefined;
2080
+ language?: string | undefined;
2081
+ os?: string | undefined;
2082
+ };
2083
+ description?: string | undefined;
2084
+ }[] | undefined;
2085
+ public?: {
2086
+ config: {
2087
+ [x: string]: unknown;
2088
+ name: string;
2089
+ schema: Schema;
2090
+ accountPath?: string | undefined;
2091
+ features?: string[] | undefined;
2092
+ labels?: Record<string, string | undefined> | undefined;
2093
+ language?: string | undefined;
2094
+ os?: string | undefined;
2095
+ };
2096
+ description?: string | undefined;
2097
+ }[] | undefined;
2098
+ } | undefined;
2099
+ name?: string | undefined;
2100
+ }[];
2101
+ schema: "network.xyo.manifest";
2102
+ $schema?: string | undefined;
2103
+ description?: string | undefined;
2104
+ };
2105
+ export declare const asAuthoredPackageManifest: {
2106
+ <T>(value: T): (T & {
2107
+ nodes: {
2108
+ config: {
2109
+ [x: string]: unknown;
2110
+ name: string;
2111
+ schema: Schema;
2112
+ accountPath?: string | undefined;
2113
+ features?: string[] | undefined;
2114
+ labels?: Record<string, string | undefined> | undefined;
2115
+ language?: string | undefined;
2116
+ os?: string | undefined;
2117
+ };
2118
+ description?: string | undefined;
2119
+ modules?: {
2120
+ private?: {
2121
+ config: {
2122
+ [x: string]: unknown;
2123
+ name: string;
2124
+ schema: Schema;
2125
+ accountPath?: string | undefined;
2126
+ features?: string[] | undefined;
2127
+ labels?: Record<string, string | undefined> | undefined;
2128
+ language?: string | undefined;
2129
+ os?: string | undefined;
2130
+ };
2131
+ description?: string | undefined;
2132
+ }[] | undefined;
2133
+ public?: {
2134
+ config: {
2135
+ [x: string]: unknown;
2136
+ name: string;
2137
+ schema: Schema;
2138
+ accountPath?: string | undefined;
2139
+ features?: string[] | undefined;
2140
+ labels?: Record<string, string | undefined> | undefined;
2141
+ language?: string | undefined;
2142
+ os?: string | undefined;
2143
+ };
2144
+ description?: string | undefined;
2145
+ }[] | undefined;
2146
+ } | undefined;
2147
+ name?: string | undefined;
2148
+ }[];
2149
+ schema: "network.xyo.manifest";
2150
+ $schema?: string | undefined;
2151
+ description?: string | undefined;
2152
+ }) | undefined;
2153
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
2154
+ nodes: {
2155
+ config: {
2156
+ [x: string]: unknown;
2157
+ name: string;
2158
+ schema: Schema;
2159
+ accountPath?: string | undefined;
2160
+ features?: string[] | undefined;
2161
+ labels?: Record<string, string | undefined> | undefined;
2162
+ language?: string | undefined;
2163
+ os?: string | undefined;
2164
+ };
2165
+ description?: string | undefined;
2166
+ modules?: {
2167
+ private?: {
2168
+ config: {
2169
+ [x: string]: unknown;
2170
+ name: string;
2171
+ schema: Schema;
2172
+ accountPath?: string | undefined;
2173
+ features?: string[] | undefined;
2174
+ labels?: Record<string, string | undefined> | undefined;
2175
+ language?: string | undefined;
2176
+ os?: string | undefined;
2177
+ };
2178
+ description?: string | undefined;
2179
+ }[] | undefined;
2180
+ public?: {
2181
+ config: {
2182
+ [x: string]: unknown;
2183
+ name: string;
2184
+ schema: Schema;
2185
+ accountPath?: string | undefined;
2186
+ features?: string[] | undefined;
2187
+ labels?: Record<string, string | undefined> | undefined;
2188
+ language?: string | undefined;
2189
+ os?: string | undefined;
2190
+ };
2191
+ description?: string | undefined;
2192
+ }[] | undefined;
2193
+ } | undefined;
2194
+ name?: string | undefined;
2195
+ }[];
2196
+ schema: "network.xyo.manifest";
2197
+ $schema?: string | undefined;
2198
+ description?: string | undefined;
2199
+ };
2200
+ };
2201
+ export declare const toAuthoredPackageManifest: {
2202
+ <T>(value: T): (T & {
2203
+ nodes: {
2204
+ config: {
2205
+ [x: string]: unknown;
2206
+ name: string;
2207
+ schema: Schema;
2208
+ accountPath?: string | undefined;
2209
+ features?: string[] | undefined;
2210
+ labels?: Record<string, string | undefined> | undefined;
2211
+ language?: string | undefined;
2212
+ os?: string | undefined;
2213
+ };
2214
+ description?: string | undefined;
2215
+ modules?: {
2216
+ private?: {
2217
+ config: {
2218
+ [x: string]: unknown;
2219
+ name: string;
2220
+ schema: Schema;
2221
+ accountPath?: string | undefined;
2222
+ features?: string[] | undefined;
2223
+ labels?: Record<string, string | undefined> | undefined;
2224
+ language?: string | undefined;
2225
+ os?: string | undefined;
2226
+ };
2227
+ description?: string | undefined;
2228
+ }[] | undefined;
2229
+ public?: {
2230
+ config: {
2231
+ [x: string]: unknown;
2232
+ name: string;
2233
+ schema: Schema;
2234
+ accountPath?: string | undefined;
2235
+ features?: string[] | undefined;
2236
+ labels?: Record<string, string | undefined> | undefined;
2237
+ language?: string | undefined;
2238
+ os?: string | undefined;
2239
+ };
2240
+ description?: string | undefined;
2241
+ }[] | undefined;
2242
+ } | undefined;
2243
+ name?: string | undefined;
2244
+ }[];
2245
+ schema: "network.xyo.manifest";
2246
+ $schema?: string | undefined;
2247
+ description?: string | undefined;
2248
+ }) | undefined;
2249
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
2250
+ nodes: {
2251
+ config: {
2252
+ [x: string]: unknown;
2253
+ name: string;
2254
+ schema: Schema;
2255
+ accountPath?: string | undefined;
2256
+ features?: string[] | undefined;
2257
+ labels?: Record<string, string | undefined> | undefined;
2258
+ language?: string | undefined;
2259
+ os?: string | undefined;
2260
+ };
2261
+ description?: string | undefined;
2262
+ modules?: {
2263
+ private?: {
2264
+ config: {
2265
+ [x: string]: unknown;
2266
+ name: string;
2267
+ schema: Schema;
2268
+ accountPath?: string | undefined;
2269
+ features?: string[] | undefined;
2270
+ labels?: Record<string, string | undefined> | undefined;
2271
+ language?: string | undefined;
2272
+ os?: string | undefined;
2273
+ };
2274
+ description?: string | undefined;
2275
+ }[] | undefined;
2276
+ public?: {
2277
+ config: {
2278
+ [x: string]: unknown;
2279
+ name: string;
2280
+ schema: Schema;
2281
+ accountPath?: string | undefined;
2282
+ features?: string[] | undefined;
2283
+ labels?: Record<string, string | undefined> | undefined;
2284
+ language?: string | undefined;
2285
+ os?: string | undefined;
2286
+ };
2287
+ description?: string | undefined;
2288
+ }[] | undefined;
2289
+ } | undefined;
2290
+ name?: string | undefined;
2291
+ }[];
2292
+ schema: "network.xyo.manifest";
2293
+ $schema?: string | undefined;
2294
+ description?: string | undefined;
2295
+ };
2296
+ };
2297
+ export declare const ExternalModuleRequestZod: z.ZodObject<{
2298
+ name: z.ZodString;
2299
+ }, z.core.$strict>;
2300
+ export declare const ExternalManifestZod: z.ZodObject<{
2301
+ modules: z.ZodArray<z.ZodObject<{
2302
+ name: z.ZodString;
2303
+ }, z.core.$strict>>;
2304
+ }, z.core.$strict>;
2305
+ export declare const AuthoredDappPackageManifestZod: z.ZodObject<{
2306
+ $schema: z.ZodOptional<z.ZodString>;
2307
+ description: z.ZodOptional<z.ZodString>;
2308
+ external: z.ZodOptional<z.ZodObject<{
2309
+ modules: z.ZodArray<z.ZodObject<{
2310
+ name: z.ZodString;
2311
+ }, z.core.$strict>>;
2312
+ }, z.core.$strict>>;
2313
+ nodes: z.ZodArray<z.ZodObject<{
2314
+ config: z.ZodObject<{
2315
+ accountPath: z.ZodOptional<z.ZodString>;
2316
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2317
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2318
+ language: z.ZodOptional<z.ZodString>;
2319
+ name: z.ZodString;
2320
+ os: z.ZodOptional<z.ZodString>;
2321
+ schema: z.ZodCustom<Schema, Schema>;
2322
+ }, z.core.$loose>;
2323
+ description: z.ZodOptional<z.ZodString>;
2324
+ modules: z.ZodOptional<z.ZodObject<{
2325
+ private: z.ZodOptional<z.ZodArray<z.ZodObject<{
2326
+ config: z.ZodObject<{
2327
+ accountPath: z.ZodOptional<z.ZodString>;
2328
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2329
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2330
+ language: z.ZodOptional<z.ZodString>;
2331
+ name: z.ZodString;
2332
+ os: z.ZodOptional<z.ZodString>;
2333
+ schema: z.ZodCustom<Schema, Schema>;
2334
+ }, z.core.$loose>;
2335
+ description: z.ZodOptional<z.ZodString>;
2336
+ }, z.core.$strict>>>;
2337
+ public: z.ZodOptional<z.ZodArray<z.ZodObject<{
2338
+ config: z.ZodObject<{
2339
+ accountPath: z.ZodOptional<z.ZodString>;
2340
+ features: z.ZodOptional<z.ZodArray<z.ZodString>>;
2341
+ labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>;
2342
+ language: z.ZodOptional<z.ZodString>;
2343
+ name: z.ZodString;
2344
+ os: z.ZodOptional<z.ZodString>;
2345
+ schema: z.ZodCustom<Schema, Schema>;
2346
+ }, z.core.$loose>;
2347
+ description: z.ZodOptional<z.ZodString>;
2348
+ }, z.core.$strict>>>;
2349
+ }, z.core.$strict>>;
2350
+ name: z.ZodOptional<z.ZodString>;
2351
+ }, z.core.$strict>>;
2352
+ schema: z.ZodLiteral<"network.xyo.manifest.package.dapp">;
2353
+ }, z.core.$strict>;
2354
+ export type AuthoredDappPackageManifest = z.infer<typeof AuthoredDappPackageManifestZod>;
2355
+ export declare const isAuthoredDappPackageManifest: <T>(value: T) => value is T & {
2356
+ nodes: {
2357
+ config: {
2358
+ [x: string]: unknown;
2359
+ name: string;
2360
+ schema: Schema;
2361
+ accountPath?: string | undefined;
2362
+ features?: string[] | undefined;
2363
+ labels?: Record<string, string | undefined> | undefined;
2364
+ language?: string | undefined;
2365
+ os?: string | undefined;
2366
+ };
2367
+ description?: string | undefined;
2368
+ modules?: {
2369
+ private?: {
2370
+ config: {
2371
+ [x: string]: unknown;
2372
+ name: string;
2373
+ schema: Schema;
2374
+ accountPath?: string | undefined;
2375
+ features?: string[] | undefined;
2376
+ labels?: Record<string, string | undefined> | undefined;
2377
+ language?: string | undefined;
2378
+ os?: string | undefined;
2379
+ };
2380
+ description?: string | undefined;
2381
+ }[] | undefined;
2382
+ public?: {
2383
+ config: {
2384
+ [x: string]: unknown;
2385
+ name: string;
2386
+ schema: Schema;
2387
+ accountPath?: string | undefined;
2388
+ features?: string[] | undefined;
2389
+ labels?: Record<string, string | undefined> | undefined;
2390
+ language?: string | undefined;
2391
+ os?: string | undefined;
2392
+ };
2393
+ description?: string | undefined;
2394
+ }[] | undefined;
2395
+ } | undefined;
2396
+ name?: string | undefined;
2397
+ }[];
2398
+ schema: "network.xyo.manifest.package.dapp";
2399
+ $schema?: string | undefined;
2400
+ description?: string | undefined;
2401
+ external?: {
2402
+ modules: {
2403
+ name: string;
2404
+ }[];
2405
+ } | undefined;
2406
+ };
2407
+ export declare const asAuthoredDappPackageManifest: {
2408
+ <T>(value: T): (T & {
2409
+ nodes: {
2410
+ config: {
2411
+ [x: string]: unknown;
2412
+ name: string;
2413
+ schema: Schema;
2414
+ accountPath?: string | undefined;
2415
+ features?: string[] | undefined;
2416
+ labels?: Record<string, string | undefined> | undefined;
2417
+ language?: string | undefined;
2418
+ os?: string | undefined;
2419
+ };
2420
+ description?: string | undefined;
2421
+ modules?: {
2422
+ private?: {
2423
+ config: {
2424
+ [x: string]: unknown;
2425
+ name: string;
2426
+ schema: Schema;
2427
+ accountPath?: string | undefined;
2428
+ features?: string[] | undefined;
2429
+ labels?: Record<string, string | undefined> | undefined;
2430
+ language?: string | undefined;
2431
+ os?: string | undefined;
2432
+ };
2433
+ description?: string | undefined;
2434
+ }[] | undefined;
2435
+ public?: {
2436
+ config: {
2437
+ [x: string]: unknown;
2438
+ name: string;
2439
+ schema: Schema;
2440
+ accountPath?: string | undefined;
2441
+ features?: string[] | undefined;
2442
+ labels?: Record<string, string | undefined> | undefined;
2443
+ language?: string | undefined;
2444
+ os?: string | undefined;
2445
+ };
2446
+ description?: string | undefined;
2447
+ }[] | undefined;
2448
+ } | undefined;
2449
+ name?: string | undefined;
2450
+ }[];
2451
+ schema: "network.xyo.manifest.package.dapp";
2452
+ $schema?: string | undefined;
2453
+ description?: string | undefined;
2454
+ external?: {
2455
+ modules: {
2456
+ name: string;
2457
+ }[];
2458
+ } | undefined;
2459
+ }) | undefined;
2460
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
2461
+ nodes: {
2462
+ config: {
2463
+ [x: string]: unknown;
2464
+ name: string;
2465
+ schema: Schema;
2466
+ accountPath?: string | undefined;
2467
+ features?: string[] | undefined;
2468
+ labels?: Record<string, string | undefined> | undefined;
2469
+ language?: string | undefined;
2470
+ os?: string | undefined;
2471
+ };
2472
+ description?: string | undefined;
2473
+ modules?: {
2474
+ private?: {
2475
+ config: {
2476
+ [x: string]: unknown;
2477
+ name: string;
2478
+ schema: Schema;
2479
+ accountPath?: string | undefined;
2480
+ features?: string[] | undefined;
2481
+ labels?: Record<string, string | undefined> | undefined;
2482
+ language?: string | undefined;
2483
+ os?: string | undefined;
2484
+ };
2485
+ description?: string | undefined;
2486
+ }[] | undefined;
2487
+ public?: {
2488
+ config: {
2489
+ [x: string]: unknown;
2490
+ name: string;
2491
+ schema: Schema;
2492
+ accountPath?: string | undefined;
2493
+ features?: string[] | undefined;
2494
+ labels?: Record<string, string | undefined> | undefined;
2495
+ language?: string | undefined;
2496
+ os?: string | undefined;
2497
+ };
2498
+ description?: string | undefined;
2499
+ }[] | undefined;
2500
+ } | undefined;
2501
+ name?: string | undefined;
2502
+ }[];
2503
+ schema: "network.xyo.manifest.package.dapp";
2504
+ $schema?: string | undefined;
2505
+ description?: string | undefined;
2506
+ external?: {
2507
+ modules: {
2508
+ name: string;
2509
+ }[];
2510
+ } | undefined;
2511
+ };
2512
+ };
2513
+ export declare const toAuthoredDappPackageManifest: {
2514
+ <T>(value: T): (T & {
2515
+ nodes: {
2516
+ config: {
2517
+ [x: string]: unknown;
2518
+ name: string;
2519
+ schema: Schema;
2520
+ accountPath?: string | undefined;
2521
+ features?: string[] | undefined;
2522
+ labels?: Record<string, string | undefined> | undefined;
2523
+ language?: string | undefined;
2524
+ os?: string | undefined;
2525
+ };
2526
+ description?: string | undefined;
2527
+ modules?: {
2528
+ private?: {
2529
+ config: {
2530
+ [x: string]: unknown;
2531
+ name: string;
2532
+ schema: Schema;
2533
+ accountPath?: string | undefined;
2534
+ features?: string[] | undefined;
2535
+ labels?: Record<string, string | undefined> | undefined;
2536
+ language?: string | undefined;
2537
+ os?: string | undefined;
2538
+ };
2539
+ description?: string | undefined;
2540
+ }[] | undefined;
2541
+ public?: {
2542
+ config: {
2543
+ [x: string]: unknown;
2544
+ name: string;
2545
+ schema: Schema;
2546
+ accountPath?: string | undefined;
2547
+ features?: string[] | undefined;
2548
+ labels?: Record<string, string | undefined> | undefined;
2549
+ language?: string | undefined;
2550
+ os?: string | undefined;
2551
+ };
2552
+ description?: string | undefined;
2553
+ }[] | undefined;
2554
+ } | undefined;
2555
+ name?: string | undefined;
2556
+ }[];
2557
+ schema: "network.xyo.manifest.package.dapp";
2558
+ $schema?: string | undefined;
2559
+ description?: string | undefined;
2560
+ external?: {
2561
+ modules: {
2562
+ name: string;
2563
+ }[];
2564
+ } | undefined;
2565
+ }) | undefined;
2566
+ <T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
2567
+ nodes: {
2568
+ config: {
2569
+ [x: string]: unknown;
2570
+ name: string;
2571
+ schema: Schema;
2572
+ accountPath?: string | undefined;
2573
+ features?: string[] | undefined;
2574
+ labels?: Record<string, string | undefined> | undefined;
2575
+ language?: string | undefined;
2576
+ os?: string | undefined;
2577
+ };
2578
+ description?: string | undefined;
2579
+ modules?: {
2580
+ private?: {
2581
+ config: {
2582
+ [x: string]: unknown;
2583
+ name: string;
2584
+ schema: Schema;
2585
+ accountPath?: string | undefined;
2586
+ features?: string[] | undefined;
2587
+ labels?: Record<string, string | undefined> | undefined;
2588
+ language?: string | undefined;
2589
+ os?: string | undefined;
2590
+ };
2591
+ description?: string | undefined;
2592
+ }[] | undefined;
2593
+ public?: {
2594
+ config: {
2595
+ [x: string]: unknown;
2596
+ name: string;
2597
+ schema: Schema;
2598
+ accountPath?: string | undefined;
2599
+ features?: string[] | undefined;
2600
+ labels?: Record<string, string | undefined> | undefined;
2601
+ language?: string | undefined;
2602
+ os?: string | undefined;
2603
+ };
2604
+ description?: string | undefined;
2605
+ }[] | undefined;
2606
+ } | undefined;
2607
+ name?: string | undefined;
2608
+ }[];
2609
+ schema: "network.xyo.manifest.package.dapp";
2610
+ $schema?: string | undefined;
2611
+ description?: string | undefined;
2612
+ external?: {
2613
+ modules: {
2614
+ name: string;
2615
+ }[];
2616
+ } | undefined;
2617
+ };
2618
+ };
2
2619
  //# sourceMappingURL=Manifest.zod.d.ts.map