@liquidmetal-ai/raindrop 0.2.11 → 0.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -84
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +4 -2
- package/dist/build.d.ts.map +1 -1
- package/dist/build.js +12 -0
- package/dist/commands/build/find.d.ts +8 -0
- package/dist/commands/build/find.d.ts.map +1 -1
- package/dist/commands/build/find.js +51 -4
- package/dist/commands/build/sandbox.d.ts +2 -3
- package/dist/commands/build/sandbox.d.ts.map +1 -1
- package/dist/commands/build/sandbox.js +8 -5
- package/dist/commands/build/start.js +1 -1
- package/dist/commands/build/unsandbox.d.ts +2 -3
- package/dist/commands/build/unsandbox.d.ts.map +1 -1
- package/dist/commands/build/unsandbox.js +8 -5
- package/dist/commands/object/delete.js +1 -1
- package/dist/commands/object/get.js +1 -1
- package/dist/commands/object/list.d.ts.map +1 -1
- package/dist/commands/object/list.js +12 -5
- package/dist/commands/object/put.d.ts.map +1 -1
- package/dist/commands/object/put.js +2 -3
- package/dist/deploy.d.ts.map +1 -1
- package/dist/deploy.js +36 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -11
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +42 -183
- package/package.json +2 -2
- package/templates/init/package.json.hbs +1 -1
- package/dist/commands/query/register-retriever.d.ts +0 -21
- package/dist/commands/query/register-retriever.d.ts.map +0 -1
- package/dist/commands/query/register-retriever.js +0 -47
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @liquidmetal-ai/raindrop
|
|
|
20
20
|
$ raindrop COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ raindrop (--version)
|
|
23
|
-
@liquidmetal-ai/raindrop/0.2.
|
|
23
|
+
@liquidmetal-ai/raindrop/0.2.12 darwin-arm64 node-v23.11.0
|
|
24
24
|
$ raindrop --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ raindrop COMMAND
|
|
@@ -45,13 +45,13 @@ USAGE
|
|
|
45
45
|
* [`raindrop build generate`](#raindrop-build-generate)
|
|
46
46
|
* [`raindrop build init [PATH]`](#raindrop-build-init-path)
|
|
47
47
|
* [`raindrop build list`](#raindrop-build-list)
|
|
48
|
-
* [`raindrop build sandbox
|
|
48
|
+
* [`raindrop build sandbox`](#raindrop-build-sandbox)
|
|
49
49
|
* [`raindrop build start`](#raindrop-build-start)
|
|
50
50
|
* [`raindrop build status`](#raindrop-build-status)
|
|
51
51
|
* [`raindrop build stop`](#raindrop-build-stop)
|
|
52
52
|
* [`raindrop build tools check`](#raindrop-build-tools-check)
|
|
53
53
|
* [`raindrop build tools fmt`](#raindrop-build-tools-fmt)
|
|
54
|
-
* [`raindrop build unsandbox
|
|
54
|
+
* [`raindrop build unsandbox`](#raindrop-build-unsandbox)
|
|
55
55
|
* [`raindrop build upload`](#raindrop-build-upload)
|
|
56
56
|
* [`raindrop build validate`](#raindrop-build-validate)
|
|
57
57
|
* [`raindrop help [COMMAND]`](#raindrop-help-command)
|
|
@@ -70,7 +70,6 @@ USAGE
|
|
|
70
70
|
* [`raindrop plugins unlink [PLUGIN]`](#raindrop-plugins-unlink-plugin)
|
|
71
71
|
* [`raindrop plugins update`](#raindrop-plugins-update)
|
|
72
72
|
* [`raindrop query chunk-search QUERY`](#raindrop-query-chunk-search-query)
|
|
73
|
-
* [`raindrop query register-retriever BUCKET URL DELETEURL BUCKETNAME`](#raindrop-query-register-retriever-bucket-url-deleteurl-bucketname)
|
|
74
73
|
* [`raindrop query search [QUERY]`](#raindrop-query-search-query)
|
|
75
74
|
* [`raindrop tail`](#raindrop-tail)
|
|
76
75
|
|
|
@@ -90,7 +89,7 @@ DESCRIPTION
|
|
|
90
89
|
List authentications
|
|
91
90
|
```
|
|
92
91
|
|
|
93
|
-
_See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
92
|
+
_See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/list.ts)_
|
|
94
93
|
|
|
95
94
|
## `raindrop auth login`
|
|
96
95
|
|
|
@@ -104,7 +103,7 @@ DESCRIPTION
|
|
|
104
103
|
Logs a user into the LiquidMetal platform. Supports browser-based authentication.
|
|
105
104
|
```
|
|
106
105
|
|
|
107
|
-
_See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
106
|
+
_See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/login.ts)_
|
|
108
107
|
|
|
109
108
|
## `raindrop auth logout`
|
|
110
109
|
|
|
@@ -118,7 +117,7 @@ DESCRIPTION
|
|
|
118
117
|
Logout authentications
|
|
119
118
|
```
|
|
120
119
|
|
|
121
|
-
_See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
120
|
+
_See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/logout.ts)_
|
|
122
121
|
|
|
123
122
|
## `raindrop auth select`
|
|
124
123
|
|
|
@@ -135,7 +134,7 @@ DESCRIPTION
|
|
|
135
134
|
Select active organization
|
|
136
135
|
```
|
|
137
136
|
|
|
138
|
-
_See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
137
|
+
_See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/select.ts)_
|
|
139
138
|
|
|
140
139
|
## `raindrop build branch BRANCH`
|
|
141
140
|
|
|
@@ -152,7 +151,8 @@ FLAGS
|
|
|
152
151
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
153
152
|
-o, --output=<value> [default: dist] output directory
|
|
154
153
|
-p, --versionId=<value> branch from this version
|
|
155
|
-
-r, --root=<value> [default: /Users/
|
|
154
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
155
|
+
root directory
|
|
156
156
|
--show show the current branch
|
|
157
157
|
--start start the application after deploying
|
|
158
158
|
|
|
@@ -164,7 +164,7 @@ EXAMPLES
|
|
|
164
164
|
Branch a Raindrop application.
|
|
165
165
|
```
|
|
166
166
|
|
|
167
|
-
_See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
167
|
+
_See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/branch.ts)_
|
|
168
168
|
|
|
169
169
|
## `raindrop build checkout [VERSION]`
|
|
170
170
|
|
|
@@ -190,7 +190,7 @@ EXAMPLES
|
|
|
190
190
|
Switched to version: 01jux6z20m4gbhn5kaa4mcm2jr
|
|
191
191
|
```
|
|
192
192
|
|
|
193
|
-
_See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
193
|
+
_See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/checkout.ts)_
|
|
194
194
|
|
|
195
195
|
## `raindrop build delete [APPLICATION]`
|
|
196
196
|
|
|
@@ -208,7 +208,8 @@ FLAGS
|
|
|
208
208
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
209
209
|
-o, --output=<option> [default: table] output format
|
|
210
210
|
<options: text|table|json>
|
|
211
|
-
-r, --root=<value> [default: /Users/
|
|
211
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
|
|
212
|
+
directory
|
|
212
213
|
-v, --version=<value> application version to delete
|
|
213
214
|
|
|
214
215
|
DESCRIPTION
|
|
@@ -219,7 +220,7 @@ EXAMPLES
|
|
|
219
220
|
Deleted (application) at version (version)
|
|
220
221
|
```
|
|
221
222
|
|
|
222
|
-
_See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
223
|
+
_See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/delete.ts)_
|
|
223
224
|
|
|
224
225
|
## `raindrop build deploy`
|
|
225
226
|
|
|
@@ -233,7 +234,8 @@ FLAGS
|
|
|
233
234
|
-a, --amend amend an existing application
|
|
234
235
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
235
236
|
-o, --output=<value> [default: dist] output directory
|
|
236
|
-
-r, --root=<value> [default: /Users/
|
|
237
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
238
|
+
root directory
|
|
237
239
|
-s, --start start the application after deploying
|
|
238
240
|
-v, --versionId=<value> version ID
|
|
239
241
|
--lock=<value> override lock ID to resume deployment
|
|
@@ -247,7 +249,7 @@ EXAMPLES
|
|
|
247
249
|
Deploy a Raindrop application version.
|
|
248
250
|
```
|
|
249
251
|
|
|
250
|
-
_See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
252
|
+
_See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/deploy.ts)_
|
|
251
253
|
|
|
252
254
|
## `raindrop build env get VAR`
|
|
253
255
|
|
|
@@ -274,7 +276,7 @@ EXAMPLES
|
|
|
274
276
|
sets an env var/secret.
|
|
275
277
|
```
|
|
276
278
|
|
|
277
|
-
_See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
279
|
+
_See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/env/get.ts)_
|
|
278
280
|
|
|
279
281
|
## `raindrop build env set VAR [VALUE]`
|
|
280
282
|
|
|
@@ -292,7 +294,8 @@ FLAGS
|
|
|
292
294
|
-a, --application=<value> application to start
|
|
293
295
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
294
296
|
-o, --output=<value> [default: table] output format
|
|
295
|
-
-r, --root=<value> [default: /Users/
|
|
297
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
298
|
+
root directory
|
|
296
299
|
-v, --versionId=<value> version ID
|
|
297
300
|
|
|
298
301
|
DESCRIPTION
|
|
@@ -303,7 +306,7 @@ EXAMPLES
|
|
|
303
306
|
sets an env var/secret.
|
|
304
307
|
```
|
|
305
308
|
|
|
306
|
-
_See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
309
|
+
_See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/env/set.ts)_
|
|
307
310
|
|
|
308
311
|
## `raindrop build find`
|
|
309
312
|
|
|
@@ -311,15 +314,18 @@ find resources in Raindrop
|
|
|
311
314
|
|
|
312
315
|
```
|
|
313
316
|
USAGE
|
|
314
|
-
$ raindrop build find [-r <value>] [-m <value>] [-a <value>] [-v <value>] [-o
|
|
317
|
+
$ raindrop build find [-r <value>] [-m <value>] [-a <value>] [-v <value>] [--moduleType <value>] [-o
|
|
318
|
+
text|table|json]
|
|
315
319
|
|
|
316
320
|
FLAGS
|
|
317
321
|
-a, --application=<value> application
|
|
318
322
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
319
323
|
-o, --output=<option> [default: table] output format
|
|
320
324
|
<options: text|table|json>
|
|
321
|
-
-r, --root=<value> [default: /Users/
|
|
325
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
326
|
+
root directory
|
|
322
327
|
-v, --version=<value> application version
|
|
328
|
+
--moduleType=<value> filter by module type (e.g. smartbucket)
|
|
323
329
|
|
|
324
330
|
DESCRIPTION
|
|
325
331
|
find resources in Raindrop
|
|
@@ -328,7 +334,7 @@ EXAMPLES
|
|
|
328
334
|
$ raindrop build find .
|
|
329
335
|
```
|
|
330
336
|
|
|
331
|
-
_See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
337
|
+
_See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/find.ts)_
|
|
332
338
|
|
|
333
339
|
## `raindrop build generate`
|
|
334
340
|
|
|
@@ -341,7 +347,8 @@ USAGE
|
|
|
341
347
|
FLAGS
|
|
342
348
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
343
349
|
-o, --output=<value> [default: dist] output directory
|
|
344
|
-
-r, --root=<value> [default: /Users/
|
|
350
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
|
|
351
|
+
directory
|
|
345
352
|
|
|
346
353
|
DESCRIPTION
|
|
347
354
|
(re)generate all code for a LiquidMetal.AI project
|
|
@@ -350,7 +357,7 @@ EXAMPLES
|
|
|
350
357
|
$ raindrop build generate
|
|
351
358
|
```
|
|
352
359
|
|
|
353
|
-
_See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
360
|
+
_See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/generate.ts)_
|
|
354
361
|
|
|
355
362
|
## `raindrop build init [PATH]`
|
|
356
363
|
|
|
@@ -374,7 +381,7 @@ EXAMPLES
|
|
|
374
381
|
Initialize a project in the current directory.
|
|
375
382
|
```
|
|
376
383
|
|
|
377
|
-
_See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
384
|
+
_See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/init.ts)_
|
|
378
385
|
|
|
379
386
|
## `raindrop build list`
|
|
380
387
|
|
|
@@ -397,21 +404,19 @@ EXAMPLES
|
|
|
397
404
|
List Raindrop catalog resources.
|
|
398
405
|
```
|
|
399
406
|
|
|
400
|
-
_See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
407
|
+
_See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/list.ts)_
|
|
401
408
|
|
|
402
|
-
## `raindrop build sandbox
|
|
409
|
+
## `raindrop build sandbox`
|
|
403
410
|
|
|
404
411
|
mark a version as sandboxed in the Raindrop catalog
|
|
405
412
|
|
|
406
413
|
```
|
|
407
414
|
USAGE
|
|
408
|
-
$ raindrop build sandbox [
|
|
409
|
-
|
|
410
|
-
ARGUMENTS
|
|
411
|
-
VERSIONID version to sandbox
|
|
415
|
+
$ raindrop build sandbox [--manifest <value>] [-v <value>]
|
|
412
416
|
|
|
413
417
|
FLAGS
|
|
414
|
-
--
|
|
418
|
+
-v, --version=<value> application version to sandbox
|
|
419
|
+
--manifest=<value> [default: raindrop.manifest] project manifest
|
|
415
420
|
|
|
416
421
|
DESCRIPTION
|
|
417
422
|
mark a version as sandboxed in the Raindrop catalog
|
|
@@ -420,7 +425,7 @@ EXAMPLES
|
|
|
420
425
|
$ raindrop build sandbox
|
|
421
426
|
```
|
|
422
427
|
|
|
423
|
-
_See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
428
|
+
_See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/sandbox.ts)_
|
|
424
429
|
|
|
425
430
|
## `raindrop build start`
|
|
426
431
|
|
|
@@ -433,7 +438,8 @@ USAGE
|
|
|
433
438
|
FLAGS
|
|
434
439
|
-a, --application=<value> application to start
|
|
435
440
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
436
|
-
-r, --root=<value> [default: /Users/
|
|
441
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
442
|
+
root directory
|
|
437
443
|
-v, --version=<value> application version to start
|
|
438
444
|
|
|
439
445
|
DESCRIPTION
|
|
@@ -444,7 +450,7 @@ EXAMPLES
|
|
|
444
450
|
Start a Raindrop application.
|
|
445
451
|
```
|
|
446
452
|
|
|
447
|
-
_See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
453
|
+
_See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/start.ts)_
|
|
448
454
|
|
|
449
455
|
## `raindrop build status`
|
|
450
456
|
|
|
@@ -459,7 +465,8 @@ FLAGS
|
|
|
459
465
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
460
466
|
-o, --output=<option> [default: table] output format
|
|
461
467
|
<options: watch|table|json>
|
|
462
|
-
-r, --root=<value> [default: /Users/
|
|
468
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
469
|
+
root directory
|
|
463
470
|
-v, --version=<value> application version
|
|
464
471
|
|
|
465
472
|
DESCRIPTION
|
|
@@ -469,7 +476,7 @@ EXAMPLES
|
|
|
469
476
|
$ raindrop build status .
|
|
470
477
|
```
|
|
471
478
|
|
|
472
|
-
_See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
479
|
+
_See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/status.ts)_
|
|
473
480
|
|
|
474
481
|
## `raindrop build stop`
|
|
475
482
|
|
|
@@ -482,7 +489,8 @@ USAGE
|
|
|
482
489
|
FLAGS
|
|
483
490
|
-a, --application=<value> application to stop
|
|
484
491
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
485
|
-
-r, --root=<value> [default: /Users/
|
|
492
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
493
|
+
root directory
|
|
486
494
|
-v, --version=<value> application version to start
|
|
487
495
|
|
|
488
496
|
DESCRIPTION
|
|
@@ -493,7 +501,7 @@ EXAMPLES
|
|
|
493
501
|
Stop a Raindrop application.
|
|
494
502
|
```
|
|
495
503
|
|
|
496
|
-
_See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
504
|
+
_See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/stop.ts)_
|
|
497
505
|
|
|
498
506
|
## `raindrop build tools check`
|
|
499
507
|
|
|
@@ -505,7 +513,8 @@ USAGE
|
|
|
505
513
|
|
|
506
514
|
FLAGS
|
|
507
515
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
508
|
-
-r, --root=<value> [default: /Users/
|
|
516
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
|
|
517
|
+
directory
|
|
509
518
|
|
|
510
519
|
DESCRIPTION
|
|
511
520
|
validate a LiquidMetal.AI raindrop.manifest
|
|
@@ -514,7 +523,7 @@ EXAMPLES
|
|
|
514
523
|
$ raindrop build tools check
|
|
515
524
|
```
|
|
516
525
|
|
|
517
|
-
_See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
526
|
+
_See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/tools/check.ts)_
|
|
518
527
|
|
|
519
528
|
## `raindrop build tools fmt`
|
|
520
529
|
|
|
@@ -526,7 +535,8 @@ USAGE
|
|
|
526
535
|
|
|
527
536
|
FLAGS
|
|
528
537
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
529
|
-
-r, --root=<value> [default: /Users/
|
|
538
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
|
|
539
|
+
directory
|
|
530
540
|
|
|
531
541
|
DESCRIPTION
|
|
532
542
|
format a LiquidMetal.AI raindrop.manifest
|
|
@@ -535,21 +545,19 @@ EXAMPLES
|
|
|
535
545
|
$ raindrop build tools fmt
|
|
536
546
|
```
|
|
537
547
|
|
|
538
|
-
_See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
548
|
+
_See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/tools/fmt.ts)_
|
|
539
549
|
|
|
540
|
-
## `raindrop build unsandbox
|
|
550
|
+
## `raindrop build unsandbox`
|
|
541
551
|
|
|
542
552
|
mark a version as unsandboxed in the Raindrop catalog
|
|
543
553
|
|
|
544
554
|
```
|
|
545
555
|
USAGE
|
|
546
|
-
$ raindrop build unsandbox [
|
|
547
|
-
|
|
548
|
-
ARGUMENTS
|
|
549
|
-
VERSIONID version to sandbox
|
|
556
|
+
$ raindrop build unsandbox [--manifest <value>] [-v <value>]
|
|
550
557
|
|
|
551
558
|
FLAGS
|
|
552
|
-
--
|
|
559
|
+
-v, --version=<value> application version to unsandbox
|
|
560
|
+
--manifest=<value> [default: raindrop.manifest] project manifest
|
|
553
561
|
|
|
554
562
|
DESCRIPTION
|
|
555
563
|
mark a version as unsandboxed in the Raindrop catalog
|
|
@@ -558,7 +566,7 @@ EXAMPLES
|
|
|
558
566
|
$ raindrop build unsandbox
|
|
559
567
|
```
|
|
560
568
|
|
|
561
|
-
_See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
569
|
+
_See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/unsandbox.ts)_
|
|
562
570
|
|
|
563
571
|
## `raindrop build upload`
|
|
564
572
|
|
|
@@ -571,7 +579,8 @@ USAGE
|
|
|
571
579
|
FLAGS
|
|
572
580
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
573
581
|
-o, --output=<value> [default: dist] output directory
|
|
574
|
-
-r, --root=<value> [default: /Users/
|
|
582
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
|
|
583
|
+
root directory
|
|
575
584
|
-v, --versionId=<value> (required) version ID
|
|
576
585
|
|
|
577
586
|
DESCRIPTION
|
|
@@ -581,7 +590,7 @@ EXAMPLES
|
|
|
581
590
|
$ raindrop build upload
|
|
582
591
|
```
|
|
583
592
|
|
|
584
|
-
_See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
593
|
+
_See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/upload.ts)_
|
|
585
594
|
|
|
586
595
|
## `raindrop build validate`
|
|
587
596
|
|
|
@@ -594,7 +603,8 @@ USAGE
|
|
|
594
603
|
FLAGS
|
|
595
604
|
-m, --manifest=<value> [default: raindrop.manifest] project manifest
|
|
596
605
|
-o, --output=<value> [default: dist] output directory
|
|
597
|
-
-r, --root=<value> [default: /Users/
|
|
606
|
+
-r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
|
|
607
|
+
directory
|
|
598
608
|
|
|
599
609
|
DESCRIPTION
|
|
600
610
|
build and validate a LiquidMetal.AI project
|
|
@@ -603,7 +613,7 @@ EXAMPLES
|
|
|
603
613
|
$ raindrop build validate
|
|
604
614
|
```
|
|
605
615
|
|
|
606
|
-
_See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
616
|
+
_See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/validate.ts)_
|
|
607
617
|
|
|
608
618
|
## `raindrop help [COMMAND]`
|
|
609
619
|
|
|
@@ -649,7 +659,7 @@ EXAMPLES
|
|
|
649
659
|
Delete file with key 'my-key' from my-bucket
|
|
650
660
|
```
|
|
651
661
|
|
|
652
|
-
_See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
662
|
+
_See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/delete.ts)_
|
|
653
663
|
|
|
654
664
|
## `raindrop object get KEY [OUTPUT]`
|
|
655
665
|
|
|
@@ -679,7 +689,7 @@ EXAMPLES
|
|
|
679
689
|
Download file with key 'my-key' from my-bucket to output.txt
|
|
680
690
|
```
|
|
681
691
|
|
|
682
|
-
_See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
692
|
+
_See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/get.ts)_
|
|
683
693
|
|
|
684
694
|
## `raindrop object list`
|
|
685
695
|
|
|
@@ -702,7 +712,7 @@ EXAMPLES
|
|
|
702
712
|
List all objects in my-bucket
|
|
703
713
|
```
|
|
704
714
|
|
|
705
|
-
_See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
715
|
+
_See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/list.ts)_
|
|
706
716
|
|
|
707
717
|
## `raindrop object put FILE KEY`
|
|
708
718
|
|
|
@@ -730,7 +740,7 @@ EXAMPLES
|
|
|
730
740
|
Upload myfile.txt to my-bucket with key 'my-key'
|
|
731
741
|
```
|
|
732
742
|
|
|
733
|
-
_See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
743
|
+
_See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/put.ts)_
|
|
734
744
|
|
|
735
745
|
## `raindrop plugins`
|
|
736
746
|
|
|
@@ -1045,31 +1055,7 @@ EXAMPLES
|
|
|
1045
1055
|
Run a RAG search query against a Smart Bucket.
|
|
1046
1056
|
```
|
|
1047
1057
|
|
|
1048
|
-
_See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
1049
|
-
|
|
1050
|
-
## `raindrop query register-retriever BUCKET URL DELETEURL BUCKETNAME`
|
|
1051
|
-
|
|
1052
|
-
Register a new retriever tool with the catalog service
|
|
1053
|
-
|
|
1054
|
-
```
|
|
1055
|
-
USAGE
|
|
1056
|
-
$ raindrop query register-retriever BUCKET URL DELETEURL BUCKETNAME
|
|
1057
|
-
|
|
1058
|
-
ARGUMENTS
|
|
1059
|
-
BUCKET bucket identifier for the retriever
|
|
1060
|
-
URL URL endpoint for the retriever
|
|
1061
|
-
DELETEURL Delete endpoint for the retriever
|
|
1062
|
-
BUCKETNAME Name of the bucket
|
|
1063
|
-
|
|
1064
|
-
DESCRIPTION
|
|
1065
|
-
Register a new retriever tool with the catalog service
|
|
1066
|
-
|
|
1067
|
-
EXAMPLES
|
|
1068
|
-
$ raindrop query register-retriever my-bucket https://my-retriever-endpoint.com https://my-delete-endpoint.com "My Bucket"
|
|
1069
|
-
Register a new retriever tool.
|
|
1070
|
-
```
|
|
1071
|
-
|
|
1072
|
-
_See code: [src/commands/query/register-retriever.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.11/src/commands/query/register-retriever.ts)_
|
|
1058
|
+
_See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/query/chunk-search.ts)_
|
|
1073
1059
|
|
|
1074
1060
|
## `raindrop query search [QUERY]`
|
|
1075
1061
|
|
|
@@ -1099,7 +1085,7 @@ EXAMPLES
|
|
|
1099
1085
|
Get page 2 of previous search results.
|
|
1100
1086
|
```
|
|
1101
1087
|
|
|
1102
|
-
_See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
1088
|
+
_See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/query/search.ts)_
|
|
1103
1089
|
|
|
1104
1090
|
## `raindrop tail`
|
|
1105
1091
|
|
|
@@ -1113,5 +1099,5 @@ DESCRIPTION
|
|
|
1113
1099
|
tail logs of applications deployed
|
|
1114
1100
|
```
|
|
1115
1101
|
|
|
1116
|
-
_See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.
|
|
1102
|
+
_See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/tail.ts)_
|
|
1117
1103
|
<!-- commandsstop -->
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-command.d.ts","sourceRoot":"","sources":["../src/base-command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,cAAc,EAAE,MAAM,yDAAyD,CAAC;AACzF,OAAO,EAAE,kBAAkB,EAAE,MAAM,8DAA8D,CAAC;AAClG,OAAO,EAAE,aAAa,EAAE,MAAM,wDAAwD,CAAC;AACvF,OAAO,EAAE,kBAAkB,EAAE,MAAM,8DAA8D,CAAC;AAElG,OAAO,EAAE,OAAO,EAAS,UAAU,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"base-command.d.ts","sourceRoot":"","sources":["../src/base-command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,EAAE,cAAc,EAAE,MAAM,yDAAyD,CAAC;AACzF,OAAO,EAAE,kBAAkB,EAAE,MAAM,8DAA8D,CAAC;AAClG,OAAO,EAAE,aAAa,EAAE,MAAM,wDAAwD,CAAC;AACvF,OAAO,EAAE,kBAAkB,EAAE,MAAM,8DAA8D,CAAC;AAElG,OAAO,EAAE,OAAO,EAAS,UAAU,EAAE,MAAM,aAAa,CAAC;AAIzD,OAAO,EAAE,MAAM,EAA0B,MAAM,aAAa,CAAC;AAC7D,OAAO,EAML,eAAe,EAChB,MAAM,YAAY,CAAC;AAEpB,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,OAAO,OAAO,IAAI,UAAU,CAAC,aAAa,CAAC,CAAC,OAAO,WAAW,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;AACvH,MAAM,MAAM,IAAI,CAAC,CAAC,SAAS,OAAO,OAAO,IAAI,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AAEhF,8BAAsB,WAAW,CAAC,CAAC,SAAS,OAAO,OAAO,CAAE,SAAQ,OAAO;IACzE,MAAM,CAAC,YAAY;;;;;;;MAiCjB;IAEF,MAAM,CAAC,SAAS,KAAM;IACtB,MAAM,CAAC,QAAQ,KAAM;IAErB,SAAS,CAAC,KAAK,EAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAC3B,SAAS,CAAC,IAAI,EAAG,IAAI,CAAC,CAAC,CAAC,CAAC;IAEzB,SAAS,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAErB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;cAclB,KAAK,CAAC,GAAG,EAAE,KAAK,GAAG;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,GAAG,CAAC;cAKvD,OAAO,CAAC,CAAC,EAAE,KAAK,GAAG,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC;IAIrD,UAAU,IAAI,OAAO,CAAC,MAAM,CAAC;IAK7B,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIzC,YAAY,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC;IAuB5C,SAAS,CAAC,SAAS,IAAI,MAAM;cAIb,eAAe,IAAI,OAAO,CAAC,eAAe,CAAC;IA6BrD,cAAc,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;QAChD,MAAM,EAAE,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;QACtC,MAAM,EAAE,MAAM,CAAC;QACf,cAAc,EAAE,MAAM,CAAC;KACxB,CAAC;cAac,kBAAkB,IAAI,OAAO,CAAC;QAC5C,MAAM,EAAE,MAAM,CAAC,OAAO,kBAAkB,CAAC,CAAC;QAC1C,cAAc,EAAE,MAAM,CAAC;QACvB,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;cAYc,aAAa,IAAI,OAAO,CAAC;QACvC,MAAM,EAAE,MAAM,CAAC,OAAO,aAAa,CAAC,CAAC;QACrC,cAAc,EAAE,MAAM,CAAC;QACvB,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;cAiBc,kBAAkB,IAAI,OAAO,CAAC;QAC5C,MAAM,EAAE,MAAM,CAAC,OAAO,kBAAkB,CAAC,CAAC;KAC3C,CAAC;IAMI,wBAAwB,IAAI,OAAO,CAAC,MAAM,CAAC;IAWjD,GAAG,CAAC,OAAO,GAAE,MAAW,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;CAGhD"}
|
package/dist/base-command.js
CHANGED
|
@@ -3,6 +3,7 @@ import { FRAMEWORK_PACKAGE, getPackageVersion } from '@liquidmetal-ai/drizzle/un
|
|
|
3
3
|
import { Command, Flags } from '@oclif/core';
|
|
4
4
|
import * as fs from 'node:fs/promises';
|
|
5
5
|
import path from 'node:path';
|
|
6
|
+
import { urlifyOrganizationId } from '@liquidmetal-ai/drizzle/raindrop/index';
|
|
6
7
|
import { loadConfig, saveConfig } from './config.js';
|
|
7
8
|
import { catalogService, objectService, rainbowAuthService, searchAgentService, selectedOrganization, } from './index.js';
|
|
8
9
|
export class BaseCommand extends Command {
|
|
@@ -124,7 +125,7 @@ export class BaseCommand extends Command {
|
|
|
124
125
|
}
|
|
125
126
|
async catalogService(configDir) {
|
|
126
127
|
if (this.flags.raindropCatalogService) {
|
|
127
|
-
|
|
128
|
+
this.log(`[DEBUG] Using catalog-service: ${this.flags.raindropCatalogService}`);
|
|
128
129
|
}
|
|
129
130
|
return catalogService({
|
|
130
131
|
rainbowAuth: (await this.rainbowAuthService()).client,
|
|
@@ -145,12 +146,13 @@ export class BaseCommand extends Command {
|
|
|
145
146
|
async objectService() {
|
|
146
147
|
const { client: rainbowAuth } = await this.rainbowAuthService();
|
|
147
148
|
const identity = await this.catalogIdentity();
|
|
149
|
+
const baseUrl = `https://api-${this.flags.bucket}.${urlifyOrganizationId(identity.organizationId)}.lmapp.run`;
|
|
148
150
|
const result = await objectService({
|
|
149
151
|
rainbowAuth,
|
|
150
152
|
configDir: this.config.configDir,
|
|
151
153
|
identity: {
|
|
152
154
|
...identity,
|
|
153
|
-
baseUrl
|
|
155
|
+
baseUrl,
|
|
154
156
|
},
|
|
155
157
|
});
|
|
156
158
|
return result;
|
package/dist/build.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AAqBnC,wBAA8B,KAAK,CAAC,OAAO,EAAE;IAC3C,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;CAChB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AAqBnC,wBAA8B,KAAK,CAAC,OAAO,EAAE;IAC3C,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;CAChB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,CAwE/B;AAED,MAAM,WAAW,GAAG;IAGlB,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAChD,KAAK,CACH,KAAK,EAAE,KAAK,GAAG,MAAM,EACrB,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,GAAG,oBAAoB,GACvB,KAAK,CAAC;CACV;AAGD,wBAAsB,aAAa,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,iBAgDhG"}
|
package/dist/build.js
CHANGED
|
@@ -31,12 +31,16 @@ export default async function build(options) {
|
|
|
31
31
|
if (options.entryPoints.length === 1) {
|
|
32
32
|
outbase = path.join(options.root, HANDLERS_DIR);
|
|
33
33
|
}
|
|
34
|
+
const gitCommitSha = await currentGitCommitSha();
|
|
34
35
|
const buildResult = await esbuild.build({
|
|
35
36
|
entryPoints: options.entryPoints,
|
|
36
37
|
external: ['node:crypto', 'crypto', '@liquidmetal-ai/raindrop-framework', './runtime.js'],
|
|
37
38
|
alias: {
|
|
38
39
|
'@liquidmetal-ai/raindrop-framework': './runtime.js',
|
|
39
40
|
},
|
|
41
|
+
banner: {
|
|
42
|
+
js: `globalThis.__RAINDROP_GIT_COMMIT_SHA = "${gitCommitSha}";`,
|
|
43
|
+
},
|
|
40
44
|
bundle: true,
|
|
41
45
|
outdir: options.outdir,
|
|
42
46
|
outbase,
|
|
@@ -119,3 +123,11 @@ export async function buildHandlers(cmd, apps, buildDir, root) {
|
|
|
119
123
|
}
|
|
120
124
|
}
|
|
121
125
|
}
|
|
126
|
+
async function currentGitCommitSha() {
|
|
127
|
+
try {
|
|
128
|
+
return (await execAsync('git rev-parse HEAD', { encoding: 'utf8' })).stdout.trim();
|
|
129
|
+
}
|
|
130
|
+
catch (_) {
|
|
131
|
+
return 'unknown';
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -8,6 +8,7 @@ export default class Find extends BaseCommand<typeof Find> {
|
|
|
8
8
|
manifest: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
application: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
10
|
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
+
moduleType: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
12
|
output: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
13
|
sudo: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
13
14
|
impersonate: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
@@ -18,6 +19,13 @@ export default class Find extends BaseCommand<typeof Find> {
|
|
|
18
19
|
rainbowOrganizationId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
20
|
rainbowUserId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
21
|
};
|
|
22
|
+
queryModules(flags: {
|
|
23
|
+
output: string;
|
|
24
|
+
rainbowAuthService: string;
|
|
25
|
+
application?: string;
|
|
26
|
+
version?: string;
|
|
27
|
+
moduleType?: string;
|
|
28
|
+
}): Promise<void>;
|
|
21
29
|
queryResources(flags: {
|
|
22
30
|
output: string;
|
|
23
31
|
rainbowAuthService: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../src/commands/build/find.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../src/commands/build/find.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAQpD,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,WAAW,CAAC,OAAO,IAAI,CAAC;IACxD,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAgC;IAElD,MAAM,CAAC,QAAQ,WAGb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;;;;MA0CV;IAEI,YAAY,CAAC,KAAK,EAAE;QACxB,MAAM,EAAE,MAAM,CAAC;QACf,kBAAkB,EAAE,MAAM,CAAC;QAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,UAAU,CAAC,EAAE,MAAM,CAAC;KACrB;IAoDK,cAAc,CAAC,KAAK,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE;IA+C5G,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAO3B"}
|