everything-dev 1.44.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contract.cjs +26 -21
- package/dist/api-contract.cjs.map +1 -1
- package/dist/api-contract.mjs +27 -22
- package/dist/api-contract.mjs.map +1 -1
- package/dist/cli/catalog.cjs +2 -2
- package/dist/cli/catalog.cjs.map +1 -1
- package/dist/cli/catalog.mjs +2 -2
- package/dist/cli/catalog.mjs.map +1 -1
- package/dist/cli/infra.cjs +3 -0
- package/dist/cli/infra.cjs.map +1 -1
- package/dist/cli/infra.mjs +3 -0
- package/dist/cli/infra.mjs.map +1 -1
- package/dist/cli/init.cjs +5 -2
- package/dist/cli/init.cjs.map +1 -1
- package/dist/cli/init.d.cts +1 -1
- package/dist/cli/init.d.cts.map +1 -1
- package/dist/cli/init.d.mts +1 -1
- package/dist/cli/init.d.mts.map +1 -1
- package/dist/cli/init.mjs +5 -2
- package/dist/cli/init.mjs.map +1 -1
- package/dist/cli/status.cjs +8 -19
- package/dist/cli/status.cjs.map +1 -1
- package/dist/cli/status.mjs +8 -19
- package/dist/cli/status.mjs.map +1 -1
- package/dist/cli/sync.cjs +6 -0
- package/dist/cli/sync.cjs.map +1 -1
- package/dist/cli/sync.mjs +6 -0
- package/dist/cli/sync.mjs.map +1 -1
- package/dist/cli.cjs +43 -4
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +43 -4
- package/dist/cli.mjs.map +1 -1
- package/dist/config.cjs +22 -11
- package/dist/config.cjs.map +1 -1
- package/dist/config.d.cts.map +1 -1
- package/dist/config.d.mts.map +1 -1
- package/dist/config.mjs +22 -11
- package/dist/config.mjs.map +1 -1
- package/dist/contract.cjs +22 -7
- package/dist/contract.cjs.map +1 -1
- package/dist/contract.d.cts +80 -7
- package/dist/contract.d.cts.map +1 -1
- package/dist/contract.d.mts +80 -7
- package/dist/contract.d.mts.map +1 -1
- package/dist/contract.meta.cjs +2 -0
- package/dist/contract.meta.cjs.map +1 -1
- package/dist/contract.meta.d.cts +6 -0
- package/dist/contract.meta.d.mts +6 -0
- package/dist/contract.meta.mjs +2 -0
- package/dist/contract.meta.mjs.map +1 -1
- package/dist/contract.mjs +22 -8
- package/dist/contract.mjs.map +1 -1
- package/dist/dev-session.cjs +3 -1
- package/dist/dev-session.cjs.map +1 -1
- package/dist/dev-session.mjs +3 -1
- package/dist/dev-session.mjs.map +1 -1
- package/dist/fastkv.cjs +2 -1
- package/dist/fastkv.cjs.map +1 -1
- package/dist/fastkv.mjs +2 -1
- package/dist/fastkv.mjs.map +1 -1
- package/dist/http-client.cjs +22 -2
- package/dist/http-client.cjs.map +1 -1
- package/dist/http-client.mjs +22 -2
- package/dist/http-client.mjs.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/integrity.cjs +116 -0
- package/dist/integrity.cjs.map +1 -1
- package/dist/integrity.d.cts +21 -1
- package/dist/integrity.d.cts.map +1 -1
- package/dist/integrity.d.mts +21 -1
- package/dist/integrity.d.mts.map +1 -1
- package/dist/integrity.mjs +111 -1
- package/dist/integrity.mjs.map +1 -1
- package/dist/near-cli.cjs +12 -15
- package/dist/near-cli.cjs.map +1 -1
- package/dist/near-cli.mjs +12 -15
- package/dist/near-cli.mjs.map +1 -1
- package/dist/orchestrator.cjs +39 -23
- package/dist/orchestrator.cjs.map +1 -1
- package/dist/orchestrator.mjs +39 -23
- package/dist/orchestrator.mjs.map +1 -1
- package/dist/plugin.cjs +332 -108
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +32 -2
- package/dist/plugin.d.cts.map +1 -1
- package/dist/plugin.d.mts +32 -2
- package/dist/plugin.d.mts.map +1 -1
- package/dist/plugin.mjs +335 -111
- package/dist/plugin.mjs.map +1 -1
- 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
|
@@ -3,6 +3,10 @@ import * as z from "zod";
|
|
|
3
3
|
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
4
4
|
|
|
5
5
|
//#region src/contract.d.ts
|
|
6
|
+
declare const PhaseTimingSchema: z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
durationMs: z.ZodNumber;
|
|
9
|
+
}, z.core.$strip>;
|
|
6
10
|
declare const DevOptionsSchema: z.ZodObject<{
|
|
7
11
|
host: z.ZodDefault<z.ZodEnum<{
|
|
8
12
|
local: "local";
|
|
@@ -33,6 +37,10 @@ declare const DevResultSchema: z.ZodObject<{
|
|
|
33
37
|
}>;
|
|
34
38
|
description: z.ZodString;
|
|
35
39
|
processes: z.ZodArray<z.ZodString>;
|
|
40
|
+
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
41
|
+
name: z.ZodString;
|
|
42
|
+
durationMs: z.ZodNumber;
|
|
43
|
+
}, z.core.$strip>>>;
|
|
36
44
|
}, z.core.$strip>;
|
|
37
45
|
declare const StartOptionsSchema: z.ZodObject<{
|
|
38
46
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -247,9 +255,22 @@ declare const PluginPublishResultSchema: z.ZodObject<{
|
|
|
247
255
|
version: z.ZodOptional<z.ZodString>;
|
|
248
256
|
error: z.ZodOptional<z.ZodString>;
|
|
249
257
|
}, z.core.$strip>;
|
|
258
|
+
declare const WorkspaceDeployResultSchema: z.ZodObject<{
|
|
259
|
+
key: z.ZodString;
|
|
260
|
+
kind: z.ZodEnum<{
|
|
261
|
+
plugin: "plugin";
|
|
262
|
+
app: "app";
|
|
263
|
+
}>;
|
|
264
|
+
success: z.ZodBoolean;
|
|
265
|
+
url: z.ZodOptional<z.ZodString>;
|
|
266
|
+
error: z.ZodOptional<z.ZodString>;
|
|
267
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
268
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
}, z.core.$strip>;
|
|
250
270
|
declare const PublishOptionsSchema: z.ZodObject<{
|
|
251
271
|
deploy: z.ZodDefault<z.ZodBoolean>;
|
|
252
272
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
273
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
253
274
|
packages: z.ZodDefault<z.ZodString>;
|
|
254
275
|
network: z.ZodOptional<z.ZodEnum<{
|
|
255
276
|
testnet: "testnet";
|
|
@@ -272,6 +293,18 @@ declare const PublishResultSchema: z.ZodObject<{
|
|
|
272
293
|
error: z.ZodOptional<z.ZodString>;
|
|
273
294
|
built: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
274
295
|
skipped: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
296
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
297
|
+
key: z.ZodString;
|
|
298
|
+
kind: z.ZodEnum<{
|
|
299
|
+
plugin: "plugin";
|
|
300
|
+
app: "app";
|
|
301
|
+
}>;
|
|
302
|
+
success: z.ZodBoolean;
|
|
303
|
+
url: z.ZodOptional<z.ZodString>;
|
|
304
|
+
error: z.ZodOptional<z.ZodString>;
|
|
305
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
306
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
307
|
+
}, z.core.$strip>>>;
|
|
275
308
|
}, z.core.$strip>;
|
|
276
309
|
declare const DeployOptionsSchema: z.ZodObject<{
|
|
277
310
|
env: z.ZodDefault<z.ZodEnum<{
|
|
@@ -280,6 +313,7 @@ declare const DeployOptionsSchema: z.ZodObject<{
|
|
|
280
313
|
}>>;
|
|
281
314
|
build: z.ZodDefault<z.ZodBoolean>;
|
|
282
315
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
316
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
283
317
|
packages: z.ZodDefault<z.ZodString>;
|
|
284
318
|
network: z.ZodOptional<z.ZodEnum<{
|
|
285
319
|
testnet: "testnet";
|
|
@@ -302,6 +336,18 @@ declare const DeployResultSchema: z.ZodObject<{
|
|
|
302
336
|
redeployed: z.ZodBoolean;
|
|
303
337
|
service: z.ZodOptional<z.ZodString>;
|
|
304
338
|
error: z.ZodOptional<z.ZodString>;
|
|
339
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
340
|
+
key: z.ZodString;
|
|
341
|
+
kind: z.ZodEnum<{
|
|
342
|
+
plugin: "plugin";
|
|
343
|
+
app: "app";
|
|
344
|
+
}>;
|
|
345
|
+
success: z.ZodBoolean;
|
|
346
|
+
url: z.ZodOptional<z.ZodString>;
|
|
347
|
+
error: z.ZodOptional<z.ZodString>;
|
|
348
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
349
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
350
|
+
}, z.core.$strip>>>;
|
|
305
351
|
}, z.core.$strip>;
|
|
306
352
|
declare const KeyPublishOptionsSchema: z.ZodObject<{
|
|
307
353
|
allowance: z.ZodDefault<z.ZodString>;
|
|
@@ -355,10 +401,6 @@ declare const InitOptionsSchema: z.ZodObject<{
|
|
|
355
401
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
356
402
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
357
403
|
}, z.core.$strip>;
|
|
358
|
-
declare const PhaseTimingSchema: z.ZodObject<{
|
|
359
|
-
name: z.ZodString;
|
|
360
|
-
durationMs: z.ZodNumber;
|
|
361
|
-
}, z.core.$strip>;
|
|
362
404
|
declare const InitResultSchema: z.ZodObject<{
|
|
363
405
|
status: z.ZodEnum<{
|
|
364
406
|
error: "error";
|
|
@@ -460,8 +502,8 @@ declare const StatusResultSchema: z.ZodObject<{
|
|
|
460
502
|
}, z.core.$strip>;
|
|
461
503
|
declare const TypesGenOptionsSchema: z.ZodObject<{
|
|
462
504
|
env: z.ZodOptional<z.ZodEnum<{
|
|
463
|
-
development: "development";
|
|
464
505
|
production: "production";
|
|
506
|
+
development: "development";
|
|
465
507
|
}>>;
|
|
466
508
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
467
509
|
}, z.core.$strip>;
|
|
@@ -529,6 +571,10 @@ declare const bosContract: {
|
|
|
529
571
|
}>;
|
|
530
572
|
description: z.ZodString;
|
|
531
573
|
processes: z.ZodArray<z.ZodString>;
|
|
574
|
+
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
575
|
+
name: z.ZodString;
|
|
576
|
+
durationMs: z.ZodNumber;
|
|
577
|
+
}, z.core.$strip>>>;
|
|
532
578
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
533
579
|
start: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
534
580
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -740,6 +786,7 @@ declare const bosContract: {
|
|
|
740
786
|
publish: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
741
787
|
deploy: z.ZodDefault<z.ZodBoolean>;
|
|
742
788
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
789
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
743
790
|
packages: z.ZodDefault<z.ZodString>;
|
|
744
791
|
network: z.ZodOptional<z.ZodEnum<{
|
|
745
792
|
testnet: "testnet";
|
|
@@ -761,6 +808,18 @@ declare const bosContract: {
|
|
|
761
808
|
error: z.ZodOptional<z.ZodString>;
|
|
762
809
|
built: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
763
810
|
skipped: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
811
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
812
|
+
key: z.ZodString;
|
|
813
|
+
kind: z.ZodEnum<{
|
|
814
|
+
plugin: "plugin";
|
|
815
|
+
app: "app";
|
|
816
|
+
}>;
|
|
817
|
+
success: z.ZodBoolean;
|
|
818
|
+
url: z.ZodOptional<z.ZodString>;
|
|
819
|
+
error: z.ZodOptional<z.ZodString>;
|
|
820
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
822
|
+
}, z.core.$strip>>>;
|
|
764
823
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
765
824
|
deploy: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
766
825
|
env: z.ZodDefault<z.ZodEnum<{
|
|
@@ -769,6 +828,7 @@ declare const bosContract: {
|
|
|
769
828
|
}>>;
|
|
770
829
|
build: z.ZodDefault<z.ZodBoolean>;
|
|
771
830
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
831
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
772
832
|
packages: z.ZodDefault<z.ZodString>;
|
|
773
833
|
network: z.ZodOptional<z.ZodEnum<{
|
|
774
834
|
testnet: "testnet";
|
|
@@ -790,6 +850,18 @@ declare const bosContract: {
|
|
|
790
850
|
redeployed: z.ZodBoolean;
|
|
791
851
|
service: z.ZodOptional<z.ZodString>;
|
|
792
852
|
error: z.ZodOptional<z.ZodString>;
|
|
853
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
854
|
+
key: z.ZodString;
|
|
855
|
+
kind: z.ZodEnum<{
|
|
856
|
+
plugin: "plugin";
|
|
857
|
+
app: "app";
|
|
858
|
+
}>;
|
|
859
|
+
success: z.ZodBoolean;
|
|
860
|
+
url: z.ZodOptional<z.ZodString>;
|
|
861
|
+
error: z.ZodOptional<z.ZodString>;
|
|
862
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
863
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
864
|
+
}, z.core.$strip>>>;
|
|
793
865
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
794
866
|
keyPublish: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
795
867
|
allowance: z.ZodDefault<z.ZodString>;
|
|
@@ -924,8 +996,8 @@ declare const bosContract: {
|
|
|
924
996
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
925
997
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
926
998
|
env: z.ZodOptional<z.ZodEnum<{
|
|
927
|
-
development: "development";
|
|
928
999
|
production: "production";
|
|
1000
|
+
development: "development";
|
|
929
1001
|
}>>;
|
|
930
1002
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
931
1003
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -978,6 +1050,7 @@ type PluginPublishResult = z.infer<typeof PluginPublishResultSchema>;
|
|
|
978
1050
|
type PublishOptions = z.infer<typeof PublishOptionsSchema>;
|
|
979
1051
|
type DeployOptions = z.infer<typeof DeployOptionsSchema>;
|
|
980
1052
|
type DeployResult = z.infer<typeof DeployResultSchema>;
|
|
1053
|
+
type WorkspaceDeployResult = z.infer<typeof WorkspaceDeployResultSchema>;
|
|
981
1054
|
type KeyPublishOptions = z.infer<typeof KeyPublishOptionsSchema>;
|
|
982
1055
|
type KeyPublishResult = z.infer<typeof KeyPublishResultSchema>;
|
|
983
1056
|
type InitOptions = z.infer<typeof InitOptionsSchema>;
|
|
@@ -995,5 +1068,5 @@ type DbStudioOptions = z.infer<typeof DbStudioOptionsSchema>;
|
|
|
995
1068
|
type DbStudioResult = z.infer<typeof DbStudioResultSchema>;
|
|
996
1069
|
type RuntimeOverrideTarget = z.infer<typeof RuntimeOverrideTargetSchema>;
|
|
997
1070
|
//#endregion
|
|
998
|
-
export { BosConfigResult, BuildOptions, BuildOptionsSchema, BuildResultSchema, ConfigOptionsSchema, ConfigResultSchema, DbStudioOptions, DbStudioOptionsSchema, DbStudioResult, DbStudioResultSchema, DeployOptions, DeployOptionsSchema, DeployResult, DeployResultSchema, DevOptions, DevOptionsSchema, DevResult, DevResultSchema, InitOptions, InitOptionsSchema, InitResult, InitResultSchema, KeyPublishOptions, KeyPublishOptionsSchema, KeyPublishResult, KeyPublishResultSchema, OverrideSection, OverrideSectionSchema, PhaseTiming, PhaseTimingSchema, PluginAddOptions, PluginAddOptionsSchema, PluginAddResult, PluginAddResultSchema, PluginListResult, PluginListResultSchema, PluginPublishOptions, PluginPublishOptionsSchema, PluginPublishResult, PluginPublishResultSchema, PluginRemoveOptions, PluginRemoveOptionsSchema, PluginRemoveResult, PluginRemoveResultSchema, PublishOptions, PublishOptionsSchema, PublishResultSchema, RuntimeOverrideTarget, RuntimeOverrideTargetBaseSchema, RuntimeOverrideTargetSchema, StartOptions, StartOptionsSchema, StartResult, StartResultSchema, StatusResult, StatusResultSchema, SyncOptions, SyncOptionsSchema, SyncResult, SyncResultSchema, TypesGenOptions, TypesGenOptionsSchema, TypesGenResult, TypesGenResultSchema, UpgradeOptions, UpgradeOptionsSchema, UpgradeResult, UpgradeResultSchema, bosContract };
|
|
1071
|
+
export { BosConfigResult, BuildOptions, BuildOptionsSchema, BuildResultSchema, ConfigOptionsSchema, ConfigResultSchema, DbStudioOptions, DbStudioOptionsSchema, DbStudioResult, DbStudioResultSchema, DeployOptions, DeployOptionsSchema, DeployResult, DeployResultSchema, DevOptions, DevOptionsSchema, DevResult, DevResultSchema, InitOptions, InitOptionsSchema, InitResult, InitResultSchema, KeyPublishOptions, KeyPublishOptionsSchema, KeyPublishResult, KeyPublishResultSchema, OverrideSection, OverrideSectionSchema, PhaseTiming, PhaseTimingSchema, PluginAddOptions, PluginAddOptionsSchema, PluginAddResult, PluginAddResultSchema, PluginListResult, PluginListResultSchema, PluginPublishOptions, PluginPublishOptionsSchema, PluginPublishResult, PluginPublishResultSchema, PluginRemoveOptions, PluginRemoveOptionsSchema, PluginRemoveResult, PluginRemoveResultSchema, PublishOptions, PublishOptionsSchema, PublishResultSchema, RuntimeOverrideTarget, RuntimeOverrideTargetBaseSchema, RuntimeOverrideTargetSchema, StartOptions, StartOptionsSchema, StartResult, StartResultSchema, StatusResult, StatusResultSchema, SyncOptions, SyncOptionsSchema, SyncResult, SyncResultSchema, TypesGenOptions, TypesGenOptionsSchema, TypesGenResult, TypesGenResultSchema, UpgradeOptions, UpgradeOptionsSchema, UpgradeResult, UpgradeResultSchema, WorkspaceDeployResult, WorkspaceDeployResultSchema, bosContract };
|
|
999
1072
|
//# sourceMappingURL=contract.d.cts.map
|
package/dist/contract.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.cts","names":[],"sources":["../src/contract.ts"],"mappings":";;;;;cAIa,gBAAA,EAAgB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;cAYhB,eAAA,EAAe,CAAA,CAAA,SAAA
|
|
1
|
+
{"version":3,"file":"contract.d.cts","names":[],"sources":["../src/contract.ts"],"mappings":"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"}
|
package/dist/contract.d.mts
CHANGED
|
@@ -3,6 +3,10 @@ import * as z from "zod";
|
|
|
3
3
|
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
4
4
|
|
|
5
5
|
//#region src/contract.d.ts
|
|
6
|
+
declare const PhaseTimingSchema: z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
durationMs: z.ZodNumber;
|
|
9
|
+
}, z.core.$strip>;
|
|
6
10
|
declare const DevOptionsSchema: z.ZodObject<{
|
|
7
11
|
host: z.ZodDefault<z.ZodEnum<{
|
|
8
12
|
local: "local";
|
|
@@ -33,6 +37,10 @@ declare const DevResultSchema: z.ZodObject<{
|
|
|
33
37
|
}>;
|
|
34
38
|
description: z.ZodString;
|
|
35
39
|
processes: z.ZodArray<z.ZodString>;
|
|
40
|
+
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
41
|
+
name: z.ZodString;
|
|
42
|
+
durationMs: z.ZodNumber;
|
|
43
|
+
}, z.core.$strip>>>;
|
|
36
44
|
}, z.core.$strip>;
|
|
37
45
|
declare const StartOptionsSchema: z.ZodObject<{
|
|
38
46
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -247,9 +255,22 @@ declare const PluginPublishResultSchema: z.ZodObject<{
|
|
|
247
255
|
version: z.ZodOptional<z.ZodString>;
|
|
248
256
|
error: z.ZodOptional<z.ZodString>;
|
|
249
257
|
}, z.core.$strip>;
|
|
258
|
+
declare const WorkspaceDeployResultSchema: z.ZodObject<{
|
|
259
|
+
key: z.ZodString;
|
|
260
|
+
kind: z.ZodEnum<{
|
|
261
|
+
plugin: "plugin";
|
|
262
|
+
app: "app";
|
|
263
|
+
}>;
|
|
264
|
+
success: z.ZodBoolean;
|
|
265
|
+
url: z.ZodOptional<z.ZodString>;
|
|
266
|
+
error: z.ZodOptional<z.ZodString>;
|
|
267
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
268
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
}, z.core.$strip>;
|
|
250
270
|
declare const PublishOptionsSchema: z.ZodObject<{
|
|
251
271
|
deploy: z.ZodDefault<z.ZodBoolean>;
|
|
252
272
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
273
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
253
274
|
packages: z.ZodDefault<z.ZodString>;
|
|
254
275
|
network: z.ZodOptional<z.ZodEnum<{
|
|
255
276
|
testnet: "testnet";
|
|
@@ -272,6 +293,18 @@ declare const PublishResultSchema: z.ZodObject<{
|
|
|
272
293
|
error: z.ZodOptional<z.ZodString>;
|
|
273
294
|
built: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
274
295
|
skipped: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
296
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
297
|
+
key: z.ZodString;
|
|
298
|
+
kind: z.ZodEnum<{
|
|
299
|
+
plugin: "plugin";
|
|
300
|
+
app: "app";
|
|
301
|
+
}>;
|
|
302
|
+
success: z.ZodBoolean;
|
|
303
|
+
url: z.ZodOptional<z.ZodString>;
|
|
304
|
+
error: z.ZodOptional<z.ZodString>;
|
|
305
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
306
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
307
|
+
}, z.core.$strip>>>;
|
|
275
308
|
}, z.core.$strip>;
|
|
276
309
|
declare const DeployOptionsSchema: z.ZodObject<{
|
|
277
310
|
env: z.ZodDefault<z.ZodEnum<{
|
|
@@ -280,6 +313,7 @@ declare const DeployOptionsSchema: z.ZodObject<{
|
|
|
280
313
|
}>>;
|
|
281
314
|
build: z.ZodDefault<z.ZodBoolean>;
|
|
282
315
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
316
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
283
317
|
packages: z.ZodDefault<z.ZodString>;
|
|
284
318
|
network: z.ZodOptional<z.ZodEnum<{
|
|
285
319
|
testnet: "testnet";
|
|
@@ -302,6 +336,18 @@ declare const DeployResultSchema: z.ZodObject<{
|
|
|
302
336
|
redeployed: z.ZodBoolean;
|
|
303
337
|
service: z.ZodOptional<z.ZodString>;
|
|
304
338
|
error: z.ZodOptional<z.ZodString>;
|
|
339
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
340
|
+
key: z.ZodString;
|
|
341
|
+
kind: z.ZodEnum<{
|
|
342
|
+
plugin: "plugin";
|
|
343
|
+
app: "app";
|
|
344
|
+
}>;
|
|
345
|
+
success: z.ZodBoolean;
|
|
346
|
+
url: z.ZodOptional<z.ZodString>;
|
|
347
|
+
error: z.ZodOptional<z.ZodString>;
|
|
348
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
349
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
350
|
+
}, z.core.$strip>>>;
|
|
305
351
|
}, z.core.$strip>;
|
|
306
352
|
declare const KeyPublishOptionsSchema: z.ZodObject<{
|
|
307
353
|
allowance: z.ZodDefault<z.ZodString>;
|
|
@@ -355,10 +401,6 @@ declare const InitOptionsSchema: z.ZodObject<{
|
|
|
355
401
|
noInteractive: z.ZodDefault<z.ZodBoolean>;
|
|
356
402
|
noInstall: z.ZodDefault<z.ZodBoolean>;
|
|
357
403
|
}, z.core.$strip>;
|
|
358
|
-
declare const PhaseTimingSchema: z.ZodObject<{
|
|
359
|
-
name: z.ZodString;
|
|
360
|
-
durationMs: z.ZodNumber;
|
|
361
|
-
}, z.core.$strip>;
|
|
362
404
|
declare const InitResultSchema: z.ZodObject<{
|
|
363
405
|
status: z.ZodEnum<{
|
|
364
406
|
error: "error";
|
|
@@ -460,8 +502,8 @@ declare const StatusResultSchema: z.ZodObject<{
|
|
|
460
502
|
}, z.core.$strip>;
|
|
461
503
|
declare const TypesGenOptionsSchema: z.ZodObject<{
|
|
462
504
|
env: z.ZodOptional<z.ZodEnum<{
|
|
463
|
-
development: "development";
|
|
464
505
|
production: "production";
|
|
506
|
+
development: "development";
|
|
465
507
|
}>>;
|
|
466
508
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
467
509
|
}, z.core.$strip>;
|
|
@@ -529,6 +571,10 @@ declare const bosContract: {
|
|
|
529
571
|
}>;
|
|
530
572
|
description: z.ZodString;
|
|
531
573
|
processes: z.ZodArray<z.ZodString>;
|
|
574
|
+
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
575
|
+
name: z.ZodString;
|
|
576
|
+
durationMs: z.ZodNumber;
|
|
577
|
+
}, z.core.$strip>>>;
|
|
532
578
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
533
579
|
start: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
534
580
|
port: z.ZodOptional<z.ZodNumber>;
|
|
@@ -740,6 +786,7 @@ declare const bosContract: {
|
|
|
740
786
|
publish: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
741
787
|
deploy: z.ZodDefault<z.ZodBoolean>;
|
|
742
788
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
789
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
743
790
|
packages: z.ZodDefault<z.ZodString>;
|
|
744
791
|
network: z.ZodOptional<z.ZodEnum<{
|
|
745
792
|
testnet: "testnet";
|
|
@@ -761,6 +808,18 @@ declare const bosContract: {
|
|
|
761
808
|
error: z.ZodOptional<z.ZodString>;
|
|
762
809
|
built: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
763
810
|
skipped: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
811
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
812
|
+
key: z.ZodString;
|
|
813
|
+
kind: z.ZodEnum<{
|
|
814
|
+
plugin: "plugin";
|
|
815
|
+
app: "app";
|
|
816
|
+
}>;
|
|
817
|
+
success: z.ZodBoolean;
|
|
818
|
+
url: z.ZodOptional<z.ZodString>;
|
|
819
|
+
error: z.ZodOptional<z.ZodString>;
|
|
820
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
822
|
+
}, z.core.$strip>>>;
|
|
764
823
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
765
824
|
deploy: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
766
825
|
env: z.ZodDefault<z.ZodEnum<{
|
|
@@ -769,6 +828,7 @@ declare const bosContract: {
|
|
|
769
828
|
}>>;
|
|
770
829
|
build: z.ZodDefault<z.ZodBoolean>;
|
|
771
830
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
831
|
+
verbose: z.ZodDefault<z.ZodBoolean>;
|
|
772
832
|
packages: z.ZodDefault<z.ZodString>;
|
|
773
833
|
network: z.ZodOptional<z.ZodEnum<{
|
|
774
834
|
testnet: "testnet";
|
|
@@ -790,6 +850,18 @@ declare const bosContract: {
|
|
|
790
850
|
redeployed: z.ZodBoolean;
|
|
791
851
|
service: z.ZodOptional<z.ZodString>;
|
|
792
852
|
error: z.ZodOptional<z.ZodString>;
|
|
853
|
+
deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
854
|
+
key: z.ZodString;
|
|
855
|
+
kind: z.ZodEnum<{
|
|
856
|
+
plugin: "plugin";
|
|
857
|
+
app: "app";
|
|
858
|
+
}>;
|
|
859
|
+
success: z.ZodBoolean;
|
|
860
|
+
url: z.ZodOptional<z.ZodString>;
|
|
861
|
+
error: z.ZodOptional<z.ZodString>;
|
|
862
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
863
|
+
retried: z.ZodOptional<z.ZodBoolean>;
|
|
864
|
+
}, z.core.$strip>>>;
|
|
793
865
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
794
866
|
keyPublish: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
795
867
|
allowance: z.ZodDefault<z.ZodString>;
|
|
@@ -924,8 +996,8 @@ declare const bosContract: {
|
|
|
924
996
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
925
997
|
typesGen: _$_orpc_contract0.ContractProcedure<z.ZodObject<{
|
|
926
998
|
env: z.ZodOptional<z.ZodEnum<{
|
|
927
|
-
development: "development";
|
|
928
999
|
production: "production";
|
|
1000
|
+
development: "development";
|
|
929
1001
|
}>>;
|
|
930
1002
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
931
1003
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -978,6 +1050,7 @@ type PluginPublishResult = z.infer<typeof PluginPublishResultSchema>;
|
|
|
978
1050
|
type PublishOptions = z.infer<typeof PublishOptionsSchema>;
|
|
979
1051
|
type DeployOptions = z.infer<typeof DeployOptionsSchema>;
|
|
980
1052
|
type DeployResult = z.infer<typeof DeployResultSchema>;
|
|
1053
|
+
type WorkspaceDeployResult = z.infer<typeof WorkspaceDeployResultSchema>;
|
|
981
1054
|
type KeyPublishOptions = z.infer<typeof KeyPublishOptionsSchema>;
|
|
982
1055
|
type KeyPublishResult = z.infer<typeof KeyPublishResultSchema>;
|
|
983
1056
|
type InitOptions = z.infer<typeof InitOptionsSchema>;
|
|
@@ -995,5 +1068,5 @@ type DbStudioOptions = z.infer<typeof DbStudioOptionsSchema>;
|
|
|
995
1068
|
type DbStudioResult = z.infer<typeof DbStudioResultSchema>;
|
|
996
1069
|
type RuntimeOverrideTarget = z.infer<typeof RuntimeOverrideTargetSchema>;
|
|
997
1070
|
//#endregion
|
|
998
|
-
export { BosConfigResult, BuildOptions, BuildOptionsSchema, BuildResultSchema, ConfigOptionsSchema, ConfigResultSchema, DbStudioOptions, DbStudioOptionsSchema, DbStudioResult, DbStudioResultSchema, DeployOptions, DeployOptionsSchema, DeployResult, DeployResultSchema, DevOptions, DevOptionsSchema, DevResult, DevResultSchema, InitOptions, InitOptionsSchema, InitResult, InitResultSchema, KeyPublishOptions, KeyPublishOptionsSchema, KeyPublishResult, KeyPublishResultSchema, OverrideSection, OverrideSectionSchema, PhaseTiming, PhaseTimingSchema, PluginAddOptions, PluginAddOptionsSchema, PluginAddResult, PluginAddResultSchema, PluginListResult, PluginListResultSchema, PluginPublishOptions, PluginPublishOptionsSchema, PluginPublishResult, PluginPublishResultSchema, PluginRemoveOptions, PluginRemoveOptionsSchema, PluginRemoveResult, PluginRemoveResultSchema, PublishOptions, PublishOptionsSchema, PublishResultSchema, RuntimeOverrideTarget, RuntimeOverrideTargetBaseSchema, RuntimeOverrideTargetSchema, StartOptions, StartOptionsSchema, StartResult, StartResultSchema, StatusResult, StatusResultSchema, SyncOptions, SyncOptionsSchema, SyncResult, SyncResultSchema, TypesGenOptions, TypesGenOptionsSchema, TypesGenResult, TypesGenResultSchema, UpgradeOptions, UpgradeOptionsSchema, UpgradeResult, UpgradeResultSchema, bosContract };
|
|
1071
|
+
export { BosConfigResult, BuildOptions, BuildOptionsSchema, BuildResultSchema, ConfigOptionsSchema, ConfigResultSchema, DbStudioOptions, DbStudioOptionsSchema, DbStudioResult, DbStudioResultSchema, DeployOptions, DeployOptionsSchema, DeployResult, DeployResultSchema, DevOptions, DevOptionsSchema, DevResult, DevResultSchema, InitOptions, InitOptionsSchema, InitResult, InitResultSchema, KeyPublishOptions, KeyPublishOptionsSchema, KeyPublishResult, KeyPublishResultSchema, OverrideSection, OverrideSectionSchema, PhaseTiming, PhaseTimingSchema, PluginAddOptions, PluginAddOptionsSchema, PluginAddResult, PluginAddResultSchema, PluginListResult, PluginListResultSchema, PluginPublishOptions, PluginPublishOptionsSchema, PluginPublishResult, PluginPublishResultSchema, PluginRemoveOptions, PluginRemoveOptionsSchema, PluginRemoveResult, PluginRemoveResultSchema, PublishOptions, PublishOptionsSchema, PublishResultSchema, RuntimeOverrideTarget, RuntimeOverrideTargetBaseSchema, RuntimeOverrideTargetSchema, StartOptions, StartOptionsSchema, StartResult, StartResultSchema, StatusResult, StatusResultSchema, SyncOptions, SyncOptionsSchema, SyncResult, SyncResultSchema, TypesGenOptions, TypesGenOptionsSchema, TypesGenResult, TypesGenResultSchema, UpgradeOptions, UpgradeOptionsSchema, UpgradeResult, UpgradeResultSchema, WorkspaceDeployResult, WorkspaceDeployResultSchema, bosContract };
|
|
999
1072
|
//# sourceMappingURL=contract.d.mts.map
|
package/dist/contract.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.mts","names":[],"sources":["../src/contract.ts"],"mappings":";;;;;cAIa,gBAAA,EAAgB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;cAYhB,eAAA,EAAe,CAAA,CAAA,SAAA
|
|
1
|
+
{"version":3,"file":"contract.d.mts","names":[],"sources":["../src/contract.ts"],"mappings":"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"}
|
package/dist/contract.meta.cjs
CHANGED
|
@@ -74,6 +74,7 @@ const cliCommandMeta = {
|
|
|
74
74
|
fields: {
|
|
75
75
|
deploy: { description: "Build and deploy all workspaces before publish" },
|
|
76
76
|
dryRun: { description: "Preview what would be published without writing" },
|
|
77
|
+
verbose: { description: "Show full build output instead of clean summary" },
|
|
77
78
|
env: { description: "Environment: production or staging" },
|
|
78
79
|
network: { description: "NEAR network: mainnet or testnet" }
|
|
79
80
|
}
|
|
@@ -86,6 +87,7 @@ const cliCommandMeta = {
|
|
|
86
87
|
env: { description: "Environment: production or staging" },
|
|
87
88
|
build: { description: "Build and deploy workspaces before publish (default: true)" },
|
|
88
89
|
dryRun: { description: "Preview what would be deployed without writing" },
|
|
90
|
+
verbose: { description: "Show full build output instead of clean summary" },
|
|
89
91
|
service: { description: "Override Railway service name from config" }
|
|
90
92
|
}
|
|
91
93
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.meta.cjs","names":[],"sources":["../src/contract.meta.ts"],"sourcesContent":["export type CliCommandMeta = {\n commandPath?: string[];\n summary: string;\n description?: string;\n examples?: string[];\n interactive?: boolean;\n longRunning?: boolean;\n fields?: Record<string, { positional?: boolean; description?: string }>;\n};\n\nexport const cliCommandMeta = {\n dev: {\n commandPath: [\"dev\"],\n summary: \"Start a development session\",\n interactive: true,\n longRunning: true,\n fields: {\n remotePlugins: {\n description:\n \"Comma-separated plugin IDs to force remote (e.g. --remote-plugins auth,registry)\",\n },\n },\n },\n start: {\n commandPath: [\"start\"],\n summary: \"Start the production host\",\n interactive: false,\n longRunning: true,\n fields: {\n env: { description: \"Environment: production or staging\" },\n },\n },\n build: {\n commandPath: [\"build\"],\n summary: \"Build selected workspaces\",\n interactive: false,\n fields: {\n packages: { positional: true, description: \"Comma-separated package list\" },\n },\n },\n config: {\n commandPath: [\"config\"],\n summary: \"Print the loaded BOS configuration\",\n interactive: false,\n fields: {\n full: { description: \"Print the fully resolved configuration\" },\n },\n },\n pluginAdd: {\n commandPath: [\"plugin\", \"add\"],\n summary: \"Add a plugin attachment\",\n interactive: false,\n fields: {\n source: {\n positional: true,\n description: \"Plugin source (local:path, bos://account/domain, or URL)\",\n },\n as: { description: \"Plugin alias\" },\n production: { description: \"Production URL override\" },\n },\n },\n pluginRemove: {\n commandPath: [\"plugin\", \"remove\"],\n summary: \"Remove a plugin attachment\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n pluginList: {\n commandPath: [\"plugin\", \"list\"],\n summary: \"List configured plugins\",\n interactive: false,\n },\n pluginPublish: {\n commandPath: [\"plugin\", \"publish\"],\n summary: \"Publish a single plugin\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n publish: {\n commandPath: [\"publish\"],\n summary: \"Publish the current workspace configuration\",\n interactive: false,\n fields: {\n deploy: { description: \"Build and deploy all workspaces before publish\" },\n dryRun: { description: \"Preview what would be published without writing\" },\n env: { description: \"Environment: production or staging\" },\n network: { description: \"NEAR network: mainnet or testnet\" },\n },\n },\n deploy: {\n commandPath: [\"deploy\"],\n summary: \"Publish config and trigger Railway redeploy\",\n interactive: false,\n fields: {\n env: { description: \"Environment: production or staging\" },\n build: { description: \"Build and deploy workspaces before publish (default: true)\" },\n dryRun: { description: \"Preview what would be deployed without writing\" },\n service: { description: \"Override Railway service name from config\" },\n },\n },\n keyPublish: {\n commandPath: [\"key\", \"publish\"],\n summary: \"Generate a publish access key\",\n interactive: false,\n },\n init: {\n commandPath: [\"init\"],\n summary: \"Scaffold a new project by extending a deployed app or template\",\n interactive: true,\n fields: {\n domain: {\n positional: true,\n description: \"New project domain (e.g. myapp.everything.dev)\",\n },\n extends: {\n description: \"Parent to extend from (e.g. bos://account/gateway or account/gateway)\",\n },\n account: { description: \"New project NEAR account (auto-derived from extends)\" },\n directory: { description: \"Target directory (auto-derived from domain)\" },\n source: { description: \"Local source dir (skips GitHub download)\" },\n plugins: {\n description: \"Comma-separated plugin keys to include (requires --overrides=plugins)\",\n },\n overrides: {\n description: \"Comma-separated sections to customize locally: ui,api,host,plugins\",\n },\n noInteractive: { description: \"Skip prompts, use flags only\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n sync: {\n commandPath: [\"sync\"],\n summary: \"Sync template files from parent project\",\n interactive: false,\n fields: {\n dryRun: { description: \"Preview changes without writing files\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n upgrade: {\n commandPath: [\"upgrade\"],\n summary: \"Upgrade framework packages and sync template files\",\n interactive: true,\n fields: {\n dryRun: { description: \"Preview changes without writing\" },\n noInstall: { description: \"Skip bun install\" },\n noSync: { description: \"Only upgrade packages, skip template sync\" },\n },\n },\n typesGen: {\n commandPath: [\"types\", \"gen\"],\n summary: \"Generate type definitions from configured API and plugin contracts\",\n interactive: false,\n fields: {\n env: { description: \"Environment: development (default) or production\" },\n dryRun: { description: \"Preview what would be fetched without writing files\" },\n },\n },\n dbStudio: {\n commandPath: [\"db\", \"studio\"],\n summary: \"Open Drizzle Studio for a plugin's database\",\n fields: {\n plugin: {\n positional: true,\n description: \"Plugin key: api, auth, or a plugin name (default: api)\",\n },\n },\n },\n status: {\n commandPath: [\"status\"],\n summary: \"Show project health, versions, and update availability\",\n interactive: false,\n },\n} as const satisfies Record<string, CliCommandMeta>;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"contract.meta.cjs","names":[],"sources":["../src/contract.meta.ts"],"sourcesContent":["export type CliCommandMeta = {\n commandPath?: string[];\n summary: string;\n description?: string;\n examples?: string[];\n interactive?: boolean;\n longRunning?: boolean;\n fields?: Record<string, { positional?: boolean; description?: string }>;\n};\n\nexport const cliCommandMeta = {\n dev: {\n commandPath: [\"dev\"],\n summary: \"Start a development session\",\n interactive: true,\n longRunning: true,\n fields: {\n remotePlugins: {\n description:\n \"Comma-separated plugin IDs to force remote (e.g. --remote-plugins auth,registry)\",\n },\n },\n },\n start: {\n commandPath: [\"start\"],\n summary: \"Start the production host\",\n interactive: false,\n longRunning: true,\n fields: {\n env: { description: \"Environment: production or staging\" },\n },\n },\n build: {\n commandPath: [\"build\"],\n summary: \"Build selected workspaces\",\n interactive: false,\n fields: {\n packages: { positional: true, description: \"Comma-separated package list\" },\n },\n },\n config: {\n commandPath: [\"config\"],\n summary: \"Print the loaded BOS configuration\",\n interactive: false,\n fields: {\n full: { description: \"Print the fully resolved configuration\" },\n },\n },\n pluginAdd: {\n commandPath: [\"plugin\", \"add\"],\n summary: \"Add a plugin attachment\",\n interactive: false,\n fields: {\n source: {\n positional: true,\n description: \"Plugin source (local:path, bos://account/domain, or URL)\",\n },\n as: { description: \"Plugin alias\" },\n production: { description: \"Production URL override\" },\n },\n },\n pluginRemove: {\n commandPath: [\"plugin\", \"remove\"],\n summary: \"Remove a plugin attachment\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n pluginList: {\n commandPath: [\"plugin\", \"list\"],\n summary: \"List configured plugins\",\n interactive: false,\n },\n pluginPublish: {\n commandPath: [\"plugin\", \"publish\"],\n summary: \"Publish a single plugin\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n publish: {\n commandPath: [\"publish\"],\n summary: \"Publish the current workspace configuration\",\n interactive: false,\n fields: {\n deploy: { description: \"Build and deploy all workspaces before publish\" },\n dryRun: { description: \"Preview what would be published without writing\" },\n verbose: { description: \"Show full build output instead of clean summary\" },\n env: { description: \"Environment: production or staging\" },\n network: { description: \"NEAR network: mainnet or testnet\" },\n },\n },\n deploy: {\n commandPath: [\"deploy\"],\n summary: \"Publish config and trigger Railway redeploy\",\n interactive: false,\n fields: {\n env: { description: \"Environment: production or staging\" },\n build: { description: \"Build and deploy workspaces before publish (default: true)\" },\n dryRun: { description: \"Preview what would be deployed without writing\" },\n verbose: { description: \"Show full build output instead of clean summary\" },\n service: { description: \"Override Railway service name from config\" },\n },\n },\n keyPublish: {\n commandPath: [\"key\", \"publish\"],\n summary: \"Generate a publish access key\",\n interactive: false,\n },\n init: {\n commandPath: [\"init\"],\n summary: \"Scaffold a new project by extending a deployed app or template\",\n interactive: true,\n fields: {\n domain: {\n positional: true,\n description: \"New project domain (e.g. myapp.everything.dev)\",\n },\n extends: {\n description: \"Parent to extend from (e.g. bos://account/gateway or account/gateway)\",\n },\n account: { description: \"New project NEAR account (auto-derived from extends)\" },\n directory: { description: \"Target directory (auto-derived from domain)\" },\n source: { description: \"Local source dir (skips GitHub download)\" },\n plugins: {\n description: \"Comma-separated plugin keys to include (requires --overrides=plugins)\",\n },\n overrides: {\n description: \"Comma-separated sections to customize locally: ui,api,host,plugins\",\n },\n noInteractive: { description: \"Skip prompts, use flags only\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n sync: {\n commandPath: [\"sync\"],\n summary: \"Sync template files from parent project\",\n interactive: false,\n fields: {\n dryRun: { description: \"Preview changes without writing files\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n upgrade: {\n commandPath: [\"upgrade\"],\n summary: \"Upgrade framework packages and sync template files\",\n interactive: true,\n fields: {\n dryRun: { description: \"Preview changes without writing\" },\n noInstall: { description: \"Skip bun install\" },\n noSync: { description: \"Only upgrade packages, skip template sync\" },\n },\n },\n typesGen: {\n commandPath: [\"types\", \"gen\"],\n summary: \"Generate type definitions from configured API and plugin contracts\",\n interactive: false,\n fields: {\n env: { description: \"Environment: development (default) or production\" },\n dryRun: { description: \"Preview what would be fetched without writing files\" },\n },\n },\n dbStudio: {\n commandPath: [\"db\", \"studio\"],\n summary: \"Open Drizzle Studio for a plugin's database\",\n fields: {\n plugin: {\n positional: true,\n description: \"Plugin key: api, auth, or a plugin name (default: api)\",\n },\n },\n },\n status: {\n commandPath: [\"status\"],\n summary: \"Show project health, versions, and update availability\",\n interactive: false,\n },\n} as const satisfies Record<string, CliCommandMeta>;\n"],"mappings":";;;AAUA,MAAa,iBAAiB;CAC5B,KAAK;EACH,aAAa,CAAC,MAAM;EACpB,SAAS;EACT,aAAa;EACb,aAAa;EACb,QAAQ,EACN,eAAe,EACb,aACE,oFACH,EACF;EACF;CACD,OAAO;EACL,aAAa,CAAC,QAAQ;EACtB,SAAS;EACT,aAAa;EACb,aAAa;EACb,QAAQ,EACN,KAAK,EAAE,aAAa,sCAAsC,EAC3D;EACF;CACD,OAAO;EACL,aAAa,CAAC,QAAQ;EACtB,SAAS;EACT,aAAa;EACb,QAAQ,EACN,UAAU;GAAE,YAAY;GAAM,aAAa;GAAgC,EAC5E;EACF;CACD,QAAQ;EACN,aAAa,CAAC,SAAS;EACvB,SAAS;EACT,aAAa;EACb,QAAQ,EACN,MAAM,EAAE,aAAa,0CAA0C,EAChE;EACF;CACD,WAAW;EACT,aAAa,CAAC,UAAU,MAAM;EAC9B,SAAS;EACT,aAAa;EACb,QAAQ;GACN,QAAQ;IACN,YAAY;IACZ,aAAa;IACd;GACD,IAAI,EAAE,aAAa,gBAAgB;GACnC,YAAY,EAAE,aAAa,2BAA2B;GACvD;EACF;CACD,cAAc;EACZ,aAAa,CAAC,UAAU,SAAS;EACjC,SAAS;EACT,aAAa;EACb,QAAQ,EAAE,KAAK;GAAE,YAAY;GAAM,aAAa;GAAc,EAAE;EACjE;CACD,YAAY;EACV,aAAa,CAAC,UAAU,OAAO;EAC/B,SAAS;EACT,aAAa;EACd;CACD,eAAe;EACb,aAAa,CAAC,UAAU,UAAU;EAClC,SAAS;EACT,aAAa;EACb,QAAQ,EAAE,KAAK;GAAE,YAAY;GAAM,aAAa;GAAc,EAAE;EACjE;CACD,SAAS;EACP,aAAa,CAAC,UAAU;EACxB,SAAS;EACT,aAAa;EACb,QAAQ;GACN,QAAQ,EAAE,aAAa,kDAAkD;GACzE,QAAQ,EAAE,aAAa,mDAAmD;GAC1E,SAAS,EAAE,aAAa,mDAAmD;GAC3E,KAAK,EAAE,aAAa,sCAAsC;GAC1D,SAAS,EAAE,aAAa,oCAAoC;GAC7D;EACF;CACD,QAAQ;EACN,aAAa,CAAC,SAAS;EACvB,SAAS;EACT,aAAa;EACb,QAAQ;GACN,KAAK,EAAE,aAAa,sCAAsC;GAC1D,OAAO,EAAE,aAAa,8DAA8D;GACpF,QAAQ,EAAE,aAAa,kDAAkD;GACzE,SAAS,EAAE,aAAa,mDAAmD;GAC3E,SAAS,EAAE,aAAa,6CAA6C;GACtE;EACF;CACD,YAAY;EACV,aAAa,CAAC,OAAO,UAAU;EAC/B,SAAS;EACT,aAAa;EACd;CACD,MAAM;EACJ,aAAa,CAAC,OAAO;EACrB,SAAS;EACT,aAAa;EACb,QAAQ;GACN,QAAQ;IACN,YAAY;IACZ,aAAa;IACd;GACD,SAAS,EACP,aAAa,yEACd;GACD,SAAS,EAAE,aAAa,wDAAwD;GAChF,WAAW,EAAE,aAAa,+CAA+C;GACzE,QAAQ,EAAE,aAAa,4CAA4C;GACnE,SAAS,EACP,aAAa,yEACd;GACD,WAAW,EACT,aAAa,sEACd;GACD,eAAe,EAAE,aAAa,gCAAgC;GAC9D,WAAW,EAAE,aAAa,oBAAoB;GAC/C;EACF;CACD,MAAM;EACJ,aAAa,CAAC,OAAO;EACrB,SAAS;EACT,aAAa;EACb,QAAQ;GACN,QAAQ,EAAE,aAAa,yCAAyC;GAChE,WAAW,EAAE,aAAa,oBAAoB;GAC/C;EACF;CACD,SAAS;EACP,aAAa,CAAC,UAAU;EACxB,SAAS;EACT,aAAa;EACb,QAAQ;GACN,QAAQ,EAAE,aAAa,mCAAmC;GAC1D,WAAW,EAAE,aAAa,oBAAoB;GAC9C,QAAQ,EAAE,aAAa,6CAA6C;GACrE;EACF;CACD,UAAU;EACR,aAAa,CAAC,SAAS,MAAM;EAC7B,SAAS;EACT,aAAa;EACb,QAAQ;GACN,KAAK,EAAE,aAAa,oDAAoD;GACxE,QAAQ,EAAE,aAAa,uDAAuD;GAC/E;EACF;CACD,UAAU;EACR,aAAa,CAAC,MAAM,SAAS;EAC7B,SAAS;EACT,QAAQ,EACN,QAAQ;GACN,YAAY;GACZ,aAAa;GACd,EACF;EACF;CACD,QAAQ;EACN,aAAa,CAAC,SAAS;EACvB,SAAS;EACT,aAAa;EACd;CACF"}
|
package/dist/contract.meta.d.cts
CHANGED
|
@@ -110,6 +110,9 @@ declare const cliCommandMeta: {
|
|
|
110
110
|
readonly dryRun: {
|
|
111
111
|
readonly description: "Preview what would be published without writing";
|
|
112
112
|
};
|
|
113
|
+
readonly verbose: {
|
|
114
|
+
readonly description: "Show full build output instead of clean summary";
|
|
115
|
+
};
|
|
113
116
|
readonly env: {
|
|
114
117
|
readonly description: "Environment: production or staging";
|
|
115
118
|
};
|
|
@@ -132,6 +135,9 @@ declare const cliCommandMeta: {
|
|
|
132
135
|
readonly dryRun: {
|
|
133
136
|
readonly description: "Preview what would be deployed without writing";
|
|
134
137
|
};
|
|
138
|
+
readonly verbose: {
|
|
139
|
+
readonly description: "Show full build output instead of clean summary";
|
|
140
|
+
};
|
|
135
141
|
readonly service: {
|
|
136
142
|
readonly description: "Override Railway service name from config";
|
|
137
143
|
};
|
package/dist/contract.meta.d.mts
CHANGED
|
@@ -110,6 +110,9 @@ declare const cliCommandMeta: {
|
|
|
110
110
|
readonly dryRun: {
|
|
111
111
|
readonly description: "Preview what would be published without writing";
|
|
112
112
|
};
|
|
113
|
+
readonly verbose: {
|
|
114
|
+
readonly description: "Show full build output instead of clean summary";
|
|
115
|
+
};
|
|
113
116
|
readonly env: {
|
|
114
117
|
readonly description: "Environment: production or staging";
|
|
115
118
|
};
|
|
@@ -132,6 +135,9 @@ declare const cliCommandMeta: {
|
|
|
132
135
|
readonly dryRun: {
|
|
133
136
|
readonly description: "Preview what would be deployed without writing";
|
|
134
137
|
};
|
|
138
|
+
readonly verbose: {
|
|
139
|
+
readonly description: "Show full build output instead of clean summary";
|
|
140
|
+
};
|
|
135
141
|
readonly service: {
|
|
136
142
|
readonly description: "Override Railway service name from config";
|
|
137
143
|
};
|
package/dist/contract.meta.mjs
CHANGED
|
@@ -72,6 +72,7 @@ const cliCommandMeta = {
|
|
|
72
72
|
fields: {
|
|
73
73
|
deploy: { description: "Build and deploy all workspaces before publish" },
|
|
74
74
|
dryRun: { description: "Preview what would be published without writing" },
|
|
75
|
+
verbose: { description: "Show full build output instead of clean summary" },
|
|
75
76
|
env: { description: "Environment: production or staging" },
|
|
76
77
|
network: { description: "NEAR network: mainnet or testnet" }
|
|
77
78
|
}
|
|
@@ -84,6 +85,7 @@ const cliCommandMeta = {
|
|
|
84
85
|
env: { description: "Environment: production or staging" },
|
|
85
86
|
build: { description: "Build and deploy workspaces before publish (default: true)" },
|
|
86
87
|
dryRun: { description: "Preview what would be deployed without writing" },
|
|
88
|
+
verbose: { description: "Show full build output instead of clean summary" },
|
|
87
89
|
service: { description: "Override Railway service name from config" }
|
|
88
90
|
}
|
|
89
91
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.meta.mjs","names":[],"sources":["../src/contract.meta.ts"],"sourcesContent":["export type CliCommandMeta = {\n commandPath?: string[];\n summary: string;\n description?: string;\n examples?: string[];\n interactive?: boolean;\n longRunning?: boolean;\n fields?: Record<string, { positional?: boolean; description?: string }>;\n};\n\nexport const cliCommandMeta = {\n dev: {\n commandPath: [\"dev\"],\n summary: \"Start a development session\",\n interactive: true,\n longRunning: true,\n fields: {\n remotePlugins: {\n description:\n \"Comma-separated plugin IDs to force remote (e.g. --remote-plugins auth,registry)\",\n },\n },\n },\n start: {\n commandPath: [\"start\"],\n summary: \"Start the production host\",\n interactive: false,\n longRunning: true,\n fields: {\n env: { description: \"Environment: production or staging\" },\n },\n },\n build: {\n commandPath: [\"build\"],\n summary: \"Build selected workspaces\",\n interactive: false,\n fields: {\n packages: { positional: true, description: \"Comma-separated package list\" },\n },\n },\n config: {\n commandPath: [\"config\"],\n summary: \"Print the loaded BOS configuration\",\n interactive: false,\n fields: {\n full: { description: \"Print the fully resolved configuration\" },\n },\n },\n pluginAdd: {\n commandPath: [\"plugin\", \"add\"],\n summary: \"Add a plugin attachment\",\n interactive: false,\n fields: {\n source: {\n positional: true,\n description: \"Plugin source (local:path, bos://account/domain, or URL)\",\n },\n as: { description: \"Plugin alias\" },\n production: { description: \"Production URL override\" },\n },\n },\n pluginRemove: {\n commandPath: [\"plugin\", \"remove\"],\n summary: \"Remove a plugin attachment\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n pluginList: {\n commandPath: [\"plugin\", \"list\"],\n summary: \"List configured plugins\",\n interactive: false,\n },\n pluginPublish: {\n commandPath: [\"plugin\", \"publish\"],\n summary: \"Publish a single plugin\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n publish: {\n commandPath: [\"publish\"],\n summary: \"Publish the current workspace configuration\",\n interactive: false,\n fields: {\n deploy: { description: \"Build and deploy all workspaces before publish\" },\n dryRun: { description: \"Preview what would be published without writing\" },\n env: { description: \"Environment: production or staging\" },\n network: { description: \"NEAR network: mainnet or testnet\" },\n },\n },\n deploy: {\n commandPath: [\"deploy\"],\n summary: \"Publish config and trigger Railway redeploy\",\n interactive: false,\n fields: {\n env: { description: \"Environment: production or staging\" },\n build: { description: \"Build and deploy workspaces before publish (default: true)\" },\n dryRun: { description: \"Preview what would be deployed without writing\" },\n service: { description: \"Override Railway service name from config\" },\n },\n },\n keyPublish: {\n commandPath: [\"key\", \"publish\"],\n summary: \"Generate a publish access key\",\n interactive: false,\n },\n init: {\n commandPath: [\"init\"],\n summary: \"Scaffold a new project by extending a deployed app or template\",\n interactive: true,\n fields: {\n domain: {\n positional: true,\n description: \"New project domain (e.g. myapp.everything.dev)\",\n },\n extends: {\n description: \"Parent to extend from (e.g. bos://account/gateway or account/gateway)\",\n },\n account: { description: \"New project NEAR account (auto-derived from extends)\" },\n directory: { description: \"Target directory (auto-derived from domain)\" },\n source: { description: \"Local source dir (skips GitHub download)\" },\n plugins: {\n description: \"Comma-separated plugin keys to include (requires --overrides=plugins)\",\n },\n overrides: {\n description: \"Comma-separated sections to customize locally: ui,api,host,plugins\",\n },\n noInteractive: { description: \"Skip prompts, use flags only\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n sync: {\n commandPath: [\"sync\"],\n summary: \"Sync template files from parent project\",\n interactive: false,\n fields: {\n dryRun: { description: \"Preview changes without writing files\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n upgrade: {\n commandPath: [\"upgrade\"],\n summary: \"Upgrade framework packages and sync template files\",\n interactive: true,\n fields: {\n dryRun: { description: \"Preview changes without writing\" },\n noInstall: { description: \"Skip bun install\" },\n noSync: { description: \"Only upgrade packages, skip template sync\" },\n },\n },\n typesGen: {\n commandPath: [\"types\", \"gen\"],\n summary: \"Generate type definitions from configured API and plugin contracts\",\n interactive: false,\n fields: {\n env: { description: \"Environment: development (default) or production\" },\n dryRun: { description: \"Preview what would be fetched without writing files\" },\n },\n },\n dbStudio: {\n commandPath: [\"db\", \"studio\"],\n summary: \"Open Drizzle Studio for a plugin's database\",\n fields: {\n plugin: {\n positional: true,\n description: \"Plugin key: api, auth, or a plugin name (default: api)\",\n },\n },\n },\n status: {\n commandPath: [\"status\"],\n summary: \"Show project health, versions, and update availability\",\n interactive: false,\n },\n} as const satisfies Record<string, CliCommandMeta>;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"contract.meta.mjs","names":[],"sources":["../src/contract.meta.ts"],"sourcesContent":["export type CliCommandMeta = {\n commandPath?: string[];\n summary: string;\n description?: string;\n examples?: string[];\n interactive?: boolean;\n longRunning?: boolean;\n fields?: Record<string, { positional?: boolean; description?: string }>;\n};\n\nexport const cliCommandMeta = {\n dev: {\n commandPath: [\"dev\"],\n summary: \"Start a development session\",\n interactive: true,\n longRunning: true,\n fields: {\n remotePlugins: {\n description:\n \"Comma-separated plugin IDs to force remote (e.g. --remote-plugins auth,registry)\",\n },\n },\n },\n start: {\n commandPath: [\"start\"],\n summary: \"Start the production host\",\n interactive: false,\n longRunning: true,\n fields: {\n env: { description: \"Environment: production or staging\" },\n },\n },\n build: {\n commandPath: [\"build\"],\n summary: \"Build selected workspaces\",\n interactive: false,\n fields: {\n packages: { positional: true, description: \"Comma-separated package list\" },\n },\n },\n config: {\n commandPath: [\"config\"],\n summary: \"Print the loaded BOS configuration\",\n interactive: false,\n fields: {\n full: { description: \"Print the fully resolved configuration\" },\n },\n },\n pluginAdd: {\n commandPath: [\"plugin\", \"add\"],\n summary: \"Add a plugin attachment\",\n interactive: false,\n fields: {\n source: {\n positional: true,\n description: \"Plugin source (local:path, bos://account/domain, or URL)\",\n },\n as: { description: \"Plugin alias\" },\n production: { description: \"Production URL override\" },\n },\n },\n pluginRemove: {\n commandPath: [\"plugin\", \"remove\"],\n summary: \"Remove a plugin attachment\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n pluginList: {\n commandPath: [\"plugin\", \"list\"],\n summary: \"List configured plugins\",\n interactive: false,\n },\n pluginPublish: {\n commandPath: [\"plugin\", \"publish\"],\n summary: \"Publish a single plugin\",\n interactive: false,\n fields: { key: { positional: true, description: \"Plugin key\" } },\n },\n publish: {\n commandPath: [\"publish\"],\n summary: \"Publish the current workspace configuration\",\n interactive: false,\n fields: {\n deploy: { description: \"Build and deploy all workspaces before publish\" },\n dryRun: { description: \"Preview what would be published without writing\" },\n verbose: { description: \"Show full build output instead of clean summary\" },\n env: { description: \"Environment: production or staging\" },\n network: { description: \"NEAR network: mainnet or testnet\" },\n },\n },\n deploy: {\n commandPath: [\"deploy\"],\n summary: \"Publish config and trigger Railway redeploy\",\n interactive: false,\n fields: {\n env: { description: \"Environment: production or staging\" },\n build: { description: \"Build and deploy workspaces before publish (default: true)\" },\n dryRun: { description: \"Preview what would be deployed without writing\" },\n verbose: { description: \"Show full build output instead of clean summary\" },\n service: { description: \"Override Railway service name from config\" },\n },\n },\n keyPublish: {\n commandPath: [\"key\", \"publish\"],\n summary: \"Generate a publish access key\",\n interactive: false,\n },\n init: {\n commandPath: [\"init\"],\n summary: \"Scaffold a new project by extending a deployed app or template\",\n interactive: true,\n fields: {\n domain: {\n positional: true,\n description: \"New project domain (e.g. myapp.everything.dev)\",\n },\n extends: {\n description: \"Parent to extend from (e.g. bos://account/gateway or account/gateway)\",\n },\n account: { description: \"New project NEAR account (auto-derived from extends)\" },\n directory: { description: \"Target directory (auto-derived from domain)\" },\n source: { description: \"Local source dir (skips GitHub download)\" },\n plugins: {\n description: \"Comma-separated plugin keys to include (requires --overrides=plugins)\",\n },\n overrides: {\n description: \"Comma-separated sections to customize locally: ui,api,host,plugins\",\n },\n noInteractive: { description: \"Skip prompts, use flags only\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n sync: {\n commandPath: [\"sync\"],\n summary: \"Sync template files from parent project\",\n interactive: false,\n fields: {\n dryRun: { description: \"Preview changes without writing files\" },\n noInstall: { description: \"Skip bun install\" },\n },\n },\n upgrade: {\n commandPath: [\"upgrade\"],\n summary: \"Upgrade framework packages and sync template files\",\n interactive: true,\n fields: {\n dryRun: { description: \"Preview changes without writing\" },\n noInstall: { description: \"Skip bun install\" },\n noSync: { description: \"Only upgrade packages, skip template sync\" },\n },\n },\n typesGen: {\n commandPath: [\"types\", \"gen\"],\n summary: \"Generate type definitions from configured API and plugin contracts\",\n interactive: false,\n fields: {\n env: { description: \"Environment: development (default) or production\" },\n dryRun: { description: \"Preview what would be fetched without writing files\" },\n },\n },\n dbStudio: {\n commandPath: [\"db\", \"studio\"],\n summary: \"Open Drizzle Studio for a plugin's database\",\n fields: {\n plugin: {\n positional: true,\n description: \"Plugin key: api, auth, or a plugin name (default: api)\",\n },\n },\n },\n status: {\n commandPath: [\"status\"],\n summary: \"Show project health, versions, and update availability\",\n interactive: false,\n },\n} as const satisfies Record<string, CliCommandMeta>;\n"],"mappings":"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"}
|