everything-dev 1.46.0 → 1.46.1

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.
@@ -32,8 +32,8 @@ declare const DevOptionsSchema: z.ZodObject<{
32
32
  }, z.core.$strip>;
33
33
  declare const DevResultSchema: z.ZodObject<{
34
34
  status: z.ZodEnum<{
35
- started: "started";
36
35
  error: "error";
36
+ started: "started";
37
37
  }>;
38
38
  description: z.ZodString;
39
39
  processes: z.ZodArray<z.ZodString>;
@@ -258,8 +258,8 @@ declare const PluginPublishResultSchema: z.ZodObject<{
258
258
  declare const WorkspaceDeployResultSchema: z.ZodObject<{
259
259
  key: z.ZodString;
260
260
  kind: z.ZodEnum<{
261
- app: "app";
262
261
  plugin: "plugin";
262
+ app: "app";
263
263
  }>;
264
264
  success: z.ZodBoolean;
265
265
  url: z.ZodOptional<z.ZodString>;
@@ -273,8 +273,8 @@ declare const PublishOptionsSchema: z.ZodObject<{
273
273
  verbose: z.ZodDefault<z.ZodBoolean>;
274
274
  packages: z.ZodDefault<z.ZodString>;
275
275
  network: z.ZodOptional<z.ZodEnum<{
276
- testnet: "testnet";
277
276
  mainnet: "mainnet";
277
+ testnet: "testnet";
278
278
  }>>;
279
279
  privateKey: z.ZodOptional<z.ZodString>;
280
280
  env: z.ZodDefault<z.ZodEnum<{
@@ -296,8 +296,8 @@ declare const PublishResultSchema: z.ZodObject<{
296
296
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
297
297
  key: z.ZodString;
298
298
  kind: z.ZodEnum<{
299
- app: "app";
300
299
  plugin: "plugin";
300
+ app: "app";
301
301
  }>;
302
302
  success: z.ZodBoolean;
303
303
  url: z.ZodOptional<z.ZodString>;
@@ -316,8 +316,8 @@ declare const DeployOptionsSchema: z.ZodObject<{
316
316
  verbose: z.ZodDefault<z.ZodBoolean>;
317
317
  packages: z.ZodDefault<z.ZodString>;
318
318
  network: z.ZodOptional<z.ZodEnum<{
319
- testnet: "testnet";
320
319
  mainnet: "mainnet";
320
+ testnet: "testnet";
321
321
  }>>;
322
322
  privateKey: z.ZodOptional<z.ZodString>;
323
323
  service: z.ZodOptional<z.ZodString>;
@@ -339,8 +339,8 @@ declare const DeployResultSchema: z.ZodObject<{
339
339
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
340
340
  key: z.ZodString;
341
341
  kind: z.ZodEnum<{
342
- app: "app";
343
342
  plugin: "plugin";
343
+ app: "app";
344
344
  }>;
345
345
  success: z.ZodBoolean;
346
346
  url: z.ZodOptional<z.ZodString>;
@@ -359,8 +359,8 @@ declare const KeyPublishResultSchema: z.ZodObject<{
359
359
  }>;
360
360
  account: z.ZodString;
361
361
  network: z.ZodEnum<{
362
- testnet: "testnet";
363
362
  mainnet: "mainnet";
363
+ testnet: "testnet";
364
364
  }>;
365
365
  contract: z.ZodString;
366
366
  allowance: z.ZodString;
@@ -370,20 +370,20 @@ declare const KeyPublishResultSchema: z.ZodObject<{
370
370
  error: z.ZodOptional<z.ZodString>;
371
371
  }, z.core.$strip>;
372
372
  declare const OverrideSectionSchema: z.ZodEnum<{
373
- host: "host";
373
+ plugins: "plugins";
374
374
  ui: "ui";
375
375
  api: "api";
376
- plugins: "plugins";
376
+ host: "host";
377
377
  }>;
378
378
  declare const RuntimeOverrideTargetBaseSchema: z.ZodEnum<{
379
+ plugins: "plugins";
379
380
  ui: "ui";
380
381
  api: "api";
381
- plugins: "plugins";
382
382
  }>;
383
383
  declare const RuntimeOverrideTargetSchema: z.ZodUnion<readonly [z.ZodEnum<{
384
+ plugins: "plugins";
384
385
  ui: "ui";
385
386
  api: "api";
386
- plugins: "plugins";
387
387
  }>, z.ZodString]>;
388
388
  declare const InitOptionsSchema: z.ZodObject<{
389
389
  extends: z.ZodOptional<z.ZodString>;
@@ -393,10 +393,10 @@ declare const InitOptionsSchema: z.ZodObject<{
393
393
  source: z.ZodOptional<z.ZodString>;
394
394
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
395
395
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
396
- host: "host";
396
+ plugins: "plugins";
397
397
  ui: "ui";
398
398
  api: "api";
399
- plugins: "plugins";
399
+ host: "host";
400
400
  }>>>;
401
401
  noInteractive: z.ZodDefault<z.ZodBoolean>;
402
402
  noInstall: z.ZodDefault<z.ZodBoolean>;
@@ -413,10 +413,10 @@ declare const InitResultSchema: z.ZodObject<{
413
413
  extends: z.ZodString;
414
414
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
415
415
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
416
- host: "host";
416
+ plugins: "plugins";
417
417
  ui: "ui";
418
418
  api: "api";
419
- plugins: "plugins";
419
+ host: "host";
420
420
  }>>>;
421
421
  filesCopied: z.ZodNumber;
422
422
  timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -566,8 +566,8 @@ declare const bosContract: {
566
566
  interactive: z.ZodOptional<z.ZodBoolean>;
567
567
  }, z.core.$strip>, z.ZodObject<{
568
568
  status: z.ZodEnum<{
569
- started: "started";
570
569
  error: "error";
570
+ started: "started";
571
571
  }>;
572
572
  description: z.ZodString;
573
573
  processes: z.ZodArray<z.ZodString>;
@@ -789,8 +789,8 @@ declare const bosContract: {
789
789
  verbose: z.ZodDefault<z.ZodBoolean>;
790
790
  packages: z.ZodDefault<z.ZodString>;
791
791
  network: z.ZodOptional<z.ZodEnum<{
792
- testnet: "testnet";
793
792
  mainnet: "mainnet";
793
+ testnet: "testnet";
794
794
  }>>;
795
795
  privateKey: z.ZodOptional<z.ZodString>;
796
796
  env: z.ZodDefault<z.ZodEnum<{
@@ -811,8 +811,8 @@ declare const bosContract: {
811
811
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
812
812
  key: z.ZodString;
813
813
  kind: z.ZodEnum<{
814
- app: "app";
815
814
  plugin: "plugin";
815
+ app: "app";
816
816
  }>;
817
817
  success: z.ZodBoolean;
818
818
  url: z.ZodOptional<z.ZodString>;
@@ -831,8 +831,8 @@ declare const bosContract: {
831
831
  verbose: z.ZodDefault<z.ZodBoolean>;
832
832
  packages: z.ZodDefault<z.ZodString>;
833
833
  network: z.ZodOptional<z.ZodEnum<{
834
- testnet: "testnet";
835
834
  mainnet: "mainnet";
835
+ testnet: "testnet";
836
836
  }>>;
837
837
  privateKey: z.ZodOptional<z.ZodString>;
838
838
  service: z.ZodOptional<z.ZodString>;
@@ -853,8 +853,8 @@ declare const bosContract: {
853
853
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
854
854
  key: z.ZodString;
855
855
  kind: z.ZodEnum<{
856
- app: "app";
857
856
  plugin: "plugin";
857
+ app: "app";
858
858
  }>;
859
859
  success: z.ZodBoolean;
860
860
  url: z.ZodOptional<z.ZodString>;
@@ -872,8 +872,8 @@ declare const bosContract: {
872
872
  }>;
873
873
  account: z.ZodString;
874
874
  network: z.ZodEnum<{
875
- testnet: "testnet";
876
875
  mainnet: "mainnet";
876
+ testnet: "testnet";
877
877
  }>;
878
878
  contract: z.ZodString;
879
879
  allowance: z.ZodString;
@@ -890,10 +890,10 @@ declare const bosContract: {
890
890
  source: z.ZodOptional<z.ZodString>;
891
891
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
892
892
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
893
- host: "host";
893
+ plugins: "plugins";
894
894
  ui: "ui";
895
895
  api: "api";
896
- plugins: "plugins";
896
+ host: "host";
897
897
  }>>>;
898
898
  noInteractive: z.ZodDefault<z.ZodBoolean>;
899
899
  noInstall: z.ZodDefault<z.ZodBoolean>;
@@ -909,10 +909,10 @@ declare const bosContract: {
909
909
  extends: z.ZodString;
910
910
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
911
911
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
912
- host: "host";
912
+ plugins: "plugins";
913
913
  ui: "ui";
914
914
  api: "api";
915
- plugins: "plugins";
915
+ host: "host";
916
916
  }>>>;
917
917
  filesCopied: z.ZodNumber;
918
918
  timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
package/dist/plugin.d.cts CHANGED
@@ -60,8 +60,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
60
60
  interactive: z.ZodOptional<z.ZodBoolean>;
61
61
  }, z.core.$strip>, z.ZodObject<{
62
62
  status: z.ZodEnum<{
63
- started: "started";
64
63
  error: "error";
64
+ started: "started";
65
65
  }>;
66
66
  description: z.ZodString;
67
67
  processes: z.ZodArray<z.ZodString>;
@@ -283,8 +283,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
283
283
  verbose: z.ZodDefault<z.ZodBoolean>;
284
284
  packages: z.ZodDefault<z.ZodString>;
285
285
  network: z.ZodOptional<z.ZodEnum<{
286
- testnet: "testnet";
287
286
  mainnet: "mainnet";
287
+ testnet: "testnet";
288
288
  }>>;
289
289
  privateKey: z.ZodOptional<z.ZodString>;
290
290
  env: z.ZodDefault<z.ZodEnum<{
@@ -305,8 +305,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
305
305
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
306
306
  key: z.ZodString;
307
307
  kind: z.ZodEnum<{
308
- app: "app";
309
308
  plugin: "plugin";
309
+ app: "app";
310
310
  }>;
311
311
  success: z.ZodBoolean;
312
312
  url: z.ZodOptional<z.ZodString>;
@@ -325,8 +325,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
325
325
  verbose: z.ZodDefault<z.ZodBoolean>;
326
326
  packages: z.ZodDefault<z.ZodString>;
327
327
  network: z.ZodOptional<z.ZodEnum<{
328
- testnet: "testnet";
329
328
  mainnet: "mainnet";
329
+ testnet: "testnet";
330
330
  }>>;
331
331
  privateKey: z.ZodOptional<z.ZodString>;
332
332
  service: z.ZodOptional<z.ZodString>;
@@ -347,8 +347,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
347
347
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
348
348
  key: z.ZodString;
349
349
  kind: z.ZodEnum<{
350
- app: "app";
351
350
  plugin: "plugin";
351
+ app: "app";
352
352
  }>;
353
353
  success: z.ZodBoolean;
354
354
  url: z.ZodOptional<z.ZodString>;
@@ -366,8 +366,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
366
366
  }>;
367
367
  account: z.ZodString;
368
368
  network: z.ZodEnum<{
369
- testnet: "testnet";
370
369
  mainnet: "mainnet";
370
+ testnet: "testnet";
371
371
  }>;
372
372
  contract: z.ZodString;
373
373
  allowance: z.ZodString;
@@ -384,10 +384,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
384
384
  source: z.ZodOptional<z.ZodString>;
385
385
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
386
386
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
387
- host: "host";
387
+ plugins: "plugins";
388
388
  ui: "ui";
389
389
  api: "api";
390
- plugins: "plugins";
390
+ host: "host";
391
391
  }>>>;
392
392
  noInteractive: z.ZodDefault<z.ZodBoolean>;
393
393
  noInstall: z.ZodDefault<z.ZodBoolean>;
@@ -403,10 +403,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
403
403
  extends: z.ZodString;
404
404
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
405
405
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
406
- host: "host";
406
+ plugins: "plugins";
407
407
  ui: "ui";
408
408
  api: "api";
409
- plugins: "plugins";
409
+ host: "host";
410
410
  }>>>;
411
411
  filesCopied: z.ZodNumber;
412
412
  timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -640,9 +640,9 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
640
640
  }> | undefined;
641
641
  } | null;
642
642
  runtimeConfig: {
643
- env: "production" | "staging" | "development";
643
+ env: "production" | "development" | "staging";
644
644
  account: string;
645
- networkId: "testnet" | "mainnet";
645
+ networkId: "mainnet" | "testnet";
646
646
  host: {
647
647
  name: string;
648
648
  url: string;
package/dist/plugin.d.mts CHANGED
@@ -60,8 +60,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
60
60
  interactive: z.ZodOptional<z.ZodBoolean>;
61
61
  }, z.core.$strip>, z.ZodObject<{
62
62
  status: z.ZodEnum<{
63
- started: "started";
64
63
  error: "error";
64
+ started: "started";
65
65
  }>;
66
66
  description: z.ZodString;
67
67
  processes: z.ZodArray<z.ZodString>;
@@ -283,8 +283,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
283
283
  verbose: z.ZodDefault<z.ZodBoolean>;
284
284
  packages: z.ZodDefault<z.ZodString>;
285
285
  network: z.ZodOptional<z.ZodEnum<{
286
- testnet: "testnet";
287
286
  mainnet: "mainnet";
287
+ testnet: "testnet";
288
288
  }>>;
289
289
  privateKey: z.ZodOptional<z.ZodString>;
290
290
  env: z.ZodDefault<z.ZodEnum<{
@@ -305,8 +305,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
305
305
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
306
306
  key: z.ZodString;
307
307
  kind: z.ZodEnum<{
308
- app: "app";
309
308
  plugin: "plugin";
309
+ app: "app";
310
310
  }>;
311
311
  success: z.ZodBoolean;
312
312
  url: z.ZodOptional<z.ZodString>;
@@ -325,8 +325,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
325
325
  verbose: z.ZodDefault<z.ZodBoolean>;
326
326
  packages: z.ZodDefault<z.ZodString>;
327
327
  network: z.ZodOptional<z.ZodEnum<{
328
- testnet: "testnet";
329
328
  mainnet: "mainnet";
329
+ testnet: "testnet";
330
330
  }>>;
331
331
  privateKey: z.ZodOptional<z.ZodString>;
332
332
  service: z.ZodOptional<z.ZodString>;
@@ -347,8 +347,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
347
347
  deployResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
348
348
  key: z.ZodString;
349
349
  kind: z.ZodEnum<{
350
- app: "app";
351
350
  plugin: "plugin";
351
+ app: "app";
352
352
  }>;
353
353
  success: z.ZodBoolean;
354
354
  url: z.ZodOptional<z.ZodString>;
@@ -366,8 +366,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
366
366
  }>;
367
367
  account: z.ZodString;
368
368
  network: z.ZodEnum<{
369
- testnet: "testnet";
370
369
  mainnet: "mainnet";
370
+ testnet: "testnet";
371
371
  }>;
372
372
  contract: z.ZodString;
373
373
  allowance: z.ZodString;
@@ -384,10 +384,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
384
384
  source: z.ZodOptional<z.ZodString>;
385
385
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
386
386
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
387
- host: "host";
387
+ plugins: "plugins";
388
388
  ui: "ui";
389
389
  api: "api";
390
- plugins: "plugins";
390
+ host: "host";
391
391
  }>>>;
392
392
  noInteractive: z.ZodDefault<z.ZodBoolean>;
393
393
  noInstall: z.ZodDefault<z.ZodBoolean>;
@@ -403,10 +403,10 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
403
403
  extends: z.ZodString;
404
404
  plugins: z.ZodOptional<z.ZodArray<z.ZodString>>;
405
405
  overrides: z.ZodOptional<z.ZodArray<z.ZodEnum<{
406
- host: "host";
406
+ plugins: "plugins";
407
407
  ui: "ui";
408
408
  api: "api";
409
- plugins: "plugins";
409
+ host: "host";
410
410
  }>>>;
411
411
  filesCopied: z.ZodNumber;
412
412
  timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -640,9 +640,9 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
640
640
  }> | undefined;
641
641
  } | null;
642
642
  runtimeConfig: {
643
- env: "production" | "staging" | "development";
643
+ env: "production" | "development" | "staging";
644
644
  account: string;
645
- networkId: "testnet" | "mainnet";
645
+ networkId: "mainnet" | "testnet";
646
646
  host: {
647
647
  name: string;
648
648
  url: string;
package/dist/types.d.cts CHANGED
@@ -380,14 +380,14 @@ type BosConfig = z.infer<typeof BosConfigSchema>;
380
380
  declare const RuntimeConfigSchema: z.ZodObject<{
381
381
  env: z.ZodEnum<{
382
382
  production: "production";
383
- staging: "staging";
384
383
  development: "development";
384
+ staging: "staging";
385
385
  }>;
386
386
  account: z.ZodString;
387
387
  domain: z.ZodOptional<z.ZodString>;
388
388
  networkId: z.ZodEnum<{
389
- testnet: "testnet";
390
389
  mainnet: "mainnet";
390
+ testnet: "testnet";
391
391
  }>;
392
392
  title: z.ZodOptional<z.ZodString>;
393
393
  description: z.ZodOptional<z.ZodString>;
@@ -509,13 +509,13 @@ type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
509
509
  declare const ClientRuntimeConfigSchema: z.ZodObject<{
510
510
  env: z.ZodEnum<{
511
511
  production: "production";
512
- staging: "staging";
513
512
  development: "development";
513
+ staging: "staging";
514
514
  }>;
515
515
  account: z.ZodString;
516
516
  networkId: z.ZodEnum<{
517
- testnet: "testnet";
518
517
  mainnet: "mainnet";
518
+ testnet: "testnet";
519
519
  }>;
520
520
  hostUrl: z.ZodOptional<z.ZodString>;
521
521
  assetsUrl: z.ZodString;
package/dist/types.d.mts CHANGED
@@ -380,14 +380,14 @@ type BosConfig = z.infer<typeof BosConfigSchema>;
380
380
  declare const RuntimeConfigSchema: z.ZodObject<{
381
381
  env: z.ZodEnum<{
382
382
  production: "production";
383
- staging: "staging";
384
383
  development: "development";
384
+ staging: "staging";
385
385
  }>;
386
386
  account: z.ZodString;
387
387
  domain: z.ZodOptional<z.ZodString>;
388
388
  networkId: z.ZodEnum<{
389
- testnet: "testnet";
390
389
  mainnet: "mainnet";
390
+ testnet: "testnet";
391
391
  }>;
392
392
  title: z.ZodOptional<z.ZodString>;
393
393
  description: z.ZodOptional<z.ZodString>;
@@ -509,13 +509,13 @@ type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
509
509
  declare const ClientRuntimeConfigSchema: z.ZodObject<{
510
510
  env: z.ZodEnum<{
511
511
  production: "production";
512
- staging: "staging";
513
512
  development: "development";
513
+ staging: "staging";
514
514
  }>;
515
515
  account: z.ZodString;
516
516
  networkId: z.ZodEnum<{
517
- testnet: "testnet";
518
517
  mainnet: "mainnet";
518
+ testnet: "testnet";
519
519
  }>;
520
520
  hostUrl: z.ZodOptional<z.ZodString>;
521
521
  assetsUrl: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "1.46.0",
3
+ "version": "1.46.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"