everything-dev 1.16.3 → 1.19.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/cli/init.cjs +167 -87
- package/dist/cli/init.cjs.map +1 -1
- package/dist/cli/init.d.cts +14 -2
- package/dist/cli/init.d.cts.map +1 -1
- package/dist/cli/init.d.mts +14 -2
- package/dist/cli/init.d.mts.map +1 -1
- package/dist/cli/init.mjs +166 -88
- package/dist/cli/init.mjs.map +1 -1
- package/dist/cli/prompts.cjs +12 -14
- package/dist/cli/prompts.cjs.map +1 -1
- package/dist/cli/prompts.mjs +12 -14
- package/dist/cli/prompts.mjs.map +1 -1
- package/dist/cli/sync.cjs +3 -5
- package/dist/cli/sync.cjs.map +1 -1
- package/dist/cli/sync.mjs +3 -5
- package/dist/cli/sync.mjs.map +1 -1
- package/dist/cli/upgrade.cjs +214 -2
- package/dist/cli/upgrade.cjs.map +1 -1
- package/dist/cli/upgrade.mjs +214 -2
- package/dist/cli/upgrade.mjs.map +1 -1
- package/dist/config.cjs +125 -74
- package/dist/config.cjs.map +1 -1
- package/dist/config.d.cts +9 -2
- package/dist/config.d.cts.map +1 -1
- package/dist/config.d.mts +9 -2
- package/dist/config.d.mts.map +1 -1
- package/dist/config.mjs +126 -76
- package/dist/config.mjs.map +1 -1
- package/dist/contract.cjs +1 -4
- package/dist/contract.cjs.map +1 -1
- package/dist/contract.d.cts +40 -22
- package/dist/contract.d.cts.map +1 -1
- package/dist/contract.d.mts +40 -22
- package/dist/contract.d.mts.map +1 -1
- package/dist/contract.meta.cjs +5 -5
- package/dist/contract.meta.cjs.map +1 -1
- package/dist/contract.meta.d.cts +9 -9
- package/dist/contract.meta.d.mts +9 -9
- package/dist/contract.meta.mjs +5 -5
- package/dist/contract.meta.mjs.map +1 -1
- package/dist/contract.mjs +1 -4
- package/dist/contract.mjs.map +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +3 -3
- package/dist/merge.cjs +1 -0
- package/dist/merge.mjs +1 -1
- package/dist/plugin.cjs +70 -114
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +38 -17
- package/dist/plugin.d.cts.map +1 -1
- package/dist/plugin.d.mts +38 -17
- package/dist/plugin.d.mts.map +1 -1
- package/dist/plugin.mjs +71 -115
- package/dist/plugin.mjs.map +1 -1
- package/dist/sidebar.cjs +6 -14
- package/dist/sidebar.cjs.map +1 -1
- package/dist/sidebar.d.cts +3 -3
- package/dist/sidebar.d.cts.map +1 -1
- package/dist/sidebar.d.mts +3 -3
- package/dist/sidebar.d.mts.map +1 -1
- package/dist/sidebar.mjs +6 -14
- package/dist/sidebar.mjs.map +1 -1
- package/dist/types.cjs +10 -16
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +56 -12
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +56 -12
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +10 -17
- package/dist/types.mjs.map +1 -1
- package/package.json +1 -1
- package/src/cli/init.ts +225 -131
- package/src/cli/prompts.ts +17 -22
- package/src/cli/sync.ts +5 -8
- package/src/cli/upgrade.ts +326 -2
- package/src/config.ts +250 -107
- package/src/contract.meta.ts +6 -8
- package/src/contract.ts +1 -4
- package/src/plugin.ts +120 -183
- package/src/sidebar.ts +9 -31
- package/src/types.ts +10 -15
package/dist/contract.d.cts
CHANGED
|
@@ -94,15 +94,13 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
94
94
|
production: z.ZodOptional<z.ZodString>;
|
|
95
95
|
staging: z.ZodOptional<z.ZodString>;
|
|
96
96
|
}, z.core.$strip>]>>;
|
|
97
|
+
name: z.ZodOptional<z.ZodString>;
|
|
97
98
|
development: z.ZodOptional<z.ZodString>;
|
|
98
99
|
production: z.ZodOptional<z.ZodString>;
|
|
99
100
|
integrity: z.ZodOptional<z.ZodString>;
|
|
100
|
-
name: z.ZodOptional<z.ZodString>;
|
|
101
|
-
version: z.ZodOptional<z.ZodString>;
|
|
102
101
|
proxy: z.ZodOptional<z.ZodString>;
|
|
103
102
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
104
103
|
secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
105
|
-
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
106
104
|
sidebar: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
105
|
icon: z.ZodString;
|
|
108
106
|
label: z.ZodString;
|
|
@@ -113,6 +111,8 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
113
111
|
admin: "admin";
|
|
114
112
|
}>>;
|
|
115
113
|
}, z.core.$strip>>>;
|
|
114
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
115
|
+
version: z.ZodOptional<z.ZodString>;
|
|
116
116
|
app: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
117
117
|
shared: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
118
118
|
version: z.ZodString;
|
|
@@ -140,7 +140,12 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
140
140
|
ssrIntegrity: z.ZodOptional<z.ZodString>;
|
|
141
141
|
}, z.core.$strip>;
|
|
142
142
|
api: z.ZodObject<{
|
|
143
|
-
|
|
143
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
144
|
+
development: z.ZodOptional<z.ZodString>;
|
|
145
|
+
production: z.ZodOptional<z.ZodString>;
|
|
146
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
147
|
+
}, z.core.$strip>]>>;
|
|
148
|
+
name: z.ZodOptional<z.ZodString>;
|
|
144
149
|
development: z.ZodOptional<z.ZodString>;
|
|
145
150
|
production: z.ZodOptional<z.ZodString>;
|
|
146
151
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -157,9 +162,15 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
157
162
|
admin: "admin";
|
|
158
163
|
}>>;
|
|
159
164
|
}, z.core.$strip>>>;
|
|
165
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
160
166
|
}, z.core.$strip>;
|
|
161
167
|
auth: z.ZodOptional<z.ZodObject<{
|
|
162
|
-
|
|
168
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
169
|
+
development: z.ZodOptional<z.ZodString>;
|
|
170
|
+
production: z.ZodOptional<z.ZodString>;
|
|
171
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
172
|
+
}, z.core.$strip>]>>;
|
|
173
|
+
name: z.ZodOptional<z.ZodString>;
|
|
163
174
|
development: z.ZodOptional<z.ZodString>;
|
|
164
175
|
production: z.ZodOptional<z.ZodString>;
|
|
165
176
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -176,6 +187,7 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
176
187
|
admin: "admin";
|
|
177
188
|
}>>;
|
|
178
189
|
}, z.core.$strip>>>;
|
|
190
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
179
191
|
}, z.core.$strip>>;
|
|
180
192
|
}, z.core.$strip>;
|
|
181
193
|
}, z.core.$strip>>;
|
|
@@ -251,8 +263,8 @@ declare const PublishOptionsSchema: z.ZodObject<{
|
|
|
251
263
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
252
264
|
packages: z.ZodDefault<z.ZodString>;
|
|
253
265
|
network: z.ZodOptional<z.ZodEnum<{
|
|
254
|
-
testnet: "testnet";
|
|
255
266
|
mainnet: "mainnet";
|
|
267
|
+
testnet: "testnet";
|
|
256
268
|
}>>;
|
|
257
269
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
258
270
|
}, z.core.$strip>;
|
|
@@ -278,8 +290,8 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
278
290
|
}>;
|
|
279
291
|
account: z.ZodString;
|
|
280
292
|
network: z.ZodEnum<{
|
|
281
|
-
testnet: "testnet";
|
|
282
293
|
mainnet: "mainnet";
|
|
294
|
+
testnet: "testnet";
|
|
283
295
|
}>;
|
|
284
296
|
contract: z.ZodString;
|
|
285
297
|
allowance: z.ZodString;
|
|
@@ -290,8 +302,6 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
290
302
|
}, z.core.$strip>;
|
|
291
303
|
declare const InitOptionsSchema: z.ZodObject<{
|
|
292
304
|
extends: z.ZodOptional<z.ZodString>;
|
|
293
|
-
extendsAccount: z.ZodOptional<z.ZodString>;
|
|
294
|
-
extendsGateway: z.ZodOptional<z.ZodString>;
|
|
295
305
|
directory: z.ZodOptional<z.ZodString>;
|
|
296
306
|
account: z.ZodOptional<z.ZodString>;
|
|
297
307
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -311,8 +321,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
311
321
|
initialized: "initialized";
|
|
312
322
|
}>;
|
|
313
323
|
directory: z.ZodString;
|
|
314
|
-
|
|
315
|
-
extendsGateway: z.ZodString;
|
|
324
|
+
extendsRef: z.ZodString;
|
|
316
325
|
account: z.ZodOptional<z.ZodString>;
|
|
317
326
|
domain: z.ZodOptional<z.ZodString>;
|
|
318
327
|
extends: z.ZodString;
|
|
@@ -512,15 +521,13 @@ declare const bosContract: {
|
|
|
512
521
|
production: z.ZodOptional<z.ZodString>;
|
|
513
522
|
staging: z.ZodOptional<z.ZodString>;
|
|
514
523
|
}, z.core.$strip>]>>;
|
|
524
|
+
name: z.ZodOptional<z.ZodString>;
|
|
515
525
|
development: z.ZodOptional<z.ZodString>;
|
|
516
526
|
production: z.ZodOptional<z.ZodString>;
|
|
517
527
|
integrity: z.ZodOptional<z.ZodString>;
|
|
518
|
-
name: z.ZodOptional<z.ZodString>;
|
|
519
|
-
version: z.ZodOptional<z.ZodString>;
|
|
520
528
|
proxy: z.ZodOptional<z.ZodString>;
|
|
521
529
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
522
530
|
secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
523
|
-
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
524
531
|
sidebar: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
525
532
|
icon: z.ZodString;
|
|
526
533
|
label: z.ZodString;
|
|
@@ -531,6 +538,8 @@ declare const bosContract: {
|
|
|
531
538
|
admin: "admin";
|
|
532
539
|
}>>;
|
|
533
540
|
}, z.core.$strip>>>;
|
|
541
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
542
|
+
version: z.ZodOptional<z.ZodString>;
|
|
534
543
|
app: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
535
544
|
shared: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
536
545
|
version: z.ZodString;
|
|
@@ -558,7 +567,12 @@ declare const bosContract: {
|
|
|
558
567
|
ssrIntegrity: z.ZodOptional<z.ZodString>;
|
|
559
568
|
}, z.core.$strip>;
|
|
560
569
|
api: z.ZodObject<{
|
|
561
|
-
|
|
570
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
571
|
+
development: z.ZodOptional<z.ZodString>;
|
|
572
|
+
production: z.ZodOptional<z.ZodString>;
|
|
573
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
574
|
+
}, z.core.$strip>]>>;
|
|
575
|
+
name: z.ZodOptional<z.ZodString>;
|
|
562
576
|
development: z.ZodOptional<z.ZodString>;
|
|
563
577
|
production: z.ZodOptional<z.ZodString>;
|
|
564
578
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -575,9 +589,15 @@ declare const bosContract: {
|
|
|
575
589
|
admin: "admin";
|
|
576
590
|
}>>;
|
|
577
591
|
}, z.core.$strip>>>;
|
|
592
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
578
593
|
}, z.core.$strip>;
|
|
579
594
|
auth: z.ZodOptional<z.ZodObject<{
|
|
580
|
-
|
|
595
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
596
|
+
development: z.ZodOptional<z.ZodString>;
|
|
597
|
+
production: z.ZodOptional<z.ZodString>;
|
|
598
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
599
|
+
}, z.core.$strip>]>>;
|
|
600
|
+
name: z.ZodOptional<z.ZodString>;
|
|
581
601
|
development: z.ZodOptional<z.ZodString>;
|
|
582
602
|
production: z.ZodOptional<z.ZodString>;
|
|
583
603
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -594,6 +614,7 @@ declare const bosContract: {
|
|
|
594
614
|
admin: "admin";
|
|
595
615
|
}>>;
|
|
596
616
|
}, z.core.$strip>>>;
|
|
617
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
618
|
}, z.core.$strip>>;
|
|
598
619
|
}, z.core.$strip>;
|
|
599
620
|
}, z.core.$strip>>;
|
|
@@ -666,8 +687,8 @@ declare const bosContract: {
|
|
|
666
687
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
667
688
|
packages: z.ZodDefault<z.ZodString>;
|
|
668
689
|
network: z.ZodOptional<z.ZodEnum<{
|
|
669
|
-
testnet: "testnet";
|
|
670
690
|
mainnet: "mainnet";
|
|
691
|
+
testnet: "testnet";
|
|
671
692
|
}>>;
|
|
672
693
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
673
694
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -691,8 +712,8 @@ declare const bosContract: {
|
|
|
691
712
|
}>;
|
|
692
713
|
account: z.ZodString;
|
|
693
714
|
network: z.ZodEnum<{
|
|
694
|
-
testnet: "testnet";
|
|
695
715
|
mainnet: "mainnet";
|
|
716
|
+
testnet: "testnet";
|
|
696
717
|
}>;
|
|
697
718
|
contract: z.ZodString;
|
|
698
719
|
allowance: z.ZodString;
|
|
@@ -703,8 +724,6 @@ declare const bosContract: {
|
|
|
703
724
|
}, z.core.$strip>, MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
704
725
|
init: ContractProcedure<z.ZodObject<{
|
|
705
726
|
extends: z.ZodOptional<z.ZodString>;
|
|
706
|
-
extendsAccount: z.ZodOptional<z.ZodString>;
|
|
707
|
-
extendsGateway: z.ZodOptional<z.ZodString>;
|
|
708
727
|
directory: z.ZodOptional<z.ZodString>;
|
|
709
728
|
account: z.ZodOptional<z.ZodString>;
|
|
710
729
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -719,8 +738,7 @@ declare const bosContract: {
|
|
|
719
738
|
initialized: "initialized";
|
|
720
739
|
}>;
|
|
721
740
|
directory: z.ZodString;
|
|
722
|
-
|
|
723
|
-
extendsGateway: z.ZodString;
|
|
741
|
+
extendsRef: z.ZodString;
|
|
724
742
|
account: z.ZodOptional<z.ZodString>;
|
|
725
743
|
domain: z.ZodOptional<z.ZodString>;
|
|
726
744
|
extends: z.ZodString;
|
package/dist/contract.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.cts","names":[],"sources":["../src/contract.ts"],"mappings":";;;;cAGa,gBAAA,EAAgB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;cAWhB,eAAA,EAAe,CAAA,CAAA,SAAA;;;;;;;;cAMf,kBAAA,EAAkB,CAAA,CAAA,SAAA;;;;;;;;;;cAQlB,iBAAA,EAAiB,CAAA,CAAA,SAAA;;;;;;;;cAMjB,kBAAA,EAAkB,CAAA,CAAA,SAAA;;;;;cAMlB,iBAAA,EAAiB,CAAA,CAAA,SAAA;;;;;;;;;cAOjB,kBAAA,EAAkB,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
|
@@ -94,15 +94,13 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
94
94
|
production: z.ZodOptional<z.ZodString>;
|
|
95
95
|
staging: z.ZodOptional<z.ZodString>;
|
|
96
96
|
}, z.core.$strip>]>>;
|
|
97
|
+
name: z.ZodOptional<z.ZodString>;
|
|
97
98
|
development: z.ZodOptional<z.ZodString>;
|
|
98
99
|
production: z.ZodOptional<z.ZodString>;
|
|
99
100
|
integrity: z.ZodOptional<z.ZodString>;
|
|
100
|
-
name: z.ZodOptional<z.ZodString>;
|
|
101
|
-
version: z.ZodOptional<z.ZodString>;
|
|
102
101
|
proxy: z.ZodOptional<z.ZodString>;
|
|
103
102
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
104
103
|
secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
105
|
-
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
106
104
|
sidebar: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
105
|
icon: z.ZodString;
|
|
108
106
|
label: z.ZodString;
|
|
@@ -113,6 +111,8 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
113
111
|
admin: "admin";
|
|
114
112
|
}>>;
|
|
115
113
|
}, z.core.$strip>>>;
|
|
114
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
115
|
+
version: z.ZodOptional<z.ZodString>;
|
|
116
116
|
app: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
117
117
|
shared: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
118
118
|
version: z.ZodString;
|
|
@@ -140,7 +140,12 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
140
140
|
ssrIntegrity: z.ZodOptional<z.ZodString>;
|
|
141
141
|
}, z.core.$strip>;
|
|
142
142
|
api: z.ZodObject<{
|
|
143
|
-
|
|
143
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
144
|
+
development: z.ZodOptional<z.ZodString>;
|
|
145
|
+
production: z.ZodOptional<z.ZodString>;
|
|
146
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
147
|
+
}, z.core.$strip>]>>;
|
|
148
|
+
name: z.ZodOptional<z.ZodString>;
|
|
144
149
|
development: z.ZodOptional<z.ZodString>;
|
|
145
150
|
production: z.ZodOptional<z.ZodString>;
|
|
146
151
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -157,9 +162,15 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
157
162
|
admin: "admin";
|
|
158
163
|
}>>;
|
|
159
164
|
}, z.core.$strip>>>;
|
|
165
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
160
166
|
}, z.core.$strip>;
|
|
161
167
|
auth: z.ZodOptional<z.ZodObject<{
|
|
162
|
-
|
|
168
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
169
|
+
development: z.ZodOptional<z.ZodString>;
|
|
170
|
+
production: z.ZodOptional<z.ZodString>;
|
|
171
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
172
|
+
}, z.core.$strip>]>>;
|
|
173
|
+
name: z.ZodOptional<z.ZodString>;
|
|
163
174
|
development: z.ZodOptional<z.ZodString>;
|
|
164
175
|
production: z.ZodOptional<z.ZodString>;
|
|
165
176
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -176,6 +187,7 @@ declare const ConfigResultSchema: z.ZodObject<{
|
|
|
176
187
|
admin: "admin";
|
|
177
188
|
}>>;
|
|
178
189
|
}, z.core.$strip>>>;
|
|
190
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
179
191
|
}, z.core.$strip>>;
|
|
180
192
|
}, z.core.$strip>;
|
|
181
193
|
}, z.core.$strip>>;
|
|
@@ -251,8 +263,8 @@ declare const PublishOptionsSchema: z.ZodObject<{
|
|
|
251
263
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
252
264
|
packages: z.ZodDefault<z.ZodString>;
|
|
253
265
|
network: z.ZodOptional<z.ZodEnum<{
|
|
254
|
-
testnet: "testnet";
|
|
255
266
|
mainnet: "mainnet";
|
|
267
|
+
testnet: "testnet";
|
|
256
268
|
}>>;
|
|
257
269
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
258
270
|
}, z.core.$strip>;
|
|
@@ -278,8 +290,8 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
278
290
|
}>;
|
|
279
291
|
account: z.ZodString;
|
|
280
292
|
network: z.ZodEnum<{
|
|
281
|
-
testnet: "testnet";
|
|
282
293
|
mainnet: "mainnet";
|
|
294
|
+
testnet: "testnet";
|
|
283
295
|
}>;
|
|
284
296
|
contract: z.ZodString;
|
|
285
297
|
allowance: z.ZodString;
|
|
@@ -290,8 +302,6 @@ declare const KeyPublishResultSchema: z.ZodObject<{
|
|
|
290
302
|
}, z.core.$strip>;
|
|
291
303
|
declare const InitOptionsSchema: z.ZodObject<{
|
|
292
304
|
extends: z.ZodOptional<z.ZodString>;
|
|
293
|
-
extendsAccount: z.ZodOptional<z.ZodString>;
|
|
294
|
-
extendsGateway: z.ZodOptional<z.ZodString>;
|
|
295
305
|
directory: z.ZodOptional<z.ZodString>;
|
|
296
306
|
account: z.ZodOptional<z.ZodString>;
|
|
297
307
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -311,8 +321,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
311
321
|
initialized: "initialized";
|
|
312
322
|
}>;
|
|
313
323
|
directory: z.ZodString;
|
|
314
|
-
|
|
315
|
-
extendsGateway: z.ZodString;
|
|
324
|
+
extendsRef: z.ZodString;
|
|
316
325
|
account: z.ZodOptional<z.ZodString>;
|
|
317
326
|
domain: z.ZodOptional<z.ZodString>;
|
|
318
327
|
extends: z.ZodString;
|
|
@@ -512,15 +521,13 @@ declare const bosContract: {
|
|
|
512
521
|
production: z.ZodOptional<z.ZodString>;
|
|
513
522
|
staging: z.ZodOptional<z.ZodString>;
|
|
514
523
|
}, z.core.$strip>]>>;
|
|
524
|
+
name: z.ZodOptional<z.ZodString>;
|
|
515
525
|
development: z.ZodOptional<z.ZodString>;
|
|
516
526
|
production: z.ZodOptional<z.ZodString>;
|
|
517
527
|
integrity: z.ZodOptional<z.ZodString>;
|
|
518
|
-
name: z.ZodOptional<z.ZodString>;
|
|
519
|
-
version: z.ZodOptional<z.ZodString>;
|
|
520
528
|
proxy: z.ZodOptional<z.ZodString>;
|
|
521
529
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
522
530
|
secrets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
523
|
-
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
524
531
|
sidebar: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
525
532
|
icon: z.ZodString;
|
|
526
533
|
label: z.ZodString;
|
|
@@ -531,6 +538,8 @@ declare const bosContract: {
|
|
|
531
538
|
admin: "admin";
|
|
532
539
|
}>>;
|
|
533
540
|
}, z.core.$strip>>>;
|
|
541
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
542
|
+
version: z.ZodOptional<z.ZodString>;
|
|
534
543
|
app: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
535
544
|
shared: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
536
545
|
version: z.ZodString;
|
|
@@ -558,7 +567,12 @@ declare const bosContract: {
|
|
|
558
567
|
ssrIntegrity: z.ZodOptional<z.ZodString>;
|
|
559
568
|
}, z.core.$strip>;
|
|
560
569
|
api: z.ZodObject<{
|
|
561
|
-
|
|
570
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
571
|
+
development: z.ZodOptional<z.ZodString>;
|
|
572
|
+
production: z.ZodOptional<z.ZodString>;
|
|
573
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
574
|
+
}, z.core.$strip>]>>;
|
|
575
|
+
name: z.ZodOptional<z.ZodString>;
|
|
562
576
|
development: z.ZodOptional<z.ZodString>;
|
|
563
577
|
production: z.ZodOptional<z.ZodString>;
|
|
564
578
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -575,9 +589,15 @@ declare const bosContract: {
|
|
|
575
589
|
admin: "admin";
|
|
576
590
|
}>>;
|
|
577
591
|
}, z.core.$strip>>>;
|
|
592
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
578
593
|
}, z.core.$strip>;
|
|
579
594
|
auth: z.ZodOptional<z.ZodObject<{
|
|
580
|
-
|
|
595
|
+
extends: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
596
|
+
development: z.ZodOptional<z.ZodString>;
|
|
597
|
+
production: z.ZodOptional<z.ZodString>;
|
|
598
|
+
staging: z.ZodOptional<z.ZodString>;
|
|
599
|
+
}, z.core.$strip>]>>;
|
|
600
|
+
name: z.ZodOptional<z.ZodString>;
|
|
581
601
|
development: z.ZodOptional<z.ZodString>;
|
|
582
602
|
production: z.ZodOptional<z.ZodString>;
|
|
583
603
|
integrity: z.ZodOptional<z.ZodString>;
|
|
@@ -594,6 +614,7 @@ declare const bosContract: {
|
|
|
594
614
|
admin: "admin";
|
|
595
615
|
}>>;
|
|
596
616
|
}, z.core.$strip>>>;
|
|
617
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
618
|
}, z.core.$strip>>;
|
|
598
619
|
}, z.core.$strip>;
|
|
599
620
|
}, z.core.$strip>>;
|
|
@@ -666,8 +687,8 @@ declare const bosContract: {
|
|
|
666
687
|
dryRun: z.ZodDefault<z.ZodBoolean>;
|
|
667
688
|
packages: z.ZodDefault<z.ZodString>;
|
|
668
689
|
network: z.ZodOptional<z.ZodEnum<{
|
|
669
|
-
testnet: "testnet";
|
|
670
690
|
mainnet: "mainnet";
|
|
691
|
+
testnet: "testnet";
|
|
671
692
|
}>>;
|
|
672
693
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
673
694
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -691,8 +712,8 @@ declare const bosContract: {
|
|
|
691
712
|
}>;
|
|
692
713
|
account: z.ZodString;
|
|
693
714
|
network: z.ZodEnum<{
|
|
694
|
-
testnet: "testnet";
|
|
695
715
|
mainnet: "mainnet";
|
|
716
|
+
testnet: "testnet";
|
|
696
717
|
}>;
|
|
697
718
|
contract: z.ZodString;
|
|
698
719
|
allowance: z.ZodString;
|
|
@@ -703,8 +724,6 @@ declare const bosContract: {
|
|
|
703
724
|
}, z.core.$strip>, MergedErrorMap<Record<never, never>, Record<never, never>>, Record<never, never>>;
|
|
704
725
|
init: ContractProcedure<z.ZodObject<{
|
|
705
726
|
extends: z.ZodOptional<z.ZodString>;
|
|
706
|
-
extendsAccount: z.ZodOptional<z.ZodString>;
|
|
707
|
-
extendsGateway: z.ZodOptional<z.ZodString>;
|
|
708
727
|
directory: z.ZodOptional<z.ZodString>;
|
|
709
728
|
account: z.ZodOptional<z.ZodString>;
|
|
710
729
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -719,8 +738,7 @@ declare const bosContract: {
|
|
|
719
738
|
initialized: "initialized";
|
|
720
739
|
}>;
|
|
721
740
|
directory: z.ZodString;
|
|
722
|
-
|
|
723
|
-
extendsGateway: z.ZodString;
|
|
741
|
+
extendsRef: z.ZodString;
|
|
724
742
|
account: z.ZodOptional<z.ZodString>;
|
|
725
743
|
domain: z.ZodOptional<z.ZodString>;
|
|
726
744
|
extends: z.ZodString;
|
package/dist/contract.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.mts","names":[],"sources":["../src/contract.ts"],"mappings":";;;;cAGa,gBAAA,EAAgB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;cAWhB,eAAA,EAAe,CAAA,CAAA,SAAA;;;;;;;;cAMf,kBAAA,EAAkB,CAAA,CAAA,SAAA;;;;;;;;;;cAQlB,iBAAA,EAAiB,CAAA,CAAA,SAAA;;;;;;;;cAMjB,kBAAA,EAAkB,CAAA,CAAA,SAAA;;;;;cAMlB,iBAAA,EAAiB,CAAA,CAAA,SAAA;;;;;;;;;cAOjB,kBAAA,EAAkB,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
|
@@ -77,18 +77,18 @@ const cliCommandMeta = {
|
|
|
77
77
|
},
|
|
78
78
|
init: {
|
|
79
79
|
commandPath: ["init"],
|
|
80
|
-
summary: "Scaffold a new project
|
|
80
|
+
summary: "Scaffold a new project by extending a deployed app or template",
|
|
81
81
|
interactive: true,
|
|
82
82
|
fields: {
|
|
83
83
|
domain: {
|
|
84
84
|
positional: true,
|
|
85
|
-
description: "New project domain (e.g.
|
|
85
|
+
description: "New project domain (e.g. myapp.everything.dev)"
|
|
86
86
|
},
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
extendsGateway: { description: "Parent gateway to extend from (defaults to everything.dev)" },
|
|
87
|
+
extends: { description: "Parent to extend from (e.g. bos://account/gateway or account/gateway)" },
|
|
88
|
+
account: { description: "New project NEAR account (auto-derived from extends)" },
|
|
90
89
|
directory: { description: "Target directory (auto-derived from domain)" },
|
|
91
90
|
source: { description: "Local source dir (skips GitHub download)" },
|
|
91
|
+
plugins: { description: "Comma-separated plugin keys to include" },
|
|
92
92
|
withHost: { description: "Include host/ in template output" },
|
|
93
93
|
noInteractive: { description: "Skip prompts, use flags only" },
|
|
94
94
|
noInstall: { description: "Skip bun install" }
|
|
@@ -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 },\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 },\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 },\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
|
|
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 },\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 },\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 },\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: { description: \"Comma-separated plugin keys to include\" },\n withHost: { description: \"Include host/ in template output\" },\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 force: { description: \"Overwrite user-modified 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 force: { description: \"Overwrite user-modified files during sync\" },\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 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;EACd;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;EACd;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;EACd;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,EAAE,aAAa,0CAA0C;GAClE,UAAU,EAAE,aAAa,oCAAoC;GAC7D,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,OAAO,EAAE,aAAa,iCAAiC;GACvD,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,OAAO,EAAE,aAAa,6CAA6C;GACnE,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,QAAQ;EACN,aAAa,CAAC,SAAS;EACvB,SAAS;EACT,aAAa;EACd;CACF"}
|
package/dist/contract.meta.d.cts
CHANGED
|
@@ -101,21 +101,18 @@ declare const cliCommandMeta: {
|
|
|
101
101
|
};
|
|
102
102
|
readonly init: {
|
|
103
103
|
readonly commandPath: ["init"];
|
|
104
|
-
readonly summary: "Scaffold a new project
|
|
104
|
+
readonly summary: "Scaffold a new project by extending a deployed app or template";
|
|
105
105
|
readonly interactive: true;
|
|
106
106
|
readonly fields: {
|
|
107
107
|
readonly domain: {
|
|
108
108
|
readonly positional: true;
|
|
109
|
-
readonly description: "New project domain (e.g.
|
|
109
|
+
readonly description: "New project domain (e.g. myapp.everything.dev)";
|
|
110
110
|
};
|
|
111
|
-
readonly
|
|
112
|
-
readonly description: "
|
|
113
|
-
};
|
|
114
|
-
readonly extendsAccount: {
|
|
115
|
-
readonly description: "Parent NEAR account to extend from (defaults to dev.everything.near)";
|
|
111
|
+
readonly extends: {
|
|
112
|
+
readonly description: "Parent to extend from (e.g. bos://account/gateway or account/gateway)";
|
|
116
113
|
};
|
|
117
|
-
readonly
|
|
118
|
-
readonly description: "
|
|
114
|
+
readonly account: {
|
|
115
|
+
readonly description: "New project NEAR account (auto-derived from extends)";
|
|
119
116
|
};
|
|
120
117
|
readonly directory: {
|
|
121
118
|
readonly description: "Target directory (auto-derived from domain)";
|
|
@@ -123,6 +120,9 @@ declare const cliCommandMeta: {
|
|
|
123
120
|
readonly source: {
|
|
124
121
|
readonly description: "Local source dir (skips GitHub download)";
|
|
125
122
|
};
|
|
123
|
+
readonly plugins: {
|
|
124
|
+
readonly description: "Comma-separated plugin keys to include";
|
|
125
|
+
};
|
|
126
126
|
readonly withHost: {
|
|
127
127
|
readonly description: "Include host/ in template output";
|
|
128
128
|
};
|
package/dist/contract.meta.d.mts
CHANGED
|
@@ -101,21 +101,18 @@ declare const cliCommandMeta: {
|
|
|
101
101
|
};
|
|
102
102
|
readonly init: {
|
|
103
103
|
readonly commandPath: ["init"];
|
|
104
|
-
readonly summary: "Scaffold a new project
|
|
104
|
+
readonly summary: "Scaffold a new project by extending a deployed app or template";
|
|
105
105
|
readonly interactive: true;
|
|
106
106
|
readonly fields: {
|
|
107
107
|
readonly domain: {
|
|
108
108
|
readonly positional: true;
|
|
109
|
-
readonly description: "New project domain (e.g.
|
|
109
|
+
readonly description: "New project domain (e.g. myapp.everything.dev)";
|
|
110
110
|
};
|
|
111
|
-
readonly
|
|
112
|
-
readonly description: "
|
|
113
|
-
};
|
|
114
|
-
readonly extendsAccount: {
|
|
115
|
-
readonly description: "Parent NEAR account to extend from (defaults to dev.everything.near)";
|
|
111
|
+
readonly extends: {
|
|
112
|
+
readonly description: "Parent to extend from (e.g. bos://account/gateway or account/gateway)";
|
|
116
113
|
};
|
|
117
|
-
readonly
|
|
118
|
-
readonly description: "
|
|
114
|
+
readonly account: {
|
|
115
|
+
readonly description: "New project NEAR account (auto-derived from extends)";
|
|
119
116
|
};
|
|
120
117
|
readonly directory: {
|
|
121
118
|
readonly description: "Target directory (auto-derived from domain)";
|
|
@@ -123,6 +120,9 @@ declare const cliCommandMeta: {
|
|
|
123
120
|
readonly source: {
|
|
124
121
|
readonly description: "Local source dir (skips GitHub download)";
|
|
125
122
|
};
|
|
123
|
+
readonly plugins: {
|
|
124
|
+
readonly description: "Comma-separated plugin keys to include";
|
|
125
|
+
};
|
|
126
126
|
readonly withHost: {
|
|
127
127
|
readonly description: "Include host/ in template output";
|
|
128
128
|
};
|
package/dist/contract.meta.mjs
CHANGED
|
@@ -75,18 +75,18 @@ const cliCommandMeta = {
|
|
|
75
75
|
},
|
|
76
76
|
init: {
|
|
77
77
|
commandPath: ["init"],
|
|
78
|
-
summary: "Scaffold a new project
|
|
78
|
+
summary: "Scaffold a new project by extending a deployed app or template",
|
|
79
79
|
interactive: true,
|
|
80
80
|
fields: {
|
|
81
81
|
domain: {
|
|
82
82
|
positional: true,
|
|
83
|
-
description: "New project domain (e.g.
|
|
83
|
+
description: "New project domain (e.g. myapp.everything.dev)"
|
|
84
84
|
},
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
extendsGateway: { description: "Parent gateway to extend from (defaults to everything.dev)" },
|
|
85
|
+
extends: { description: "Parent to extend from (e.g. bos://account/gateway or account/gateway)" },
|
|
86
|
+
account: { description: "New project NEAR account (auto-derived from extends)" },
|
|
88
87
|
directory: { description: "Target directory (auto-derived from domain)" },
|
|
89
88
|
source: { description: "Local source dir (skips GitHub download)" },
|
|
89
|
+
plugins: { description: "Comma-separated plugin keys to include" },
|
|
90
90
|
withHost: { description: "Include host/ in template output" },
|
|
91
91
|
noInteractive: { description: "Skip prompts, use flags only" },
|
|
92
92
|
noInstall: { description: "Skip bun install" }
|
|
@@ -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 },\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 },\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 },\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
|
|
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 },\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 },\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 },\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: { description: \"Comma-separated plugin keys to include\" },\n withHost: { description: \"Include host/ in template output\" },\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 force: { description: \"Overwrite user-modified 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 force: { description: \"Overwrite user-modified files during sync\" },\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 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;EACd;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;EACd;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;EACd;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,EAAE,aAAa,0CAA0C;GAClE,UAAU,EAAE,aAAa,oCAAoC;GAC7D,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,OAAO,EAAE,aAAa,iCAAiC;GACvD,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,OAAO,EAAE,aAAa,6CAA6C;GACnE,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,QAAQ;EACN,aAAa,CAAC,SAAS;EACvB,SAAS;EACT,aAAa;EACd;CACF"}
|