@super-protocol/sp-cli 0.0.2-alpha.1 → 0.0.2-beta.10

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.
Files changed (51) hide show
  1. package/README.md +145 -260
  2. package/dist/commands/account/info.d.ts +21 -0
  3. package/dist/commands/account/info.js +43 -0
  4. package/dist/commands/auth/login.d.ts +2 -10
  5. package/dist/commands/auth/login.js +25 -75
  6. package/dist/commands/base.d.ts +2 -4
  7. package/dist/commands/base.js +8 -10
  8. package/dist/commands/config/add.js +9 -5
  9. package/dist/commands/config/base.d.ts +4 -3
  10. package/dist/commands/config/base.js +12 -14
  11. package/dist/commands/config/create.js +4 -4
  12. package/dist/commands/config/list.js +2 -2
  13. package/dist/commands/config/use.js +5 -3
  14. package/dist/commands/files/download.d.ts +15 -0
  15. package/dist/commands/files/download.js +53 -0
  16. package/dist/commands/files/upload.d.ts +18 -0
  17. package/dist/commands/files/upload.js +77 -0
  18. package/dist/commands/storage/base.d.ts +13 -0
  19. package/dist/commands/storage/base.js +123 -0
  20. package/dist/commands/storage/create.d.ts +11 -0
  21. package/dist/commands/storage/create.js +53 -0
  22. package/dist/commands/storage/select.d.ts +9 -0
  23. package/dist/commands/storage/select.js +46 -0
  24. package/dist/commands/storage/update.d.ts +14 -0
  25. package/dist/commands/storage/update.js +187 -0
  26. package/dist/config/config-file.schema.d.ts +4 -4
  27. package/dist/config/config-file.schema.js +1 -1
  28. package/dist/config/config.schema.d.ts +16 -15
  29. package/dist/config/config.schema.js +2 -10
  30. package/dist/config/resource.schema.d.ts +31 -0
  31. package/dist/config/resource.schema.js +14 -0
  32. package/dist/constants.d.ts +2 -0
  33. package/dist/constants.js +2 -0
  34. package/dist/errors.d.ts +2 -0
  35. package/dist/errors.js +2 -0
  36. package/dist/lib/container.d.ts +6 -7
  37. package/dist/lib/container.js +26 -26
  38. package/dist/managers/account-manager.js +13 -3
  39. package/dist/managers/config-file-manager.d.ts +1 -1
  40. package/dist/managers/config-file-manager.js +13 -8
  41. package/dist/middlewares/auth-middleware.js +5 -1
  42. package/dist/services/auth.service.d.ts +24 -0
  43. package/dist/services/auth.service.js +93 -0
  44. package/dist/services/storage.service.d.ts +71 -0
  45. package/dist/services/storage.service.js +308 -0
  46. package/dist/utils/helper.d.ts +5 -0
  47. package/dist/utils/helper.js +22 -0
  48. package/dist/utils/progress.d.ts +8 -0
  49. package/dist/utils/progress.js +27 -0
  50. package/oclif.manifest.json +368 -131
  51. package/package.json +12 -6
@@ -19,12 +19,39 @@
19
19
  "hasDynamicHelp": false,
20
20
  "multiple": false,
21
21
  "type": "option"
