@liquidmetal-ai/raindrop 0.2.2 → 0.2.4
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 +34 -34
- package/dist/base-command.d.ts +3 -0
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +31 -3
- package/dist/build.d.ts.map +1 -1
- package/dist/build.js +2 -0
- package/dist/index.d.ts +6 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -12
- package/oclif.manifest.json +835 -835
- package/package.json +2 -2
- package/templates/init/package.json.hbs +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -142,80 +142,33 @@
|
|
|
142
142
|
"select.js"
|
|
143
143
|
]
|
|
144
144
|
},
|
|
145
|
-
"
|
|
145
|
+
"query:chunk-search": {
|
|
146
146
|
"aliases": [],
|
|
147
147
|
"args": {
|
|
148
|
-
"
|
|
149
|
-
"description": "
|
|
150
|
-
"name": "
|
|
148
|
+
"query": {
|
|
149
|
+
"description": "search query to run",
|
|
150
|
+
"name": "query",
|
|
151
151
|
"required": true
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
-
"description": "
|
|
154
|
+
"description": "Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket",
|
|
155
155
|
"examples": [
|
|
156
|
-
"<%= config.bin %>
|
|
156
|
+
"<%= config.bin %> query chunk-search \"What is LiquidMetal?\"\nRun a RAG search query against a Smart Bucket.\n"
|
|
157
157
|
],
|
|
158
158
|
"flags": {
|
|
159
|
-
"root": {
|
|
160
|
-
"char": "r",
|
|
161
|
-
"description": "root directory",
|
|
162
|
-
"name": "root",
|
|
163
|
-
"required": false,
|
|
164
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
165
|
-
"hasDynamicHelp": false,
|
|
166
|
-
"multiple": false,
|
|
167
|
-
"type": "option"
|
|
168
|
-
},
|
|
169
|
-
"manifest": {
|
|
170
|
-
"char": "m",
|
|
171
|
-
"description": "project manifest",
|
|
172
|
-
"name": "manifest",
|
|
173
|
-
"required": false,
|
|
174
|
-
"default": "raindrop.manifest",
|
|
175
|
-
"hasDynamicHelp": false,
|
|
176
|
-
"multiple": false,
|
|
177
|
-
"type": "option"
|
|
178
|
-
},
|
|
179
|
-
"config": {
|
|
180
|
-
"char": "c",
|
|
181
|
-
"description": "config file",
|
|
182
|
-
"hidden": true,
|
|
183
|
-
"name": "config",
|
|
184
|
-
"required": false,
|
|
185
|
-
"default": ".raindrop/config.json",
|
|
186
|
-
"hasDynamicHelp": false,
|
|
187
|
-
"multiple": false,
|
|
188
|
-
"type": "option"
|
|
189
|
-
},
|
|
190
159
|
"output": {
|
|
191
160
|
"char": "o",
|
|
192
|
-
"description": "output
|
|
161
|
+
"description": "output format",
|
|
193
162
|
"name": "output",
|
|
194
|
-
"
|
|
195
|
-
"default": "dist",
|
|
163
|
+
"default": "text",
|
|
196
164
|
"hasDynamicHelp": false,
|
|
197
165
|
"multiple": false,
|
|
198
|
-
"
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
"aliases": [
|
|
202
|
-
"version"
|
|
166
|
+
"options": [
|
|
167
|
+
"text",
|
|
168
|
+
"json"
|
|
203
169
|
],
|
|
204
|
-
"char": "p",
|
|
205
|
-
"description": "Branch from this version",
|
|
206
|
-
"name": "versionId",
|
|
207
|
-
"required": false,
|
|
208
|
-
"hasDynamicHelp": false,
|
|
209
|
-
"multiple": false,
|
|
210
170
|
"type": "option"
|
|
211
171
|
},
|
|
212
|
-
"start": {
|
|
213
|
-
"description": "Start the application",
|
|
214
|
-
"name": "start",
|
|
215
|
-
"required": false,
|
|
216
|
-
"allowNo": false,
|
|
217
|
-
"type": "boolean"
|
|
218
|
-
},
|
|
219
172
|
"impersonate": {
|
|
220
173
|
"char": "i",
|
|
221
174
|
"description": "impersonate organization",
|
|
@@ -226,6 +179,17 @@
|
|
|
226
179
|
"multiple": false,
|
|
227
180
|
"type": "option"
|
|
228
181
|
},
|
|
182
|
+
"manifest": {
|
|
183
|
+
"char": "m",
|
|
184
|
+
"description": "project manifest",
|
|
185
|
+
"hidden": true,
|
|
186
|
+
"name": "manifest",
|
|
187
|
+
"required": false,
|
|
188
|
+
"default": "raindrop.manifest",
|
|
189
|
+
"hasDynamicHelp": false,
|
|
190
|
+
"multiple": false,
|
|
191
|
+
"type": "option"
|
|
192
|
+
},
|
|
229
193
|
"rainbowAuthService": {
|
|
230
194
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
231
195
|
"hidden": true,
|
|
@@ -243,18 +207,11 @@
|
|
|
243
207
|
"hasDynamicHelp": false,
|
|
244
208
|
"multiple": false,
|
|
245
209
|
"type": "option"
|
|
246
|
-
},
|
|
247
|
-
"show": {
|
|
248
|
-
"description": "show the current branch",
|
|
249
|
-
"name": "show",
|
|
250
|
-
"required": false,
|
|
251
|
-
"allowNo": false,
|
|
252
|
-
"type": "boolean"
|
|
253
210
|
}
|
|
254
211
|
},
|
|
255
212
|
"hasDynamicHelp": false,
|
|
256
213
|
"hiddenAliases": [],
|
|
257
|
-
"id": "
|
|
214
|
+
"id": "query:chunk-search",
|
|
258
215
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
259
216
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
260
217
|
"pluginType": "core",
|
|
@@ -265,54 +222,39 @@
|
|
|
265
222
|
"relativePath": [
|
|
266
223
|
"dist",
|
|
267
224
|
"commands",
|
|
268
|
-
"
|
|
269
|
-
"
|
|
225
|
+
"query",
|
|
226
|
+
"chunk-search.js"
|
|
270
227
|
]
|
|
271
228
|
},
|
|
272
|
-
"
|
|
229
|
+
"query:register-retriever": {
|
|
273
230
|
"aliases": [],
|
|
274
231
|
"args": {
|
|
275
|
-
"
|
|
276
|
-
"description": "
|
|
277
|
-
"name": "
|
|
278
|
-
"required":
|
|
232
|
+
"bucket": {
|
|
233
|
+
"description": "bucket identifier for the retriever",
|
|
234
|
+
"name": "bucket",
|
|
235
|
+
"required": true
|
|
236
|
+
},
|
|
237
|
+
"url": {
|
|
238
|
+
"description": "URL endpoint for the retriever",
|
|
239
|
+
"name": "url",
|
|
240
|
+
"required": true
|
|
241
|
+
},
|
|
242
|
+
"delete_url": {
|
|
243
|
+
"description": "Delete endpoint for the retriever",
|
|
244
|
+
"name": "delete_url",
|
|
245
|
+
"required": true
|
|
246
|
+
},
|
|
247
|
+
"bucket_name": {
|
|
248
|
+
"description": "Name of the bucket",
|
|
249
|
+
"name": "bucket_name",
|
|
250
|
+
"required": true
|
|
279
251
|
}
|
|
280
252
|
},
|
|
281
|
-
"description": "
|
|
253
|
+
"description": "Register a new retriever tool with the catalog service",
|
|
282
254
|
"examples": [
|
|
283
|
-
"<%= config.bin %>
|
|
255
|
+
"<%= 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"
|
|
284
256
|
],
|
|
285
257
|
"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
258
|
"raindropCatalogService": {
|
|
317
259
|
"description": "URL of the catalog service",
|
|
318
260
|
"env": "RAINDROP_CATALOG_SERVICE",
|
|
@@ -325,7 +267,7 @@
|
|
|
325
267
|
},
|
|
326
268
|
"hasDynamicHelp": false,
|
|
327
269
|
"hiddenAliases": [],
|
|
328
|
-
"id": "
|
|
270
|
+
"id": "query:register-retriever",
|
|
329
271
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
330
272
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
331
273
|
"pluginType": "core",
|
|
@@ -336,51 +278,38 @@
|
|
|
336
278
|
"relativePath": [
|
|
337
279
|
"dist",
|
|
338
280
|
"commands",
|
|
339
|
-
"
|
|
340
|
-
"
|
|
281
|
+
"query",
|
|
282
|
+
"register-retriever.js"
|
|
341
283
|
]
|
|
342
284
|
},
|
|
343
|
-
"
|
|
285
|
+
"query:search": {
|
|
344
286
|
"aliases": [],
|
|
345
287
|
"args": {
|
|
346
|
-
"
|
|
347
|
-
"description": "
|
|
348
|
-
"name": "
|
|
288
|
+
"query": {
|
|
289
|
+
"description": "search query",
|
|
290
|
+
"name": "query",
|
|
349
291
|
"required": false
|
|
350
292
|
}
|
|
351
293
|
},
|
|
352
|
-
"description": "
|
|
294
|
+
"description": "Run a search query against a smart bucket using natural language",
|
|
353
295
|
"examples": [
|
|
354
|
-
"<%= config.bin %>
|
|
296
|
+
"<%= config.bin %> query search \"What is LiquidMetal?\"\nRun a new supervisor agent search query.\n",
|
|
297
|
+
"<%= config.bin %> query search --requestId 01HNG4V2RJXS5T --page 2\nGet page 2 of previous search results.\n"
|
|
355
298
|
],
|
|
356
299
|
"flags": {
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"name": "root",
|
|
361
|
-
"required": false,
|
|
362
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
363
|
-
"hasDynamicHelp": false,
|
|
364
|
-
"multiple": false,
|
|
365
|
-
"type": "option"
|
|
366
|
-
},
|
|
367
|
-
"manifest": {
|
|
368
|
-
"char": "m",
|
|
369
|
-
"description": "project manifest",
|
|
370
|
-
"name": "manifest",
|
|
300
|
+
"requestId": {
|
|
301
|
+
"description": "request ID for pagination",
|
|
302
|
+
"name": "requestId",
|
|
371
303
|
"required": false,
|
|
372
|
-
"default": "raindrop.manifest",
|
|
373
304
|
"hasDynamicHelp": false,
|
|
374
305
|
"multiple": false,
|
|
375
306
|
"type": "option"
|
|
376
307
|
},
|
|
377
|
-
"
|
|
378
|
-
"char": "
|
|
379
|
-
"description": "
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"required": false,
|
|
383
|
-
"default": ".raindrop/config.json",
|
|
308
|
+
"page": {
|
|
309
|
+
"char": "p",
|
|
310
|
+
"description": "page number for paginated results",
|
|
311
|
+
"name": "page",
|
|
312
|
+
"default": 1,
|
|
384
313
|
"hasDynamicHelp": false,
|
|
385
314
|
"multiple": false,
|
|
386
315
|
"type": "option"
|
|
@@ -389,45 +318,32 @@
|
|
|
389
318
|
"char": "o",
|
|
390
319
|
"description": "output format",
|
|
391
320
|
"name": "output",
|
|
392
|
-
"default": "
|
|
321
|
+
"default": "text",
|
|
393
322
|
"hasDynamicHelp": false,
|
|
394
323
|
"multiple": false,
|
|
395
324
|
"options": [
|
|
396
325
|
"text",
|
|
397
|
-
"table",
|
|
398
326
|
"json"
|
|
399
327
|
],
|
|
400
328
|
"type": "option"
|
|
401
329
|
},
|
|
402
|
-
"
|
|
403
|
-
"char": "
|
|
404
|
-
"description": "
|
|
405
|
-
"
|
|
406
|
-
|
|
407
|
-
],
|
|
408
|
-
"name": "version",
|
|
330
|
+
"impersonate": {
|
|
331
|
+
"char": "i",
|
|
332
|
+
"description": "impersonate organization",
|
|
333
|
+
"hidden": true,
|
|
334
|
+
"name": "impersonate",
|
|
409
335
|
"required": false,
|
|
410
336
|
"hasDynamicHelp": false,
|
|
411
337
|
"multiple": false,
|
|
412
338
|
"type": "option"
|
|
413
339
|
},
|
|
414
|
-
"
|
|
415
|
-
"char": "
|
|
416
|
-
"description": "
|
|
417
|
-
"exclusive": [
|
|
418
|
-
"version"
|
|
419
|
-
],
|
|
420
|
-
"name": "all",
|
|
421
|
-
"required": false,
|
|
422
|
-
"allowNo": false,
|
|
423
|
-
"type": "boolean"
|
|
424
|
-
},
|
|
425
|
-
"impersonate": {
|
|
426
|
-
"char": "i",
|
|
427
|
-
"description": "impersonate organization",
|
|
340
|
+
"manifest": {
|
|
341
|
+
"char": "m",
|
|
342
|
+
"description": "project manifest",
|
|
428
343
|
"hidden": true,
|
|
429
|
-
"name": "
|
|
344
|
+
"name": "manifest",
|
|
430
345
|
"required": false,
|
|
346
|
+
"default": "raindrop.manifest",
|
|
431
347
|
"hasDynamicHelp": false,
|
|
432
348
|
"multiple": false,
|
|
433
349
|
"type": "option"
|
|
@@ -453,7 +369,7 @@
|
|
|
453
369
|
},
|
|
454
370
|
"hasDynamicHelp": false,
|
|
455
371
|
"hiddenAliases": [],
|
|
456
|
-
"id": "
|
|
372
|
+
"id": "query:search",
|
|
457
373
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
458
374
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
459
375
|
"pluginType": "core",
|
|
@@ -464,69 +380,44 @@
|
|
|
464
380
|
"relativePath": [
|
|
465
381
|
"dist",
|
|
466
382
|
"commands",
|
|
467
|
-
"
|
|
468
|
-
"
|
|
383
|
+
"query",
|
|
384
|
+
"search.js"
|
|
469
385
|
]
|
|
470
386
|
},
|
|
471
|
-
"
|
|
387
|
+
"object:delete": {
|
|
472
388
|
"aliases": [],
|
|
473
|
-
"args": {
|
|
474
|
-
|
|
389
|
+
"args": {
|
|
390
|
+
"key": {
|
|
391
|
+
"description": "key/path in the bucket to delete",
|
|
392
|
+
"name": "key",
|
|
393
|
+
"required": true
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"description": "Delete a file from the object storage",
|
|
475
397
|
"examples": [
|
|
476
|
-
"<%= config.bin %>
|
|
398
|
+
"<%= config.bin %> object delete my-key --bucket my-bucket\nDelete file with key 'my-key' from my-bucket\n"
|
|
477
399
|
],
|
|
478
400
|
"flags": {
|
|
479
|
-
"
|
|
480
|
-
"char": "
|
|
481
|
-
"description": "
|
|
482
|
-
"name": "
|
|
483
|
-
"required":
|
|
484
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
485
|
-
"hasDynamicHelp": false,
|
|
486
|
-
"multiple": false,
|
|
487
|
-
"type": "option"
|
|
488
|
-
},
|
|
489
|
-
"manifest": {
|
|
490
|
-
"char": "m",
|
|
491
|
-
"description": "project manifest",
|
|
492
|
-
"name": "manifest",
|
|
493
|
-
"required": false,
|
|
494
|
-
"default": "raindrop.manifest",
|
|
495
|
-
"hasDynamicHelp": false,
|
|
496
|
-
"multiple": false,
|
|
497
|
-
"type": "option"
|
|
498
|
-
},
|
|
499
|
-
"config": {
|
|
500
|
-
"char": "c",
|
|
501
|
-
"description": "config file",
|
|
502
|
-
"hidden": true,
|
|
503
|
-
"name": "config",
|
|
504
|
-
"required": false,
|
|
505
|
-
"default": ".raindrop/config.json",
|
|
401
|
+
"bucket": {
|
|
402
|
+
"char": "b",
|
|
403
|
+
"description": "bucket name",
|
|
404
|
+
"name": "bucket",
|
|
405
|
+
"required": true,
|
|
506
406
|
"hasDynamicHelp": false,
|
|
507
407
|
"multiple": false,
|
|
508
408
|
"type": "option"
|
|
509
409
|
},
|
|
510
410
|
"output": {
|
|
511
411
|
"char": "o",
|
|
512
|
-
"description": "output
|
|
412
|
+
"description": "output format",
|
|
513
413
|
"name": "output",
|
|
514
|
-
"
|
|
515
|
-
"default": "dist",
|
|
414
|
+
"default": "text",
|
|
516
415
|
"hasDynamicHelp": false,
|
|
517
416
|
"multiple": false,
|
|
518
|
-
"
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
"aliases": [
|
|
522
|
-
"version"
|
|
417
|
+
"options": [
|
|
418
|
+
"text",
|
|
419
|
+
"json"
|
|
523
420
|
],
|
|
524
|
-
"char": "v",
|
|
525
|
-
"description": "version ID",
|
|
526
|
-
"name": "versionId",
|
|
527
|
-
"required": false,
|
|
528
|
-
"hasDynamicHelp": false,
|
|
529
|
-
"multiple": false,
|
|
530
421
|
"type": "option"
|
|
531
422
|
},
|
|
532
423
|
"impersonate": {
|
|
@@ -539,6 +430,17 @@
|
|
|
539
430
|
"multiple": false,
|
|
540
431
|
"type": "option"
|
|
541
432
|
},
|
|
433
|
+
"manifest": {
|
|
434
|
+
"char": "m",
|
|
435
|
+
"description": "project manifest",
|
|
436
|
+
"hidden": true,
|
|
437
|
+
"name": "manifest",
|
|
438
|
+
"required": false,
|
|
439
|
+
"default": "raindrop.manifest",
|
|
440
|
+
"hasDynamicHelp": false,
|
|
441
|
+
"multiple": false,
|
|
442
|
+
"type": "option"
|
|
443
|
+
},
|
|
542
444
|
"rainbowAuthService": {
|
|
543
445
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
544
446
|
"hidden": true,
|
|
@@ -556,27 +458,11 @@
|
|
|
556
458
|
"hasDynamicHelp": false,
|
|
557
459
|
"multiple": false,
|
|
558
460
|
"type": "option"
|
|
559
|
-
},
|
|
560
|
-
"start": {
|
|
561
|
-
"char": "s",
|
|
562
|
-
"description": "start the application after deploying",
|
|
563
|
-
"name": "start",
|
|
564
|
-
"required": false,
|
|
565
|
-
"allowNo": false,
|
|
566
|
-
"type": "boolean"
|
|
567
|
-
},
|
|
568
|
-
"amend": {
|
|
569
|
-
"char": "a",
|
|
570
|
-
"description": "amend an existing application",
|
|
571
|
-
"name": "amend",
|
|
572
|
-
"required": false,
|
|
573
|
-
"allowNo": false,
|
|
574
|
-
"type": "boolean"
|
|
575
461
|
}
|
|
576
462
|
},
|
|
577
463
|
"hasDynamicHelp": false,
|
|
578
464
|
"hiddenAliases": [],
|
|
579
|
-
"id": "
|
|
465
|
+
"id": "object:delete",
|
|
580
466
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
581
467
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
582
468
|
"pluginType": "core",
|
|
@@ -587,90 +473,53 @@
|
|
|
587
473
|
"relativePath": [
|
|
588
474
|
"dist",
|
|
589
475
|
"commands",
|
|
590
|
-
"
|
|
591
|
-
"
|
|
476
|
+
"object",
|
|
477
|
+
"delete.js"
|
|
592
478
|
]
|
|
593
479
|
},
|
|
594
|
-
"
|
|
480
|
+
"object:get": {
|
|
595
481
|
"aliases": [],
|
|
596
|
-
"args": {
|
|
597
|
-
|
|
482
|
+
"args": {
|
|
483
|
+
"key": {
|
|
484
|
+
"description": "key/path in the bucket",
|
|
485
|
+
"name": "key",
|
|
486
|
+
"required": true
|
|
487
|
+
},
|
|
488
|
+
"output": {
|
|
489
|
+
"description": "output file (defaults to key basename)",
|
|
490
|
+
"name": "output",
|
|
491
|
+
"required": false
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"description": "Download a file from the object storage",
|
|
598
495
|
"examples": [
|
|
599
|
-
"<%= config.bin %>
|
|
496
|
+
"<%= config.bin %> object get my-key --bucket my-bucket\nDownload file with key 'my-key' from my-bucket\n",
|
|
497
|
+
"<%= config.bin %> object get my-key output.txt --bucket my-bucket\nDownload file with key 'my-key' from my-bucket to output.txt\n"
|
|
600
498
|
],
|
|
601
499
|
"flags": {
|
|
602
|
-
"
|
|
603
|
-
"char": "
|
|
604
|
-
"description": "
|
|
605
|
-
"name": "
|
|
606
|
-
"required":
|
|
607
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
608
|
-
"hasDynamicHelp": false,
|
|
609
|
-
"multiple": false,
|
|
610
|
-
"type": "option"
|
|
611
|
-
},
|
|
612
|
-
"manifest": {
|
|
613
|
-
"char": "m",
|
|
614
|
-
"description": "project manifest",
|
|
615
|
-
"name": "manifest",
|
|
616
|
-
"required": false,
|
|
617
|
-
"default": "raindrop.manifest",
|
|
618
|
-
"hasDynamicHelp": false,
|
|
619
|
-
"multiple": false,
|
|
620
|
-
"type": "option"
|
|
621
|
-
},
|
|
622
|
-
"config": {
|
|
623
|
-
"char": "c",
|
|
624
|
-
"description": "config file",
|
|
625
|
-
"hidden": true,
|
|
626
|
-
"name": "config",
|
|
627
|
-
"required": false,
|
|
628
|
-
"default": ".raindrop/config.json",
|
|
629
|
-
"hasDynamicHelp": false,
|
|
630
|
-
"multiple": false,
|
|
631
|
-
"type": "option"
|
|
632
|
-
},
|
|
633
|
-
"application": {
|
|
634
|
-
"char": "a",
|
|
635
|
-
"description": "application",
|
|
636
|
-
"name": "application",
|
|
637
|
-
"required": false,
|
|
638
|
-
"hasDynamicHelp": false,
|
|
639
|
-
"multiple": false,
|
|
640
|
-
"type": "option"
|
|
641
|
-
},
|
|
642
|
-
"version": {
|
|
643
|
-
"char": "v",
|
|
644
|
-
"description": "application version",
|
|
645
|
-
"name": "version",
|
|
646
|
-
"required": false,
|
|
500
|
+
"bucket": {
|
|
501
|
+
"char": "b",
|
|
502
|
+
"description": "bucket name",
|
|
503
|
+
"name": "bucket",
|
|
504
|
+
"required": true,
|
|
647
505
|
"hasDynamicHelp": false,
|
|
648
506
|
"multiple": false,
|
|
649
507
|
"type": "option"
|
|
650
508
|
},
|
|
651
|
-
"
|
|
652
|
-
"char": "
|
|
509
|
+
"format": {
|
|
510
|
+
"char": "f",
|
|
653
511
|
"description": "output format",
|
|
654
|
-
"name": "
|
|
655
|
-
"default": "
|
|
512
|
+
"name": "format",
|
|
513
|
+
"default": "file",
|
|
656
514
|
"hasDynamicHelp": false,
|
|
657
515
|
"multiple": false,
|
|
658
516
|
"options": [
|
|
659
|
-
"
|
|
660
|
-
"
|
|
517
|
+
"file",
|
|
518
|
+
"stdout",
|
|
661
519
|
"json"
|
|
662
520
|
],
|
|
663
521
|
"type": "option"
|
|
664
522
|
},
|
|
665
|
-
"sudo": {
|
|
666
|
-
"char": "s",
|
|
667
|
-
"description": "superuser mode",
|
|
668
|
-
"hidden": true,
|
|
669
|
-
"name": "sudo",
|
|
670
|
-
"required": false,
|
|
671
|
-
"allowNo": false,
|
|
672
|
-
"type": "boolean"
|
|
673
|
-
},
|
|
674
523
|
"impersonate": {
|
|
675
524
|
"char": "i",
|
|
676
525
|
"description": "impersonate organization",
|
|
@@ -681,6 +530,17 @@
|
|
|
681
530
|
"multiple": false,
|
|
682
531
|
"type": "option"
|
|
683
532
|
},
|
|
533
|
+
"manifest": {
|
|
534
|
+
"char": "m",
|
|
535
|
+
"description": "project manifest",
|
|
536
|
+
"hidden": true,
|
|
537
|
+
"name": "manifest",
|
|
538
|
+
"required": false,
|
|
539
|
+
"default": "raindrop.manifest",
|
|
540
|
+
"hasDynamicHelp": false,
|
|
541
|
+
"multiple": false,
|
|
542
|
+
"type": "option"
|
|
543
|
+
},
|
|
684
544
|
"rainbowAuthService": {
|
|
685
545
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
686
546
|
"hidden": true,
|
|
@@ -702,7 +562,7 @@
|
|
|
702
562
|
},
|
|
703
563
|
"hasDynamicHelp": false,
|
|
704
564
|
"hiddenAliases": [],
|
|
705
|
-
"id": "
|
|
565
|
+
"id": "object:get",
|
|
706
566
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
707
567
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
708
568
|
"pluginType": "core",
|
|
@@ -713,24 +573,47 @@
|
|
|
713
573
|
"relativePath": [
|
|
714
574
|
"dist",
|
|
715
575
|
"commands",
|
|
716
|
-
"
|
|
717
|
-
"
|
|
576
|
+
"object",
|
|
577
|
+
"get.js"
|
|
718
578
|
]
|
|
719
579
|
},
|
|
720
|
-
"
|
|
580
|
+
"object:list": {
|
|
721
581
|
"aliases": [],
|
|
722
582
|
"args": {},
|
|
723
|
-
"description": "
|
|
583
|
+
"description": "List objects in a bucket",
|
|
724
584
|
"examples": [
|
|
725
|
-
"<%= config.bin %>
|
|
585
|
+
"<%= config.bin %> object list --bucket my-bucket\nList all objects in my-bucket\n"
|
|
726
586
|
],
|
|
727
587
|
"flags": {
|
|
728
|
-
"
|
|
729
|
-
"char": "
|
|
730
|
-
"description": "
|
|
731
|
-
"name": "
|
|
588
|
+
"bucket": {
|
|
589
|
+
"char": "b",
|
|
590
|
+
"description": "bucket name",
|
|
591
|
+
"name": "bucket",
|
|
592
|
+
"required": true,
|
|
593
|
+
"hasDynamicHelp": false,
|
|
594
|
+
"multiple": false,
|
|
595
|
+
"type": "option"
|
|
596
|
+
},
|
|
597
|
+
"output": {
|
|
598
|
+
"char": "o",
|
|
599
|
+
"description": "output format",
|
|
600
|
+
"name": "output",
|
|
601
|
+
"default": "text",
|
|
602
|
+
"hasDynamicHelp": false,
|
|
603
|
+
"multiple": false,
|
|
604
|
+
"options": [
|
|
605
|
+
"text",
|
|
606
|
+
"json",
|
|
607
|
+
"table"
|
|
608
|
+
],
|
|
609
|
+
"type": "option"
|
|
610
|
+
},
|
|
611
|
+
"impersonate": {
|
|
612
|
+
"char": "i",
|
|
613
|
+
"description": "impersonate organization",
|
|
614
|
+
"hidden": true,
|
|
615
|
+
"name": "impersonate",
|
|
732
616
|
"required": false,
|
|
733
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
734
617
|
"hasDynamicHelp": false,
|
|
735
618
|
"multiple": false,
|
|
736
619
|
"type": "option"
|
|
@@ -738,6 +621,7 @@
|
|
|
738
621
|
"manifest": {
|
|
739
622
|
"char": "m",
|
|
740
623
|
"description": "project manifest",
|
|
624
|
+
"hidden": true,
|
|
741
625
|
"name": "manifest",
|
|
742
626
|
"required": false,
|
|
743
627
|
"default": "raindrop.manifest",
|
|
@@ -745,22 +629,20 @@
|
|
|
745
629
|
"multiple": false,
|
|
746
630
|
"type": "option"
|
|
747
631
|
},
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"description": "config file",
|
|
632
|
+
"rainbowAuthService": {
|
|
633
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
751
634
|
"hidden": true,
|
|
752
|
-
"name": "
|
|
753
|
-
"
|
|
754
|
-
"default": ".raindrop/config.json",
|
|
635
|
+
"name": "rainbowAuthService",
|
|
636
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
755
637
|
"hasDynamicHelp": false,
|
|
756
638
|
"multiple": false,
|
|
757
639
|
"type": "option"
|
|
758
640
|
},
|
|
759
|
-
"
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
763
|
-
"
|
|
641
|
+
"raindropCatalogService": {
|
|
642
|
+
"description": "URL of the catalog service",
|
|
643
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
644
|
+
"hidden": true,
|
|
645
|
+
"name": "raindropCatalogService",
|
|
764
646
|
"hasDynamicHelp": false,
|
|
765
647
|
"multiple": false,
|
|
766
648
|
"type": "option"
|
|
@@ -768,7 +650,7 @@
|
|
|
768
650
|
},
|
|
769
651
|
"hasDynamicHelp": false,
|
|
770
652
|
"hiddenAliases": [],
|
|
771
|
-
"id": "
|
|
653
|
+
"id": "object:list",
|
|
772
654
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
773
655
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
774
656
|
"pluginType": "core",
|
|
@@ -779,76 +661,57 @@
|
|
|
779
661
|
"relativePath": [
|
|
780
662
|
"dist",
|
|
781
663
|
"commands",
|
|
782
|
-
"
|
|
783
|
-
"
|
|
664
|
+
"object",
|
|
665
|
+
"list.js"
|
|
784
666
|
]
|
|
785
667
|
},
|
|
786
|
-
"
|
|
668
|
+
"object:put": {
|
|
787
669
|
"aliases": [],
|
|
788
670
|
"args": {
|
|
789
|
-
"
|
|
790
|
-
"
|
|
791
|
-
"
|
|
792
|
-
"
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
"<%= config.bin %> <%= command.id %> .\nInitialize a project in the current directory.\n"
|
|
799
|
-
],
|
|
800
|
-
"flags": {
|
|
801
|
-
"overwrite": {
|
|
802
|
-
"description": "Overwrite existing files",
|
|
803
|
-
"name": "overwrite",
|
|
804
|
-
"allowNo": false,
|
|
805
|
-
"type": "boolean"
|
|
671
|
+
"file": {
|
|
672
|
+
"description": "file to upload",
|
|
673
|
+
"name": "file",
|
|
674
|
+
"required": true
|
|
675
|
+
},
|
|
676
|
+
"key": {
|
|
677
|
+
"description": "key/path in the bucket",
|
|
678
|
+
"name": "key",
|
|
679
|
+
"required": true
|
|
806
680
|
}
|
|
807
681
|
},
|
|
808
|
-
"
|
|
809
|
-
"hiddenAliases": [],
|
|
810
|
-
"id": "build:init",
|
|
811
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
812
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
813
|
-
"pluginType": "core",
|
|
814
|
-
"strict": true,
|
|
815
|
-
"enableJsonFlag": false,
|
|
816
|
-
"baseArgs": {},
|
|
817
|
-
"isESM": true,
|
|
818
|
-
"relativePath": [
|
|
819
|
-
"dist",
|
|
820
|
-
"commands",
|
|
821
|
-
"build",
|
|
822
|
-
"init.js"
|
|
823
|
-
]
|
|
824
|
-
},
|
|
825
|
-
"build:list": {
|
|
826
|
-
"aliases": [],
|
|
827
|
-
"args": {},
|
|
828
|
-
"description": "list Raindrop catalog resources",
|
|
682
|
+
"description": "Upload a file to the object storage",
|
|
829
683
|
"examples": [
|
|
830
|
-
"<%= config.bin %>
|
|
684
|
+
"<%= config.bin %> object put ./myfile.txt my-key --bucket my-bucket\nUpload myfile.txt to my-bucket with key 'my-key'\n"
|
|
831
685
|
],
|
|
832
686
|
"flags": {
|
|
833
|
-
"
|
|
834
|
-
"char": "
|
|
835
|
-
"description": "
|
|
836
|
-
"name": "
|
|
837
|
-
"
|
|
838
|
-
"
|
|
687
|
+
"bucket": {
|
|
688
|
+
"char": "b",
|
|
689
|
+
"description": "bucket name",
|
|
690
|
+
"name": "bucket",
|
|
691
|
+
"required": true,
|
|
692
|
+
"hasDynamicHelp": false,
|
|
693
|
+
"multiple": false,
|
|
694
|
+
"type": "option"
|
|
695
|
+
},
|
|
696
|
+
"contentType": {
|
|
697
|
+
"char": "t",
|
|
698
|
+
"description": "content type of the file",
|
|
699
|
+
"name": "contentType",
|
|
700
|
+
"required": false,
|
|
701
|
+
"hasDynamicHelp": false,
|
|
702
|
+
"multiple": false,
|
|
703
|
+
"type": "option"
|
|
839
704
|
},
|
|
840
705
|
"output": {
|
|
841
706
|
"char": "o",
|
|
842
707
|
"description": "output format",
|
|
843
708
|
"name": "output",
|
|
844
|
-
"default": "
|
|
709
|
+
"default": "text",
|
|
845
710
|
"hasDynamicHelp": false,
|
|
846
711
|
"multiple": false,
|
|
847
712
|
"options": [
|
|
848
713
|
"text",
|
|
849
|
-
"
|
|
850
|
-
"json",
|
|
851
|
-
"log"
|
|
714
|
+
"json"
|
|
852
715
|
],
|
|
853
716
|
"type": "option"
|
|
854
717
|
},
|
|
@@ -894,7 +757,7 @@
|
|
|
894
757
|
},
|
|
895
758
|
"hasDynamicHelp": false,
|
|
896
759
|
"hiddenAliases": [],
|
|
897
|
-
"id": "
|
|
760
|
+
"id": "object:put",
|
|
898
761
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
899
762
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
900
763
|
"pluginType": "core",
|
|
@@ -905,92 +768,22 @@
|
|
|
905
768
|
"relativePath": [
|
|
906
769
|
"dist",
|
|
907
770
|
"commands",
|
|
908
|
-
"
|
|
909
|
-
"
|
|
771
|
+
"object",
|
|
772
|
+
"put.js"
|
|
910
773
|
]
|
|
911
774
|
},
|
|
912
|
-
"build:
|
|
775
|
+
"build:branch": {
|
|
913
776
|
"aliases": [],
|
|
914
777
|
"args": {
|
|
915
|
-
"
|
|
916
|
-
"description": "
|
|
917
|
-
"name": "
|
|
918
|
-
"required":
|
|
919
|
-
}
|
|
920
|
-
},
|
|
921
|
-
"description": "mark a version as sandboxed in the Raindrop catalog",
|
|
922
|
-
"examples": [
|
|
923
|
-
"<%= config.bin %> <%= command.id %>\n"
|
|
924
|
-
],
|
|
925
|
-
"flags": {
|
|
926
|
-
"impersonate": {
|
|
927
|
-
"char": "i",
|
|
928
|
-
"description": "impersonate organization",
|
|
929
|
-
"hidden": true,
|
|
930
|
-
"name": "impersonate",
|
|
931
|
-
"required": false,
|
|
932
|
-
"hasDynamicHelp": false,
|
|
933
|
-
"multiple": false,
|
|
934
|
-
"type": "option"
|
|
935
|
-
},
|
|
936
|
-
"rainbowAuthService": {
|
|
937
|
-
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
938
|
-
"hidden": true,
|
|
939
|
-
"name": "rainbowAuthService",
|
|
940
|
-
"default": "https://liquidmetal.run/api/connect",
|
|
941
|
-
"hasDynamicHelp": false,
|
|
942
|
-
"multiple": false,
|
|
943
|
-
"type": "option"
|
|
944
|
-
},
|
|
945
|
-
"raindropCatalogService": {
|
|
946
|
-
"description": "URL of the catalog service",
|
|
947
|
-
"env": "RAINDROP_CATALOG_SERVICE",
|
|
948
|
-
"hidden": true,
|
|
949
|
-
"name": "raindropCatalogService",
|
|
950
|
-
"hasDynamicHelp": false,
|
|
951
|
-
"multiple": false,
|
|
952
|
-
"type": "option"
|
|
953
|
-
},
|
|
954
|
-
"config": {
|
|
955
|
-
"hidden": true,
|
|
956
|
-
"name": "config",
|
|
957
|
-
"default": ".raindrop/config.json",
|
|
958
|
-
"hasDynamicHelp": false,
|
|
959
|
-
"multiple": false,
|
|
960
|
-
"type": "option"
|
|
961
|
-
},
|
|
962
|
-
"manifest": {
|
|
963
|
-
"description": "project manifest",
|
|
964
|
-
"name": "manifest",
|
|
965
|
-
"default": "raindrop.manifest",
|
|
966
|
-
"hasDynamicHelp": false,
|
|
967
|
-
"multiple": false,
|
|
968
|
-
"type": "option"
|
|
778
|
+
"branch": {
|
|
779
|
+
"description": "branch name",
|
|
780
|
+
"name": "branch",
|
|
781
|
+
"required": true
|
|
969
782
|
}
|
|
970
783
|
},
|
|
971
|
-
"
|
|
972
|
-
"hiddenAliases": [],
|
|
973
|
-
"id": "build:sandbox",
|
|
974
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
975
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
976
|
-
"pluginType": "core",
|
|
977
|
-
"strict": true,
|
|
978
|
-
"enableJsonFlag": false,
|
|
979
|
-
"baseArgs": {},
|
|
980
|
-
"isESM": true,
|
|
981
|
-
"relativePath": [
|
|
982
|
-
"dist",
|
|
983
|
-
"commands",
|
|
984
|
-
"build",
|
|
985
|
-
"sandbox.js"
|
|
986
|
-
]
|
|
987
|
-
},
|
|
988
|
-
"build:start": {
|
|
989
|
-
"aliases": [],
|
|
990
|
-
"args": {},
|
|
991
|
-
"description": "start a Raindrop application",
|
|
784
|
+
"description": "create a new branch in the Raindrop catalog",
|
|
992
785
|
"examples": [
|
|
993
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
786
|
+
"<%= config.bin %> <%= command.id %> .\nCreated new branch 1234\n"
|
|
994
787
|
],
|
|
995
788
|
"flags": {
|
|
996
789
|
"root": {
|
|
@@ -1024,24 +817,35 @@
|
|
|
1024
817
|
"multiple": false,
|
|
1025
818
|
"type": "option"
|
|
1026
819
|
},
|
|
1027
|
-
"
|
|
1028
|
-
"char": "
|
|
1029
|
-
"description": "
|
|
1030
|
-
"name": "
|
|
820
|
+
"output": {
|
|
821
|
+
"char": "o",
|
|
822
|
+
"description": "output directory",
|
|
823
|
+
"name": "output",
|
|
1031
824
|
"required": false,
|
|
825
|
+
"default": "dist",
|
|
1032
826
|
"hasDynamicHelp": false,
|
|
1033
827
|
"multiple": false,
|
|
1034
828
|
"type": "option"
|
|
1035
829
|
},
|
|
1036
|
-
"
|
|
1037
|
-
"
|
|
1038
|
-
|
|
1039
|
-
|
|
830
|
+
"versionId": {
|
|
831
|
+
"aliases": [
|
|
832
|
+
"version"
|
|
833
|
+
],
|
|
834
|
+
"char": "p",
|
|
835
|
+
"description": "Branch from this version",
|
|
836
|
+
"name": "versionId",
|
|
1040
837
|
"required": false,
|
|
1041
838
|
"hasDynamicHelp": false,
|
|
1042
839
|
"multiple": false,
|
|
1043
840
|
"type": "option"
|
|
1044
841
|
},
|
|
842
|
+
"start": {
|
|
843
|
+
"description": "Start the application",
|
|
844
|
+
"name": "start",
|
|
845
|
+
"required": false,
|
|
846
|
+
"allowNo": false,
|
|
847
|
+
"type": "boolean"
|
|
848
|
+
},
|
|
1045
849
|
"impersonate": {
|
|
1046
850
|
"char": "i",
|
|
1047
851
|
"description": "impersonate organization",
|
|
@@ -1069,11 +873,18 @@
|
|
|
1069
873
|
"hasDynamicHelp": false,
|
|
1070
874
|
"multiple": false,
|
|
1071
875
|
"type": "option"
|
|
876
|
+
},
|
|
877
|
+
"show": {
|
|
878
|
+
"description": "show the current branch",
|
|
879
|
+
"name": "show",
|
|
880
|
+
"required": false,
|
|
881
|
+
"allowNo": false,
|
|
882
|
+
"type": "boolean"
|
|
1072
883
|
}
|
|
1073
884
|
},
|
|
1074
885
|
"hasDynamicHelp": false,
|
|
1075
886
|
"hiddenAliases": [],
|
|
1076
|
-
"id": "build:
|
|
887
|
+
"id": "build:branch",
|
|
1077
888
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1078
889
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1079
890
|
"pluginType": "core",
|
|
@@ -1085,37 +896,23 @@
|
|
|
1085
896
|
"dist",
|
|
1086
897
|
"commands",
|
|
1087
898
|
"build",
|
|
1088
|
-
"
|
|
899
|
+
"branch.js"
|
|
1089
900
|
]
|
|
1090
901
|
},
|
|
1091
|
-
"build:
|
|
902
|
+
"build:checkout": {
|
|
1092
903
|
"aliases": [],
|
|
1093
|
-
"args": {
|
|
1094
|
-
|
|
904
|
+
"args": {
|
|
905
|
+
"version": {
|
|
906
|
+
"description": "version id",
|
|
907
|
+
"name": "version",
|
|
908
|
+
"required": false
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
"description": "switch the current context to a specific version",
|
|
1095
912
|
"examples": [
|
|
1096
|
-
"<%= config.bin %> <%= command.id %>
|
|
913
|
+
"<%= config.bin %> <%= command.id %>\nCurrently on version: 01jac6p20m4gahn1kaa2mhm2js\n\n<%= config.bin %> <%= command.id %> 01jux6z20m4gbhn5kaa4mcm2jr\nSwitched to version: 01jux6z20m4gbhn5kaa4mcm2jr\n"
|
|
1097
914
|
],
|
|
1098
915
|
"flags": {
|
|
1099
|
-
"root": {
|
|
1100
|
-
"char": "r",
|
|
1101
|
-
"description": "root directory",
|
|
1102
|
-
"name": "root",
|
|
1103
|
-
"required": false,
|
|
1104
|
-
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1105
|
-
"hasDynamicHelp": false,
|
|
1106
|
-
"multiple": false,
|
|
1107
|
-
"type": "option"
|
|
1108
|
-
},
|
|
1109
|
-
"manifest": {
|
|
1110
|
-
"char": "m",
|
|
1111
|
-
"description": "project manifest",
|
|
1112
|
-
"name": "manifest",
|
|
1113
|
-
"required": false,
|
|
1114
|
-
"default": "raindrop.manifest",
|
|
1115
|
-
"hasDynamicHelp": false,
|
|
1116
|
-
"multiple": false,
|
|
1117
|
-
"type": "option"
|
|
1118
|
-
},
|
|
1119
916
|
"config": {
|
|
1120
917
|
"char": "c",
|
|
1121
918
|
"description": "config file",
|
|
@@ -1127,53 +924,12 @@
|
|
|
1127
924
|
"multiple": false,
|
|
1128
925
|
"type": "option"
|
|
1129
926
|
},
|
|
1130
|
-
"
|
|
1131
|
-
"char": "
|
|
1132
|
-
"description": "
|
|
1133
|
-
"name": "
|
|
1134
|
-
"required": false,
|
|
1135
|
-
"hasDynamicHelp": false,
|
|
1136
|
-
"multiple": false,
|
|
1137
|
-
"type": "option"
|
|
1138
|
-
},
|
|
1139
|
-
"version": {
|
|
1140
|
-
"char": "v",
|
|
1141
|
-
"description": "application version",
|
|
1142
|
-
"name": "version",
|
|
1143
|
-
"required": false,
|
|
1144
|
-
"hasDynamicHelp": false,
|
|
1145
|
-
"multiple": false,
|
|
1146
|
-
"type": "option"
|
|
1147
|
-
},
|
|
1148
|
-
"output": {
|
|
1149
|
-
"char": "o",
|
|
1150
|
-
"description": "output format",
|
|
1151
|
-
"name": "output",
|
|
1152
|
-
"default": "table",
|
|
1153
|
-
"hasDynamicHelp": false,
|
|
1154
|
-
"multiple": false,
|
|
1155
|
-
"options": [
|
|
1156
|
-
"text",
|
|
1157
|
-
"table",
|
|
1158
|
-
"json"
|
|
1159
|
-
],
|
|
1160
|
-
"type": "option"
|
|
1161
|
-
},
|
|
1162
|
-
"sudo": {
|
|
1163
|
-
"char": "s",
|
|
1164
|
-
"description": "superuser mode",
|
|
1165
|
-
"hidden": true,
|
|
1166
|
-
"name": "sudo",
|
|
1167
|
-
"required": false,
|
|
1168
|
-
"allowNo": false,
|
|
1169
|
-
"type": "boolean"
|
|
1170
|
-
},
|
|
1171
|
-
"impersonate": {
|
|
1172
|
-
"char": "i",
|
|
1173
|
-
"description": "impersonate organization",
|
|
1174
|
-
"hidden": true,
|
|
1175
|
-
"name": "impersonate",
|
|
927
|
+
"output": {
|
|
928
|
+
"char": "o",
|
|
929
|
+
"description": "output format",
|
|
930
|
+
"name": "output",
|
|
1176
931
|
"required": false,
|
|
932
|
+
"default": "text",
|
|
1177
933
|
"hasDynamicHelp": false,
|
|
1178
934
|
"multiple": false,
|
|
1179
935
|
"type": "option"
|
|
@@ -1199,7 +955,7 @@
|
|
|
1199
955
|
},
|
|
1200
956
|
"hasDynamicHelp": false,
|
|
1201
957
|
"hiddenAliases": [],
|
|
1202
|
-
"id": "build:
|
|
958
|
+
"id": "build:checkout",
|
|
1203
959
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1204
960
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1205
961
|
"pluginType": "core",
|
|
@@ -1211,15 +967,21 @@
|
|
|
1211
967
|
"dist",
|
|
1212
968
|
"commands",
|
|
1213
969
|
"build",
|
|
1214
|
-
"
|
|
970
|
+
"checkout.js"
|
|
1215
971
|
]
|
|
1216
972
|
},
|
|
1217
|
-
"build:
|
|
973
|
+
"build:delete": {
|
|
1218
974
|
"aliases": [],
|
|
1219
|
-
"args": {
|
|
1220
|
-
|
|
975
|
+
"args": {
|
|
976
|
+
"application": {
|
|
977
|
+
"description": "application name",
|
|
978
|
+
"name": "application",
|
|
979
|
+
"required": false
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
"description": "delete Raindrop applications",
|
|
1221
983
|
"examples": [
|
|
1222
|
-
"<%= config.bin %> <%= command.id %> .\
|
|
984
|
+
"<%= config.bin %> <%= command.id %> .\nDeleted (application) at version (version)\n"
|
|
1223
985
|
],
|
|
1224
986
|
"flags": {
|
|
1225
987
|
"root": {
|
|
@@ -1253,24 +1015,43 @@
|
|
|
1253
1015
|
"multiple": false,
|
|
1254
1016
|
"type": "option"
|
|
1255
1017
|
},
|
|
1256
|
-
"
|
|
1257
|
-
"char": "
|
|
1258
|
-
"description": "
|
|
1259
|
-
"name": "
|
|
1260
|
-
"
|
|
1018
|
+
"output": {
|
|
1019
|
+
"char": "o",
|
|
1020
|
+
"description": "output format",
|
|
1021
|
+
"name": "output",
|
|
1022
|
+
"default": "table",
|
|
1261
1023
|
"hasDynamicHelp": false,
|
|
1262
1024
|
"multiple": false,
|
|
1025
|
+
"options": [
|
|
1026
|
+
"text",
|
|
1027
|
+
"table",
|
|
1028
|
+
"json"
|
|
1029
|
+
],
|
|
1263
1030
|
"type": "option"
|
|
1264
1031
|
},
|
|
1265
1032
|
"version": {
|
|
1266
1033
|
"char": "v",
|
|
1267
|
-
"description": "application version to
|
|
1034
|
+
"description": "application version to delete",
|
|
1035
|
+
"exclusive": [
|
|
1036
|
+
"all"
|
|
1037
|
+
],
|
|
1268
1038
|
"name": "version",
|
|
1269
1039
|
"required": false,
|
|
1270
1040
|
"hasDynamicHelp": false,
|
|
1271
1041
|
"multiple": false,
|
|
1272
1042
|
"type": "option"
|
|
1273
1043
|
},
|
|
1044
|
+
"all": {
|
|
1045
|
+
"char": "a",
|
|
1046
|
+
"description": "delete all application versions",
|
|
1047
|
+
"exclusive": [
|
|
1048
|
+
"version"
|
|
1049
|
+
],
|
|
1050
|
+
"name": "all",
|
|
1051
|
+
"required": false,
|
|
1052
|
+
"allowNo": false,
|
|
1053
|
+
"type": "boolean"
|
|
1054
|
+
},
|
|
1274
1055
|
"impersonate": {
|
|
1275
1056
|
"char": "i",
|
|
1276
1057
|
"description": "impersonate organization",
|
|
@@ -1302,7 +1083,7 @@
|
|
|
1302
1083
|
},
|
|
1303
1084
|
"hasDynamicHelp": false,
|
|
1304
1085
|
"hiddenAliases": [],
|
|
1305
|
-
"id": "build:
|
|
1086
|
+
"id": "build:delete",
|
|
1306
1087
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1307
1088
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1308
1089
|
"pluginType": "core",
|
|
@@ -1314,23 +1095,70 @@
|
|
|
1314
1095
|
"dist",
|
|
1315
1096
|
"commands",
|
|
1316
1097
|
"build",
|
|
1317
|
-
"
|
|
1098
|
+
"delete.js"
|
|
1318
1099
|
]
|
|
1319
1100
|
},
|
|
1320
|
-
"build:
|
|
1101
|
+
"build:deploy": {
|
|
1321
1102
|
"aliases": [],
|
|
1322
|
-
"args": {
|
|
1323
|
-
|
|
1324
|
-
"description": "version to sandbox",
|
|
1325
|
-
"name": "versionId",
|
|
1326
|
-
"required": false
|
|
1327
|
-
}
|
|
1328
|
-
},
|
|
1329
|
-
"description": "mark a version as unsandboxed in the Raindrop catalog",
|
|
1103
|
+
"args": {},
|
|
1104
|
+
"description": "deploy a Raindrop application",
|
|
1330
1105
|
"examples": [
|
|
1331
|
-
"<%= config.bin %> <%= command.id
|
|
1106
|
+
"<%= config.bin %> <%= command.id %> .\nDeploy a Raindrop application.\n"
|
|
1332
1107
|
],
|
|
1333
1108
|
"flags": {
|
|
1109
|
+
"root": {
|
|
1110
|
+
"char": "r",
|
|
1111
|
+
"description": "root directory",
|
|
1112
|
+
"name": "root",
|
|
1113
|
+
"required": false,
|
|
1114
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1115
|
+
"hasDynamicHelp": false,
|
|
1116
|
+
"multiple": false,
|
|
1117
|
+
"type": "option"
|
|
1118
|
+
},
|
|
1119
|
+
"manifest": {
|
|
1120
|
+
"char": "m",
|
|
1121
|
+
"description": "project manifest",
|
|
1122
|
+
"name": "manifest",
|
|
1123
|
+
"required": false,
|
|
1124
|
+
"default": "raindrop.manifest",
|
|
1125
|
+
"hasDynamicHelp": false,
|
|
1126
|
+
"multiple": false,
|
|
1127
|
+
"type": "option"
|
|
1128
|
+
},
|
|
1129
|
+
"config": {
|
|
1130
|
+
"char": "c",
|
|
1131
|
+
"description": "config file",
|
|
1132
|
+
"hidden": true,
|
|
1133
|
+
"name": "config",
|
|
1134
|
+
"required": false,
|
|
1135
|
+
"default": ".raindrop/config.json",
|
|
1136
|
+
"hasDynamicHelp": false,
|
|
1137
|
+
"multiple": false,
|
|
1138
|
+
"type": "option"
|
|
1139
|
+
},
|
|
1140
|
+
"output": {
|
|
1141
|
+
"char": "o",
|
|
1142
|
+
"description": "output directory",
|
|
1143
|
+
"name": "output",
|
|
1144
|
+
"required": false,
|
|
1145
|
+
"default": "dist",
|
|
1146
|
+
"hasDynamicHelp": false,
|
|
1147
|
+
"multiple": false,
|
|
1148
|
+
"type": "option"
|
|
1149
|
+
},
|
|
1150
|
+
"versionId": {
|
|
1151
|
+
"aliases": [
|
|
1152
|
+
"version"
|
|
1153
|
+
],
|
|
1154
|
+
"char": "v",
|
|
1155
|
+
"description": "version ID",
|
|
1156
|
+
"name": "versionId",
|
|
1157
|
+
"required": false,
|
|
1158
|
+
"hasDynamicHelp": false,
|
|
1159
|
+
"multiple": false,
|
|
1160
|
+
"type": "option"
|
|
1161
|
+
},
|
|
1334
1162
|
"impersonate": {
|
|
1335
1163
|
"char": "i",
|
|
1336
1164
|
"description": "impersonate organization",
|
|
@@ -1359,26 +1187,26 @@
|
|
|
1359
1187
|
"multiple": false,
|
|
1360
1188
|
"type": "option"
|
|
1361
1189
|
},
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1364
|
-
"
|
|
1365
|
-
"
|
|
1366
|
-
"
|
|
1367
|
-
"
|
|
1368
|
-
"type": "
|
|
1190
|
+
"start": {
|
|
1191
|
+
"char": "s",
|
|
1192
|
+
"description": "start the application after deploying",
|
|
1193
|
+
"name": "start",
|
|
1194
|
+
"required": false,
|
|
1195
|
+
"allowNo": false,
|
|
1196
|
+
"type": "boolean"
|
|
1369
1197
|
},
|
|
1370
|
-
"
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1375
|
-
"
|
|
1376
|
-
"type": "
|
|
1198
|
+
"amend": {
|
|
1199
|
+
"char": "a",
|
|
1200
|
+
"description": "amend an existing application",
|
|
1201
|
+
"name": "amend",
|
|
1202
|
+
"required": false,
|
|
1203
|
+
"allowNo": false,
|
|
1204
|
+
"type": "boolean"
|
|
1377
1205
|
}
|
|
1378
1206
|
},
|
|
1379
1207
|
"hasDynamicHelp": false,
|
|
1380
1208
|
"hiddenAliases": [],
|
|
1381
|
-
"id": "build:
|
|
1209
|
+
"id": "build:deploy",
|
|
1382
1210
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1383
1211
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1384
1212
|
"pluginType": "core",
|
|
@@ -1390,15 +1218,15 @@
|
|
|
1390
1218
|
"dist",
|
|
1391
1219
|
"commands",
|
|
1392
1220
|
"build",
|
|
1393
|
-
"
|
|
1221
|
+
"deploy.js"
|
|
1394
1222
|
]
|
|
1395
1223
|
},
|
|
1396
|
-
"build:
|
|
1224
|
+
"build:find": {
|
|
1397
1225
|
"aliases": [],
|
|
1398
1226
|
"args": {},
|
|
1399
|
-
"description": "
|
|
1227
|
+
"description": "find resources in Raindrop",
|
|
1400
1228
|
"examples": [
|
|
1401
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1229
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
1402
1230
|
],
|
|
1403
1231
|
"flags": {
|
|
1404
1232
|
"root": {
|
|
@@ -1432,25 +1260,47 @@
|
|
|
1432
1260
|
"multiple": false,
|
|
1433
1261
|
"type": "option"
|
|
1434
1262
|
},
|
|
1435
|
-
"
|
|
1436
|
-
"char": "
|
|
1437
|
-
"description": "
|
|
1438
|
-
"name": "
|
|
1263
|
+
"application": {
|
|
1264
|
+
"char": "a",
|
|
1265
|
+
"description": "application",
|
|
1266
|
+
"name": "application",
|
|
1439
1267
|
"required": false,
|
|
1440
|
-
"default": "dist",
|
|
1441
1268
|
"hasDynamicHelp": false,
|
|
1442
1269
|
"multiple": false,
|
|
1443
1270
|
"type": "option"
|
|
1444
1271
|
},
|
|
1445
|
-
"
|
|
1272
|
+
"version": {
|
|
1446
1273
|
"char": "v",
|
|
1447
|
-
"description": "version
|
|
1448
|
-
"name": "
|
|
1449
|
-
"required":
|
|
1274
|
+
"description": "application version",
|
|
1275
|
+
"name": "version",
|
|
1276
|
+
"required": false,
|
|
1277
|
+
"hasDynamicHelp": false,
|
|
1278
|
+
"multiple": false,
|
|
1279
|
+
"type": "option"
|
|
1280
|
+
},
|
|
1281
|
+
"output": {
|
|
1282
|
+
"char": "o",
|
|
1283
|
+
"description": "output format",
|
|
1284
|
+
"name": "output",
|
|
1285
|
+
"default": "table",
|
|
1450
1286
|
"hasDynamicHelp": false,
|
|
1451
1287
|
"multiple": false,
|
|
1288
|
+
"options": [
|
|
1289
|
+
"text",
|
|
1290
|
+
"table",
|
|
1291
|
+
"json"
|
|
1292
|
+
],
|
|
1452
1293
|
"type": "option"
|
|
1453
1294
|
},
|
|
1295
|
+
"sudo": {
|
|
1296
|
+
"char": "s",
|
|
1297
|
+
"description": "superuser mode",
|
|
1298
|
+
"hidden": true,
|
|
1299
|
+
"name": "sudo",
|
|
1300
|
+
"required": false,
|
|
1301
|
+
"allowNo": false,
|
|
1302
|
+
"type": "boolean"
|
|
1303
|
+
},
|
|
1454
1304
|
"impersonate": {
|
|
1455
1305
|
"char": "i",
|
|
1456
1306
|
"description": "impersonate organization",
|
|
@@ -1482,7 +1332,7 @@
|
|
|
1482
1332
|
},
|
|
1483
1333
|
"hasDynamicHelp": false,
|
|
1484
1334
|
"hiddenAliases": [],
|
|
1485
|
-
"id": "build:
|
|
1335
|
+
"id": "build:find",
|
|
1486
1336
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1487
1337
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1488
1338
|
"pluginType": "core",
|
|
@@ -1494,13 +1344,13 @@
|
|
|
1494
1344
|
"dist",
|
|
1495
1345
|
"commands",
|
|
1496
1346
|
"build",
|
|
1497
|
-
"
|
|
1347
|
+
"find.js"
|
|
1498
1348
|
]
|
|
1499
1349
|
},
|
|
1500
|
-
"build:
|
|
1350
|
+
"build:generate": {
|
|
1501
1351
|
"aliases": [],
|
|
1502
1352
|
"args": {},
|
|
1503
|
-
"description": "
|
|
1353
|
+
"description": "(re)generate all code for a LiquidMetal.AI project",
|
|
1504
1354
|
"examples": [
|
|
1505
1355
|
"<%= config.bin %> <%= command.id %>"
|
|
1506
1356
|
],
|
|
@@ -1540,7 +1390,6 @@
|
|
|
1540
1390
|
"char": "o",
|
|
1541
1391
|
"description": "output directory",
|
|
1542
1392
|
"name": "output",
|
|
1543
|
-
"required": false,
|
|
1544
1393
|
"default": "dist",
|
|
1545
1394
|
"hasDynamicHelp": false,
|
|
1546
1395
|
"multiple": false,
|
|
@@ -1549,7 +1398,7 @@
|
|
|
1549
1398
|
},
|
|
1550
1399
|
"hasDynamicHelp": false,
|
|
1551
1400
|
"hiddenAliases": [],
|
|
1552
|
-
"id": "build:
|
|
1401
|
+
"id": "build:generate",
|
|
1553
1402
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1554
1403
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1555
1404
|
"pluginType": "core",
|
|
@@ -1561,33 +1410,75 @@
|
|
|
1561
1410
|
"dist",
|
|
1562
1411
|
"commands",
|
|
1563
1412
|
"build",
|
|
1564
|
-
"
|
|
1413
|
+
"generate.js"
|
|
1565
1414
|
]
|
|
1566
1415
|
},
|
|
1567
|
-
"
|
|
1416
|
+
"build:init": {
|
|
1568
1417
|
"aliases": [],
|
|
1569
1418
|
"args": {
|
|
1570
|
-
"
|
|
1571
|
-
"
|
|
1572
|
-
"
|
|
1573
|
-
"
|
|
1419
|
+
"path": {
|
|
1420
|
+
"default": ".",
|
|
1421
|
+
"description": "Path to initialize the project in",
|
|
1422
|
+
"name": "path",
|
|
1423
|
+
"required": false
|
|
1574
1424
|
}
|
|
1575
1425
|
},
|
|
1576
|
-
"description": "
|
|
1426
|
+
"description": "start a new LiquidMetal.AI project",
|
|
1577
1427
|
"examples": [
|
|
1578
|
-
"<%= config.bin %>
|
|
1428
|
+
"<%= config.bin %> <%= command.id %> .\nInitialize a project in the current directory.\n"
|
|
1579
1429
|
],
|
|
1580
1430
|
"flags": {
|
|
1431
|
+
"overwrite": {
|
|
1432
|
+
"description": "Overwrite existing files",
|
|
1433
|
+
"name": "overwrite",
|
|
1434
|
+
"allowNo": false,
|
|
1435
|
+
"type": "boolean"
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"hasDynamicHelp": false,
|
|
1439
|
+
"hiddenAliases": [],
|
|
1440
|
+
"id": "build:init",
|
|
1441
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1442
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1443
|
+
"pluginType": "core",
|
|
1444
|
+
"strict": true,
|
|
1445
|
+
"enableJsonFlag": false,
|
|
1446
|
+
"baseArgs": {},
|
|
1447
|
+
"isESM": true,
|
|
1448
|
+
"relativePath": [
|
|
1449
|
+
"dist",
|
|
1450
|
+
"commands",
|
|
1451
|
+
"build",
|
|
1452
|
+
"init.js"
|
|
1453
|
+
]
|
|
1454
|
+
},
|
|
1455
|
+
"build:list": {
|
|
1456
|
+
"aliases": [],
|
|
1457
|
+
"args": {},
|
|
1458
|
+
"description": "list Raindrop catalog resources",
|
|
1459
|
+
"examples": [
|
|
1460
|
+
"<%= config.bin %> <%= command.id %> .\nList Raindrop catalog resources.\n"
|
|
1461
|
+
],
|
|
1462
|
+
"flags": {
|
|
1463
|
+
"all": {
|
|
1464
|
+
"char": "a",
|
|
1465
|
+
"description": "show deleted resources",
|
|
1466
|
+
"name": "all",
|
|
1467
|
+
"allowNo": false,
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
},
|
|
1581
1470
|
"output": {
|
|
1582
1471
|
"char": "o",
|
|
1583
1472
|
"description": "output format",
|
|
1584
1473
|
"name": "output",
|
|
1585
|
-
"default": "
|
|
1474
|
+
"default": "table",
|
|
1586
1475
|
"hasDynamicHelp": false,
|
|
1587
1476
|
"multiple": false,
|
|
1588
1477
|
"options": [
|
|
1589
1478
|
"text",
|
|
1590
|
-
"
|
|
1479
|
+
"table",
|
|
1480
|
+
"json",
|
|
1481
|
+
"log"
|
|
1591
1482
|
],
|
|
1592
1483
|
"type": "option"
|
|
1593
1484
|
},
|
|
@@ -1633,7 +1524,7 @@
|
|
|
1633
1524
|
},
|
|
1634
1525
|
"hasDynamicHelp": false,
|
|
1635
1526
|
"hiddenAliases": [],
|
|
1636
|
-
"id": "
|
|
1527
|
+
"id": "build:list",
|
|
1637
1528
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1638
1529
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1639
1530
|
"pluginType": "core",
|
|
@@ -1644,39 +1535,43 @@
|
|
|
1644
1535
|
"relativePath": [
|
|
1645
1536
|
"dist",
|
|
1646
1537
|
"commands",
|
|
1647
|
-
"
|
|
1648
|
-
"
|
|
1538
|
+
"build",
|
|
1539
|
+
"list.js"
|
|
1649
1540
|
]
|
|
1650
1541
|
},
|
|
1651
|
-
"
|
|
1542
|
+
"build:sandbox": {
|
|
1652
1543
|
"aliases": [],
|
|
1653
1544
|
"args": {
|
|
1654
|
-
"
|
|
1655
|
-
"description": "
|
|
1656
|
-
"name": "
|
|
1657
|
-
"required":
|
|
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
|
|
1545
|
+
"versionId": {
|
|
1546
|
+
"description": "version to sandbox",
|
|
1547
|
+
"name": "versionId",
|
|
1548
|
+
"required": false
|
|
1673
1549
|
}
|
|
1674
1550
|
},
|
|
1675
|
-
"description": "
|
|
1551
|
+
"description": "mark a version as sandboxed in the Raindrop catalog",
|
|
1676
1552
|
"examples": [
|
|
1677
|
-
"<%= config.bin %>
|
|
1553
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
1678
1554
|
],
|
|
1679
1555
|
"flags": {
|
|
1556
|
+
"impersonate": {
|
|
1557
|
+
"char": "i",
|
|
1558
|
+
"description": "impersonate organization",
|
|
1559
|
+
"hidden": true,
|
|
1560
|
+
"name": "impersonate",
|
|
1561
|
+
"required": false,
|
|
1562
|
+
"hasDynamicHelp": false,
|
|
1563
|
+
"multiple": false,
|
|
1564
|
+
"type": "option"
|
|
1565
|
+
},
|
|
1566
|
+
"rainbowAuthService": {
|
|
1567
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1568
|
+
"hidden": true,
|
|
1569
|
+
"name": "rainbowAuthService",
|
|
1570
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
1571
|
+
"hasDynamicHelp": false,
|
|
1572
|
+
"multiple": false,
|
|
1573
|
+
"type": "option"
|
|
1574
|
+
},
|
|
1680
1575
|
"raindropCatalogService": {
|
|
1681
1576
|
"description": "URL of the catalog service",
|
|
1682
1577
|
"env": "RAINDROP_CATALOG_SERVICE",
|
|
@@ -1685,11 +1580,27 @@
|
|
|
1685
1580
|
"hasDynamicHelp": false,
|
|
1686
1581
|
"multiple": false,
|
|
1687
1582
|
"type": "option"
|
|
1583
|
+
},
|
|
1584
|
+
"config": {
|
|
1585
|
+
"hidden": true,
|
|
1586
|
+
"name": "config",
|
|
1587
|
+
"default": ".raindrop/config.json",
|
|
1588
|
+
"hasDynamicHelp": false,
|
|
1589
|
+
"multiple": false,
|
|
1590
|
+
"type": "option"
|
|
1591
|
+
},
|
|
1592
|
+
"manifest": {
|
|
1593
|
+
"description": "project manifest",
|
|
1594
|
+
"name": "manifest",
|
|
1595
|
+
"default": "raindrop.manifest",
|
|
1596
|
+
"hasDynamicHelp": false,
|
|
1597
|
+
"multiple": false,
|
|
1598
|
+
"type": "option"
|
|
1688
1599
|
}
|
|
1689
1600
|
},
|
|
1690
1601
|
"hasDynamicHelp": false,
|
|
1691
1602
|
"hiddenAliases": [],
|
|
1692
|
-
"id": "
|
|
1603
|
+
"id": "build:sandbox",
|
|
1693
1604
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1694
1605
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1695
1606
|
"pluginType": "core",
|
|
@@ -1700,53 +1611,65 @@
|
|
|
1700
1611
|
"relativePath": [
|
|
1701
1612
|
"dist",
|
|
1702
1613
|
"commands",
|
|
1703
|
-
"
|
|
1704
|
-
"
|
|
1614
|
+
"build",
|
|
1615
|
+
"sandbox.js"
|
|
1705
1616
|
]
|
|
1706
1617
|
},
|
|
1707
|
-
"
|
|
1618
|
+
"build:start": {
|
|
1708
1619
|
"aliases": [],
|
|
1709
|
-
"args": {
|
|
1710
|
-
|
|
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",
|
|
1620
|
+
"args": {},
|
|
1621
|
+
"description": "start a Raindrop application",
|
|
1717
1622
|
"examples": [
|
|
1718
|
-
"<%= config.bin %>
|
|
1719
|
-
"<%= config.bin %> query search --requestId 01HNG4V2RJXS5T --page 2\nGet page 2 of previous search results.\n"
|
|
1623
|
+
"<%= config.bin %> <%= command.id %> .\nStart a Raindrop application.\n"
|
|
1720
1624
|
],
|
|
1721
1625
|
"flags": {
|
|
1722
|
-
"
|
|
1723
|
-
"
|
|
1724
|
-
"
|
|
1626
|
+
"root": {
|
|
1627
|
+
"char": "r",
|
|
1628
|
+
"description": "root directory",
|
|
1629
|
+
"name": "root",
|
|
1725
1630
|
"required": false,
|
|
1631
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1726
1632
|
"hasDynamicHelp": false,
|
|
1727
1633
|
"multiple": false,
|
|
1728
1634
|
"type": "option"
|
|
1729
1635
|
},
|
|
1730
|
-
"
|
|
1731
|
-
"char": "
|
|
1732
|
-
"description": "
|
|
1733
|
-
"name": "
|
|
1734
|
-
"
|
|
1636
|
+
"manifest": {
|
|
1637
|
+
"char": "m",
|
|
1638
|
+
"description": "project manifest",
|
|
1639
|
+
"name": "manifest",
|
|
1640
|
+
"required": false,
|
|
1641
|
+
"default": "raindrop.manifest",
|
|
1735
1642
|
"hasDynamicHelp": false,
|
|
1736
1643
|
"multiple": false,
|
|
1737
1644
|
"type": "option"
|
|
1738
1645
|
},
|
|
1739
|
-
"
|
|
1740
|
-
"char": "
|
|
1741
|
-
"description": "
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1646
|
+
"config": {
|
|
1647
|
+
"char": "c",
|
|
1648
|
+
"description": "config file",
|
|
1649
|
+
"hidden": true,
|
|
1650
|
+
"name": "config",
|
|
1651
|
+
"required": false,
|
|
1652
|
+
"default": ".raindrop/config.json",
|
|
1653
|
+
"hasDynamicHelp": false,
|
|
1654
|
+
"multiple": false,
|
|
1655
|
+
"type": "option"
|
|
1656
|
+
},
|
|
1657
|
+
"application": {
|
|
1658
|
+
"char": "a",
|
|
1659
|
+
"description": "application to start",
|
|
1660
|
+
"name": "application",
|
|
1661
|
+
"required": false,
|
|
1662
|
+
"hasDynamicHelp": false,
|
|
1663
|
+
"multiple": false,
|
|
1664
|
+
"type": "option"
|
|
1665
|
+
},
|
|
1666
|
+
"version": {
|
|
1667
|
+
"char": "v",
|
|
1668
|
+
"description": "application version to start",
|
|
1669
|
+
"name": "version",
|
|
1670
|
+
"required": false,
|
|
1744
1671
|
"hasDynamicHelp": false,
|
|
1745
1672
|
"multiple": false,
|
|
1746
|
-
"options": [
|
|
1747
|
-
"text",
|
|
1748
|
-
"json"
|
|
1749
|
-
],
|
|
1750
1673
|
"type": "option"
|
|
1751
1674
|
},
|
|
1752
1675
|
"impersonate": {
|
|
@@ -1759,10 +1682,63 @@
|
|
|
1759
1682
|
"multiple": false,
|
|
1760
1683
|
"type": "option"
|
|
1761
1684
|
},
|
|
1685
|
+
"rainbowAuthService": {
|
|
1686
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1687
|
+
"hidden": true,
|
|
1688
|
+
"name": "rainbowAuthService",
|
|
1689
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
1690
|
+
"hasDynamicHelp": false,
|
|
1691
|
+
"multiple": false,
|
|
1692
|
+
"type": "option"
|
|
1693
|
+
},
|
|
1694
|
+
"raindropCatalogService": {
|
|
1695
|
+
"description": "URL of the catalog service",
|
|
1696
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
1697
|
+
"hidden": true,
|
|
1698
|
+
"name": "raindropCatalogService",
|
|
1699
|
+
"hasDynamicHelp": false,
|
|
1700
|
+
"multiple": false,
|
|
1701
|
+
"type": "option"
|
|
1702
|
+
}
|
|
1703
|
+
},
|
|
1704
|
+
"hasDynamicHelp": false,
|
|
1705
|
+
"hiddenAliases": [],
|
|
1706
|
+
"id": "build:start",
|
|
1707
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1708
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1709
|
+
"pluginType": "core",
|
|
1710
|
+
"strict": true,
|
|
1711
|
+
"enableJsonFlag": false,
|
|
1712
|
+
"baseArgs": {},
|
|
1713
|
+
"isESM": true,
|
|
1714
|
+
"relativePath": [
|
|
1715
|
+
"dist",
|
|
1716
|
+
"commands",
|
|
1717
|
+
"build",
|
|
1718
|
+
"start.js"
|
|
1719
|
+
]
|
|
1720
|
+
},
|
|
1721
|
+
"build:status": {
|
|
1722
|
+
"aliases": [],
|
|
1723
|
+
"args": {},
|
|
1724
|
+
"description": "show the status of an application in Raindrop",
|
|
1725
|
+
"examples": [
|
|
1726
|
+
"<%= config.bin %> <%= command.id %> .\n"
|
|
1727
|
+
],
|
|
1728
|
+
"flags": {
|
|
1729
|
+
"root": {
|
|
1730
|
+
"char": "r",
|
|
1731
|
+
"description": "root directory",
|
|
1732
|
+
"name": "root",
|
|
1733
|
+
"required": false,
|
|
1734
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1735
|
+
"hasDynamicHelp": false,
|
|
1736
|
+
"multiple": false,
|
|
1737
|
+
"type": "option"
|
|
1738
|
+
},
|
|
1762
1739
|
"manifest": {
|
|
1763
1740
|
"char": "m",
|
|
1764
1741
|
"description": "project manifest",
|
|
1765
|
-
"hidden": true,
|
|
1766
1742
|
"name": "manifest",
|
|
1767
1743
|
"required": false,
|
|
1768
1744
|
"default": "raindrop.manifest",
|
|
@@ -1770,6 +1746,68 @@
|
|
|
1770
1746
|
"multiple": false,
|
|
1771
1747
|
"type": "option"
|
|
1772
1748
|
},
|
|
1749
|
+
"config": {
|
|
1750
|
+
"char": "c",
|
|
1751
|
+
"description": "config file",
|
|
1752
|
+
"hidden": true,
|
|
1753
|
+
"name": "config",
|
|
1754
|
+
"required": false,
|
|
1755
|
+
"default": ".raindrop/config.json",
|
|
1756
|
+
"hasDynamicHelp": false,
|
|
1757
|
+
"multiple": false,
|
|
1758
|
+
"type": "option"
|
|
1759
|
+
},
|
|
1760
|
+
"application": {
|
|
1761
|
+
"char": "a",
|
|
1762
|
+
"description": "application",
|
|
1763
|
+
"name": "application",
|
|
1764
|
+
"required": false,
|
|
1765
|
+
"hasDynamicHelp": false,
|
|
1766
|
+
"multiple": false,
|
|
1767
|
+
"type": "option"
|
|
1768
|
+
},
|
|
1769
|
+
"version": {
|
|
1770
|
+
"char": "v",
|
|
1771
|
+
"description": "application version",
|
|
1772
|
+
"name": "version",
|
|
1773
|
+
"required": false,
|
|
1774
|
+
"hasDynamicHelp": false,
|
|
1775
|
+
"multiple": false,
|
|
1776
|
+
"type": "option"
|
|
1777
|
+
},
|
|
1778
|
+
"output": {
|
|
1779
|
+
"char": "o",
|
|
1780
|
+
"description": "output format",
|
|
1781
|
+
"name": "output",
|
|
1782
|
+
"default": "table",
|
|
1783
|
+
"hasDynamicHelp": false,
|
|
1784
|
+
"multiple": false,
|
|
1785
|
+
"options": [
|
|
1786
|
+
"watch",
|
|
1787
|
+
"table",
|
|
1788
|
+
"json"
|
|
1789
|
+
],
|
|
1790
|
+
"type": "option"
|
|
1791
|
+
},
|
|
1792
|
+
"sudo": {
|
|
1793
|
+
"char": "s",
|
|
1794
|
+
"description": "superuser mode",
|
|
1795
|
+
"hidden": true,
|
|
1796
|
+
"name": "sudo",
|
|
1797
|
+
"required": false,
|
|
1798
|
+
"allowNo": false,
|
|
1799
|
+
"type": "boolean"
|
|
1800
|
+
},
|
|
1801
|
+
"impersonate": {
|
|
1802
|
+
"char": "i",
|
|
1803
|
+
"description": "impersonate organization",
|
|
1804
|
+
"hidden": true,
|
|
1805
|
+
"name": "impersonate",
|
|
1806
|
+
"required": false,
|
|
1807
|
+
"hasDynamicHelp": false,
|
|
1808
|
+
"multiple": false,
|
|
1809
|
+
"type": "option"
|
|
1810
|
+
},
|
|
1773
1811
|
"rainbowAuthService": {
|
|
1774
1812
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1775
1813
|
"hidden": true,
|
|
@@ -1791,7 +1829,7 @@
|
|
|
1791
1829
|
},
|
|
1792
1830
|
"hasDynamicHelp": false,
|
|
1793
1831
|
"hiddenAliases": [],
|
|
1794
|
-
"id": "
|
|
1832
|
+
"id": "build:status",
|
|
1795
1833
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1796
1834
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1797
1835
|
"pluginType": "core",
|
|
@@ -1802,44 +1840,65 @@
|
|
|
1802
1840
|
"relativePath": [
|
|
1803
1841
|
"dist",
|
|
1804
1842
|
"commands",
|
|
1805
|
-
"
|
|
1806
|
-
"
|
|
1843
|
+
"build",
|
|
1844
|
+
"status.js"
|
|
1807
1845
|
]
|
|
1808
1846
|
},
|
|
1809
|
-
"
|
|
1847
|
+
"build:stop": {
|
|
1810
1848
|
"aliases": [],
|
|
1811
|
-
"args": {
|
|
1812
|
-
|
|
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",
|
|
1849
|
+
"args": {},
|
|
1850
|
+
"description": "stop a Raindrop application",
|
|
1819
1851
|
"examples": [
|
|
1820
|
-
"<%= config.bin %>
|
|
1852
|
+
"<%= config.bin %> <%= command.id %> .\nStop a Raindrop application.\n"
|
|
1821
1853
|
],
|
|
1822
1854
|
"flags": {
|
|
1823
|
-
"
|
|
1824
|
-
"char": "
|
|
1825
|
-
"description": "
|
|
1826
|
-
"name": "
|
|
1827
|
-
"required":
|
|
1855
|
+
"root": {
|
|
1856
|
+
"char": "r",
|
|
1857
|
+
"description": "root directory",
|
|
1858
|
+
"name": "root",
|
|
1859
|
+
"required": false,
|
|
1860
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
1828
1861
|
"hasDynamicHelp": false,
|
|
1829
1862
|
"multiple": false,
|
|
1830
1863
|
"type": "option"
|
|
1831
1864
|
},
|
|
1832
|
-
"
|
|
1833
|
-
"char": "
|
|
1834
|
-
"description": "
|
|
1835
|
-
"name": "
|
|
1836
|
-
"
|
|
1865
|
+
"manifest": {
|
|
1866
|
+
"char": "m",
|
|
1867
|
+
"description": "project manifest",
|
|
1868
|
+
"name": "manifest",
|
|
1869
|
+
"required": false,
|
|
1870
|
+
"default": "raindrop.manifest",
|
|
1871
|
+
"hasDynamicHelp": false,
|
|
1872
|
+
"multiple": false,
|
|
1873
|
+
"type": "option"
|
|
1874
|
+
},
|
|
1875
|
+
"config": {
|
|
1876
|
+
"char": "c",
|
|
1877
|
+
"description": "config file",
|
|
1878
|
+
"hidden": true,
|
|
1879
|
+
"name": "config",
|
|
1880
|
+
"required": false,
|
|
1881
|
+
"default": ".raindrop/config.json",
|
|
1882
|
+
"hasDynamicHelp": false,
|
|
1883
|
+
"multiple": false,
|
|
1884
|
+
"type": "option"
|
|
1885
|
+
},
|
|
1886
|
+
"application": {
|
|
1887
|
+
"char": "a",
|
|
1888
|
+
"description": "application to stop",
|
|
1889
|
+
"name": "application",
|
|
1890
|
+
"required": false,
|
|
1891
|
+
"hasDynamicHelp": false,
|
|
1892
|
+
"multiple": false,
|
|
1893
|
+
"type": "option"
|
|
1894
|
+
},
|
|
1895
|
+
"version": {
|
|
1896
|
+
"char": "v",
|
|
1897
|
+
"description": "application version to start",
|
|
1898
|
+
"name": "version",
|
|
1899
|
+
"required": false,
|
|
1837
1900
|
"hasDynamicHelp": false,
|
|
1838
1901
|
"multiple": false,
|
|
1839
|
-
"options": [
|
|
1840
|
-
"text",
|
|
1841
|
-
"json"
|
|
1842
|
-
],
|
|
1843
1902
|
"type": "option"
|
|
1844
1903
|
},
|
|
1845
1904
|
"impersonate": {
|
|
@@ -1852,17 +1911,6 @@
|
|
|
1852
1911
|
"multiple": false,
|
|
1853
1912
|
"type": "option"
|
|
1854
1913
|
},
|
|
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
1914
|
"rainbowAuthService": {
|
|
1867
1915
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1868
1916
|
"hidden": true,
|
|
@@ -1884,7 +1932,7 @@
|
|
|
1884
1932
|
},
|
|
1885
1933
|
"hasDynamicHelp": false,
|
|
1886
1934
|
"hiddenAliases": [],
|
|
1887
|
-
"id": "
|
|
1935
|
+
"id": "build:stop",
|
|
1888
1936
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1889
1937
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1890
1938
|
"pluginType": "core",
|
|
@@ -1895,53 +1943,24 @@
|
|
|
1895
1943
|
"relativePath": [
|
|
1896
1944
|
"dist",
|
|
1897
1945
|
"commands",
|
|
1898
|
-
"
|
|
1899
|
-
"
|
|
1946
|
+
"build",
|
|
1947
|
+
"stop.js"
|
|
1900
1948
|
]
|
|
1901
1949
|
},
|
|
1902
|
-
"
|
|
1950
|
+
"build:unsandbox": {
|
|
1903
1951
|
"aliases": [],
|
|
1904
1952
|
"args": {
|
|
1905
|
-
"
|
|
1906
|
-
"description": "
|
|
1907
|
-
"name": "
|
|
1908
|
-
"required": true
|
|
1909
|
-
},
|
|
1910
|
-
"output": {
|
|
1911
|
-
"description": "output file (defaults to key basename)",
|
|
1912
|
-
"name": "output",
|
|
1953
|
+
"versionId": {
|
|
1954
|
+
"description": "version to sandbox",
|
|
1955
|
+
"name": "versionId",
|
|
1913
1956
|
"required": false
|
|
1914
1957
|
}
|
|
1915
1958
|
},
|
|
1916
|
-
"description": "
|
|
1959
|
+
"description": "mark a version as unsandboxed in the Raindrop catalog",
|
|
1917
1960
|
"examples": [
|
|
1918
|
-
"<%= config.bin %>
|
|
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"
|
|
1961
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
1920
1962
|
],
|
|
1921
1963
|
"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
1964
|
"impersonate": {
|
|
1946
1965
|
"char": "i",
|
|
1947
1966
|
"description": "impersonate organization",
|
|
@@ -1952,17 +1971,6 @@
|
|
|
1952
1971
|
"multiple": false,
|
|
1953
1972
|
"type": "option"
|
|
1954
1973
|
},
|
|
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
1974
|
"rainbowAuthService": {
|
|
1967
1975
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
1968
1976
|
"hidden": true,
|
|
@@ -1980,11 +1988,27 @@
|
|
|
1980
1988
|
"hasDynamicHelp": false,
|
|
1981
1989
|
"multiple": false,
|
|
1982
1990
|
"type": "option"
|
|
1991
|
+
},
|
|
1992
|
+
"config": {
|
|
1993
|
+
"hidden": true,
|
|
1994
|
+
"name": "config",
|
|
1995
|
+
"default": ".raindrop/config.json",
|
|
1996
|
+
"hasDynamicHelp": false,
|
|
1997
|
+
"multiple": false,
|
|
1998
|
+
"type": "option"
|
|
1999
|
+
},
|
|
2000
|
+
"manifest": {
|
|
2001
|
+
"description": "project manifest",
|
|
2002
|
+
"name": "manifest",
|
|
2003
|
+
"default": "raindrop.manifest",
|
|
2004
|
+
"hasDynamicHelp": false,
|
|
2005
|
+
"multiple": false,
|
|
2006
|
+
"type": "option"
|
|
1983
2007
|
}
|
|
1984
2008
|
},
|
|
1985
2009
|
"hasDynamicHelp": false,
|
|
1986
2010
|
"hiddenAliases": [],
|
|
1987
|
-
"id": "
|
|
2011
|
+
"id": "build:unsandbox",
|
|
1988
2012
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1989
2013
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1990
2014
|
"pluginType": "core",
|
|
@@ -1995,58 +2019,74 @@
|
|
|
1995
2019
|
"relativePath": [
|
|
1996
2020
|
"dist",
|
|
1997
2021
|
"commands",
|
|
1998
|
-
"
|
|
1999
|
-
"
|
|
2022
|
+
"build",
|
|
2023
|
+
"unsandbox.js"
|
|
2000
2024
|
]
|
|
2001
2025
|
},
|
|
2002
|
-
"
|
|
2026
|
+
"build:upload": {
|
|
2003
2027
|
"aliases": [],
|
|
2004
2028
|
"args": {},
|
|
2005
|
-
"description": "
|
|
2029
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2006
2030
|
"examples": [
|
|
2007
|
-
"<%= config.bin %>
|
|
2031
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2008
2032
|
],
|
|
2009
2033
|
"flags": {
|
|
2010
|
-
"
|
|
2011
|
-
"char": "
|
|
2012
|
-
"description": "
|
|
2013
|
-
"name": "
|
|
2014
|
-
"required":
|
|
2034
|
+
"root": {
|
|
2035
|
+
"char": "r",
|
|
2036
|
+
"description": "root directory",
|
|
2037
|
+
"name": "root",
|
|
2038
|
+
"required": false,
|
|
2039
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2040
|
+
"hasDynamicHelp": false,
|
|
2041
|
+
"multiple": false,
|
|
2042
|
+
"type": "option"
|
|
2043
|
+
},
|
|
2044
|
+
"manifest": {
|
|
2045
|
+
"char": "m",
|
|
2046
|
+
"description": "project manifest",
|
|
2047
|
+
"name": "manifest",
|
|
2048
|
+
"required": false,
|
|
2049
|
+
"default": "raindrop.manifest",
|
|
2050
|
+
"hasDynamicHelp": false,
|
|
2051
|
+
"multiple": false,
|
|
2052
|
+
"type": "option"
|
|
2053
|
+
},
|
|
2054
|
+
"config": {
|
|
2055
|
+
"char": "c",
|
|
2056
|
+
"description": "config file",
|
|
2057
|
+
"hidden": true,
|
|
2058
|
+
"name": "config",
|
|
2059
|
+
"required": false,
|
|
2060
|
+
"default": ".raindrop/config.json",
|
|
2015
2061
|
"hasDynamicHelp": false,
|
|
2016
2062
|
"multiple": false,
|
|
2017
2063
|
"type": "option"
|
|
2018
2064
|
},
|
|
2019
2065
|
"output": {
|
|
2020
2066
|
"char": "o",
|
|
2021
|
-
"description": "output
|
|
2067
|
+
"description": "output directory",
|
|
2022
2068
|
"name": "output",
|
|
2023
|
-
"
|
|
2069
|
+
"required": false,
|
|
2070
|
+
"default": "dist",
|
|
2024
2071
|
"hasDynamicHelp": false,
|
|
2025
2072
|
"multiple": false,
|
|
2026
|
-
"options": [
|
|
2027
|
-
"text",
|
|
2028
|
-
"json",
|
|
2029
|
-
"table"
|
|
2030
|
-
],
|
|
2031
2073
|
"type": "option"
|
|
2032
2074
|
},
|
|
2033
|
-
"
|
|
2034
|
-
"char": "
|
|
2035
|
-
"description": "
|
|
2036
|
-
"
|
|
2037
|
-
"
|
|
2038
|
-
"required": false,
|
|
2075
|
+
"versionId": {
|
|
2076
|
+
"char": "v",
|
|
2077
|
+
"description": "version ID",
|
|
2078
|
+
"name": "versionId",
|
|
2079
|
+
"required": true,
|
|
2039
2080
|
"hasDynamicHelp": false,
|
|
2040
2081
|
"multiple": false,
|
|
2041
2082
|
"type": "option"
|
|
2042
2083
|
},
|
|
2043
|
-
"
|
|
2044
|
-
"char": "
|
|
2045
|
-
"description": "
|
|
2084
|
+
"impersonate": {
|
|
2085
|
+
"char": "i",
|
|
2086
|
+
"description": "impersonate organization",
|
|
2046
2087
|
"hidden": true,
|
|
2047
|
-
"name": "
|
|
2088
|
+
"name": "impersonate",
|
|
2048
2089
|
"required": false,
|
|
2049
|
-
"default": "raindrop.manifest",
|
|
2050
2090
|
"hasDynamicHelp": false,
|
|
2051
2091
|
"multiple": false,
|
|
2052
2092
|
"type": "option"
|
|
@@ -2072,7 +2112,7 @@
|
|
|
2072
2112
|
},
|
|
2073
2113
|
"hasDynamicHelp": false,
|
|
2074
2114
|
"hiddenAliases": [],
|
|
2075
|
-
"id": "
|
|
2115
|
+
"id": "build:upload",
|
|
2076
2116
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2077
2117
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2078
2118
|
"pluginType": "core",
|
|
@@ -2083,66 +2123,24 @@
|
|
|
2083
2123
|
"relativePath": [
|
|
2084
2124
|
"dist",
|
|
2085
2125
|
"commands",
|
|
2086
|
-
"
|
|
2087
|
-
"
|
|
2126
|
+
"build",
|
|
2127
|
+
"upload.js"
|
|
2088
2128
|
]
|
|
2089
2129
|
},
|
|
2090
|
-
"
|
|
2130
|
+
"build:validate": {
|
|
2091
2131
|
"aliases": [],
|
|
2092
|
-
"args": {
|
|
2093
|
-
|
|
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",
|
|
2132
|
+
"args": {},
|
|
2133
|
+
"description": "build and validate a LiquidMetal.AI project",
|
|
2105
2134
|
"examples": [
|
|
2106
|
-
"<%= config.bin %>
|
|
2135
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2107
2136
|
],
|
|
2108
2137
|
"flags": {
|
|
2109
|
-
"
|
|
2110
|
-
"char": "
|
|
2111
|
-
"description": "
|
|
2112
|
-
"name": "
|
|
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",
|
|
2138
|
+
"root": {
|
|
2139
|
+
"char": "r",
|
|
2140
|
+
"description": "root directory",
|
|
2141
|
+
"name": "root",
|
|
2145
2142
|
"required": false,
|
|
2143
|
+
"default": "/Users/ian/liquidmetal/packages/raindrop",
|
|
2146
2144
|
"hasDynamicHelp": false,
|
|
2147
2145
|
"multiple": false,
|
|
2148
2146
|
"type": "option"
|
|
@@ -2150,7 +2148,6 @@
|
|
|
2150
2148
|
"manifest": {
|
|
2151
2149
|
"char": "m",
|
|
2152
2150
|
"description": "project manifest",
|
|
2153
|
-
"hidden": true,
|
|
2154
2151
|
"name": "manifest",
|
|
2155
2152
|
"required": false,
|
|
2156
2153
|
"default": "raindrop.manifest",
|
|
@@ -2158,20 +2155,23 @@
|
|
|
2158
2155
|
"multiple": false,
|
|
2159
2156
|
"type": "option"
|
|
2160
2157
|
},
|
|
2161
|
-
"
|
|
2162
|
-
"
|
|
2158
|
+
"config": {
|
|
2159
|
+
"char": "c",
|
|
2160
|
+
"description": "config file",
|
|
2163
2161
|
"hidden": true,
|
|
2164
|
-
"name": "
|
|
2165
|
-
"
|
|
2162
|
+
"name": "config",
|
|
2163
|
+
"required": false,
|
|
2164
|
+
"default": ".raindrop/config.json",
|
|
2166
2165
|
"hasDynamicHelp": false,
|
|
2167
2166
|
"multiple": false,
|
|
2168
2167
|
"type": "option"
|
|
2169
2168
|
},
|
|
2170
|
-
"
|
|
2171
|
-
"
|
|
2172
|
-
"
|
|
2173
|
-
"
|
|
2174
|
-
"
|
|
2169
|
+
"output": {
|
|
2170
|
+
"char": "o",
|
|
2171
|
+
"description": "output directory",
|
|
2172
|
+
"name": "output",
|
|
2173
|
+
"required": false,
|
|
2174
|
+
"default": "dist",
|
|
2175
2175
|
"hasDynamicHelp": false,
|
|
2176
2176
|
"multiple": false,
|
|
2177
2177
|
"type": "option"
|
|
@@ -2179,7 +2179,7 @@
|
|
|
2179
2179
|
},
|
|
2180
2180
|
"hasDynamicHelp": false,
|
|
2181
2181
|
"hiddenAliases": [],
|
|
2182
|
-
"id": "
|
|
2182
|
+
"id": "build:validate",
|
|
2183
2183
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
2184
2184
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
2185
2185
|
"pluginType": "core",
|
|
@@ -2190,8 +2190,8 @@
|
|
|
2190
2190
|
"relativePath": [
|
|
2191
2191
|
"dist",
|
|
2192
2192
|
"commands",
|
|
2193
|
-
"
|
|
2194
|
-
"
|
|
2193
|
+
"build",
|
|
2194
|
+
"validate.js"
|
|
2195
2195
|
]
|
|
2196
2196
|
},
|
|
2197
2197
|
"build:env:get": {
|
|
@@ -2528,5 +2528,5 @@
|
|
|
2528
2528
|
]
|
|
2529
2529
|
}
|
|
2530
2530
|
},
|
|
2531
|
-
"version": "0.2.
|
|
2531
|
+
"version": "0.2.4"
|
|
2532
2532
|
}
|