@xano/cli 0.0.6 → 0.0.8
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/oclif.manifest.json +331 -331
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -42,26 +42,26 @@
|
|
|
42
42
|
"index.js"
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
|
-
"profile:
|
|
45
|
+
"profile:edit": {
|
|
46
46
|
"aliases": [],
|
|
47
47
|
"args": {
|
|
48
48
|
"name": {
|
|
49
|
-
"description": "Profile name",
|
|
49
|
+
"description": "Profile name to edit",
|
|
50
50
|
"name": "name",
|
|
51
51
|
"required": true
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"description": "
|
|
54
|
+
"description": "Edit an existing profile configuration",
|
|
55
55
|
"examples": [
|
|
56
|
-
"$ xano profile:
|
|
57
|
-
"$ xano profile:
|
|
58
|
-
"$ xano profile:
|
|
59
|
-
"$ xano profile:
|
|
56
|
+
"$ xano profile:edit production --access_token new_token123\nProfile 'production' updated successfully at ~/.xano/credentials.yaml\n",
|
|
57
|
+
"$ xano profile:edit staging -i https://new-staging-instance.xano.com -t new_token456\nProfile 'staging' updated successfully at ~/.xano/credentials.yaml\n",
|
|
58
|
+
"$ xano profile:edit dev -w new-workspace -b new-branch\nProfile 'dev' updated successfully at ~/.xano/credentials.yaml\n",
|
|
59
|
+
"$ xano profile:edit dev --remove-workspace\nProfile 'dev' updated successfully at ~/.xano/credentials.yaml\n"
|
|
60
60
|
],
|
|
61
61
|
"flags": {
|
|
62
62
|
"account_origin": {
|
|
63
63
|
"char": "a",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "Update account origin URL",
|
|
65
65
|
"name": "account_origin",
|
|
66
66
|
"required": false,
|
|
67
67
|
"hasDynamicHelp": false,
|
|
@@ -70,25 +70,25 @@
|
|
|
70
70
|
},
|
|
71
71
|
"instance_origin": {
|
|
72
72
|
"char": "i",
|
|
73
|
-
"description": "
|
|
73
|
+
"description": "Update instance origin URL",
|
|
74
74
|
"name": "instance_origin",
|
|
75
|
-
"required":
|
|
75
|
+
"required": false,
|
|
76
76
|
"hasDynamicHelp": false,
|
|
77
77
|
"multiple": false,
|
|
78
78
|
"type": "option"
|
|
79
79
|
},
|
|
80
80
|
"access_token": {
|
|
81
81
|
"char": "t",
|
|
82
|
-
"description": "
|
|
82
|
+
"description": "Update access token for the Xano Metadata API",
|
|
83
83
|
"name": "access_token",
|
|
84
|
-
"required":
|
|
84
|
+
"required": false,
|
|
85
85
|
"hasDynamicHelp": false,
|
|
86
86
|
"multiple": false,
|
|
87
87
|
"type": "option"
|
|
88
88
|
},
|
|
89
89
|
"workspace": {
|
|
90
90
|
"char": "w",
|
|
91
|
-
"description": "
|
|
91
|
+
"description": "Update workspace name",
|
|
92
92
|
"name": "workspace",
|
|
93
93
|
"required": false,
|
|
94
94
|
"hasDynamicHelp": false,
|
|
@@ -97,16 +97,23 @@
|
|
|
97
97
|
},
|
|
98
98
|
"branch": {
|
|
99
99
|
"char": "b",
|
|
100
|
-
"description": "
|
|
100
|
+
"description": "Update branch name",
|
|
101
101
|
"name": "branch",
|
|
102
102
|
"required": false,
|
|
103
103
|
"hasDynamicHelp": false,
|
|
104
104
|
"multiple": false,
|
|
105
105
|
"type": "option"
|
|
106
106
|
},
|
|
107
|
-
"
|
|
108
|
-
"description": "
|
|
109
|
-
"name": "
|
|
107
|
+
"remove-workspace": {
|
|
108
|
+
"description": "Remove workspace from profile",
|
|
109
|
+
"name": "remove-workspace",
|
|
110
|
+
"required": false,
|
|
111
|
+
"allowNo": false,
|
|
112
|
+
"type": "boolean"
|
|
113
|
+
},
|
|
114
|
+
"remove-branch": {
|
|
115
|
+
"description": "Remove branch from profile",
|
|
116
|
+
"name": "remove-branch",
|
|
110
117
|
"required": false,
|
|
111
118
|
"allowNo": false,
|
|
112
119
|
"type": "boolean"
|
|
@@ -114,7 +121,7 @@
|
|
|
114
121
|
},
|
|
115
122
|
"hasDynamicHelp": false,
|
|
116
123
|
"hiddenAliases": [],
|
|
117
|
-
"id": "profile:
|
|
124
|
+
"id": "profile:edit",
|
|
118
125
|
"pluginAlias": "@xano/cli",
|
|
119
126
|
"pluginName": "@xano/cli",
|
|
120
127
|
"pluginType": "core",
|
|
@@ -125,30 +132,30 @@
|
|
|
125
132
|
"dist",
|
|
126
133
|
"commands",
|
|
127
134
|
"profile",
|
|
128
|
-
"
|
|
135
|
+
"edit",
|
|
129
136
|
"index.js"
|
|
130
137
|
]
|
|
131
138
|
},
|
|
132
|
-
"profile:
|
|
139
|
+
"profile:create": {
|
|
133
140
|
"aliases": [],
|
|
134
141
|
"args": {
|
|
135
142
|
"name": {
|
|
136
|
-
"description": "Profile name
|
|
143
|
+
"description": "Profile name",
|
|
137
144
|
"name": "name",
|
|
138
145
|
"required": true
|
|
139
146
|
}
|
|
140
147
|
},
|
|
141
|
-
"description": "
|
|
148
|
+
"description": "Create a new profile configuration",
|
|
142
149
|
"examples": [
|
|
143
|
-
"$ xano profile:
|
|
144
|
-
"$ xano profile:
|
|
145
|
-
"$ xano profile:
|
|
146
|
-
"$ xano profile:
|
|
150
|
+
"$ xano profile:create production --account_origin https://account.xano.com --instance_origin https://instance.xano.com --access_token token123\nProfile 'production' created successfully at ~/.xano/credentials.yaml\n",
|
|
151
|
+
"$ xano profile:create staging -a https://staging-account.xano.com -i https://staging-instance.xano.com -t token456\nProfile 'staging' created successfully at ~/.xano/credentials.yaml\n",
|
|
152
|
+
"$ xano profile:create dev -i https://dev-instance.xano.com -t token789 -w my-workspace -b feature-branch\nProfile 'dev' created successfully at ~/.xano/credentials.yaml\n",
|
|
153
|
+
"$ xano profile:create production --account_origin https://account.xano.com --instance_origin https://instance.xano.com --access_token token123 --default\nProfile 'production' created successfully at ~/.xano/credentials.yaml\nDefault profile set to 'production'\n"
|
|
147
154
|
],
|
|
148
155
|
"flags": {
|
|
149
156
|
"account_origin": {
|
|
150
157
|
"char": "a",
|
|
151
|
-
"description": "
|
|
158
|
+
"description": "Account origin URL. Optional for self hosted installs.",
|
|
152
159
|
"name": "account_origin",
|
|
153
160
|
"required": false,
|
|
154
161
|
"hasDynamicHelp": false,
|
|
@@ -157,25 +164,25 @@
|
|
|
157
164
|
},
|
|
158
165
|
"instance_origin": {
|
|
159
166
|
"char": "i",
|
|
160
|
-
"description": "
|
|
167
|
+
"description": "Instance origin URL",
|
|
161
168
|
"name": "instance_origin",
|
|
162
|
-
"required":
|
|
169
|
+
"required": true,
|
|
163
170
|
"hasDynamicHelp": false,
|
|
164
171
|
"multiple": false,
|
|
165
172
|
"type": "option"
|
|
166
173
|
},
|
|
167
174
|
"access_token": {
|
|
168
175
|
"char": "t",
|
|
169
|
-
"description": "
|
|
176
|
+
"description": "Access token for the Xano Metadata API",
|
|
170
177
|
"name": "access_token",
|
|
171
|
-
"required":
|
|
178
|
+
"required": true,
|
|
172
179
|
"hasDynamicHelp": false,
|
|
173
180
|
"multiple": false,
|
|
174
181
|
"type": "option"
|
|
175
182
|
},
|
|
176
183
|
"workspace": {
|
|
177
184
|
"char": "w",
|
|
178
|
-
"description": "
|
|
185
|
+
"description": "Workspace name",
|
|
179
186
|
"name": "workspace",
|
|
180
187
|
"required": false,
|
|
181
188
|
"hasDynamicHelp": false,
|
|
@@ -184,23 +191,16 @@
|
|
|
184
191
|
},
|
|
185
192
|
"branch": {
|
|
186
193
|
"char": "b",
|
|
187
|
-
"description": "
|
|
194
|
+
"description": "Branch name",
|
|
188
195
|
"name": "branch",
|
|
189
196
|
"required": false,
|
|
190
197
|
"hasDynamicHelp": false,
|
|
191
198
|
"multiple": false,
|
|
192
199
|
"type": "option"
|
|
193
200
|
},
|
|
194
|
-
"
|
|
195
|
-
"description": "
|
|
196
|
-
"name": "
|
|
197
|
-
"required": false,
|
|
198
|
-
"allowNo": false,
|
|
199
|
-
"type": "boolean"
|
|
200
|
-
},
|
|
201
|
-
"remove-branch": {
|
|
202
|
-
"description": "Remove branch from profile",
|
|
203
|
-
"name": "remove-branch",
|
|
201
|
+
"default": {
|
|
202
|
+
"description": "Set this profile as the default",
|
|
203
|
+
"name": "default",
|
|
204
204
|
"required": false,
|
|
205
205
|
"allowNo": false,
|
|
206
206
|
"type": "boolean"
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
},
|
|
209
209
|
"hasDynamicHelp": false,
|
|
210
210
|
"hiddenAliases": [],
|
|
211
|
-
"id": "profile:
|
|
211
|
+
"id": "profile:create",
|
|
212
212
|
"pluginAlias": "@xano/cli",
|
|
213
213
|
"pluginName": "@xano/cli",
|
|
214
214
|
"pluginType": "core",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
"dist",
|
|
220
220
|
"commands",
|
|
221
221
|
"profile",
|
|
222
|
-
"
|
|
222
|
+
"create",
|
|
223
223
|
"index.js"
|
|
224
224
|
]
|
|
225
225
|
},
|
|
@@ -249,38 +249,6 @@
|
|
|
249
249
|
"index.js"
|
|
250
250
|
]
|
|
251
251
|
},
|
|
252
|
-
"profile:set-default": {
|
|
253
|
-
"aliases": [],
|
|
254
|
-
"args": {
|
|
255
|
-
"name": {
|
|
256
|
-
"description": "Profile name to set as default",
|
|
257
|
-
"name": "name",
|
|
258
|
-
"required": true
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"description": "Set the default profile",
|
|
262
|
-
"examples": [
|
|
263
|
-
"$ xano profile:set-default production\nDefault profile set to 'production'\n",
|
|
264
|
-
"$ xano profile:set-default staging\nDefault profile set to 'staging'\n"
|
|
265
|
-
],
|
|
266
|
-
"flags": {},
|
|
267
|
-
"hasDynamicHelp": false,
|
|
268
|
-
"hiddenAliases": [],
|
|
269
|
-
"id": "profile:set-default",
|
|
270
|
-
"pluginAlias": "@xano/cli",
|
|
271
|
-
"pluginName": "@xano/cli",
|
|
272
|
-
"pluginType": "core",
|
|
273
|
-
"strict": true,
|
|
274
|
-
"enableJsonFlag": false,
|
|
275
|
-
"isESM": true,
|
|
276
|
-
"relativePath": [
|
|
277
|
-
"dist",
|
|
278
|
-
"commands",
|
|
279
|
-
"profile",
|
|
280
|
-
"set-default",
|
|
281
|
-
"index.js"
|
|
282
|
-
]
|
|
283
|
-
},
|
|
284
252
|
"profile:list": {
|
|
285
253
|
"aliases": [],
|
|
286
254
|
"args": {},
|
|
@@ -362,25 +330,49 @@
|
|
|
362
330
|
"index.js"
|
|
363
331
|
]
|
|
364
332
|
},
|
|
365
|
-
"
|
|
333
|
+
"profile:set-default": {
|
|
366
334
|
"aliases": [],
|
|
367
335
|
"args": {
|
|
368
|
-
"
|
|
369
|
-
"description": "
|
|
370
|
-
"name": "
|
|
371
|
-
"required":
|
|
336
|
+
"name": {
|
|
337
|
+
"description": "Profile name to set as default",
|
|
338
|
+
"name": "name",
|
|
339
|
+
"required": true
|
|
372
340
|
}
|
|
373
341
|
},
|
|
374
|
-
"description": "
|
|
342
|
+
"description": "Set the default profile",
|
|
375
343
|
"examples": [
|
|
376
|
-
"$ xano
|
|
377
|
-
"$ xano
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
344
|
+
"$ xano profile:set-default production\nDefault profile set to 'production'\n",
|
|
345
|
+
"$ xano profile:set-default staging\nDefault profile set to 'staging'\n"
|
|
346
|
+
],
|
|
347
|
+
"flags": {},
|
|
348
|
+
"hasDynamicHelp": false,
|
|
349
|
+
"hiddenAliases": [],
|
|
350
|
+
"id": "profile:set-default",
|
|
351
|
+
"pluginAlias": "@xano/cli",
|
|
352
|
+
"pluginName": "@xano/cli",
|
|
353
|
+
"pluginType": "core",
|
|
354
|
+
"strict": true,
|
|
355
|
+
"enableJsonFlag": false,
|
|
356
|
+
"isESM": true,
|
|
357
|
+
"relativePath": [
|
|
358
|
+
"dist",
|
|
359
|
+
"commands",
|
|
360
|
+
"profile",
|
|
361
|
+
"set-default",
|
|
362
|
+
"index.js"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"ephemeral:run:job": {
|
|
366
|
+
"aliases": [],
|
|
367
|
+
"args": {},
|
|
368
|
+
"description": "Run an ephemeral job in a workspace",
|
|
369
|
+
"examples": [
|
|
370
|
+
"$ xano ephemeral:run:job -w 1 -f script.xs\nJob executed successfully!\n...\n",
|
|
371
|
+
"$ xano ephemeral:run:job -f script.xs\nJob executed successfully!\n...\n",
|
|
372
|
+
"$ xano ephemeral:run:job -w 1 -f script.xs --edit\n# Opens script.xs in $EDITOR, then runs job with edited content\nJob executed successfully!\n...\n",
|
|
373
|
+
"$ cat script.xs | xano ephemeral:run:job -w 1 --stdin\nJob executed successfully!\n...\n",
|
|
374
|
+
"$ xano ephemeral:run:job -w 1 -f script.xs -o json\n{\n \"job\": { \"id\": 1, \"run\": { \"id\": 1 } },\n \"result\": { ... }\n}\n",
|
|
375
|
+
"$ xano ephemeral:run:job -w 1 -f script.xs -a args.json\n# Runs job with input arguments from args.json\nJob executed successfully!\n...\n"
|
|
384
376
|
],
|
|
385
377
|
"flags": {
|
|
386
378
|
"profile": {
|
|
@@ -427,19 +419,15 @@
|
|
|
427
419
|
},
|
|
428
420
|
"edit": {
|
|
429
421
|
"char": "e",
|
|
430
|
-
"
|
|
422
|
+
"dependsOn": [
|
|
423
|
+
"file"
|
|
424
|
+
],
|
|
425
|
+
"description": "Open file in editor before running job (requires --file)",
|
|
431
426
|
"name": "edit",
|
|
432
427
|
"required": false,
|
|
433
428
|
"allowNo": false,
|
|
434
429
|
"type": "boolean"
|
|
435
430
|
},
|
|
436
|
-
"publish": {
|
|
437
|
-
"description": "Publish the function after editing",
|
|
438
|
-
"name": "publish",
|
|
439
|
-
"required": false,
|
|
440
|
-
"allowNo": false,
|
|
441
|
-
"type": "boolean"
|
|
442
|
-
},
|
|
443
431
|
"output": {
|
|
444
432
|
"char": "o",
|
|
445
433
|
"description": "Output format",
|
|
@@ -453,11 +441,20 @@
|
|
|
453
441
|
"json"
|
|
454
442
|
],
|
|
455
443
|
"type": "option"
|
|
444
|
+
},
|
|
445
|
+
"args": {
|
|
446
|
+
"char": "a",
|
|
447
|
+
"description": "Path to JSON file containing input arguments",
|
|
448
|
+
"name": "args",
|
|
449
|
+
"required": false,
|
|
450
|
+
"hasDynamicHelp": false,
|
|
451
|
+
"multiple": false,
|
|
452
|
+
"type": "option"
|
|
456
453
|
}
|
|
457
454
|
},
|
|
458
455
|
"hasDynamicHelp": false,
|
|
459
456
|
"hiddenAliases": [],
|
|
460
|
-
"id": "
|
|
457
|
+
"id": "ephemeral:run:job",
|
|
461
458
|
"pluginAlias": "@xano/cli",
|
|
462
459
|
"pluginName": "@xano/cli",
|
|
463
460
|
"pluginType": "core",
|
|
@@ -467,28 +464,22 @@
|
|
|
467
464
|
"relativePath": [
|
|
468
465
|
"dist",
|
|
469
466
|
"commands",
|
|
470
|
-
"
|
|
471
|
-
"
|
|
467
|
+
"ephemeral",
|
|
468
|
+
"run",
|
|
469
|
+
"job",
|
|
472
470
|
"index.js"
|
|
473
471
|
]
|
|
474
472
|
},
|
|
475
|
-
"
|
|
473
|
+
"ephemeral:run:service": {
|
|
476
474
|
"aliases": [],
|
|
477
|
-
"args": {
|
|
478
|
-
|
|
479
|
-
"description": "Function ID",
|
|
480
|
-
"name": "function_id",
|
|
481
|
-
"required": false
|
|
482
|
-
}
|
|
483
|
-
},
|
|
484
|
-
"description": "Get a specific function from a workspace",
|
|
475
|
+
"args": {},
|
|
476
|
+
"description": "Run an ephemeral service in a workspace",
|
|
485
477
|
"examples": [
|
|
486
|
-
"$ xano
|
|
487
|
-
"$ xano
|
|
488
|
-
"$ xano
|
|
489
|
-
"$ xano
|
|
490
|
-
"$ xano
|
|
491
|
-
"$ xano function:get 145 -p staging -o xs\nfunction yo {\n input {\n }\n stack {\n }\n response = null\n}\n"
|
|
478
|
+
"$ xano ephemeral:run:service -w 1 -f service.xs\nService created successfully!\n...\n",
|
|
479
|
+
"$ xano ephemeral:run:service -f service.xs\nService created successfully!\n...\n",
|
|
480
|
+
"$ xano ephemeral:run:service -w 1 -f service.xs --edit\n# Opens service.xs in $EDITOR, then creates service with edited content\nService created successfully!\n...\n",
|
|
481
|
+
"$ cat service.xs | xano ephemeral:run:service -w 1 --stdin\nService created successfully!\n...\n",
|
|
482
|
+
"$ xano ephemeral:run:service -w 1 -f service.xs -o json\n{\n \"service\": { \"id\": 1 },\n ...\n}\n"
|
|
492
483
|
],
|
|
493
484
|
"flags": {
|
|
494
485
|
"profile": {
|
|
@@ -510,82 +501,39 @@
|
|
|
510
501
|
"multiple": false,
|
|
511
502
|
"type": "option"
|
|
512
503
|
},
|
|
513
|
-
"
|
|
514
|
-
"char": "
|
|
515
|
-
"description": "
|
|
516
|
-
"
|
|
504
|
+
"file": {
|
|
505
|
+
"char": "f",
|
|
506
|
+
"description": "Path to file containing XanoScript code",
|
|
507
|
+
"exclusive": [
|
|
508
|
+
"stdin"
|
|
509
|
+
],
|
|
510
|
+
"name": "file",
|
|
517
511
|
"required": false,
|
|
518
|
-
"default": "summary",
|
|
519
512
|
"hasDynamicHelp": false,
|
|
520
513
|
"multiple": false,
|
|
521
|
-
"options": [
|
|
522
|
-
"summary",
|
|
523
|
-
"json",
|
|
524
|
-
"xs"
|
|
525
|
-
],
|
|
526
514
|
"type": "option"
|
|
527
515
|
},
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
"
|
|
516
|
+
"stdin": {
|
|
517
|
+
"char": "s",
|
|
518
|
+
"description": "Read XanoScript code from stdin",
|
|
519
|
+
"exclusive": [
|
|
520
|
+
"file"
|
|
521
|
+
],
|
|
522
|
+
"name": "stdin",
|
|
531
523
|
"required": false,
|
|
532
524
|
"allowNo": false,
|
|
533
525
|
"type": "boolean"
|
|
534
526
|
},
|
|
535
|
-
"
|
|
536
|
-
"
|
|
537
|
-
"
|
|
538
|
-
|
|
527
|
+
"edit": {
|
|
528
|
+
"char": "e",
|
|
529
|
+
"dependsOn": [
|
|
530
|
+
"file"
|
|
531
|
+
],
|
|
532
|
+
"description": "Open file in editor before running service (requires --file)",
|
|
533
|
+
"name": "edit",
|
|
534
|
+
"required": false,
|
|
539
535
|
"allowNo": false,
|
|
540
536
|
"type": "boolean"
|
|
541
|
-
}
|
|
542
|
-
},
|
|
543
|
-
"hasDynamicHelp": false,
|
|
544
|
-
"hiddenAliases": [],
|
|
545
|
-
"id": "function:get",
|
|
546
|
-
"pluginAlias": "@xano/cli",
|
|
547
|
-
"pluginName": "@xano/cli",
|
|
548
|
-
"pluginType": "core",
|
|
549
|
-
"strict": true,
|
|
550
|
-
"enableJsonFlag": false,
|
|
551
|
-
"isESM": true,
|
|
552
|
-
"relativePath": [
|
|
553
|
-
"dist",
|
|
554
|
-
"commands",
|
|
555
|
-
"function",
|
|
556
|
-
"get",
|
|
557
|
-
"index.js"
|
|
558
|
-
]
|
|
559
|
-
},
|
|
560
|
-
"function:list": {
|
|
561
|
-
"aliases": [],
|
|
562
|
-
"args": {},
|
|
563
|
-
"description": "List all functions in a workspace from the Xano Metadata API",
|
|
564
|
-
"examples": [
|
|
565
|
-
"$ xano function:list -w 40\nAvailable functions:\n - function-1 (ID: 1)\n - function-2 (ID: 2)\n - function-3 (ID: 3)\n",
|
|
566
|
-
"$ xano function:list --profile production\nAvailable functions:\n - my-function (ID: 1)\n - another-function (ID: 2)\n",
|
|
567
|
-
"$ xano function:list -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"function-1\"\n }\n]\n",
|
|
568
|
-
"$ xano function:list -p staging -o json --include_draft\n[\n {\n \"id\": 1,\n \"name\": \"function-1\"\n }\n]\n"
|
|
569
|
-
],
|
|
570
|
-
"flags": {
|
|
571
|
-
"profile": {
|
|
572
|
-
"char": "p",
|
|
573
|
-
"description": "Profile to use for this command",
|
|
574
|
-
"env": "XANO_PROFILE",
|
|
575
|
-
"name": "profile",
|
|
576
|
-
"required": false,
|
|
577
|
-
"hasDynamicHelp": false,
|
|
578
|
-
"multiple": false,
|
|
579
|
-
"type": "option"
|
|
580
|
-
},
|
|
581
|
-
"workspace": {
|
|
582
|
-
"char": "w",
|
|
583
|
-
"description": "Workspace ID (optional if set in profile)",
|
|
584
|
-
"name": "workspace",
|
|
585
|
-
"required": false,
|
|
586
|
-
"hasDynamicHelp": false,
|
|
587
|
-
"multiple": false,
|
|
588
|
-
"type": "option"
|
|
589
537
|
},
|
|
590
538
|
"output": {
|
|
591
539
|
"char": "o",
|
|
@@ -600,65 +548,11 @@
|
|
|
600
548
|
"json"
|
|
601
549
|
],
|
|
602
550
|
"type": "option"
|
|
603
|
-
},
|
|
604
|
-
"include_draft": {
|
|
605
|
-
"description": "Include draft functions",
|
|
606
|
-
"name": "include_draft",
|
|
607
|
-
"required": false,
|
|
608
|
-
"allowNo": false,
|
|
609
|
-
"type": "boolean"
|
|
610
|
-
},
|
|
611
|
-
"include_xanoscript": {
|
|
612
|
-
"description": "Include XanoScript in response",
|
|
613
|
-
"name": "include_xanoscript",
|
|
614
|
-
"required": false,
|
|
615
|
-
"allowNo": false,
|
|
616
|
-
"type": "boolean"
|
|
617
|
-
},
|
|
618
|
-
"page": {
|
|
619
|
-
"description": "Page number for pagination",
|
|
620
|
-
"name": "page",
|
|
621
|
-
"required": false,
|
|
622
|
-
"default": 1,
|
|
623
|
-
"hasDynamicHelp": false,
|
|
624
|
-
"multiple": false,
|
|
625
|
-
"type": "option"
|
|
626
|
-
},
|
|
627
|
-
"per_page": {
|
|
628
|
-
"description": "Number of results per page",
|
|
629
|
-
"name": "per_page",
|
|
630
|
-
"required": false,
|
|
631
|
-
"default": 50,
|
|
632
|
-
"hasDynamicHelp": false,
|
|
633
|
-
"multiple": false,
|
|
634
|
-
"type": "option"
|
|
635
|
-
},
|
|
636
|
-
"sort": {
|
|
637
|
-
"description": "Sort field",
|
|
638
|
-
"name": "sort",
|
|
639
|
-
"required": false,
|
|
640
|
-
"default": "created_at",
|
|
641
|
-
"hasDynamicHelp": false,
|
|
642
|
-
"multiple": false,
|
|
643
|
-
"type": "option"
|
|
644
|
-
},
|
|
645
|
-
"order": {
|
|
646
|
-
"description": "Sort order",
|
|
647
|
-
"name": "order",
|
|
648
|
-
"required": false,
|
|
649
|
-
"default": "desc",
|
|
650
|
-
"hasDynamicHelp": false,
|
|
651
|
-
"multiple": false,
|
|
652
|
-
"options": [
|
|
653
|
-
"asc",
|
|
654
|
-
"desc"
|
|
655
|
-
],
|
|
656
|
-
"type": "option"
|
|
657
551
|
}
|
|
658
552
|
},
|
|
659
553
|
"hasDynamicHelp": false,
|
|
660
554
|
"hiddenAliases": [],
|
|
661
|
-
"id": "
|
|
555
|
+
"id": "ephemeral:run:service",
|
|
662
556
|
"pluginAlias": "@xano/cli",
|
|
663
557
|
"pluginName": "@xano/cli",
|
|
664
558
|
"pluginType": "core",
|
|
@@ -668,22 +562,22 @@
|
|
|
668
562
|
"relativePath": [
|
|
669
563
|
"dist",
|
|
670
564
|
"commands",
|
|
671
|
-
"
|
|
672
|
-
"
|
|
565
|
+
"ephemeral",
|
|
566
|
+
"run",
|
|
567
|
+
"service",
|
|
673
568
|
"index.js"
|
|
674
569
|
]
|
|
675
570
|
},
|
|
676
|
-
"
|
|
571
|
+
"function:create": {
|
|
677
572
|
"aliases": [],
|
|
678
573
|
"args": {},
|
|
679
|
-
"description": "
|
|
574
|
+
"description": "Create a new function in a workspace",
|
|
680
575
|
"examples": [
|
|
681
|
-
"$ xano
|
|
682
|
-
"$ xano
|
|
683
|
-
"$ xano
|
|
684
|
-
"$ cat
|
|
685
|
-
"$ xano
|
|
686
|
-
"$ xano ephemeral:run:job -w 1 -f script.xs -a args.json\n# Runs job with input arguments from args.json\nJob executed successfully!\n...\n"
|
|
576
|
+
"$ xano function:create -w 40 -f function.xs\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
577
|
+
"$ xano function:create -f function.xs\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
578
|
+
"$ xano function:create -w 40 -f function.xs --edit\n# Opens function.xs in $EDITOR, then creates function with edited content\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
579
|
+
"$ cat function.xs | xano function:create -w 40 --stdin\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
580
|
+
"$ xano function:create -w 40 -f function.xs -o json\n{\n \"id\": 123,\n \"name\": \"my_function\",\n ...\n}\n"
|
|
687
581
|
],
|
|
688
582
|
"flags": {
|
|
689
583
|
"profile": {
|
|
@@ -733,7 +627,7 @@
|
|
|
733
627
|
"dependsOn": [
|
|
734
628
|
"file"
|
|
735
629
|
],
|
|
736
|
-
"description": "Open file in editor before
|
|
630
|
+
"description": "Open file in editor before creating function (requires --file)",
|
|
737
631
|
"name": "edit",
|
|
738
632
|
"required": false,
|
|
739
633
|
"allowNo": false,
|
|
@@ -752,20 +646,11 @@
|
|
|
752
646
|
"json"
|
|
753
647
|
],
|
|
754
648
|
"type": "option"
|
|
755
|
-
},
|
|
756
|
-
"args": {
|
|
757
|
-
"char": "a",
|
|
758
|
-
"description": "Path to JSON file containing input arguments",
|
|
759
|
-
"name": "args",
|
|
760
|
-
"required": false,
|
|
761
|
-
"hasDynamicHelp": false,
|
|
762
|
-
"multiple": false,
|
|
763
|
-
"type": "option"
|
|
764
649
|
}
|
|
765
650
|
},
|
|
766
651
|
"hasDynamicHelp": false,
|
|
767
652
|
"hiddenAliases": [],
|
|
768
|
-
"id": "
|
|
653
|
+
"id": "function:create",
|
|
769
654
|
"pluginAlias": "@xano/cli",
|
|
770
655
|
"pluginName": "@xano/cli",
|
|
771
656
|
"pluginType": "core",
|
|
@@ -775,22 +660,30 @@
|
|
|
775
660
|
"relativePath": [
|
|
776
661
|
"dist",
|
|
777
662
|
"commands",
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"job",
|
|
663
|
+
"function",
|
|
664
|
+
"create",
|
|
781
665
|
"index.js"
|
|
782
666
|
]
|
|
783
667
|
},
|
|
784
|
-
"
|
|
668
|
+
"function:edit": {
|
|
785
669
|
"aliases": [],
|
|
786
|
-
"args": {
|
|
787
|
-
|
|
670
|
+
"args": {
|
|
671
|
+
"function_id": {
|
|
672
|
+
"description": "Function ID to edit",
|
|
673
|
+
"name": "function_id",
|
|
674
|
+
"required": false
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"description": "Edit a function in a workspace",
|
|
788
678
|
"examples": [
|
|
789
|
-
"$ xano
|
|
790
|
-
"$ xano
|
|
791
|
-
"$ xano
|
|
792
|
-
"$
|
|
793
|
-
"$ xano
|
|
679
|
+
"$ xano function:edit 163\n# Fetches the function code and opens it in $EDITOR for editing\nFunction updated successfully!\nID: 163\nName: my_function\n",
|
|
680
|
+
"$ xano function:edit\n# Prompts for function, fetches the code and opens it in $EDITOR for editing\nSelect a function to edit:\n ❯ my_function (ID: 163) - Sample function\n another-func (ID: 164)\n",
|
|
681
|
+
"$ xano function:edit 163 -f function.xs\nFunction updated successfully!\nID: 163\nName: my_function\n",
|
|
682
|
+
"$ xano function:edit 163 -w 40 -f function.xs\nFunction updated successfully!\nID: 163\nName: my_function\n",
|
|
683
|
+
"$ xano function:edit -f function.xs\nSelect a function to edit:\n ❯ my_function (ID: 163) - Sample function\n another-func (ID: 164)\n",
|
|
684
|
+
"$ xano function:edit 163 -f function.xs --edit\n# Opens function.xs in $EDITOR, then updates function with edited content\nFunction updated successfully!\nID: 163\nName: my_function\n",
|
|
685
|
+
"$ cat function.xs | xano function:edit 163 --stdin\nFunction updated successfully!\nID: 163\nName: my_function\n",
|
|
686
|
+
"$ xano function:edit 163 -f function.xs -o json\n{\n \"id\": 163,\n \"name\": \"my_function\",\n ...\n}\n"
|
|
794
687
|
],
|
|
795
688
|
"flags": {
|
|
796
689
|
"profile": {
|
|
@@ -837,15 +730,19 @@
|
|
|
837
730
|
},
|
|
838
731
|
"edit": {
|
|
839
732
|
"char": "e",
|
|
840
|
-
"
|
|
841
|
-
"file"
|
|
842
|
-
],
|
|
843
|
-
"description": "Open file in editor before running service (requires --file)",
|
|
733
|
+
"description": "Open file in editor before updating function (requires --file)",
|
|
844
734
|
"name": "edit",
|
|
845
735
|
"required": false,
|
|
846
736
|
"allowNo": false,
|
|
847
737
|
"type": "boolean"
|
|
848
738
|
},
|
|
739
|
+
"publish": {
|
|
740
|
+
"description": "Publish the function after editing",
|
|
741
|
+
"name": "publish",
|
|
742
|
+
"required": false,
|
|
743
|
+
"allowNo": false,
|
|
744
|
+
"type": "boolean"
|
|
745
|
+
},
|
|
849
746
|
"output": {
|
|
850
747
|
"char": "o",
|
|
851
748
|
"description": "Output format",
|
|
@@ -863,7 +760,7 @@
|
|
|
863
760
|
},
|
|
864
761
|
"hasDynamicHelp": false,
|
|
865
762
|
"hiddenAliases": [],
|
|
866
|
-
"id": "
|
|
763
|
+
"id": "function:edit",
|
|
867
764
|
"pluginAlias": "@xano/cli",
|
|
868
765
|
"pluginName": "@xano/cli",
|
|
869
766
|
"pluginType": "core",
|
|
@@ -873,22 +770,28 @@
|
|
|
873
770
|
"relativePath": [
|
|
874
771
|
"dist",
|
|
875
772
|
"commands",
|
|
876
|
-
"
|
|
877
|
-
"
|
|
878
|
-
"service",
|
|
773
|
+
"function",
|
|
774
|
+
"edit",
|
|
879
775
|
"index.js"
|
|
880
776
|
]
|
|
881
777
|
},
|
|
882
|
-
"function:
|
|
778
|
+
"function:get": {
|
|
883
779
|
"aliases": [],
|
|
884
|
-
"args": {
|
|
885
|
-
|
|
780
|
+
"args": {
|
|
781
|
+
"function_id": {
|
|
782
|
+
"description": "Function ID",
|
|
783
|
+
"name": "function_id",
|
|
784
|
+
"required": false
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
"description": "Get a specific function from a workspace",
|
|
886
788
|
"examples": [
|
|
887
|
-
"$ xano function:
|
|
888
|
-
"$ xano function:
|
|
889
|
-
"$ xano function:
|
|
890
|
-
"$
|
|
891
|
-
"$ xano function:
|
|
789
|
+
"$ xano function:get 145 -w 40\nFunction: yo (ID: 145)\nCreated: 2025-10-10 10:30:00\nDescription: Sample function\n",
|
|
790
|
+
"$ xano function:get 145 --profile production\nFunction: yo (ID: 145)\nCreated: 2025-10-10 10:30:00\n",
|
|
791
|
+
"$ xano function:get\nSelect a function:\n ❯ yo (ID: 145) - Sample function\n another-func (ID: 146)\n",
|
|
792
|
+
"$ xano function:get 145 -w 40 --output json\n{\n \"id\": 145,\n \"name\": \"yo\",\n \"description\": \"Sample function\"\n}\n",
|
|
793
|
+
"$ xano function:get 145 -p staging -o json --include_draft\n{\n \"id\": 145,\n \"name\": \"yo\"\n}\n",
|
|
794
|
+
"$ xano function:get 145 -p staging -o xs\nfunction yo {\n input {\n }\n stack {\n }\n response = null\n}\n"
|
|
892
795
|
],
|
|
893
796
|
"flags": {
|
|
894
797
|
"profile": {
|
|
@@ -910,40 +813,6 @@
|
|
|
910
813
|
"multiple": false,
|
|
911
814
|
"type": "option"
|
|
912
815
|
},
|
|
913
|
-
"file": {
|
|
914
|
-
"char": "f",
|
|
915
|
-
"description": "Path to file containing XanoScript code",
|
|
916
|
-
"exclusive": [
|
|
917
|
-
"stdin"
|
|
918
|
-
],
|
|
919
|
-
"name": "file",
|
|
920
|
-
"required": false,
|
|
921
|
-
"hasDynamicHelp": false,
|
|
922
|
-
"multiple": false,
|
|
923
|
-
"type": "option"
|
|
924
|
-
},
|
|
925
|
-
"stdin": {
|
|
926
|
-
"char": "s",
|
|
927
|
-
"description": "Read XanoScript code from stdin",
|
|
928
|
-
"exclusive": [
|
|
929
|
-
"file"
|
|
930
|
-
],
|
|
931
|
-
"name": "stdin",
|
|
932
|
-
"required": false,
|
|
933
|
-
"allowNo": false,
|
|
934
|
-
"type": "boolean"
|
|
935
|
-
},
|
|
936
|
-
"edit": {
|
|
937
|
-
"char": "e",
|
|
938
|
-
"dependsOn": [
|
|
939
|
-
"file"
|
|
940
|
-
],
|
|
941
|
-
"description": "Open file in editor before creating function (requires --file)",
|
|
942
|
-
"name": "edit",
|
|
943
|
-
"required": false,
|
|
944
|
-
"allowNo": false,
|
|
945
|
-
"type": "boolean"
|
|
946
|
-
},
|
|
947
816
|
"output": {
|
|
948
817
|
"char": "o",
|
|
949
818
|
"description": "Output format",
|
|
@@ -954,14 +823,29 @@
|
|
|
954
823
|
"multiple": false,
|
|
955
824
|
"options": [
|
|
956
825
|
"summary",
|
|
957
|
-
"json"
|
|
826
|
+
"json",
|
|
827
|
+
"xs"
|
|
958
828
|
],
|
|
959
829
|
"type": "option"
|
|
830
|
+
},
|
|
831
|
+
"include_draft": {
|
|
832
|
+
"description": "Include draft version",
|
|
833
|
+
"name": "include_draft",
|
|
834
|
+
"required": false,
|
|
835
|
+
"allowNo": false,
|
|
836
|
+
"type": "boolean"
|
|
837
|
+
},
|
|
838
|
+
"include_xanoscript": {
|
|
839
|
+
"description": "Include XanoScript in response",
|
|
840
|
+
"name": "include_xanoscript",
|
|
841
|
+
"required": false,
|
|
842
|
+
"allowNo": false,
|
|
843
|
+
"type": "boolean"
|
|
960
844
|
}
|
|
961
845
|
},
|
|
962
846
|
"hasDynamicHelp": false,
|
|
963
847
|
"hiddenAliases": [],
|
|
964
|
-
"id": "function:
|
|
848
|
+
"id": "function:get",
|
|
965
849
|
"pluginAlias": "@xano/cli",
|
|
966
850
|
"pluginName": "@xano/cli",
|
|
967
851
|
"pluginType": "core",
|
|
@@ -972,19 +856,19 @@
|
|
|
972
856
|
"dist",
|
|
973
857
|
"commands",
|
|
974
858
|
"function",
|
|
975
|
-
"
|
|
859
|
+
"get",
|
|
976
860
|
"index.js"
|
|
977
861
|
]
|
|
978
862
|
},
|
|
979
|
-
"
|
|
863
|
+
"function:list": {
|
|
980
864
|
"aliases": [],
|
|
981
865
|
"args": {},
|
|
982
|
-
"description": "List all
|
|
866
|
+
"description": "List all functions in a workspace from the Xano Metadata API",
|
|
983
867
|
"examples": [
|
|
984
|
-
"$ xano
|
|
985
|
-
"$ xano
|
|
986
|
-
"$ xano
|
|
987
|
-
"$ xano
|
|
868
|
+
"$ xano function:list -w 40\nAvailable functions:\n - function-1 (ID: 1)\n - function-2 (ID: 2)\n - function-3 (ID: 3)\n",
|
|
869
|
+
"$ xano function:list --profile production\nAvailable functions:\n - my-function (ID: 1)\n - another-function (ID: 2)\n",
|
|
870
|
+
"$ xano function:list -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"function-1\"\n }\n]\n",
|
|
871
|
+
"$ xano function:list -p staging -o json --include_draft\n[\n {\n \"id\": 1,\n \"name\": \"function-1\"\n }\n]\n"
|
|
988
872
|
],
|
|
989
873
|
"flags": {
|
|
990
874
|
"profile": {
|
|
@@ -1020,6 +904,20 @@
|
|
|
1020
904
|
],
|
|
1021
905
|
"type": "option"
|
|
1022
906
|
},
|
|
907
|
+
"include_draft": {
|
|
908
|
+
"description": "Include draft functions",
|
|
909
|
+
"name": "include_draft",
|
|
910
|
+
"required": false,
|
|
911
|
+
"allowNo": false,
|
|
912
|
+
"type": "boolean"
|
|
913
|
+
},
|
|
914
|
+
"include_xanoscript": {
|
|
915
|
+
"description": "Include XanoScript in response",
|
|
916
|
+
"name": "include_xanoscript",
|
|
917
|
+
"required": false,
|
|
918
|
+
"allowNo": false,
|
|
919
|
+
"type": "boolean"
|
|
920
|
+
},
|
|
1023
921
|
"page": {
|
|
1024
922
|
"description": "Page number for pagination",
|
|
1025
923
|
"name": "page",
|
|
@@ -1037,11 +935,33 @@
|
|
|
1037
935
|
"hasDynamicHelp": false,
|
|
1038
936
|
"multiple": false,
|
|
1039
937
|
"type": "option"
|
|
938
|
+
},
|
|
939
|
+
"sort": {
|
|
940
|
+
"description": "Sort field",
|
|
941
|
+
"name": "sort",
|
|
942
|
+
"required": false,
|
|
943
|
+
"default": "created_at",
|
|
944
|
+
"hasDynamicHelp": false,
|
|
945
|
+
"multiple": false,
|
|
946
|
+
"type": "option"
|
|
947
|
+
},
|
|
948
|
+
"order": {
|
|
949
|
+
"description": "Sort order",
|
|
950
|
+
"name": "order",
|
|
951
|
+
"required": false,
|
|
952
|
+
"default": "desc",
|
|
953
|
+
"hasDynamicHelp": false,
|
|
954
|
+
"multiple": false,
|
|
955
|
+
"options": [
|
|
956
|
+
"asc",
|
|
957
|
+
"desc"
|
|
958
|
+
],
|
|
959
|
+
"type": "option"
|
|
1040
960
|
}
|
|
1041
961
|
},
|
|
1042
962
|
"hasDynamicHelp": false,
|
|
1043
963
|
"hiddenAliases": [],
|
|
1044
|
-
"id": "
|
|
964
|
+
"id": "function:list",
|
|
1045
965
|
"pluginAlias": "@xano/cli",
|
|
1046
966
|
"pluginName": "@xano/cli",
|
|
1047
967
|
"pluginType": "core",
|
|
@@ -1051,7 +971,7 @@
|
|
|
1051
971
|
"relativePath": [
|
|
1052
972
|
"dist",
|
|
1053
973
|
"commands",
|
|
1054
|
-
"
|
|
974
|
+
"function",
|
|
1055
975
|
"list",
|
|
1056
976
|
"index.js"
|
|
1057
977
|
]
|
|
@@ -1109,6 +1029,86 @@
|
|
|
1109
1029
|
"index.js"
|
|
1110
1030
|
]
|
|
1111
1031
|
},
|
|
1032
|
+
"static_host:list": {
|
|
1033
|
+
"aliases": [],
|
|
1034
|
+
"args": {},
|
|
1035
|
+
"description": "List all static hosts in a workspace from the Xano Metadata API",
|
|
1036
|
+
"examples": [
|
|
1037
|
+
"$ xano static_host:list -w 40\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
1038
|
+
"$ xano static_host:list --profile production\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
1039
|
+
"$ xano static_host:list -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"my-static-host\",\n \"domain\": \"example.com\"\n }\n]\n",
|
|
1040
|
+
"$ xano static_host:list -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"static-host-3\"\n }\n]\n"
|
|
1041
|
+
],
|
|
1042
|
+
"flags": {
|
|
1043
|
+
"profile": {
|
|
1044
|
+
"char": "p",
|
|
1045
|
+
"description": "Profile to use for this command",
|
|
1046
|
+
"env": "XANO_PROFILE",
|
|
1047
|
+
"name": "profile",
|
|
1048
|
+
"required": false,
|
|
1049
|
+
"hasDynamicHelp": false,
|
|
1050
|
+
"multiple": false,
|
|
1051
|
+
"type": "option"
|
|
1052
|
+
},
|
|
1053
|
+
"workspace": {
|
|
1054
|
+
"char": "w",
|
|
1055
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
1056
|
+
"name": "workspace",
|
|
1057
|
+
"required": false,
|
|
1058
|
+
"hasDynamicHelp": false,
|
|
1059
|
+
"multiple": false,
|
|
1060
|
+
"type": "option"
|
|
1061
|
+
},
|
|
1062
|
+
"output": {
|
|
1063
|
+
"char": "o",
|
|
1064
|
+
"description": "Output format",
|
|
1065
|
+
"name": "output",
|
|
1066
|
+
"required": false,
|
|
1067
|
+
"default": "summary",
|
|
1068
|
+
"hasDynamicHelp": false,
|
|
1069
|
+
"multiple": false,
|
|
1070
|
+
"options": [
|
|
1071
|
+
"summary",
|
|
1072
|
+
"json"
|
|
1073
|
+
],
|
|
1074
|
+
"type": "option"
|
|
1075
|
+
},
|
|
1076
|
+
"page": {
|
|
1077
|
+
"description": "Page number for pagination",
|
|
1078
|
+
"name": "page",
|
|
1079
|
+
"required": false,
|
|
1080
|
+
"default": 1,
|
|
1081
|
+
"hasDynamicHelp": false,
|
|
1082
|
+
"multiple": false,
|
|
1083
|
+
"type": "option"
|
|
1084
|
+
},
|
|
1085
|
+
"per_page": {
|
|
1086
|
+
"description": "Number of results per page",
|
|
1087
|
+
"name": "per_page",
|
|
1088
|
+
"required": false,
|
|
1089
|
+
"default": 50,
|
|
1090
|
+
"hasDynamicHelp": false,
|
|
1091
|
+
"multiple": false,
|
|
1092
|
+
"type": "option"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"hasDynamicHelp": false,
|
|
1096
|
+
"hiddenAliases": [],
|
|
1097
|
+
"id": "static_host:list",
|
|
1098
|
+
"pluginAlias": "@xano/cli",
|
|
1099
|
+
"pluginName": "@xano/cli",
|
|
1100
|
+
"pluginType": "core",
|
|
1101
|
+
"strict": true,
|
|
1102
|
+
"enableJsonFlag": false,
|
|
1103
|
+
"isESM": true,
|
|
1104
|
+
"relativePath": [
|
|
1105
|
+
"dist",
|
|
1106
|
+
"commands",
|
|
1107
|
+
"static_host",
|
|
1108
|
+
"list",
|
|
1109
|
+
"index.js"
|
|
1110
|
+
]
|
|
1111
|
+
},
|
|
1112
1112
|
"static_host:build:create": {
|
|
1113
1113
|
"aliases": [],
|
|
1114
1114
|
"args": {
|
|
@@ -1366,5 +1366,5 @@
|
|
|
1366
1366
|
]
|
|
1367
1367
|
}
|
|
1368
1368
|
},
|
|
1369
|
-
"version": "0.0.
|
|
1369
|
+
"version": "0.0.8"
|
|
1370
1370
|
}
|