@liquidmetal-ai/raindrop 0.1.5 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/README.md +261 -53
  2. package/dist/base-command.d.ts +13 -0
  3. package/dist/base-command.d.ts.map +1 -1
  4. package/dist/base-command.js +21 -1
  5. package/dist/build.d.ts +2 -3
  6. package/dist/build.d.ts.map +1 -1
  7. package/dist/build.js +1 -1
  8. package/dist/codegen.d.ts.map +1 -1
  9. package/dist/codegen.js +12 -0
  10. package/dist/commands/build/branch.d.ts +6 -3
  11. package/dist/commands/build/branch.d.ts.map +1 -1
  12. package/dist/commands/build/branch.js +107 -44
  13. package/dist/commands/build/checkout.d.ts +16 -0
  14. package/dist/commands/build/checkout.d.ts.map +1 -0
  15. package/dist/commands/build/checkout.js +66 -0
  16. package/dist/commands/build/delete.d.ts.map +1 -1
  17. package/dist/commands/build/delete.js +8 -7
  18. package/dist/commands/build/deploy.d.ts.map +1 -1
  19. package/dist/commands/build/deploy.js +84 -92
  20. package/dist/commands/build/env/get.d.ts.map +1 -1
  21. package/dist/commands/build/env/get.js +10 -9
  22. package/dist/commands/build/env/set.d.ts.map +1 -1
  23. package/dist/commands/build/env/set.js +10 -9
  24. package/dist/commands/build/find.d.ts.map +1 -1
  25. package/dist/commands/build/find.js +2 -7
  26. package/dist/commands/build/list.d.ts +15 -2
  27. package/dist/commands/build/list.d.ts.map +1 -1
  28. package/dist/commands/build/list.js +147 -35
  29. package/dist/commands/build/sandbox.d.ts.map +1 -1
  30. package/dist/commands/build/sandbox.js +12 -12
  31. package/dist/commands/build/start.d.ts.map +1 -1
  32. package/dist/commands/build/start.js +15 -17
  33. package/dist/commands/build/status.d.ts +2 -16
  34. package/dist/commands/build/status.d.ts.map +1 -1
  35. package/dist/commands/build/status.js +30 -64
  36. package/dist/commands/build/stop.d.ts.map +1 -1
  37. package/dist/commands/build/stop.js +17 -21
  38. package/dist/commands/build/unsandbox.d.ts.map +1 -1
  39. package/dist/commands/build/unsandbox.js +13 -13
  40. package/dist/commands/object/delete.d.ts +18 -0
  41. package/dist/commands/object/delete.d.ts.map +1 -0
  42. package/dist/commands/object/delete.js +66 -0
  43. package/dist/commands/object/get.d.ts +21 -0
  44. package/dist/commands/object/get.d.ts.map +1 -0
  45. package/dist/commands/object/get.js +95 -0
  46. package/dist/commands/object/list.d.ts +15 -0
  47. package/dist/commands/object/list.d.ts.map +1 -0
  48. package/dist/commands/object/list.js +79 -0
  49. package/dist/commands/object/put.d.ts +23 -0
  50. package/dist/commands/object/put.d.ts.map +1 -0
  51. package/dist/commands/object/put.js +99 -0
  52. package/dist/commands/query/chunk-search.d.ts +18 -0
  53. package/dist/commands/query/chunk-search.d.ts.map +1 -0
  54. package/dist/commands/query/chunk-search.js +79 -0
  55. package/dist/commands/query/register-retriever.d.ts +16 -0
  56. package/dist/commands/query/register-retriever.d.ts.map +1 -0
  57. package/dist/commands/query/register-retriever.js +56 -0
  58. package/dist/commands/query/search.d.ts +19 -0
  59. package/dist/commands/query/search.d.ts.map +1 -0
  60. package/dist/commands/query/search.js +124 -0
  61. package/dist/commands/tail.d.ts +1 -5
  62. package/dist/commands/tail.d.ts.map +1 -1
  63. package/dist/commands/tail.js +2 -50
  64. package/dist/config.d.ts +3 -3
  65. package/dist/config.js +2 -2
  66. package/dist/config.test.js +1 -1
  67. package/dist/index.d.ts +27 -5
  68. package/dist/index.d.ts.map +1 -1
  69. package/dist/index.js +36 -6
  70. package/dist/tsconfig.tsbuildinfo +1 -1
  71. package/oclif.manifest.json +755 -82
  72. package/package.json +2 -1
  73. package/templates/handlers/queue-consumer/index.ts.hbs +1 -1
  74. package/templates/handlers/r2-event-notification/index.ts.hbs +1 -1
  75. package/templates/handlers/task/index.test.ts +5 -0
  76. package/templates/handlers/task/index.ts.hbs +8 -0
  77. package/dist/commands/build/token.d.ts +0 -9
  78. package/dist/commands/build/token.d.ts.map +0 -1
  79. package/dist/commands/build/token.js +0 -42
@@ -4,36 +4,7 @@
4
4
  "aliases": [],
5
5
  "args": {},
6
6
  "description": "tail logs of applications deployed",