22
+ }
23
+ },
24
+ "hasDynamicHelp": false,
25
+ "hiddenAliases": [],
26
+ "id": "base",
27
+ "pluginAlias": "@super-protocol/sp-cli",
28
+ "pluginName": "@super-protocol/sp-cli",
29
+ "pluginType": "core",
30
+ "strict": true,
31
+ "enableJsonFlag": true,
32
+ "isESM": true,
33
+ "relativePath": [
34
+ "dist",
35
+ "commands",
36
+ "base.js"
37
+ ]
38
+ },
39
+ "account:info": {
40
+ "aliases": [],
41
+ "args": {},
42
+ "flags": {
43
+ "json": {
44
+ "description": "Format output as json.",
45
+ "helpGroup": "GLOBAL",
46
+ "name": "json",
47
+ "allowNo": false,
48
+ "type": "boolean"
22
49
  },
23
- "url": {
50
+ "config": {
24
51
  "helpGroup": "GLOBAL",
25
- "name": "url",
52
+ "name": "config",
26
53
  "required": false,
27
- "summary": "Specify provider base URL.",
54
+ "summary": "Specify config file.",
28
55
  "hasDynamicHelp": false,
29
56
  "multiple": false,
30
57
  "type": "option"
@@ -32,7 +59,7 @@
32
59
  },
33
60
  "hasDynamicHelp": false,
34
61
  "hiddenAliases": [],
35
- "id": "base",
62
+ "id": "account:info",
36
63
  "pluginAlias": "@super-protocol/sp-cli",
37
64
  "pluginName": "@super-protocol/sp-cli",
38
65
  "pluginType": "core",
@@ -42,11 +69,14 @@
42
69
  "relativePath": [
43
70
  "dist",
44
71
  "commands",
45
- "base.js"
72
+ "account",
73
+ "info.js"
46
74
  ]
47
75
  },
48
76
  "auth:login": {
49
- "aliases": [],
77
+ "aliases": [
78
+ "login"
79
+ ],
50
80
  "args": {},
51
81
  "description": "Authorization",
52
82
  "examples": [
@@ -68,15 +98,6 @@
68
98
  "hasDynamicHelp": false,
69
99
  "multiple": false,
70
100
  "type": "option"
71
- },
72
- "url": {
73
- "helpGroup": "GLOBAL",
74
- "name": "url",
75
- "required": false,
76
- "summary": "Specify provider base URL.",
77
- "hasDynamicHelp": false,
78
- "multiple": false,
79
- "type": "option"
80
101
  }
81
102
  },
82
103
  "hasDynamicHelp": false,
@@ -114,15 +135,6 @@
114
135
  "hasDynamicHelp": false,
115
136
  "multiple": false,
116
137
  "type": "option"
117
- },
118
- "url": {
119
- "helpGroup": "GLOBAL",
120
- "name": "url",
121
- "required": false,
122
- "summary": "Specify provider base URL.",
123
- "hasDynamicHelp": false,
124
- "multiple": false,
125
- "type": "option"
126
138
  }
127
139
  },
128
140
  "hasDynamicHelp": false,
@@ -164,24 +176,6 @@
164
176
  "allowNo": false,
165
177
  "type": "boolean"
166
178
  },
167
- "config": {
168
- "helpGroup": "GLOBAL",
169
- "name": "config",
170
- "required": false,
171
- "summary": "Specify config file.",
172
- "hasDynamicHelp": false,
173
- "multiple": false,
174
- "type": "option"
175
- },
176
- "url": {
177
- "helpGroup": "GLOBAL",
178
- "name": "url",
179
- "required": false,
180
- "summary": "Specify provider base URL.",
181
- "hasDynamicHelp": false,
182
- "multiple": false,
183
- "type": "option"
184
- },
185
179
  "name": {
186
180
  "char": "n",
187
181
  "description": "Custom name for the imported configuration",
@@ -224,24 +218,6 @@
224
218
  "name": "json",
225
219
  "allowNo": false,
226
220
  "type": "boolean"
227
- },
228
- "config": {
229
- "helpGroup": "GLOBAL",
230
- "name": "config",
231
- "required": false,
232
- "summary": "Specify config file.",
233
- "hasDynamicHelp": false,
234
- "multiple": false,
235
- "type": "option"
236
- },
237
- "url": {
238
- "helpGroup": "GLOBAL",
239
- "name": "url",
240
- "required": false,
241
- "summary": "Specify provider base URL.",
242
- "hasDynamicHelp": false,
243
- "multiple": false,
244
- "type": "option"
245
221
  }
246
222
  },
247
223
  "hasDynamicHelp": false,
@@ -276,11 +252,11 @@
276
252
  "allowNo": false,
277
253
  "type": "boolean"
278
254
  },
