@liquidmetal-ai/raindrop 0.1.5 → 0.2.1
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 +261 -53
- package/dist/base-command.d.ts +13 -0
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +21 -1
- package/dist/build.d.ts +2 -3
- package/dist/build.d.ts.map +1 -1
- package/dist/build.js +1 -1
- package/dist/codegen.d.ts.map +1 -1
- package/dist/codegen.js +12 -0
- package/dist/commands/build/branch.d.ts +6 -3
- package/dist/commands/build/branch.d.ts.map +1 -1
- package/dist/commands/build/branch.js +107 -44
- package/dist/commands/build/checkout.d.ts +16 -0
- package/dist/commands/build/checkout.d.ts.map +1 -0
- package/dist/commands/build/checkout.js +66 -0
- package/dist/commands/build/delete.d.ts.map +1 -1
- package/dist/commands/build/delete.js +8 -7
- package/dist/commands/build/deploy.d.ts.map +1 -1
- package/dist/commands/build/deploy.js +84 -92
- package/dist/commands/build/env/get.d.ts.map +1 -1
- package/dist/commands/build/env/get.js +10 -9
- package/dist/commands/build/env/set.d.ts.map +1 -1
- package/dist/commands/build/env/set.js +10 -9
- package/dist/commands/build/find.d.ts.map +1 -1
- package/dist/commands/build/find.js +2 -7
- package/dist/commands/build/list.d.ts +15 -2
- package/dist/commands/build/list.d.ts.map +1 -1
- package/dist/commands/build/list.js +147 -35
- package/dist/commands/build/sandbox.d.ts.map +1 -1
- package/dist/commands/build/sandbox.js +12 -12
- package/dist/commands/build/start.d.ts.map +1 -1
- package/dist/commands/build/start.js +15 -17
- package/dist/commands/build/status.d.ts +2 -16
- package/dist/commands/build/status.d.ts.map +1 -1
- package/dist/commands/build/status.js +30 -64
- package/dist/commands/build/stop.d.ts.map +1 -1
- package/dist/commands/build/stop.js +17 -21
- package/dist/commands/build/unsandbox.d.ts.map +1 -1
- package/dist/commands/build/unsandbox.js +13 -13
- package/dist/commands/object/delete.d.ts +18 -0
- package/dist/commands/object/delete.d.ts.map +1 -0
- package/dist/commands/object/delete.js +66 -0
- package/dist/commands/object/get.d.ts +21 -0
- package/dist/commands/object/get.d.ts.map +1 -0
- package/dist/commands/object/get.js +95 -0
- package/dist/commands/object/list.d.ts +15 -0
- package/dist/commands/object/list.d.ts.map +1 -0
- package/dist/commands/object/list.js +79 -0
- package/dist/commands/object/put.d.ts +23 -0
- package/dist/commands/object/put.d.ts.map +1 -0
- package/dist/commands/object/put.js +99 -0
- package/dist/commands/query/chunk-search.d.ts +18 -0
- package/dist/commands/query/chunk-search.d.ts.map +1 -0
- package/dist/commands/query/chunk-search.js +79 -0
- package/dist/commands/query/register-retriever.d.ts +16 -0
- package/dist/commands/query/register-retriever.d.ts.map +1 -0
- package/dist/commands/query/register-retriever.js +56 -0
- package/dist/commands/query/search.d.ts +19 -0
- package/dist/commands/query/search.d.ts.map +1 -0
- package/dist/commands/query/search.js +124 -0
- package/dist/commands/tail.d.ts +1 -5
- package/dist/commands/tail.d.ts.map +1 -1
- package/dist/commands/tail.js +2 -50
- package/dist/config.d.ts +3 -3
- package/dist/config.js +2 -2
- package/dist/config.test.js +1 -1
- package/dist/index.d.ts +27 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +36 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +810 -137
- package/package.json +2 -1
- package/templates/handlers/queue-consumer/index.ts.hbs +1 -1
- package/templates/handlers/r2-event-notification/index.ts.hbs +1 -1
- package/templates/handlers/task/index.test.ts +5 -0
- package/templates/handlers/task/index.ts.hbs +8 -0
- package/dist/commands/build/token.d.ts +0 -9
- package/dist/commands/build/token.d.ts.map +0 -1
- package/dist/commands/build/token.js +0 -42
package/oclif.manifest.json
CHANGED
|
@@ -4,13 +4,627 @@
|
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {},
|
|
6
6
|
"description": "tail logs of applications deployed",
|
|
7
|
+
"flags": {},
|
|
8
|
+
"hasDynamicHelp": false,
|
|
9
|
+
"hiddenAliases": [],
|
|
10
|
+
"id": "tail",
|
|
11
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
12
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
13
|
+
"pluginType": "core",
|
|
14
|
+
"strict": true,
|
|
15
|
+
"enableJsonFlag": false,
|
|
16
|
+
"baseArgs": {},
|
|
17
|
+
"isESM": true,
|
|
18
|
+
"relativePath": [
|
|
19
|
+
"dist",
|
|
20
|
+
"commands",
|
|
21
|
+
"tail.js"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"auth:list": {
|
|
25
|
+
"aliases": [],
|
|
26
|
+
"args": {},
|
|
27
|
+
"description": "List authentications",
|
|
28
|
+
"flags": {
|
|
29
|
+
"output": {
|
|
30
|
+
"char": "o",
|
|
31
|
+
"description": "output format",
|
|
32
|
+
"name": "output",
|
|
33
|
+
"default": "table",
|
|
34
|
+
"hasDynamicHelp": false,
|
|
35
|
+
"multiple": false,
|
|
36
|
+
"options": [
|
|
37
|
+
"text",
|
|
38
|
+
"table",
|
|
39
|
+
"json"
|
|
40
|
+
],
|
|
41
|
+
"type": "option"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"hasDynamicHelp": false,
|
|
45
|
+
"hiddenAliases": [],
|
|
46
|
+
"id": "auth:list",
|
|
47
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
48
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
49
|
+
"pluginType": "core",
|
|
50
|
+
"strict": true,
|
|
51
|
+
"enableJsonFlag": false,
|
|
52
|
+
"baseArgs": {},
|
|
53
|
+
"isESM": true,
|
|
54
|
+
"relativePath": [
|
|
55
|
+
"dist",
|
|
56
|
+
"commands",
|
|
57
|
+
"auth",
|
|
58
|
+
"list.js"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"auth:login": {
|
|
62
|
+
"aliases": [],
|
|
63
|
+
"args": {},
|
|
64
|
+
"description": "Logs a user into the LiquidMetal platform. Supports browser-based authentication.",
|
|
65
|
+
"flags": {
|
|
66
|
+
"rainbowAuthService": {
|
|
67
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
68
|
+
"hidden": true,
|
|
69
|
+
"name": "rainbowAuthService",
|
|
70
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
71
|
+
"hasDynamicHelp": false,
|
|
72
|
+
"multiple": false,
|
|
73
|
+
"type": "option"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"hasDynamicHelp": false,
|
|
77
|
+
"hiddenAliases": [],
|
|
78
|
+
"id": "auth:login",
|
|
79
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
80
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
81
|
+
"pluginType": "core",
|
|
82
|
+
"strict": true,
|
|
83
|
+
"enableJsonFlag": false,
|
|
84
|
+
"baseArgs": {},
|
|
85
|
+
"isESM": true,
|
|
86
|
+
"relativePath": [
|
|
87
|
+
"dist",
|
|
88
|
+
"commands",
|
|
89
|
+
"auth",
|
|
90
|
+
"login.js"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"auth:logout": {
|
|
94
|
+
"aliases": [],
|
|
95
|
+
"args": {},
|
|
96
|
+
"description": "Logout authentications",
|
|
97
|
+
"flags": {},
|
|
98
|
+
"hasDynamicHelp": false,
|
|
99
|
+
"hiddenAliases": [],
|
|
100
|
+
"id": "auth:logout",
|
|
101
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
102
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
103
|
+
"pluginType": "core",
|
|
104
|
+
"strict": true,
|
|
105
|
+
"enableJsonFlag": false,
|
|
106
|
+
"baseArgs": {},
|
|
107
|
+
"isESM": true,
|
|
108
|
+
"relativePath": [
|
|
109
|
+
"dist",
|
|
110
|
+
"commands",
|
|
111
|
+
"auth",
|
|
112
|
+
"logout.js"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"auth:select": {
|
|
116
|
+
"aliases": [],
|
|
117
|
+
"args": {},
|
|
118
|
+
"description": "Select active organization",
|
|
119
|
+
"flags": {
|
|
120
|
+
"organizationId": {
|
|
121
|
+
"description": "organizationId to select as active",
|
|
122
|
+
"name": "organizationId",
|
|
123
|
+
"hasDynamicHelp": false,
|
|
124
|
+
"multiple": false,
|
|
125
|
+
"type": "option"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"hasDynamicHelp": false,
|
|
129
|
+
"hiddenAliases": [],
|
|
130
|
+
"id": "auth:select",
|
|
131
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
132
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
133
|
+
"pluginType": "core",
|
|
134
|
+
"strict": true,
|
|
135
|
+
"enableJsonFlag": false,
|
|
136
|
+
"baseArgs": {},
|
|
137
|
+
"isESM": true,
|
|
138
|
+
"relativePath": [
|
|
139
|
+
"dist",
|
|
140
|
+
"commands",
|
|
141
|
+
"auth",
|
|
142
|
+
"select.js"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"query:chunk-search": {
|
|
146
|
+
"aliases": [],
|
|
147
|
+
"args": {
|
|
148
|
+
"query": {
|
|
149
|
+
"description": "search query to run",
|
|
150
|
+
"name": "query",
|
|
151
|
+
"required": true
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"description": "Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket",
|
|
155
|
+
"examples": [
|
|
156
|
+
"<%= config.bin %> query chunk-search \"What is LiquidMetal?\"\nRun a RAG search query against a Smart Bucket.\n"
|
|
157
|
+
],
|
|
7
158
|
"flags": {
|
|
159
|
+
"output": {
|
|
160
|
+
"char": "o",
|
|
161
|
+
"description": "output format",
|
|
162
|
+
"name": "output",
|
|
163
|
+
"default": "text",
|
|
164
|
+
"hasDynamicHelp": false,
|
|
165
|
+
"multiple": false,
|
|
166
|
+
"options": [
|
|
167
|
+
"text",
|
|
168
|
+
"json"
|
|
169
|
+
],
|
|
170
|
+
"type": "option"
|
|
171
|
+
},
|
|
8
172
|
"impersonate": {
|
|
9
173
|
"char": "i",
|
|
10
174
|
"description": "impersonate organization",
|
|
11
175
|
"hidden": true,
|
|
12
|
-
"name": "impersonate",
|
|
176
|
+
"name": "impersonate",
|
|
177
|
+
"required": false,
|
|
178
|
+
"hasDynamicHelp": false,
|
|
179
|
+
"multiple": false,
|
|
180
|
+
"type": "option"
|
|
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
|
+
},
|
|
193
|
+
"rainbowAuthService": {
|
|
194
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
195
|
+
"hidden": true,
|
|
196
|
+
"name": "rainbowAuthService",
|
|
197
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
198
|
+
"hasDynamicHelp": false,
|
|
199
|
+
"multiple": false,
|
|
200
|
+
"type": "option"
|
|
201
|
+
},
|
|
202
|
+
"raindropCatalogService": {
|
|
203
|
+
"description": "URL of the catalog service",
|
|
204
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
205
|
+
"hidden": true,
|
|
206
|
+
"name": "raindropCatalogService",
|
|
207
|
+
"hasDynamicHelp": false,
|
|
208
|
+
"multiple": false,
|
|
209
|
+
"type": "option"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"hasDynamicHelp": false,
|
|
213
|
+
"hiddenAliases": [],
|
|
214
|
+
"id": "query:chunk-search",
|
|
215
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
216
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
217
|
+
"pluginType": "core",
|
|
218
|
+
"strict": true,
|
|
219
|
+
"enableJsonFlag": false,
|
|
220
|
+
"baseArgs": {},
|
|
221
|
+
"isESM": true,
|
|
222
|
+
"relativePath": [
|
|
223
|
+
"dist",
|
|
224
|
+
"commands",
|
|
225
|
+
"query",
|
|
226
|
+
"chunk-search.js"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
"query:register-retriever": {
|
|
230
|
+
"aliases": [],
|
|
231
|
+
"args": {
|
|
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
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"description": "Register a new retriever tool with the catalog service",
|
|
254
|
+
"examples": [
|
|
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"
|
|
256
|
+
],
|
|
257
|
+
"flags": {
|
|
258
|
+
"raindropCatalogService": {
|
|
259
|
+
"description": "URL of the catalog service",
|
|
260
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
261
|
+
"hidden": true,
|
|
262
|
+
"name": "raindropCatalogService",
|
|
263
|
+
"hasDynamicHelp": false,
|
|
264
|
+
"multiple": false,
|
|
265
|
+
"type": "option"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"hasDynamicHelp": false,
|
|
269
|
+
"hiddenAliases": [],
|
|
270
|
+
"id": "query:register-retriever",
|
|
271
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
272
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
273
|
+
"pluginType": "core",
|
|
274
|
+
"strict": true,
|
|
275
|
+
"enableJsonFlag": false,
|
|
276
|
+
"baseArgs": {},
|
|
277
|
+
"isESM": true,
|
|
278
|
+
"relativePath": [
|
|
279
|
+
"dist",
|
|
280
|
+
"commands",
|
|
281
|
+
"query",
|
|
282
|
+
"register-retriever.js"
|
|
283
|
+
]
|
|
284
|
+
},
|
|
285
|
+
"query:search": {
|
|
286
|
+
"aliases": [],
|
|
287
|
+
"args": {
|
|
288
|
+
"query": {
|
|
289
|
+
"description": "search query",
|
|
290
|
+
"name": "query",
|
|
291
|
+
"required": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"description": "Run a search query against a smart bucket using natural language",
|
|
295
|
+
"examples": [
|
|
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"
|
|
298
|
+
],
|
|
299
|
+
"flags": {
|
|
300
|
+
"requestId": {
|
|
301
|
+
"description": "request ID for pagination",
|
|
302
|
+
"name": "requestId",
|
|
303
|
+
"required": false,
|
|
304
|
+
"hasDynamicHelp": false,
|
|
305
|
+
"multiple": false,
|
|
306
|
+
"type": "option"
|
|
307
|
+
},
|
|
308
|
+
"page": {
|
|
309
|
+
"char": "p",
|
|
310
|
+
"description": "page number for paginated results",
|
|
311
|
+
"name": "page",
|
|
312
|
+
"default": 1,
|
|
313
|
+
"hasDynamicHelp": false,
|
|
314
|
+
"multiple": false,
|
|
315
|
+
"type": "option"
|
|
316
|
+
},
|
|
317
|
+
"output": {
|
|
318
|
+
"char": "o",
|
|
319
|
+
"description": "output format",
|
|
320
|
+
"name": "output",
|
|
321
|
+
"default": "text",
|
|
322
|
+
"hasDynamicHelp": false,
|
|
323
|
+
"multiple": false,
|
|
324
|
+
"options": [
|
|
325
|
+
"text",
|
|
326
|
+
"json"
|
|
327
|
+
],
|
|
328
|
+
"type": "option"
|
|
329
|
+
},
|
|
330
|
+
"impersonate": {
|
|
331
|
+
"char": "i",
|
|
332
|
+
"description": "impersonate organization",
|
|
333
|
+
"hidden": true,
|
|
334
|
+
"name": "impersonate",
|
|
335
|
+
"required": false,
|
|
336
|
+
"hasDynamicHelp": false,
|
|
337
|
+
"multiple": false,
|
|
338
|
+
"type": "option"
|
|
339
|
+
},
|
|
340
|
+
"manifest": {
|
|
341
|
+
"char": "m",
|
|
342
|
+
"description": "project manifest",
|
|
343
|
+
"hidden": true,
|
|
344
|
+
"name": "manifest",
|
|
345
|
+
"required": false,
|
|
346
|
+
"default": "raindrop.manifest",
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"rainbowAuthService": {
|
|
352
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
353
|
+
"hidden": true,
|
|
354
|
+
"name": "rainbowAuthService",
|
|
355
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
356
|
+
"hasDynamicHelp": false,
|
|
357
|
+
"multiple": false,
|
|
358
|
+
"type": "option"
|
|
359
|
+
},
|
|
360
|
+
"raindropCatalogService": {
|
|
361
|
+
"description": "URL of the catalog service",
|
|
362
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
363
|
+
"hidden": true,
|
|
364
|
+
"name": "raindropCatalogService",
|
|
365
|
+
"hasDynamicHelp": false,
|
|
366
|
+
"multiple": false,
|
|
367
|
+
"type": "option"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"hasDynamicHelp": false,
|
|
371
|
+
"hiddenAliases": [],
|
|
372
|
+
"id": "query:search",
|
|
373
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
374
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
375
|
+
"pluginType": "core",
|
|
376
|
+
"strict": true,
|
|
377
|
+
"enableJsonFlag": false,
|
|
378
|
+
"baseArgs": {},
|
|
379
|
+
"isESM": true,
|
|
380
|
+
"relativePath": [
|
|
381
|
+
"dist",
|
|
382
|
+
"commands",
|
|
383
|
+
"query",
|
|
384
|
+
"search.js"
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
"object:delete": {
|
|
388
|
+
"aliases": [],
|
|
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",
|
|
397
|
+
"examples": [
|
|
398
|
+
"<%= config.bin %> object delete my-key --bucket my-bucket\nDelete file with key 'my-key' from my-bucket\n"
|
|
399
|
+
],
|
|
400
|
+
"flags": {
|
|
401
|
+
"bucket": {
|
|
402
|
+
"char": "b",
|
|
403
|
+
"description": "bucket name",
|
|
404
|
+
"name": "bucket",
|
|
405
|
+
"required": true,
|
|
406
|
+
"hasDynamicHelp": false,
|
|
407
|
+
"multiple": false,
|
|
408
|
+
"type": "option"
|
|
409
|
+
},
|
|
410
|
+
"output": {
|
|
411
|
+
"char": "o",
|
|
412
|
+
"description": "output format",
|
|
413
|
+
"name": "output",
|
|
414
|
+
"default": "text",
|
|
415
|
+
"hasDynamicHelp": false,
|
|
416
|
+
"multiple": false,
|
|
417
|
+
"options": [
|
|
418
|
+
"text",
|
|
419
|
+
"json"
|
|
420
|
+
],
|
|
421
|
+
"type": "option"
|
|
422
|
+
},
|
|
423
|
+
"impersonate": {
|
|
424
|
+
"char": "i",
|
|
425
|
+
"description": "impersonate organization",
|
|
426
|
+
"hidden": true,
|
|
427
|
+
"name": "impersonate",
|
|
428
|
+
"required": false,
|
|
429
|
+
"hasDynamicHelp": false,
|
|
430
|
+
"multiple": false,
|
|
431
|
+
"type": "option"
|
|
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
|
+
},
|
|
444
|
+
"rainbowAuthService": {
|
|
445
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
446
|
+
"hidden": true,
|
|
447
|
+
"name": "rainbowAuthService",
|
|
448
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
449
|
+
"hasDynamicHelp": false,
|
|
450
|
+
"multiple": false,
|
|
451
|
+
"type": "option"
|
|
452
|
+
},
|
|
453
|
+
"raindropCatalogService": {
|
|
454
|
+
"description": "URL of the catalog service",
|
|
455
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
456
|
+
"hidden": true,
|
|
457
|
+
"name": "raindropCatalogService",
|
|
458
|
+
"hasDynamicHelp": false,
|
|
459
|
+
"multiple": false,
|
|
460
|
+
"type": "option"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"hasDynamicHelp": false,
|
|
464
|
+
"hiddenAliases": [],
|
|
465
|
+
"id": "object:delete",
|
|
466
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
467
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
468
|
+
"pluginType": "core",
|
|
469
|
+
"strict": true,
|
|
470
|
+
"enableJsonFlag": false,
|
|
471
|
+
"baseArgs": {},
|
|
472
|
+
"isESM": true,
|
|
473
|
+
"relativePath": [
|
|
474
|
+
"dist",
|
|
475
|
+
"commands",
|
|
476
|
+
"object",
|
|
477
|
+
"delete.js"
|
|
478
|
+
]
|
|
479
|
+
},
|
|
480
|
+
"object:get": {
|
|
481
|
+
"aliases": [],
|
|
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",
|
|
495
|
+
"examples": [
|
|
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"
|
|
498
|
+
],
|
|
499
|
+
"flags": {
|
|
500
|
+
"bucket": {
|
|
501
|
+
"char": "b",
|
|
502
|
+
"description": "bucket name",
|
|
503
|
+
"name": "bucket",
|
|
504
|
+
"required": true,
|
|
505
|
+
"hasDynamicHelp": false,
|
|
506
|
+
"multiple": false,
|
|
507
|
+
"type": "option"
|
|
508
|
+
},
|
|
509
|
+
"format": {
|
|
510
|
+
"char": "f",
|
|
511
|
+
"description": "output format",
|
|
512
|
+
"name": "format",
|
|
513
|
+
"default": "file",
|
|
514
|
+
"hasDynamicHelp": false,
|
|
515
|
+
"multiple": false,
|
|
516
|
+
"options": [
|
|
517
|
+
"file",
|
|
518
|
+
"stdout",
|
|
519
|
+
"json"
|
|
520
|
+
],
|
|
521
|
+
"type": "option"
|
|
522
|
+
},
|
|
523
|
+
"impersonate": {
|
|
524
|
+
"char": "i",
|
|
525
|
+
"description": "impersonate organization",
|
|
526
|
+
"hidden": true,
|
|
527
|
+
"name": "impersonate",
|
|
528
|
+
"required": false,
|
|
529
|
+
"hasDynamicHelp": false,
|
|
530
|
+
"multiple": false,
|
|
531
|
+
"type": "option"
|
|
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
|
+
},
|
|
544
|
+
"rainbowAuthService": {
|
|
545
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
546
|
+
"hidden": true,
|
|
547
|
+
"name": "rainbowAuthService",
|
|
548
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
549
|
+
"hasDynamicHelp": false,
|
|
550
|
+
"multiple": false,
|
|
551
|
+
"type": "option"
|
|
552
|
+
},
|
|
553
|
+
"raindropCatalogService": {
|
|
554
|
+
"description": "URL of the catalog service",
|
|
555
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
556
|
+
"hidden": true,
|
|
557
|
+
"name": "raindropCatalogService",
|
|
558
|
+
"hasDynamicHelp": false,
|
|
559
|
+
"multiple": false,
|
|
560
|
+
"type": "option"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"hasDynamicHelp": false,
|
|
564
|
+
"hiddenAliases": [],
|
|
565
|
+
"id": "object:get",
|
|
566
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
567
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
568
|
+
"pluginType": "core",
|
|
569
|
+
"strict": true,
|
|
570
|
+
"enableJsonFlag": false,
|
|
571
|
+
"baseArgs": {},
|
|
572
|
+
"isESM": true,
|
|
573
|
+
"relativePath": [
|
|
574
|
+
"dist",
|
|
575
|
+
"commands",
|
|
576
|
+
"object",
|
|
577
|
+
"get.js"
|
|
578
|
+
]
|
|
579
|
+
},
|
|
580
|
+
"object:list": {
|
|
581
|
+
"aliases": [],
|
|
582
|
+
"args": {},
|
|
583
|
+
"description": "List objects in a bucket",
|
|
584
|
+
"examples": [
|
|
585
|
+
"<%= config.bin %> object list --bucket my-bucket\nList all objects in my-bucket\n"
|
|
586
|
+
],
|
|
587
|
+
"flags": {
|
|
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",
|
|
616
|
+
"required": false,
|
|
617
|
+
"hasDynamicHelp": false,
|
|
618
|
+
"multiple": false,
|
|
619
|
+
"type": "option"
|
|
620
|
+
},
|
|
621
|
+
"manifest": {
|
|
622
|
+
"char": "m",
|
|
623
|
+
"description": "project manifest",
|
|
624
|
+
"hidden": true,
|
|
625
|
+
"name": "manifest",
|
|
13
626
|
"required": false,
|
|
627
|
+
"default": "raindrop.manifest",
|
|
14
628
|
"hasDynamicHelp": false,
|
|
15
629
|
"multiple": false,
|
|
16
630
|
"type": "option"
|
|
@@ -24,11 +638,11 @@
|
|
|
24
638
|
"multiple": false,
|
|
25
639
|
"type": "option"
|
|
26
640
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
641
|
+
"raindropCatalogService": {
|
|
642
|
+
"description": "URL of the catalog service",
|
|
643
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
29
644
|
"hidden": true,
|
|
30
|
-
"name": "
|
|
31
|
-
"default": "https://rainbow-service-production.liquidmetal.run",
|
|
645
|
+
"name": "raindropCatalogService",
|
|
32
646
|
"hasDynamicHelp": false,
|
|
33
647
|
"multiple": false,
|
|
34
648
|
"type": "option"
|
|
@@ -36,60 +650,92 @@
|
|
|
36
650
|
},
|
|
37
651
|
"hasDynamicHelp": false,
|
|
38
652
|
"hiddenAliases": [],
|
|
39
|
-
"id": "
|
|
653
|
+
"id": "object:list",
|
|
40
654
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
41
655
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
42
656
|
"pluginType": "core",
|
|
43
657
|
"strict": true,
|
|
44
658
|
"enableJsonFlag": false,
|
|
659
|
+
"baseArgs": {},
|
|
45
660
|
"isESM": true,
|
|
46
661
|
"relativePath": [
|
|
47
662
|
"dist",
|
|
48
663
|
"commands",
|
|
49
|
-
"
|
|
664
|
+
"object",
|
|
665
|
+
"list.js"
|
|
50
666
|
]
|
|
51
667
|
},
|
|
52
|
-
"
|
|
668
|
+
"object:put": {
|
|
53
669
|
"aliases": [],
|
|
54
|
-
"args": {
|
|
55
|
-
|
|
670
|
+
"args": {
|
|
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
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
"description": "Upload a file to the object storage",
|
|
683
|
+
"examples": [
|
|
684
|
+
"<%= config.bin %> object put ./myfile.txt my-key --bucket my-bucket\nUpload myfile.txt to my-bucket with key 'my-key'\n"
|
|
685
|
+
],
|
|
56
686
|
"flags": {
|
|
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"
|
|
704
|
+
},
|
|
57
705
|
"output": {
|
|
58
706
|
"char": "o",
|
|
59
707
|
"description": "output format",
|
|
60
708
|
"name": "output",
|
|
61
|
-
"default": "
|
|
709
|
+
"default": "text",
|
|
62
710
|
"hasDynamicHelp": false,
|
|
63
711
|
"multiple": false,
|
|
64
712
|
"options": [
|
|
65
713
|
"text",
|
|
66
|
-
"table",
|
|
67
714
|
"json"
|
|
68
715
|
],
|
|
69
716
|
"type": "option"
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"flags": {
|
|
717
|
+
},
|
|
718
|
+
"impersonate": {
|
|
719
|
+
"char": "i",
|
|
720
|
+
"description": "impersonate organization",
|
|
721
|
+
"hidden": true,
|
|
722
|
+
"name": "impersonate",
|
|
723
|
+
"required": false,
|
|
724
|
+
"hasDynamicHelp": false,
|
|
725
|
+
"multiple": false,
|
|
726
|
+
"type": "option"
|
|
727
|
+
},
|
|
728
|
+
"manifest": {
|
|
729
|
+
"char": "m",
|
|
730
|
+
"description": "project manifest",
|
|
731
|
+
"hidden": true,
|
|
732
|
+
"name": "manifest",
|
|
733
|
+
"required": false,
|
|
734
|
+
"default": "raindrop.manifest",
|
|
735
|
+
"hasDynamicHelp": false,
|
|
736
|
+
"multiple": false,
|
|
737
|
+
"type": "option"
|
|
738
|
+
},
|
|
93
739
|
"rainbowAuthService": {
|
|
94
740
|
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
95
741
|
"hidden": true,
|
|
@@ -98,53 +744,12 @@
|
|
|
98
744
|
"hasDynamicHelp": false,
|
|
99
745
|
"multiple": false,
|
|
100
746
|
"type": "option"
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
108
|
-
"pluginType": "core",
|
|
109
|
-
"strict": true,
|
|
110
|
-
"enableJsonFlag": false,
|
|
111
|
-
"isESM": true,
|
|
112
|
-
"relativePath": [
|
|
113
|
-
"dist",
|
|
114
|
-
"commands",
|
|
115
|
-
"auth",
|
|
116
|
-
"login.js"
|
|
117
|
-
]
|
|
118
|
-
},
|
|
119
|
-
"auth:logout": {
|
|
120
|
-
"aliases": [],
|
|
121
|
-
"args": {},
|
|
122
|
-
"description": "Logout authentications",
|
|
123
|
-
"flags": {},
|
|
124
|
-
"hasDynamicHelp": false,
|
|
125
|
-
"hiddenAliases": [],
|
|
126
|
-
"id": "auth:logout",
|
|
127
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
128
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
129
|
-
"pluginType": "core",
|
|
130
|
-
"strict": true,
|
|
131
|
-
"enableJsonFlag": false,
|
|
132
|
-
"isESM": true,
|
|
133
|
-
"relativePath": [
|
|
134
|
-
"dist",
|
|
135
|
-
"commands",
|
|
136
|
-
"auth",
|
|
137
|
-
"logout.js"
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
"auth:select": {
|
|
141
|
-
"aliases": [],
|
|
142
|
-
"args": {},
|
|
143
|
-
"description": "Select active organization",
|
|
144
|
-
"flags": {
|
|
145
|
-
"organizationId": {
|
|
146
|
-
"description": "organizationId to select as active",
|
|
147
|
-
"name": "organizationId",
|
|
747
|
+
},
|
|
748
|
+
"raindropCatalogService": {
|
|
749
|
+
"description": "URL of the catalog service",
|
|
750
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
751
|
+
"hidden": true,
|
|
752
|
+
"name": "raindropCatalogService",
|
|
148
753
|
"hasDynamicHelp": false,
|
|
149
754
|
"multiple": false,
|
|
150
755
|
"type": "option"
|
|
@@ -152,23 +757,30 @@
|
|
|
152
757
|
},
|
|
153
758
|
"hasDynamicHelp": false,
|
|
154
759
|
"hiddenAliases": [],
|
|
155
|
-
"id": "
|
|
760
|
+
"id": "object:put",
|
|
156
761
|
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
157
762
|
"pluginName": "@liquidmetal-ai/raindrop",
|
|
158
763
|
"pluginType": "core",
|
|
159
764
|
"strict": true,
|
|
160
765
|
"enableJsonFlag": false,
|
|
766
|
+
"baseArgs": {},
|
|
161
767
|
"isESM": true,
|
|
162
768
|
"relativePath": [
|
|
163
769
|
"dist",
|
|
164
770
|
"commands",
|
|
165
|
-
"
|
|
166
|
-
"
|
|
771
|
+
"object",
|
|
772
|
+
"put.js"
|
|
167
773
|
]
|
|
168
774
|
},
|
|
169
775
|
"build:branch": {
|
|
170
776
|
"aliases": [],
|
|
171
|
-
"args": {
|
|
777
|
+
"args": {
|
|
778
|
+
"branch": {
|
|
779
|
+
"description": "branch name",
|
|
780
|
+
"name": "branch",
|
|
781
|
+
"required": true
|
|
782
|
+
}
|
|
783
|
+
},
|
|
172
784
|
"description": "create a new branch in the Raindrop catalog",
|
|
173
785
|
"examples": [
|
|
174
786
|
"<%= config.bin %> <%= command.id %> .\nCreated new branch 1234\n"
|
|
@@ -205,33 +817,35 @@
|
|
|
205
817
|
"multiple": false,
|
|
206
818
|
"type": "option"
|
|
207
819
|
},
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
"char": "p",
|
|
213
|
-
"description": "previous version ID",
|
|
214
|
-
"exclusive": [
|
|
215
|
-
"select"
|
|
216
|
-
],
|
|
217
|
-
"name": "previousVersionId",
|
|
820
|
+
"output": {
|
|
821
|
+
"char": "o",
|
|
822
|
+
"description": "output directory",
|
|
823
|
+
"name": "output",
|
|
218
824
|
"required": false,
|
|
825
|
+
"default": "dist",
|
|
219
826
|
"hasDynamicHelp": false,
|
|
220
827
|
"multiple": false,
|
|
221
828
|
"type": "option"
|
|
222
829
|
},
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
|
|
226
|
-
"exclusive": [
|
|
227
|
-
"previousVersionId"
|
|
830
|
+
"versionId": {
|
|
831
|
+
"aliases": [
|
|
832
|
+
"version"
|
|
228
833
|
],
|
|
229
|
-
"
|
|
834
|
+
"char": "p",
|
|
835
|
+
"description": "Branch from this version",
|
|
836
|
+
"name": "versionId",
|
|
230
837
|
"required": false,
|
|
231
838
|
"hasDynamicHelp": false,
|
|
232
839
|
"multiple": false,
|
|
233
840
|
"type": "option"
|
|
234
841
|
},
|
|
842
|
+
"start": {
|
|
843
|
+
"description": "Start the application",
|
|
844
|
+
"name": "start",
|
|
845
|
+
"required": false,
|
|
846
|
+
"allowNo": false,
|
|
847
|
+
"type": "boolean"
|
|
848
|
+
},
|
|
235
849
|
"impersonate": {
|
|
236
850
|
"char": "i",
|
|
237
851
|
"description": "impersonate organization",
|
|
@@ -276,6 +890,7 @@
|
|
|
276
890
|
"pluginType": "core",
|
|
277
891
|
"strict": true,
|
|
278
892
|
"enableJsonFlag": false,
|
|
893
|
+
"baseArgs": {},
|
|
279
894
|
"isESM": true,
|
|
280
895
|
"relativePath": [
|
|
281
896
|
"dist",
|
|
@@ -284,6 +899,77 @@
|
|
|
284
899
|
"branch.js"
|
|
285
900
|
]
|
|
286
901
|
},
|
|
902
|
+
"build:checkout": {
|
|
903
|
+
"aliases": [],
|
|
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",
|
|
912
|
+
"examples": [
|
|
913
|
+
"<%= config.bin %> <%= command.id %>\nCurrently on version: 01jac6p20m4gahn1kaa2mhm2js\n\n<%= config.bin %> <%= command.id %> 01jux6z20m4gbhn5kaa4mcm2jr\nSwitched to version: 01jux6z20m4gbhn5kaa4mcm2jr\n"
|
|
914
|
+
],
|
|
915
|
+
"flags": {
|
|
916
|
+
"config": {
|
|
917
|
+
"char": "c",
|
|
918
|
+
"description": "config file",
|
|
919
|
+
"hidden": true,
|
|
920
|
+
"name": "config",
|
|
921
|
+
"required": false,
|
|
922
|
+
"default": ".raindrop/config.json",
|
|
923
|
+
"hasDynamicHelp": false,
|
|
924
|
+
"multiple": false,
|
|
925
|
+
"type": "option"
|
|
926
|
+
},
|
|
927
|
+
"output": {
|
|
928
|
+
"char": "o",
|
|
929
|
+
"description": "output format",
|
|
930
|
+
"name": "output",
|
|
931
|
+
"required": false,
|
|
932
|
+
"default": "text",
|
|
933
|
+
"hasDynamicHelp": false,
|
|
934
|
+
"multiple": false,
|
|
935
|
+
"type": "option"
|
|
936
|
+
},
|
|
937
|
+
"rainbowAuthService": {
|
|
938
|
+
"env": "LIQUIDMETAL_RAINBOW_AUTH_SERVICE",
|
|
939
|
+
"hidden": true,
|
|
940
|
+
"name": "rainbowAuthService",
|
|
941
|
+
"default": "https://liquidmetal.run/api/connect",
|
|
942
|
+
"hasDynamicHelp": false,
|
|
943
|
+
"multiple": false,
|
|
944
|
+
"type": "option"
|
|
945
|
+
},
|
|
946
|
+
"raindropCatalogService": {
|
|
947
|
+
"description": "URL of the catalog service",
|
|
948
|
+
"env": "RAINDROP_CATALOG_SERVICE",
|
|
949
|
+
"hidden": true,
|
|
950
|
+
"name": "raindropCatalogService",
|
|
951
|
+
"hasDynamicHelp": false,
|
|
952
|
+
"multiple": false,
|
|
953
|
+
"type": "option"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"hasDynamicHelp": false,
|
|
957
|
+
"hiddenAliases": [],
|
|
958
|
+
"id": "build:checkout",
|
|
959
|
+
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
960
|
+
"pluginName": "@liquidmetal-ai/raindrop",
|
|
961
|
+
"pluginType": "core",
|
|
962
|
+
"strict": true,
|
|
963
|
+
"enableJsonFlag": false,
|
|
964
|
+
"baseArgs": {},
|
|
965
|
+
"isESM": true,
|
|
966
|
+
"relativePath": [
|
|
967
|
+
"dist",
|
|
968
|
+
"commands",
|
|
969
|
+
"build",
|
|
970
|
+
"checkout.js"
|
|
971
|
+
]
|
|
972
|
+
},
|
|
287
973
|
"build:delete": {
|
|
288
974
|
"aliases": [],
|
|
289
975
|
"args": {
|
|
@@ -403,6 +1089,7 @@
|
|
|
403
1089
|
"pluginType": "core",
|
|
404
1090
|
"strict": true,
|
|
405
1091
|
"enableJsonFlag": false,
|
|
1092
|
+
"baseArgs": {},
|
|
406
1093
|
"isESM": true,
|
|
407
1094
|
"relativePath": [
|
|
408
1095
|
"dist",
|
|
@@ -525,6 +1212,7 @@
|
|
|
525
1212
|
"pluginType": "core",
|
|
526
1213
|
"strict": true,
|
|
527
1214
|
"enableJsonFlag": false,
|
|
1215
|
+
"baseArgs": {},
|
|
528
1216
|
"isESM": true,
|
|
529
1217
|
"relativePath": [
|
|
530
1218
|
"dist",
|
|
@@ -650,6 +1338,7 @@
|
|
|
650
1338
|
"pluginType": "core",
|
|
651
1339
|
"strict": true,
|
|
652
1340
|
"enableJsonFlag": false,
|
|
1341
|
+
"baseArgs": {},
|
|
653
1342
|
"isESM": true,
|
|
654
1343
|
"relativePath": [
|
|
655
1344
|
"dist",
|
|
@@ -715,6 +1404,7 @@
|
|
|
715
1404
|
"pluginType": "core",
|
|
716
1405
|
"strict": true,
|
|
717
1406
|
"enableJsonFlag": false,
|
|
1407
|
+
"baseArgs": {},
|
|
718
1408
|
"isESM": true,
|
|
719
1409
|
"relativePath": [
|
|
720
1410
|
"dist",
|
|
@@ -753,6 +1443,7 @@
|
|
|
753
1443
|
"pluginType": "core",
|
|
754
1444
|
"strict": true,
|
|
755
1445
|
"enableJsonFlag": false,
|
|
1446
|
+
"baseArgs": {},
|
|
756
1447
|
"isESM": true,
|
|
757
1448
|
"relativePath": [
|
|
758
1449
|
"dist",
|
|
@@ -769,18 +1460,9 @@
|
|
|
769
1460
|
"<%= config.bin %> <%= command.id %> .\nList Raindrop catalog resources.\n"
|
|
770
1461
|
],
|
|
771
1462
|
"flags": {
|
|
772
|
-
"type": {
|
|
773
|
-
"char": "t",
|
|
774
|
-
"description": "resource type",
|
|
775
|
-
"name": "type",
|
|
776
|
-
"default": "application",
|
|
777
|
-
"hasDynamicHelp": false,
|
|
778
|
-
"multiple": false,
|
|
779
|
-
"type": "option"
|
|
780
|
-
},
|
|
781
1463
|
"all": {
|
|
782
1464
|
"char": "a",
|
|
783
|
-
"description": "show
|
|
1465
|
+
"description": "show deleted resources",
|
|
784
1466
|
"name": "all",
|
|
785
1467
|
"allowNo": false,
|
|
786
1468
|
"type": "boolean"
|
|
@@ -795,7 +1477,8 @@
|
|
|
795
1477
|
"options": [
|
|
796
1478
|
"text",
|
|
797
1479
|
"table",
|
|
798
|
-
"json"
|
|
1480
|
+
"json",
|
|
1481
|
+
"log"
|
|
799
1482
|
],
|
|
800
1483
|
"type": "option"
|
|
801
1484
|
},
|
|
@@ -847,6 +1530,7 @@
|
|
|
847
1530
|
"pluginType": "core",
|
|
848
1531
|
"strict": true,
|
|
849
1532
|
"enableJsonFlag": false,
|
|
1533
|
+
"baseArgs": {},
|
|
850
1534
|
"isESM": true,
|
|
851
1535
|
"relativePath": [
|
|
852
1536
|
"dist",
|
|
@@ -922,6 +1606,7 @@
|
|
|
922
1606
|
"pluginType": "core",
|
|
923
1607
|
"strict": true,
|
|
924
1608
|
"enableJsonFlag": false,
|
|
1609
|
+
"baseArgs": {},
|
|
925
1610
|
"isESM": true,
|
|
926
1611
|
"relativePath": [
|
|
927
1612
|
"dist",
|
|
@@ -1024,6 +1709,7 @@
|
|
|
1024
1709
|
"pluginType": "core",
|
|
1025
1710
|
"strict": true,
|
|
1026
1711
|
"enableJsonFlag": false,
|
|
1712
|
+
"baseArgs": {},
|
|
1027
1713
|
"isESM": true,
|
|
1028
1714
|
"relativePath": [
|
|
1029
1715
|
"dist",
|
|
@@ -1035,7 +1721,7 @@
|
|
|
1035
1721
|
"build:status": {
|
|
1036
1722
|
"aliases": [],
|
|
1037
1723
|
"args": {},
|
|
1038
|
-
"description": "show the status of
|
|
1724
|
+
"description": "show the status of an application in Raindrop",
|
|
1039
1725
|
"examples": [
|
|
1040
1726
|
"<%= config.bin %> <%= command.id %> .\n"
|
|
1041
1727
|
],
|
|
@@ -1149,6 +1835,7 @@
|
|
|
1149
1835
|
"pluginType": "core",
|
|
1150
1836
|
"strict": true,
|
|
1151
1837
|
"enableJsonFlag": false,
|
|
1838
|
+
"baseArgs": {},
|
|
1152
1839
|
"isESM": true,
|
|
1153
1840
|
"relativePath": [
|
|
1154
1841
|
"dist",
|
|
@@ -1251,6 +1938,7 @@
|
|
|
1251
1938
|
"pluginType": "core",
|
|
1252
1939
|
"strict": true,
|
|
1253
1940
|
"enableJsonFlag": false,
|
|
1941
|
+
"baseArgs": {},
|
|
1254
1942
|
"isESM": true,
|
|
1255
1943
|
"relativePath": [
|
|
1256
1944
|
"dist",
|
|
@@ -1259,28 +1947,6 @@
|
|
|
1259
1947
|
"stop.js"
|
|
1260
1948
|
]
|
|
1261
1949
|
},
|
|
1262
|
-
"build:token": {
|
|
1263
|
-
"aliases": [],
|
|
1264
|
-
"args": {},
|
|
1265
|
-
"description": "generate a link to create a Cloudflare API token",
|
|
1266
|
-
"examples": [],
|
|
1267
|
-
"flags": {},
|
|
1268
|
-
"hasDynamicHelp": false,
|
|
1269
|
-
"hiddenAliases": [],
|
|
1270
|
-
"id": "build:token",
|
|
1271
|
-
"pluginAlias": "@liquidmetal-ai/raindrop",
|
|
1272
|
-
"pluginName": "@liquidmetal-ai/raindrop",
|
|
1273
|
-
"pluginType": "core",
|
|
1274
|
-
"strict": true,
|
|
1275
|
-
"enableJsonFlag": false,
|
|
1276
|
-
"isESM": true,
|
|
1277
|
-
"relativePath": [
|
|
1278
|
-
"dist",
|
|
1279
|
-
"commands",
|
|
1280
|
-
"build",
|
|
1281
|
-
"token.js"
|
|
1282
|
-
]
|
|
1283
|
-
},
|
|
1284
1950
|
"build:unsandbox": {
|
|
1285
1951
|
"aliases": [],
|
|
1286
1952
|
"args": {
|
|
@@ -1348,6 +2014,7 @@
|
|
|
1348
2014
|
"pluginType": "core",
|
|
1349
2015
|
"strict": true,
|
|
1350
2016
|
"enableJsonFlag": false,
|
|
2017
|
+
"baseArgs": {},
|
|
1351
2018
|
"isESM": true,
|
|
1352
2019
|
"relativePath": [
|
|
1353
2020
|
"dist",
|
|
@@ -1451,6 +2118,7 @@
|
|
|
1451
2118
|
"pluginType": "core",
|
|
1452
2119
|
"strict": true,
|
|
1453
2120
|
"enableJsonFlag": false,
|
|
2121
|
+
"baseArgs": {},
|
|
1454
2122
|
"isESM": true,
|
|
1455
2123
|
"relativePath": [
|
|
1456
2124
|
"dist",
|
|
@@ -1517,6 +2185,7 @@
|
|
|
1517
2185
|
"pluginType": "core",
|
|
1518
2186
|
"strict": true,
|
|
1519
2187
|
"enableJsonFlag": false,
|
|
2188
|
+
"baseArgs": {},
|
|
1520
2189
|
"isESM": true,
|
|
1521
2190
|
"relativePath": [
|
|
1522
2191
|
"dist",
|
|
@@ -1627,6 +2296,7 @@
|
|
|
1627
2296
|
"pluginType": "core",
|
|
1628
2297
|
"strict": true,
|
|
1629
2298
|
"enableJsonFlag": false,
|
|
2299
|
+
"baseArgs": {},
|
|
1630
2300
|
"isESM": true,
|
|
1631
2301
|
"relativePath": [
|
|
1632
2302
|
"dist",
|
|
@@ -1753,6 +2423,7 @@
|
|
|
1753
2423
|
"pluginType": "core",
|
|
1754
2424
|
"strict": true,
|
|
1755
2425
|
"enableJsonFlag": false,
|
|
2426
|
+
"baseArgs": {},
|
|
1756
2427
|
"isESM": true,
|
|
1757
2428
|
"relativePath": [
|
|
1758
2429
|
"dist",
|
|
@@ -1799,6 +2470,7 @@
|
|
|
1799
2470
|
"pluginType": "core",
|
|
1800
2471
|
"strict": true,
|
|
1801
2472
|
"enableJsonFlag": false,
|
|
2473
|
+
"baseArgs": {},
|
|
1802
2474
|
"isESM": true,
|
|
1803
2475
|
"relativePath": [
|
|
1804
2476
|
"dist",
|
|
@@ -1845,6 +2517,7 @@
|
|
|
1845
2517
|
"pluginType": "core",
|
|
1846
2518
|
"strict": true,
|
|
1847
2519
|
"enableJsonFlag": false,
|
|
2520
|
+
"baseArgs": {},
|
|
1848
2521
|
"isESM": true,
|
|
1849
2522
|
"relativePath": [
|
|
1850
2523
|
"dist",
|
|
@@ -1855,5 +2528,5 @@
|
|
|
1855
2528
|
]
|
|
1856
2529
|
}
|
|
1857
2530
|
},
|
|
1858
|
-
"version": "0.1
|
|
2531
|
+
"version": "0.2.1"
|
|
1859
2532
|
}
|