7
- "flags": {
8
- "impersonate": {
9
- "char": "i",
10
- "description": "impersonate organization",
11
- "hidden": true,
12
- "name": "impersonate",
13
- "required": false,
14
- "hasDynamicHelp": false,
15
- "multiple": false,
16
- "type": "option"
17
- },
18
- "rainbowAuthService": {
19
- "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
20
- "hidden": true,
21
- "name": "rainbowAuthService",
22
- "default": "https://liquidmetal.run/api/connect",
23
- "hasDynamicHelp": false,
24
- "multiple": false,
25
- "type": "option"
26
- },
27
- "rainbowPublicService": {
28
- "env": "LIQUIDMETAL_RAINBOW_PUBLIC_SERVICE",
29
- "hidden": true,
30
- "name": "rainbowPublicService",
31
- "default": "https://rainbow-service-production.liquidmetal.run",
32
- "hasDynamicHelp": false,
33
- "multiple": false,
34
- "type": "option"
35
- }
36
- },
7
+ "flags": {},
37
8
  "hasDynamicHelp": false,
38
9
  "hiddenAliases": [],
39
10
  "id": "tail",
@@ -42,6 +13,7 @@
42
13
  "pluginType": "core",
43
14
  "strict": true,
44
15
  "enableJsonFlag": false,
16
+ "baseArgs": {},
45
17
  "isESM": true,
