everything-dev 1.47.1 → 1.47.2
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/contract.d.cts +16 -16
- package/dist/contract.d.mts +16 -16
- package/dist/plugin.d.cts +7 -7
- package/dist/plugin.d.mts +7 -7
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
package/dist/contract.d.cts
CHANGED
|
@@ -32,8 +32,8 @@ declare const DevOptionsSchema: z.ZodObject<{
|
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
declare const DevResultSchema: z.ZodObject<{
|
|
34
34
|
status: z.ZodEnum<{
|
|
35
|
-
error: "error";
|
|
36
35
|
started: "started";
|
|
36
|
+
error: "error";
|
|
37
37
|
}>;
|
|
38
38
|
description: z.ZodString;
|
|
39
39
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -373,20 +373,20 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
373
373
|
error: z.ZodOptional<z.ZodString>;
|
|
374
374
|
}, z.core.$strip>;
|
|
375
375
|
declare const OverrideSectionSchema: z.ZodEnum<{
|
|
376
|
-
plugins: "plugins";
|
|
377
|
-
ui: "ui";
|
|
378
376
|
host: "host";
|
|
377
|
+
ui: "ui";
|
|
379
378
|
api: "api";
|
|
379
|
+
plugins: "plugins";
|
|
380
380
|
}>;
|
|
381
381
|
declare const RuntimeOverrideTargetBaseSchema: z.ZodEnum<{
|
|
382
|
-
plugins: "plugins";
|
|
383
382
|
ui: "ui";
|
|
384
383
|
api: "api";
|
|
384
|
+
plugins: "plugins";
|
|
385
385
|
}>;
|
|
386
386
|
declare const RuntimeOverrideTargetSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
387
|
-
plugins: "plugins";
|
|
388
387
|
ui: "ui";
|
|
389
388
|
api: "api";
|
|
389
|
+
plugins: "plugins";
|
|
390
390
|
}>, z.ZodString]>;
|
|
391
391
|
declare const InitOptionsSchema: z.ZodObject<{
|
|
392
392
|
extends: z.ZodOptional<z.ZodString>;
|
|
@@ -396,10 +396,10 @@ declare const InitOptionsSchema: z.ZodObject<{
|
|
|
396
396
|
source: z.ZodOptional<z.ZodString>;
|
|
397
397
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
398
398
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
399
|
-
plugins: "plugins";
|
|
400
|
-
ui: "ui";
|
|
401
399
|
host: "host";
|
|
400
|
+
ui: "ui";
|
|
402
401
|
api: "api";
|
|
402
|
+
plugins: "plugins";
|
|
403
403
|
}>>>;
|
|
404
404
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
405
405
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -416,10 +416,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
416
416
|
extends: z.ZodString;
|
|
417
417
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
418
418
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
419
|
-
plugins: "plugins";
|
|
420
|
-
ui: "ui";
|
|
421
419
|
host: "host";
|
|
420
|
+
ui: "ui";
|
|
422
421
|
api: "api";
|
|
422
|
+
plugins: "plugins";
|
|
423
423
|
}>>>;
|
|
424
424
|
filesCopied: z.ZodNumber;
|
|
425
425
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -505,8 +505,8 @@ declare const StatusResultSchema: z.ZodObject<{
|
|
|
505
505
|
}, z.core.$strip>;
|
|
506
506
|
declare const TypesGenOptionsSchema: z.ZodObject<{
|
|
507
507
|
env: z.ZodOptional<z.ZodEnum<{
|
|
508
|
-
development: "development";
|
|
509
508
|
production: "production";
|
|
509
|
+
development: "development";
|
|
510
510
|
}>>;
|
|
511
511
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
512
512
|
}, z.core.$strip>;
|
|
@@ -569,8 +569,8 @@ declare const bosContract: {
|
|
|
569
569
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
570
570
|
}, z.core.$strip>, z.ZodObject<{
|
|
571
571
|
status: z.ZodEnum<{
|
|
572
|
-
error: "error";
|
|
573
572
|
started: "started";
|
|
573
|
+
error: "error";
|
|
574
574
|
}>;
|
|
575
575
|
description: z.ZodString;
|
|
576
576
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -895,10 +895,10 @@ declare const bosContract: {
|
|
|
895
895
|
source: z.ZodOptional<z.ZodString>;
|
|
896
896
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
897
897
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
898
|
-
plugins: "plugins";
|
|
899
|
-
ui: "ui";
|
|
900
898
|
host: "host";
|
|
899
|
+
ui: "ui";
|
|
901
900
|
api: "api";
|
|
901
|
+
plugins: "plugins";
|
|
902
902
|
}>>>;
|
|
903
903
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
904
904
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -914,10 +914,10 @@ declare const bosContract: {
|
|
|
914
914
|
extends: z.ZodString;
|
|
915
915
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
916
916
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
917
|
-
plugins: "plugins";
|
|
918
|
-
ui: "ui";
|
|
919
917
|
host: "host";
|
|
918
|
+
ui: "ui";
|
|
920
919
|
api: "api";
|
|
920
|
+
plugins: "plugins";
|
|
921
921
|
}>>>;
|
|
922
922
|
filesCopied: z.ZodNumber;
|
|
923
923
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1001,8 +1001,8 @@ declare const bosContract: {
|
|
|
1001
1001
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1002
1002
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
1003
1003
|
env: z.ZodOptional<z.ZodEnum<{
|
|
1004
|
-
development: "development";
|
|
1005
1004
|
production: "production";
|
|
1005
|
+
development: "development";
|
|
1006
1006
|
}>>;
|
|
1007
1007
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
1008
1008
|
}, z.core.$strip>, z.ZodObject<{
|
package/dist/contract.d.mts
CHANGED
|
@@ -32,8 +32,8 @@ declare const DevOptionsSchema: z.ZodObject<{
|
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
declare const DevResultSchema: z.ZodObject<{
|
|
34
34
|
status: z.ZodEnum<{
|
|
35
|
-
error: "error";
|
|
36
35
|
started: "started";
|
|
36
|
+
error: "error";
|
|
37
37
|
}>;
|
|
38
38
|
description: z.ZodString;
|
|
39
39
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -373,20 +373,20 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
373
373
|
error: z.ZodOptional<z.ZodString>;
|
|
374
374
|
}, z.core.$strip>;
|
|
375
375
|
declare const OverrideSectionSchema: z.ZodEnum<{
|
|
376
|
-
plugins: "plugins";
|
|
377
|
-
ui: "ui";
|
|
378
376
|
host: "host";
|
|
377
|
+
ui: "ui";
|
|
379
378
|
api: "api";
|
|
379
|
+
plugins: "plugins";
|
|
380
380
|
}>;
|
|
381
381
|
declare const RuntimeOverrideTargetBaseSchema: z.ZodEnum<{
|
|
382
|
-
plugins: "plugins";
|
|
383
382
|
ui: "ui";
|
|
384
383
|
api: "api";
|
|
384
|
+
plugins: "plugins";
|
|
385
385
|
}>;
|
|
386
386
|
declare const RuntimeOverrideTargetSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
387
|
-
plugins: "plugins";
|
|
388
387
|
ui: "ui";
|
|
389
388
|
api: "api";
|
|
389
|
+
plugins: "plugins";
|
|
390
390
|
}>, z.ZodString]>;
|
|
391
391
|
declare const InitOptionsSchema: z.ZodObject<{
|
|
392
392
|
extends: z.ZodOptional<z.ZodString>;
|
|
@@ -396,10 +396,10 @@ declare const InitOptionsSchema: z.ZodObject<{
|
|
|
396
396
|
source: z.ZodOptional<z.ZodString>;
|
|
397
397
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
398
398
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
399
|
-
plugins: "plugins";
|
|
400
|
-
ui: "ui";
|
|
401
399
|
host: "host";
|
|
400
|
+
ui: "ui";
|
|
402
401
|
api: "api";
|
|
402
|
+
plugins: "plugins";
|
|
403
403
|
}>>>;
|
|
404
404
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
405
405
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -416,10 +416,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
416
416
|
extends: z.ZodString;
|
|
417
417
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
418
418
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
419
|
-
plugins: "plugins";
|
|
420
|
-
ui: "ui";
|
|
421
419
|
host: "host";
|
|
420
|
+
ui: "ui";
|
|
422
421
|
api: "api";
|
|
422
|
+
plugins: "plugins";
|
|
423
423
|
}>>>;
|
|
424
424
|
filesCopied: z.ZodNumber;
|
|
425
425
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -505,8 +505,8 @@ declare const StatusResultSchema: z.ZodObject<{
|
|
|
505
505
|
}, z.core.$strip>;
|
|
506
506
|
declare const TypesGenOptionsSchema: z.ZodObject<{
|
|
507
507
|
env: z.ZodOptional<z.ZodEnum<{
|
|
508
|
-
development: "development";
|
|
509
508
|
production: "production";
|
|
509
|
+
development: "development";
|
|
510
510
|
}>>;
|
|
511
511
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
512
512
|
}, z.core.$strip>;
|
|
@@ -569,8 +569,8 @@ declare const bosContract: {
|
|
|
569
569
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
570
570
|
}, z.core.$strip>, z.ZodObject<{
|
|
571
571
|
status: z.ZodEnum<{
|
|
572
|
-
error: "error";
|
|
573
572
|
started: "started";
|
|
573
|
+
error: "error";
|
|
574
574
|
}>;
|
|
575
575
|
description: z.ZodString;
|
|
576
576
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -895,10 +895,10 @@ declare const bosContract: {
|
|
|
895
895
|
source: z.ZodOptional<z.ZodString>;
|
|
896
896
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
897
897
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
898
|
-
plugins: "plugins";
|
|
899
|
-
ui: "ui";
|
|
900
898
|
host: "host";
|
|
899
|
+
ui: "ui";
|
|
901
900
|
api: "api";
|
|
901
|
+
plugins: "plugins";
|
|
902
902
|
}>>>;
|
|
903
903
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
904
904
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -914,10 +914,10 @@ declare const bosContract: {
|
|
|
914
914
|
extends: z.ZodString;
|
|
915
915
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
916
916
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
917
|
-
plugins: "plugins";
|
|
918
|
-
ui: "ui";
|
|
919
917
|
host: "host";
|
|
918
|
+
ui: "ui";
|
|
920
919
|
api: "api";
|
|
920
|
+
plugins: "plugins";
|
|
921
921
|
}>>>;
|
|
922
922
|
filesCopied: z.ZodNumber;
|
|
923
923
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1001,8 +1001,8 @@ declare const bosContract: {
|
|
|
1001
1001
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
1002
1002
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
1003
1003
|
env: z.ZodOptional<z.ZodEnum<{
|
|
1004
|
-
development: "development";
|
|
1005
1004
|
production: "production";
|
|
1005
|
+
development: "development";
|
|
1006
1006
|
}>>;
|
|
1007
1007
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
1008
1008
|
}, z.core.$strip>, z.ZodObject<{
|
package/dist/plugin.d.cts
CHANGED
|
@@ -60,8 +60,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
60
60
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
61
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
62
62
|
status: z.ZodEnum<{
|
|
63
|
-
error: "error";
|
|
64
63
|
started: "started";
|
|
64
|
+
error: "error";
|
|
65
65
|
}>;
|
|
66
66
|
description: z.ZodString;
|
|
67
67
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -386,10 +386,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
386
386
|
source: z.ZodOptional<z.ZodString>;
|
|
387
387
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
388
388
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
389
|
-
plugins: "plugins";
|
|
390
|
-
ui: "ui";
|
|
391
389
|
host: "host";
|
|
390
|
+
ui: "ui";
|
|
392
391
|
api: "api";
|
|
392
|
+
plugins: "plugins";
|
|
393
393
|
}>>>;
|
|
394
394
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
395
395
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -405,10 +405,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
405
405
|
extends: z.ZodString;
|
|
406
406
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
407
407
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
408
|
-
plugins: "plugins";
|
|
409
|
-
ui: "ui";
|
|
410
408
|
host: "host";
|
|
409
|
+
ui: "ui";
|
|
411
410
|
api: "api";
|
|
411
|
+
plugins: "plugins";
|
|
412
412
|
}>>>;
|
|
413
413
|
filesCopied: z.ZodNumber;
|
|
414
414
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -492,8 +492,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
492
492
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
493
493
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
494
494
|
env: z.ZodOptional<z.ZodEnum<{
|
|
495
|
-
development: "development";
|
|
496
495
|
production: "production";
|
|
496
|
+
development: "development";
|
|
497
497
|
}>>;
|
|
498
498
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
499
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -642,7 +642,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
642
642
|
}> | undefined;
|
|
643
643
|
} | null;
|
|
644
644
|
runtimeConfig: {
|
|
645
|
-
env: "
|
|
645
|
+
env: "production" | "staging" | "development";
|
|
646
646
|
account: string;
|
|
647
647
|
networkId: "testnet" | "mainnet";
|
|
648
648
|
host: {
|
package/dist/plugin.d.mts
CHANGED
|
@@ -60,8 +60,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
60
60
|
interactive: z.ZodOptional<z.ZodBoolean>;
|
|
61
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
62
62
|
status: z.ZodEnum<{
|
|
63
|
-
error: "error";
|
|
64
63
|
started: "started";
|
|
64
|
+
error: "error";
|
|
65
65
|
}>;
|
|
66
66
|
description: z.ZodString;
|
|
67
67
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -386,10 +386,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
386
386
|
source: z.ZodOptional<z.ZodString>;
|
|
387
387
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
388
388
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
389
|
-
plugins: "plugins";
|
|
390
|
-
ui: "ui";
|
|
391
389
|
host: "host";
|
|
390
|
+
ui: "ui";
|
|
392
391
|
api: "api";
|
|
392
|
+
plugins: "plugins";
|
|
393
393
|
}>>>;
|
|
394
394
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
395
395
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -405,10 +405,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
405
405
|
extends: z.ZodString;
|
|
406
406
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
407
407
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
408
|
-
plugins: "plugins";
|
|
409
|
-
ui: "ui";
|
|
410
408
|
host: "host";
|
|
409
|
+
ui: "ui";
|
|
411
410
|
api: "api";
|
|
411
|
+
plugins: "plugins";
|
|
412
412
|
}>>>;
|
|
413
413
|
filesCopied: z.ZodNumber;
|
|
414
414
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -492,8 +492,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
492
492
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
493
493
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
494
494
|
env: z.ZodOptional<z.ZodEnum<{
|
|
495
|
-
development: "development";
|
|
496
495
|
production: "production";
|
|
496
|
+
development: "development";
|
|
497
497
|
}>>;
|
|
498
498
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
499
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -642,7 +642,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
642
642
|
}> | undefined;
|
|
643
643
|
} | null;
|
|
644
644
|
runtimeConfig: {
|
|
645
|
-
env: "
|
|
645
|
+
env: "production" | "staging" | "development";
|
|
646
646
|
account: string;
|
|
647
647
|
networkId: "testnet" | "mainnet";
|
|
648
648
|
host: {
|
package/dist/types.d.cts
CHANGED
|
@@ -379,9 +379,9 @@ declare const BosConfigSchema: z.ZodObject<{
|
|
|
379
379
|
type BosConfig = z.infer<typeof BosConfigSchema>;
|
|
380
380
|
declare const RuntimeConfigSchema: z.ZodObject<{
|
|
381
381
|
env: z.ZodEnum<{
|
|
382
|
-
development: "development";
|
|
383
382
|
production: "production";
|
|
384
383
|
staging: "staging";
|
|
384
|
+
development: "development";
|
|
385
385
|
}>;
|
|
386
386
|
account: z.ZodString;
|
|
387
387
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -508,9 +508,9 @@ declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
508
508
|
type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
|
|
509
509
|
declare const ClientRuntimeConfigSchema: z.ZodObject<{
|
|
510
510
|
env: z.ZodEnum<{
|
|
511
|
-
development: "development";
|
|
512
511
|
production: "production";
|
|
513
512
|
staging: "staging";
|
|
513
|
+
development: "development";
|
|
514
514
|
}>;
|
|
515
515
|
account: z.ZodString;
|
|
516
516
|
networkId: z.ZodEnum<{
|
package/dist/types.d.mts
CHANGED
|
@@ -379,9 +379,9 @@ declare const BosConfigSchema: z.ZodObject<{
|
|
|
379
379
|
type BosConfig = z.infer<typeof BosConfigSchema>;
|
|
380
380
|
declare const RuntimeConfigSchema: z.ZodObject<{
|
|
381
381
|
env: z.ZodEnum<{
|
|
382
|
-
development: "development";
|
|
383
382
|
production: "production";
|
|
384
383
|
staging: "staging";
|
|
384
|
+
development: "development";
|
|
385
385
|
}>;
|
|
386
386
|
account: z.ZodString;
|
|
387
387
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -508,9 +508,9 @@ declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
508
508
|
type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
|
|
509
509
|
declare const ClientRuntimeConfigSchema: z.ZodObject<{
|
|
510
510
|
env: z.ZodEnum<{
|
|
511
|
-
development: "development";
|
|
512
511
|
production: "production";
|
|
513
512
|
staging: "staging";
|
|
513
|
+
development: "development";
|
|
514
514
|
}>;
|
|
515
515
|
account: z.ZodString;
|
|
516
516
|
networkId: z.ZodEnum<{
|