@liquidmetal-ai/raindrop 0.3.1 → 0.3.3
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 +70 -39
- package/dist/base-command.d.ts +5 -5
- package/dist/base-command.d.ts.map +1 -1
- package/dist/commands/build/branch.d.ts.map +1 -1
- package/dist/commands/build/branch.js +15 -2
- package/dist/commands/build/clone.d.ts +25 -0
- package/dist/commands/build/clone.d.ts.map +1 -0
- package/dist/commands/build/clone.js +146 -0
- package/dist/commands/build/delete.js +1 -1
- package/dist/commands/build/env/get.js +1 -1
- package/dist/commands/build/env/set.js +2 -2
- package/dist/commands/build/find.d.ts +2 -0
- package/dist/commands/build/find.d.ts.map +1 -1
- package/dist/commands/build/find.js +24 -18
- package/dist/commands/build/sandbox.d.ts.map +1 -1
- package/dist/commands/build/sandbox.js +18 -26
- package/dist/commands/build/start.js +1 -1
- package/dist/commands/build/status.js +2 -2
- package/dist/commands/build/stop.js +1 -1
- package/dist/commands/build/unsandbox.d.ts.map +1 -1
- package/dist/commands/build/unsandbox.js +18 -26
- package/dist/commands/build/upload.js +2 -2
- package/dist/commands/object/list.d.ts.map +1 -1
- package/dist/commands/object/list.js +4 -2
- package/dist/commands/query/chunk-search.d.ts.map +1 -1
- package/dist/commands/query/chunk-search.js +5 -2
- package/dist/commands/query/search.d.ts +1 -0
- package/dist/commands/query/search.d.ts.map +1 -1
- package/dist/commands/query/search.js +20 -4
- package/dist/deploy.d.ts +11 -0
- package/dist/deploy.d.ts.map +1 -1
- package/dist/deploy.js +32 -0
- package/dist/index.d.ts +6 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/strict-client.d.ts +37 -0
- package/dist/strict-client.d.ts.map +1 -0
- package/dist/strict-client.js +10 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +957 -845
- package/package.json +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,17 +472,46 @@
|
|
|
472
472
|
"multiple": false,
|
|
473
473
|
"type": "option"
|
|
474
474
|
},
|
|
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",
|
|
491
|
+
"hasDynamicHelp": false,
|
|
492
|
+
"multiple": false,
|
|
493
|
+
"type": "option"
|
|
494
|
+
},
|
|
475
495
|
"output": {
|
|
476
496
|
"char": "o",
|
|
477
|
-
"description": "output
|
|
497
|
+
"description": "output directory",
|
|
478
498
|
"name": "output",
|
|
479
|
-
"
|
|
499
|
+
"required": false,
|
|
500
|
+
"default": "dist",
|
|
480
501
|
"hasDynamicHelp": false,
|
|
481
502
|
"multiple": false,
|
|
482
|
-
"
|
|
483
|
-
|
|
484
|
-
|
|
503
|
+
"type": "option"
|
|
504
|
+
},
|
|
505
|
+
"versionId": {
|
|
506
|
+
"aliases": [
|
|
507
|
+
"version"
|
|
485
508
|
],
|
|
509
|
+
"char": "p",
|
|
510
|
+
"description": "branch from this version",
|
|
511
|
+
"name": "versionId",
|
|
512
|
+
"required": false,
|
|
513
|
+
"hasDynamicHelp": false,
|
|
514
|
+
"multiple": false,
|
|
486
515
|
"type": "option"
|
|
487
516
|
},
|
|
488
517
|
"impersonate": {
|
|
@@ -495,21 +524,24 @@
|
|
|
495
524
|
"multiple": false,
|
|
496
525
|
"type": "option"
|
|
497
526
|
},
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"hidden": true,
|
|
502
|
-
"name": "manifest",
|
|
527
|
+
"start": {
|
|
528
|
+
"description": "start the application after deploying",
|
|
529
|
+
"name": "start",
|
|
503
530
|
"required": false,
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
|
|
507
|
-
|
|
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"
|
|
508
540
|
}
|
|
509
541
|
},
|
|
510
542
|
"hasDynamicHelp": false,
|
|
511
543
|
"hiddenAliases": [],
|
|
512
|
-
"id": "
|
|
544
|
+
"id": "build:branch",
|
|
513
545
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
514
546
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
515
547
|
"pluginType": "core",
|
|
@@ -572,23 +604,22 @@
|
|
|
572
604
|
"relativePath": [
|
|
573
605
|
"dist",
|
|
574
606
|
"commands",
|
|
575
|
-
"
|
|
576
|
-
"
|
|
607
|
+
"build",
|
|
608
|
+
"branch.js"
|
|
577
609
|
]
|
|
578
610
|
},
|
|
579
|
-
"
|
|
611
|
+
"build:checkout": {
|
|
580
612
|
"aliases": [],
|
|
581
613
|
"args": {
|
|
582
|
-
"
|
|
583
|
-
"description": "
|
|
584
|
-
"name": "
|
|
614
|
+
"version": {
|
|
615
|
+
"description": "version id",
|
|
616
|
+
"name": "version",
|
|
585
617
|
"required": false
|
|
586
618
|
}
|
|
587
619
|
},
|
|
588
|
-
"description": "
|
|
620
|
+
"description": "switch the current context to a specific version",
|
|
589
621
|
"examples": [
|
|
590
|
-
"<%= config.bin %>
|
|
591
|
-
"<%= config.bin %> query search --requestId 01HNG4V2RJXS5T --page 2\nGet page 2 of previous search results.\n"
|
|
622
|
+
"<%= config.bin %> <%= command.id %>\nCurrently on version: 01jac6p20m4gahn1kaa2mhm2js\n\n<%= config.bin %> <%= command.id %> 01jux6z20m4gbhn5kaa4mcm2jr\nSwitched to version: 01jux6z20m4gbhn5kaa4mcm2jr\n"
|
|
592
623
|
],
|
|
593
624
|
"flags": {
|
|
594
625
|
"config": {
|
|
@@ -647,61 +678,117 @@
|
|
|
647
678
|
"multiple": false,
|
|
648
679
|
"type": "option"
|
|
649
680
|
},
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
681
|
+
"output": {
|
|
682
|
+
"char": "o",
|
|
683
|
+
"description": "output format",
|
|
684
|
+
"name": "output",
|
|
653
685
|
"required": false,
|
|
686
|
+
"default": "text",
|
|
654
687
|
"hasDynamicHelp": false,
|
|
655
688
|
"multiple": false,
|
|
656
689
|
"type": "option"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"hasDynamicHelp": false,
|
|
693
|
+
"hiddenAliases": [],
|
|
694
|
+
"id": "build:checkout",
|
|
695
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
696
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
697
|
+
"pluginType": "core",
|
|
698
|
+
"strict": true,
|
|
699
|
+
"enableJsonFlag": false,
|
|
700
|
+
"HIDDEN_FLAGS": {
|
|
701
|
+
"config": {
|
|
702
|
+
"char": "c",
|
|
703
|
+
"description": "config file",
|
|
704
|
+
"required": false,
|
|
705
|
+
"hidden": true,
|
|
706
|
+
"default": ".raindrop/config.json",
|
|
707
|
+
"input": [],
|
|
708
|
+
"multiple": false,
|
|
709
|
+
"type": "option"
|
|
657
710
|
},
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"hasDynamicHelp": false,
|
|
711
|
+
"rainbowAuthService": {
|
|
712
|
+
"default": "https://raindrop.liquidmetal.run/",
|
|
713
|
+
"hidden": true,
|
|
714
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
715
|
+
"input": [],
|
|
664
716
|
"multiple": false,
|
|
665
717
|
"type": "option"
|
|
666
718
|
},
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"description": "
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"hasDynamicHelp": false,
|
|
719
|
+
"raindropCatalogService": {
|
|
720
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
721
|
+
"description": "URL of the catalog service",
|
|
722
|
+
"hidden": true,
|
|
723
|
+
"input": [],
|
|
673
724
|
"multiple": false,
|
|
674
|
-
"options": [
|
|
675
|
-
"text",
|
|
676
|
-
"json"
|
|
677
|
-
],
|
|
678
725
|
"type": "option"
|
|
679
726
|
},
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"description": "
|
|
727
|
+
"rainbowAuthToken": {
|
|
728
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
729
|
+
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
683
730
|
"hidden": true,
|
|
684
|
-
"
|
|
685
|
-
"required": false,
|
|
686
|
-
"hasDynamicHelp": false,
|
|
731
|
+
"input": [],
|
|
687
732
|
"multiple": false,
|
|
688
733
|
"type": "option"
|
|
689
734
|
},
|
|
690
|
-
"
|
|
691
|
-
"
|
|
692
|
-
"description": "
|
|
735
|
+
"rainbowOrganizationId": {
|
|
736
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
737
|
+
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
693
738
|
"hidden": true,
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
|
|
739
|
+
"input": [],
|
|
740
|
+
"multiple": false,
|
|
741
|
+
"type": "option"
|
|
742
|
+
},
|
|
743
|
+
"rainbowUserId": {
|
|
744
|
+
"env": "RAINBOW_USER_ID",
|
|
745
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
746
|
+
"hidden": true,
|
|
747
|
+
"input": [],
|
|
698
748
|
"multiple": false,
|
|
699
749
|
"type": "option"
|
|
700
750
|
}
|
|
701
751
|
},
|
|
752
|
+
"baseArgs": {},
|
|
753
|
+
"isESM": true,
|
|
754
|
+
"relativePath": [
|
|
755
|
+
"dist",
|
|
756
|
+
"commands",
|
|
757
|
+
"build",
|
|
758
|
+
"checkout.js"
|
|
759
|
+
]
|
|
760
|
+
},
|
|
761
|
+
"build:clone": {
|
|
762
|
+
"aliases": [],
|
|
763
|
+
"args": {
|
|
764
|
+
"id": {
|
|
765
|
+
"description": "liquidmetal project ID to clone (e.g., liquidmetal/smartbucket)",
|
|
766
|
+
"name": "id",
|
|
767
|
+
"required": true
|
|
768
|
+
},
|
|
769
|
+
"path": {
|
|
770
|
+
"default": ".",
|
|
771
|
+
"description": "Path to initialize the project in",
|
|
772
|
+
"name": "path",
|
|
773
|
+
"required": false
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"description": "clone a LiquidMetal.AI project",
|
|
777
|
+
"examples": [
|
|
778
|
+
"<%= config.bin %> <%= command.id %> .\nClone a project in the current directory.\n",
|
|
779
|
+
"<%= config.bin %> <%= command.id %> <%= config.path %>\nClone a project in the specified directory.\n"
|
|
780
|
+
],
|
|
781
|
+
"flags": {
|
|
782
|
+
"overwrite": {
|
|
783
|
+
"description": "Overwrite existing files",
|
|
784
|
+
"name": "overwrite",
|
|
785
|
+
"allowNo": false,
|
|
786
|
+
"type": "boolean"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
702
789
|
"hasDynamicHelp": false,
|
|
703
790
|
"hiddenAliases": [],
|
|
704
|
-
"id": "
|
|
791
|
+
"id": "build:clone",
|
|
705
792
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
706
793
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
707
794
|
"pluginType": "core",
|
|
@@ -764,22 +851,22 @@
|
|
|
764
851
|
"relativePath": [
|
|
765
852
|
"dist",
|
|
766
853
|
"commands",
|
|
767
|
-
"
|
|
768
|
-
"
|
|
854
|
+
"build",
|
|
855
|
+
"clone.js"
|
|
769
856
|
]
|
|
770
857
|
},
|
|
771
|
-
"
|
|
858
|
+
"build:delete": {
|
|
772
859
|
"aliases": [],
|
|
773
860
|
"args": {
|
|
774
|
-
"
|
|
775
|
-
"description": "
|
|
776
|
-
"name": "
|
|
777
|
-
"required":
|
|
861
|
+
"application": {
|
|
862
|
+
"description": "application name",
|
|
863
|
+
"name": "application",
|
|
864
|
+
"required": false
|
|
778
865
|
}
|
|
779
866
|
},
|
|
780
|
-
"description": "
|
|
867
|
+
"description": "delete Raindrop applications",
|
|
781
868
|
"examples": [
|
|
782
|
-
"<%= config.bin %>
|
|
869
|
+
"<%= config.bin %> <%= command.id %> .\nDeleted (application) at version (version)\n"
|
|
783
870
|
],
|
|
784
871
|
"flags": {
|
|
785
872
|
"config": {
|
|
@@ -838,11 +925,22 @@
|
|
|
838
925
|
"multiple": false,
|
|
839
926
|
"type": "option"
|
|
840
927
|
},
|
|
841
|
-
"
|
|
842
|
-
"char": "
|
|
843
|
-
"description": "
|
|
844
|
-
"name": "
|
|
845
|
-
"required":
|
|
928
|
+
"root": {
|
|
929
|
+
"char": "r",
|
|
930
|
+
"description": "root directory",
|
|
931
|
+
"name": "root",
|
|
932
|
+
"required": false,
|
|
933
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
934
|
+
"hasDynamicHelp": false,
|
|
935
|
+
"multiple": false,
|
|
936
|
+
"type": "option"
|
|
937
|
+
},
|
|
938
|
+
"manifest": {
|
|
939
|
+
"char": "m",
|
|
940
|
+
"description": "project manifest",
|
|
941
|
+
"name": "manifest",
|
|
942
|
+
"required": false,
|
|
943
|
+
"default": "raindrop.manifest",
|
|
846
944
|
"hasDynamicHelp": false,
|
|
847
945
|
"multiple": false,
|
|
848
946
|
"type": "option"
|
|
@@ -851,32 +949,45 @@
|
|
|
851
949
|
"char": "o",
|
|
852
950
|
"description": "output format",
|
|
853
951
|
"name": "output",
|
|
854
|
-
"default": "
|
|
952
|
+
"default": "table",
|
|
855
953
|
"hasDynamicHelp": false,
|
|
856
954
|
"multiple": false,
|
|
857
955
|
"options": [
|
|
858
956
|
"text",
|
|
957
|
+
"table",
|
|
859
958
|
"json"
|
|
860
959
|
],
|
|
861
960
|
"type": "option"
|
|
862
961
|
},
|
|
863
|
-
"
|
|
864
|
-
"char": "
|
|
865
|
-
"description": "
|
|
866
|
-
"
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
"
|
|
870
|
-
"
|
|
871
|
-
"
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
962
|
+
"version": {
|
|
963
|
+
"char": "v",
|
|
964
|
+
"description": "application version to delete",
|
|
965
|
+
"exclusive": [
|
|
966
|
+
"all"
|
|
967
|
+
],
|
|
968
|
+
"name": "version",
|
|
969
|
+
"required": false,
|
|
970
|
+
"hasDynamicHelp": false,
|
|
971
|
+
"multiple": false,
|
|
972
|
+
"type": "option"
|
|
973
|
+
},
|
|
974
|
+
"all": {
|
|
975
|
+
"char": "a",
|
|
976
|
+
"description": "delete all application versions",
|
|
977
|
+
"exclusive": [
|
|
978
|
+
"version"
|
|
979
|
+
],
|
|
980
|
+
"name": "all",
|
|
981
|
+
"required": false,
|
|
982
|
+
"allowNo": false,
|
|
983
|
+
"type": "boolean"
|
|
984
|
+
},
|
|
985
|
+
"impersonate": {
|
|
986
|
+
"char": "i",
|
|
987
|
+
"description": "impersonate organization",
|
|
876
988
|
"hidden": true,
|
|
877
|
-
"name": "
|
|
989
|
+
"name": "impersonate",
|
|
878
990
|
"required": false,
|
|
879
|
-
"default": "raindrop.manifest",
|
|
880
991
|
"hasDynamicHelp": false,
|
|
881
992
|
"multiple": false,
|
|
882
993
|
"type": "option"
|
|
@@ -884,7 +995,7 @@
|
|
|
884
995
|
},
|
|
885
996
|
"hasDynamicHelp": false,
|
|
886
997
|
"hiddenAliases": [],
|
|
887
|
-
"id": "
|
|
998
|
+
"id": "build:delete",
|
|
888
999
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
889
1000
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
890
1001
|
"pluginType": "core",
|
|
@@ -947,28 +1058,16 @@
|
|
|
947
1058
|
"relativePath": [
|
|
948
1059
|
"dist",
|
|
949
1060
|
"commands",
|
|
950
|
-
"
|
|
1061
|
+
"build",
|
|
951
1062
|
"delete.js"
|
|
952
1063
|
]
|
|
953
1064
|
},
|
|
954
|
-
"
|
|
1065
|
+
"build:deploy": {
|
|
955
1066
|
"aliases": [],
|
|
956
|
-
"args": {
|
|
957
|
-
|
|
958
|
-
"description": "key/path in the bucket",
|
|
959
|
-
"name": "key",
|
|
960
|
-
"required": true
|
|
961
|
-
},
|
|
962
|
-
"output": {
|
|
963
|
-
"description": "output file (defaults to key basename)",
|
|
964
|
-
"name": "output",
|
|
965
|
-
"required": false
|
|
966
|
-
}
|
|
967
|
-
},
|
|
968
|
-
"description": "Download a file from the object storage",
|
|
1067
|
+
"args": {},
|
|
1068
|
+
"description": "deploy a Raindrop application",
|
|
969
1069
|
"examples": [
|
|
970
|
-
"<%= config.bin %>
|
|
971
|
-
"<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
|
|
1070
|
+
"<%= config.bin %> <%= command.id %> .\nDeploy a Raindrop application version.\n"
|
|
972
1071
|
],
|
|
973
1072
|
"flags": {
|
|
974
1073
|
"config": {
|
|
@@ -1027,27 +1126,46 @@
|
|
|
1027
1126
|
"multiple": false,
|
|
1028
1127
|
"type": "option"
|
|
1029
1128
|
},
|
|
1030
|
-
"
|
|
1031
|
-
"char": "
|
|
1032
|
-
"description": "
|
|
1033
|
-
"name": "
|
|
1034
|
-
"required":
|
|
1129
|
+
"root": {
|
|
1130
|
+
"char": "r",
|
|
1131
|
+
"description": "root directory",
|
|
1132
|
+
"name": "root",
|
|
1133
|
+
"required": false,
|
|
1134
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1035
1135
|
"hasDynamicHelp": false,
|
|
1036
1136
|
"multiple": false,
|
|
1037
1137
|
"type": "option"
|
|
1038
1138
|
},
|
|
1039
|
-
"
|
|
1040
|
-
"char": "
|
|
1041
|
-
"description": "
|
|
1042
|
-
"name": "
|
|
1043
|
-
"
|
|
1139
|
+
"manifest": {
|
|
1140
|
+
"char": "m",
|
|
1141
|
+
"description": "project manifest",
|
|
1142
|
+
"name": "manifest",
|
|
1143
|
+
"required": false,
|
|
1144
|
+
"default": "raindrop.manifest",
|
|
1044
1145
|
"hasDynamicHelp": false,
|
|
1045
1146
|
"multiple": false,
|
|
1046
|
-
"
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1147
|
+
"type": "option"
|
|
1148
|
+
},
|
|
1149
|
+
"output": {
|
|
1150
|
+
"char": "o",
|
|
1151
|
+
"description": "output directory",
|
|
1152
|
+
"name": "output",
|
|
1153
|
+
"required": false,
|
|
1154
|
+
"default": "dist",
|
|
1155
|
+
"hasDynamicHelp": false,
|
|
1156
|
+
"multiple": false,
|
|
1157
|
+
"type": "option"
|
|
1158
|
+
},
|
|
1159
|
+
"versionId": {
|
|
1160
|
+
"aliases": [
|
|
1161
|
+
"version"
|
|
1050
1162
|
],
|
|
1163
|
+
"char": "v",
|
|
1164
|
+
"description": "version ID",
|
|
1165
|
+
"name": "versionId",
|
|
1166
|
+
"required": false,
|
|
1167
|
+
"hasDynamicHelp": false,
|
|
1168
|
+
"multiple": false,
|
|
1051
1169
|
"type": "option"
|
|
1052
1170
|
},
|
|
1053
1171
|
"impersonate": {
|
|
@@ -1060,21 +1178,41 @@
|
|
|
1060
1178
|
"multiple": false,
|
|
1061
1179
|
"type": "option"
|
|
1062
1180
|
},
|
|
1063
|
-
"
|
|
1064
|
-
"char": "
|
|
1065
|
-
"description": "
|
|
1066
|
-
"
|
|
1067
|
-
"
|
|
1181
|
+
"start": {
|
|
1182
|
+
"char": "s",
|
|
1183
|
+
"description": "start the application after deploying",
|
|
1184
|
+
"name": "start",
|
|
1185
|
+
"required": false,
|
|
1186
|
+
"allowNo": false,
|
|
1187
|
+
"type": "boolean"
|
|
1188
|
+
},
|
|
1189
|
+
"resume": {
|
|
1190
|
+
"description": "resume a deployment",
|
|
1191
|
+
"name": "resume",
|
|
1192
|
+
"required": false,
|
|
1193
|
+
"allowNo": false,
|
|
1194
|
+
"type": "boolean"
|
|
1195
|
+
},
|
|
1196
|
+
"lock": {
|
|
1197
|
+
"description": "override lock ID to resume deployment",
|
|
1198
|
+
"name": "lock",
|
|
1068
1199
|
"required": false,
|
|
1069
|
-
"default": "raindrop.manifest",
|
|
1070
1200
|
"hasDynamicHelp": false,
|
|
1071
1201
|
"multiple": false,
|
|
1072
1202
|
"type": "option"
|
|
1203
|
+
},
|
|
1204
|
+
"amend": {
|
|
1205
|
+
"char": "a",
|
|
1206
|
+
"description": "amend an existing application",
|
|
1207
|
+
"name": "amend",
|
|
1208
|
+
"required": false,
|
|
1209
|
+
"allowNo": false,
|
|
1210
|
+
"type": "boolean"
|
|
1073
1211
|
}
|
|
1074
1212
|
},
|
|
1075
1213
|
"hasDynamicHelp": false,
|
|
1076
1214
|
"hiddenAliases": [],
|
|
1077
|
-
"id": "
|
|
1215
|
+
"id": "build:deploy",
|
|
1078
1216
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1079
1217
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1080
1218
|
"pluginType": "core",
|
|
@@ -1137,16 +1275,16 @@
|
|
|
1137
1275
|
"relativePath": [
|
|
1138
1276
|
"dist",
|
|
1139
1277
|
"commands",
|
|
1140
|
-
"
|
|
1141
|
-
"
|
|
1278
|
+
"build",
|
|
1279
|
+
"deploy.js"
|
|
1142
1280
|
]
|
|
1143
1281
|
},
|
|
1144
|
-
"
|
|
1282
|
+
"build:find": {
|
|
1145
1283
|
"aliases": [],
|
|
1146
1284
|
"args": {},
|
|
1147
|
-
"description": "
|
|
1285
|
+
"description": "find resources in Raindrop",
|
|
1148
1286
|
"examples": [
|
|
1149
|
-
"<%= config.bin %>
|
|
1287
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
1150
1288
|
],
|
|
1151
1289
|
"flags": {
|
|
1152
1290
|
"config": {
|
|
@@ -1205,11 +1343,48 @@
|
|
|
1205
1343
|
"multiple": false,
|
|
1206
1344
|
"type": "option"
|
|
1207
1345
|
},
|
|
1208
|
-
"
|
|
1209
|
-
"char": "
|
|
1210
|
-
"description": "
|
|
1211
|
-
"name": "
|
|
1212
|
-
"required":
|
|
1346
|
+
"root": {
|
|
1347
|
+
"char": "r",
|
|
1348
|
+
"description": "root directory",
|
|
1349
|
+
"name": "root",
|
|
1350
|
+
"required": false,
|
|
1351
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1352
|
+
"hasDynamicHelp": false,
|
|
1353
|
+
"multiple": false,
|
|
1354
|
+
"type": "option"
|
|
1355
|
+
},
|
|
1356
|
+
"manifest": {
|
|
1357
|
+
"char": "m",
|
|
1358
|
+
"description": "project manifest",
|
|
1359
|
+
"name": "manifest",
|
|
1360
|
+
"required": false,
|
|
1361
|
+
"default": "raindrop.manifest",
|
|
1362
|
+
"hasDynamicHelp": false,
|
|
1363
|
+
"multiple": false,
|
|
1364
|
+
"type": "option"
|
|
1365
|
+
},
|
|
1366
|
+
"application": {
|
|
1367
|
+
"char": "a",
|
|
1368
|
+
"description": "application",
|
|
1369
|
+
"name": "application",
|
|
1370
|
+
"required": false,
|
|
1371
|
+
"hasDynamicHelp": false,
|
|
1372
|
+
"multiple": false,
|
|
1373
|
+
"type": "option"
|
|
1374
|
+
},
|
|
1375
|
+
"version": {
|
|
1376
|
+
"char": "v",
|
|
1377
|
+
"description": "application version",
|
|
1378
|
+
"name": "version",
|
|
1379
|
+
"required": false,
|
|
1380
|
+
"hasDynamicHelp": false,
|
|
1381
|
+
"multiple": false,
|
|
1382
|
+
"type": "option"
|
|
1383
|
+
},
|
|
1384
|
+
"moduleType": {
|
|
1385
|
+
"description": "filter by module type (e.g. smartbucket)",
|
|
1386
|
+
"name": "moduleType",
|
|
1387
|
+
"required": false,
|
|
1213
1388
|
"hasDynamicHelp": false,
|
|
1214
1389
|
"multiple": false,
|
|
1215
1390
|
"type": "option"
|
|
@@ -1218,16 +1393,25 @@
|
|
|
1218
1393
|
"char": "o",
|
|
1219
1394
|
"description": "output format",
|
|
1220
1395
|
"name": "output",
|
|
1221
|
-
"default": "
|
|
1396
|
+
"default": "table",
|
|
1222
1397
|
"hasDynamicHelp": false,
|
|
1223
1398
|
"multiple": false,
|
|
1224
1399
|
"options": [
|
|
1225
1400
|
"text",
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1401
|
+
"table",
|
|
1402
|
+
"json"
|
|
1228
1403
|
],
|
|
1229
1404
|
"type": "option"
|
|
1230
1405
|
},
|
|
1406
|
+
"sudo": {
|
|
1407
|
+
"char": "s",
|
|
1408
|
+
"description": "superuser mode",
|
|
1409
|
+
"hidden": true,
|
|
1410
|
+
"name": "sudo",
|
|
1411
|
+
"required": false,
|
|
1412
|
+
"allowNo": false,
|
|
1413
|
+
"type": "boolean"
|
|
1414
|
+
},
|
|
1231
1415
|
"impersonate": {
|
|
1232
1416
|
"char": "i",
|
|
1233
1417
|
"description": "impersonate organization",
|
|
@@ -1238,21 +1422,16 @@
|
|
|
1238
1422
|
"multiple": false,
|
|
1239
1423
|
"type": "option"
|
|
1240
1424
|
},
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
"required": false,
|
|
1247
|
-
"default": "raindrop.manifest",
|
|
1248
|
-
"hasDynamicHelp": false,
|
|
1249
|
-
"multiple": false,
|
|
1250
|
-
"type": "option"
|
|
1425
|
+
"all": {
|
|
1426
|
+
"description": "query modules for all applications",
|
|
1427
|
+
"name": "all",
|
|
1428
|
+
"allowNo": false,
|
|
1429
|
+
"type": "boolean"
|
|
1251
1430
|
}
|
|
1252
1431
|
},
|
|
1253
1432
|
"hasDynamicHelp": false,
|
|
1254
1433
|
"hiddenAliases": [],
|
|
1255
|
-
"id": "
|
|
1434
|
+
"id": "build:find",
|
|
1256
1435
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1257
1436
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1258
1437
|
"pluginType": "core",
|
|
@@ -1315,141 +1494,153 @@
|
|
|
1315
1494
|
"relativePath": [
|
|
1316
1495
|
"dist",
|
|
1317
1496
|
"commands",
|
|
1318
|
-
"
|
|
1319
|
-
"
|
|
1497
|
+
"build",
|
|
1498
|
+
"find.js"
|
|
1320
1499
|
]
|
|
1321
1500
|
},
|
|
1322
|
-
"
|
|
1501
|
+
"build:generate": {
|
|
1323
1502
|
"aliases": [],
|
|
1324
|
-
"args": {
|
|
1325
|
-
|
|
1326
|
-
"description": "file to upload",
|
|
1327
|
-
"name": "file",
|
|
1328
|
-
"required": true
|
|
1329
|
-
},
|
|
1330
|
-
"key": {
|
|
1331
|
-
"description": "key/path in the bucket",
|
|
1332
|
-
"name": "key",
|
|
1333
|
-
"required": true
|
|
1334
|
-
}
|
|
1335
|
-
},
|
|
1336
|
-
"description": "Upload a file to the object storage",
|
|
1503
|
+
"args": {},
|
|
1504
|
+
"description": "(re)generate all code for a LiquidMetal.AI project",
|
|
1337
1505
|
"examples": [
|
|
1338
|
-
"<%= config.bin %>
|
|
1506
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1339
1507
|
],
|
|
1340
1508
|
"flags": {
|
|
1341
|
-
"
|
|
1342
|
-
"char": "
|
|
1343
|
-
"description": "
|
|
1344
|
-
"
|
|
1345
|
-
"name": "config",
|
|
1509
|
+
"root": {
|
|
1510
|
+
"char": "r",
|
|
1511
|
+
"description": "root directory",
|
|
1512
|
+
"name": "root",
|
|
1346
1513
|
"required": false,
|
|
1347
|
-
"default": "
|
|
1514
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1348
1515
|
"hasDynamicHelp": false,
|
|
1349
1516
|
"multiple": false,
|
|
1350
1517
|
"type": "option"
|
|
1351
1518
|
},
|
|
1352
|
-
"
|
|
1353
|
-
"
|
|
1354
|
-
"
|
|
1355
|
-
"name": "
|
|
1356
|
-
"
|
|
1519
|
+
"manifest": {
|
|
1520
|
+
"char": "m",
|
|
1521
|
+
"description": "project manifest",
|
|
1522
|
+
"name": "manifest",
|
|
1523
|
+
"required": false,
|
|
1524
|
+
"default": "raindrop.manifest",
|
|
1357
1525
|
"hasDynamicHelp": false,
|
|
1358
1526
|
"multiple": false,
|
|
1359
1527
|
"type": "option"
|
|
1360
1528
|
},
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1529
|
+
"config": {
|
|
1530
|
+
"char": "c",
|
|
1531
|
+
"description": "config file",
|
|
1364
1532
|
"hidden": true,
|
|
1365
|
-
"name": "
|
|
1533
|
+
"name": "config",
|
|
1534
|
+
"required": false,
|
|
1535
|
+
"default": ".raindrop/config.json",
|
|
1366
1536
|
"hasDynamicHelp": false,
|
|
1367
1537
|
"multiple": false,
|
|
1368
1538
|
"type": "option"
|
|
1369
1539
|
},
|
|
1370
|
-
"
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1540
|
+
"output": {
|
|
1541
|
+
"char": "o",
|
|
1542
|
+
"description": "output directory",
|
|
1543
|
+
"name": "output",
|
|
1544
|
+
"default": "dist",
|
|
1375
1545
|
"hasDynamicHelp": false,
|
|
1376
1546
|
"multiple": false,
|
|
1377
1547
|
"type": "option"
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1548
|
+
}
|
|
1549
|
+
},
|
|
1550
|
+
"hasDynamicHelp": false,
|
|
1551
|
+
"hiddenAliases": [],
|
|
1552
|
+
"id": "build:generate",
|
|
1553
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1554
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1555
|
+
"pluginType": "core",
|
|
1556
|
+
"strict": true,
|
|
1557
|
+
"enableJsonFlag": false,
|
|
1558
|
+
"HIDDEN_FLAGS": {
|
|
1559
|
+
"config": {
|
|
1560
|
+
"char": "c",
|
|
1561
|
+
"description": "config file",
|
|
1562
|
+
"required": false,
|
|
1382
1563
|
"hidden": true,
|
|
1383
|
-
"
|
|
1384
|
-
"
|
|
1564
|
+
"default": ".raindrop/config.json",
|
|
1565
|
+
"input": [],
|
|
1385
1566
|
"multiple": false,
|
|
1386
1567
|
"type": "option"
|
|
1387
1568
|
},
|
|
1388
|
-
"
|
|
1389
|
-
"
|
|
1390
|
-
"env": "RAINBOW_USER_ID",
|
|
1569
|
+
"rainbowAuthService": {
|
|
1570
|
+
"default": "https://raindrop.liquidmetal.run/",
|
|
1391
1571
|
"hidden": true,
|
|
1392
|
-
"
|
|
1393
|
-
"
|
|
1394
|
-
"multiple": false,
|
|
1395
|
-
"type": "option"
|
|
1396
|
-
},
|
|
1397
|
-
"bucket": {
|
|
1398
|
-
"char": "b",
|
|
1399
|
-
"description": "bucket ID",
|
|
1400
|
-
"name": "bucket",
|
|
1401
|
-
"required": true,
|
|
1402
|
-
"hasDynamicHelp": false,
|
|
1572
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1573
|
+
"input": [],
|
|
1403
1574
|
"multiple": false,
|
|
1404
1575
|
"type": "option"
|
|
1405
1576
|
},
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1408
|
-
"description": "
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"hasDynamicHelp": false,
|
|
1577
|
+
"raindropCatalogService": {
|
|
1578
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
1579
|
+
"description": "URL of the catalog service",
|
|
1580
|
+
"hidden": true,
|
|
1581
|
+
"input": [],
|
|
1412
1582
|
"multiple": false,
|
|
1413
1583
|
"type": "option"
|
|
1414
1584
|
},
|
|
1415
|
-
"
|
|
1416
|
-
"
|
|
1417
|
-
"description": "
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1420
|
-
"hasDynamicHelp": false,
|
|
1585
|
+
"rainbowAuthToken": {
|
|
1586
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
1587
|
+
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
1588
|
+
"hidden": true,
|
|
1589
|
+
"input": [],
|
|
1421
1590
|
"multiple": false,
|
|
1422
|
-
"options": [
|
|
1423
|
-
"text",
|
|
1424
|
-
"json"
|
|
1425
|
-
],
|
|
1426
1591
|
"type": "option"
|
|
1427
1592
|
},
|
|
1428
|
-
"
|
|
1429
|
-
"
|
|
1430
|
-
"description": "
|
|
1593
|
+
"rainbowOrganizationId": {
|
|
1594
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
1595
|
+
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
1431
1596
|
"hidden": true,
|
|
1432
|
-
"
|
|
1433
|
-
"required": false,
|
|
1434
|
-
"hasDynamicHelp": false,
|
|
1597
|
+
"input": [],
|
|
1435
1598
|
"multiple": false,
|
|
1436
1599
|
"type": "option"
|
|
1437
1600
|
},
|
|
1438
|
-
"
|
|
1439
|
-
"
|
|
1440
|
-
"description": "
|
|
1601
|
+
"rainbowUserId": {
|
|
1602
|
+
"env": "RAINBOW_USER_ID",
|
|
1603
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
1441
1604
|
"hidden": true,
|
|
1442
|
-
"
|
|
1443
|
-
"required": false,
|
|
1444
|
-
"default": "raindrop.manifest",
|
|
1445
|
-
"hasDynamicHelp": false,
|
|
1605
|
+
"input": [],
|
|
1446
1606
|
"multiple": false,
|
|
1447
1607
|
"type": "option"
|
|
1448
1608
|
}
|
|
1449
1609
|
},
|
|
1610
|
+
"baseArgs": {},
|
|
1611
|
+
"isESM": true,
|
|
1612
|
+
"relativePath": [
|
|
1613
|
+
"dist",
|
|
1614
|
+
"commands",
|
|
1615
|
+
"build",
|
|
1616
|
+
"generate.js"
|
|
1617
|
+
]
|
|
1618
|
+
},
|
|
1619
|
+
"build:init": {
|
|
1620
|
+
"aliases": [],
|
|
1621
|
+
"args": {
|
|
1622
|
+
"path": {
|
|
1623
|
+
"default": ".",
|
|
1624
|
+
"description": "Path to initialize the project in",
|
|
1625
|
+
"name": "path",
|
|
1626
|
+
"required": false
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"description": "start a new LiquidMetal.AI project",
|
|
1630
|
+
"examples": [
|
|
1631
|
+
"<%= config.bin %> <%= command.id %> .\nInitialize a project in the current directory.\n"
|
|
1632
|
+
],
|
|
1633
|
+
"flags": {
|
|
1634
|
+
"overwrite": {
|
|
1635
|
+
"description": "Overwrite existing files",
|
|
1636
|
+
"name": "overwrite",
|
|
1637
|
+
"allowNo": false,
|
|
1638
|
+
"type": "boolean"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1450
1641
|
"hasDynamicHelp": false,
|
|
1451
1642
|
"hiddenAliases": [],
|
|
1452
|
-
"id": "
|
|
1643
|
+
"id": "build:init",
|
|
1453
1644
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1454
1645
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1455
1646
|
"pluginType": "core",
|
|
@@ -1512,22 +1703,16 @@
|
|
|
1512
1703
|
"relativePath": [
|
|
1513
1704
|
"dist",
|
|
1514
1705
|
"commands",
|
|
1515
|
-
"
|
|
1516
|
-
"
|
|
1706
|
+
"build",
|
|
1707
|
+
"init.js"
|
|
1517
1708
|
]
|
|
1518
1709
|
},
|
|
1519
|
-
"build:
|
|
1710
|
+
"build:list": {
|
|
1520
1711
|
"aliases": [],
|
|
1521
|
-
"args": {
|
|
1522
|
-
|
|
1523
|
-
"description": "branch name",
|
|
1524
|
-
"name": "branch",
|
|
1525
|
-
"required": true
|
|
1526
|
-
}
|
|
1527
|
-
},
|
|
1528
|
-
"description": "branch a Raindrop application",
|
|
1712
|
+
"args": {},
|
|
1713
|
+
"description": "list Raindrop catalog resources",
|
|
1529
1714
|
"examples": [
|
|
1530
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
1715
|
+
"<%= config.bin %> <%= command.id %> .\nList Raindrop catalog resources.\n"
|
|
1531
1716
|
],
|
|
1532
1717
|
"flags": {
|
|
1533
1718
|
"config": {
|
|
@@ -1586,46 +1771,26 @@
|
|
|
1586
1771
|
"multiple": false,
|
|
1587
1772
|
"type": "option"
|
|
1588
1773
|
},
|
|
1589
|
-
"
|
|
1590
|
-
"char": "
|
|
1591
|
-
"description": "
|
|
1592
|
-
"name": "
|
|
1593
|
-
"
|
|
1594
|
-
"
|
|
1595
|
-
"hasDynamicHelp": false,
|
|
1596
|
-
"multiple": false,
|
|
1597
|
-
"type": "option"
|
|
1598
|
-
},
|
|
1599
|
-
"manifest": {
|
|
1600
|
-
"char": "m",
|
|
1601
|
-
"description": "project manifest",
|
|
1602
|
-
"name": "manifest",
|
|
1603
|
-
"required": false,
|
|
1604
|
-
"default": "raindrop.manifest",
|
|
1605
|
-
"hasDynamicHelp": false,
|
|
1606
|
-
"multiple": false,
|
|
1607
|
-
"type": "option"
|
|
1774
|
+
"all": {
|
|
1775
|
+
"char": "a",
|
|
1776
|
+
"description": "show deleted resources",
|
|
1777
|
+
"name": "all",
|
|
1778
|
+
"allowNo": false,
|
|
1779
|
+
"type": "boolean"
|
|
1608
1780
|
},
|
|
1609
1781
|
"output": {
|
|
1610
1782
|
"char": "o",
|
|
1611
|
-
"description": "output
|
|
1783
|
+
"description": "output format",
|
|
1612
1784
|
"name": "output",
|
|
1613
|
-
"
|
|
1614
|
-
"default": "dist",
|
|
1785
|
+
"default": "table",
|
|
1615
1786
|
"hasDynamicHelp": false,
|
|
1616
1787
|
"multiple": false,
|
|
1617
|
-
"
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
"
|
|
1788
|
+
"options": [
|
|
1789
|
+
"text",
|
|
1790
|
+
"table",
|
|
1791
|
+
"json",
|
|
1792
|
+
"log"
|
|
1622
1793
|
],
|
|
1623
|
-
"char": "p",
|
|
1624
|
-
"description": "branch from this version",
|
|
1625
|
-
"name": "versionId",
|
|
1626
|
-
"required": false,
|
|
1627
|
-
"hasDynamicHelp": false,
|
|
1628
|
-
"multiple": false,
|
|
1629
1794
|
"type": "option"
|
|
1630
1795
|
},
|
|
1631
1796
|
"impersonate": {
|
|
@@ -1638,24 +1803,21 @@
|
|
|
1638
1803
|
"multiple": false,
|
|
1639
1804
|
"type": "option"
|
|
1640
1805
|
},
|
|
1641
|
-
"
|
|
1642
|
-
"
|
|
1643
|
-
"
|
|
1644
|
-
"
|
|
1645
|
-
"
|
|
1646
|
-
"type": "boolean"
|
|
1647
|
-
},
|
|
1648
|
-
"show": {
|
|
1649
|
-
"description": "show the current branch",
|
|
1650
|
-
"name": "show",
|
|
1806
|
+
"manifest": {
|
|
1807
|
+
"char": "m",
|
|
1808
|
+
"description": "project manifest",
|
|
1809
|
+
"hidden": true,
|
|
1810
|
+
"name": "manifest",
|
|
1651
1811
|
"required": false,
|
|
1652
|
-
"
|
|
1653
|
-
"
|
|
1812
|
+
"default": "raindrop.manifest",
|
|
1813
|
+
"hasDynamicHelp": false,
|
|
1814
|
+
"multiple": false,
|
|
1815
|
+
"type": "option"
|
|
1654
1816
|
}
|
|
1655
1817
|
},
|
|
1656
1818
|
"hasDynamicHelp": false,
|
|
1657
1819
|
"hiddenAliases": [],
|
|
1658
|
-
"id": "build:
|
|
1820
|
+
"id": "build:list",
|
|
1659
1821
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1660
1822
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1661
1823
|
"pluginType": "core",
|
|
@@ -1719,21 +1881,15 @@
|
|
|
1719
1881
|
"dist",
|
|
1720
1882
|
"commands",
|
|
1721
1883
|
"build",
|
|
1722
|
-
"
|
|
1884
|
+
"list.js"
|
|
1723
1885
|
]
|
|
1724
1886
|
},
|
|
1725
|
-
"build:
|
|
1887
|
+
"build:sandbox": {
|
|
1726
1888
|
"aliases": [],
|
|
1727
|
-
"args": {
|
|
1728
|
-
|
|
1729
|
-
"description": "version id",
|
|
1730
|
-
"name": "version",
|
|
1731
|
-
"required": false
|
|
1732
|
-
}
|
|
1733
|
-
},
|
|
1734
|
-
"description": "switch the current context to a specific version",
|
|
1889
|
+
"args": {},
|
|
1890
|
+
"description": "mark a version as sandboxed in the Raindrop catalog",
|
|
1735
1891
|
"examples": [
|
|
1736
|
-
"<%= config.bin %> <%= command.id %>\
|
|
1892
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
1737
1893
|
],
|
|
1738
1894
|
"flags": {
|
|
1739
1895
|
"config": {
|
|
@@ -1792,12 +1948,29 @@
|
|
|
1792
1948
|
"multiple": false,
|
|
1793
1949
|
"type": "option"
|
|
1794
1950
|
},
|
|
1795
|
-
"
|
|
1796
|
-
"char": "
|
|
1797
|
-
"description": "
|
|
1798
|
-
"
|
|
1951
|
+
"impersonate": {
|
|
1952
|
+
"char": "i",
|
|
1953
|
+
"description": "impersonate organization",
|
|
1954
|
+
"hidden": true,
|
|
1955
|
+
"name": "impersonate",
|
|
1956
|
+
"required": false,
|
|
1957
|
+
"hasDynamicHelp": false,
|
|
1958
|
+
"multiple": false,
|
|
1959
|
+
"type": "option"
|
|
1960
|
+
},
|
|
1961
|
+
"manifest": {
|
|
1962
|
+
"description": "project manifest",
|
|
1963
|
+
"name": "manifest",
|
|
1964
|
+
"default": "raindrop.manifest",
|
|
1965
|
+
"hasDynamicHelp": false,
|
|
1966
|
+
"multiple": false,
|
|
1967
|
+
"type": "option"
|
|
1968
|
+
},
|
|
1969
|
+
"version": {
|
|
1970
|
+
"char": "v",
|
|
1971
|
+
"description": "application version to sandbox",
|
|
1972
|
+
"name": "version",
|
|
1799
1973
|
"required": false,
|
|
1800
|
-
"default": "text",
|
|
1801
1974
|
"hasDynamicHelp": false,
|
|
1802
1975
|
"multiple": false,
|
|
1803
1976
|
"type": "option"
|
|
@@ -1805,7 +1978,7 @@
|
|
|
1805
1978
|
},
|
|
1806
1979
|
"hasDynamicHelp": false,
|
|
1807
1980
|
"hiddenAliases": [],
|
|
1808
|
-
"id": "build:
|
|
1981
|
+
"id": "build:sandbox",
|
|
1809
1982
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1810
1983
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1811
1984
|
"pluginType": "core",
|
|
@@ -1869,21 +2042,15 @@
|
|
|
1869
2042
|
"dist",
|
|
1870
2043
|
"commands",
|
|
1871
2044
|
"build",
|
|
1872
|
-
"
|
|
2045
|
+
"sandbox.js"
|
|
1873
2046
|
]
|
|
1874
2047
|
},
|
|
1875
|
-
"build:
|
|
2048
|
+
"build:start": {
|
|
1876
2049
|
"aliases": [],
|
|
1877
|
-
"args": {
|
|
1878
|
-
|
|
1879
|
-
"description": "application name",
|
|
1880
|
-
"name": "application",
|
|
1881
|
-
"required": false
|
|
1882
|
-
}
|
|
1883
|
-
},
|
|
1884
|
-
"description": "delete Raindrop applications",
|
|
2050
|
+
"args": {},
|
|
2051
|
+
"description": "start a Raindrop application",
|
|
1885
2052
|
"examples": [
|
|
1886
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
2053
|
+
"<%= config.bin %> <%= command.id %> .\nStart a Raindrop application.\n"
|
|
1887
2054
|
],
|
|
1888
2055
|
"flags": {
|
|
1889
2056
|
"config": {
|
|
@@ -1962,43 +2129,24 @@
|
|
|
1962
2129
|
"multiple": false,
|
|
1963
2130
|
"type": "option"
|
|
1964
2131
|
},
|
|
1965
|
-
"
|
|
1966
|
-
"char": "
|
|
1967
|
-
"description": "
|
|
1968
|
-
"name": "
|
|
1969
|
-
"
|
|
2132
|
+
"application": {
|
|
2133
|
+
"char": "a",
|
|
2134
|
+
"description": "application to start",
|
|
2135
|
+
"name": "application",
|
|
2136
|
+
"required": false,
|
|
1970
2137
|
"hasDynamicHelp": false,
|
|
1971
2138
|
"multiple": false,
|
|
1972
|
-
"options": [
|
|
1973
|
-
"text",
|
|
1974
|
-
"table",
|
|
1975
|
-
"json"
|
|
1976
|
-
],
|
|
1977
2139
|
"type": "option"
|
|
1978
2140
|
},
|
|
1979
2141
|
"version": {
|
|
1980
2142
|
"char": "v",
|
|
1981
|
-
"description": "application version to
|
|
1982
|
-
"exclusive": [
|
|
1983
|
-
"all"
|
|
1984
|
-
],
|
|
2143
|
+
"description": "application version to start",
|
|
1985
2144
|
"name": "version",
|
|
1986
2145
|
"required": false,
|
|
1987
2146
|
"hasDynamicHelp": false,
|
|
1988
2147
|
"multiple": false,
|
|
1989
2148
|
"type": "option"
|
|
1990
2149
|
},
|
|
1991
|
-
"all": {
|
|
1992
|
-
"char": "a",
|
|
1993
|
-
"description": "delete all application versions",
|
|
1994
|
-
"exclusive": [
|
|
1995
|
-
"version"
|
|
1996
|
-
],
|
|
1997
|
-
"name": "all",
|
|
1998
|
-
"required": false,
|
|
1999
|
-
"allowNo": false,
|
|
2000
|
-
"type": "boolean"
|
|
2001
|
-
},
|
|
2002
2150
|
"impersonate": {
|
|
2003
2151
|
"char": "i",
|
|
2004
2152
|
"description": "impersonate organization",
|
|
@@ -2012,7 +2160,7 @@
|
|
|
2012
2160
|
},
|
|
2013
2161
|
"hasDynamicHelp": false,
|
|
2014
2162
|
"hiddenAliases": [],
|
|
2015
|
-
"id": "build:
|
|
2163
|
+
"id": "build:start",
|
|
2016
2164
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2017
2165
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2018
2166
|
"pluginType": "core",
|
|
@@ -2076,15 +2224,15 @@
|
|
|
2076
2224
|
"dist",
|
|
2077
2225
|
"commands",
|
|
2078
2226
|
"build",
|
|
2079
|
-
"
|
|
2227
|
+
"start.js"
|
|
2080
2228
|
]
|
|
2081
2229
|
},
|
|
2082
|
-
"build:
|
|
2230
|
+
"build:status": {
|
|
2083
2231
|
"aliases": [],
|
|
2084
2232
|
"args": {},
|
|
2085
|
-
"description": "
|
|
2233
|
+
"description": "show the status of an application in Raindrop",
|
|
2086
2234
|
"examples": [
|
|
2087
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
2235
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
2088
2236
|
],
|
|
2089
2237
|
"flags": {
|
|
2090
2238
|
"config": {
|
|
@@ -2163,73 +2311,61 @@
|
|
|
2163
2311
|
"multiple": false,
|
|
2164
2312
|
"type": "option"
|
|
2165
2313
|
},
|
|
2166
|
-
"
|
|
2167
|
-
"char": "
|
|
2168
|
-
"description": "
|
|
2169
|
-
"name": "
|
|
2314
|
+
"application": {
|
|
2315
|
+
"char": "a",
|
|
2316
|
+
"description": "application",
|
|
2317
|
+
"name": "application",
|
|
2170
2318
|
"required": false,
|
|
2171
|
-
"default": "dist",
|
|
2172
2319
|
"hasDynamicHelp": false,
|
|
2173
2320
|
"multiple": false,
|
|
2174
2321
|
"type": "option"
|
|
2175
2322
|
},
|
|
2176
|
-
"
|
|
2177
|
-
"aliases": [
|
|
2178
|
-
"version"
|
|
2179
|
-
],
|
|
2323
|
+
"version": {
|
|
2180
2324
|
"char": "v",
|
|
2181
|
-
"description": "version
|
|
2182
|
-
"name": "
|
|
2325
|
+
"description": "application version",
|
|
2326
|
+
"name": "version",
|
|
2183
2327
|
"required": false,
|
|
2184
2328
|
"hasDynamicHelp": false,
|
|
2185
2329
|
"multiple": false,
|
|
2186
2330
|
"type": "option"
|
|
2187
2331
|
},
|
|
2188
|
-
"
|
|
2189
|
-
"char": "
|
|
2190
|
-
"description": "
|
|
2191
|
-
"
|
|
2192
|
-
"
|
|
2193
|
-
"required": false,
|
|
2332
|
+
"output": {
|
|
2333
|
+
"char": "o",
|
|
2334
|
+
"description": "output format",
|
|
2335
|
+
"name": "output",
|
|
2336
|
+
"default": "table",
|
|
2194
2337
|
"hasDynamicHelp": false,
|
|
2195
2338
|
"multiple": false,
|
|
2339
|
+
"options": [
|
|
2340
|
+
"watch",
|
|
2341
|
+
"table",
|
|
2342
|
+
"json"
|
|
2343
|
+
],
|
|
2196
2344
|
"type": "option"
|
|
2197
2345
|
},
|
|
2198
|
-
"
|
|
2346
|
+
"sudo": {
|
|
2199
2347
|
"char": "s",
|
|
2200
|
-
"description": "
|
|
2201
|
-
"
|
|
2202
|
-
"
|
|
2203
|
-
"allowNo": false,
|
|
2204
|
-
"type": "boolean"
|
|
2205
|
-
},
|
|
2206
|
-
"resume": {
|
|
2207
|
-
"description": "resume a deployment",
|
|
2208
|
-
"name": "resume",
|
|
2348
|
+
"description": "superuser mode",
|
|
2349
|
+
"hidden": true,
|
|
2350
|
+
"name": "sudo",
|
|
2209
2351
|
"required": false,
|
|
2210
2352
|
"allowNo": false,
|
|
2211
2353
|
"type": "boolean"
|
|
2212
2354
|
},
|
|
2213
|
-
"
|
|
2214
|
-
"
|
|
2215
|
-
"
|
|
2355
|
+
"impersonate": {
|
|
2356
|
+
"char": "i",
|
|
2357
|
+
"description": "impersonate organization",
|
|
2358
|
+
"hidden": true,
|
|
2359
|
+
"name": "impersonate",
|
|
2216
2360
|
"required": false,
|
|
2217
2361
|
"hasDynamicHelp": false,
|
|
2218
2362
|
"multiple": false,
|
|
2219
2363
|
"type": "option"
|
|
2220
|
-
},
|
|
2221
|
-
"amend": {
|
|
2222
|
-
"char": "a",
|
|
2223
|
-
"description": "amend an existing application",
|
|
2224
|
-
"name": "amend",
|
|
2225
|
-
"required": false,
|
|
2226
|
-
"allowNo": false,
|
|
2227
|
-
"type": "boolean"
|
|
2228
2364
|
}
|
|
2229
2365
|
},
|
|
2230
2366
|
"hasDynamicHelp": false,
|
|
2231
2367
|
"hiddenAliases": [],
|
|
2232
|
-
"id": "build:
|
|
2368
|
+
"id": "build:status",
|
|
2233
2369
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2234
2370
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2235
2371
|
"pluginType": "core",
|
|
@@ -2293,15 +2429,15 @@
|
|
|
2293
2429
|
"dist",
|
|
2294
2430
|
"commands",
|
|
2295
2431
|
"build",
|
|
2296
|
-
"
|
|
2432
|
+
"status.js"
|
|
2297
2433
|
]
|
|
2298
2434
|
},
|
|
2299
|
-
"build:
|
|
2435
|
+
"build:stop": {
|
|
2300
2436
|
"aliases": [],
|
|
2301
2437
|
"args": {},
|
|
2302
|
-
"description": "
|
|
2438
|
+
"description": "stop a Raindrop application",
|
|
2303
2439
|
"examples": [
|
|
2304
|
-
"<%= config.bin %> <%= command.id %> .\n"
|
|
2440
|
+
"<%= config.bin %> <%= command.id %> .\nStop a Raindrop application.\n"
|
|
2305
2441
|
],
|
|
2306
2442
|
"flags": {
|
|
2307
2443
|
"config": {
|
|
@@ -2382,7 +2518,7 @@
|
|
|
2382
2518
|
},
|
|
2383
2519
|
"application": {
|
|
2384
2520
|
"char": "a",
|
|
2385
|
-
"description": "application",
|
|
2521
|
+
"description": "application to stop",
|
|
2386
2522
|
"name": "application",
|
|
2387
2523
|
"required": false,
|
|
2388
2524
|
"hasDynamicHelp": false,
|
|
@@ -2391,44 +2527,13 @@
|
|
|
2391
2527
|
},
|
|
2392
2528
|
"version": {
|
|
2393
2529
|
"char": "v",
|
|
2394
|
-
"description": "application version",
|
|
2530
|
+
"description": "application version to start",
|
|
2395
2531
|
"name": "version",
|
|
2396
2532
|
"required": false,
|
|
2397
2533
|
"hasDynamicHelp": false,
|
|
2398
2534
|
"multiple": false,
|
|
2399
2535
|
"type": "option"
|
|
2400
2536
|
},
|
|
2401
|
-
"moduleType": {
|
|
2402
|
-
"description": "filter by module type (e.g. smartbucket)",
|
|
2403
|
-
"name": "moduleType",
|
|
2404
|
-
"required": false,
|
|
2405
|
-
"hasDynamicHelp": false,
|
|
2406
|
-
"multiple": false,
|
|
2407
|
-
"type": "option"
|
|
2408
|
-
},
|
|
2409
|
-
"output": {
|
|
2410
|
-
"char": "o",
|
|
2411
|
-
"description": "output format",
|
|
2412
|
-
"name": "output",
|
|
2413
|
-
"default": "table",
|
|
2414
|
-
"hasDynamicHelp": false,
|
|
2415
|
-
"multiple": false,
|
|
2416
|
-
"options": [
|
|
2417
|
-
"text",
|
|
2418
|
-
"table",
|
|
2419
|
-
"json"
|
|
2420
|
-
],
|
|
2421
|
-
"type": "option"
|
|
2422
|
-
},
|
|
2423
|
-
"sudo": {
|
|
2424
|
-
"char": "s",
|
|
2425
|
-
"description": "superuser mode",
|
|
2426
|
-
"hidden": true,
|
|
2427
|
-
"name": "sudo",
|
|
2428
|
-
"required": false,
|
|
2429
|
-
"allowNo": false,
|
|
2430
|
-
"type": "boolean"
|
|
2431
|
-
},
|
|
2432
2537
|
"impersonate": {
|
|
2433
2538
|
"char": "i",
|
|
2434
2539
|
"description": "impersonate organization",
|
|
@@ -2442,7 +2547,7 @@
|
|
|
2442
2547
|
},
|
|
2443
2548
|
"hasDynamicHelp": false,
|
|
2444
2549
|
"hiddenAliases": [],
|
|
2445
|
-
"id": "build:
|
|
2550
|
+
"id": "build:stop",
|
|
2446
2551
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2447
2552
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2448
2553
|
"pluginType": "core",
|
|
@@ -2506,37 +2611,17 @@
|
|
|
2506
2611
|
"dist",
|
|
2507
2612
|
"commands",
|
|
2508
2613
|
"build",
|
|
2509
|
-
"
|
|
2614
|
+
"stop.js"
|
|
2510
2615
|
]
|
|
2511
2616
|
},
|
|
2512
|
-
"build:
|
|
2617
|
+
"build:unsandbox": {
|
|
2513
2618
|
"aliases": [],
|
|
2514
2619
|
"args": {},
|
|
2515
|
-
"description": "
|
|
2620
|
+
"description": "mark a version as unsandboxed in the Raindrop catalog",
|
|
2516
2621
|
"examples": [
|
|
2517
|
-
"<%= config.bin %> <%= command.id
|
|
2622
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
2518
2623
|
],
|
|
2519
2624
|
"flags": {
|
|
2520
|
-
"root": {
|
|
2521
|
-
"char": "r",
|
|
2522
|
-
"description": "root directory",
|
|
2523
|
-
"name": "root",
|
|
2524
|
-
"required": false,
|
|
2525
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2526
|
-
"hasDynamicHelp": false,
|
|
2527
|
-
"multiple": false,
|
|
2528
|
-
"type": "option"
|
|
2529
|
-
},
|
|
2530
|
-
"manifest": {
|
|
2531
|
-
"char": "m",
|
|
2532
|
-
"description": "project manifest",
|
|
2533
|
-
"name": "manifest",
|
|
2534
|
-
"required": false,
|
|
2535
|
-
"default": "raindrop.manifest",
|
|
2536
|
-
"hasDynamicHelp": false,
|
|
2537
|
-
"multiple": false,
|
|
2538
|
-
"type": "option"
|
|
2539
|
-
},
|
|
2540
2625
|
"config": {
|
|
2541
2626
|
"char": "c",
|
|
2542
2627
|
"description": "config file",
|
|
@@ -2548,110 +2633,82 @@
|
|
|
2548
2633
|
"multiple": false,
|
|
2549
2634
|
"type": "option"
|
|
2550
2635
|
},
|
|
2551
|
-
"output": {
|
|
2552
|
-
"char": "o",
|
|
2553
|
-
"description": "output directory",
|
|
2554
|
-
"name": "output",
|
|
2555
|
-
"default": "dist",
|
|
2556
|
-
"hasDynamicHelp": false,
|
|
2557
|
-
"multiple": false,
|
|
2558
|
-
"type": "option"
|
|
2559
|
-
}
|
|
2560
|
-
},
|
|
2561
|
-
"hasDynamicHelp": false,
|
|
2562
|
-
"hiddenAliases": [],
|
|
2563
|
-
"id": "build:generate",
|
|
2564
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2565
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2566
|
-
"pluginType": "core",
|
|
2567
|
-
"strict": true,
|
|
2568
|
-
"enableJsonFlag": false,
|
|
2569
|
-
"HIDDEN_FLAGS": {
|
|
2570
|
-
"config": {
|
|
2571
|
-
"char": "c",
|
|
2572
|
-
"description": "config file",
|
|
2573
|
-
"required": false,
|
|
2574
|
-
"hidden": true,
|
|
2575
|
-
"default": ".raindrop/config.json",
|
|
2576
|
-
"input": [],
|
|
2577
|
-
"multiple": false,
|
|
2578
|
-
"type": "option"
|
|
2579
|
-
},
|
|
2580
2636
|
"rainbowAuthService": {
|
|
2581
|
-
"default": "https://raindrop.liquidmetal.run/",
|
|
2582
|
-
"hidden": true,
|
|
2583
2637
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
2584
|
-
"
|
|
2638
|
+
"hidden": true,
|
|
2639
|
+
"name": "rainbowAuthService",
|
|
2640
|
+
"default": "https://raindrop.liquidmetal.run/",
|
|
2641
|
+
"hasDynamicHelp": false,
|
|
2585
2642
|
"multiple": false,
|
|
2586
2643
|
"type": "option"
|
|
2587
2644
|
},
|
|
2588
2645
|
"raindropCatalogService": {
|
|
2589
|
-
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2590
2646
|
"description": "URL of the catalog service",
|
|
2647
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2591
2648
|
"hidden": true,
|
|
2592
|
-
"
|
|
2649
|
+
"name": "raindropCatalogService",
|
|
2650
|
+
"hasDynamicHelp": false,
|
|
2593
2651
|
"multiple": false,
|
|
2594
2652
|
"type": "option"
|
|
2595
2653
|
},
|
|
2596
2654
|
"rainbowAuthToken": {
|
|
2597
|
-
"env": "RAINBOW_AUTH_TOKEN",
|
|
2598
2655
|
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
2656
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
2599
2657
|
"hidden": true,
|
|
2600
|
-
"
|
|
2658
|
+
"name": "rainbowAuthToken",
|
|
2659
|
+
"hasDynamicHelp": false,
|
|
2601
2660
|
"multiple": false,
|
|
2602
2661
|
"type": "option"
|
|
2603
2662
|
},
|
|
2604
2663
|
"rainbowOrganizationId": {
|
|
2605
|
-
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2606
2664
|
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
2665
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2607
2666
|
"hidden": true,
|
|
2608
|
-
"
|
|
2667
|
+
"name": "rainbowOrganizationId",
|
|
2668
|
+
"hasDynamicHelp": false,
|
|
2609
2669
|
"multiple": false,
|
|
2610
2670
|
"type": "option"
|
|
2611
2671
|
},
|
|
2612
2672
|
"rainbowUserId": {
|
|
2613
|
-
"env": "RAINBOW_USER_ID",
|
|
2614
2673
|
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2674
|
+
"env": "RAINBOW_USER_ID",
|
|
2615
2675
|
"hidden": true,
|
|
2616
|
-
"
|
|
2676
|
+
"name": "rainbowUserId",
|
|
2677
|
+
"hasDynamicHelp": false,
|
|
2678
|
+
"multiple": false,
|
|
2679
|
+
"type": "option"
|
|
2680
|
+
},
|
|
2681
|
+
"impersonate": {
|
|
2682
|
+
"char": "i",
|
|
2683
|
+
"description": "impersonate organization",
|
|
2684
|
+
"hidden": true,
|
|
2685
|
+
"name": "impersonate",
|
|
2686
|
+
"required": false,
|
|
2687
|
+
"hasDynamicHelp": false,
|
|
2688
|
+
"multiple": false,
|
|
2689
|
+
"type": "option"
|
|
2690
|
+
},
|
|
2691
|
+
"manifest": {
|
|
2692
|
+
"description": "project manifest",
|
|
2693
|
+
"name": "manifest",
|
|
2694
|
+
"default": "raindrop.manifest",
|
|
2695
|
+
"hasDynamicHelp": false,
|
|
2696
|
+
"multiple": false,
|
|
2697
|
+
"type": "option"
|
|
2698
|
+
},
|
|
2699
|
+
"version": {
|
|
2700
|
+
"char": "v",
|
|
2701
|
+
"description": "application version to unsandbox",
|
|
2702
|
+
"name": "version",
|
|
2703
|
+
"required": false,
|
|
2704
|
+
"hasDynamicHelp": false,
|
|
2617
2705
|
"multiple": false,
|
|
2618
2706
|
"type": "option"
|
|
2619
|
-
}
|
|
2620
|
-
},
|
|
2621
|
-
"baseArgs": {},
|
|
2622
|
-
"isESM": true,
|
|
2623
|
-
"relativePath": [
|
|
2624
|
-
"dist",
|
|
2625
|
-
"commands",
|
|
2626
|
-
"build",
|
|
2627
|
-
"generate.js"
|
|
2628
|
-
]
|
|
2629
|
-
},
|
|
2630
|
-
"build:init": {
|
|
2631
|
-
"aliases": [],
|
|
2632
|
-
"args": {
|
|
2633
|
-
"path": {
|
|
2634
|
-
"default": ".",
|
|
2635
|
-
"description": "Path to initialize the project in",
|
|
2636
|
-
"name": "path",
|
|
2637
|
-
"required": false
|
|
2638
|
-
}
|
|
2639
|
-
},
|
|
2640
|
-
"description": "start a new LiquidMetal.AI project",
|
|
2641
|
-
"examples": [
|
|
2642
|
-
"<%= config.bin %> <%= command.id %> .\nInitialize a project in the current directory.\n"
|
|
2643
|
-
],
|
|
2644
|
-
"flags": {
|
|
2645
|
-
"overwrite": {
|
|
2646
|
-
"description": "Overwrite existing files",
|
|
2647
|
-
"name": "overwrite",
|
|
2648
|
-
"allowNo": false,
|
|
2649
|
-
"type": "boolean"
|
|
2650
2707
|
}
|
|
2651
2708
|
},
|
|
2652
2709
|
"hasDynamicHelp": false,
|
|
2653
2710
|
"hiddenAliases": [],
|
|
2654
|
-
"id": "build:
|
|
2711
|
+
"id": "build:unsandbox",
|
|
2655
2712
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2656
2713
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2657
2714
|
"pluginType": "core",
|
|
@@ -2715,15 +2772,15 @@
|
|
|
2715
2772
|
"dist",
|
|
2716
2773
|
"commands",
|
|
2717
2774
|
"build",
|
|
2718
|
-
"
|
|
2775
|
+
"unsandbox.js"
|
|
2719
2776
|
]
|
|
2720
2777
|
},
|
|
2721
|
-
"build:
|
|
2778
|
+
"build:upload": {
|
|
2722
2779
|
"aliases": [],
|
|
2723
2780
|
"args": {},
|
|
2724
|
-
"description": "
|
|
2781
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2725
2782
|
"examples": [
|
|
2726
|
-
"<%= config.bin %> <%= command.id %>
|
|
2783
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2727
2784
|
],
|
|
2728
2785
|
"flags": {
|
|
2729
2786
|
"config": {
|
|
@@ -2782,26 +2839,43 @@
|
|
|
2782
2839
|
"multiple": false,
|
|
2783
2840
|
"type": "option"
|
|
2784
2841
|
},
|
|
2785
|
-
"
|
|
2786
|
-
"char": "
|
|
2787
|
-
"description": "
|
|
2788
|
-
"name": "
|
|
2789
|
-
"
|
|
2790
|
-
"
|
|
2842
|
+
"root": {
|
|
2843
|
+
"char": "r",
|
|
2844
|
+
"description": "root directory",
|
|
2845
|
+
"name": "root",
|
|
2846
|
+
"required": false,
|
|
2847
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2848
|
+
"hasDynamicHelp": false,
|
|
2849
|
+
"multiple": false,
|
|
2850
|
+
"type": "option"
|
|
2851
|
+
},
|
|
2852
|
+
"manifest": {
|
|
2853
|
+
"char": "m",
|
|
2854
|
+
"description": "project manifest",
|
|
2855
|
+
"name": "manifest",
|
|
2856
|
+
"required": false,
|
|
2857
|
+
"default": "raindrop.manifest",
|
|
2858
|
+
"hasDynamicHelp": false,
|
|
2859
|
+
"multiple": false,
|
|
2860
|
+
"type": "option"
|
|
2791
2861
|
},
|
|
2792
2862
|
"output": {
|
|
2793
2863
|
"char": "o",
|
|
2794
|
-
"description": "output
|
|
2864
|
+
"description": "output directory",
|
|
2795
2865
|
"name": "output",
|
|
2796
|
-
"
|
|
2866
|
+
"required": false,
|
|
2867
|
+
"default": "dist",
|
|
2868
|
+
"hasDynamicHelp": false,
|
|
2869
|
+
"multiple": false,
|
|
2870
|
+
"type": "option"
|
|
2871
|
+
},
|
|
2872
|
+
"versionId": {
|
|
2873
|
+
"char": "v",
|
|
2874
|
+
"description": "version ID",
|
|
2875
|
+
"name": "versionId",
|
|
2876
|
+
"required": true,
|
|
2797
2877
|
"hasDynamicHelp": false,
|
|
2798
2878
|
"multiple": false,
|
|
2799
|
-
"options": [
|
|
2800
|
-
"text",
|
|
2801
|
-
"table",
|
|
2802
|
-
"json",
|
|
2803
|
-
"log"
|
|
2804
|
-
],
|
|
2805
2879
|
"type": "option"
|
|
2806
2880
|
},
|
|
2807
2881
|
"impersonate": {
|
|
@@ -2813,22 +2887,130 @@
|
|
|
2813
2887
|
"hasDynamicHelp": false,
|
|
2814
2888
|
"multiple": false,
|
|
2815
2889
|
"type": "option"
|
|
2890
|
+
}
|
|
2891
|
+
},
|
|
2892
|
+
"hasDynamicHelp": false,
|
|
2893
|
+
"hiddenAliases": [],
|
|
2894
|
+
"id": "build:upload",
|
|
2895
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2896
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2897
|
+
"pluginType": "core",
|
|
2898
|
+
"strict": true,
|
|
2899
|
+
"enableJsonFlag": false,
|
|
2900
|
+
"HIDDEN_FLAGS": {
|
|
2901
|
+
"config": {
|
|
2902
|
+
"char": "c",
|
|
2903
|
+
"description": "config file",
|
|
2904
|
+
"required": false,
|
|
2905
|
+
"hidden": true,
|
|
2906
|
+
"default": ".raindrop/config.json",
|
|
2907
|
+
"input": [],
|
|
2908
|
+
"multiple": false,
|
|
2909
|
+
"type": "option"
|
|
2910
|
+
},
|
|
2911
|
+
"rainbowAuthService": {
|
|
2912
|
+
"default": "https://raindrop.liquidmetal.run/",
|
|
2913
|
+
"hidden": true,
|
|
2914
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
2915
|
+
"input": [],
|
|
2916
|
+
"multiple": false,
|
|
2917
|
+
"type": "option"
|
|
2918
|
+
},
|
|
2919
|
+
"raindropCatalogService": {
|
|
2920
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
2921
|
+
"description": "URL of the catalog service",
|
|
2922
|
+
"hidden": true,
|
|
2923
|
+
"input": [],
|
|
2924
|
+
"multiple": false,
|
|
2925
|
+
"type": "option"
|
|
2926
|
+
},
|
|
2927
|
+
"rainbowAuthToken": {
|
|
2928
|
+
"env": "RAINBOW_AUTH_TOKEN",
|
|
2929
|
+
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
2930
|
+
"hidden": true,
|
|
2931
|
+
"input": [],
|
|
2932
|
+
"multiple": false,
|
|
2933
|
+
"type": "option"
|
|
2934
|
+
},
|
|
2935
|
+
"rainbowOrganizationId": {
|
|
2936
|
+
"env": "RAINBOW_ORGANIZATION_ID",
|
|
2937
|
+
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
2938
|
+
"hidden": true,
|
|
2939
|
+
"input": [],
|
|
2940
|
+
"multiple": false,
|
|
2941
|
+
"type": "option"
|
|
2942
|
+
},
|
|
2943
|
+
"rainbowUserId": {
|
|
2944
|
+
"env": "RAINBOW_USER_ID",
|
|
2945
|
+
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
2946
|
+
"hidden": true,
|
|
2947
|
+
"input": [],
|
|
2948
|
+
"multiple": false,
|
|
2949
|
+
"type": "option"
|
|
2950
|
+
}
|
|
2951
|
+
},
|
|
2952
|
+
"baseArgs": {},
|
|
2953
|
+
"isESM": true,
|
|
2954
|
+
"relativePath": [
|
|
2955
|
+
"dist",
|
|
2956
|
+
"commands",
|
|
2957
|
+
"build",
|
|
2958
|
+
"upload.js"
|
|
2959
|
+
]
|
|
2960
|
+
},
|
|
2961
|
+
"build:validate": {
|
|
2962
|
+
"aliases": [],
|
|
2963
|
+
"args": {},
|
|
2964
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2965
|
+
"examples": [
|
|
2966
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2967
|
+
],
|
|
2968
|
+
"flags": {
|
|
2969
|
+
"root": {
|
|
2970
|
+
"char": "r",
|
|
2971
|
+
"description": "root directory",
|
|
2972
|
+
"name": "root",
|
|
2973
|
+
"required": false,
|
|
2974
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2975
|
+
"hasDynamicHelp": false,
|
|
2976
|
+
"multiple": false,
|
|
2977
|
+
"type": "option"
|
|
2816
2978
|
},
|
|
2817
2979
|
"manifest": {
|
|
2818
2980
|
"char": "m",
|
|
2819
2981
|
"description": "project manifest",
|
|
2820
|
-
"hidden": true,
|
|
2821
2982
|
"name": "manifest",
|
|
2822
2983
|
"required": false,
|
|
2823
2984
|
"default": "raindrop.manifest",
|
|
2824
2985
|
"hasDynamicHelp": false,
|
|
2825
2986
|
"multiple": false,
|
|
2826
2987
|
"type": "option"
|
|
2988
|
+
},
|
|
2989
|
+
"config": {
|
|
2990
|
+
"char": "c",
|
|
2991
|
+
"description": "config file",
|
|
2992
|
+
"hidden": true,
|
|
2993
|
+
"name": "config",
|
|
2994
|
+
"required": false,
|
|
2995
|
+
"default": ".raindrop/config.json",
|
|
2996
|
+
"hasDynamicHelp": false,
|
|
2997
|
+
"multiple": false,
|
|
2998
|
+
"type": "option"
|
|
2999
|
+
},
|
|
3000
|
+
"output": {
|
|
3001
|
+
"char": "o",
|
|
3002
|
+
"description": "output directory",
|
|
3003
|
+
"name": "output",
|
|
3004
|
+
"required": false,
|
|
3005
|
+
"default": "dist",
|
|
3006
|
+
"hasDynamicHelp": false,
|
|
3007
|
+
"multiple": false,
|
|
3008
|
+
"type": "option"
|
|
2827
3009
|
}
|
|
2828
3010
|
},
|
|
2829
3011
|
"hasDynamicHelp": false,
|
|
2830
3012
|
"hiddenAliases": [],
|
|
2831
|
-
"id": "build:
|
|
3013
|
+
"id": "build:validate",
|
|
2832
3014
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2833
3015
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2834
3016
|
"pluginType": "core",
|
|
@@ -2892,15 +3074,21 @@
|
|
|
2892
3074
|
"dist",
|
|
2893
3075
|
"commands",
|
|
2894
3076
|
"build",
|
|
2895
|
-
"
|
|
3077
|
+
"validate.js"
|
|
2896
3078
|
]
|
|
2897
3079
|
},
|
|
2898
|
-
"
|
|
3080
|
+
"object:delete": {
|
|
2899
3081
|
"aliases": [],
|
|
2900
|
-
"args": {
|
|
2901
|
-
|
|
3082
|
+
"args": {
|
|
3083
|
+
"key": {
|
|
3084
|
+
"description": "key/path in the bucket to delete",
|
|
3085
|
+
"name": "key",
|
|
3086
|
+
"required": true
|
|
3087
|
+
}
|
|
3088
|
+
},
|
|
3089
|
+
"description": "Delete a file from the object storage",
|
|
2902
3090
|
"examples": [
|
|
2903
|
-
"<%= config.bin %>
|
|
3091
|
+
"<%= config.bin %> object delete my-key --bucket my-bucket\nDelete file with key 'my-key' from my-bucket\n"
|
|
2904
3092
|
],
|
|
2905
3093
|
"flags": {
|
|
2906
3094
|
"config": {
|
|
@@ -2959,6 +3147,28 @@
|
|
|
2959
3147
|
"multiple": false,
|
|
2960
3148
|
"type": "option"
|
|
2961
3149
|
},
|
|
3150
|
+
"bucket": {
|
|
3151
|
+
"char": "b",
|
|
3152
|
+
"description": "bucket ID",
|
|
3153
|
+
"name": "bucket",
|
|
3154
|
+
"required": true,
|
|
3155
|
+
"hasDynamicHelp": false,
|
|
3156
|
+
"multiple": false,
|
|
3157
|
+
"type": "option"
|
|
3158
|
+
},
|
|
3159
|
+
"output": {
|
|
3160
|
+
"char": "o",
|
|
3161
|
+
"description": "output format",
|
|
3162
|
+
"name": "output",
|
|
3163
|
+
"default": "text",
|
|
3164
|
+
"hasDynamicHelp": false,
|
|
3165
|
+
"multiple": false,
|
|
3166
|
+
"options": [
|
|
3167
|
+
"text",
|
|
3168
|
+
"json"
|
|
3169
|
+
],
|
|
3170
|
+
"type": "option"
|
|
3171
|
+
},
|
|
2962
3172
|
"impersonate": {
|
|
2963
3173
|
"char": "i",
|
|
2964
3174
|
"description": "impersonate organization",
|
|
@@ -2970,18 +3180,12 @@
|
|
|
2970
3180
|
"type": "option"
|
|
2971
3181
|
},
|
|
2972
3182
|
"manifest": {
|
|
3183
|
+
"char": "m",
|
|
2973
3184
|
"description": "project manifest",
|
|
3185
|
+
"hidden": true,
|
|
2974
3186
|
"name": "manifest",
|
|
2975
|
-
"default": "raindrop.manifest",
|
|
2976
|
-
"hasDynamicHelp": false,
|
|
2977
|
-
"multiple": false,
|
|
2978
|
-
"type": "option"
|
|
2979
|
-
},
|
|
2980
|
-
"version": {
|
|
2981
|
-
"char": "v",
|
|
2982
|
-
"description": "application version to sandbox",
|
|
2983
|
-
"name": "version",
|
|
2984
3187
|
"required": false,
|
|
3188
|
+
"default": "raindrop.manifest",
|
|
2985
3189
|
"hasDynamicHelp": false,
|
|
2986
3190
|
"multiple": false,
|
|
2987
3191
|
"type": "option"
|
|
@@ -2989,7 +3193,7 @@
|
|
|
2989
3193
|
},
|
|
2990
3194
|
"hasDynamicHelp": false,
|
|
2991
3195
|
"hiddenAliases": [],
|
|
2992
|
-
"id": "
|
|
3196
|
+
"id": "object:delete",
|
|
2993
3197
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2994
3198
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2995
3199
|
"pluginType": "core",
|
|
@@ -3052,16 +3256,28 @@
|
|
|
3052
3256
|
"relativePath": [
|
|
3053
3257
|
"dist",
|
|
3054
3258
|
"commands",
|
|
3055
|
-
"
|
|
3056
|
-
"
|
|
3259
|
+
"object",
|
|
3260
|
+
"delete.js"
|
|
3057
3261
|
]
|
|
3058
3262
|
},
|
|
3059
|
-
"
|
|
3263
|
+
"object:get": {
|
|
3060
3264
|
"aliases": [],
|
|
3061
|
-
"args": {
|
|
3062
|
-
|
|
3265
|
+
"args": {
|
|
3266
|
+
"key": {
|
|
3267
|
+
"description": "key/path in the bucket",
|
|
3268
|
+
"name": "key",
|
|
3269
|
+
"required": true
|
|
3270
|
+
},
|
|
3271
|
+
"output": {
|
|
3272
|
+
"description": "output file (defaults to key basename)",
|
|
3273
|
+
"name": "output",
|
|
3274
|
+
"required": false
|
|
3275
|
+
}
|
|
3276
|
+
},
|
|
3277
|
+
"description": "Download a file from the object storage",
|
|
3063
3278
|
"examples": [
|
|
3064
|
-
"<%= config.bin %>
|
|
3279
|
+
"<%= config.bin %> object get my-key --bucket my-bucket\nDownload file with key 'my-key' from my-bucket\n",
|
|
3280
|
+
"<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
|
|
3065
3281
|
],
|
|
3066
3282
|
"flags": {
|
|
3067
3283
|
"config": {
|
|
@@ -3120,50 +3336,46 @@
|
|
|
3120
3336
|
"multiple": false,
|
|
3121
3337
|
"type": "option"
|
|
3122
3338
|
},
|
|
3123
|
-
"
|
|
3124
|
-
"char": "
|
|
3125
|
-
"description": "
|
|
3126
|
-
"name": "
|
|
3127
|
-
"required":
|
|
3128
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3129
|
-
"hasDynamicHelp": false,
|
|
3130
|
-
"multiple": false,
|
|
3131
|
-
"type": "option"
|
|
3132
|
-
},
|
|
3133
|
-
"manifest": {
|
|
3134
|
-
"char": "m",
|
|
3135
|
-
"description": "project manifest",
|
|
3136
|
-
"name": "manifest",
|
|
3137
|
-
"required": false,
|
|
3138
|
-
"default": "raindrop.manifest",
|
|
3339
|
+
"bucket": {
|
|
3340
|
+
"char": "b",
|
|
3341
|
+
"description": "bucket ID",
|
|
3342
|
+
"name": "bucket",
|
|
3343
|
+
"required": true,
|
|
3139
3344
|
"hasDynamicHelp": false,
|
|
3140
3345
|
"multiple": false,
|
|
3141
3346
|
"type": "option"
|
|
3142
3347
|
},
|
|
3143
|
-
"
|
|
3144
|
-
"char": "
|
|
3145
|
-
"description": "
|
|
3146
|
-
"name": "
|
|
3147
|
-
"
|
|
3348
|
+
"format": {
|
|
3349
|
+
"char": "f",
|
|
3350
|
+
"description": "output format",
|
|
3351
|
+
"name": "format",
|
|
3352
|
+
"default": "file",
|
|
3148
3353
|
"hasDynamicHelp": false,
|
|
3149
3354
|
"multiple": false,
|
|
3355
|
+
"options": [
|
|
3356
|
+
"file",
|
|
3357
|
+
"stdout",
|
|
3358
|
+
"json"
|
|
3359
|
+
],
|
|
3150
3360
|
"type": "option"
|
|
3151
3361
|
},
|
|
3152
|
-
"
|
|
3153
|
-
"char": "
|
|
3154
|
-
"description": "
|
|
3155
|
-
"
|
|
3362
|
+
"impersonate": {
|
|
3363
|
+
"char": "i",
|
|
3364
|
+
"description": "impersonate organization",
|
|
3365
|
+
"hidden": true,
|
|
3366
|
+
"name": "impersonate",
|
|
3156
3367
|
"required": false,
|
|
3157
3368
|
"hasDynamicHelp": false,
|
|
3158
3369
|
"multiple": false,
|
|
3159
3370
|
"type": "option"
|
|
3160
3371
|
},
|
|
3161
|
-
"
|
|
3162
|
-
"char": "
|
|
3163
|
-
"description": "
|
|
3372
|
+
"manifest": {
|
|
3373
|
+
"char": "m",
|
|
3374
|
+
"description": "project manifest",
|
|
3164
3375
|
"hidden": true,
|
|
3165
|
-
"name": "
|
|
3376
|
+
"name": "manifest",
|
|
3166
3377
|
"required": false,
|
|
3378
|
+
"default": "raindrop.manifest",
|
|
3167
3379
|
"hasDynamicHelp": false,
|
|
3168
3380
|
"multiple": false,
|
|
3169
3381
|
"type": "option"
|
|
@@ -3171,7 +3383,7 @@
|
|
|
3171
3383
|
},
|
|
3172
3384
|
"hasDynamicHelp": false,
|
|
3173
3385
|
"hiddenAliases": [],
|
|
3174
|
-
"id": "
|
|
3386
|
+
"id": "object:get",
|
|
3175
3387
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3176
3388
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3177
3389
|
"pluginType": "core",
|
|
@@ -3234,16 +3446,16 @@
|
|
|
3234
3446
|
"relativePath": [
|
|
3235
3447
|
"dist",
|
|
3236
3448
|
"commands",
|
|
3237
|
-
"
|
|
3238
|
-
"
|
|
3449
|
+
"object",
|
|
3450
|
+
"get.js"
|
|
3239
3451
|
]
|
|
3240
3452
|
},
|
|
3241
|
-
"
|
|
3453
|
+
"object:list": {
|
|
3242
3454
|
"aliases": [],
|
|
3243
3455
|
"args": {},
|
|
3244
|
-
"description": "
|
|
3456
|
+
"description": "List objects in a bucket",
|
|
3245
3457
|
"examples": [
|
|
3246
|
-
"<%= config.bin %>
|
|
3458
|
+
"<%= config.bin %> object list --bucket my-bucket\nList all objects in my-bucket\n"
|
|
3247
3459
|
],
|
|
3248
3460
|
"flags": {
|
|
3249
3461
|
"config": {
|
|
@@ -3302,40 +3514,11 @@
|
|
|
3302
3514
|
"multiple": false,
|
|
3303
3515
|
"type": "option"
|
|
3304
3516
|
},
|
|
3305
|
-
"
|
|
3306
|
-
"char": "
|
|
3307
|
-
"description": "
|
|
3308
|
-
"name": "
|
|
3309
|
-
"required":
|
|
3310
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3311
|
-
"hasDynamicHelp": false,
|
|
3312
|
-
"multiple": false,
|
|
3313
|
-
"type": "option"
|
|
3314
|
-
},
|
|
3315
|
-
"manifest": {
|
|
3316
|
-
"char": "m",
|
|
3317
|
-
"description": "project manifest",
|
|
3318
|
-
"name": "manifest",
|
|
3319
|
-
"required": false,
|
|
3320
|
-
"default": "raindrop.manifest",
|
|
3321
|
-
"hasDynamicHelp": false,
|
|
3322
|
-
"multiple": false,
|
|
3323
|
-
"type": "option"
|
|
3324
|
-
},
|
|
3325
|
-
"application": {
|
|
3326
|
-
"char": "a",
|
|
3327
|
-
"description": "application",
|
|
3328
|
-
"name": "application",
|
|
3329
|
-
"required": false,
|
|
3330
|
-
"hasDynamicHelp": false,
|
|
3331
|
-
"multiple": false,
|
|
3332
|
-
"type": "option"
|
|
3333
|
-
},
|
|
3334
|
-
"version": {
|
|
3335
|
-
"char": "v",
|
|
3336
|
-
"description": "application version",
|
|
3337
|
-
"name": "version",
|
|
3338
|
-
"required": false,
|
|
3517
|
+
"bucket": {
|
|
3518
|
+
"char": "b",
|
|
3519
|
+
"description": "bucket ID",
|
|
3520
|
+
"name": "bucket",
|
|
3521
|
+
"required": true,
|
|
3339
3522
|
"hasDynamicHelp": false,
|
|
3340
3523
|
"multiple": false,
|
|
3341
3524
|
"type": "option"
|
|
@@ -3344,25 +3527,16 @@
|
|
|
3344
3527
|
"char": "o",
|
|
3345
3528
|
"description": "output format",
|
|
3346
3529
|
"name": "output",
|
|
3347
|
-
"default": "
|
|
3530
|
+
"default": "text",
|
|
3348
3531
|
"hasDynamicHelp": false,
|
|
3349
3532
|
"multiple": false,
|
|
3350
3533
|
"options": [
|
|
3351
|
-
"
|
|
3352
|
-
"
|
|
3353
|
-
"
|
|
3534
|
+
"text",
|
|
3535
|
+
"json",
|
|
3536
|
+
"table"
|
|
3354
3537
|
],
|
|
3355
3538
|
"type": "option"
|
|
3356
3539
|
},
|
|
3357
|
-
"sudo": {
|
|
3358
|
-
"char": "s",
|
|
3359
|
-
"description": "superuser mode",
|
|
3360
|
-
"hidden": true,
|
|
3361
|
-
"name": "sudo",
|
|
3362
|
-
"required": false,
|
|
3363
|
-
"allowNo": false,
|
|
3364
|
-
"type": "boolean"
|
|
3365
|
-
},
|
|
3366
3540
|
"impersonate": {
|
|
3367
3541
|
"char": "i",
|
|
3368
3542
|
"description": "impersonate organization",
|
|
@@ -3372,11 +3546,22 @@
|
|
|
3372
3546
|
"hasDynamicHelp": false,
|
|
3373
3547
|
"multiple": false,
|
|
3374
3548
|
"type": "option"
|
|
3549
|
+
},
|
|
3550
|
+
"manifest": {
|
|
3551
|
+
"char": "m",
|
|
3552
|
+
"description": "project manifest",
|
|
3553
|
+
"hidden": true,
|
|
3554
|
+
"name": "manifest",
|
|
3555
|
+
"required": false,
|
|
3556
|
+
"default": "raindrop.manifest",
|
|
3557
|
+
"hasDynamicHelp": false,
|
|
3558
|
+
"multiple": false,
|
|
3559
|
+
"type": "option"
|
|
3375
3560
|
}
|
|
3376
3561
|
},
|
|
3377
3562
|
"hasDynamicHelp": false,
|
|
3378
3563
|
"hiddenAliases": [],
|
|
3379
|
-
"id": "
|
|
3564
|
+
"id": "object:list",
|
|
3380
3565
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3381
3566
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3382
3567
|
"pluginType": "core",
|
|
@@ -3439,16 +3624,27 @@
|
|
|
3439
3624
|
"relativePath": [
|
|
3440
3625
|
"dist",
|
|
3441
3626
|
"commands",
|
|
3442
|
-
"
|
|
3443
|
-
"
|
|
3627
|
+
"object",
|
|
3628
|
+
"list.js"
|
|
3444
3629
|
]
|
|
3445
3630
|
},
|
|
3446
|
-
"
|
|
3631
|
+
"object:put": {
|
|
3447
3632
|
"aliases": [],
|
|
3448
|
-
"args": {
|
|
3449
|
-
|
|
3633
|
+
"args": {
|
|
3634
|
+
"file": {
|
|
3635
|
+
"description": "file to upload",
|
|
3636
|
+
"name": "file",
|
|
3637
|
+
"required": true
|
|
3638
|
+
},
|
|
3639
|
+
"key": {
|
|
3640
|
+
"description": "key/path in the bucket",
|
|
3641
|
+
"name": "key",
|
|
3642
|
+
"required": true
|
|
3643
|
+
}
|
|
3644
|
+
},
|
|
3645
|
+
"description": "Upload a file to the object storage",
|
|
3450
3646
|
"examples": [
|
|
3451
|
-
"<%= config.bin %>
|
|
3647
|
+
"<%= config.bin %> object put ./myfile.txt my-key --bucket my-bucket\nUpload myfile.txt to my-bucket with key 'my-key'\n"
|
|
3452
3648
|
],
|
|
3453
3649
|
"flags": {
|
|
3454
3650
|
"config": {
|
|
@@ -3507,42 +3703,35 @@
|
|
|
3507
3703
|
"multiple": false,
|
|
3508
3704
|
"type": "option"
|
|
3509
3705
|
},
|
|
3510
|
-
"
|
|
3511
|
-
"char": "
|
|
3512
|
-
"description": "
|
|
3513
|
-
"name": "
|
|
3514
|
-
"required":
|
|
3515
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3516
|
-
"hasDynamicHelp": false,
|
|
3517
|
-
"multiple": false,
|
|
3518
|
-
"type": "option"
|
|
3519
|
-
},
|
|
3520
|
-
"manifest": {
|
|
3521
|
-
"char": "m",
|
|
3522
|
-
"description": "project manifest",
|
|
3523
|
-
"name": "manifest",
|
|
3524
|
-
"required": false,
|
|
3525
|
-
"default": "raindrop.manifest",
|
|
3706
|
+
"bucket": {
|
|
3707
|
+
"char": "b",
|
|
3708
|
+
"description": "bucket ID",
|
|
3709
|
+
"name": "bucket",
|
|
3710
|
+
"required": true,
|
|
3526
3711
|
"hasDynamicHelp": false,
|
|
3527
3712
|
"multiple": false,
|
|
3528
3713
|
"type": "option"
|
|
3529
3714
|
},
|
|
3530
|
-
"
|
|
3531
|
-
"char": "
|
|
3532
|
-
"description": "
|
|
3533
|
-
"name": "
|
|
3715
|
+
"contentType": {
|
|
3716
|
+
"char": "t",
|
|
3717
|
+
"description": "content type of the file",
|
|
3718
|
+
"name": "contentType",
|
|
3534
3719
|
"required": false,
|
|
3535
3720
|
"hasDynamicHelp": false,
|
|
3536
3721
|
"multiple": false,
|
|
3537
3722
|
"type": "option"
|
|
3538
3723
|
},
|
|
3539
|
-
"
|
|
3540
|
-
"char": "
|
|
3541
|
-
"description": "
|
|
3542
|
-
"name": "
|
|
3543
|
-
"
|
|
3724
|
+
"output": {
|
|
3725
|
+
"char": "o",
|
|
3726
|
+
"description": "output format",
|
|
3727
|
+
"name": "output",
|
|
3728
|
+
"default": "text",
|
|
3544
3729
|
"hasDynamicHelp": false,
|
|
3545
3730
|
"multiple": false,
|
|
3731
|
+
"options": [
|
|
3732
|
+
"text",
|
|
3733
|
+
"json"
|
|
3734
|
+
],
|
|
3546
3735
|
"type": "option"
|
|
3547
3736
|
},
|
|
3548
3737
|
"impersonate": {
|
|
@@ -3554,11 +3743,22 @@
|
|
|
3554
3743
|
"hasDynamicHelp": false,
|
|
3555
3744
|
"multiple": false,
|
|
3556
3745
|
"type": "option"
|
|
3746
|
+
},
|
|
3747
|
+
"manifest": {
|
|
3748
|
+
"char": "m",
|
|
3749
|
+
"description": "project manifest",
|
|
3750
|
+
"hidden": true,
|
|
3751
|
+
"name": "manifest",
|
|
3752
|
+
"required": false,
|
|
3753
|
+
"default": "raindrop.manifest",
|
|
3754
|
+
"hasDynamicHelp": false,
|
|
3755
|
+
"multiple": false,
|
|
3756
|
+
"type": "option"
|
|
3557
3757
|
}
|
|
3558
3758
|
},
|
|
3559
3759
|
"hasDynamicHelp": false,
|
|
3560
3760
|
"hiddenAliases": [],
|
|
3561
|
-
"id": "
|
|
3761
|
+
"id": "object:put",
|
|
3562
3762
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3563
3763
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3564
3764
|
"pluginType": "core",
|
|
@@ -3621,16 +3821,22 @@
|
|
|
3621
3821
|
"relativePath": [
|
|
3622
3822
|
"dist",
|
|
3623
3823
|
"commands",
|
|
3624
|
-
"
|
|
3625
|
-
"
|
|
3824
|
+
"object",
|
|
3825
|
+
"put.js"
|
|
3626
3826
|
]
|
|
3627
3827
|
},
|
|
3628
|
-
"
|
|
3828
|
+
"query:chunk-search": {
|
|
3629
3829
|
"aliases": [],
|
|
3630
|
-
"args": {
|
|
3631
|
-
|
|
3830
|
+
"args": {
|
|
3831
|
+
"query": {
|
|
3832
|
+
"description": "search query to run",
|
|
3833
|
+
"name": "query",
|
|
3834
|
+
"required": true
|
|
3835
|
+
}
|
|
3836
|
+
},
|
|
3837
|
+
"description": "Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket",
|
|
3632
3838
|
"examples": [
|
|
3633
|
-
"<%= config.bin %>
|
|
3839
|
+
"<%= config.bin %> query chunk-search \"What is LiquidMetal?\"\nRun a RAG search query against a Smart Bucket.\n"
|
|
3634
3840
|
],
|
|
3635
3841
|
"flags": {
|
|
3636
3842
|
"config": {
|
|
@@ -3689,6 +3895,19 @@
|
|
|
3689
3895
|
"multiple": false,
|
|
3690
3896
|
"type": "option"
|
|
3691
3897
|
},
|
|
3898
|
+
"output": {
|
|
3899
|
+
"char": "o",
|
|
3900
|
+
"description": "output format",
|
|
3901
|
+
"name": "output",
|
|
3902
|
+
"default": "text",
|
|
3903
|
+
"hasDynamicHelp": false,
|
|
3904
|
+
"multiple": false,
|
|
3905
|
+
"options": [
|
|
3906
|
+
"text",
|
|
3907
|
+
"json"
|
|
3908
|
+
],
|
|
3909
|
+
"type": "option"
|
|
3910
|
+
},
|
|
3692
3911
|
"impersonate": {
|
|
3693
3912
|
"char": "i",
|
|
3694
3913
|
"description": "impersonate organization",
|
|
@@ -3700,18 +3919,12 @@
|
|
|
3700
3919
|
"type": "option"
|
|
3701
3920
|
},
|
|
3702
3921
|
"manifest": {
|
|
3922
|
+
"char": "m",
|
|
3703
3923
|
"description": "project manifest",
|
|
3924
|
+
"hidden": true,
|
|
3704
3925
|
"name": "manifest",
|
|
3705
|
-
"default": "raindrop.manifest",
|
|
3706
|
-
"hasDynamicHelp": false,
|
|
3707
|
-
"multiple": false,
|
|
3708
|
-
"type": "option"
|
|
3709
|
-
},
|
|
3710
|
-
"version": {
|
|
3711
|
-
"char": "v",
|
|
3712
|
-
"description": "application version to unsandbox",
|
|
3713
|
-
"name": "version",
|
|
3714
3926
|
"required": false,
|
|
3927
|
+
"default": "raindrop.manifest",
|
|
3715
3928
|
"hasDynamicHelp": false,
|
|
3716
3929
|
"multiple": false,
|
|
3717
3930
|
"type": "option"
|
|
@@ -3719,7 +3932,7 @@
|
|
|
3719
3932
|
},
|
|
3720
3933
|
"hasDynamicHelp": false,
|
|
3721
3934
|
"hiddenAliases": [],
|
|
3722
|
-
"id": "
|
|
3935
|
+
"id": "query:chunk-search",
|
|
3723
3936
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3724
3937
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3725
3938
|
"pluginType": "core",
|
|
@@ -3782,16 +3995,23 @@
|
|
|
3782
3995
|
"relativePath": [
|
|
3783
3996
|
"dist",
|
|
3784
3997
|
"commands",
|
|
3785
|
-
"
|
|
3786
|
-
"
|
|
3998
|
+
"query",
|
|
3999
|
+
"chunk-search.js"
|
|
3787
4000
|
]
|
|
3788
4001
|
},
|
|
3789
|
-
"
|
|
4002
|
+
"query:search": {
|
|
3790
4003
|
"aliases": [],
|
|
3791
|
-
"args": {
|
|
3792
|
-
|
|
4004
|
+
"args": {
|
|
4005
|
+
"query": {
|
|
4006
|
+
"description": "search query",
|
|
4007
|
+
"name": "query",
|
|
4008
|
+
"required": false
|
|
4009
|
+
}
|
|
4010
|
+
},
|
|
4011
|
+
"description": "Run a search query against a smart bucket using natural language",
|
|
3793
4012
|
"examples": [
|
|
3794
|
-
"<%= config.bin %>
|
|
4013
|
+
"<%= config.bin %> query search \"What is LiquidMetal?\" --buckets my-bucket-1 my-bucket-2\nRun a new supervisor agent search query across multiple buckets.\n",
|
|
4014
|
+
"<%= config.bin %> query search --requestId 01HNG4V2RJXS5T --page 2\nGet page 2 of previous search results.\n"
|
|
3795
4015
|
],
|
|
3796
4016
|
"flags": {
|
|
3797
4017
|
"config": {
|
|
@@ -3850,43 +4070,43 @@
|
|
|
3850
4070
|
"multiple": false,
|
|
3851
4071
|
"type": "option"
|
|
3852
4072
|
},
|
|
3853
|
-
"
|
|
3854
|
-
"char": "
|
|
3855
|
-
"description": "
|
|
3856
|
-
"name": "
|
|
4073
|
+
"buckets": {
|
|
4074
|
+
"char": "b",
|
|
4075
|
+
"description": "bucket IDs to search in",
|
|
4076
|
+
"name": "buckets",
|
|
3857
4077
|
"required": false,
|
|
3858
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3859
4078
|
"hasDynamicHelp": false,
|
|
3860
|
-
"multiple":
|
|
4079
|
+
"multiple": true,
|
|
3861
4080
|
"type": "option"
|
|
3862
4081
|
},
|
|
3863
|
-
"
|
|
3864
|
-
"
|
|
3865
|
-
"
|
|
3866
|
-
"name": "manifest",
|
|
4082
|
+
"requestId": {
|
|
4083
|
+
"description": "request ID for pagination",
|
|
4084
|
+
"name": "requestId",
|
|
3867
4085
|
"required": false,
|
|
3868
|
-
"default": "raindrop.manifest",
|
|
3869
4086
|
"hasDynamicHelp": false,
|
|
3870
4087
|
"multiple": false,
|
|
3871
4088
|
"type": "option"
|
|
3872
4089
|
},
|
|
3873
|
-
"
|
|
3874
|
-
"char": "
|
|
3875
|
-
"description": "
|
|
3876
|
-
"name": "
|
|
3877
|
-
"
|
|
3878
|
-
"default": "dist",
|
|
4090
|
+
"page": {
|
|
4091
|
+
"char": "p",
|
|
4092
|
+
"description": "page number for paginated results",
|
|
4093
|
+
"name": "page",
|
|
4094
|
+
"default": 1,
|
|
3879
4095
|
"hasDynamicHelp": false,
|
|
3880
4096
|
"multiple": false,
|
|
3881
4097
|
"type": "option"
|
|
3882
4098
|
},
|
|
3883
|
-
"
|
|
3884
|
-
"char": "
|
|
3885
|
-
"description": "
|
|
3886
|
-
"name": "
|
|
3887
|
-
"
|
|
4099
|
+
"output": {
|
|
4100
|
+
"char": "o",
|
|
4101
|
+
"description": "output format",
|
|
4102
|
+
"name": "output",
|
|
4103
|
+
"default": "text",
|
|
3888
4104
|
"hasDynamicHelp": false,
|
|
3889
4105
|
"multiple": false,
|
|
4106
|
+
"options": [
|
|
4107
|
+
"text",
|
|
4108
|
+
"json"
|
|
4109
|
+
],
|
|
3890
4110
|
"type": "option"
|
|
3891
4111
|
},
|
|
3892
4112
|
"impersonate": {
|
|
@@ -3898,130 +4118,22 @@
|
|
|
3898
4118
|
"hasDynamicHelp": false,
|
|
3899
4119
|
"multiple": false,
|
|
3900
4120
|
"type": "option"
|
|
3901
|
-
}
|
|
3902
|
-
},
|
|
3903
|
-
"hasDynamicHelp": false,
|
|
3904
|
-
"hiddenAliases": [],
|
|
3905
|
-
"id": "build:upload",
|
|
3906
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
3907
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
3908
|
-
"pluginType": "core",
|
|
3909
|
-
"strict": true,
|
|
3910
|
-
"enableJsonFlag": false,
|
|
3911
|
-
"HIDDEN_FLAGS": {
|
|
3912
|
-
"config": {
|
|
3913
|
-
"char": "c",
|
|
3914
|
-
"description": "config file",
|
|
3915
|
-
"required": false,
|
|
3916
|
-
"hidden": true,
|
|
3917
|
-
"default": ".raindrop/config.json",
|
|
3918
|
-
"input": [],
|
|
3919
|
-
"multiple": false,
|
|
3920
|
-
"type": "option"
|
|
3921
|
-
},
|
|
3922
|
-
"rainbowAuthService": {
|
|
3923
|
-
"default": "https://raindrop.liquidmetal.run/",
|
|
3924
|
-
"hidden": true,
|
|
3925
|
-
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
3926
|
-
"input": [],
|
|
3927
|
-
"multiple": false,
|
|
3928
|
-
"type": "option"
|
|
3929
|
-
},
|
|
3930
|
-
"raindropCatalogService": {
|
|
3931
|
-
"env": "RAINDROP_CATALOG_SERVICE",
|
|
3932
|
-
"description": "URL of the catalog service",
|
|
3933
|
-
"hidden": true,
|
|
3934
|
-
"input": [],
|
|
3935
|
-
"multiple": false,
|
|
3936
|
-
"type": "option"
|
|
3937
|
-
},
|
|
3938
|
-
"rainbowAuthToken": {
|
|
3939
|
-
"env": "RAINBOW_AUTH_TOKEN",
|
|
3940
|
-
"description": "Override the Rainbow auth token derived from the CLI config",
|
|
3941
|
-
"hidden": true,
|
|
3942
|
-
"input": [],
|
|
3943
|
-
"multiple": false,
|
|
3944
|
-
"type": "option"
|
|
3945
|
-
},
|
|
3946
|
-
"rainbowOrganizationId": {
|
|
3947
|
-
"env": "RAINBOW_ORGANIZATION_ID",
|
|
3948
|
-
"description": "Override the Rainbow organization ID derived from the CLI config",
|
|
3949
|
-
"hidden": true,
|
|
3950
|
-
"input": [],
|
|
3951
|
-
"multiple": false,
|
|
3952
|
-
"type": "option"
|
|
3953
|
-
},
|
|
3954
|
-
"rainbowUserId": {
|
|
3955
|
-
"env": "RAINBOW_USER_ID",
|
|
3956
|
-
"description": "Override the Rainbow user ID derived from the CLI config",
|
|
3957
|
-
"hidden": true,
|
|
3958
|
-
"input": [],
|
|
3959
|
-
"multiple": false,
|
|
3960
|
-
"type": "option"
|
|
3961
|
-
}
|
|
3962
|
-
},
|
|
3963
|
-
"baseArgs": {},
|
|
3964
|
-
"isESM": true,
|
|
3965
|
-
"relativePath": [
|
|
3966
|
-
"dist",
|
|
3967
|
-
"commands",
|
|
3968
|
-
"build",
|
|
3969
|
-
"upload.js"
|
|
3970
|
-
]
|
|
3971
|
-
},
|
|
3972
|
-
"build:validate": {
|
|
3973
|
-
"aliases": [],
|
|
3974
|
-
"args": {},
|
|
3975
|
-
"description": "build and validate a LiquidMetal.AI project",
|
|
3976
|
-
"examples": [
|
|
3977
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3978
|
-
],
|
|
3979
|
-
"flags": {
|
|
3980
|
-
"root": {
|
|
3981
|
-
"char": "r",
|
|
3982
|
-
"description": "root directory",
|
|
3983
|
-
"name": "root",
|
|
3984
|
-
"required": false,
|
|
3985
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
3986
|
-
"hasDynamicHelp": false,
|
|
3987
|
-
"multiple": false,
|
|
3988
|
-
"type": "option"
|
|
3989
4121
|
},
|
|
3990
4122
|
"manifest": {
|
|
3991
4123
|
"char": "m",
|
|
3992
4124
|
"description": "project manifest",
|
|
4125
|
+
"hidden": true,
|
|
3993
4126
|
"name": "manifest",
|
|
3994
4127
|
"required": false,
|
|
3995
4128
|
"default": "raindrop.manifest",
|
|
3996
4129
|
"hasDynamicHelp": false,
|
|
3997
4130
|
"multiple": false,
|
|
3998
4131
|
"type": "option"
|
|
3999
|
-
},
|
|
4000
|
-
"config": {
|
|
4001
|
-
"char": "c",
|
|
4002
|
-
"description": "config file",
|
|
4003
|
-
"hidden": true,
|
|
4004
|
-
"name": "config",
|
|
4005
|
-
"required": false,
|
|
4006
|
-
"default": ".raindrop/config.json",
|
|
4007
|
-
"hasDynamicHelp": false,
|
|
4008
|
-
"multiple": false,
|
|
4009
|
-
"type": "option"
|
|
4010
|
-
},
|
|
4011
|
-
"output": {
|
|
4012
|
-
"char": "o",
|
|
4013
|
-
"description": "output directory",
|
|
4014
|
-
"name": "output",
|
|
4015
|
-
"required": false,
|
|
4016
|
-
"default": "dist",
|
|
4017
|
-
"hasDynamicHelp": false,
|
|
4018
|
-
"multiple": false,
|
|
4019
|
-
"type": "option"
|
|
4020
4132
|
}
|
|
4021
4133
|
},
|
|
4022
4134
|
"hasDynamicHelp": false,
|
|
4023
4135
|
"hiddenAliases": [],
|
|
4024
|
-
"id": "
|
|
4136
|
+
"id": "query:search",
|
|
4025
4137
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
4026
4138
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
4027
4139
|
"pluginType": "core",
|
|
@@ -4084,8 +4196,8 @@
|
|
|
4084
4196
|
"relativePath": [
|
|
4085
4197
|
"dist",
|
|
4086
4198
|
"commands",
|
|
4087
|
-
"
|
|
4088
|
-
"
|
|
4199
|
+
"query",
|
|
4200
|
+
"search.js"
|
|
4089
4201
|
]
|
|
4090
4202
|
},
|
|
4091
4203
|
"build:env:get": {
|
|
@@ -4684,5 +4796,5 @@
|
|
|
4684
4796
|
]
|
|
4685
4797
|
}
|
|
4686
4798
|
},
|
|
4687
|
-
"version": "0.3.
|
|
4799
|
+
"version": "0.3.3"
|
|
4688
4800
|
}
|