279
- "config": {
280
- "helpGroup": "GLOBAL",
281
- "name": "config",
282
- "required": false,
283
- "summary": "Specify config file.",
255
+ "name": {
256
+ "char": "n",
257
+ "description": "Configuration name",
258
+ "name": "name",
259
+ "required": true,
284
260
  "hasDynamicHelp": false,
285
261
  "multiple": false,
286
262
  "type": "option"
@@ -293,15 +269,6 @@
293
269
  "multiple": false,
294
270
  "type": "option"
295
271
  },
296
- "name": {
297
- "char": "n",
298
- "description": "Configuration name",
299
- "name": "name",
300
- "required": true,
301
- "hasDynamicHelp": false,
302
- "multiple": false,
303
- "type": "option"
304
- },
305
272
  "yes": {
306
273
  "char": "y",
307
274
  "description": "Switch to new config",
@@ -343,24 +310,6 @@
343
310
  "allowNo": false,
344
311
  "type": "boolean"
345
312
  },
346
- "config": {
347
- "helpGroup": "GLOBAL",
348
- "name": "config",
349
- "required": false,
350
- "summary": "Specify config file.",
351
- "hasDynamicHelp": false,
352
- "multiple": false,
353
- "type": "option"
354
- },
355
- "url": {
356
- "helpGroup": "GLOBAL",
357
- "name": "url",
358
- "required": false,
359
- "summary": "Specify provider base URL.",
360
- "hasDynamicHelp": false,
361
- "multiple": false,
362
- "type": "option"
363
- },
364
313
  "force": {
365
314
  "char": "f",
366
315
  "description": "Force deletion without confirmation",
@@ -405,6 +354,145 @@
405
354
  "<%= config.bin %> <%= command.id %> add ./config.json - Import configuration from file",
406
355
  "<%= config.bin %> <%= command.id %> delete - Delete a configuration"
407
356
  ],
357
+ "flags": {
358
+ "json": {
359
+ "description": "Format output as json.",
360
+ "helpGroup": "GLOBAL",
361
+ "name": "json",
362
+ "allowNo": false,
363
+ "type": "boolean"
364
+ }
365
+ },
366
+ "hasDynamicHelp": false,
367
+ "hiddenAliases": [],
368
+ "id": "config",
369
+ "pluginAlias": "@super-protocol/sp-cli",
370
+ "pluginName": "@super-protocol/sp-cli",
371
+ "pluginType": "core",
372
+ "strict": true,
373
+ "enableJsonFlag": true,
374
+ "isESM": true,
375
+ "relativePath": [
376
+ "dist",
377
+ "commands",
378
+ "config",
379
+ "index.js"
380
+ ]
381
+ },
382
+ "config:list": {
383
+ "aliases": [],
384
+ "args": {},
385
+ "description": "List all configurations",
386
+ "examples": [
387
+ "<%= config.bin %> <%= command.id %>"
388
+ ],
389
+ "flags": {
390
+ "json": {
391
+ "description": "Format output as json.",
392
+ "helpGroup": "GLOBAL",
393
+ "name": "json",
394
+ "allowNo": false,
395
+ "type": "boolean"
396
+ }
397
+ },
398
+ "hasDynamicHelp": false,
399
+ "hiddenAliases": [],
400
+ "id": "config:list",
401
+ "pluginAlias": "@super-protocol/sp-cli",
402
+ "pluginName": "@super-protocol/sp-cli",
403
+ "pluginType": "core",
404
+ "strict": true,
405
+ "enableJsonFlag": true,
406
+ "isESM": true,
407
+ "relativePath": [
408
+ "dist",
409
+ "commands",
410
+ "config",
411
+ "list.js"
412
+ ]
413
+ },
414
+ "config:show": {
415
+ "aliases": [],
416
+ "args": {},
417
+ "description": "Show current configuration",
418
+ "examples": [
419
+ "<%= config.bin %> <%= command.id %>"
420
+ ],
421
+ "flags": {
422
+ "json": {
423
+ "description": "Format output as json.",
424
+ "helpGroup": "GLOBAL",
425
+ "name": "json",
426
+ "allowNo": false,
427
+ "type": "boolean"
428
+ }
429
+ },
430
+ "hasDynamicHelp": false,
431
+ "hiddenAliases": [],
432
+ "id": "config:show",
433
+ "pluginAlias": "@super-protocol/sp-cli",
434
+ "pluginName": "@super-protocol/sp-cli",
435
+ "pluginType": "core",
436
+ "strict": true,
437
+ "enableJsonFlag": true,
438
+ "isESM": true,
439
+ "relativePath": [
440
+ "dist",
441
+ "commands",
442
+ "config",
443
+ "show.js"
444
+ ]
445
+ },
446
+ "config:use": {
447
+ "aliases": [],
448
+ "args": {},
449
+ "description": "Switch to a different configuration file",
450
+ "examples": [
451
+ "<%= config.bin %> <%= command.id %>"
452
+ ],
453
+ "flags": {
454
+ "json": {
455
+ "description": "Format output as json.",
456
+ "helpGroup": "GLOBAL",
457
+ "name": "json",
458
+ "allowNo": false,
459
+ "type": "boolean"
460
+ }
461
+ },
462
+ "hasDynamicHelp": false,
463
+ "hiddenAliases": [],
464
+ "id": "config:use",
465
+ "pluginAlias": "@super-protocol/sp-cli",
466
+ "pluginName": "@super-protocol/sp-cli",
467
+ "pluginType": "core",
468
+ "strict": true,
469
+ "enableJsonFlag": true,
470
+ "isESM": true,
471
+ "relativePath": [
472
+ "dist",
473
+ "commands",
474
+ "config",
475
+ "use.js"
476
+ ]
477
+ },
478
+ "files:download": {
479
+ "aliases": [],
480
+ "args": {
481
+ "resourceFile": {
482
+ "description": "Path to a resource file",
483
+ "name": "resourceFile",
484
+ "required": true
485
+ },
486
+ "localDirectory": {
487
+ "description": "Path to save downloaded file",
488
+ "name": "localDirectory",
489
+ "required": true
490
+ }
491
+ },
492
+ "description": "describe the command here",
493
+ "examples": [
494
+ "<%= config.bin %> <%= command.id %> ./resource.json ./pathToDownload "
495
+ ],
408
496
  "flags": {
409
497
  "json": {
410
498
  "description": "Format output as json.",
@@ -422,11 +510,10 @@
422
510
  "multiple": false,
423
511
  "type": "option"
424
512
  },
425
- "url": {
426
- "helpGroup": "GLOBAL",
427
- "name": "url",
428
- "required": false,
429
- "summary": "Specify provider base URL.",
513
+ "maximum-concurrent": {
514
+ "description": "Maximum concurrent pieces to upload at once per transfer",
515
+ "name": "maximum-concurrent",
516
+ "default": 1,
430
517
  "hasDynamicHelp": false,
431
518
  "multiple": false,
432
519
  "type": "option"
@@ -434,26 +521,33 @@
434
521
  },
435
522
  "hasDynamicHelp": false,
436
523
  "hiddenAliases": [],
437
- "id": "config",
524
+ "id": "files:download",
438
525
  "pluginAlias": "@super-protocol/sp-cli",
439
526
  "pluginName": "@super-protocol/sp-cli",
440
527
  "pluginType": "core",
441
528
  "strict": true,
442
529
  "enableJsonFlag": true,
530
+ "help": "Download and decrypt a file from the remote storage to <localPath> using resource file <resourcePath>",
443
531
  "isESM": true,
444
532
  "relativePath": [
445
533
  "dist",
446
534
  "commands",
447
- "config",
448
- "index.js"
535
+ "files",
536
+ "download.js"
449
537
  ]
450
538
  },
451
- "config:list": {
539
+ "files:upload": {
452
540
  "aliases": [],
453
- "args": {},
454
- "description": "List all configurations",
541
+ "args": {
542
+ "path": {
543
+ "description": "file or directory to upload",
544
+ "name": "path",
545
+ "required": true
546
+ }
547
+ },
548
+ "description": "describe the command here",
455
549
  "examples": [
456
- "<%= config.bin %> <%= command.id %>"
550
+ "<%= config.bin %> <%= command.id %> ./file.txt"
457
551
  ],
458
552
  "flags": {
459
553
  "json": {
@@ -472,11 +566,86 @@
472
566
  "multiple": false,
473
567
  "type": "option"
474
568
  },
475
- "url": {
569
+ "filename": {
570
+ "description": "The name of the resulting file/directory in the storage",
571
+ "name": "filename",
572
+ "required": false,
573
+ "hasDynamicHelp": false,
574
+ "multiple": false,
575
+ "type": "option"
576
+ },
577
+ "maximum-concurrent": {
578
+ "description": "Maximum concurrent pieces to upload at once per transfer",
579
+ "name": "maximum-concurrent",
580
+ "default": 1,
581
+ "hasDynamicHelp": false,
582
+ "multiple": false,
583
+ "type": "option"
584
+ },
585
+ "metadata": {
586
+ "description": "Path to a metadata file for adding fields to the resource file",
587
+ "name": "metadata",
588
+ "required": false,
589
+ "hasDynamicHelp": false,
590
+ "multiple": false,
591
+ "type": "option"
592
+ },
593
+ "output": {
594
+ "description": "Path to save resource file that is used to access the uploaded file",
595
+ "name": "output",
596
+ "required": false,
597
+ "default": "resource.json",
598
+ "hasDynamicHelp": false,
599
+ "multiple": false,
600
+ "type": "option"
601
+ },
602
+ "skip-encryption": {
603
+ "description": "Skip file encryption before upload",
604
+ "name": "skip-encryption",
605
+ "required": false,
606
+ "allowNo": false,
607
+ "type": "boolean"
608
+ },
609
+ "sync": {
610
+ "description": "Sync mode: delete files in target that don't exist in source",
611
+ "name": "sync",
612
+ "required": false,
613
+ "allowNo": false,
614
+ "type": "boolean"
615
+ }
616
+ },
617
+ "hasDynamicHelp": false,
618
+ "hiddenAliases": [],
619
+ "id": "files:upload",
620
+ "pluginAlias": "@super-protocol/sp-cli",
621
+ "pluginName": "@super-protocol/sp-cli",
622
+ "pluginType": "core",
623
+ "strict": true,
624
+ "enableJsonFlag": true,
625
+ "isESM": true,
626
+ "relativePath": [
627
+ "dist",
628
+ "commands",
629
+ "files",
630
+ "upload.js"
631
+ ]
632
+ },
633
+ "storage:base": {
634
+ "aliases": [],
635
+ "args": {},
636
+ "flags": {
637
+ "json": {
638
+ "description": "Format output as json.",
476
639
  "helpGroup": "GLOBAL",
477
- "name": "url",
640
+ "name": "json",
641
+ "allowNo": false,
642
+ "type": "boolean"
643
+ },
644
+ "config": {
645
+ "helpGroup": "GLOBAL",
646
+ "name": "config",
478
647
  "required": false,
479
- "summary": "Specify provider base URL.",
648
+ "summary": "Specify config file.",
480
649
  "hasDynamicHelp": false,
481
650
  "multiple": false,
482
651
  "type": "option"
@@ -484,7 +653,7 @@
484
653
  },
485
654
  "hasDynamicHelp": false,
486
655
  "hiddenAliases": [],
487
- "id": "config:list",
656
+ "id": "storage:base",
488
657
  "pluginAlias": "@super-protocol/sp-cli",
489
658
  "pluginName": "@super-protocol/sp-cli",
490
659
  "pluginType": "core",
@@ -494,16 +663,18 @@
494
663
  "relativePath": [
495
664
  "dist",
496
665
  "commands",
497
- "config",
498
- "list.js"
666
+ "storage",
667
+ "base.js"
499
668
  ]
500
669
  },
501
- "config:show": {
670
+ "storage:create": {
502
671
  "aliases": [],
503
672
  "args": {},
504
- "description": "Show current configuration",
673
+ "description": "Create a new storage entry from file or interactive prompts.",
505
674
  "examples": [
506
- "<%= config.bin %> <%= command.id %>"
675
+ "<%= config.bin %> storage create",
676
+ "<%= config.bin %> storage create --fromFile ./storage.json",
677
+ "<%= config.bin %> storage create --not-default"
507
678
  ],
508
679
  "flags": {
509
680
  "json": {
@@ -522,19 +693,27 @@
522
693
  "multiple": false,
523
694
  "type": "option"
524
695
  },
525
- "url": {
526
- "helpGroup": "GLOBAL",
527
- "name": "url",
528
- "required": false,
529
- "summary": "Specify provider base URL.",
696
+ "fromFile": {
697
+ "aliases": [
698
+ "fromFile"
699
+ ],
700
+ "char": "f",
701
+ "description": "Path to a JSON file that contains AddStorageDto payload.",
702
+ "name": "fromFile",
530
703
  "hasDynamicHelp": false,
531
704
  "multiple": false,
532
705
  "type": "option"
706
+ },
707
+ "notDefault": {
708
+ "description": "Skip setting the created storage as default.",
709
+ "name": "notDefault",
710
+ "allowNo": false,
711
+ "type": "boolean"
533
712
  }
534
713
  },
535
714
  "hasDynamicHelp": false,
536
715
  "hiddenAliases": [],
537
- "id": "config:show",
716
+ "id": "storage:create",
538
717
  "pluginAlias": "@super-protocol/sp-cli",
539
718
  "pluginName": "@super-protocol/sp-cli",
540
719
  "pluginType": "core",
@@ -544,16 +723,17 @@
544
723
  "relativePath": [
545
724
  "dist",
546
725
  "commands",
547
- "config",
548
- "show.js"
726
+ "storage",
727
+ "create.js"
549
728
  ]
550
729
  },
551
- "config:use": {
730
+ "storage:select": {
552
731
  "aliases": [],
553
732
  "args": {},
554
- "description": "Switch to a different configuration file",
733
+ "description": "Select a storage that will be used by subsequent commands.",
555
734
  "examples": [
556
- "<%= config.bin %> <%= command.id %>"
735
+ "<%= config.bin %> storage select",
736
+ "<%= config.bin %> storage select --id=2de3e3a4-0000-1111-2222-333344445555"
557
737
  ],
558
738
  "flags": {
559
739
  "json": {
@@ -572,11 +752,68 @@
572
752
  "multiple": false,
573
753
  "type": "option"
574
754
  },
575
- "url": {
755
+ "id": {
756
+ "char": "i",
757
+ "description": "Storage ID to select",
758
+ "name": "id",
759
+ "hasDynamicHelp": false,
760
+ "multiple": false,
761
+ "type": "option"
762
+ }
763
+ },
764
+ "hasDynamicHelp": false,
765
+ "hiddenAliases": [],
766
+ "id": "storage:select",
767
+ "pluginAlias": "@super-protocol/sp-cli",
768
+ "pluginName": "@super-protocol/sp-cli",
769
+ "pluginType": "core",
770
+ "strict": true,
771
+ "enableJsonFlag": true,
772
+ "isESM": true,
773
+ "relativePath": [
774
+ "dist",
775
+ "commands",
776
+ "storage",
777
+ "select.js"
778
+ ]
779
+ },
780
+ "storage:update": {
781
+ "aliases": [],
782
+ "args": {},
783
+ "description": "Update the configuration of an existing storage.",
784
+ "examples": [
785
+ "<%= config.bin %> storage update --id=2de3e3a4-0000-1111-2222-333344445555 --fromFile ./storage-update.json",
786
+ "<%= config.bin %> storage update --id=2de3e3a4-0000-1111-2222-333344445555"
787
+ ],
788
+ "flags": {
789
+ "json": {
790
+ "description": "Format output as json.",
576
791
  "helpGroup": "GLOBAL",
577
- "name": "url",
792
+ "name": "json",
793
+ "allowNo": false,
794
+ "type": "boolean"
795
+ },
796
+ "config": {
797
+ "helpGroup": "GLOBAL",
798
+ "name": "config",
578
799
  "required": false,
579
- "summary": "Specify provider base URL.",
800
+ "summary": "Specify config file.",
801
+ "hasDynamicHelp": false,
802
+ "multiple": false,
803
+ "type": "option"
804
+ },
805
+ "fromFile": {
806
+ "char": "f",
807
+ "description": "Path to a JSON file that contains UpdateStorageDto payload.",
808
+ "name": "fromFile",
809
+ "hasDynamicHelp": false,
810
+ "multiple": false,
811
+ "type": "option"
812
+ },
813
+ "id": {
814
+ "char": "i",
815
+ "description": "Storage ID to update",
816
+ "name": "id",
580
817
  "hasDynamicHelp": false,
581
818
  "multiple": false,
582
819
  "type": "option"
@@ -584,7 +821,7 @@
584
821
  },
585
822
  "hasDynamicHelp": false,
586
823
  "hiddenAliases": [],
587
- "id": "config:use",
824
+ "id": "storage:update",
588
825
  "pluginAlias": "@super-protocol/sp-cli",
589
826
  "pluginName": "@super-protocol/sp-cli",
590
827
  "pluginType": "core",
@@ -594,10 +831,10 @@
594
831
  "relativePath": [
595
832
  "dist",
596
833
  "commands",
597
- "config",
598
- "use.js"
834
+ "storage",
835
+ "update.js"
599
836
  ]
600
837
  }
601
838
  },
602
- "version": "0.0.2-alpha.1"
839
+ "version": "0.0.2-beta.10"
603
840
  }