@liquidmetal-ai/raindrop 0.2.7 → 0.2.9
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/README.md +41 -40
- package/dist/base-command.d.ts +9 -15
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +1 -17
- package/dist/build.js +1 -1
- package/dist/codegen.d.ts +2 -2
- package/dist/codegen.d.ts.map +1 -1
- package/dist/codegen.js +9 -0
- package/dist/commands/auth/login.d.ts.map +1 -1
- package/dist/commands/auth/login.js +2 -1
- package/dist/commands/build/find.d.ts.map +1 -1
- package/dist/commands/build/find.js +4 -2
- package/dist/commands/build/list.d.ts.map +1 -1
- package/dist/commands/build/list.js +13 -7
- package/dist/commands/build/status.d.ts.map +1 -1
- package/dist/deploy.d.ts.map +1 -1
- package/dist/deploy.js +31 -20
- package/dist/index.d.ts +14 -15
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -19
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +733 -733
- package/package.json +4 -3
- package/templates/init/package.json.hbs +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -402,18 +402,18 @@
|
|
|
402
402
|
"select.js"
|
|
403
403
|
]
|
|
404
404
|
},
|
|
405
|
-
"
|
|
405
|
+
"build:branch": {
|
|
406
406
|
"aliases": [],
|
|
407
407
|
"args": {
|
|
408
|
-
"
|
|
409
|
-
"description": "
|
|
410
|
-
"name": "
|
|
408
|
+
"branch": {
|
|
409
|
+
"description": "branch name",
|
|
410
|
+
"name": "branch",
|
|
411
411
|
"required": true
|
|
412
412
|
}
|
|
413
413
|
},
|
|
414
|
-
"description": "
|
|
414
|
+
"description": "branch a Raindrop application",
|
|
415
415
|
"examples": [
|
|
416
|
-
"<%= config.bin %>
|
|
416
|
+
"<%= config.bin %> <%= command.id %> .\nBranch a Raindrop application.\n"
|
|
417
417
|
],
|
|
418
418
|
"flags": {
|
|
419
419
|
"config": {
|
|
@@ -472,26 +472,46 @@
|
|
|
472
472
|
"multiple": false,
|
|
473
473
|
"type": "option"
|
|
474
474
|
},
|
|
475
|
-
"
|
|
476
|
-
"char": "
|
|
477
|
-
"description": "
|
|
478
|
-
"name": "
|
|
479
|
-
"required":
|
|
475
|
+
"root": {
|
|
476
|
+
"char": "r",
|
|
477
|
+
"description": "root directory",
|
|
478
|
+
"name": "root",
|
|
479
|
+
"required": false,
|
|
480
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
481
|
+
"hasDynamicHelp": false,
|
|
482
|
+
"multiple": false,
|
|
483
|
+
"type": "option"
|
|
484
|
+
},
|
|
485
|
+
"manifest": {
|
|
486
|
+
"char": "m",
|
|
487
|
+
"description": "project manifest",
|
|
488
|
+
"name": "manifest",
|
|
489
|
+
"required": false,
|
|
490
|
+
"default": "raindrop.manifest",
|
|
480
491
|
"hasDynamicHelp": false,
|
|
481
492
|
"multiple": false,
|
|
482
493
|
"type": "option"
|
|
483
494
|
},
|
|
484
495
|
"output": {
|
|
485
496
|
"char": "o",
|
|
486
|
-
"description": "output
|
|
497
|
+
"description": "output directory",
|
|
487
498
|
"name": "output",
|
|
488
|
-
"
|
|
499
|
+
"required": false,
|
|
500
|
+
"default": "dist",
|
|
489
501
|
"hasDynamicHelp": false,
|
|
490
502
|
"multiple": false,
|
|
491
|
-
"
|
|
492
|
-
|
|
493
|
-
|
|
503
|
+
"type": "option"
|
|
504
|
+
},
|
|
505
|
+
"versionId": {
|
|
506
|
+
"aliases": [
|
|
507
|
+
"version"
|
|
494
508
|
],
|
|
509
|
+
"char": "p",
|
|
510
|
+
"description": "branch from this version",
|
|
511
|
+
"name": "versionId",
|
|
512
|
+
"required": false,
|
|
513
|
+
"hasDynamicHelp": false,
|
|
514
|
+
"multiple": false,
|
|
495
515
|
"type": "option"
|
|
496
516
|
},
|
|
497
517
|
"impersonate": {
|
|
@@ -504,21 +524,24 @@
|
|
|
504
524
|
"multiple": false,
|
|
505
525
|
"type": "option"
|
|
506
526
|
},
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"hidden": true,
|
|
511
|
-
"name": "manifest",
|
|
527
|
+
"start": {
|
|
528
|
+
"description": "start the application after deploying",
|
|
529
|
+
"name": "start",
|
|
512
530
|
"required": false,
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
|
|
516
|
-
|
|
531
|
+
"allowNo": false,
|
|
532
|
+
"type": "boolean"
|
|
533
|
+
},
|
|
534
|
+
"show": {
|
|
535
|
+
"description": "show the current branch",
|
|
536
|
+
"name": "show",
|
|
537
|
+
"required": false,
|
|
538
|
+
"allowNo": false,
|
|
539
|
+
"type": "boolean"
|
|
517
540
|
}
|
|
518
541
|
},
|
|
519
542
|
"hasDynamicHelp": false,
|
|
520
543
|
"hiddenAliases": [],
|
|
521
|
-
"id": "
|
|
544
|
+
"id": "build:branch",
|
|
522
545
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
523
546
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
524
547
|
"pluginType": "core",
|
|
@@ -581,28 +604,22 @@
|
|
|
581
604
|
"relativePath": [
|
|
582
605
|
"dist",
|
|
583
606
|
"commands",
|
|
584
|
-
"
|
|
585
|
-
"
|
|
607
|
+
"build",
|
|
608
|
+
"branch.js"
|
|
586
609
|
]
|
|
587
610
|
},
|
|
588
|
-
"
|
|
611
|
+
"build:checkout": {
|
|
589
612
|
"aliases": [],
|
|
590
613
|
"args": {
|
|
591
|
-
"
|
|
592
|
-
"description": "
|
|
593
|
-
"name": "
|
|
594
|
-
"required": true
|
|
595
|
-
},
|
|
596
|
-
"output": {
|
|
597
|
-
"description": "output file (defaults to key basename)",
|
|
598
|
-
"name": "output",
|
|
614
|
+
"version": {
|
|
615
|
+
"description": "version id",
|
|
616
|
+
"name": "version",
|
|
599
617
|
"required": false
|
|
600
618
|
}
|
|
601
619
|
},
|
|
602
|
-
"description": "
|
|
620
|
+
"description": "switch the current context to a specific version",
|
|
603
621
|
"examples": [
|
|
604
|
-
"<%= config.bin %>
|
|
605
|
-
"<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
|
|
622
|
+
"<%= config.bin %> <%= command.id %>\nCurrently on version: 01jac6p20m4gahn1kaa2mhm2js\n\n<%= config.bin %> <%= command.id %> 01jux6z20m4gbhn5kaa4mcm2jr\nSwitched to version: 01jux6z20m4gbhn5kaa4mcm2jr\n"
|
|
606
623
|
],
|
|
607
624
|
"flags": {
|
|
608
625
|
"config": {
|
|
@@ -661,46 +678,12 @@
|
|
|
661
678
|
"multiple": false,
|
|
662
679
|
"type": "option"
|
|
663
680
|
},
|
|
664
|
-
"
|
|
665
|
-
"char": "
|
|
666
|
-
"description": "bucket name",
|
|
667
|
-
"name": "bucket",
|
|
668
|
-
"required": true,
|
|
669
|
-
"hasDynamicHelp": false,
|
|
670
|
-
"multiple": false,
|
|
671
|
-
"type": "option"
|
|
672
|
-
},
|
|
673
|
-
"format": {
|
|
674
|
-
"char": "f",
|
|
681
|
+
"output": {
|
|
682
|
+
"char": "o",
|
|
675
683
|
"description": "output format",
|
|
676
|
-
"name": "
|
|
677
|
-
"default": "file",
|
|
678
|
-
"hasDynamicHelp": false,
|
|
679
|
-
"multiple": false,
|
|
680
|
-
"options": [
|
|
681
|
-
"file",
|
|
682
|
-
"stdout",
|
|
683
|
-
"json"
|
|
684
|
-
],
|
|
685
|
-
"type": "option"
|
|
686
|
-
},
|
|
687
|
-
"impersonate": {
|
|
688
|
-
"char": "i",
|
|
689
|
-
"description": "impersonate organization",
|
|
690
|
-
"hidden": true,
|
|
691
|
-
"name": "impersonate",
|
|
692
|
-
"required": false,
|
|
693
|
-
"hasDynamicHelp": false,
|
|
694
|
-
"multiple": false,
|
|
695
|
-
"type": "option"
|
|
696
|
-
},
|
|
697
|
-
"manifest": {
|
|
698
|
-
"char": "m",
|
|
699
|
-
"description": "project manifest",
|
|
700
|
-
"hidden": true,
|
|
701
|
-
"name": "manifest",
|
|
684
|
+
"name": "output",
|
|
702
685
|
"required": false,
|
|
703
|
-
"default": "
|
|
686
|
+
"default": "text",
|
|
704
687
|
"hasDynamicHelp": false,
|
|
705
688
|
"multiple": false,
|
|
706
689
|
"type": "option"
|
|
@@ -708,7 +691,7 @@
|
|
|
708
691
|
},
|
|
709
692
|
"hasDynamicHelp": false,
|
|
710
693
|
"hiddenAliases": [],
|
|
711
|
-
"id": "
|
|
694
|
+
"id": "build:checkout",
|
|
712
695
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
713
696
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
714
697
|
"pluginType": "core",
|
|
@@ -771,16 +754,22 @@
|
|
|
771
754
|
"relativePath": [
|
|
772
755
|
"dist",
|
|
773
756
|
"commands",
|
|
774
|
-
"
|
|
775
|
-
"
|
|
757
|
+
"build",
|
|
758
|
+
"checkout.js"
|
|
776
759
|
]
|
|
777
760
|
},
|
|
778
|
-
"
|
|
761
|
+
"build:delete": {
|
|
779
762
|
"aliases": [],
|
|
780
|
-
"args": {
|
|
781
|
-
|
|
763
|
+
"args": {
|
|
764
|
+
"application": {
|
|
765
|
+
"description": "application name",
|
|
766
|
+
"name": "application",
|
|
767
|
+
"required": false
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"description": "delete Raindrop applications",
|
|
782
771
|
"examples": [
|
|
783
|
-
"<%= config.bin %>
|
|
772
|
+
"<%= config.bin %> <%= command.id %> .\nDeleted (application) at version (version)\n"
|
|
784
773
|
],
|
|
785
774
|
"flags": {
|
|
786
775
|
"config": {
|
|
@@ -839,11 +828,22 @@
|
|
|
839
828
|
"multiple": false,
|
|
840
829
|
"type": "option"
|
|
841
830
|
},
|
|
842
|
-
"
|
|
843
|
-
"char": "
|
|
844
|
-
"description": "
|
|
845
|
-
"name": "
|
|
846
|
-
"required":
|
|
831
|
+
"root": {
|
|
832
|
+
"char": "r",
|
|
833
|
+
"description": "root directory",
|
|
834
|
+
"name": "root",
|
|
835
|
+
"required": false,
|
|
836
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
837
|
+
"hasDynamicHelp": false,
|
|
838
|
+
"multiple": false,
|
|
839
|
+
"type": "option"
|
|
840
|
+
},
|
|
841
|
+
"manifest": {
|
|
842
|
+
"char": "m",
|
|
843
|
+
"description": "project manifest",
|
|
844
|
+
"name": "manifest",
|
|
845
|
+
"required": false,
|
|
846
|
+
"default": "raindrop.manifest",
|
|
847
847
|
"hasDynamicHelp": false,
|
|
848
848
|
"multiple": false,
|
|
849
849
|
"type": "option"
|
|
@@ -852,33 +852,45 @@
|
|
|
852
852
|
"char": "o",
|
|
853
853
|
"description": "output format",
|
|
854
854
|
"name": "output",
|
|
855
|
-
"default": "
|
|
855
|
+
"default": "table",
|
|
856
856
|
"hasDynamicHelp": false,
|
|
857
857
|
"multiple": false,
|
|
858
858
|
"options": [
|
|
859
859
|
"text",
|
|
860
|
-
"
|
|
861
|
-
"
|
|
860
|
+
"table",
|
|
861
|
+
"json"
|
|
862
862
|
],
|
|
863
863
|
"type": "option"
|
|
864
864
|
},
|
|
865
|
-
"
|
|
866
|
-
"char": "
|
|
867
|
-
"description": "
|
|
868
|
-
"
|
|
869
|
-
|
|
865
|
+
"version": {
|
|
866
|
+
"char": "v",
|
|
867
|
+
"description": "application version to delete",
|
|
868
|
+
"exclusive": [
|
|
869
|
+
"all"
|
|
870
|
+
],
|
|
871
|
+
"name": "version",
|
|
870
872
|
"required": false,
|
|
871
873
|
"hasDynamicHelp": false,
|
|
872
874
|
"multiple": false,
|
|
873
875
|
"type": "option"
|
|
874
876
|
},
|
|
875
|
-
"
|
|
876
|
-
"char": "
|
|
877
|
-
"description": "
|
|
877
|
+
"all": {
|
|
878
|
+
"char": "a",
|
|
879
|
+
"description": "delete all application versions",
|
|
880
|
+
"exclusive": [
|
|
881
|
+
"version"
|
|
882
|
+
],
|
|
883
|
+
"name": "all",
|
|
884
|
+
"required": false,
|
|
885
|
+
"allowNo": false,
|
|
886
|
+
"type": "boolean"
|
|
887
|
+
},
|
|
888
|
+
"impersonate": {
|
|
889
|
+
"char": "i",
|
|
890
|
+
"description": "impersonate organization",
|
|
878
891
|
"hidden": true,
|
|
879
|
-
"name": "
|
|
892
|
+
"name": "impersonate",
|
|
880
893
|
"required": false,
|
|
881
|
-
"default": "raindrop.manifest",
|
|
882
894
|
"hasDynamicHelp": false,
|
|
883
895
|
"multiple": false,
|
|
884
896
|
"type": "option"
|
|
@@ -886,7 +898,7 @@
|
|
|
886
898
|
},
|
|
887
899
|
"hasDynamicHelp": false,
|
|
888
900
|
"hiddenAliases": [],
|
|
889
|
-
"id": "
|
|
901
|
+
"id": "build:delete",
|
|
890
902
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
891
903
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
892
904
|
"pluginType": "core",
|
|
@@ -949,27 +961,16 @@
|
|
|
949
961
|
"relativePath": [
|
|
950
962
|
"dist",
|
|
951
963
|
"commands",
|
|
952
|
-
"
|
|
953
|
-
"
|
|
964
|
+
"build",
|
|
965
|
+
"delete.js"
|
|
954
966
|
]
|
|
955
967
|
},
|
|
956
|
-
"
|
|
968
|
+
"build:deploy": {
|
|
957
969
|
"aliases": [],
|
|
958
|
-
"args": {
|
|
959
|
-
|
|
960
|
-
"description": "file to upload",
|
|
961
|
-
"name": "file",
|
|
962
|
-
"required": true
|
|
963
|
-
},
|
|
964
|
-
"key": {
|
|
965
|
-
"description": "key/path in the bucket",
|
|
966
|
-
"name": "key",
|
|
967
|
-
"required": true
|
|
968
|
-
}
|
|
969
|
-
},
|
|
970
|
-
"description": "Upload a file to the object storage",
|
|
970
|
+
"args": {},
|
|
971
|
+
"description": "deploy a Raindrop application",
|
|
971
972
|
"examples": [
|
|
972
|
-
"<%= config.bin %>
|
|
973
|
+
"<%= config.bin %> <%= command.id %> .\nDeploy a Raindrop application version.\n"
|
|
973
974
|
],
|
|
974
975
|
"flags": {
|
|
975
976
|
"config": {
|
|
@@ -1028,35 +1029,46 @@
|
|
|
1028
1029
|
"multiple": false,
|
|
1029
1030
|
"type": "option"
|
|
1030
1031
|
},
|
|
1031
|
-
"
|
|
1032
|
-
"char": "
|
|
1033
|
-
"description": "
|
|
1034
|
-
"name": "
|
|
1035
|
-
"required":
|
|
1032
|
+
"root": {
|
|
1033
|
+
"char": "r",
|
|
1034
|
+
"description": "root directory",
|
|
1035
|
+
"name": "root",
|
|
1036
|
+
"required": false,
|
|
1037
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1036
1038
|
"hasDynamicHelp": false,
|
|
1037
1039
|
"multiple": false,
|
|
1038
1040
|
"type": "option"
|
|
1039
1041
|
},
|
|
1040
|
-
"
|
|
1041
|
-
"char": "
|
|
1042
|
-
"description": "
|
|
1043
|
-
"name": "
|
|
1042
|
+
"manifest": {
|
|
1043
|
+
"char": "m",
|
|
1044
|
+
"description": "project manifest",
|
|
1045
|
+
"name": "manifest",
|
|
1044
1046
|
"required": false,
|
|
1047
|
+
"default": "raindrop.manifest",
|
|
1045
1048
|
"hasDynamicHelp": false,
|
|
1046
1049
|
"multiple": false,
|
|
1047
1050
|
"type": "option"
|
|
1048
1051
|
},
|
|
1049
1052
|
"output": {
|
|
1050
1053
|
"char": "o",
|
|
1051
|
-
"description": "output
|
|
1054
|
+
"description": "output directory",
|
|
1052
1055
|
"name": "output",
|
|
1053
|
-
"
|
|
1056
|
+
"required": false,
|
|
1057
|
+
"default": "dist",
|
|
1054
1058
|
"hasDynamicHelp": false,
|
|
1055
1059
|
"multiple": false,
|
|
1056
|
-
"
|
|
1057
|
-
|
|
1058
|
-
|
|
1060
|
+
"type": "option"
|
|
1061
|
+
},
|
|
1062
|
+
"versionId": {
|
|
1063
|
+
"aliases": [
|
|
1064
|
+
"version"
|
|
1059
1065
|
],
|
|
1066
|
+
"char": "v",
|
|
1067
|
+
"description": "version ID",
|
|
1068
|
+
"name": "versionId",
|
|
1069
|
+
"required": false,
|
|
1070
|
+
"hasDynamicHelp": false,
|
|
1071
|
+
"multiple": false,
|
|
1060
1072
|
"type": "option"
|
|
1061
1073
|
},
|
|
1062
1074
|
"impersonate": {
|
|
@@ -1069,21 +1081,41 @@
|
|
|
1069
1081
|
"multiple": false,
|
|
1070
1082
|
"type": "option"
|
|
1071
1083
|
},
|
|
1072
|
-
"
|
|
1073
|
-
"char": "
|
|
1074
|
-
"description": "
|
|
1075
|
-
"
|
|
1076
|
-
"
|
|
1084
|
+
"start": {
|
|
1085
|
+
"char": "s",
|
|
1086
|
+
"description": "start the application after deploying",
|
|
1087
|
+
"name": "start",
|
|
1088
|
+
"required": false,
|
|
1089
|
+
"allowNo": false,
|
|
1090
|
+
"type": "boolean"
|
|
1091
|
+
},
|
|
1092
|
+
"resume": {
|
|
1093
|
+
"description": "resume a deployment",
|
|
1094
|
+
"name": "resume",
|
|
1095
|
+
"required": false,
|
|
1096
|
+
"allowNo": false,
|
|
1097
|
+
"type": "boolean"
|
|
1098
|
+
},
|
|
1099
|
+
"lock": {
|
|
1100
|
+
"description": "override lock ID to resume deployment",
|
|
1101
|
+
"name": "lock",
|
|
1077
1102
|
"required": false,
|
|
1078
|
-
"default": "raindrop.manifest",
|
|
1079
1103
|
"hasDynamicHelp": false,
|
|
1080
1104
|
"multiple": false,
|
|
1081
1105
|
"type": "option"
|
|
1106
|
+
},
|
|
1107
|
+
"amend": {
|
|
1108
|
+
"char": "a",
|
|
1109
|
+
"description": "amend an existing application",
|
|
1110
|
+
"name": "amend",
|
|
1111
|
+
"required": false,
|
|
1112
|
+
"allowNo": false,
|
|
1113
|
+
"type": "boolean"
|
|
1082
1114
|
}
|
|
1083
1115
|
},
|
|
1084
1116
|
"hasDynamicHelp": false,
|
|
1085
1117
|
"hiddenAliases": [],
|
|
1086
|
-
"id": "
|
|
1118
|
+
"id": "build:deploy",
|
|
1087
1119
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1088
1120
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1089
1121
|
"pluginType": "core",
|
|
@@ -1146,22 +1178,16 @@
|
|
|
1146
1178
|
"relativePath": [
|
|
1147
1179
|
"dist",
|
|
1148
1180
|
"commands",
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1181
|
+
"build",
|
|
1182
|
+
"deploy.js"
|
|
1151
1183
|
]
|
|
1152
1184
|
},
|
|
1153
|
-
"build:
|
|
1185
|
+
"build:find": {
|
|
1154
1186
|
"aliases": [],
|
|
1155
|
-
"args": {
|
|
1156
|
-
|
|
1157
|
-
"description": "branch name",
|
|
1158
|
-
"name": "branch",
|
|
1159
|
-
"required": true
|
|
1160
|
-
}
|
|
1161
|
-
},
|
|
1162
|
-
"description": "branch a Raindrop application",
|
|
1187
|
+
"args": {},
|
|
1188
|
+
"description": "find resources in Raindrop",
|
|
1163
1189
|
"examples": [
|
|
1164
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
1190
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
1165
1191
|
],
|
|
1166
1192
|
"flags": {
|
|
1167
1193
|
"config": {
|
|
@@ -1240,56 +1266,61 @@
|
|
|
1240
1266
|
"multiple": false,
|
|
1241
1267
|
"type": "option"
|
|
1242
1268
|
},
|
|
1243
|
-
"
|
|
1244
|
-
"char": "
|
|
1245
|
-
"description": "
|
|
1246
|
-
"name": "
|
|
1269
|
+
"application": {
|
|
1270
|
+
"char": "a",
|
|
1271
|
+
"description": "application",
|
|
1272
|
+
"name": "application",
|
|
1247
1273
|
"required": false,
|
|
1248
|
-
"default": "dist",
|
|
1249
1274
|
"hasDynamicHelp": false,
|
|
1250
1275
|
"multiple": false,
|
|
1251
1276
|
"type": "option"
|
|
1252
1277
|
},
|
|
1253
|
-
"
|
|
1254
|
-
"
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
"char": "p",
|
|
1258
|
-
"description": "branch from this version",
|
|
1259
|
-
"name": "versionId",
|
|
1278
|
+
"version": {
|
|
1279
|
+
"char": "v",
|
|
1280
|
+
"description": "application version",
|
|
1281
|
+
"name": "version",
|
|
1260
1282
|
"required": false,
|
|
1261
1283
|
"hasDynamicHelp": false,
|
|
1262
1284
|
"multiple": false,
|
|
1263
1285
|
"type": "option"
|
|
1264
1286
|
},
|
|
1265
|
-
"
|
|
1266
|
-
"char": "
|
|
1267
|
-
"description": "
|
|
1268
|
-
"
|
|
1269
|
-
"
|
|
1270
|
-
"required": false,
|
|
1287
|
+
"output": {
|
|
1288
|
+
"char": "o",
|
|
1289
|
+
"description": "output format",
|
|
1290
|
+
"name": "output",
|
|
1291
|
+
"default": "table",
|
|
1271
1292
|
"hasDynamicHelp": false,
|
|
1272
1293
|
"multiple": false,
|
|
1294
|
+
"options": [
|
|
1295
|
+
"text",
|
|
1296
|
+
"table",
|
|
1297
|
+
"json"
|
|
1298
|
+
],
|
|
1273
1299
|
"type": "option"
|
|
1274
1300
|
},
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1277
|
-
"
|
|
1301
|
+
"sudo": {
|
|
1302
|
+
"char": "s",
|
|
1303
|
+
"description": "superuser mode",
|
|
1304
|
+
"hidden": true,
|
|
1305
|
+
"name": "sudo",
|
|
1278
1306
|
"required": false,
|
|
1279
1307
|
"allowNo": false,
|
|
1280
1308
|
"type": "boolean"
|
|
1281
1309
|
},
|
|
1282
|
-
"
|
|
1283
|
-
"
|
|
1284
|
-
"
|
|
1310
|
+
"impersonate": {
|
|
1311
|
+
"char": "i",
|
|
1312
|
+
"description": "impersonate organization",
|
|
1313
|
+
"hidden": true,
|
|
1314
|
+
"name": "impersonate",
|
|
1285
1315
|
"required": false,
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1316
|
+
"hasDynamicHelp": false,
|
|
1317
|
+
"multiple": false,
|
|
1318
|
+
"type": "option"
|
|
1288
1319
|
}
|
|
1289
1320
|
},
|
|
1290
1321
|
"hasDynamicHelp": false,
|
|
1291
1322
|
"hiddenAliases": [],
|
|
1292
|
-
"id": "build:
|
|
1323
|
+
"id": "build:find",
|
|
1293
1324
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1294
1325
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1295
1326
|
"pluginType": "core",
|
|
@@ -1353,23 +1384,37 @@
|
|
|
1353
1384
|
"dist",
|
|
1354
1385
|
"commands",
|
|
1355
1386
|
"build",
|
|
1356
|
-
"
|
|
1387
|
+
"find.js"
|
|
1357
1388
|
]
|
|
1358
1389
|
},
|
|
1359
|
-
"build:
|
|
1390
|
+
"build:generate": {
|
|
1360
1391
|
"aliases": [],
|
|
1361
|
-
"args": {
|
|
1362
|
-
|
|
1363
|
-
"description": "version id",
|
|
1364
|
-
"name": "version",
|
|
1365
|
-
"required": false
|
|
1366
|
-
}
|
|
1367
|
-
},
|
|
1368
|
-
"description": "switch the current context to a specific version",
|
|
1392
|
+
"args": {},
|
|
1393
|
+
"description": "(re)generate all code for a LiquidMetal.AI project",
|
|
1369
1394
|
"examples": [
|
|
1370
|
-
"<%= config.bin %> <%= command.id
|
|
1395
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1371
1396
|
],
|
|
1372
1397
|
"flags": {
|
|
1398
|
+
"root": {
|
|
1399
|
+
"char": "r",
|
|
1400
|
+
"description": "root directory",
|
|
1401
|
+
"name": "root",
|
|
1402
|
+
"required": false,
|
|
1403
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1404
|
+
"hasDynamicHelp": false,
|
|
1405
|
+
"multiple": false,
|
|
1406
|
+
"type": "option"
|
|
1407
|
+
},
|
|
1408
|
+
"manifest": {
|
|
1409
|
+
"char": "m",
|
|
1410
|
+
"description": "project manifest",
|
|
1411
|
+
"name": "manifest",
|
|
1412
|
+
"required": false,
|
|
1413
|
+
"default": "raindrop.manifest",
|
|
1414
|
+
"hasDynamicHelp": false,
|
|
1415
|
+
"multiple": false,
|
|
1416
|
+
"type": "option"
|
|
1417
|
+
},
|
|
1373
1418
|
"config": {
|
|
1374
1419
|
"char": "c",
|
|
1375
1420
|
"description": "config file",
|
|
@@ -1381,65 +1426,110 @@
|
|
|
1381
1426
|
"multiple": false,
|
|
1382
1427
|
"type": "option"
|
|
1383
1428
|
},
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1429
|
+
"output": {
|
|
1430
|
+
"char": "o",
|
|
1431
|
+
"description": "output directory",
|
|
1432
|
+
"name": "output",
|
|
1433
|
+
"default": "dist",
|
|
1434
|
+
"hasDynamicHelp": false,
|
|
1435
|
+
"multiple": false,
|
|
1436
|
+
"type": "option"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"hasDynamicHelp": false,
|
|
1440
|
+
"hiddenAliases": [],
|
|
1441
|
+
"id": "build:generate",
|
|
1442
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1443
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1444
|
+
"pluginType": "core",
|
|
1445
|
+
"strict": true,
|
|
1446
|
+
"enableJsonFlag": false,
|
|
1447
|
+
"HIDDEN_FLAGS": {
|
|
1448
|
+
"config": {
|
|
1449
|
+
"char": "c",
|
|
1450
|
+
"description": "config file",
|
|
1451
|
+
"required": false,
|
|
1386
1452
|
"hidden": true,
|
|
1387
|
-
"
|
|
1453
|
+
"default": ".raindrop/config.json",
|
|
1454
|
+
"input": [],
|
|
1455
|
+
"multiple": false,
|
|
1456
|
+
"type": "option"
|
|
1457
|
+
},
|
|
1458
|
+
"rainbowAuthService": {
|
|
1388
1459
|
"default": "https://liquidmetal.run/api/connect",
|
|
1389
|
-
"
|
|
1460
|
+
"hidden": true,
|
|
1461
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1462
|
+
"input": [],
|
|
1390
1463
|
"multiple": false,
|
|
1391
1464
|
"type": "option"
|
|
1392
1465
|
},
|
|
1393
1466
|
"raindropCatalogService": {
|
|
1394
|
-
"description": "URL of the catalog service",
|
|
1395
1467
|
"env": "RAINDROP_CATALOG_SERVICE",
|
|
1468
|
+
"description": "URL of the catalog service",
|
|
1396
1469
|
"hidden": true,
|
|
1397
|
-
"
|
|
1398
|
-
"hasDynamicHelp": false,
|
|
1470
|
+
"input": [],
|
|
1399
1471
|
"multiple": false,
|
|
1400
1472
|
"type": "option"
|
|
1401
1473
|
},
|
|
1402
1474
|
"rainbowAuthToken": {
|
|
1403
|
-
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
1404
1475
|
"env": "RAINBOW_AUTH_TOKEN",
|
|
1476
|
+
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
1405
1477
|
"hidden": true,
|
|
1406
|
-
"
|
|
1407
|
-
"hasDynamicHelp": false,
|
|
1478
|
+
"input": [],
|
|
1408
1479
|
"multiple": false,
|
|
1409
1480
|
"type": "option"
|
|
1410
1481
|
},
|
|
1411
1482
|
"rainbowOrganizationId": {
|
|
1412
|
-
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
1413
1483
|
"env": "RAINBOW_ORGANIZATION_ID",
|
|
1484
|
+
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
1414
1485
|
"hidden": true,
|
|
1415
|
-
"
|
|
1416
|
-
"hasDynamicHelp": false,
|
|
1486
|
+
"input": [],
|
|
1417
1487
|
"multiple": false,
|
|
1418
1488
|
"type": "option"
|
|
1419
1489
|
},
|
|
1420
1490
|
"rainbowUserId": {
|
|
1421
|
-
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
1422
1491
|
"env": "RAINBOW_USER_ID",
|
|
1492
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
1423
1493
|
"hidden": true,
|
|
1424
|
-
"
|
|
1425
|
-
"hasDynamicHelp": false,
|
|
1426
|
-
"multiple": false,
|
|
1427
|
-
"type": "option"
|
|
1428
|
-
},
|
|
1429
|
-
"output": {
|
|
1430
|
-
"char": "o",
|
|
1431
|
-
"description": "output format",
|
|
1432
|
-
"name": "output",
|
|
1433
|
-
"required": false,
|
|
1434
|
-
"default": "text",
|
|
1435
|
-
"hasDynamicHelp": false,
|
|
1494
|
+
"input": [],
|
|
1436
1495
|
"multiple": false,
|
|
1437
1496
|
"type": "option"
|
|
1438
1497
|
}
|
|
1439
1498
|
},
|
|
1499
|
+
"baseArgs": {},
|
|
1500
|
+
"isESM": true,
|
|
1501
|
+
"relativePath": [
|
|
1502
|
+
"dist",
|
|
1503
|
+
"commands",
|
|
1504
|
+
"build",
|
|
1505
|
+
"generate.js"
|
|
1506
|
+
]
|
|
1507
|
+
},
|
|
1508
|
+
"build:init": {
|
|
1509
|
+
"aliases": [],
|
|
1510
|
+
"args": {
|
|
1511
|
+
"path": {
|
|
1512
|
+
"default": ".",
|
|
1513
|
+
"description": "Path to initialize the project in",
|
|
1514
|
+
"name": "path",
|
|
1515
|
+
"required": false
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"description": "start a new LiquidMetal.AI project",
|
|
1519
|
+
"examples": [
|
|
1520
|
+
"<%= config.bin %> <%= command.id %> .\nInitialize a project in the current directory.\n"
|
|
1521
|
+
],
|
|
1522
|
+
"flags": {
|
|
1523
|
+
"overwrite": {
|
|
1524
|
+
"description": "Overwrite existing files",
|
|
1525
|
+
"name": "overwrite",
|
|
1526
|
+
"allowNo": false,
|
|
1527
|
+
"type": "boolean"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1440
1530
|
"hasDynamicHelp": false,
|
|
1441
1531
|
"hiddenAliases": [],
|
|
1442
|
-
"id": "build:
|
|
1532
|
+
"id": "build:init",
|
|
1443
1533
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1444
1534
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1445
1535
|
"pluginType": "core",
|
|
@@ -1503,21 +1593,15 @@
|
|
|
1503
1593
|
"dist",
|
|
1504
1594
|
"commands",
|
|
1505
1595
|
"build",
|
|
1506
|
-
"
|
|
1596
|
+
"init.js"
|
|
1507
1597
|
]
|
|
1508
1598
|
},
|
|
1509
|
-
"build:
|
|
1599
|
+
"build:list": {
|
|
1510
1600
|
"aliases": [],
|
|
1511
|
-
"args": {
|
|
1512
|
-
|
|
1513
|
-
"description": "application name",
|
|
1514
|
-
"name": "application",
|
|
1515
|
-
"required": false
|
|
1516
|
-
}
|
|
1517
|
-
},
|
|
1518
|
-
"description": "delete Raindrop applications",
|
|
1601
|
+
"args": {},
|
|
1602
|
+
"description": "list Raindrop catalog resources",
|
|
1519
1603
|
"examples": [
|
|
1520
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
1604
|
+
"<%= config.bin %> <%= command.id %> .\nList Raindrop catalog resources.\n"
|
|
1521
1605
|
],
|
|
1522
1606
|
"flags": {
|
|
1523
1607
|
"config": {
|
|
@@ -1576,25 +1660,12 @@
|
|
|
1576
1660
|
"multiple": false,
|
|
1577
1661
|
"type": "option"
|
|
1578
1662
|
},
|
|
1579
|
-
"
|
|
1580
|
-
"char": "
|
|
1581
|
-
"description": "
|
|
1582
|
-
"name": "
|
|
1583
|
-
"
|
|
1584
|
-
"
|
|
1585
|
-
"hasDynamicHelp": false,
|
|
1586
|
-
"multiple": false,
|
|
1587
|
-
"type": "option"
|
|
1588
|
-
},
|
|
1589
|
-
"manifest": {
|
|
1590
|
-
"char": "m",
|
|
1591
|
-
"description": "project manifest",
|
|
1592
|
-
"name": "manifest",
|
|
1593
|
-
"required": false,
|
|
1594
|
-
"default": "raindrop.manifest",
|
|
1595
|
-
"hasDynamicHelp": false,
|
|
1596
|
-
"multiple": false,
|
|
1597
|
-
"type": "option"
|
|
1663
|
+
"all": {
|
|
1664
|
+
"char": "a",
|
|
1665
|
+
"description": "show deleted resources",
|
|
1666
|
+
"name": "all",
|
|
1667
|
+
"allowNo": false,
|
|
1668
|
+
"type": "boolean"
|
|
1598
1669
|
},
|
|
1599
1670
|
"output": {
|
|
1600
1671
|
"char": "o",
|
|
@@ -1606,39 +1677,28 @@
|
|
|
1606
1677
|
"options": [
|
|
1607
1678
|
"text",
|
|
1608
1679
|
"table",
|
|
1609
|
-
"json"
|
|
1680
|
+
"json",
|
|
1681
|
+
"log"
|
|
1610
1682
|
],
|
|
1611
1683
|
"type": "option"
|
|
1612
1684
|
},
|
|
1613
|
-
"
|
|
1614
|
-
"char": "
|
|
1615
|
-
"description": "
|
|
1616
|
-
"
|
|
1617
|
-
|
|
1618
|
-
],
|
|
1619
|
-
"name": "version",
|
|
1685
|
+
"impersonate": {
|
|
1686
|
+
"char": "i",
|
|
1687
|
+
"description": "impersonate organization",
|
|
1688
|
+
"hidden": true,
|
|
1689
|
+
"name": "impersonate",
|
|
1620
1690
|
"required": false,
|
|
1621
1691
|
"hasDynamicHelp": false,
|
|
1622
1692
|
"multiple": false,
|
|
1623
1693
|
"type": "option"
|
|
1624
1694
|
},
|
|
1625
|
-
"
|
|
1626
|
-
"char": "
|
|
1627
|
-
"description": "
|
|
1628
|
-
"exclusive": [
|
|
1629
|
-
"version"
|
|
1630
|
-
],
|
|
1631
|
-
"name": "all",
|
|
1632
|
-
"required": false,
|
|
1633
|
-
"allowNo": false,
|
|
1634
|
-
"type": "boolean"
|
|
1635
|
-
},
|
|
1636
|
-
"impersonate": {
|
|
1637
|
-
"char": "i",
|
|
1638
|
-
"description": "impersonate organization",
|
|
1695
|
+
"manifest": {
|
|
1696
|
+
"char": "m",
|
|
1697
|
+
"description": "project manifest",
|
|
1639
1698
|
"hidden": true,
|
|
1640
|
-
"name": "
|
|
1699
|
+
"name": "manifest",
|
|
1641
1700
|
"required": false,
|
|
1701
|
+
"default": "raindrop.manifest",
|
|
1642
1702
|
"hasDynamicHelp": false,
|
|
1643
1703
|
"multiple": false,
|
|
1644
1704
|
"type": "option"
|
|
@@ -1646,7 +1706,7 @@
|
|
|
1646
1706
|
},
|
|
1647
1707
|
"hasDynamicHelp": false,
|
|
1648
1708
|
"hiddenAliases": [],
|
|
1649
|
-
"id": "build:
|
|
1709
|
+
"id": "build:list",
|
|
1650
1710
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1651
1711
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1652
1712
|
"pluginType": "core",
|
|
@@ -1710,15 +1770,21 @@
|
|
|
1710
1770
|
"dist",
|
|
1711
1771
|
"commands",
|
|
1712
1772
|
"build",
|
|
1713
|
-
"
|
|
1773
|
+
"list.js"
|
|
1714
1774
|
]
|
|
1715
1775
|
},
|
|
1716
|
-
"build:
|
|
1776
|
+
"build:sandbox": {
|
|
1717
1777
|
"aliases": [],
|
|
1718
|
-
"args": {
|
|
1719
|
-
|
|
1778
|
+
"args": {
|
|
1779
|
+
"versionId": {
|
|
1780
|
+
"description": "version to sandbox",
|
|
1781
|
+
"name": "versionId",
|
|
1782
|
+
"required": false
|
|
1783
|
+
}
|
|
1784
|
+
},
|
|
1785
|
+
"description": "mark a version as sandboxed in the Raindrop catalog",
|
|
1720
1786
|
"examples": [
|
|
1721
|
-
"<%= config.bin %> <%= command.id
|
|
1787
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
1722
1788
|
],
|
|
1723
1789
|
"flags": {
|
|
1724
1790
|
"config": {
|
|
@@ -1777,48 +1843,6 @@
|
|
|
1777
1843
|
"multiple": false,
|
|
1778
1844
|
"type": "option"
|
|
1779
1845
|
},
|
|
1780
|
-
"root": {
|
|
1781
|
-
"char": "r",
|
|
1782
|
-
"description": "root directory",
|
|
1783
|
-
"name": "root",
|
|
1784
|
-
"required": false,
|
|
1785
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1786
|
-
"hasDynamicHelp": false,
|
|
1787
|
-
"multiple": false,
|
|
1788
|
-
"type": "option"
|
|
1789
|
-
},
|
|
1790
|
-
"manifest": {
|
|
1791
|
-
"char": "m",
|
|
1792
|
-
"description": "project manifest",
|
|
1793
|
-
"name": "manifest",
|
|
1794
|
-
"required": false,
|
|
1795
|
-
"default": "raindrop.manifest",
|
|
1796
|
-
"hasDynamicHelp": false,
|
|
1797
|
-
"multiple": false,
|
|
1798
|
-
"type": "option"
|
|
1799
|
-
},
|
|
1800
|
-
"output": {
|
|
1801
|
-
"char": "o",
|
|
1802
|
-
"description": "output directory",
|
|
1803
|
-
"name": "output",
|
|
1804
|
-
"required": false,
|
|
1805
|
-
"default": "dist",
|
|
1806
|
-
"hasDynamicHelp": false,
|
|
1807
|
-
"multiple": false,
|
|
1808
|
-
"type": "option"
|
|
1809
|
-
},
|
|
1810
|
-
"versionId": {
|
|
1811
|
-
"aliases": [
|
|
1812
|
-
"version"
|
|
1813
|
-
],
|
|
1814
|
-
"char": "v",
|
|
1815
|
-
"description": "version ID",
|
|
1816
|
-
"name": "versionId",
|
|
1817
|
-
"required": false,
|
|
1818
|
-
"hasDynamicHelp": false,
|
|
1819
|
-
"multiple": false,
|
|
1820
|
-
"type": "option"
|
|
1821
|
-
},
|
|
1822
1846
|
"impersonate": {
|
|
1823
1847
|
"char": "i",
|
|
1824
1848
|
"description": "impersonate organization",
|
|
@@ -1829,41 +1853,18 @@
|
|
|
1829
1853
|
"multiple": false,
|
|
1830
1854
|
"type": "option"
|
|
1831
1855
|
},
|
|
1832
|
-
"
|
|
1833
|
-
"
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1836
|
-
"required": false,
|
|
1837
|
-
"allowNo": false,
|
|
1838
|
-
"type": "boolean"
|
|
1839
|
-
},
|
|
1840
|
-
"resume": {
|
|
1841
|
-
"description": "resume a deployment",
|
|
1842
|
-
"name": "resume",
|
|
1843
|
-
"required": false,
|
|
1844
|
-
"allowNo": false,
|
|
1845
|
-
"type": "boolean"
|
|
1846
|
-
},
|
|
1847
|
-
"lock": {
|
|
1848
|
-
"description": "override lock ID to resume deployment",
|
|
1849
|
-
"name": "lock",
|
|
1850
|
-
"required": false,
|
|
1856
|
+
"manifest": {
|
|
1857
|
+
"description": "project manifest",
|
|
1858
|
+
"name": "manifest",
|
|
1859
|
+
"default": "raindrop.manifest",
|
|
1851
1860
|
"hasDynamicHelp": false,
|
|
1852
1861
|
"multiple": false,
|
|
1853
1862
|
"type": "option"
|
|
1854
|
-
},
|
|
1855
|
-
"amend": {
|
|
1856
|
-
"char": "a",
|
|
1857
|
-
"description": "amend an existing application",
|
|
1858
|
-
"name": "amend",
|
|
1859
|
-
"required": false,
|
|
1860
|
-
"allowNo": false,
|
|
1861
|
-
"type": "boolean"
|
|
1862
1863
|
}
|
|
1863
1864
|
},
|
|
1864
1865
|
"hasDynamicHelp": false,
|
|
1865
1866
|
"hiddenAliases": [],
|
|
1866
|
-
"id": "build:
|
|
1867
|
+
"id": "build:sandbox",
|
|
1867
1868
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1868
1869
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1869
1870
|
"pluginType": "core",
|
|
@@ -1927,15 +1928,15 @@
|
|
|
1927
1928
|
"dist",
|
|
1928
1929
|
"commands",
|
|
1929
1930
|
"build",
|
|
1930
|
-
"
|
|
1931
|
+
"sandbox.js"
|
|
1931
1932
|
]
|
|
1932
1933
|
},
|
|
1933
|
-
"build:
|
|
1934
|
+
"build:start": {
|
|
1934
1935
|
"aliases": [],
|
|
1935
1936
|
"args": {},
|
|
1936
|
-
"description": "
|
|
1937
|
+
"description": "start a Raindrop application",
|
|
1937
1938
|
"examples": [
|
|
1938
|
-
"<%= config.bin %> <%= command.id %> .\n"
|
|
1939
|
+
"<%= config.bin %> <%= command.id %> .\nStart a Raindrop application.\n"
|
|
1939
1940
|
],
|
|
1940
1941
|
"flags": {
|
|
1941
1942
|
"config": {
|
|
@@ -2016,7 +2017,7 @@
|
|
|
2016
2017
|
},
|
|
2017
2018
|
"application": {
|
|
2018
2019
|
"char": "a",
|
|
2019
|
-
"description": "application",
|
|
2020
|
+
"description": "application to start",
|
|
2020
2021
|
"name": "application",
|
|
2021
2022
|
"required": false,
|
|
2022
2023
|
"hasDynamicHelp": false,
|
|
@@ -2025,36 +2026,13 @@
|
|
|
2025
2026
|
},
|
|
2026
2027
|
"version": {
|
|
2027
2028
|
"char": "v",
|
|
2028
|
-
"description": "application version",
|
|
2029
|
+
"description": "application version to start",
|
|
2029
2030
|
"name": "version",
|
|
2030
2031
|
"required": false,
|
|
2031
2032
|
"hasDynamicHelp": false,
|
|
2032
2033
|
"multiple": false,
|
|
2033
2034
|
"type": "option"
|
|
2034
2035
|
},
|
|
2035
|
-
"output": {
|
|
2036
|
-
"char": "o",
|
|
2037
|
-
"description": "output format",
|
|
2038
|
-
"name": "output",
|
|
2039
|
-
"default": "table",
|
|
2040
|
-
"hasDynamicHelp": false,
|
|
2041
|
-
"multiple": false,
|
|
2042
|
-
"options": [
|
|
2043
|
-
"text",
|
|
2044
|
-
"table",
|
|
2045
|
-
"json"
|
|
2046
|
-
],
|
|
2047
|
-
"type": "option"
|
|
2048
|
-
},
|
|
2049
|
-
"sudo": {
|
|
2050
|
-
"char": "s",
|
|
2051
|
-
"description": "superuser mode",
|
|
2052
|
-
"hidden": true,
|
|
2053
|
-
"name": "sudo",
|
|
2054
|
-
"required": false,
|
|
2055
|
-
"allowNo": false,
|
|
2056
|
-
"type": "boolean"
|
|
2057
|
-
},
|
|
2058
2036
|
"impersonate": {
|
|
2059
2037
|
"char": "i",
|
|
2060
2038
|
"description": "impersonate organization",
|
|
@@ -2068,7 +2046,7 @@
|
|
|
2068
2046
|
},
|
|
2069
2047
|
"hasDynamicHelp": false,
|
|
2070
2048
|
"hiddenAliases": [],
|
|
2071
|
-
"id": "build:
|
|
2049
|
+
"id": "build:start",
|
|
2072
2050
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2073
2051
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2074
2052
|
"pluginType": "core",
|
|
@@ -2132,37 +2110,17 @@
|
|
|
2132
2110
|
"dist",
|
|
2133
2111
|
"commands",
|
|
2134
2112
|
"build",
|
|
2135
|
-
"
|
|
2113
|
+
"start.js"
|
|
2136
2114
|
]
|
|
2137
2115
|
},
|
|
2138
|
-
"build:
|
|
2116
|
+
"build:status": {
|
|
2139
2117
|
"aliases": [],
|
|
2140
2118
|
"args": {},
|
|
2141
|
-
"description": "
|
|
2119
|
+
"description": "show the status of an application in Raindrop",
|
|
2142
2120
|
"examples": [
|
|
2143
|
-
"<%= config.bin %> <%= command.id %>"
|
|
2121
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
2144
2122
|
],
|
|
2145
2123
|
"flags": {
|
|
2146
|
-
"root": {
|
|
2147
|
-
"char": "r",
|
|
2148
|
-
"description": "root directory",
|
|
2149
|
-
"name": "root",
|
|
2150
|
-
"required": false,
|
|
2151
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2152
|
-
"hasDynamicHelp": false,
|
|
2153
|
-
"multiple": false,
|
|
2154
|
-
"type": "option"
|
|
2155
|
-
},
|
|
2156
|
-
"manifest": {
|
|
2157
|
-
"char": "m",
|
|
2158
|
-
"description": "project manifest",
|
|
2159
|
-
"name": "manifest",
|
|
2160
|
-
"required": false,
|
|
2161
|
-
"default": "raindrop.manifest",
|
|
2162
|
-
"hasDynamicHelp": false,
|
|
2163
|
-
"multiple": false,
|
|
2164
|
-
"type": "option"
|
|
2165
|
-
},
|
|
2166
2124
|
"config": {
|
|
2167
2125
|
"char": "c",
|
|
2168
2126
|
"description": "config file",
|
|
@@ -2174,110 +2132,126 @@
|
|
|
2174
2132
|
"multiple": false,
|
|
2175
2133
|
"type": "option"
|
|
2176
2134
|
},
|
|
2177
|
-
"output": {
|
|
2178
|
-
"char": "o",
|
|
2179
|
-
"description": "output directory",
|
|
2180
|
-
"name": "output",
|
|
2181
|
-
"default": "dist",
|
|
2182
|
-
"hasDynamicHelp": false,
|
|
2183
|
-
"multiple": false,
|
|
2184
|
-
"type": "option"
|
|
2185
|
-
}
|
|
2186
|
-
},
|
|
2187
|
-
"hasDynamicHelp": false,
|
|
2188
|
-
"hiddenAliases": [],
|
|
2189
|
-
"id": "build:generate",
|
|
2190
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2191
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2192
|
-
"pluginType": "core",
|
|
2193
|
-
"strict": true,
|
|
2194
|
-
"enableJsonFlag": false,
|
|
2195
|
-
"HIDDEN_FLAGS": {
|
|
2196
|
-
"config": {
|
|
2197
|
-
"char": "c",
|
|
2198
|
-
"description": "config file",
|
|
2199
|
-
"required": false,
|
|
2200
|
-
"hidden": true,
|
|
2201
|
-
"default": ".raindrop/config.json",
|
|
2202
|
-
"input": [],
|
|
2203
|
-
"multiple": false,
|
|
2204
|
-
"type": "option"
|
|
2205
|
-
},
|
|
2206
2135
|
"rainbowAuthService": {
|
|
2207
|
-
"default": "https://liquidmetal.run/api/connect",
|
|
2208
|
-
"hidden": true,
|
|
2209
2136
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
2210
|
-
"
|
|
2137
|
+
"hidden": true,
|
|
2138
|
+
"name": "rainbowAuthService",
|
|
2139
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
2140
|
+
"hasDynamicHelp": false,
|
|
2211
2141
|
"multiple": false,
|
|
2212
2142
|
"type": "option"
|
|
2213
2143
|
},
|
|
2214
2144
|
"raindropCatalogService": {
|
|
2215
|
-
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2216
2145
|
"description": "URL of the catalog service",
|
|
2146
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2217
2147
|
"hidden": true,
|
|
2218
|
-
"
|
|
2148
|
+
"name": "raindropCatalogService",
|
|
2149
|
+
"hasDynamicHelp": false,
|
|
2219
2150
|
"multiple": false,
|
|
2220
2151
|
"type": "option"
|
|
2221
2152
|
},
|
|
2222
2153
|
"rainbowAuthToken": {
|
|
2223
|
-
"env": "RAINBOW_AUTH_TOKEN",
|
|
2224
2154
|
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
2155
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
2225
2156
|
"hidden": true,
|
|
2226
|
-
"
|
|
2157
|
+
"name": "rainbowAuthToken",
|
|
2158
|
+
"hasDynamicHelp": false,
|
|
2227
2159
|
"multiple": false,
|
|
2228
2160
|
"type": "option"
|
|
2229
2161
|
},
|
|
2230
2162
|
"rainbowOrganizationId": {
|
|
2231
|
-
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2232
2163
|
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
2164
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2233
2165
|
"hidden": true,
|
|
2234
|
-
"
|
|
2166
|
+
"name": "rainbowOrganizationId",
|
|
2167
|
+
"hasDynamicHelp": false,
|
|
2235
2168
|
"multiple": false,
|
|
2236
2169
|
"type": "option"
|
|
2237
2170
|
},
|
|
2238
2171
|
"rainbowUserId": {
|
|
2239
|
-
"env": "RAINBOW_USER_ID",
|
|
2240
2172
|
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2173
|
+
"env": "RAINBOW_USER_ID",
|
|
2241
2174
|
"hidden": true,
|
|
2242
|
-
"
|
|
2175
|
+
"name": "rainbowUserId",
|
|
2176
|
+
"hasDynamicHelp": false,
|
|
2243
2177
|
"multiple": false,
|
|
2244
2178
|
"type": "option"
|
|
2245
|
-
}
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
"
|
|
2261
|
-
"
|
|
2262
|
-
"
|
|
2263
|
-
"
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
"
|
|
2273
|
-
"
|
|
2179
|
+
},
|
|
2180
|
+
"root": {
|
|
2181
|
+
"char": "r",
|
|
2182
|
+
"description": "root directory",
|
|
2183
|
+
"name": "root",
|
|
2184
|
+
"required": false,
|
|
2185
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2186
|
+
"hasDynamicHelp": false,
|
|
2187
|
+
"multiple": false,
|
|
2188
|
+
"type": "option"
|
|
2189
|
+
},
|
|
2190
|
+
"manifest": {
|
|
2191
|
+
"char": "m",
|
|
2192
|
+
"description": "project manifest",
|
|
2193
|
+
"name": "manifest",
|
|
2194
|
+
"required": false,
|
|
2195
|
+
"default": "raindrop.manifest",
|
|
2196
|
+
"hasDynamicHelp": false,
|
|
2197
|
+
"multiple": false,
|
|
2198
|
+
"type": "option"
|
|
2199
|
+
},
|
|
2200
|
+
"application": {
|
|
2201
|
+
"char": "a",
|
|
2202
|
+
"description": "application",
|
|
2203
|
+
"name": "application",
|
|
2204
|
+
"required": false,
|
|
2205
|
+
"hasDynamicHelp": false,
|
|
2206
|
+
"multiple": false,
|
|
2207
|
+
"type": "option"
|
|
2208
|
+
},
|
|
2209
|
+
"version": {
|
|
2210
|
+
"char": "v",
|
|
2211
|
+
"description": "application version",
|
|
2212
|
+
"name": "version",
|
|
2213
|
+
"required": false,
|
|
2214
|
+
"hasDynamicHelp": false,
|
|
2215
|
+
"multiple": false,
|
|
2216
|
+
"type": "option"
|
|
2217
|
+
},
|
|
2218
|
+
"output": {
|
|
2219
|
+
"char": "o",
|
|
2220
|
+
"description": "output format",
|
|
2221
|
+
"name": "output",
|
|
2222
|
+
"default": "table",
|
|
2223
|
+
"hasDynamicHelp": false,
|
|
2224
|
+
"multiple": false,
|
|
2225
|
+
"options": [
|
|
2226
|
+
"watch",
|
|
2227
|
+
"table",
|
|
2228
|
+
"json"
|
|
2229
|
+
],
|
|
2230
|
+
"type": "option"
|
|
2231
|
+
},
|
|
2232
|
+
"sudo": {
|
|
2233
|
+
"char": "s",
|
|
2234
|
+
"description": "superuser mode",
|
|
2235
|
+
"hidden": true,
|
|
2236
|
+
"name": "sudo",
|
|
2237
|
+
"required": false,
|
|
2274
2238
|
"allowNo": false,
|
|
2275
2239
|
"type": "boolean"
|
|
2240
|
+
},
|
|
2241
|
+
"impersonate": {
|
|
2242
|
+
"char": "i",
|
|
2243
|
+
"description": "impersonate organization",
|
|
2244
|
+
"hidden": true,
|
|
2245
|
+
"name": "impersonate",
|
|
2246
|
+
"required": false,
|
|
2247
|
+
"hasDynamicHelp": false,
|
|
2248
|
+
"multiple": false,
|
|
2249
|
+
"type": "option"
|
|
2276
2250
|
}
|
|
2277
2251
|
},
|
|
2278
2252
|
"hasDynamicHelp": false,
|
|
2279
2253
|
"hiddenAliases": [],
|
|
2280
|
-
"id": "build:
|
|
2254
|
+
"id": "build:status",
|
|
2281
2255
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2282
2256
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2283
2257
|
"pluginType": "core",
|
|
@@ -2341,15 +2315,15 @@
|
|
|
2341
2315
|
"dist",
|
|
2342
2316
|
"commands",
|
|
2343
2317
|
"build",
|
|
2344
|
-
"
|
|
2318
|
+
"status.js"
|
|
2345
2319
|
]
|
|
2346
2320
|
},
|
|
2347
|
-
"build:
|
|
2321
|
+
"build:stop": {
|
|
2348
2322
|
"aliases": [],
|
|
2349
2323
|
"args": {},
|
|
2350
|
-
"description": "
|
|
2324
|
+
"description": "stop a Raindrop application",
|
|
2351
2325
|
"examples": [
|
|
2352
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
2326
|
+
"<%= config.bin %> <%= command.id %> .\nStop a Raindrop application.\n"
|
|
2353
2327
|
],
|
|
2354
2328
|
"flags": {
|
|
2355
2329
|
"config": {
|
|
@@ -2399,35 +2373,51 @@
|
|
|
2399
2373
|
"multiple": false,
|
|
2400
2374
|
"type": "option"
|
|
2401
2375
|
},
|
|
2402
|
-
"rainbowUserId": {
|
|
2403
|
-
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2404
|
-
"env": "RAINBOW_USER_ID",
|
|
2405
|
-
"hidden": true,
|
|
2406
|
-
"name": "rainbowUserId",
|
|
2376
|
+
"rainbowUserId": {
|
|
2377
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2378
|
+
"env": "RAINBOW_USER_ID",
|
|
2379
|
+
"hidden": true,
|
|
2380
|
+
"name": "rainbowUserId",
|
|
2381
|
+
"hasDynamicHelp": false,
|
|
2382
|
+
"multiple": false,
|
|
2383
|
+
"type": "option"
|
|
2384
|
+
},
|
|
2385
|
+
"root": {
|
|
2386
|
+
"char": "r",
|
|
2387
|
+
"description": "root directory",
|
|
2388
|
+
"name": "root",
|
|
2389
|
+
"required": false,
|
|
2390
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2391
|
+
"hasDynamicHelp": false,
|
|
2392
|
+
"multiple": false,
|
|
2393
|
+
"type": "option"
|
|
2394
|
+
},
|
|
2395
|
+
"manifest": {
|
|
2396
|
+
"char": "m",
|
|
2397
|
+
"description": "project manifest",
|
|
2398
|
+
"name": "manifest",
|
|
2399
|
+
"required": false,
|
|
2400
|
+
"default": "raindrop.manifest",
|
|
2401
|
+
"hasDynamicHelp": false,
|
|
2402
|
+
"multiple": false,
|
|
2403
|
+
"type": "option"
|
|
2404
|
+
},
|
|
2405
|
+
"application": {
|
|
2406
|
+
"char": "a",
|
|
2407
|
+
"description": "application to stop",
|
|
2408
|
+
"name": "application",
|
|
2409
|
+
"required": false,
|
|
2407
2410
|
"hasDynamicHelp": false,
|
|
2408
2411
|
"multiple": false,
|
|
2409
2412
|
"type": "option"
|
|
2410
2413
|
},
|
|
2411
|
-
"
|
|
2412
|
-
"char": "
|
|
2413
|
-
"description": "
|
|
2414
|
-
"name": "
|
|
2415
|
-
"
|
|
2416
|
-
"type": "boolean"
|
|
2417
|
-
},
|
|
2418
|
-
"output": {
|
|
2419
|
-
"char": "o",
|
|
2420
|
-
"description": "output format",
|
|
2421
|
-
"name": "output",
|
|
2422
|
-
"default": "table",
|
|
2414
|
+
"version": {
|
|
2415
|
+
"char": "v",
|
|
2416
|
+
"description": "application version to start",
|
|
2417
|
+
"name": "version",
|
|
2418
|
+
"required": false,
|
|
2423
2419
|
"hasDynamicHelp": false,
|
|
2424
2420
|
"multiple": false,
|
|
2425
|
-
"options": [
|
|
2426
|
-
"text",
|
|
2427
|
-
"table",
|
|
2428
|
-
"json",
|
|
2429
|
-
"log"
|
|
2430
|
-
],
|
|
2431
2421
|
"type": "option"
|
|
2432
2422
|
},
|
|
2433
2423
|
"impersonate": {
|
|
@@ -2439,22 +2429,11 @@
|
|
|
2439
2429
|
"hasDynamicHelp": false,
|
|
2440
2430
|
"multiple": false,
|
|
2441
2431
|
"type": "option"
|
|
2442
|
-
},
|
|
2443
|
-
"manifest": {
|
|
2444
|
-
"char": "m",
|
|
2445
|
-
"description": "project manifest",
|
|
2446
|
-
"hidden": true,
|
|
2447
|
-
"name": "manifest",
|
|
2448
|
-
"required": false,
|
|
2449
|
-
"default": "raindrop.manifest",
|
|
2450
|
-
"hasDynamicHelp": false,
|
|
2451
|
-
"multiple": false,
|
|
2452
|
-
"type": "option"
|
|
2453
2432
|
}
|
|
2454
2433
|
},
|
|
2455
2434
|
"hasDynamicHelp": false,
|
|
2456
2435
|
"hiddenAliases": [],
|
|
2457
|
-
"id": "build:
|
|
2436
|
+
"id": "build:stop",
|
|
2458
2437
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2459
2438
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2460
2439
|
"pluginType": "core",
|
|
@@ -2518,10 +2497,10 @@
|
|
|
2518
2497
|
"dist",
|
|
2519
2498
|
"commands",
|
|
2520
2499
|
"build",
|
|
2521
|
-
"
|
|
2500
|
+
"stop.js"
|
|
2522
2501
|
]
|
|
2523
2502
|
},
|
|
2524
|
-
"build:
|
|
2503
|
+
"build:unsandbox": {
|
|
2525
2504
|
"aliases": [],
|
|
2526
2505
|
"args": {
|
|
2527
2506
|
"versionId": {
|
|
@@ -2530,7 +2509,7 @@
|
|
|
2530
2509
|
"required": false
|
|
2531
2510
|
}
|
|
2532
2511
|
},
|
|
2533
|
-
"description": "mark a version as
|
|
2512
|
+
"description": "mark a version as unsandboxed in the Raindrop catalog",
|
|
2534
2513
|
"examples": [
|
|
2535
2514
|
"<%= config.bin %> <%= command.id %>\n"
|
|
2536
2515
|
],
|
|
@@ -2612,7 +2591,7 @@
|
|
|
2612
2591
|
},
|
|
2613
2592
|
"hasDynamicHelp": false,
|
|
2614
2593
|
"hiddenAliases": [],
|
|
2615
|
-
"id": "build:
|
|
2594
|
+
"id": "build:unsandbox",
|
|
2616
2595
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2617
2596
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2618
2597
|
"pluginType": "core",
|
|
@@ -2676,15 +2655,15 @@
|
|
|
2676
2655
|
"dist",
|
|
2677
2656
|
"commands",
|
|
2678
2657
|
"build",
|
|
2679
|
-
"
|
|
2658
|
+
"unsandbox.js"
|
|
2680
2659
|
]
|
|
2681
2660
|
},
|
|
2682
|
-
"build:
|
|
2661
|
+
"build:upload": {
|
|
2683
2662
|
"aliases": [],
|
|
2684
2663
|
"args": {},
|
|
2685
|
-
"description": "
|
|
2664
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2686
2665
|
"examples": [
|
|
2687
|
-
"<%= config.bin %> <%= command.id %>
|
|
2666
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2688
2667
|
],
|
|
2689
2668
|
"flags": {
|
|
2690
2669
|
"config": {
|
|
@@ -2763,20 +2742,21 @@
|
|
|
2763
2742
|
"multiple": false,
|
|
2764
2743
|
"type": "option"
|
|
2765
2744
|
},
|
|
2766
|
-
"
|
|
2767
|
-
"char": "
|
|
2768
|
-
"description": "
|
|
2769
|
-
"name": "
|
|
2745
|
+
"output": {
|
|
2746
|
+
"char": "o",
|
|
2747
|
+
"description": "output directory",
|
|
2748
|
+
"name": "output",
|
|
2770
2749
|
"required": false,
|
|
2750
|
+
"default": "dist",
|
|
2771
2751
|
"hasDynamicHelp": false,
|
|
2772
2752
|
"multiple": false,
|
|
2773
2753
|
"type": "option"
|
|
2774
2754
|
},
|
|
2775
|
-
"
|
|
2755
|
+
"versionId": {
|
|
2776
2756
|
"char": "v",
|
|
2777
|
-
"description": "
|
|
2778
|
-
"name": "
|
|
2779
|
-
"required":
|
|
2757
|
+
"description": "version ID",
|
|
2758
|
+
"name": "versionId",
|
|
2759
|
+
"required": true,
|
|
2780
2760
|
"hasDynamicHelp": false,
|
|
2781
2761
|
"multiple": false,
|
|
2782
2762
|
"type": "option"
|
|
@@ -2794,7 +2774,7 @@
|
|
|
2794
2774
|
},
|
|
2795
2775
|
"hasDynamicHelp": false,
|
|
2796
2776
|
"hiddenAliases": [],
|
|
2797
|
-
"id": "build:
|
|
2777
|
+
"id": "build:upload",
|
|
2798
2778
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2799
2779
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2800
2780
|
"pluginType": "core",
|
|
@@ -2858,73 +2838,17 @@
|
|
|
2858
2838
|
"dist",
|
|
2859
2839
|
"commands",
|
|
2860
2840
|
"build",
|
|
2861
|
-
"
|
|
2841
|
+
"upload.js"
|
|
2862
2842
|
]
|
|
2863
2843
|
},
|
|
2864
|
-
"build:
|
|
2844
|
+
"build:validate": {
|
|
2865
2845
|
"aliases": [],
|
|
2866
2846
|
"args": {},
|
|
2867
|
-
"description": "
|
|
2847
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2868
2848
|
"examples": [
|
|
2869
|
-
"<%= config.bin %> <%= command.id %>
|
|
2849
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2870
2850
|
],
|
|
2871
2851
|
"flags": {
|
|
2872
|
-
"config": {
|
|
2873
|
-
"char": "c",
|
|
2874
|
-
"description": "config file",
|
|
2875
|
-
"hidden": true,
|
|
2876
|
-
"name": "config",
|
|
2877
|
-
"required": false,
|
|
2878
|
-
"default": ".raindrop/config.json",
|
|
2879
|
-
"hasDynamicHelp": false,
|
|
2880
|
-
"multiple": false,
|
|
2881
|
-
"type": "option"
|
|
2882
|
-
},
|
|
2883
|
-
"rainbowAuthService": {
|
|
2884
|
-
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
2885
|
-
"hidden": true,
|
|
2886
|
-
"name": "rainbowAuthService",
|
|
2887
|
-
"default": "https://liquidmetal.run/api/connect",
|
|
2888
|
-
"hasDynamicHelp": false,
|
|
2889
|
-
"multiple": false,
|
|
2890
|
-
"type": "option"
|
|
2891
|
-
},
|
|
2892
|
-
"raindropCatalogService": {
|
|
2893
|
-
"description": "URL of the catalog service",
|
|
2894
|
-
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2895
|
-
"hidden": true,
|
|
2896
|
-
"name": "raindropCatalogService",
|
|
2897
|
-
"hasDynamicHelp": false,
|
|
2898
|
-
"multiple": false,
|
|
2899
|
-
"type": "option"
|
|
2900
|
-
},
|
|
2901
|
-
"rainbowAuthToken": {
|
|
2902
|
-
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
2903
|
-
"env": "RAINBOW_AUTH_TOKEN",
|
|
2904
|
-
"hidden": true,
|
|
2905
|
-
"name": "rainbowAuthToken",
|
|
2906
|
-
"hasDynamicHelp": false,
|
|
2907
|
-
"multiple": false,
|
|
2908
|
-
"type": "option"
|
|
2909
|
-
},
|
|
2910
|
-
"rainbowOrganizationId": {
|
|
2911
|
-
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
2912
|
-
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2913
|
-
"hidden": true,
|
|
2914
|
-
"name": "rainbowOrganizationId",
|
|
2915
|
-
"hasDynamicHelp": false,
|
|
2916
|
-
"multiple": false,
|
|
2917
|
-
"type": "option"
|
|
2918
|
-
},
|
|
2919
|
-
"rainbowUserId": {
|
|
2920
|
-
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2921
|
-
"env": "RAINBOW_USER_ID",
|
|
2922
|
-
"hidden": true,
|
|
2923
|
-
"name": "rainbowUserId",
|
|
2924
|
-
"hasDynamicHelp": false,
|
|
2925
|
-
"multiple": false,
|
|
2926
|
-
"type": "option"
|
|
2927
|
-
},
|
|
2928
2852
|
"root": {
|
|
2929
2853
|
"char": "r",
|
|
2930
2854
|
"description": "root directory",
|
|
@@ -2945,53 +2869,23 @@
|
|
|
2945
2869
|
"multiple": false,
|
|
2946
2870
|
"type": "option"
|
|
2947
2871
|
},
|
|
2948
|
-
"
|
|
2949
|
-
"char": "
|
|
2950
|
-
"description": "
|
|
2951
|
-
"
|
|
2952
|
-
"
|
|
2953
|
-
"hasDynamicHelp": false,
|
|
2954
|
-
"multiple": false,
|
|
2955
|
-
"type": "option"
|
|
2956
|
-
},
|
|
2957
|
-
"version": {
|
|
2958
|
-
"char": "v",
|
|
2959
|
-
"description": "application version",
|
|
2960
|
-
"name": "version",
|
|
2872
|
+
"config": {
|
|
2873
|
+
"char": "c",
|
|
2874
|
+
"description": "config file",
|
|
2875
|
+
"hidden": true,
|
|
2876
|
+
"name": "config",
|
|
2961
2877
|
"required": false,
|
|
2878
|
+
"default": ".raindrop/config.json",
|
|
2962
2879
|
"hasDynamicHelp": false,
|
|
2963
2880
|
"multiple": false,
|
|
2964
2881
|
"type": "option"
|
|
2965
2882
|
},
|
|
2966
2883
|
"output": {
|
|
2967
2884
|
"char": "o",
|
|
2968
|
-
"description": "output
|
|
2885
|
+
"description": "output directory",
|
|
2969
2886
|
"name": "output",
|
|
2970
|
-
"default": "table",
|
|
2971
|
-
"hasDynamicHelp": false,
|
|
2972
|
-
"multiple": false,
|
|
2973
|
-
"options": [
|
|
2974
|
-
"watch",
|
|
2975
|
-
"table",
|
|
2976
|
-
"json"
|
|
2977
|
-
],
|
|
2978
|
-
"type": "option"
|
|
2979
|
-
},
|
|
2980
|
-
"sudo": {
|
|
2981
|
-
"char": "s",
|
|
2982
|
-
"description": "superuser mode",
|
|
2983
|
-
"hidden": true,
|
|
2984
|
-
"name": "sudo",
|
|
2985
|
-
"required": false,
|
|
2986
|
-
"allowNo": false,
|
|
2987
|
-
"type": "boolean"
|
|
2988
|
-
},
|
|
2989
|
-
"impersonate": {
|
|
2990
|
-
"char": "i",
|
|
2991
|
-
"description": "impersonate organization",
|
|
2992
|
-
"hidden": true,
|
|
2993
|
-
"name": "impersonate",
|
|
2994
2887
|
"required": false,
|
|
2888
|
+
"default": "dist",
|
|
2995
2889
|
"hasDynamicHelp": false,
|
|
2996
2890
|
"multiple": false,
|
|
2997
2891
|
"type": "option"
|
|
@@ -2999,7 +2893,7 @@
|
|
|
2999
2893
|
},
|
|
3000
2894
|
"hasDynamicHelp": false,
|
|
3001
2895
|
"hiddenAliases": [],
|
|
3002
|
-
"id": "build:
|
|
2896
|
+
"id": "build:validate",
|
|
3003
2897
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3004
2898
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3005
2899
|
"pluginType": "core",
|
|
@@ -3063,15 +2957,21 @@
|
|
|
3063
2957
|
"dist",
|
|
3064
2958
|
"commands",
|
|
3065
2959
|
"build",
|
|
3066
|
-
"
|
|
2960
|
+
"validate.js"
|
|
3067
2961
|
]
|
|
3068
2962
|
},
|
|
3069
|
-
"
|
|
2963
|
+
"object:delete": {
|
|
3070
2964
|
"aliases": [],
|
|
3071
|
-
"args": {
|
|
3072
|
-
|
|
2965
|
+
"args": {
|
|
2966
|
+
"key": {
|
|
2967
|
+
"description": "key/path in the bucket to delete",
|
|
2968
|
+
"name": "key",
|
|
2969
|
+
"required": true
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2972
|
+
"description": "Delete a file from the object storage",
|
|
3073
2973
|
"examples": [
|
|
3074
|
-
"<%= config.bin %>
|
|
2974
|
+
"<%= config.bin %> object delete my-key --bucket my-bucket\nDelete file with key 'my-key' from my-bucket\n"
|
|
3075
2975
|
],
|
|
3076
2976
|
"flags": {
|
|
3077
2977
|
"config": {
|
|
@@ -3130,50 +3030,45 @@
|
|
|
3130
3030
|
"multiple": false,
|
|
3131
3031
|
"type": "option"
|
|
3132
3032
|
},
|
|
3133
|
-
"
|
|
3134
|
-
"char": "
|
|
3135
|
-
"description": "
|
|
3136
|
-
"name": "
|
|
3137
|
-
"required":
|
|
3138
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3139
|
-
"hasDynamicHelp": false,
|
|
3140
|
-
"multiple": false,
|
|
3141
|
-
"type": "option"
|
|
3142
|
-
},
|
|
3143
|
-
"manifest": {
|
|
3144
|
-
"char": "m",
|
|
3145
|
-
"description": "project manifest",
|
|
3146
|
-
"name": "manifest",
|
|
3147
|
-
"required": false,
|
|
3148
|
-
"default": "raindrop.manifest",
|
|
3033
|
+
"bucket": {
|
|
3034
|
+
"char": "b",
|
|
3035
|
+
"description": "bucket name",
|
|
3036
|
+
"name": "bucket",
|
|
3037
|
+
"required": true,
|
|
3149
3038
|
"hasDynamicHelp": false,
|
|
3150
3039
|
"multiple": false,
|
|
3151
3040
|
"type": "option"
|
|
3152
3041
|
},
|
|
3153
|
-
"
|
|
3154
|
-
"char": "
|
|
3155
|
-
"description": "
|
|
3156
|
-
"name": "
|
|
3157
|
-
"
|
|
3042
|
+
"output": {
|
|
3043
|
+
"char": "o",
|
|
3044
|
+
"description": "output format",
|
|
3045
|
+
"name": "output",
|
|
3046
|
+
"default": "text",
|
|
3158
3047
|
"hasDynamicHelp": false,
|
|
3159
3048
|
"multiple": false,
|
|
3049
|
+
"options": [
|
|
3050
|
+
"text",
|
|
3051
|
+
"json"
|
|
3052
|
+
],
|
|
3160
3053
|
"type": "option"
|
|
3161
3054
|
},
|
|
3162
|
-
"
|
|
3163
|
-
"char": "
|
|
3164
|
-
"description": "
|
|
3165
|
-
"
|
|
3055
|
+
"impersonate": {
|
|
3056
|
+
"char": "i",
|
|
3057
|
+
"description": "impersonate organization",
|
|
3058
|
+
"hidden": true,
|
|
3059
|
+
"name": "impersonate",
|
|
3166
3060
|
"required": false,
|
|
3167
3061
|
"hasDynamicHelp": false,
|
|
3168
3062
|
"multiple": false,
|
|
3169
3063
|
"type": "option"
|
|
3170
3064
|
},
|
|
3171
|
-
"
|
|
3172
|
-
"char": "
|
|
3173
|
-
"description": "
|
|
3065
|
+
"manifest": {
|
|
3066
|
+
"char": "m",
|
|
3067
|
+
"description": "project manifest",
|
|
3174
3068
|
"hidden": true,
|
|
3175
|
-
"name": "
|
|
3069
|
+
"name": "manifest",
|
|
3176
3070
|
"required": false,
|
|
3071
|
+
"default": "raindrop.manifest",
|
|
3177
3072
|
"hasDynamicHelp": false,
|
|
3178
3073
|
"multiple": false,
|
|
3179
3074
|
"type": "option"
|
|
@@ -3181,7 +3076,7 @@
|
|
|
3181
3076
|
},
|
|
3182
3077
|
"hasDynamicHelp": false,
|
|
3183
3078
|
"hiddenAliases": [],
|
|
3184
|
-
"id": "
|
|
3079
|
+
"id": "object:delete",
|
|
3185
3080
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3186
3081
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3187
3082
|
"pluginType": "core",
|
|
@@ -3244,22 +3139,28 @@
|
|
|
3244
3139
|
"relativePath": [
|
|
3245
3140
|
"dist",
|
|
3246
3141
|
"commands",
|
|
3247
|
-
"
|
|
3248
|
-
"
|
|
3142
|
+
"object",
|
|
3143
|
+
"delete.js"
|
|
3249
3144
|
]
|
|
3250
3145
|
},
|
|
3251
|
-
"
|
|
3146
|
+
"object:get": {
|
|
3252
3147
|
"aliases": [],
|
|
3253
3148
|
"args": {
|
|
3254
|
-
"
|
|
3255
|
-
"description": "
|
|
3256
|
-
"name": "
|
|
3149
|
+
"key": {
|
|
3150
|
+
"description": "key/path in the bucket",
|
|
3151
|
+
"name": "key",
|
|
3152
|
+
"required": true
|
|
3153
|
+
},
|
|
3154
|
+
"output": {
|
|
3155
|
+
"description": "output file (defaults to key basename)",
|
|
3156
|
+
"name": "output",
|
|
3257
3157
|
"required": false
|
|
3258
3158
|
}
|
|
3259
3159
|
},
|
|
3260
|
-
"description": "
|
|
3160
|
+
"description": "Download a file from the object storage",
|
|
3261
3161
|
"examples": [
|
|
3262
|
-
"<%= config.bin %>
|
|
3162
|
+
"<%= config.bin %> object get my-key --bucket my-bucket\nDownload file with key 'my-key' from my-bucket\n",
|
|
3163
|
+
"<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
|
|
3263
3164
|
],
|
|
3264
3165
|
"flags": {
|
|
3265
3166
|
"config": {
|
|
@@ -3318,6 +3219,29 @@
|
|
|
3318
3219
|
"multiple": false,
|
|
3319
3220
|
"type": "option"
|
|
3320
3221
|
},
|
|
3222
|
+
"bucket": {
|
|
3223
|
+
"char": "b",
|
|
3224
|
+
"description": "bucket name",
|
|
3225
|
+
"name": "bucket",
|
|
3226
|
+
"required": true,
|
|
3227
|
+
"hasDynamicHelp": false,
|
|
3228
|
+
"multiple": false,
|
|
3229
|
+
"type": "option"
|
|
3230
|
+
},
|
|
3231
|
+
"format": {
|
|
3232
|
+
"char": "f",
|
|
3233
|
+
"description": "output format",
|
|
3234
|
+
"name": "format",
|
|
3235
|
+
"default": "file",
|
|
3236
|
+
"hasDynamicHelp": false,
|
|
3237
|
+
"multiple": false,
|
|
3238
|
+
"options": [
|
|
3239
|
+
"file",
|
|
3240
|
+
"stdout",
|
|
3241
|
+
"json"
|
|
3242
|
+
],
|
|
3243
|
+
"type": "option"
|
|
3244
|
+
},
|
|
3321
3245
|
"impersonate": {
|
|
3322
3246
|
"char": "i",
|
|
3323
3247
|
"description": "impersonate organization",
|
|
@@ -3329,8 +3253,11 @@
|
|
|
3329
3253
|
"type": "option"
|
|
3330
3254
|
},
|
|
3331
3255
|
"manifest": {
|
|
3256
|
+
"char": "m",
|
|
3332
3257
|
"description": "project manifest",
|
|
3258
|
+
"hidden": true,
|
|
3333
3259
|
"name": "manifest",
|
|
3260
|
+
"required": false,
|
|
3334
3261
|
"default": "raindrop.manifest",
|
|
3335
3262
|
"hasDynamicHelp": false,
|
|
3336
3263
|
"multiple": false,
|
|
@@ -3339,7 +3266,7 @@
|
|
|
3339
3266
|
},
|
|
3340
3267
|
"hasDynamicHelp": false,
|
|
3341
3268
|
"hiddenAliases": [],
|
|
3342
|
-
"id": "
|
|
3269
|
+
"id": "object:get",
|
|
3343
3270
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3344
3271
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3345
3272
|
"pluginType": "core",
|
|
@@ -3402,16 +3329,16 @@
|
|
|
3402
3329
|
"relativePath": [
|
|
3403
3330
|
"dist",
|
|
3404
3331
|
"commands",
|
|
3405
|
-
"
|
|
3406
|
-
"
|
|
3332
|
+
"object",
|
|
3333
|
+
"get.js"
|
|
3407
3334
|
]
|
|
3408
3335
|
},
|
|
3409
|
-
"
|
|
3336
|
+
"object:list": {
|
|
3410
3337
|
"aliases": [],
|
|
3411
3338
|
"args": {},
|
|
3412
|
-
"description": "
|
|
3339
|
+
"description": "List objects in a bucket",
|
|
3413
3340
|
"examples": [
|
|
3414
|
-
"<%= config.bin %>
|
|
3341
|
+
"<%= config.bin %> object list --bucket my-bucket\nList all objects in my-bucket\n"
|
|
3415
3342
|
],
|
|
3416
3343
|
"flags": {
|
|
3417
3344
|
"config": {
|
|
@@ -3470,43 +3397,27 @@
|
|
|
3470
3397
|
"multiple": false,
|
|
3471
3398
|
"type": "option"
|
|
3472
3399
|
},
|
|
3473
|
-
"
|
|
3474
|
-
"char": "
|
|
3475
|
-
"description": "
|
|
3476
|
-
"name": "
|
|
3477
|
-
"required":
|
|
3478
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3479
|
-
"hasDynamicHelp": false,
|
|
3480
|
-
"multiple": false,
|
|
3481
|
-
"type": "option"
|
|
3482
|
-
},
|
|
3483
|
-
"manifest": {
|
|
3484
|
-
"char": "m",
|
|
3485
|
-
"description": "project manifest",
|
|
3486
|
-
"name": "manifest",
|
|
3487
|
-
"required": false,
|
|
3488
|
-
"default": "raindrop.manifest",
|
|
3400
|
+
"bucket": {
|
|
3401
|
+
"char": "b",
|
|
3402
|
+
"description": "bucket name",
|
|
3403
|
+
"name": "bucket",
|
|
3404
|
+
"required": true,
|
|
3489
3405
|
"hasDynamicHelp": false,
|
|
3490
3406
|
"multiple": false,
|
|
3491
3407
|
"type": "option"
|
|
3492
3408
|
},
|
|
3493
3409
|
"output": {
|
|
3494
3410
|
"char": "o",
|
|
3495
|
-
"description": "output
|
|
3411
|
+
"description": "output format",
|
|
3496
3412
|
"name": "output",
|
|
3497
|
-
"
|
|
3498
|
-
"default": "dist",
|
|
3499
|
-
"hasDynamicHelp": false,
|
|
3500
|
-
"multiple": false,
|
|
3501
|
-
"type": "option"
|
|
3502
|
-
},
|
|
3503
|
-
"versionId": {
|
|
3504
|
-
"char": "v",
|
|
3505
|
-
"description": "version ID",
|
|
3506
|
-
"name": "versionId",
|
|
3507
|
-
"required": true,
|
|
3413
|
+
"default": "text",
|
|
3508
3414
|
"hasDynamicHelp": false,
|
|
3509
3415
|
"multiple": false,
|
|
3416
|
+
"options": [
|
|
3417
|
+
"text",
|
|
3418
|
+
"json",
|
|
3419
|
+
"table"
|
|
3420
|
+
],
|
|
3510
3421
|
"type": "option"
|
|
3511
3422
|
},
|
|
3512
3423
|
"impersonate": {
|
|
@@ -3518,11 +3429,22 @@
|
|
|
3518
3429
|
"hasDynamicHelp": false,
|
|
3519
3430
|
"multiple": false,
|
|
3520
3431
|
"type": "option"
|
|
3432
|
+
},
|
|
3433
|
+
"manifest": {
|
|
3434
|
+
"char": "m",
|
|
3435
|
+
"description": "project manifest",
|
|
3436
|
+
"hidden": true,
|
|
3437
|
+
"name": "manifest",
|
|
3438
|
+
"required": false,
|
|
3439
|
+
"default": "raindrop.manifest",
|
|
3440
|
+
"hasDynamicHelp": false,
|
|
3441
|
+
"multiple": false,
|
|
3442
|
+
"type": "option"
|
|
3521
3443
|
}
|
|
3522
3444
|
},
|
|
3523
3445
|
"hasDynamicHelp": false,
|
|
3524
3446
|
"hiddenAliases": [],
|
|
3525
|
-
"id": "
|
|
3447
|
+
"id": "object:list",
|
|
3526
3448
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3527
3449
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3528
3450
|
"pluginType": "core",
|
|
@@ -3585,55 +3507,133 @@
|
|
|
3585
3507
|
"relativePath": [
|
|
3586
3508
|
"dist",
|
|
3587
3509
|
"commands",
|
|
3588
|
-
"
|
|
3589
|
-
"
|
|
3510
|
+
"object",
|
|
3511
|
+
"list.js"
|
|
3590
3512
|
]
|
|
3591
3513
|
},
|
|
3592
|
-
"
|
|
3514
|
+
"object:put": {
|
|
3593
3515
|
"aliases": [],
|
|
3594
|
-
"args": {
|
|
3595
|
-
|
|
3516
|
+
"args": {
|
|
3517
|
+
"file": {
|
|
3518
|
+
"description": "file to upload",
|
|
3519
|
+
"name": "file",
|
|
3520
|
+
"required": true
|
|
3521
|
+
},
|
|
3522
|
+
"key": {
|
|
3523
|
+
"description": "key/path in the bucket",
|
|
3524
|
+
"name": "key",
|
|
3525
|
+
"required": true
|
|
3526
|
+
}
|
|
3527
|
+
},
|
|
3528
|
+
"description": "Upload a file to the object storage",
|
|
3596
3529
|
"examples": [
|
|
3597
|
-
"<%= config.bin %>
|
|
3530
|
+
"<%= config.bin %> object put ./myfile.txt my-key --bucket my-bucket\nUpload myfile.txt to my-bucket with key 'my-key'\n"
|
|
3598
3531
|
],
|
|
3599
3532
|
"flags": {
|
|
3600
|
-
"
|
|
3601
|
-
"char": "
|
|
3602
|
-
"description": "
|
|
3603
|
-
"
|
|
3533
|
+
"config": {
|
|
3534
|
+
"char": "c",
|
|
3535
|
+
"description": "config file",
|
|
3536
|
+
"hidden": true,
|
|
3537
|
+
"name": "config",
|
|
3604
3538
|
"required": false,
|
|
3605
|
-
"default": "/
|
|
3539
|
+
"default": ".raindrop/config.json",
|
|
3606
3540
|
"hasDynamicHelp": false,
|
|
3607
3541
|
"multiple": false,
|
|
3608
3542
|
"type": "option"
|
|
3609
3543
|
},
|
|
3610
|
-
"
|
|
3611
|
-
"
|
|
3612
|
-
"
|
|
3613
|
-
"name": "
|
|
3614
|
-
"
|
|
3615
|
-
"default": "raindrop.manifest",
|
|
3544
|
+
"rainbowAuthService": {
|
|
3545
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
3546
|
+
"hidden": true,
|
|
3547
|
+
"name": "rainbowAuthService",
|
|
3548
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
3616
3549
|
"hasDynamicHelp": false,
|
|
3617
3550
|
"multiple": false,
|
|
3618
3551
|
"type": "option"
|
|
3619
3552
|
},
|
|
3620
|
-
"
|
|
3621
|
-
"
|
|
3622
|
-
"
|
|
3553
|
+
"raindropCatalogService": {
|
|
3554
|
+
"description": "URL of the catalog service",
|
|
3555
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
3623
3556
|
"hidden": true,
|
|
3624
|
-
"name": "
|
|
3557
|
+
"name": "raindropCatalogService",
|
|
3558
|
+
"hasDynamicHelp": false,
|
|
3559
|
+
"multiple": false,
|
|
3560
|
+
"type": "option"
|
|
3561
|
+
},
|
|
3562
|
+
"rainbowAuthToken": {
|
|
3563
|
+
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
3564
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
3565
|
+
"hidden": true,
|
|
3566
|
+
"name": "rainbowAuthToken",
|
|
3567
|
+
"hasDynamicHelp": false,
|
|
3568
|
+
"multiple": false,
|
|
3569
|
+
"type": "option"
|
|
3570
|
+
},
|
|
3571
|
+
"rainbowOrganizationId": {
|
|
3572
|
+
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
3573
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
3574
|
+
"hidden": true,
|
|
3575
|
+
"name": "rainbowOrganizationId",
|
|
3576
|
+
"hasDynamicHelp": false,
|
|
3577
|
+
"multiple": false,
|
|
3578
|
+
"type": "option"
|
|
3579
|
+
},
|
|
3580
|
+
"rainbowUserId": {
|
|
3581
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
3582
|
+
"env": "RAINBOW_USER_ID",
|
|
3583
|
+
"hidden": true,
|
|
3584
|
+
"name": "rainbowUserId",
|
|
3585
|
+
"hasDynamicHelp": false,
|
|
3586
|
+
"multiple": false,
|
|
3587
|
+
"type": "option"
|
|
3588
|
+
},
|
|
3589
|
+
"bucket": {
|
|
3590
|
+
"char": "b",
|
|
3591
|
+
"description": "bucket name",
|
|
3592
|
+
"name": "bucket",
|
|
3593
|
+
"required": true,
|
|
3594
|
+
"hasDynamicHelp": false,
|
|
3595
|
+
"multiple": false,
|
|
3596
|
+
"type": "option"
|
|
3597
|
+
},
|
|
3598
|
+
"contentType": {
|
|
3599
|
+
"char": "t",
|
|
3600
|
+
"description": "content type of the file",
|
|
3601
|
+
"name": "contentType",
|
|
3625
3602
|
"required": false,
|
|
3626
|
-
"default": ".raindrop/config.json",
|
|
3627
3603
|
"hasDynamicHelp": false,
|
|
3628
3604
|
"multiple": false,
|
|
3629
3605
|
"type": "option"
|
|
3630
3606
|
},
|
|
3631
3607
|
"output": {
|
|
3632
3608
|
"char": "o",
|
|
3633
|
-
"description": "output
|
|
3609
|
+
"description": "output format",
|
|
3634
3610
|
"name": "output",
|
|
3611
|
+
"default": "text",
|
|
3612
|
+
"hasDynamicHelp": false,
|
|
3613
|
+
"multiple": false,
|
|
3614
|
+
"options": [
|
|
3615
|
+
"text",
|
|
3616
|
+
"json"
|
|
3617
|
+
],
|
|
3618
|
+
"type": "option"
|
|
3619
|
+
},
|
|
3620
|
+
"impersonate": {
|
|
3621
|
+
"char": "i",
|
|
3622
|
+
"description": "impersonate organization",
|
|
3623
|
+
"hidden": true,
|
|
3624
|
+
"name": "impersonate",
|
|
3635
3625
|
"required": false,
|
|
3636
|
-
"
|
|
3626
|
+
"hasDynamicHelp": false,
|
|
3627
|
+
"multiple": false,
|
|
3628
|
+
"type": "option"
|
|
3629
|
+
},
|
|
3630
|
+
"manifest": {
|
|
3631
|
+
"char": "m",
|
|
3632
|
+
"description": "project manifest",
|
|
3633
|
+
"hidden": true,
|
|
3634
|
+
"name": "manifest",
|
|
3635
|
+
"required": false,
|
|
3636
|
+
"default": "raindrop.manifest",
|
|
3637
3637
|
"hasDynamicHelp": false,
|
|
3638
3638
|
"multiple": false,
|
|
3639
3639
|
"type": "option"
|
|
@@ -3641,7 +3641,7 @@
|
|
|
3641
3641
|
},
|
|
3642
3642
|
"hasDynamicHelp": false,
|
|
3643
3643
|
"hiddenAliases": [],
|
|
3644
|
-
"id": "
|
|
3644
|
+
"id": "object:put",
|
|
3645
3645
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3646
3646
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3647
3647
|
"pluginType": "core",
|
|
@@ -3704,8 +3704,8 @@
|
|
|
3704
3704
|
"relativePath": [
|
|
3705
3705
|
"dist",
|
|
3706
3706
|
"commands",
|
|
3707
|
-
"
|
|
3708
|
-
"
|
|
3707
|
+
"object",
|
|
3708
|
+
"put.js"
|
|
3709
3709
|
]
|
|
3710
3710
|
},
|
|
3711
3711
|
"query:chunk-search": {
|
|
@@ -4825,5 +4825,5 @@
|
|
|
4825
4825
|
]
|
|
4826
4826
|
}
|
|
4827
4827
|
},
|
|
4828
|
-
"version": "0.2.
|
|
4828
|
+
"version": "0.2.9"
|
|
4829
4829
|
}
|