everything-dev 1.46.0 → 1.46.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/build.cjs +31 -17
- package/dist/build.cjs.map +1 -1
- package/dist/build.mjs +31 -17
- package/dist/build.mjs.map +1 -1
- package/dist/cli.cjs +17 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +17 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/contract.cjs +1 -0
- package/dist/contract.cjs.map +1 -1
- package/dist/contract.d.cts +21 -16
- package/dist/contract.d.cts.map +1 -1
- package/dist/contract.d.mts +21 -16
- package/dist/contract.d.mts.map +1 -1
- package/dist/contract.mjs +1 -0
- package/dist/contract.mjs.map +1 -1
- package/dist/plugin.d.cts +9 -7
- package/dist/plugin.d.mts +9 -7
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
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
|
-
started: "started";
|
|
64
63
|
error: "error";
|
|
64
|
+
started: "started";
|
|
65
65
|
}>;
|
|
66
66
|
description: z.ZodString;
|
|
67
67
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -311,6 +311,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
311
311
|
success: z.ZodBoolean;
|
|
312
312
|
url: z.ZodOptional<z.ZodString>;
|
|
313
313
|
error: z.ZodOptional<z.ZodString>;
|
|
314
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
314
315
|
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
315
316
|
retried: z.ZodOptional<z.ZodBoolean>;
|
|
316
317
|
}, z.core.$strip>>>;
|
|
@@ -353,6 +354,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
353
354
|
success: z.ZodBoolean;
|
|
354
355
|
url: z.ZodOptional<z.ZodString>;
|
|
355
356
|
error: z.ZodOptional<z.ZodString>;
|
|
357
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
356
358
|
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
357
359
|
retried: z.ZodOptional<z.ZodBoolean>;
|
|
358
360
|
}, z.core.$strip>>>;
|
|
@@ -384,10 +386,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
384
386
|
source: z.ZodOptional<z.ZodString>;
|
|
385
387
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
386
388
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
387
|
-
|
|
389
|
+
plugins: "plugins";
|
|
388
390
|
ui: "ui";
|
|
391
|
+
host: "host";
|
|
389
392
|
api: "api";
|
|
390
|
-
plugins: "plugins";
|
|
391
393
|
}>>>;
|
|
392
394
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
393
395
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -403,10 +405,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
403
405
|
extends: z.ZodString;
|
|
404
406
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
405
407
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
406
|
-
|
|
408
|
+
plugins: "plugins";
|
|
407
409
|
ui: "ui";
|
|
410
|
+
host: "host";
|
|
408
411
|
api: "api";
|
|
409
|
-
plugins: "plugins";
|
|
410
412
|
}>>>;
|
|
411
413
|
filesCopied: z.ZodNumber;
|
|
412
414
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -490,8 +492,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
490
492
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
491
493
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
492
494
|
env: z.ZodOptional<z.ZodEnum<{
|
|
493
|
-
production: "production";
|
|
494
495
|
development: "development";
|
|
496
|
+
production: "production";
|
|
495
497
|
}>>;
|
|
496
498
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
497
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -640,7 +642,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
640
642
|
}> | undefined;
|
|
641
643
|
} | null;
|
|
642
644
|
runtimeConfig: {
|
|
643
|
-
env: "
|
|
645
|
+
env: "development" | "production" | "staging";
|
|
644
646
|
account: string;
|
|
645
647
|
networkId: "testnet" | "mainnet";
|
|
646
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
|
-
started: "started";
|
|
64
63
|
error: "error";
|
|
64
|
+
started: "started";
|
|
65
65
|
}>;
|
|
66
66
|
description: z.ZodString;
|
|
67
67
|
processes: z.ZodArray<z.ZodString>;
|
|
@@ -311,6 +311,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
311
311
|
success: z.ZodBoolean;
|
|
312
312
|
url: z.ZodOptional<z.ZodString>;
|
|
313
313
|
error: z.ZodOptional<z.ZodString>;
|
|
314
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
314
315
|
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
315
316
|
retried: z.ZodOptional<z.ZodBoolean>;
|
|
316
317
|
}, z.core.$strip>>>;
|
|
@@ -353,6 +354,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
353
354
|
success: z.ZodBoolean;
|
|
354
355
|
url: z.ZodOptional<z.ZodString>;
|
|
355
356
|
error: z.ZodOptional<z.ZodString>;
|
|
357
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
356
358
|
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
357
359
|
retried: z.ZodOptional<z.ZodBoolean>;
|
|
358
360
|
}, z.core.$strip>>>;
|
|
@@ -384,10 +386,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
384
386
|
source: z.ZodOptional<z.ZodString>;
|
|
385
387
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
386
388
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
387
|
-
|
|
389
|
+
plugins: "plugins";
|
|
388
390
|
ui: "ui";
|
|
391
|
+
host: "host";
|
|
389
392
|
api: "api";
|
|
390
|
-
plugins: "plugins";
|
|
391
393
|
}>>>;
|
|
392
394
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
393
395
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -403,10 +405,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
403
405
|
extends: z.ZodString;
|
|
404
406
|
plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
405
407
|
overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
406
|
-
|
|
408
|
+
plugins: "plugins";
|
|
407
409
|
ui: "ui";
|
|
410
|
+
host: "host";
|
|
408
411
|
api: "api";
|
|
409
|
-
plugins: "plugins";
|
|
410
412
|
}>>>;
|
|
411
413
|
filesCopied: z.ZodNumber;
|
|
412
414
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -490,8 +492,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
490
492
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
491
493
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
492
494
|
env: z.ZodOptional<z.ZodEnum<{
|
|
493
|
-
production: "production";
|
|
494
495
|
development: "development";
|
|
496
|
+
production: "production";
|
|
495
497
|
}>>;
|
|
496
498
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
497
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -640,7 +642,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
|
|
|
640
642
|
}> | undefined;
|
|
641
643
|
} | null;
|
|
642
644
|
runtimeConfig: {
|
|
643
|
-
env: "
|
|
645
|
+
env: "development" | "production" | "staging";
|
|
644
646
|
account: string;
|
|
645
647
|
networkId: "testnet" | "mainnet";
|
|
646
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";
|
|
382
383
|
production: "production";
|
|
383
384
|
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";
|
|
511
512
|
production: "production";
|
|
512
513
|
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";
|
|
382
383
|
production: "production";
|
|
383
384
|
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";
|
|
511
512
|
production: "production";
|
|
512
513
|
staging: "staging";
|
|
513
|
-
development: "development";
|
|
514
514
|
}>;
|
|
515
515
|
account: z.ZodString;
|
|
516
516
|
networkId: z.ZodEnum<{
|