@xyo-network/manifest-model 6.0.5 → 6.0.6
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 +220 -220
- package/dist/neutral/Manifest.zod.d.ts.map +1 -1
- package/dist/neutral/Payload.zod.d.ts +208 -208
- package/dist/neutral/index.mjs.map +2 -2
- package/package.json +13 -12
|
@@ -108,24 +108,24 @@ export declare const toConfigManifest: {
|
|
|
108
108
|
};
|
|
109
109
|
};
|
|
110
110
|
export declare const ModuleManifestStatusZod: z.ZodMiniObject<{
|
|
111
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
111
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
112
112
|
readonly __hex: true;
|
|
113
113
|
} & {
|
|
114
114
|
readonly __address: true;
|
|
115
|
-
}, Lowercase<string> & {
|
|
115
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
116
116
|
readonly __hex: true;
|
|
117
117
|
} & {
|
|
118
118
|
readonly __address: true;
|
|
119
|
-
}>;
|
|
120
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
119
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
120
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
121
121
|
readonly __hex: true;
|
|
122
122
|
} & {
|
|
123
123
|
readonly __address: true;
|
|
124
|
-
}, Lowercase<string> & {
|
|
124
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
125
125
|
readonly __hex: true;
|
|
126
126
|
} & {
|
|
127
127
|
readonly __address: true;
|
|
128
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
128
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
129
129
|
}, z.core.$strip>;
|
|
130
130
|
export declare const ModuleManifestZod: z.ZodMiniObject<{
|
|
131
131
|
$schema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -141,24 +141,24 @@ export declare const ModuleManifestZod: z.ZodMiniObject<{
|
|
|
141
141
|
}, z.core.$loose>;
|
|
142
142
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
143
143
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
144
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
144
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
145
145
|
readonly __hex: true;
|
|
146
146
|
} & {
|
|
147
147
|
readonly __address: true;
|
|
148
|
-
}, Lowercase<string> & {
|
|
148
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
149
149
|
readonly __hex: true;
|
|
150
150
|
} & {
|
|
151
151
|
readonly __address: true;
|
|
152
|
-
}>;
|
|
153
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
152
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
153
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
154
154
|
readonly __hex: true;
|
|
155
155
|
} & {
|
|
156
156
|
readonly __address: true;
|
|
157
|
-
}, Lowercase<string> & {
|
|
157
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
158
158
|
readonly __hex: true;
|
|
159
159
|
} & {
|
|
160
160
|
readonly __address: true;
|
|
161
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
161
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
162
162
|
}, z.core.$strip>>;
|
|
163
163
|
}, z.core.$strip>;
|
|
164
164
|
export type ModuleManifest = z.infer<typeof ModuleManifestZod>;
|
|
@@ -177,16 +177,16 @@ export declare const isModuleManifest: <T>(value: T) => value is T & {
|
|
|
177
177
|
description?: string | undefined;
|
|
178
178
|
lazyStart?: boolean | undefined;
|
|
179
179
|
status?: {
|
|
180
|
-
address: Lowercase<string> & {
|
|
180
|
+
address: (Lowercase<string> & {
|
|
181
181
|
readonly __hex: true;
|
|
182
182
|
} & {
|
|
183
183
|
readonly __address: true;
|
|
184
|
-
};
|
|
185
|
-
children?: Record<Lowercase<string> & {
|
|
184
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
185
|
+
children?: Record<(Lowercase<string> & {
|
|
186
186
|
readonly __hex: true;
|
|
187
187
|
} & {
|
|
188
188
|
readonly __address: true;
|
|
189
|
-
}, string | null> | undefined;
|
|
189
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
190
190
|
} | undefined;
|
|
191
191
|
};
|
|
192
192
|
export declare const asModuleManifest: {
|
|
@@ -205,16 +205,16 @@ export declare const asModuleManifest: {
|
|
|
205
205
|
description?: string | undefined;
|
|
206
206
|
lazyStart?: boolean | undefined;
|
|
207
207
|
status?: {
|
|
208
|
-
address: Lowercase<string> & {
|
|
208
|
+
address: (Lowercase<string> & {
|
|
209
209
|
readonly __hex: true;
|
|
210
210
|
} & {
|
|
211
211
|
readonly __address: true;
|
|
212
|
-
};
|
|
213
|
-
children?: Record<Lowercase<string> & {
|
|
212
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
213
|
+
children?: Record<(Lowercase<string> & {
|
|
214
214
|
readonly __hex: true;
|
|
215
215
|
} & {
|
|
216
216
|
readonly __address: true;
|
|
217
|
-
}, string | null> | undefined;
|
|
217
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
218
218
|
} | undefined;
|
|
219
219
|
}) | undefined;
|
|
220
220
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
|
|
@@ -232,16 +232,16 @@ export declare const asModuleManifest: {
|
|
|
232
232
|
description?: string | undefined;
|
|
233
233
|
lazyStart?: boolean | undefined;
|
|
234
234
|
status?: {
|
|
235
|
-
address: Lowercase<string> & {
|
|
235
|
+
address: (Lowercase<string> & {
|
|
236
236
|
readonly __hex: true;
|
|
237
237
|
} & {
|
|
238
238
|
readonly __address: true;
|
|
239
|
-
};
|
|
240
|
-
children?: Record<Lowercase<string> & {
|
|
239
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
240
|
+
children?: Record<(Lowercase<string> & {
|
|
241
241
|
readonly __hex: true;
|
|
242
242
|
} & {
|
|
243
243
|
readonly __address: true;
|
|
244
|
-
}, string | null> | undefined;
|
|
244
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
245
245
|
} | undefined;
|
|
246
246
|
};
|
|
247
247
|
};
|
|
@@ -261,16 +261,16 @@ export declare const toModuleManifest: {
|
|
|
261
261
|
description?: string | undefined;
|
|
262
262
|
lazyStart?: boolean | undefined;
|
|
263
263
|
status?: {
|
|
264
|
-
address: Lowercase<string> & {
|
|
264
|
+
address: (Lowercase<string> & {
|
|
265
265
|
readonly __hex: true;
|
|
266
266
|
} & {
|
|
267
267
|
readonly __address: true;
|
|
268
|
-
};
|
|
269
|
-
children?: Record<Lowercase<string> & {
|
|
268
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
269
|
+
children?: Record<(Lowercase<string> & {
|
|
270
270
|
readonly __hex: true;
|
|
271
271
|
} & {
|
|
272
272
|
readonly __address: true;
|
|
273
|
-
}, string | null> | undefined;
|
|
273
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
274
274
|
} | undefined;
|
|
275
275
|
}) | undefined;
|
|
276
276
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & {
|
|
@@ -288,16 +288,16 @@ export declare const toModuleManifest: {
|
|
|
288
288
|
description?: string | undefined;
|
|
289
289
|
lazyStart?: boolean | undefined;
|
|
290
290
|
status?: {
|
|
291
|
-
address: Lowercase<string> & {
|
|
291
|
+
address: (Lowercase<string> & {
|
|
292
292
|
readonly __hex: true;
|
|
293
293
|
} & {
|
|
294
294
|
readonly __address: true;
|
|
295
|
-
};
|
|
296
|
-
children?: Record<Lowercase<string> & {
|
|
295
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
296
|
+
children?: Record<(Lowercase<string> & {
|
|
297
297
|
readonly __hex: true;
|
|
298
298
|
} & {
|
|
299
299
|
readonly __address: true;
|
|
300
|
-
}, string | null> | undefined;
|
|
300
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
301
301
|
} | undefined;
|
|
302
302
|
};
|
|
303
303
|
};
|
|
@@ -315,24 +315,24 @@ export declare const ModuleManifestReferenceZod: z.ZodMiniUnion<readonly [z.ZodM
|
|
|
315
315
|
}, z.core.$loose>;
|
|
316
316
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
317
317
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
318
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
318
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
319
319
|
readonly __hex: true;
|
|
320
320
|
} & {
|
|
321
321
|
readonly __address: true;
|
|
322
|
-
}, Lowercase<string> & {
|
|
322
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
323
323
|
readonly __hex: true;
|
|
324
324
|
} & {
|
|
325
325
|
readonly __address: true;
|
|
326
|
-
}>;
|
|
327
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
326
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
327
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
328
328
|
readonly __hex: true;
|
|
329
329
|
} & {
|
|
330
330
|
readonly __address: true;
|
|
331
|
-
}, Lowercase<string> & {
|
|
331
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
332
332
|
readonly __hex: true;
|
|
333
333
|
} & {
|
|
334
334
|
readonly __address: true;
|
|
335
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
335
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
336
336
|
}, z.core.$strip>>;
|
|
337
337
|
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
338
338
|
__moduleAlias: true;
|
|
@@ -357,24 +357,24 @@ export declare const NodeManifestZod: z.ZodMiniObject<{
|
|
|
357
357
|
}, z.core.$loose>;
|
|
358
358
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
359
359
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
360
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
360
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
361
361
|
readonly __hex: true;
|
|
362
362
|
} & {
|
|
363
363
|
readonly __address: true;
|
|
364
|
-
}, Lowercase<string> & {
|
|
364
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
365
365
|
readonly __hex: true;
|
|
366
366
|
} & {
|
|
367
367
|
readonly __address: true;
|
|
368
|
-
}>;
|
|
369
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
368
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
369
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
370
370
|
readonly __hex: true;
|
|
371
371
|
} & {
|
|
372
372
|
readonly __address: true;
|
|
373
|
-
}, Lowercase<string> & {
|
|
373
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
374
374
|
readonly __hex: true;
|
|
375
375
|
} & {
|
|
376
376
|
readonly __address: true;
|
|
377
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
377
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
378
378
|
}, z.core.$strip>>;
|
|
379
379
|
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
380
380
|
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -391,24 +391,24 @@ export declare const NodeManifestZod: z.ZodMiniObject<{
|
|
|
391
391
|
}, z.core.$loose>;
|
|
392
392
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
393
393
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
394
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
394
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
395
395
|
readonly __hex: true;
|
|
396
396
|
} & {
|
|
397
397
|
readonly __address: true;
|
|
398
|
-
}, Lowercase<string> & {
|
|
398
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
399
399
|
readonly __hex: true;
|
|
400
400
|
} & {
|
|
401
401
|
readonly __address: true;
|
|
402
|
-
}>;
|
|
403
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
402
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
403
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
404
404
|
readonly __hex: true;
|
|
405
405
|
} & {
|
|
406
406
|
readonly __address: true;
|
|
407
|
-
}, Lowercase<string> & {
|
|
407
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
408
408
|
readonly __hex: true;
|
|
409
409
|
} & {
|
|
410
410
|
readonly __address: true;
|
|
411
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
411
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
412
412
|
}, z.core.$strip>>;
|
|
413
413
|
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
414
414
|
__moduleAlias: true;
|
|
@@ -433,24 +433,24 @@ export declare const NodeManifestZod: z.ZodMiniObject<{
|
|
|
433
433
|
}, z.core.$loose>;
|
|
434
434
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
435
435
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
436
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
436
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
437
437
|
readonly __hex: true;
|
|
438
438
|
} & {
|
|
439
439
|
readonly __address: true;
|
|
440
|
-
}, Lowercase<string> & {
|
|
440
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
441
441
|
readonly __hex: true;
|
|
442
442
|
} & {
|
|
443
443
|
readonly __address: true;
|
|
444
|
-
}>;
|
|
445
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
444
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
445
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
446
446
|
readonly __hex: true;
|
|
447
447
|
} & {
|
|
448
448
|
readonly __address: true;
|
|
449
|
-
}, Lowercase<string> & {
|
|
449
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
450
450
|
readonly __hex: true;
|
|
451
451
|
} & {
|
|
452
452
|
readonly __address: true;
|
|
453
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
453
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
454
454
|
}, z.core.$strip>>;
|
|
455
455
|
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
456
456
|
__moduleAlias: true;
|
|
@@ -479,16 +479,16 @@ export declare const isNodeManifest: <T>(value: T) => value is T & {
|
|
|
479
479
|
description?: string | undefined;
|
|
480
480
|
lazyStart?: boolean | undefined;
|
|
481
481
|
status?: {
|
|
482
|
-
address: Lowercase<string> & {
|
|
482
|
+
address: (Lowercase<string> & {
|
|
483
483
|
readonly __hex: true;
|
|
484
484
|
} & {
|
|
485
485
|
readonly __address: true;
|
|
486
|
-
};
|
|
487
|
-
children?: Record<Lowercase<string> & {
|
|
486
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
487
|
+
children?: Record<(Lowercase<string> & {
|
|
488
488
|
readonly __hex: true;
|
|
489
489
|
} & {
|
|
490
490
|
readonly __address: true;
|
|
491
|
-
}, string | null> | undefined;
|
|
491
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
492
492
|
} | undefined;
|
|
493
493
|
modules?: {
|
|
494
494
|
private?: (Brand<string, {
|
|
@@ -508,16 +508,16 @@ export declare const isNodeManifest: <T>(value: T) => value is T & {
|
|
|
508
508
|
description?: string | undefined;
|
|
509
509
|
lazyStart?: boolean | undefined;
|
|
510
510
|
status?: {
|
|
511
|
-
address: Lowercase<string> & {
|
|
511
|
+
address: (Lowercase<string> & {
|
|
512
512
|
readonly __hex: true;
|
|
513
513
|
} & {
|
|
514
514
|
readonly __address: true;
|
|
515
|
-
};
|
|
516
|
-
children?: Record<Lowercase<string> & {
|
|
515
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
516
|
+
children?: Record<(Lowercase<string> & {
|
|
517
517
|
readonly __hex: true;
|
|
518
518
|
} & {
|
|
519
519
|
readonly __address: true;
|
|
520
|
-
}, string | null> | undefined;
|
|
520
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
521
521
|
} | undefined;
|
|
522
522
|
})[] | undefined;
|
|
523
523
|
public?: (Brand<string, {
|
|
@@ -537,16 +537,16 @@ export declare const isNodeManifest: <T>(value: T) => value is T & {
|
|
|
537
537
|
description?: string | undefined;
|
|
538
538
|
lazyStart?: boolean | undefined;
|
|
539
539
|
status?: {
|
|
540
|
-
address: Lowercase<string> & {
|
|
540
|
+
address: (Lowercase<string> & {
|
|
541
541
|
readonly __hex: true;
|
|
542
542
|
} & {
|
|
543
543
|
readonly __address: true;
|
|
544
|
-
};
|
|
545
|
-
children?: Record<Lowercase<string> & {
|
|
544
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
545
|
+
children?: Record<(Lowercase<string> & {
|
|
546
546
|
readonly __hex: true;
|
|
547
547
|
} & {
|
|
548
548
|
readonly __address: true;
|
|
549
|
-
}, string | null> | undefined;
|
|
549
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
550
550
|
} | undefined;
|
|
551
551
|
})[] | undefined;
|
|
552
552
|
} | undefined;
|
|
@@ -567,16 +567,16 @@ export declare const asNodeManifest: {
|
|
|
567
567
|
description?: string | undefined;
|
|
568
568
|
lazyStart?: boolean | undefined;
|
|
569
569
|
status?: {
|
|
570
|
-
address: Lowercase<string> & {
|
|
570
|
+
address: (Lowercase<string> & {
|
|
571
571
|
readonly __hex: true;
|
|
572
572
|
} & {
|
|
573
573
|
readonly __address: true;
|
|
574
|
-
};
|
|
575
|
-
children?: Record<Lowercase<string> & {
|
|
574
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
575
|
+
children?: Record<(Lowercase<string> & {
|
|
576
576
|
readonly __hex: true;
|
|
577
577
|
} & {
|
|
578
578
|
readonly __address: true;
|
|
579
|
-
}, string | null> | undefined;
|
|
579
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
580
580
|
} | undefined;
|
|
581
581
|
modules?: {
|
|
582
582
|
private?: (Brand<string, {
|
|
@@ -596,16 +596,16 @@ export declare const asNodeManifest: {
|
|
|
596
596
|
description?: string | undefined;
|
|
597
597
|
lazyStart?: boolean | undefined;
|
|
598
598
|
status?: {
|
|
599
|
-
address: Lowercase<string> & {
|
|
599
|
+
address: (Lowercase<string> & {
|
|
600
600
|
readonly __hex: true;
|
|
601
601
|
} & {
|
|
602
602
|
readonly __address: true;
|
|
603
|
-
};
|
|
604
|
-
children?: Record<Lowercase<string> & {
|
|
603
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
604
|
+
children?: Record<(Lowercase<string> & {
|
|
605
605
|
readonly __hex: true;
|
|
606
606
|
} & {
|
|
607
607
|
readonly __address: true;
|
|
608
|
-
}, string | null> | undefined;
|
|
608
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
609
609
|
} | undefined;
|
|
610
610
|
})[] | undefined;
|
|
611
611
|
public?: (Brand<string, {
|
|
@@ -625,16 +625,16 @@ export declare const asNodeManifest: {
|
|
|
625
625
|
description?: string | undefined;
|
|
626
626
|
lazyStart?: boolean | undefined;
|
|
627
627
|
status?: {
|
|
628
|
-
address: Lowercase<string> & {
|
|
628
|
+
address: (Lowercase<string> & {
|
|
629
629
|
readonly __hex: true;
|
|
630
630
|
} & {
|
|
631
631
|
readonly __address: true;
|
|
632
|
-
};
|
|
633
|
-
children?: Record<Lowercase<string> & {
|
|
632
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
633
|
+
children?: Record<(Lowercase<string> & {
|
|
634
634
|
readonly __hex: true;
|
|
635
635
|
} & {
|
|
636
636
|
readonly __address: true;
|
|
637
|
-
}, string | null> | undefined;
|
|
637
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
638
638
|
} | undefined;
|
|
639
639
|
})[] | undefined;
|
|
640
640
|
} | undefined;
|
|
@@ -654,16 +654,16 @@ export declare const asNodeManifest: {
|
|
|
654
654
|
description?: string | undefined;
|
|
655
655
|
lazyStart?: boolean | undefined;
|
|
656
656
|
status?: {
|
|
657
|
-
address: Lowercase<string> & {
|
|
657
|
+
address: (Lowercase<string> & {
|
|
658
658
|
readonly __hex: true;
|
|
659
659
|
} & {
|
|
660
660
|
readonly __address: true;
|
|
661
|
-
};
|
|
662
|
-
children?: Record<Lowercase<string> & {
|
|
661
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
662
|
+
children?: Record<(Lowercase<string> & {
|
|
663
663
|
readonly __hex: true;
|
|
664
664
|
} & {
|
|
665
665
|
readonly __address: true;
|
|
666
|
-
}, string | null> | undefined;
|
|
666
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
667
667
|
} | undefined;
|
|
668
668
|
modules?: {
|
|
669
669
|
private?: (Brand<string, {
|
|
@@ -683,16 +683,16 @@ export declare const asNodeManifest: {
|
|
|
683
683
|
description?: string | undefined;
|
|
684
684
|
lazyStart?: boolean | undefined;
|
|
685
685
|
status?: {
|
|
686
|
-
address: Lowercase<string> & {
|
|
686
|
+
address: (Lowercase<string> & {
|
|
687
687
|
readonly __hex: true;
|
|
688
688
|
} & {
|
|
689
689
|
readonly __address: true;
|
|
690
|
-
};
|
|
691
|
-
children?: Record<Lowercase<string> & {
|
|
690
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
691
|
+
children?: Record<(Lowercase<string> & {
|
|
692
692
|
readonly __hex: true;
|
|
693
693
|
} & {
|
|
694
694
|
readonly __address: true;
|
|
695
|
-
}, string | null> | undefined;
|
|
695
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
696
696
|
} | undefined;
|
|
697
697
|
})[] | undefined;
|
|
698
698
|
public?: (Brand<string, {
|
|
@@ -712,16 +712,16 @@ export declare const asNodeManifest: {
|
|
|
712
712
|
description?: string | undefined;
|
|
713
713
|
lazyStart?: boolean | undefined;
|
|
714
714
|
status?: {
|
|
715
|
-
address: Lowercase<string> & {
|
|
715
|
+
address: (Lowercase<string> & {
|
|
716
716
|
readonly __hex: true;
|
|
717
717
|
} & {
|
|
718
718
|
readonly __address: true;
|
|
719
|
-
};
|
|
720
|
-
children?: Record<Lowercase<string> & {
|
|
719
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
720
|
+
children?: Record<(Lowercase<string> & {
|
|
721
721
|
readonly __hex: true;
|
|
722
722
|
} & {
|
|
723
723
|
readonly __address: true;
|
|
724
|
-
}, string | null> | undefined;
|
|
724
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
725
725
|
} | undefined;
|
|
726
726
|
})[] | undefined;
|
|
727
727
|
} | undefined;
|
|
@@ -743,16 +743,16 @@ export declare const toNodeManifest: {
|
|
|
743
743
|
description?: string | undefined;
|
|
744
744
|
lazyStart?: boolean | undefined;
|
|
745
745
|
status?: {
|
|
746
|
-
address: Lowercase<string> & {
|
|
746
|
+
address: (Lowercase<string> & {
|
|
747
747
|
readonly __hex: true;
|
|
748
748
|
} & {
|
|
749
749
|
readonly __address: true;
|
|
750
|
-
};
|
|
751
|
-
children?: Record<Lowercase<string> & {
|
|
750
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
751
|
+
children?: Record<(Lowercase<string> & {
|
|
752
752
|
readonly __hex: true;
|
|
753
753
|
} & {
|
|
754
754
|
readonly __address: true;
|
|
755
|
-
}, string | null> | undefined;
|
|
755
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
756
756
|
} | undefined;
|
|
757
757
|
modules?: {
|
|
758
758
|
private?: (Brand<string, {
|
|
@@ -772,16 +772,16 @@ export declare const toNodeManifest: {
|
|
|
772
772
|
description?: string | undefined;
|
|
773
773
|
lazyStart?: boolean | undefined;
|
|
774
774
|
status?: {
|
|
775
|
-
address: Lowercase<string> & {
|
|
775
|
+
address: (Lowercase<string> & {
|
|
776
776
|
readonly __hex: true;
|
|
777
777
|
} & {
|
|
778
778
|
readonly __address: true;
|
|
779
|
-
};
|
|
780
|
-
children?: Record<Lowercase<string> & {
|
|
779
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
780
|
+
children?: Record<(Lowercase<string> & {
|
|
781
781
|
readonly __hex: true;
|
|
782
782
|
} & {
|
|
783
783
|
readonly __address: true;
|
|
784
|
-
}, string | null> | undefined;
|
|
784
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
785
785
|
} | undefined;
|
|
786
786
|
})[] | undefined;
|
|
787
787
|
public?: (Brand<string, {
|
|
@@ -801,16 +801,16 @@ export declare const toNodeManifest: {
|
|
|
801
801
|
description?: string | undefined;
|
|
802
802
|
lazyStart?: boolean | undefined;
|
|
803
803
|
status?: {
|
|
804
|
-
address: Lowercase<string> & {
|
|
804
|
+
address: (Lowercase<string> & {
|
|
805
805
|
readonly __hex: true;
|
|
806
806
|
} & {
|
|
807
807
|
readonly __address: true;
|
|
808
|
-
};
|
|
809
|
-
children?: Record<Lowercase<string> & {
|
|
808
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
809
|
+
children?: Record<(Lowercase<string> & {
|
|
810
810
|
readonly __hex: true;
|
|
811
811
|
} & {
|
|
812
812
|
readonly __address: true;
|
|
813
|
-
}, string | null> | undefined;
|
|
813
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
814
814
|
} | undefined;
|
|
815
815
|
})[] | undefined;
|
|
816
816
|
} | undefined;
|
|
@@ -830,16 +830,16 @@ export declare const toNodeManifest: {
|
|
|
830
830
|
description?: string | undefined;
|
|
831
831
|
lazyStart?: boolean | undefined;
|
|
832
832
|
status?: {
|
|
833
|
-
address: Lowercase<string> & {
|
|
833
|
+
address: (Lowercase<string> & {
|
|
834
834
|
readonly __hex: true;
|
|
835
835
|
} & {
|
|
836
836
|
readonly __address: true;
|
|
837
|
-
};
|
|
838
|
-
children?: Record<Lowercase<string> & {
|
|
837
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
838
|
+
children?: Record<(Lowercase<string> & {
|
|
839
839
|
readonly __hex: true;
|
|
840
840
|
} & {
|
|
841
841
|
readonly __address: true;
|
|
842
|
-
}, string | null> | undefined;
|
|
842
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
843
843
|
} | undefined;
|
|
844
844
|
modules?: {
|
|
845
845
|
private?: (Brand<string, {
|
|
@@ -859,16 +859,16 @@ export declare const toNodeManifest: {
|
|
|
859
859
|
description?: string | undefined;
|
|
860
860
|
lazyStart?: boolean | undefined;
|
|
861
861
|
status?: {
|
|
862
|
-
address: Lowercase<string> & {
|
|
862
|
+
address: (Lowercase<string> & {
|
|
863
863
|
readonly __hex: true;
|
|
864
864
|
} & {
|
|
865
865
|
readonly __address: true;
|
|
866
|
-
};
|
|
867
|
-
children?: Record<Lowercase<string> & {
|
|
866
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
867
|
+
children?: Record<(Lowercase<string> & {
|
|
868
868
|
readonly __hex: true;
|
|
869
869
|
} & {
|
|
870
870
|
readonly __address: true;
|
|
871
|
-
}, string | null> | undefined;
|
|
871
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
872
872
|
} | undefined;
|
|
873
873
|
})[] | undefined;
|
|
874
874
|
public?: (Brand<string, {
|
|
@@ -888,16 +888,16 @@ export declare const toNodeManifest: {
|
|
|
888
888
|
description?: string | undefined;
|
|
889
889
|
lazyStart?: boolean | undefined;
|
|
890
890
|
status?: {
|
|
891
|
-
address: Lowercase<string> & {
|
|
891
|
+
address: (Lowercase<string> & {
|
|
892
892
|
readonly __hex: true;
|
|
893
893
|
} & {
|
|
894
894
|
readonly __address: true;
|
|
895
|
-
};
|
|
896
|
-
children?: Record<Lowercase<string> & {
|
|
895
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
896
|
+
children?: Record<(Lowercase<string> & {
|
|
897
897
|
readonly __hex: true;
|
|
898
898
|
} & {
|
|
899
899
|
readonly __address: true;
|
|
900
|
-
}, string | null> | undefined;
|
|
900
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
901
901
|
} | undefined;
|
|
902
902
|
})[] | undefined;
|
|
903
903
|
} | undefined;
|
|
@@ -928,24 +928,24 @@ export declare const PackageManifestZod: z.ZodMiniObject<{
|
|
|
928
928
|
}, z.core.$loose>;
|
|
929
929
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
930
930
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
931
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
931
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
932
932
|
readonly __hex: true;
|
|
933
933
|
} & {
|
|
934
934
|
readonly __address: true;
|
|
935
|
-
}, Lowercase<string> & {
|
|
935
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
936
936
|
readonly __hex: true;
|
|
937
937
|
} & {
|
|
938
938
|
readonly __address: true;
|
|
939
|
-
}>;
|
|
940
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
939
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
940
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
941
941
|
readonly __hex: true;
|
|
942
942
|
} & {
|
|
943
943
|
readonly __address: true;
|
|
944
|
-
}, Lowercase<string> & {
|
|
944
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
945
945
|
readonly __hex: true;
|
|
946
946
|
} & {
|
|
947
947
|
readonly __address: true;
|
|
948
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
948
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
949
949
|
}, z.core.$strip>>;
|
|
950
950
|
}, z.core.$strip>>>;
|
|
951
951
|
nodes: z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -962,24 +962,24 @@ export declare const PackageManifestZod: z.ZodMiniObject<{
|
|
|
962
962
|
}, z.core.$loose>;
|
|
963
963
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
964
964
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
965
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
965
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
966
966
|
readonly __hex: true;
|
|
967
967
|
} & {
|
|
968
968
|
readonly __address: true;
|
|
969
|
-
}, Lowercase<string> & {
|
|
969
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
970
970
|
readonly __hex: true;
|
|
971
971
|
} & {
|
|
972
972
|
readonly __address: true;
|
|
973
|
-
}>;
|
|
974
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
973
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
974
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
975
975
|
readonly __hex: true;
|
|
976
976
|
} & {
|
|
977
977
|
readonly __address: true;
|
|
978
|
-
}, Lowercase<string> & {
|
|
978
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
979
979
|
readonly __hex: true;
|
|
980
980
|
} & {
|
|
981
981
|
readonly __address: true;
|
|
982
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
982
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
983
983
|
}, z.core.$strip>>;
|
|
984
984
|
modules: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
985
985
|
private: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -996,24 +996,24 @@ export declare const PackageManifestZod: z.ZodMiniObject<{
|
|
|
996
996
|
}, z.core.$loose>;
|
|
997
997
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
998
998
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
999
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
999
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
1000
1000
|
readonly __hex: true;
|
|
1001
1001
|
} & {
|
|
1002
1002
|
readonly __address: true;
|
|
1003
|
-
}, Lowercase<string> & {
|
|
1003
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
1004
1004
|
readonly __hex: true;
|
|
1005
1005
|
} & {
|
|
1006
1006
|
readonly __address: true;
|
|
1007
|
-
}>;
|
|
1008
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
1007
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
1008
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
1009
1009
|
readonly __hex: true;
|
|
1010
1010
|
} & {
|
|
1011
1011
|
readonly __address: true;
|
|
1012
|
-
}, Lowercase<string> & {
|
|
1012
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
1013
1013
|
readonly __hex: true;
|
|
1014
1014
|
} & {
|
|
1015
1015
|
readonly __address: true;
|
|
1016
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1016
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1017
1017
|
}, z.core.$strip>>;
|
|
1018
1018
|
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
1019
1019
|
__moduleAlias: true;
|
|
@@ -1038,24 +1038,24 @@ export declare const PackageManifestZod: z.ZodMiniObject<{
|
|
|
1038
1038
|
}, z.core.$loose>;
|
|
1039
1039
|
lazyStart: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1040
1040
|
status: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1041
|
-
address: z.ZodMiniCustom<Lowercase<string> & {
|
|
1041
|
+
address: z.ZodMiniCustom<(Lowercase<string> & {
|
|
1042
1042
|
readonly __hex: true;
|
|
1043
1043
|
} & {
|
|
1044
1044
|
readonly __address: true;
|
|
1045
|
-
}, Lowercase<string> & {
|
|
1045
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
1046
1046
|
readonly __hex: true;
|
|
1047
1047
|
} & {
|
|
1048
1048
|
readonly __address: true;
|
|
1049
|
-
}>;
|
|
1050
|
-
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<Lowercase<string> & {
|
|
1049
|
+
}) | import("@xyo-network/address").XyoQuant1Address>;
|
|
1050
|
+
children: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniCustom<(Lowercase<string> & {
|
|
1051
1051
|
readonly __hex: true;
|
|
1052
1052
|
} & {
|
|
1053
1053
|
readonly __address: true;
|
|
1054
|
-
}, Lowercase<string> & {
|
|
1054
|
+
}) | import("@xyo-network/address").XyoQuant1Address, (Lowercase<string> & {
|
|
1055
1055
|
readonly __hex: true;
|
|
1056
1056
|
} & {
|
|
1057
1057
|
readonly __address: true;
|
|
1058
|
-
}>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1058
|
+
}) | import("@xyo-network/address").XyoQuant1Address>, z.ZodMiniNullable<z.ZodMiniString<string>>>>;
|
|
1059
1059
|
}, z.core.$strip>>;
|
|
1060
1060
|
}, z.core.$strip>, z.core.$ZodType<Brand<string, {
|
|
1061
1061
|
__moduleAlias: true;
|
|
@@ -1086,16 +1086,16 @@ export declare const isPackageManifest: <T>(value: T) => value is T & {
|
|
|
1086
1086
|
description?: string | undefined;
|
|
1087
1087
|
lazyStart?: boolean | undefined;
|
|
1088
1088
|
status?: {
|
|
1089
|
-
address: Lowercase<string> & {
|
|
1089
|
+
address: (Lowercase<string> & {
|
|
1090
1090
|
readonly __hex: true;
|
|
1091
1091
|
} & {
|
|
1092
1092
|
readonly __address: true;
|
|
1093
|
-
};
|
|
1094
|
-
children?: Record<Lowercase<string> & {
|
|
1093
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1094
|
+
children?: Record<(Lowercase<string> & {
|
|
1095
1095
|
readonly __hex: true;
|
|
1096
1096
|
} & {
|
|
1097
1097
|
readonly __address: true;
|
|
1098
|
-
}, string | null> | undefined;
|
|
1098
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1099
1099
|
} | undefined;
|
|
1100
1100
|
modules?: {
|
|
1101
1101
|
private?: (Brand<string, {
|
|
@@ -1115,16 +1115,16 @@ export declare const isPackageManifest: <T>(value: T) => value is T & {
|
|
|
1115
1115
|
description?: string | undefined;
|
|
1116
1116
|
lazyStart?: boolean | undefined;
|
|
1117
1117
|
status?: {
|
|
1118
|
-
address: Lowercase<string> & {
|
|
1118
|
+
address: (Lowercase<string> & {
|
|
1119
1119
|
readonly __hex: true;
|
|
1120
1120
|
} & {
|
|
1121
1121
|
readonly __address: true;
|
|
1122
|
-
};
|
|
1123
|
-
children?: Record<Lowercase<string> & {
|
|
1122
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1123
|
+
children?: Record<(Lowercase<string> & {
|
|
1124
1124
|
readonly __hex: true;
|
|
1125
1125
|
} & {
|
|
1126
1126
|
readonly __address: true;
|
|
1127
|
-
}, string | null> | undefined;
|
|
1127
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1128
1128
|
} | undefined;
|
|
1129
1129
|
})[] | undefined;
|
|
1130
1130
|
public?: (Brand<string, {
|
|
@@ -1144,16 +1144,16 @@ export declare const isPackageManifest: <T>(value: T) => value is T & {
|
|
|
1144
1144
|
description?: string | undefined;
|
|
1145
1145
|
lazyStart?: boolean | undefined;
|
|
1146
1146
|
status?: {
|
|
1147
|
-
address: Lowercase<string> & {
|
|
1147
|
+
address: (Lowercase<string> & {
|
|
1148
1148
|
readonly __hex: true;
|
|
1149
1149
|
} & {
|
|
1150
1150
|
readonly __address: true;
|
|
1151
|
-
};
|
|
1152
|
-
children?: Record<Lowercase<string> & {
|
|
1151
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1152
|
+
children?: Record<(Lowercase<string> & {
|
|
1153
1153
|
readonly __hex: true;
|
|
1154
1154
|
} & {
|
|
1155
1155
|
readonly __address: true;
|
|
1156
|
-
}, string | null> | undefined;
|
|
1156
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1157
1157
|
} | undefined;
|
|
1158
1158
|
})[] | undefined;
|
|
1159
1159
|
} | undefined;
|
|
@@ -1177,16 +1177,16 @@ export declare const isPackageManifest: <T>(value: T) => value is T & {
|
|
|
1177
1177
|
description?: string | undefined;
|
|
1178
1178
|
lazyStart?: boolean | undefined;
|
|
1179
1179
|
status?: {
|
|
1180
|
-
address: Lowercase<string> & {
|
|
1180
|
+
address: (Lowercase<string> & {
|
|
1181
1181
|
readonly __hex: true;
|
|
1182
1182
|
} & {
|
|
1183
1183
|
readonly __address: true;
|
|
1184
|
-
};
|
|
1185
|
-
children?: Record<Lowercase<string> & {
|
|
1184
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1185
|
+
children?: Record<(Lowercase<string> & {
|
|
1186
1186
|
readonly __hex: true;
|
|
1187
1187
|
} & {
|
|
1188
1188
|
readonly __address: true;
|
|
1189
|
-
}, string | null> | undefined;
|
|
1189
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1190
1190
|
} | undefined;
|
|
1191
1191
|
}> | undefined;
|
|
1192
1192
|
};
|
|
@@ -1207,16 +1207,16 @@ export declare const asPackageManifest: {
|
|
|
1207
1207
|
description?: string | undefined;
|
|
1208
1208
|
lazyStart?: boolean | undefined;
|
|
1209
1209
|
status?: {
|
|
1210
|
-
address: Lowercase<string> & {
|
|
1210
|
+
address: (Lowercase<string> & {
|
|
1211
1211
|
readonly __hex: true;
|
|
1212
1212
|
} & {
|
|
1213
1213
|
readonly __address: true;
|
|
1214
|
-
};
|
|
1215
|
-
children?: Record<Lowercase<string> & {
|
|
1214
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1215
|
+
children?: Record<(Lowercase<string> & {
|
|
1216
1216
|
readonly __hex: true;
|
|
1217
1217
|
} & {
|
|
1218
1218
|
readonly __address: true;
|
|
1219
|
-
}, string | null> | undefined;
|
|
1219
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1220
1220
|
} | undefined;
|
|
1221
1221
|
modules?: {
|
|
1222
1222
|
private?: (Brand<string, {
|
|
@@ -1236,16 +1236,16 @@ export declare const asPackageManifest: {
|
|
|
1236
1236
|
description?: string | undefined;
|
|
1237
1237
|
lazyStart?: boolean | undefined;
|
|
1238
1238
|
status?: {
|
|
1239
|
-
address: Lowercase<string> & {
|
|
1239
|
+
address: (Lowercase<string> & {
|
|
1240
1240
|
readonly __hex: true;
|
|
1241
1241
|
} & {
|
|
1242
1242
|
readonly __address: true;
|
|
1243
|
-
};
|
|
1244
|
-
children?: Record<Lowercase<string> & {
|
|
1243
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1244
|
+
children?: Record<(Lowercase<string> & {
|
|
1245
1245
|
readonly __hex: true;
|
|
1246
1246
|
} & {
|
|
1247
1247
|
readonly __address: true;
|
|
1248
|
-
}, string | null> | undefined;
|
|
1248
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1249
1249
|
} | undefined;
|
|
1250
1250
|
})[] | undefined;
|
|
1251
1251
|
public?: (Brand<string, {
|
|
@@ -1265,16 +1265,16 @@ export declare const asPackageManifest: {
|
|
|
1265
1265
|
description?: string | undefined;
|
|
1266
1266
|
lazyStart?: boolean | undefined;
|
|
1267
1267
|
status?: {
|
|
1268
|
-
address: Lowercase<string> & {
|
|
1268
|
+
address: (Lowercase<string> & {
|
|
1269
1269
|
readonly __hex: true;
|
|
1270
1270
|
} & {
|
|
1271
1271
|
readonly __address: true;
|
|
1272
|
-
};
|
|
1273
|
-
children?: Record<Lowercase<string> & {
|
|
1272
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1273
|
+
children?: Record<(Lowercase<string> & {
|
|
1274
1274
|
readonly __hex: true;
|
|
1275
1275
|
} & {
|
|
1276
1276
|
readonly __address: true;
|
|
1277
|
-
}, string | null> | undefined;
|
|
1277
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1278
1278
|
} | undefined;
|
|
1279
1279
|
})[] | undefined;
|
|
1280
1280
|
} | undefined;
|
|
@@ -1298,16 +1298,16 @@ export declare const asPackageManifest: {
|
|
|
1298
1298
|
description?: string | undefined;
|
|
1299
1299
|
lazyStart?: boolean | undefined;
|
|
1300
1300
|
status?: {
|
|
1301
|
-
address: Lowercase<string> & {
|
|
1301
|
+
address: (Lowercase<string> & {
|
|
1302
1302
|
readonly __hex: true;
|
|
1303
1303
|
} & {
|
|
1304
1304
|
readonly __address: true;
|
|
1305
|
-
};
|
|
1306
|
-
children?: Record<Lowercase<string> & {
|
|
1305
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1306
|
+
children?: Record<(Lowercase<string> & {
|
|
1307
1307
|
readonly __hex: true;
|
|
1308
1308
|
} & {
|
|
1309
1309
|
readonly __address: true;
|
|
1310
|
-
}, string | null> | undefined;
|
|
1310
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1311
1311
|
} | undefined;
|
|
1312
1312
|
}> | undefined;
|
|
1313
1313
|
}) | undefined;
|
|
@@ -1327,16 +1327,16 @@ export declare const asPackageManifest: {
|
|
|
1327
1327
|
description?: string | undefined;
|
|
1328
1328
|
lazyStart?: boolean | undefined;
|
|
1329
1329
|
status?: {
|
|
1330
|
-
address: Lowercase<string> & {
|
|
1330
|
+
address: (Lowercase<string> & {
|
|
1331
1331
|
readonly __hex: true;
|
|
1332
1332
|
} & {
|
|
1333
1333
|
readonly __address: true;
|
|
1334
|
-
};
|
|
1335
|
-
children?: Record<Lowercase<string> & {
|
|
1334
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1335
|
+
children?: Record<(Lowercase<string> & {
|
|
1336
1336
|
readonly __hex: true;
|
|
1337
1337
|
} & {
|
|
1338
1338
|
readonly __address: true;
|
|
1339
|
-
}, string | null> | undefined;
|
|
1339
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1340
1340
|
} | undefined;
|
|
1341
1341
|
modules?: {
|
|
1342
1342
|
private?: (Brand<string, {
|
|
@@ -1356,16 +1356,16 @@ export declare const asPackageManifest: {
|
|
|
1356
1356
|
description?: string | undefined;
|
|
1357
1357
|
lazyStart?: boolean | undefined;
|
|
1358
1358
|
status?: {
|
|
1359
|
-
address: Lowercase<string> & {
|
|
1359
|
+
address: (Lowercase<string> & {
|
|
1360
1360
|
readonly __hex: true;
|
|
1361
1361
|
} & {
|
|
1362
1362
|
readonly __address: true;
|
|
1363
|
-
};
|
|
1364
|
-
children?: Record<Lowercase<string> & {
|
|
1363
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1364
|
+
children?: Record<(Lowercase<string> & {
|
|
1365
1365
|
readonly __hex: true;
|
|
1366
1366
|
} & {
|
|
1367
1367
|
readonly __address: true;
|
|
1368
|
-
}, string | null> | undefined;
|
|
1368
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1369
1369
|
} | undefined;
|
|
1370
1370
|
})[] | undefined;
|
|
1371
1371
|
public?: (Brand<string, {
|
|
@@ -1385,16 +1385,16 @@ export declare const asPackageManifest: {
|
|
|
1385
1385
|
description?: string | undefined;
|
|
1386
1386
|
lazyStart?: boolean | undefined;
|
|
1387
1387
|
status?: {
|
|
1388
|
-
address: Lowercase<string> & {
|
|
1388
|
+
address: (Lowercase<string> & {
|
|
1389
1389
|
readonly __hex: true;
|
|
1390
1390
|
} & {
|
|
1391
1391
|
readonly __address: true;
|
|
1392
|
-
};
|
|
1393
|
-
children?: Record<Lowercase<string> & {
|
|
1392
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1393
|
+
children?: Record<(Lowercase<string> & {
|
|
1394
1394
|
readonly __hex: true;
|
|
1395
1395
|
} & {
|
|
1396
1396
|
readonly __address: true;
|
|
1397
|
-
}, string | null> | undefined;
|
|
1397
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1398
1398
|
} | undefined;
|
|
1399
1399
|
})[] | undefined;
|
|
1400
1400
|
} | undefined;
|
|
@@ -1418,16 +1418,16 @@ export declare const asPackageManifest: {
|
|
|
1418
1418
|
description?: string | undefined;
|
|
1419
1419
|
lazyStart?: boolean | undefined;
|
|
1420
1420
|
status?: {
|
|
1421
|
-
address: Lowercase<string> & {
|
|
1421
|
+
address: (Lowercase<string> & {
|
|
1422
1422
|
readonly __hex: true;
|
|
1423
1423
|
} & {
|
|
1424
1424
|
readonly __address: true;
|
|
1425
|
-
};
|
|
1426
|
-
children?: Record<Lowercase<string> & {
|
|
1425
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1426
|
+
children?: Record<(Lowercase<string> & {
|
|
1427
1427
|
readonly __hex: true;
|
|
1428
1428
|
} & {
|
|
1429
1429
|
readonly __address: true;
|
|
1430
|
-
}, string | null> | undefined;
|
|
1430
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1431
1431
|
} | undefined;
|
|
1432
1432
|
}> | undefined;
|
|
1433
1433
|
};
|
|
@@ -1449,16 +1449,16 @@ export declare const toPackageManifest: {
|
|
|
1449
1449
|
description?: string | undefined;
|
|
1450
1450
|
lazyStart?: boolean | undefined;
|
|
1451
1451
|
status?: {
|
|
1452
|
-
address: Lowercase<string> & {
|
|
1452
|
+
address: (Lowercase<string> & {
|
|
1453
1453
|
readonly __hex: true;
|
|
1454
1454
|
} & {
|
|
1455
1455
|
readonly __address: true;
|
|
1456
|
-
};
|
|
1457
|
-
children?: Record<Lowercase<string> & {
|
|
1456
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1457
|
+
children?: Record<(Lowercase<string> & {
|
|
1458
1458
|
readonly __hex: true;
|
|
1459
1459
|
} & {
|
|
1460
1460
|
readonly __address: true;
|
|
1461
|
-
}, string | null> | undefined;
|
|
1461
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1462
1462
|
} | undefined;
|
|
1463
1463
|
modules?: {
|
|
1464
1464
|
private?: (Brand<string, {
|
|
@@ -1478,16 +1478,16 @@ export declare const toPackageManifest: {
|
|
|
1478
1478
|
description?: string | undefined;
|
|
1479
1479
|
lazyStart?: boolean | undefined;
|
|
1480
1480
|
status?: {
|
|
1481
|
-
address: Lowercase<string> & {
|
|
1481
|
+
address: (Lowercase<string> & {
|
|
1482
1482
|
readonly __hex: true;
|
|
1483
1483
|
} & {
|
|
1484
1484
|
readonly __address: true;
|
|
1485
|
-
};
|
|
1486
|
-
children?: Record<Lowercase<string> & {
|
|
1485
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1486
|
+
children?: Record<(Lowercase<string> & {
|
|
1487
1487
|
readonly __hex: true;
|
|
1488
1488
|
} & {
|
|
1489
1489
|
readonly __address: true;
|
|
1490
|
-
}, string | null> | undefined;
|
|
1490
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1491
1491
|
} | undefined;
|
|
1492
1492
|
})[] | undefined;
|
|
1493
1493
|
public?: (Brand<string, {
|
|
@@ -1507,16 +1507,16 @@ export declare const toPackageManifest: {
|
|
|
1507
1507
|
description?: string | undefined;
|
|
1508
1508
|
lazyStart?: boolean | undefined;
|
|
1509
1509
|
status?: {
|
|
1510
|
-
address: Lowercase<string> & {
|
|
1510
|
+
address: (Lowercase<string> & {
|
|
1511
1511
|
readonly __hex: true;
|
|
1512
1512
|
} & {
|
|
1513
1513
|
readonly __address: true;
|
|
1514
|
-
};
|
|
1515
|
-
children?: Record<Lowercase<string> & {
|
|
1514
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1515
|
+
children?: Record<(Lowercase<string> & {
|
|
1516
1516
|
readonly __hex: true;
|
|
1517
1517
|
} & {
|
|
1518
1518
|
readonly __address: true;
|
|
1519
|
-
}, string | null> | undefined;
|
|
1519
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1520
1520
|
} | undefined;
|
|
1521
1521
|
})[] | undefined;
|
|
1522
1522
|
} | undefined;
|
|
@@ -1540,16 +1540,16 @@ export declare const toPackageManifest: {
|
|
|
1540
1540
|
description?: string | undefined;
|
|
1541
1541
|
lazyStart?: boolean | undefined;
|
|
1542
1542
|
status?: {
|
|
1543
|
-
address: Lowercase<string> & {
|
|
1543
|
+
address: (Lowercase<string> & {
|
|
1544
1544
|
readonly __hex: true;
|
|
1545
1545
|
} & {
|
|
1546
1546
|
readonly __address: true;
|
|
1547
|
-
};
|
|
1548
|
-
children?: Record<Lowercase<string> & {
|
|
1547
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1548
|
+
children?: Record<(Lowercase<string> & {
|
|
1549
1549
|
readonly __hex: true;
|
|
1550
1550
|
} & {
|
|
1551
1551
|
readonly __address: true;
|
|
1552
|
-
}, string | null> | undefined;
|
|
1552
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1553
1553
|
} | undefined;
|
|
1554
1554
|
}> | undefined;
|
|
1555
1555
|
}) | undefined;
|
|
@@ -1569,16 +1569,16 @@ export declare const toPackageManifest: {
|
|
|
1569
1569
|
description?: string | undefined;
|
|
1570
1570
|
lazyStart?: boolean | undefined;
|
|
1571
1571
|
status?: {
|
|
1572
|
-
address: Lowercase<string> & {
|
|
1572
|
+
address: (Lowercase<string> & {
|
|
1573
1573
|
readonly __hex: true;
|
|
1574
1574
|
} & {
|
|
1575
1575
|
readonly __address: true;
|
|
1576
|
-
};
|
|
1577
|
-
children?: Record<Lowercase<string> & {
|
|
1576
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1577
|
+
children?: Record<(Lowercase<string> & {
|
|
1578
1578
|
readonly __hex: true;
|
|
1579
1579
|
} & {
|
|
1580
1580
|
readonly __address: true;
|
|
1581
|
-
}, string | null> | undefined;
|
|
1581
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1582
1582
|
} | undefined;
|
|
1583
1583
|
modules?: {
|
|
1584
1584
|
private?: (Brand<string, {
|
|
@@ -1598,16 +1598,16 @@ export declare const toPackageManifest: {
|
|
|
1598
1598
|
description?: string | undefined;
|
|
1599
1599
|
lazyStart?: boolean | undefined;
|
|
1600
1600
|
status?: {
|
|
1601
|
-
address: Lowercase<string> & {
|
|
1601
|
+
address: (Lowercase<string> & {
|
|
1602
1602
|
readonly __hex: true;
|
|
1603
1603
|
} & {
|
|
1604
1604
|
readonly __address: true;
|
|
1605
|
-
};
|
|
1606
|
-
children?: Record<Lowercase<string> & {
|
|
1605
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1606
|
+
children?: Record<(Lowercase<string> & {
|
|
1607
1607
|
readonly __hex: true;
|
|
1608
1608
|
} & {
|
|
1609
1609
|
readonly __address: true;
|
|
1610
|
-
}, string | null> | undefined;
|
|
1610
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1611
1611
|
} | undefined;
|
|
1612
1612
|
})[] | undefined;
|
|
1613
1613
|
public?: (Brand<string, {
|
|
@@ -1627,16 +1627,16 @@ export declare const toPackageManifest: {
|
|
|
1627
1627
|
description?: string | undefined;
|
|
1628
1628
|
lazyStart?: boolean | undefined;
|
|
1629
1629
|
status?: {
|
|
1630
|
-
address: Lowercase<string> & {
|
|
1630
|
+
address: (Lowercase<string> & {
|
|
1631
1631
|
readonly __hex: true;
|
|
1632
1632
|
} & {
|
|
1633
1633
|
readonly __address: true;
|
|
1634
|
-
};
|
|
1635
|
-
children?: Record<Lowercase<string> & {
|
|
1634
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1635
|
+
children?: Record<(Lowercase<string> & {
|
|
1636
1636
|
readonly __hex: true;
|
|
1637
1637
|
} & {
|
|
1638
1638
|
readonly __address: true;
|
|
1639
|
-
}, string | null> | undefined;
|
|
1639
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1640
1640
|
} | undefined;
|
|
1641
1641
|
})[] | undefined;
|
|
1642
1642
|
} | undefined;
|
|
@@ -1660,16 +1660,16 @@ export declare const toPackageManifest: {
|
|
|
1660
1660
|
description?: string | undefined;
|
|
1661
1661
|
lazyStart?: boolean | undefined;
|
|
1662
1662
|
status?: {
|
|
1663
|
-
address: Lowercase<string> & {
|
|
1663
|
+
address: (Lowercase<string> & {
|
|
1664
1664
|
readonly __hex: true;
|
|
1665
1665
|
} & {
|
|
1666
1666
|
readonly __address: true;
|
|
1667
|
-
};
|
|
1668
|
-
children?: Record<Lowercase<string> & {
|
|
1667
|
+
}) | import("@xyo-network/address").XyoQuant1Address;
|
|
1668
|
+
children?: Record<(Lowercase<string> & {
|
|
1669
1669
|
readonly __hex: true;
|
|
1670
1670
|
} & {
|
|
1671
1671
|
readonly __address: true;
|
|
1672
|
-
}, string | null> | undefined;
|
|
1672
|
+
}) | import("@xyo-network/address").XyoQuant1Address, string | null> | undefined;
|
|
1673
1673
|
} | undefined;
|
|
1674
1674
|
}> | undefined;
|
|
1675
1675
|
};
|