46
18
  "relativePath": [
47
19
  "dist",
@@ -77,6 +49,7 @@
77
49
  "pluginType": "core",
78
50
  "strict": true,
79
51
  "enableJsonFlag": false,
52
+ "baseArgs": {},
80
53
  "isESM": true,
81
54
  "relativePath": [
82
55
  "dist",
@@ -108,6 +81,7 @@
108
81
  "pluginType": "core",
109
82
  "strict": true,
110
83
  "enableJsonFlag": false,
84
+ "baseArgs": {},
111
85
  "isESM": true,
112
86
  "relativePath": [
113
87
  "dist",
@@ -129,6 +103,7 @@
129
103
  "pluginType": "core",
130
104
  "strict": true,
131
105
  "enableJsonFlag": false,
106
+ "baseArgs": {},
132
107
  "isESM": true,
133
108
  "relativePath": [
134
109
  "dist",
@@ -158,6 +133,7 @@
158
133
  "pluginType": "core",
159
134
  "strict": true,
160
135
  "enableJsonFlag": false,
136
+ "baseArgs": {},
161
137
  "isESM": true,
162
138
  "relativePath": [
163
139
  "dist",
@@ -168,7 +144,13 @@
168
144
  },
169
145
  "build:branch": {
170
146
  "aliases": [],
171
- "args": {},
147
+ "args": {
148
+ "branch": {
149
+ "description": "branch name",
150
+ "name": "branch",
151
+ "required": true
152
+ }
153
+ },
172
154
  "description": "create a new branch in the Raindrop catalog",
173
155
  "examples": [
174
156
  "<%= config.bin %> <%= command.id %> .\nCreated new branch 1234\n"
@@ -205,33 +187,35 @@
205
187
  "multiple": false,
206
188
  "type": "option"
207
189
  },
208
- "previousVersionId": {
209
- "aliases": [
210
- "prev"
211
- ],
212
- "char": "p",
213
- "description": "previous version ID",
214
- "exclusive": [
215
- "select"
216
- ],
217
- "name": "previousVersionId",
190
+ "output": {
191
+ "char": "o",
192
+ "description": "output directory",
193
+ "name": "output",
218
194
  "required": false,
195
+ "default": "dist",
219
196
  "hasDynamicHelp": false,
220
197
  "multiple": false,
221
198
  "type": "option"
222
199
  },
223
- "select": {
224
- "char": "s",
225
- "description": "select a specific version ID",
226
- "exclusive": [
227
- "previousVersionId"
200
+ "versionId": {
201
+ "aliases": [
202
+ "version"
228
203
  ],
229
- "name": "select",
204
+ "char": "p",
205
+ "description": "Branch from this version",
206
+ "name": "versionId",
230
207
  "required": false,
231
208
  "hasDynamicHelp": false,
232
209
  "multiple": false,
233
210
  "type": "option"
234
211
  },
212
+ "start": {
213
+ "description": "Start the application",
214
+ "name": "start",
215
+ "required": false,
216
+ "allowNo": false,
217
+ "type": "boolean"
218
+ },
235
219
  "impersonate": {
236
220
  "char": "i",
237
221
  "description": "impersonate organization",
@@ -276,6 +260,7 @@
276
260
  "pluginType": "core",
277
261
  "strict": true,
278
262
  "enableJsonFlag": false,
263
+ "baseArgs": {},
279
264
  "isESM": true,
280
265
  "relativePath": [
281
266
  "dist",
@@ -284,6 +269,77 @@
284
269
  "branch.js"
285
270
  ]
286
271
  },
272
+ "build:checkout": {
273
+ "aliases": [],
274
+ "args": {
275
+ "version": {
276
+ "description": "version id",
277
+ "name": "version",
278
+ "required": false
279
+ }
280
+ },
281
+ "description": "switch the current context to a specific version",
282
+ "examples": [
283
+ "<%= config.bin %> <%= command.id %>\nCurrently on version: 01jac6p20m4gahn1kaa2mhm2js\n\n<%= config.bin %> <%= command.id %> 01jux6z20m4gbhn5kaa4mcm2jr\nSwitched to version: 01jux6z20m4gbhn5kaa4mcm2jr\n"
284
+ ],
285
+ "flags": {
286
+ "config": {
287
+ "char": "c",
288
+ "description": "config file",
289
+ "hidden": true,
290
+ "name": "config",
291
+ "required": false,
292
+ "default": ".raindrop/config.json",
293
+ "hasDynamicHelp": false,
294
+ "multiple": false,
295
+ "type": "option"
296
+ },
297
+ "output": {
298
+ "char": "o",
299
+ "description": "output format",
300
+ "name": "output",
301
+ "required": false,
302
+ "default": "text",
303
+ "hasDynamicHelp": false,
304
+ "multiple": false,
305
+ "type": "option"
306
+ },
307
+ "rainbowAuthService": {
308
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
309
+ "hidden": true,
310
+ "name": "rainbowAuthService",
311
+ "default": "https://liquidmetal.run/api/connect",
312
+ "hasDynamicHelp": false,
313
+ "multiple": false,
314
+ "type": "option"
315
+ },
316
+ "raindropCatalogService": {
317
+ "description": "URL of the catalog service",
318
+ "env": "RAINDROP_CATALOG_SERVICE",
319
+ "hidden": true,
320
+ "name": "raindropCatalogService",
321
+ "hasDynamicHelp": false,
322
+ "multiple": false,
323
+ "type": "option"
324
+ }
325
+ },
326
+ "hasDynamicHelp": false,
327
+ "hiddenAliases": [],
328
+ "id": "build:checkout",
329
+ "pluginAlias": "@liquidmetal-ai/raindrop",
330
+ "pluginName": "@liquidmetal-ai/raindrop",
331
+ "pluginType": "core",
332
+ "strict": true,
333
+ "enableJsonFlag": false,
334
+ "baseArgs": {},
335
+ "isESM": true,
336
+ "relativePath": [
337
+ "dist",
338
+ "commands",
339
+ "build",
340
+ "checkout.js"
341
+ ]
342
+ },
287
343
  "build:delete": {
288
344
  "aliases": [],
289
345
  "args": {
@@ -403,6 +459,7 @@
403
459
  "pluginType": "core",
404
460
  "strict": true,
405
461
  "enableJsonFlag": false,
462
+ "baseArgs": {},
406
463
  "isESM": true,
407
464
  "relativePath": [
408
465
  "dist",
@@ -525,6 +582,7 @@
525
582
  "pluginType": "core",
526
583
  "strict": true,
527
584
  "enableJsonFlag": false,
585
+ "baseArgs": {},
528
586
  "isESM": true,
529
587
  "relativePath": [
530
588
  "dist",
@@ -650,6 +708,7 @@
650
708
  "pluginType": "core",
651
709
  "strict": true,
652
710
  "enableJsonFlag": false,
711
+ "baseArgs": {},
653
712
  "isESM": true,
654
713
  "relativePath": [
655
714
  "dist",
@@ -715,6 +774,7 @@
715
774
  "pluginType": "core",
716
775
  "strict": true,
717
776
  "enableJsonFlag": false,
777
+ "baseArgs": {},
718
778
  "isESM": true,
719
779
  "relativePath": [
720
780
  "dist",
@@ -753,6 +813,7 @@
753
813
  "pluginType": "core",
754
814
  "strict": true,
755
815
  "enableJsonFlag": false,
816
+ "baseArgs": {},
756
817
  "isESM": true,
757
818
  "relativePath": [
758
819
  "dist",
@@ -769,18 +830,9 @@
769
830
  "<%= config.bin %> <%= command.id %> .\nList Raindrop catalog resources.\n"
770
831
  ],
771
832
  "flags": {
772
- "type": {
773
- "char": "t",
774
- "description": "resource type",
775
- "name": "type",
776
- "default": "application",
777
- "hasDynamicHelp": false,
778
- "multiple": false,
779
- "type": "option"
780
- },
781
833
  "all": {
782
834
  "char": "a",
783
- "description": "show even deleted resources",
835
+ "description": "show deleted resources",
784
836
  "name": "all",
785
837
  "allowNo": false,
786
838
  "type": "boolean"
@@ -795,7 +847,8 @@
795
847
  "options": [
796
848
  "text",
797
849
  "table",
798
- "json"
850
+ "json",
851
+ "log"
799
852
  ],
800
853
  "type": "option"
801
854
  },
@@ -847,6 +900,7 @@
847
900
  "pluginType": "core",
848
901
  "strict": true,
849
902
  "enableJsonFlag": false,
903
+ "baseArgs": {},
850
904
  "isESM": true,
851
905
  "relativePath": [
852
906
  "dist",
@@ -922,6 +976,7 @@
922
976
  "pluginType": "core",
923
977
  "strict": true,
924
978
  "enableJsonFlag": false,
979
+ "baseArgs": {},
925
980
  "isESM": true,
926
981
  "relativePath": [
927
982
  "dist",
@@ -1024,6 +1079,7 @@
1024
1079
  "pluginType": "core",
1025
1080
  "strict": true,
1026
1081
  "enableJsonFlag": false,
1082
+ "baseArgs": {},
1027
1083
  "isESM": true,
1028
1084
  "relativePath": [
1029
1085
  "dist",
@@ -1035,7 +1091,7 @@
1035
1091
  "build:status": {
1036
1092
  "aliases": [],
1037
1093
  "args": {},
1038
- "description": "show the status of applications in Raindrop",
1094
+ "description": "show the status of an application in Raindrop",
1039
1095
  "examples": [
1040
1096
  "<%= config.bin %> <%= command.id %> .\n"
1041
1097
  ],
@@ -1149,6 +1205,7 @@
1149
1205
  "pluginType": "core",
1150
1206
  "strict": true,
1151
1207
  "enableJsonFlag": false,
1208
+ "baseArgs": {},
1152
1209
  "isESM": true,
1153
1210
  "relativePath": [
1154
1211
  "dist",
@@ -1251,6 +1308,7 @@
1251
1308
  "pluginType": "core",
1252
1309
  "strict": true,
1253
1310
  "enableJsonFlag": false,
1311
+ "baseArgs": {},
1254
1312
  "isESM": true,
1255
1313
  "relativePath": [
1256
1314
  "dist",
@@ -1259,28 +1317,6 @@
1259
1317
  "stop.js"
1260
1318
  ]
1261
1319
  },
1262
- "build:token": {
1263
- "aliases": [],
1264
- "args": {},
1265
- "description": "generate a link to create a Cloudflare API token",
1266
- "examples": [],
1267
- "flags": {},
1268
- "hasDynamicHelp": false,
1269
- "hiddenAliases": [],
1270
- "id": "build:token",
1271
- "pluginAlias": "@liquidmetal-ai/raindrop",
1272
- "pluginName": "@liquidmetal-ai/raindrop",
1273
- "pluginType": "core",
1274
- "strict": true,
1275
- "enableJsonFlag": false,
1276
- "isESM": true,
1277
- "relativePath": [
1278
- "dist",
1279
- "commands",
1280
- "build",
1281
- "token.js"
1282
- ]
1283
- },
1284
1320
  "build:unsandbox": {
1285
1321
  "aliases": [],
1286
1322
  "args": {
@@ -1348,6 +1384,7 @@
1348
1384
  "pluginType": "core",
1349
1385
  "strict": true,
1350
1386
  "enableJsonFlag": false,
1387
+ "baseArgs": {},
1351
1388
  "isESM": true,
1352
1389
  "relativePath": [
1353
1390
  "dist",
@@ -1451,6 +1488,7 @@
1451
1488
  "pluginType": "core",
1452
1489
  "strict": true,
1453
1490
  "enableJsonFlag": false,
1491
+ "baseArgs": {},
1454
1492
  "isESM": true,
1455
1493
  "relativePath": [
1456
1494
  "dist",
@@ -1517,6 +1555,7 @@
1517
1555
  "pluginType": "core",
1518
1556
  "strict": true,
1519
1557
  "enableJsonFlag": false,
1558
+ "baseArgs": {},
1520
1559
  "isESM": true,
1521
1560
  "relativePath": [
1522
1561
  "dist",
@@ -1525,6 +1564,636 @@
1525
1564
  "validate.js"
1526
1565
  ]
1527
1566
  },
1567
+ "query:chunk-search": {
1568
+ "aliases": [],
1569
+ "args": {
1570
+ "query": {
1571
+ "description": "search query to run",
1572
+ "name": "query",
1573
+ "required": true
1574
+ }
1575
+ },
1576
+ "description": "Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket",
1577
+ "examples": [
1578
+ "<%= config.bin %> query chunk-search \"What is LiquidMetal?\"\nRun a RAG search query against a Smart Bucket.\n"
1579
+ ],
1580
+ "flags": {
1581
+ "output": {
1582
+ "char": "o",
1583
+ "description": "output format",
1584
+ "name": "output",
1585
+ "default": "text",
1586
+ "hasDynamicHelp": false,
1587
+ "multiple": false,
1588
+ "options": [
1589
+ "text",
1590
+ "json"
1591
+ ],
1592
+ "type": "option"
1593
+ },
1594
+ "impersonate": {
1595
+ "char": "i",
1596
+ "description": "impersonate organization",
1597
+ "hidden": true,
1598
+ "name": "impersonate",
1599
+ "required": false,
1600
+ "hasDynamicHelp": false,
1601
+ "multiple": false,
1602
+ "type": "option"
1603
+ },
1604
+ "manifest": {
1605
+ "char": "m",
1606
+ "description": "project manifest",
1607
+ "hidden": true,
1608
+ "name": "manifest",
1609
+ "required": false,
1610
+ "default": "raindrop.manifest",
1611
+ "hasDynamicHelp": false,
1612
+ "multiple": false,
1613
+ "type": "option"
1614
+ },
1615
+ "rainbowAuthService": {
1616
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
1617
+ "hidden": true,
1618
+ "name": "rainbowAuthService",
1619
+ "default": "https://liquidmetal.run/api/connect",
1620
+ "hasDynamicHelp": false,
1621
+ "multiple": false,
1622
+ "type": "option"
1623
+ },
1624
+ "raindropCatalogService": {
1625
+ "description": "URL of the catalog service",
1626
+ "env": "RAINDROP_CATALOG_SERVICE",
1627
+ "hidden": true,
1628
+ "name": "raindropCatalogService",
1629
+ "hasDynamicHelp": false,
1630
+ "multiple": false,
1631
+ "type": "option"
1632
+ }
1633
+ },
1634
+ "hasDynamicHelp": false,
1635
+ "hiddenAliases": [],
1636
+ "id": "query:chunk-search",
1637
+ "pluginAlias": "@liquidmetal-ai/raindrop",
1638
+ "pluginName": "@liquidmetal-ai/raindrop",
1639
+ "pluginType": "core",
1640
+ "strict": true,
1641
+ "enableJsonFlag": false,
1642
+ "baseArgs": {},
1643
+ "isESM": true,
1644
+ "relativePath": [
1645
+ "dist",
1646
+ "commands",
1647
+ "query",
1648
+ "chunk-search.js"
1649
+ ]
1650
+ },
1651
+ "query:register-retriever": {
1652
+ "aliases": [],
1653
+ "args": {
1654
+ "bucket": {
1655
+ "description": "bucket identifier for the retriever",
1656
+ "name": "bucket",
1657
+ "required": true
1658
+ },
1659
+ "url": {
1660
+ "description": "URL endpoint for the retriever",
1661
+ "name": "url",
1662
+ "required": true
1663
+ },
1664
+ "delete_url": {
1665
+ "description": "Delete endpoint for the retriever",
1666
+ "name": "delete_url",
1667
+ "required": true
1668
+ },
1669
+ "bucket_name": {
1670
+ "description": "Name of the bucket",
1671
+ "name": "bucket_name",
1672
+ "required": true
1673
+ }
1674
+ },
1675
+ "description": "Register a new retriever tool with the catalog service",
1676
+ "examples": [
1677
+ "<%= config.bin %> query register-retriever my-bucket https://my-retriever-endpoint.com https://my-delete-endpoint.com \"My Bucket\"\nRegister a new retriever tool.\n"
1678
+ ],
1679
+ "flags": {
1680
+ "raindropCatalogService": {
1681
+ "description": "URL of the catalog service",
1682
+ "env": "RAINDROP_CATALOG_SERVICE",
1683
+ "hidden": true,
1684
+ "name": "raindropCatalogService",
1685
+ "hasDynamicHelp": false,
1686
+ "multiple": false,
1687
+ "type": "option"
1688
+ }
1689
+ },
1690
+ "hasDynamicHelp": false,
1691
+ "hiddenAliases": [],
1692
+ "id": "query:register-retriever",
1693
+ "pluginAlias": "@liquidmetal-ai/raindrop",
1694
+ "pluginName": "@liquidmetal-ai/raindrop",
1695
+ "pluginType": "core",
1696
+ "strict": true,
1697
+ "enableJsonFlag": false,
1698
+ "baseArgs": {},
1699
+ "isESM": true,
1700
+ "relativePath": [
1701
+ "dist",
1702
+ "commands",
1703
+ "query",
1704
+ "register-retriever.js"
1705
+ ]
1706
+ },
1707
+ "query:search": {
1708
+ "aliases": [],
1709
+ "args": {
1710
+ "query": {
1711
+ "description": "search query",
1712
+ "name": "query",
1713
+ "required": false
1714
+ }
1715
+ },
1716
+ "description": "Run a search query against a smart bucket using natural language",
1717
+ "examples": [
1718
+ "<%= config.bin %> query search \"What is LiquidMetal?\"\nRun a new supervisor agent search query.\n",
1719
+ "<%= config.bin %> query search --requestId 01HNG4V2RJXS5T --page 2\nGet page 2 of previous search results.\n"
1720
+ ],
1721
+ "flags": {
1722
+ "requestId": {
1723
+ "description": "request ID for pagination",
1724
+ "name": "requestId",
1725
+ "required": false,
1726
+ "hasDynamicHelp": false,
1727
+ "multiple": false,
1728
+ "type": "option"
1729
+ },
1730
+ "page": {
1731
+ "char": "p",
1732
+ "description": "page number for paginated results",
1733
+ "name": "page",
1734
+ "default": 1,
1735
+ "hasDynamicHelp": false,
1736
+ "multiple": false,
1737
+ "type": "option"
1738
+ },
1739
+ "output": {
1740
+ "char": "o",
1741
+ "description": "output format",
1742
+ "name": "output",
1743
+ "default": "text",
1744
+ "hasDynamicHelp": false,
1745
+ "multiple": false,
1746
+ "options": [
1747
+ "text",
1748
+ "json"
1749
+ ],
1750
+ "type": "option"
1751
+ },
1752
+ "impersonate": {
1753
+ "char": "i",
1754
+ "description": "impersonate organization",
1755
+ "hidden": true,
1756
+ "name": "impersonate",
1757
+ "required": false,
1758
+ "hasDynamicHelp": false,
1759
+ "multiple": false,
1760
+ "type": "option"
1761
+ },
1762
+ "manifest": {
1763
+ "char": "m",
1764
+ "description": "project manifest",
1765
+ "hidden": true,
1766
+ "name": "manifest",
1767
+ "required": false,
1768
+ "default": "raindrop.manifest",
1769
+ "hasDynamicHelp": false,
1770
+ "multiple": false,
1771
+ "type": "option"
1772
+ },
1773
+ "rainbowAuthService": {
1774
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
1775
+ "hidden": true,
1776
+ "name": "rainbowAuthService",
1777
+ "default": "https://liquidmetal.run/api/connect",
1778
+ "hasDynamicHelp": false,
1779
+ "multiple": false,
1780
+ "type": "option"
1781
+ },
1782
+ "raindropCatalogService": {
1783
+ "description": "URL of the catalog service",
1784
+ "env": "RAINDROP_CATALOG_SERVICE",
1785
+ "hidden": true,
1786
+ "name": "raindropCatalogService",
1787
+ "hasDynamicHelp": false,
1788
+ "multiple": false,
1789
+ "type": "option"
1790
+ }
1791
+ },
1792
+ "hasDynamicHelp": false,
1793
+ "hiddenAliases": [],
1794
+ "id": "query:search",
1795
+ "pluginAlias": "@liquidmetal-ai/raindrop",
1796
+ "pluginName": "@liquidmetal-ai/raindrop",
1797
+ "pluginType": "core",
1798
+ "strict": true,
1799
+ "enableJsonFlag": false,
1800
+ "baseArgs": {},
1801
+ "isESM": true,
1802
+ "relativePath": [
1803
+ "dist",
1804
+ "commands",
1805
+ "query",
1806
+ "search.js"
1807
+ ]
1808
+ },
1809
+ "object:delete": {
1810
+ "aliases": [],
1811
+ "args": {
1812
+ "key": {
1813
+ "description": "key/path in the bucket to delete",
1814
+ "name": "key",
1815
+ "required": true
1816
+ }
1817
+ },
1818
+ "description": "Delete a file from the object storage",
1819
+ "examples": [
1820
+ "<%= config.bin %> object delete my-key --bucket my-bucket\nDelete file with key 'my-key' from my-bucket\n"
1821
+ ],
1822
+ "flags": {
1823
+ "bucket": {
1824
+ "char": "b",
1825
+ "description": "bucket name",
1826
+ "name": "bucket",
1827
+ "required": true,
1828
+ "hasDynamicHelp": false,
1829
+ "multiple": false,
1830
+ "type": "option"
1831
+ },
1832
+ "output": {
1833
+ "char": "o",
1834
+ "description": "output format",
1835
+ "name": "output",
1836
+ "default": "text",
1837
+ "hasDynamicHelp": false,
1838
+ "multiple": false,
1839
+ "options": [
1840
+ "text",
1841
+ "json"
1842
+ ],
1843
+ "type": "option"
1844
+ },
1845
+ "impersonate": {
1846
+ "char": "i",
1847
+ "description": "impersonate organization",
1848
+ "hidden": true,
1849
+ "name": "impersonate",
1850
+ "required": false,
1851
+ "hasDynamicHelp": false,
1852
+ "multiple": false,
1853
+ "type": "option"
1854
+ },
1855
+ "manifest": {
1856
+ "char": "m",
1857
+ "description": "project manifest",
1858
+ "hidden": true,
1859
+ "name": "manifest",
1860
+ "required": false,
1861
+ "default": "raindrop.manifest",
1862
+ "hasDynamicHelp": false,
1863
+ "multiple": false,
1864
+ "type": "option"
1865
+ },
1866
+ "rainbowAuthService": {
1867
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
1868
+ "hidden": true,
1869
+ "name": "rainbowAuthService",
1870
+ "default": "https://liquidmetal.run/api/connect",
1871
+ "hasDynamicHelp": false,
1872
+ "multiple": false,
1873
+ "type": "option"
1874
+ },
1875
+ "raindropCatalogService": {
1876
+ "description": "URL of the catalog service",
1877
+ "env": "RAINDROP_CATALOG_SERVICE",
1878
+ "hidden": true,
1879
+ "name": "raindropCatalogService",
1880
+ "hasDynamicHelp": false,
1881
+ "multiple": false,
1882
+ "type": "option"
1883
+ }
1884
+ },
1885
+ "hasDynamicHelp": false,
1886
+ "hiddenAliases": [],
1887
+ "id": "object:delete",
1888
+ "pluginAlias": "@liquidmetal-ai/raindrop",
1889
+ "pluginName": "@liquidmetal-ai/raindrop",
1890
+ "pluginType": "core",
1891
+ "strict": true,
1892
+ "enableJsonFlag": false,
1893
+ "baseArgs": {},
1894
+ "isESM": true,
1895
+ "relativePath": [
1896
+ "dist",
1897
+ "commands",
1898
+ "object",
1899
+ "delete.js"
1900
+ ]
1901
+ },
1902
+ "object:get": {
1903
+ "aliases": [],
1904
+ "args": {
1905
+ "key": {
1906
+ "description": "key/path in the bucket",
1907
+ "name": "key",
1908
+ "required": true
1909
+ },
1910
+ "output": {
1911
+ "description": "output file (defaults to key basename)",
1912
+ "name": "output",
1913
+ "required": false
1914
+ }
1915
+ },
1916
+ "description": "Download a file from the object storage",
1917
+ "examples": [
1918
+ "<%= config.bin %> object get my-key --bucket my-bucket\nDownload file with key 'my-key' from my-bucket\n",
1919
+ "<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
1920
+ ],
1921
+ "flags": {
1922
+ "bucket": {
1923
+ "char": "b",
1924
+ "description": "bucket name",
1925
+ "name": "bucket",
1926
+ "required": true,
1927
+ "hasDynamicHelp": false,
1928
+ "multiple": false,
1929
+ "type": "option"
1930
+ },
1931
+ "format": {
1932
+ "char": "f",
1933
+ "description": "output format",
1934
+ "name": "format",
1935
+ "default": "file",
1936
+ "hasDynamicHelp": false,
1937
+ "multiple": false,
1938
+ "options": [
1939
+ "file",
1940
+ "stdout",
1941
+ "json"
1942
+ ],
1943
+ "type": "option"
1944
+ },
1945
+ "impersonate": {
1946
+ "char": "i",
1947
+ "description": "impersonate organization",
1948
+ "hidden": true,
1949
+ "name": "impersonate",
1950
+ "required": false,
1951
+ "hasDynamicHelp": false,
1952
+ "multiple": false,
1953
+ "type": "option"
1954
+ },
1955
+ "manifest": {
1956
+ "char": "m",
1957
+ "description": "project manifest",
1958
+ "hidden": true,
1959
+ "name": "manifest",
1960
+ "required": false,
1961
+ "default": "raindrop.manifest",
1962
+ "hasDynamicHelp": false,
1963
+ "multiple": false,
1964
+ "type": "option"
1965
+ },
1966
+ "rainbowAuthService": {
1967
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
1968
+ "hidden": true,
1969
+ "name": "rainbowAuthService",
1970
+ "default": "https://liquidmetal.run/api/connect",
1971
+ "hasDynamicHelp": false,
1972
+ "multiple": false,
1973
+ "type": "option"
1974
+ },
1975
+ "raindropCatalogService": {
1976
+ "description": "URL of the catalog service",
1977
+ "env": "RAINDROP_CATALOG_SERVICE",
1978
+ "hidden": true,
1979
+ "name": "raindropCatalogService",
1980
+ "hasDynamicHelp": false,
1981
+ "multiple": false,
1982
+ "type": "option"
1983
+ }
1984
+ },
1985
+ "hasDynamicHelp": false,
1986
+ "hiddenAliases": [],
1987
+ "id": "object:get",
1988
+ "pluginAlias": "@liquidmetal-ai/raindrop",
1989
+ "pluginName": "@liquidmetal-ai/raindrop",
1990
+ "pluginType": "core",
1991
+ "strict": true,
1992
+ "enableJsonFlag": false,
1993
+ "baseArgs": {},
1994
+ "isESM": true,
1995
+ "relativePath": [
1996
+ "dist",
1997
+ "commands",
1998
+ "object",
1999
+ "get.js"
2000
+ ]
2001
+ },
2002
+ "object:list": {
2003
+ "aliases": [],
2004
+ "args": {},
2005
+ "description": "List objects in a bucket",
2006
+ "examples": [
2007
+ "<%= config.bin %> object list --bucket my-bucket\nList all objects in my-bucket\n"
2008
+ ],
2009
+ "flags": {
2010
+ "bucket": {
2011
+ "char": "b",
2012
+ "description": "bucket name",
2013
+ "name": "bucket",
2014
+ "required": true,
2015
+ "hasDynamicHelp": false,
2016
+ "multiple": false,
2017
+ "type": "option"
2018
+ },
2019
+ "output": {
2020
+ "char": "o",
2021
+ "description": "output format",
2022
+ "name": "output",
2023
+ "default": "text",
2024
+ "hasDynamicHelp": false,
2025
+ "multiple": false,
2026
+ "options": [
2027
+ "text",
2028
+ "json",
2029
+ "table"
2030
+ ],
2031
+ "type": "option"
2032
+ },
2033
+ "impersonate": {
2034
+ "char": "i",
2035
+ "description": "impersonate organization",
2036
+ "hidden": true,
2037
+ "name": "impersonate",
2038
+ "required": false,
2039
+ "hasDynamicHelp": false,
2040
+ "multiple": false,
2041
+ "type": "option"
2042
+ },
2043
+ "manifest": {
2044
+ "char": "m",
2045
+ "description": "project manifest",
2046
+ "hidden": true,
2047
+ "name": "manifest",
2048
+ "required": false,
2049
+ "default": "raindrop.manifest",
2050
+ "hasDynamicHelp": false,
2051
+ "multiple": false,
2052
+ "type": "option"
2053
+ },
2054
+ "rainbowAuthService": {
2055
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
2056
+ "hidden": true,
2057
+ "name": "rainbowAuthService",
2058
+ "default": "https://liquidmetal.run/api/connect",
2059
+ "hasDynamicHelp": false,
2060
+ "multiple": false,
2061
+ "type": "option"
2062
+ },
2063
+ "raindropCatalogService": {
2064
+ "description": "URL of the catalog service",
2065
+ "env": "RAINDROP_CATALOG_SERVICE",
2066
+ "hidden": true,
2067
+ "name": "raindropCatalogService",
2068
+ "hasDynamicHelp": false,
2069
+ "multiple": false,
2070
+ "type": "option"
2071
+ }
2072
+ },
2073
+ "hasDynamicHelp": false,
2074
+ "hiddenAliases": [],
2075
+ "id": "object:list",
2076
+ "pluginAlias": "@liquidmetal-ai/raindrop",
2077
+ "pluginName": "@liquidmetal-ai/raindrop",
2078
+ "pluginType": "core",
2079
+ "strict": true,
2080
+ "enableJsonFlag": false,
2081
+ "baseArgs": {},
2082
+ "isESM": true,
2083
+ "relativePath": [
2084
+ "dist",
2085
+ "commands",
2086
+ "object",
2087
+ "list.js"
2088
+ ]
2089
+ },
2090
+ "object:put": {
2091
+ "aliases": [],
2092
+ "args": {
2093
+ "file": {
2094
+ "description": "file to upload",
2095
+ "name": "file",
2096
+ "required": true
2097
+ },
2098
+ "key": {
2099
+ "description": "key/path in the bucket",
2100
+ "name": "key",
2101
+ "required": true
2102
+ }
2103
+ },
2104
+ "description": "Upload a file to the object storage",
2105
+ "examples": [
2106
+ "<%= config.bin %> object put ./myfile.txt my-key --bucket my-bucket\nUpload myfile.txt to my-bucket with key 'my-key'\n"
2107
+ ],
2108
+ "flags": {
2109
+ "bucket": {
2110
+ "char": "b",
2111
+ "description": "bucket name",
2112
+ "name": "bucket",
2113
+ "required": true,
2114
+ "hasDynamicHelp": false,
2115
+ "multiple": false,
2116
+ "type": "option"
2117
+ },
2118
+ "contentType": {
2119
+ "char": "t",
2120
+ "description": "content type of the file",
2121
+ "name": "contentType",
2122
+ "required": false,
2123
+ "hasDynamicHelp": false,
2124
+ "multiple": false,
2125
+ "type": "option"
2126
+ },
2127
+ "output": {
2128
+ "char": "o",
2129
+ "description": "output format",
2130
+ "name": "output",
2131
+ "default": "text",
2132
+ "hasDynamicHelp": false,
2133
+ "multiple": false,
2134
+ "options": [
2135
+ "text",
2136
+ "json"
2137
+ ],
2138
+ "type": "option"
2139
+ },
2140
+ "impersonate": {
2141
+ "char": "i",
2142
+ "description": "impersonate organization",
2143
+ "hidden": true,
2144
+ "name": "impersonate",
2145
+ "required": false,
2146
+ "hasDynamicHelp": false,
2147
+ "multiple": false,
2148
+ "type": "option"
2149
+ },
2150
+ "manifest": {
2151
+ "char": "m",
2152
+ "description": "project manifest",
2153
+ "hidden": true,
2154
+ "name": "manifest",
2155
+ "required": false,
2156
+ "default": "raindrop.manifest",
2157
+ "hasDynamicHelp": false,
2158
+ "multiple": false,
2159
+ "type": "option"
2160
+ },
2161
+ "rainbowAuthService": {
2162
+ "env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
2163
+ "hidden": true,
2164
+ "name": "rainbowAuthService",
2165
+ "default": "https://liquidmetal.run/api/connect",
2166
+ "hasDynamicHelp": false,
2167
+ "multiple": false,
2168
+ "type": "option"
2169
+ },
2170
+ "raindropCatalogService": {
2171
+ "description": "URL of the catalog service",
2172
+ "env": "RAINDROP_CATALOG_SERVICE",
2173
+ "hidden": true,
2174
+ "name": "raindropCatalogService",
2175
+ "hasDynamicHelp": false,
2176
+ "multiple": false,
2177
+ "type": "option"
2178
+ }
2179
+ },
2180
+ "hasDynamicHelp": false,
2181
+ "hiddenAliases": [],
2182
+ "id": "object:put",
2183
+ "pluginAlias": "@liquidmetal-ai/raindrop",
2184
+ "pluginName": "@liquidmetal-ai/raindrop",
2185
+ "pluginType": "core",
2186
+ "strict": true,
2187
+ "enableJsonFlag": false,
2188
+ "baseArgs": {},
2189
+ "isESM": true,
2190
+ "relativePath": [
2191
+ "dist",
2192
+ "commands",
2193
+ "object",
2194
+ "put.js"
2195
+ ]
2196
+ },
1528
2197
  "build:env:get": {
1529
2198
  "aliases": [],
1530
2199
  "args": {
@@ -1627,6 +2296,7 @@
1627
2296
  "pluginType": "core",
1628
2297
  "strict": true,
1629
2298
  "enableJsonFlag": false,
2299
+ "baseArgs": {},
1630
2300
  "isESM": true,
1631
2301
  "relativePath": [
1632
2302
  "dist",
@@ -1753,6 +2423,7 @@
1753
2423
  "pluginType": "core",
1754
2424
  "strict": true,
1755
2425
  "enableJsonFlag": false,
2426
+ "baseArgs": {},
1756
2427
  "isESM": true,
1757
2428
  "relativePath": [
1758
2429
  "dist",
@@ -1799,6 +2470,7 @@
1799
2470
  "pluginType": "core",
1800
2471
  "strict": true,
1801
2472
  "enableJsonFlag": false,
2473
+ "baseArgs": {},
1802
2474
  "isESM": true,
1803
2475
  "relativePath": [
1804
2476
  "dist",
@@ -1845,6 +2517,7 @@
1845
2517
  "pluginType": "core",
1846
2518
  "strict": true,
1847
2519
  "enableJsonFlag": false,
2520
+ "baseArgs": {},
1848
2521
  "isESM": true,
1849
2522
  "relativePath": [
1850
2523
  "dist",
@@ -1855,5 +2528,5 @@
1855
2528
  ]
1856
2529
  }
1857
2530
  },
1858
- "version": "0.1.5"
2531
+ "version": "0.2.2"
1859
2532
  }