@xano/cli 0.0.53 → 0.0.55
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 +951 -951
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -86,20 +86,20 @@
|
|
|
86
86
|
"index.js"
|
|
87
87
|
]
|
|
88
88
|
},
|
|
89
|
-
"branch:
|
|
89
|
+
"branch:delete": {
|
|
90
90
|
"aliases": [],
|
|
91
91
|
"args": {
|
|
92
92
|
"branch_label": {
|
|
93
|
-
"description": "Branch label to
|
|
93
|
+
"description": "Branch label to delete (cannot delete \"v1\" or the live branch)",
|
|
94
94
|
"name": "branch_label",
|
|
95
95
|
"required": true
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
-
"description": "
|
|
98
|
+
"description": "Delete a branch (cannot delete \"v1\" or the live branch)",
|
|
99
99
|
"examples": [
|
|
100
|
-
"$ xano branch
|
|
101
|
-
"$ xano branch
|
|
102
|
-
"$ xano branch
|
|
100
|
+
"$ xano branch delete feature-old\nAre you sure you want to delete branch 'feature-old'? This action cannot be undone. (y/N) y\nDeleted branch: feature-old\n",
|
|
101
|
+
"$ xano branch delete dev --force\nDeleted branch: dev\n",
|
|
102
|
+
"$ xano branch delete staging -f -o json\n{\n \"deleted\": true,\n \"branch_label\": \"staging\"\n}\n"
|
|
103
103
|
],
|
|
104
104
|
"flags": {
|
|
105
105
|
"profile": {
|
|
@@ -121,32 +121,13 @@
|
|
|
121
121
|
"allowNo": false,
|
|
122
122
|
"type": "boolean"
|
|
123
123
|
},
|
|
124
|
-
"
|
|
125
|
-
"char": "
|
|
126
|
-
"description": "
|
|
127
|
-
"name": "
|
|
128
|
-
"required": false,
|
|
129
|
-
"hasDynamicHelp": false,
|
|
130
|
-
"multiple": false,
|
|
131
|
-
"type": "option"
|
|
132
|
-
},
|
|
133
|
-
"description": {
|
|
134
|
-
"char": "d",
|
|
135
|
-
"description": "New description for the branch",
|
|
136
|
-
"name": "description",
|
|
137
|
-
"required": false,
|
|
138
|
-
"hasDynamicHelp": false,
|
|
139
|
-
"multiple": false,
|
|
140
|
-
"type": "option"
|
|
141
|
-
},
|
|
142
|
-
"label": {
|
|
143
|
-
"char": "l",
|
|
144
|
-
"description": "New label for the branch",
|
|
145
|
-
"name": "label",
|
|
124
|
+
"force": {
|
|
125
|
+
"char": "f",
|
|
126
|
+
"description": "Skip confirmation prompt",
|
|
127
|
+
"name": "force",
|
|
146
128
|
"required": false,
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"type": "option"
|
|
129
|
+
"allowNo": false,
|
|
130
|
+
"type": "boolean"
|
|
150
131
|
},
|
|
151
132
|
"output": {
|
|
152
133
|
"char": "o",
|
|
@@ -174,7 +155,7 @@
|
|
|
174
155
|
},
|
|
175
156
|
"hasDynamicHelp": false,
|
|
176
157
|
"hiddenAliases": [],
|
|
177
|
-
"id": "branch:
|
|
158
|
+
"id": "branch:delete",
|
|
178
159
|
"pluginAlias": "@xano/cli",
|
|
179
160
|
"pluginName": "@xano/cli",
|
|
180
161
|
"pluginType": "core",
|
|
@@ -185,24 +166,18 @@
|
|
|
185
166
|
"dist",
|
|
186
167
|
"commands",
|
|
187
168
|
"branch",
|
|
188
|
-
"
|
|
169
|
+
"delete",
|
|
189
170
|
"index.js"
|
|
190
171
|
]
|
|
191
172
|
},
|
|
192
|
-
"branch:
|
|
173
|
+
"branch:create": {
|
|
193
174
|
"aliases": [],
|
|
194
|
-
"args": {
|
|
195
|
-
|
|
196
|
-
"description": "Branch label to delete (cannot delete \"v1\" or the live branch)",
|
|
197
|
-
"name": "branch_label",
|
|
198
|
-
"required": true
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
"description": "Delete a branch (cannot delete \"v1\" or the live branch)",
|
|
175
|
+
"args": {},
|
|
176
|
+
"description": "Create a new branch by cloning from an existing branch",
|
|
202
177
|
"examples": [
|
|
203
|
-
"$ xano branch
|
|
204
|
-
"$ xano branch
|
|
205
|
-
"$ xano branch
|
|
178
|
+
"$ xano branch create --label dev\nCreated branch: dev\n Cloned from: v1\n",
|
|
179
|
+
"$ xano branch create -l feature-auth -s dev -d \"Authentication feature\"\nCreated branch: feature-auth\n Cloned from: dev\n Description: Authentication feature\n",
|
|
180
|
+
"$ xano branch create --label staging --color \"#ebc346\" --output json\n{\n \"created_at\": \"2024-02-11T10:00:00Z\",\n \"label\": \"staging\",\n \"backup\": false,\n \"live\": false\n}\n"
|
|
206
181
|
],
|
|
207
182
|
"flags": {
|
|
208
183
|
"profile": {
|
|
@@ -224,13 +199,32 @@
|
|
|
224
199
|
"allowNo": false,
|
|
225
200
|
"type": "boolean"
|
|
226
201
|
},
|
|
227
|
-
"
|
|
228
|
-
"char": "
|
|
229
|
-
"description": "
|
|
230
|
-
"name": "
|
|
202
|
+
"color": {
|
|
203
|
+
"char": "c",
|
|
204
|
+
"description": "Color hex code for the branch (e.g., \"#ebc346\")",
|
|
205
|
+
"name": "color",
|
|
231
206
|
"required": false,
|
|
232
|
-
"
|
|
233
|
-
"
|
|
207
|
+
"hasDynamicHelp": false,
|
|
208
|
+
"multiple": false,
|
|
209
|
+
"type": "option"
|
|
210
|
+
},
|
|
211
|
+
"description": {
|
|
212
|
+
"char": "d",
|
|
213
|
+
"description": "Description for the new branch",
|
|
214
|
+
"name": "description",
|
|
215
|
+
"required": false,
|
|
216
|
+
"hasDynamicHelp": false,
|
|
217
|
+
"multiple": false,
|
|
218
|
+
"type": "option"
|
|
219
|
+
},
|
|
220
|
+
"label": {
|
|
221
|
+
"char": "l",
|
|
222
|
+
"description": "Label for the new branch",
|
|
223
|
+
"name": "label",
|
|
224
|
+
"required": true,
|
|
225
|
+
"hasDynamicHelp": false,
|
|
226
|
+
"multiple": false,
|
|
227
|
+
"type": "option"
|
|
234
228
|
},
|
|
235
229
|
"output": {
|
|
236
230
|
"char": "o",
|
|
@@ -246,6 +240,16 @@
|
|
|
246
240
|
],
|
|
247
241
|
"type": "option"
|
|
248
242
|
},
|
|
243
|
+
"source": {
|
|
244
|
+
"char": "s",
|
|
245
|
+
"description": "Source branch to clone from (defaults to \"v1\")",
|
|
246
|
+
"name": "source",
|
|
247
|
+
"required": false,
|
|
248
|
+
"default": "v1",
|
|
249
|
+
"hasDynamicHelp": false,
|
|
250
|
+
"multiple": false,
|
|
251
|
+
"type": "option"
|
|
252
|
+
},
|
|
249
253
|
"workspace": {
|
|
250
254
|
"char": "w",
|
|
251
255
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -258,7 +262,7 @@
|
|
|
258
262
|
},
|
|
259
263
|
"hasDynamicHelp": false,
|
|
260
264
|
"hiddenAliases": [],
|
|
261
|
-
"id": "branch:
|
|
265
|
+
"id": "branch:create",
|
|
262
266
|
"pluginAlias": "@xano/cli",
|
|
263
267
|
"pluginName": "@xano/cli",
|
|
264
268
|
"pluginType": "core",
|
|
@@ -269,24 +273,24 @@
|
|
|
269
273
|
"dist",
|
|
270
274
|
"commands",
|
|
271
275
|
"branch",
|
|
272
|
-
"
|
|
276
|
+
"create",
|
|
273
277
|
"index.js"
|
|
274
278
|
]
|
|
275
279
|
},
|
|
276
|
-
"branch:
|
|
280
|
+
"branch:edit": {
|
|
277
281
|
"aliases": [],
|
|
278
282
|
"args": {
|
|
279
283
|
"branch_label": {
|
|
280
|
-
"description": "Branch label (
|
|
284
|
+
"description": "Branch label to edit (cannot edit \"v1\" label)",
|
|
281
285
|
"name": "branch_label",
|
|
282
286
|
"required": true
|
|
283
287
|
}
|
|
284
288
|
},
|
|
285
|
-
"description": "
|
|
289
|
+
"description": "Update an existing branch (cannot update \"v1\" label)",
|
|
286
290
|
"examples": [
|
|
287
|
-
"$ xano branch
|
|
288
|
-
"$ xano branch
|
|
289
|
-
"$ xano branch
|
|
291
|
+
"$ xano branch edit dev --label development\nUpdated branch: development\n",
|
|
292
|
+
"$ xano branch edit feature-auth -l feature-authentication --color \"#ff5733\"\nUpdated branch: feature-authentication\n Color: #ff5733\n",
|
|
293
|
+
"$ xano branch edit staging --description \"Staging environment\" -o json\n{\n \"created_at\": \"2024-02-10T09:15:00Z\",\n \"label\": \"staging\",\n \"backup\": false\n}\n"
|
|
290
294
|
],
|
|
291
295
|
"flags": {
|
|
292
296
|
"profile": {
|
|
@@ -308,6 +312,33 @@
|
|
|
308
312
|
"allowNo": false,
|
|
309
313
|
"type": "boolean"
|
|
310
314
|
},
|
|
315
|
+
"color": {
|
|
316
|
+
"char": "c",
|
|
317
|
+
"description": "New color hex code for the branch (e.g., \"#ff5733\")",
|
|
318
|
+
"name": "color",
|
|
319
|
+
"required": false,
|
|
320
|
+
"hasDynamicHelp": false,
|
|
321
|
+
"multiple": false,
|
|
322
|
+
"type": "option"
|
|
323
|
+
},
|
|
324
|
+
"description": {
|
|
325
|
+
"char": "d",
|
|
326
|
+
"description": "New description for the branch",
|
|
327
|
+
"name": "description",
|
|
328
|
+
"required": false,
|
|
329
|
+
"hasDynamicHelp": false,
|
|
330
|
+
"multiple": false,
|
|
331
|
+
"type": "option"
|
|
332
|
+
},
|
|
333
|
+
"label": {
|
|
334
|
+
"char": "l",
|
|
335
|
+
"description": "New label for the branch",
|
|
336
|
+
"name": "label",
|
|
337
|
+
"required": false,
|
|
338
|
+
"hasDynamicHelp": false,
|
|
339
|
+
"multiple": false,
|
|
340
|
+
"type": "option"
|
|
341
|
+
},
|
|
311
342
|
"output": {
|
|
312
343
|
"char": "o",
|
|
313
344
|
"description": "Output format",
|
|
@@ -334,7 +365,7 @@
|
|
|
334
365
|
},
|
|
335
366
|
"hasDynamicHelp": false,
|
|
336
367
|
"hiddenAliases": [],
|
|
337
|
-
"id": "branch:
|
|
368
|
+
"id": "branch:edit",
|
|
338
369
|
"pluginAlias": "@xano/cli",
|
|
339
370
|
"pluginName": "@xano/cli",
|
|
340
371
|
"pluginType": "core",
|
|
@@ -345,18 +376,24 @@
|
|
|
345
376
|
"dist",
|
|
346
377
|
"commands",
|
|
347
378
|
"branch",
|
|
348
|
-
"
|
|
379
|
+
"edit",
|
|
349
380
|
"index.js"
|
|
350
381
|
]
|
|
351
382
|
},
|
|
352
|
-
"branch:
|
|
383
|
+
"branch:get": {
|
|
353
384
|
"aliases": [],
|
|
354
|
-
"args": {
|
|
355
|
-
|
|
385
|
+
"args": {
|
|
386
|
+
"branch_label": {
|
|
387
|
+
"description": "Branch label (e.g., \"v1\", \"dev\")",
|
|
388
|
+
"name": "branch_label",
|
|
389
|
+
"required": true
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"description": "Get details for a specific branch",
|
|
356
393
|
"examples": [
|
|
357
|
-
"$ xano branch
|
|
358
|
-
"$ xano branch
|
|
359
|
-
"$ xano branch
|
|
394
|
+
"$ xano branch get v1\nBranch: v1 (live)\n Created: 2024-01-15\n",
|
|
395
|
+
"$ xano branch get dev -w 123\nBranch: dev\n Created: 2024-02-01\n",
|
|
396
|
+
"$ xano branch get staging --output json\n{\n \"created_at\": \"2024-02-10T09:15:00Z\",\n \"label\": \"staging\",\n \"backup\": false,\n \"live\": false\n}\n"
|
|
360
397
|
],
|
|
361
398
|
"flags": {
|
|
362
399
|
"profile": {
|
|
@@ -378,33 +415,6 @@
|
|
|
378
415
|
"allowNo": false,
|
|
379
416
|
"type": "boolean"
|
|
380
417
|
},
|
|
381
|
-
"color": {
|
|
382
|
-
"char": "c",
|
|
383
|
-
"description": "Color hex code for the branch (e.g., \"#ebc346\")",
|
|
384
|
-
"name": "color",
|
|
385
|
-
"required": false,
|
|
386
|
-
"hasDynamicHelp": false,
|
|
387
|
-
"multiple": false,
|
|
388
|
-
"type": "option"
|
|
389
|
-
},
|
|
390
|
-
"description": {
|
|
391
|
-
"char": "d",
|
|
392
|
-
"description": "Description for the new branch",
|
|
393
|
-
"name": "description",
|
|
394
|
-
"required": false,
|
|
395
|
-
"hasDynamicHelp": false,
|
|
396
|
-
"multiple": false,
|
|
397
|
-
"type": "option"
|
|
398
|
-
},
|
|
399
|
-
"label": {
|
|
400
|
-
"char": "l",
|
|
401
|
-
"description": "Label for the new branch",
|
|
402
|
-
"name": "label",
|
|
403
|
-
"required": true,
|
|
404
|
-
"hasDynamicHelp": false,
|
|
405
|
-
"multiple": false,
|
|
406
|
-
"type": "option"
|
|
407
|
-
},
|
|
408
418
|
"output": {
|
|
409
419
|
"char": "o",
|
|
410
420
|
"description": "Output format",
|
|
@@ -419,16 +429,6 @@
|
|
|
419
429
|
],
|
|
420
430
|
"type": "option"
|
|
421
431
|
},
|
|
422
|
-
"source": {
|
|
423
|
-
"char": "s",
|
|
424
|
-
"description": "Source branch to clone from (defaults to \"v1\")",
|
|
425
|
-
"name": "source",
|
|
426
|
-
"required": false,
|
|
427
|
-
"default": "v1",
|
|
428
|
-
"hasDynamicHelp": false,
|
|
429
|
-
"multiple": false,
|
|
430
|
-
"type": "option"
|
|
431
|
-
},
|
|
432
432
|
"workspace": {
|
|
433
433
|
"char": "w",
|
|
434
434
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
},
|
|
442
442
|
"hasDynamicHelp": false,
|
|
443
443
|
"hiddenAliases": [],
|
|
444
|
-
"id": "branch:
|
|
444
|
+
"id": "branch:get",
|
|
445
445
|
"pluginAlias": "@xano/cli",
|
|
446
446
|
"pluginName": "@xano/cli",
|
|
447
447
|
"pluginType": "core",
|
|
@@ -452,24 +452,23 @@
|
|
|
452
452
|
"dist",
|
|
453
453
|
"commands",
|
|
454
454
|
"branch",
|
|
455
|
-
"
|
|
455
|
+
"get",
|
|
456
456
|
"index.js"
|
|
457
457
|
]
|
|
458
458
|
},
|
|
459
|
-
"
|
|
459
|
+
"platform:get": {
|
|
460
460
|
"aliases": [],
|
|
461
461
|
"args": {
|
|
462
|
-
"
|
|
463
|
-
"description": "
|
|
464
|
-
"name": "
|
|
465
|
-
"required":
|
|
462
|
+
"platform_id": {
|
|
463
|
+
"description": "Platform ID to retrieve",
|
|
464
|
+
"name": "platform_id",
|
|
465
|
+
"required": true
|
|
466
466
|
}
|
|
467
467
|
},
|
|
468
|
-
"description": "
|
|
468
|
+
"description": "Get details of a specific platform",
|
|
469
469
|
"examples": [
|
|
470
|
-
"$ xano
|
|
471
|
-
"$ xano
|
|
472
|
-
"$ xano branch list --output json\n[\n {\n \"created_at\": \"2024-01-15T10:30:00Z\",\n \"label\": \"v1\",\n \"backup\": false,\n \"live\": true\n }\n]\n"
|
|
470
|
+
"$ xano platform get 23629\nPlatform ID: 23629\n Created: 2025-11-28\n Helm: 0.1.356\n Images:\n backend 0.0.2985\n frontend 0.1.3427\n database 0.1.6\n node 0.1.192\n deno 0.0.212\n redis 0.1.34\n realtime 0.1.149\n standalone 0.0.2456\n playwright 0.0.992\n static 0.0.10\n static-build 0.0.4\n backend-encoded 0.0.1396\n",
|
|
471
|
+
"$ xano platform get 23629 -o json"
|
|
473
472
|
],
|
|
474
473
|
"flags": {
|
|
475
474
|
"profile": {
|
|
@@ -508,7 +507,7 @@
|
|
|
508
507
|
},
|
|
509
508
|
"hasDynamicHelp": false,
|
|
510
509
|
"hiddenAliases": [],
|
|
511
|
-
"id": "
|
|
510
|
+
"id": "platform:get",
|
|
512
511
|
"pluginAlias": "@xano/cli",
|
|
513
512
|
"pluginName": "@xano/cli",
|
|
514
513
|
"pluginType": "core",
|
|
@@ -518,8 +517,8 @@
|
|
|
518
517
|
"relativePath": [
|
|
519
518
|
"dist",
|
|
520
519
|
"commands",
|
|
521
|
-
"
|
|
522
|
-
"
|
|
520
|
+
"platform",
|
|
521
|
+
"get",
|
|
523
522
|
"index.js"
|
|
524
523
|
]
|
|
525
524
|
},
|
|
@@ -607,19 +606,13 @@
|
|
|
607
606
|
"index.js"
|
|
608
607
|
]
|
|
609
608
|
},
|
|
610
|
-
"platform:
|
|
609
|
+
"platform:list": {
|
|
611
610
|
"aliases": [],
|
|
612
|
-
"args": {
|
|
613
|
-
|
|
614
|
-
"description": "Platform ID to retrieve",
|
|
615
|
-
"name": "platform_id",
|
|
616
|
-
"required": true
|
|
617
|
-
}
|
|
618
|
-
},
|
|
619
|
-
"description": "Get details of a specific platform",
|
|
611
|
+
"args": {},
|
|
612
|
+
"description": "List all platforms",
|
|
620
613
|
"examples": [
|
|
621
|
-
"$ xano platform
|
|
622
|
-
"$ xano platform
|
|
614
|
+
"$ xano platform list\nPlatforms:\n ID: 23629 | Helm: 0.1.356 | Created: 2025-11-28\n",
|
|
615
|
+
"$ xano platform list --output json"
|
|
623
616
|
],
|
|
624
617
|
"flags": {
|
|
625
618
|
"profile": {
|
|
@@ -658,7 +651,7 @@
|
|
|
658
651
|
},
|
|
659
652
|
"hasDynamicHelp": false,
|
|
660
653
|
"hiddenAliases": [],
|
|
661
|
-
"id": "platform:
|
|
654
|
+
"id": "platform:list",
|
|
662
655
|
"pluginAlias": "@xano/cli",
|
|
663
656
|
"pluginName": "@xano/cli",
|
|
664
657
|
"pluginType": "core",
|
|
@@ -669,17 +662,24 @@
|
|
|
669
662
|
"dist",
|
|
670
663
|
"commands",
|
|
671
664
|
"platform",
|
|
672
|
-
"
|
|
665
|
+
"list",
|
|
673
666
|
"index.js"
|
|
674
667
|
]
|
|
675
668
|
},
|
|
676
|
-
"
|
|
669
|
+
"branch:list": {
|
|
677
670
|
"aliases": [],
|
|
678
|
-
"args": {
|
|
679
|
-
|
|
671
|
+
"args": {
|
|
672
|
+
"workspace_id": {
|
|
673
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
674
|
+
"name": "workspace_id",
|
|
675
|
+
"required": false
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"description": "List all branches in a workspace",
|
|
680
679
|
"examples": [
|
|
681
|
-
"$ xano
|
|
682
|
-
"$ xano
|
|
680
|
+
"$ xano branch list\nAvailable branches:\n - v1 (live)\n - dev\n - staging\n",
|
|
681
|
+
"$ xano branch list 123\nAvailable branches:\n - v1 (live)\n - feature-auth\n",
|
|
682
|
+
"$ xano branch list --output json\n[\n {\n \"created_at\": \"2024-01-15T10:30:00Z\",\n \"label\": \"v1\",\n \"backup\": false,\n \"live\": true\n }\n]\n"
|
|
683
683
|
],
|
|
684
684
|
"flags": {
|
|
685
685
|
"profile": {
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
},
|
|
719
719
|
"hasDynamicHelp": false,
|
|
720
720
|
"hiddenAliases": [],
|
|
721
|
-
"id": "
|
|
721
|
+
"id": "branch:list",
|
|
722
722
|
"pluginAlias": "@xano/cli",
|
|
723
723
|
"pluginName": "@xano/cli",
|
|
724
724
|
"pluginType": "core",
|
|
@@ -728,7 +728,7 @@
|
|
|
728
728
|
"relativePath": [
|
|
729
729
|
"dist",
|
|
730
730
|
"commands",
|
|
731
|
-
"
|
|
731
|
+
"branch",
|
|
732
732
|
"list",
|
|
733
733
|
"index.js"
|
|
734
734
|
]
|
|
@@ -1052,93 +1052,6 @@
|
|
|
1052
1052
|
"index.js"
|
|
1053
1053
|
]
|
|
1054
1054
|
},
|
|
1055
|
-
"profile:create": {
|
|
1056
|
-
"aliases": [],
|
|
1057
|
-
"args": {
|
|
1058
|
-
"name": {
|
|
1059
|
-
"description": "Profile name",
|
|
1060
|
-
"name": "name",
|
|
1061
|
-
"required": true
|
|
1062
|
-
}
|
|
1063
|
-
},
|
|
1064
|
-
"description": "Create a new profile configuration",
|
|
1065
|
-
"examples": [
|
|
1066
|
-
"$ 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",
|
|
1067
|
-
"$ 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",
|
|
1068
|
-
"$ 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",
|
|
1069
|
-
"$ 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"
|
|
1070
|
-
],
|
|
1071
|
-
"flags": {
|
|
1072
|
-
"access_token": {
|
|
1073
|
-
"char": "t",
|
|
1074
|
-
"description": "Access token for the Xano Metadata API",
|
|
1075
|
-
"name": "access_token",
|
|
1076
|
-
"required": true,
|
|
1077
|
-
"hasDynamicHelp": false,
|
|
1078
|
-
"multiple": false,
|
|
1079
|
-
"type": "option"
|
|
1080
|
-
},
|
|
1081
|
-
"account_origin": {
|
|
1082
|
-
"char": "a",
|
|
1083
|
-
"description": "Account origin URL. Optional for self hosted installs.",
|
|
1084
|
-
"name": "account_origin",
|
|
1085
|
-
"required": false,
|
|
1086
|
-
"hasDynamicHelp": false,
|
|
1087
|
-
"multiple": false,
|
|
1088
|
-
"type": "option"
|
|
1089
|
-
},
|
|
1090
|
-
"branch": {
|
|
1091
|
-
"char": "b",
|
|
1092
|
-
"description": "Branch name",
|
|
1093
|
-
"name": "branch",
|
|
1094
|
-
"required": false,
|
|
1095
|
-
"hasDynamicHelp": false,
|
|
1096
|
-
"multiple": false,
|
|
1097
|
-
"type": "option"
|
|
1098
|
-
},
|
|
1099
|
-
"default": {
|
|
1100
|
-
"description": "Set this profile as the default",
|
|
1101
|
-
"name": "default",
|
|
1102
|
-
"required": false,
|
|
1103
|
-
"allowNo": false,
|
|
1104
|
-
"type": "boolean"
|
|
1105
|
-
},
|
|
1106
|
-
"instance_origin": {
|
|
1107
|
-
"char": "i",
|
|
1108
|
-
"description": "Instance origin URL",
|
|
1109
|
-
"name": "instance_origin",
|
|
1110
|
-
"required": true,
|
|
1111
|
-
"hasDynamicHelp": false,
|
|
1112
|
-
"multiple": false,
|
|
1113
|
-
"type": "option"
|
|
1114
|
-
},
|
|
1115
|
-
"workspace": {
|
|
1116
|
-
"char": "w",
|
|
1117
|
-
"description": "Workspace name",
|
|
1118
|
-
"name": "workspace",
|
|
1119
|
-
"required": false,
|
|
1120
|
-
"hasDynamicHelp": false,
|
|
1121
|
-
"multiple": false,
|
|
1122
|
-
"type": "option"
|
|
1123
|
-
}
|
|
1124
|
-
},
|
|
1125
|
-
"hasDynamicHelp": false,
|
|
1126
|
-
"hiddenAliases": [],
|
|
1127
|
-
"id": "profile:create",
|
|
1128
|
-
"pluginAlias": "@xano/cli",
|
|
1129
|
-
"pluginName": "@xano/cli",
|
|
1130
|
-
"pluginType": "core",
|
|
1131
|
-
"strict": true,
|
|
1132
|
-
"enableJsonFlag": false,
|
|
1133
|
-
"isESM": true,
|
|
1134
|
-
"relativePath": [
|
|
1135
|
-
"dist",
|
|
1136
|
-
"commands",
|
|
1137
|
-
"profile",
|
|
1138
|
-
"create",
|
|
1139
|
-
"index.js"
|
|
1140
|
-
]
|
|
1141
|
-
},
|
|
1142
1055
|
"function:list": {
|
|
1143
1056
|
"aliases": [],
|
|
1144
1057
|
"args": {},
|
|
@@ -1264,34 +1177,79 @@
|
|
|
1264
1177
|
"index.js"
|
|
1265
1178
|
]
|
|
1266
1179
|
},
|
|
1267
|
-
"profile:
|
|
1180
|
+
"profile:create": {
|
|
1268
1181
|
"aliases": [],
|
|
1269
1182
|
"args": {
|
|
1270
1183
|
"name": {
|
|
1271
|
-
"description": "Profile name
|
|
1184
|
+
"description": "Profile name",
|
|
1272
1185
|
"name": "name",
|
|
1273
1186
|
"required": true
|
|
1274
1187
|
}
|
|
1275
1188
|
},
|
|
1276
|
-
"description": "
|
|
1189
|
+
"description": "Create a new profile configuration",
|
|
1277
1190
|
"examples": [
|
|
1278
|
-
"$ xano profile:
|
|
1279
|
-
"$ xano profile:
|
|
1280
|
-
"$ xano profile:
|
|
1191
|
+
"$ 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",
|
|
1192
|
+
"$ 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",
|
|
1193
|
+
"$ 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",
|
|
1194
|
+
"$ 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"
|
|
1281
1195
|
],
|
|
1282
1196
|
"flags": {
|
|
1283
|
-
"
|
|
1284
|
-
"char": "
|
|
1285
|
-
"description": "
|
|
1286
|
-
"name": "
|
|
1197
|
+
"access_token": {
|
|
1198
|
+
"char": "t",
|
|
1199
|
+
"description": "Access token for the Xano Metadata API",
|
|
1200
|
+
"name": "access_token",
|
|
1201
|
+
"required": true,
|
|
1202
|
+
"hasDynamicHelp": false,
|
|
1203
|
+
"multiple": false,
|
|
1204
|
+
"type": "option"
|
|
1205
|
+
},
|
|
1206
|
+
"account_origin": {
|
|
1207
|
+
"char": "a",
|
|
1208
|
+
"description": "Account origin URL. Optional for self hosted installs.",
|
|
1209
|
+
"name": "account_origin",
|
|
1210
|
+
"required": false,
|
|
1211
|
+
"hasDynamicHelp": false,
|
|
1212
|
+
"multiple": false,
|
|
1213
|
+
"type": "option"
|
|
1214
|
+
},
|
|
1215
|
+
"branch": {
|
|
1216
|
+
"char": "b",
|
|
1217
|
+
"description": "Branch name",
|
|
1218
|
+
"name": "branch",
|
|
1219
|
+
"required": false,
|
|
1220
|
+
"hasDynamicHelp": false,
|
|
1221
|
+
"multiple": false,
|
|
1222
|
+
"type": "option"
|
|
1223
|
+
},
|
|
1224
|
+
"default": {
|
|
1225
|
+
"description": "Set this profile as the default",
|
|
1226
|
+
"name": "default",
|
|
1287
1227
|
"required": false,
|
|
1288
1228
|
"allowNo": false,
|
|
1289
1229
|
"type": "boolean"
|
|
1230
|
+
},
|
|
1231
|
+
"instance_origin": {
|
|
1232
|
+
"char": "i",
|
|
1233
|
+
"description": "Instance origin URL",
|
|
1234
|
+
"name": "instance_origin",
|
|
1235
|
+
"required": true,
|
|
1236
|
+
"hasDynamicHelp": false,
|
|
1237
|
+
"multiple": false,
|
|
1238
|
+
"type": "option"
|
|
1239
|
+
},
|
|
1240
|
+
"workspace": {
|
|
1241
|
+
"char": "w",
|
|
1242
|
+
"description": "Workspace name",
|
|
1243
|
+
"name": "workspace",
|
|
1244
|
+
"required": false,
|
|
1245
|
+
"hasDynamicHelp": false,
|
|
1246
|
+
"multiple": false,
|
|
1247
|
+
"type": "option"
|
|
1290
1248
|
}
|
|
1291
1249
|
},
|
|
1292
1250
|
"hasDynamicHelp": false,
|
|
1293
1251
|
"hiddenAliases": [],
|
|
1294
|
-
"id": "profile:
|
|
1252
|
+
"id": "profile:create",
|
|
1295
1253
|
"pluginAlias": "@xano/cli",
|
|
1296
1254
|
"pluginName": "@xano/cli",
|
|
1297
1255
|
"pluginType": "core",
|
|
@@ -1302,21 +1260,38 @@
|
|
|
1302
1260
|
"dist",
|
|
1303
1261
|
"commands",
|
|
1304
1262
|
"profile",
|
|
1305
|
-
"
|
|
1263
|
+
"create",
|
|
1306
1264
|
"index.js"
|
|
1307
1265
|
]
|
|
1308
1266
|
},
|
|
1309
|
-
"profile:
|
|
1267
|
+
"profile:delete": {
|
|
1310
1268
|
"aliases": [],
|
|
1311
|
-
"args": {
|
|
1312
|
-
|
|
1269
|
+
"args": {
|
|
1270
|
+
"name": {
|
|
1271
|
+
"description": "Profile name to delete",
|
|
1272
|
+
"name": "name",
|
|
1273
|
+
"required": true
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"description": "Delete a profile configuration",
|
|
1313
1277
|
"examples": [
|
|
1314
|
-
"$ xano profile
|
|
1278
|
+
"$ xano profile:delete old-profile\nAre you sure you want to delete profile 'old-profile'? (y/n): y\nProfile 'old-profile' deleted successfully from ~/.xano/credentials.yaml\n",
|
|
1279
|
+
"$ xano profile:delete old-profile --force\nProfile 'old-profile' deleted successfully from ~/.xano/credentials.yaml\n",
|
|
1280
|
+
"$ xano profile:delete old-profile -f\nProfile 'old-profile' deleted successfully from ~/.xano/credentials.yaml\n"
|
|
1315
1281
|
],
|
|
1316
|
-
"flags": {
|
|
1282
|
+
"flags": {
|
|
1283
|
+
"force": {
|
|
1284
|
+
"char": "f",
|
|
1285
|
+
"description": "Skip confirmation prompt",
|
|
1286
|
+
"name": "force",
|
|
1287
|
+
"required": false,
|
|
1288
|
+
"allowNo": false,
|
|
1289
|
+
"type": "boolean"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1317
1292
|
"hasDynamicHelp": false,
|
|
1318
1293
|
"hiddenAliases": [],
|
|
1319
|
-
"id": "profile:
|
|
1294
|
+
"id": "profile:delete",
|
|
1320
1295
|
"pluginAlias": "@xano/cli",
|
|
1321
1296
|
"pluginName": "@xano/cli",
|
|
1322
1297
|
"pluginType": "core",
|
|
@@ -1327,7 +1302,7 @@
|
|
|
1327
1302
|
"dist",
|
|
1328
1303
|
"commands",
|
|
1329
1304
|
"profile",
|
|
1330
|
-
"
|
|
1305
|
+
"delete",
|
|
1331
1306
|
"index.js"
|
|
1332
1307
|
]
|
|
1333
1308
|
},
|
|
@@ -1367,6 +1342,31 @@
|
|
|
1367
1342
|
"index.js"
|
|
1368
1343
|
]
|
|
1369
1344
|
},
|
|
1345
|
+
"profile:get": {
|
|
1346
|
+
"aliases": [],
|
|
1347
|
+
"args": {},
|
|
1348
|
+
"description": "Get the current default profile name",
|
|
1349
|
+
"examples": [
|
|
1350
|
+
"$ xano profile get\nproduction\n"
|
|
1351
|
+
],
|
|
1352
|
+
"flags": {},
|
|
1353
|
+
"hasDynamicHelp": false,
|
|
1354
|
+
"hiddenAliases": [],
|
|
1355
|
+
"id": "profile:get",
|
|
1356
|
+
"pluginAlias": "@xano/cli",
|
|
1357
|
+
"pluginName": "@xano/cli",
|
|
1358
|
+
"pluginType": "core",
|
|
1359
|
+
"strict": true,
|
|
1360
|
+
"enableJsonFlag": false,
|
|
1361
|
+
"isESM": true,
|
|
1362
|
+
"relativePath": [
|
|
1363
|
+
"dist",
|
|
1364
|
+
"commands",
|
|
1365
|
+
"profile",
|
|
1366
|
+
"get",
|
|
1367
|
+
"index.js"
|
|
1368
|
+
]
|
|
1369
|
+
},
|
|
1370
1370
|
"profile:edit": {
|
|
1371
1371
|
"aliases": [],
|
|
1372
1372
|
"args": {
|
|
@@ -1542,23 +1542,18 @@
|
|
|
1542
1542
|
"index.js"
|
|
1543
1543
|
]
|
|
1544
1544
|
},
|
|
1545
|
-
"profile:
|
|
1545
|
+
"profile:token": {
|
|
1546
1546
|
"aliases": [],
|
|
1547
|
-
"args": {
|
|
1548
|
-
|
|
1549
|
-
"description": "Profile name to set as default",
|
|
1550
|
-
"name": "name",
|
|
1551
|
-
"required": true
|
|
1552
|
-
}
|
|
1553
|
-
},
|
|
1554
|
-
"description": "Set the default profile",
|
|
1547
|
+
"args": {},
|
|
1548
|
+
"description": "Print the access token for the default profile",
|
|
1555
1549
|
"examples": [
|
|
1556
|
-
"$ xano profile
|
|
1550
|
+
"$ xano profile:token\neyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...\n",
|
|
1551
|
+
"$ xano profile:token | pbcopy\n# Copies the token to clipboard on macOS\n"
|
|
1557
1552
|
],
|
|
1558
1553
|
"flags": {},
|
|
1559
1554
|
"hasDynamicHelp": false,
|
|
1560
1555
|
"hiddenAliases": [],
|
|
1561
|
-
"id": "profile:
|
|
1556
|
+
"id": "profile:token",
|
|
1562
1557
|
"pluginAlias": "@xano/cli",
|
|
1563
1558
|
"pluginName": "@xano/cli",
|
|
1564
1559
|
"pluginType": "core",
|
|
@@ -1569,22 +1564,27 @@
|
|
|
1569
1564
|
"dist",
|
|
1570
1565
|
"commands",
|
|
1571
1566
|
"profile",
|
|
1572
|
-
"
|
|
1567
|
+
"token",
|
|
1573
1568
|
"index.js"
|
|
1574
1569
|
]
|
|
1575
1570
|
},
|
|
1576
|
-
"profile:
|
|
1571
|
+
"profile:set": {
|
|
1577
1572
|
"aliases": [],
|
|
1578
|
-
"args": {
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1573
|
+
"args": {
|
|
1574
|
+
"name": {
|
|
1575
|
+
"description": "Profile name to set as default",
|
|
1576
|
+
"name": "name",
|
|
1577
|
+
"required": true
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
"description": "Set the default profile",
|
|
1581
|
+
"examples": [
|
|
1582
|
+
"$ xano profile set production\nDefault profile set to 'production'\n"
|
|
1583
1583
|
],
|
|
1584
1584
|
"flags": {},
|
|
1585
1585
|
"hasDynamicHelp": false,
|
|
1586
1586
|
"hiddenAliases": [],
|
|
1587
|
-
"id": "profile:
|
|
1587
|
+
"id": "profile:set",
|
|
1588
1588
|
"pluginAlias": "@xano/cli",
|
|
1589
1589
|
"pluginName": "@xano/cli",
|
|
1590
1590
|
"pluginType": "core",
|
|
@@ -1595,7 +1595,7 @@
|
|
|
1595
1595
|
"dist",
|
|
1596
1596
|
"commands",
|
|
1597
1597
|
"profile",
|
|
1598
|
-
"
|
|
1598
|
+
"set",
|
|
1599
1599
|
"index.js"
|
|
1600
1600
|
]
|
|
1601
1601
|
},
|
|
@@ -2131,13 +2131,19 @@
|
|
|
2131
2131
|
"index.js"
|
|
2132
2132
|
]
|
|
2133
2133
|
},
|
|
2134
|
-
"release:
|
|
2134
|
+
"release:get": {
|
|
2135
2135
|
"aliases": [],
|
|
2136
|
-
"args": {
|
|
2137
|
-
|
|
2136
|
+
"args": {
|
|
2137
|
+
"release_name": {
|
|
2138
|
+
"description": "Release name to retrieve",
|
|
2139
|
+
"name": "release_name",
|
|
2140
|
+
"required": true
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
2143
|
+
"description": "Get details of a specific release",
|
|
2138
2144
|
"examples": [
|
|
2139
|
-
"$ xano release
|
|
2140
|
-
"$ xano release
|
|
2145
|
+
"$ xano release get v1.0\nRelease: v1.0 - ID: 10\n Branch: main\n Description: Initial release\n Hotfix: false\n",
|
|
2146
|
+
"$ xano release get v1.0 -w 5 -o json"
|
|
2141
2147
|
],
|
|
2142
2148
|
"flags": {
|
|
2143
2149
|
"profile": {
|
|
@@ -2185,7 +2191,7 @@
|
|
|
2185
2191
|
},
|
|
2186
2192
|
"hasDynamicHelp": false,
|
|
2187
2193
|
"hiddenAliases": [],
|
|
2188
|
-
"id": "release:
|
|
2194
|
+
"id": "release:get",
|
|
2189
2195
|
"pluginAlias": "@xano/cli",
|
|
2190
2196
|
"pluginName": "@xano/cli",
|
|
2191
2197
|
"pluginType": "core",
|
|
@@ -2196,17 +2202,17 @@
|
|
|
2196
2202
|
"dist",
|
|
2197
2203
|
"commands",
|
|
2198
2204
|
"release",
|
|
2199
|
-
"
|
|
2205
|
+
"get",
|
|
2200
2206
|
"index.js"
|
|
2201
2207
|
]
|
|
2202
2208
|
},
|
|
2203
|
-
"release:
|
|
2209
|
+
"release:list": {
|
|
2204
2210
|
"aliases": [],
|
|
2205
2211
|
"args": {},
|
|
2206
|
-
"description": "
|
|
2212
|
+
"description": "List all releases in a workspace",
|
|
2207
2213
|
"examples": [
|
|
2208
|
-
"$ xano release
|
|
2209
|
-
"$ xano release
|
|
2214
|
+
"$ xano release list\nReleases in workspace 5:\n - v1.0 (ID: 10) - main\n - v1.1-hotfix (ID: 11) - main [hotfix]\n",
|
|
2215
|
+
"$ xano release list -w 5 --output json"
|
|
2210
2216
|
],
|
|
2211
2217
|
"flags": {
|
|
2212
2218
|
"profile": {
|
|
@@ -2228,15 +2234,6 @@
|
|
|
2228
2234
|
"allowNo": false,
|
|
2229
2235
|
"type": "boolean"
|
|
2230
2236
|
},
|
|
2231
|
-
"file": {
|
|
2232
|
-
"char": "f",
|
|
2233
|
-
"description": "Path to the release file (.tar.gz)",
|
|
2234
|
-
"name": "file",
|
|
2235
|
-
"required": true,
|
|
2236
|
-
"hasDynamicHelp": false,
|
|
2237
|
-
"multiple": false,
|
|
2238
|
-
"type": "option"
|
|
2239
|
-
},
|
|
2240
2237
|
"output": {
|
|
2241
2238
|
"char": "o",
|
|
2242
2239
|
"description": "Output format",
|
|
@@ -2263,7 +2260,7 @@
|
|
|
2263
2260
|
},
|
|
2264
2261
|
"hasDynamicHelp": false,
|
|
2265
2262
|
"hiddenAliases": [],
|
|
2266
|
-
"id": "release:
|
|
2263
|
+
"id": "release:list",
|
|
2267
2264
|
"pluginAlias": "@xano/cli",
|
|
2268
2265
|
"pluginName": "@xano/cli",
|
|
2269
2266
|
"pluginType": "core",
|
|
@@ -2274,24 +2271,17 @@
|
|
|
2274
2271
|
"dist",
|
|
2275
2272
|
"commands",
|
|
2276
2273
|
"release",
|
|
2277
|
-
"
|
|
2274
|
+
"list",
|
|
2278
2275
|
"index.js"
|
|
2279
2276
|
]
|
|
2280
2277
|
},
|
|
2281
|
-
"release:
|
|
2278
|
+
"release:import": {
|
|
2282
2279
|
"aliases": [],
|
|
2283
|
-
"args": {
|
|
2284
|
-
|
|
2285
|
-
"description": "Output directory for pulled documents",
|
|
2286
|
-
"name": "directory",
|
|
2287
|
-
"required": true
|
|
2288
|
-
}
|
|
2289
|
-
},
|
|
2290
|
-
"description": "Pull a release multidoc from the Xano Metadata API and split into individual files",
|
|
2280
|
+
"args": {},
|
|
2281
|
+
"description": "Import a release file into a workspace",
|
|
2291
2282
|
"examples": [
|
|
2292
|
-
"$ xano release
|
|
2293
|
-
"$ xano release
|
|
2294
|
-
"$ xano release pull ./backup -r v1.0 --profile production --env --records\nPulled 58 documents from release 'v1.0' to ./backup\n"
|
|
2283
|
+
"$ xano release import --file ./my-release.tar.gz\nImported release as #15\n",
|
|
2284
|
+
"$ xano release import --file ./my-release.tar.gz -o json"
|
|
2295
2285
|
],
|
|
2296
2286
|
"flags": {
|
|
2297
2287
|
"profile": {
|
|
@@ -2313,32 +2303,32 @@
|
|
|
2313
2303
|
"allowNo": false,
|
|
2314
2304
|
"type": "boolean"
|
|
2315
2305
|
},
|
|
2316
|
-
"
|
|
2317
|
-
"
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2320
|
-
"
|
|
2321
|
-
"
|
|
2306
|
+
"file": {
|
|
2307
|
+
"char": "f",
|
|
2308
|
+
"description": "Path to the release file (.tar.gz)",
|
|
2309
|
+
"name": "file",
|
|
2310
|
+
"required": true,
|
|
2311
|
+
"hasDynamicHelp": false,
|
|
2312
|
+
"multiple": false,
|
|
2313
|
+
"type": "option"
|
|
2322
2314
|
},
|
|
2323
|
-
"
|
|
2324
|
-
"
|
|
2325
|
-
"
|
|
2315
|
+
"output": {
|
|
2316
|
+
"char": "o",
|
|
2317
|
+
"description": "Output format",
|
|
2318
|
+
"name": "output",
|
|
2326
2319
|
"required": false,
|
|
2327
|
-
"
|
|
2328
|
-
"type": "boolean"
|
|
2329
|
-
},
|
|
2330
|
-
"release": {
|
|
2331
|
-
"char": "r",
|
|
2332
|
-
"description": "Release name to pull from",
|
|
2333
|
-
"name": "release",
|
|
2334
|
-
"required": true,
|
|
2320
|
+
"default": "summary",
|
|
2335
2321
|
"hasDynamicHelp": false,
|
|
2336
2322
|
"multiple": false,
|
|
2323
|
+
"options": [
|
|
2324
|
+
"summary",
|
|
2325
|
+
"json"
|
|
2326
|
+
],
|
|
2337
2327
|
"type": "option"
|
|
2338
2328
|
},
|
|
2339
2329
|
"workspace": {
|
|
2340
2330
|
"char": "w",
|
|
2341
|
-
"description": "Workspace ID (
|
|
2331
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
2342
2332
|
"name": "workspace",
|
|
2343
2333
|
"required": false,
|
|
2344
2334
|
"hasDynamicHelp": false,
|
|
@@ -2348,7 +2338,7 @@
|
|
|
2348
2338
|
},
|
|
2349
2339
|
"hasDynamicHelp": false,
|
|
2350
2340
|
"hiddenAliases": [],
|
|
2351
|
-
"id": "release:
|
|
2341
|
+
"id": "release:import",
|
|
2352
2342
|
"pluginAlias": "@xano/cli",
|
|
2353
2343
|
"pluginName": "@xano/cli",
|
|
2354
2344
|
"pluginType": "core",
|
|
@@ -2359,23 +2349,24 @@
|
|
|
2359
2349
|
"dist",
|
|
2360
2350
|
"commands",
|
|
2361
2351
|
"release",
|
|
2362
|
-
"
|
|
2352
|
+
"import",
|
|
2363
2353
|
"index.js"
|
|
2364
2354
|
]
|
|
2365
2355
|
},
|
|
2366
|
-
"release:
|
|
2356
|
+
"release:pull": {
|
|
2367
2357
|
"aliases": [],
|
|
2368
2358
|
"args": {
|
|
2369
|
-
"
|
|
2370
|
-
"description": "
|
|
2371
|
-
"name": "
|
|
2359
|
+
"directory": {
|
|
2360
|
+
"description": "Output directory for pulled documents",
|
|
2361
|
+
"name": "directory",
|
|
2372
2362
|
"required": true
|
|
2373
2363
|
}
|
|
2374
2364
|
},
|
|
2375
|
-
"description": "
|
|
2365
|
+
"description": "Pull a release multidoc from the Xano Metadata API and split into individual files",
|
|
2376
2366
|
"examples": [
|
|
2377
|
-
"$ xano release
|
|
2378
|
-
"$ xano release
|
|
2367
|
+
"$ xano release pull ./my-release -r v1.0\nPulled 42 documents from release 'v1.0' to ./my-release\n",
|
|
2368
|
+
"$ xano release pull ./output -r v1.0 -w 40\nPulled 15 documents from release 'v1.0' to ./output\n",
|
|
2369
|
+
"$ xano release pull ./backup -r v1.0 --profile production --env --records\nPulled 58 documents from release 'v1.0' to ./backup\n"
|
|
2379
2370
|
],
|
|
2380
2371
|
"flags": {
|
|
2381
2372
|
"profile": {
|
|
@@ -2397,23 +2388,32 @@
|
|
|
2397
2388
|
"allowNo": false,
|
|
2398
2389
|
"type": "boolean"
|
|
2399
2390
|
},
|
|
2400
|
-
"
|
|
2401
|
-
"
|
|
2402
|
-
"
|
|
2403
|
-
"name": "output",
|
|
2391
|
+
"env": {
|
|
2392
|
+
"description": "Include environment variables",
|
|
2393
|
+
"name": "env",
|
|
2404
2394
|
"required": false,
|
|
2405
|
-
"
|
|
2395
|
+
"allowNo": false,
|
|
2396
|
+
"type": "boolean"
|
|
2397
|
+
},
|
|
2398
|
+
"records": {
|
|
2399
|
+
"description": "Include records",
|
|
2400
|
+
"name": "records",
|
|
2401
|
+
"required": false,
|
|
2402
|
+
"allowNo": false,
|
|
2403
|
+
"type": "boolean"
|
|
2404
|
+
},
|
|
2405
|
+
"release": {
|
|
2406
|
+
"char": "r",
|
|
2407
|
+
"description": "Release name to pull from",
|
|
2408
|
+
"name": "release",
|
|
2409
|
+
"required": true,
|
|
2406
2410
|
"hasDynamicHelp": false,
|
|
2407
2411
|
"multiple": false,
|
|
2408
|
-
"options": [
|
|
2409
|
-
"summary",
|
|
2410
|
-
"json"
|
|
2411
|
-
],
|
|
2412
2412
|
"type": "option"
|
|
2413
2413
|
},
|
|
2414
2414
|
"workspace": {
|
|
2415
2415
|
"char": "w",
|
|
2416
|
-
"description": "Workspace ID (
|
|
2416
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
2417
2417
|
"name": "workspace",
|
|
2418
2418
|
"required": false,
|
|
2419
2419
|
"hasDynamicHelp": false,
|
|
@@ -2423,7 +2423,7 @@
|
|
|
2423
2423
|
},
|
|
2424
2424
|
"hasDynamicHelp": false,
|
|
2425
2425
|
"hiddenAliases": [],
|
|
2426
|
-
"id": "release:
|
|
2426
|
+
"id": "release:pull",
|
|
2427
2427
|
"pluginAlias": "@xano/cli",
|
|
2428
2428
|
"pluginName": "@xano/cli",
|
|
2429
2429
|
"pluginType": "core",
|
|
@@ -2434,7 +2434,7 @@
|
|
|
2434
2434
|
"dist",
|
|
2435
2435
|
"commands",
|
|
2436
2436
|
"release",
|
|
2437
|
-
"
|
|
2437
|
+
"pull",
|
|
2438
2438
|
"index.js"
|
|
2439
2439
|
]
|
|
2440
2440
|
},
|
|
@@ -2863,90 +2863,6 @@
|
|
|
2863
2863
|
"index.js"
|
|
2864
2864
|
]
|
|
2865
2865
|
},
|
|
2866
|
-
"tenant:deploy_release": {
|
|
2867
|
-
"aliases": [],
|
|
2868
|
-
"args": {
|
|
2869
|
-
"tenant_name": {
|
|
2870
|
-
"description": "Tenant name to deploy to",
|
|
2871
|
-
"name": "tenant_name",
|
|
2872
|
-
"required": true
|
|
2873
|
-
}
|
|
2874
|
-
},
|
|
2875
|
-
"description": "Deploy a release to a tenant",
|
|
2876
|
-
"examples": [
|
|
2877
|
-
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0\nDeployed release \"v1.0\" to tenant: My Tenant (my-tenant)\n",
|
|
2878
|
-
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0 -o json"
|
|
2879
|
-
],
|
|
2880
|
-
"flags": {
|
|
2881
|
-
"profile": {
|
|
2882
|
-
"char": "p",
|
|
2883
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
2884
|
-
"env": "XANO_PROFILE",
|
|
2885
|
-
"name": "profile",
|
|
2886
|
-
"required": false,
|
|
2887
|
-
"hasDynamicHelp": false,
|
|
2888
|
-
"multiple": false,
|
|
2889
|
-
"type": "option"
|
|
2890
|
-
},
|
|
2891
|
-
"verbose": {
|
|
2892
|
-
"char": "v",
|
|
2893
|
-
"description": "Show detailed request/response information",
|
|
2894
|
-
"env": "XANO_VERBOSE",
|
|
2895
|
-
"name": "verbose",
|
|
2896
|
-
"required": false,
|
|
2897
|
-
"allowNo": false,
|
|
2898
|
-
"type": "boolean"
|
|
2899
|
-
},
|
|
2900
|
-
"output": {
|
|
2901
|
-
"char": "o",
|
|
2902
|
-
"description": "Output format",
|
|
2903
|
-
"name": "output",
|
|
2904
|
-
"required": false,
|
|
2905
|
-
"default": "summary",
|
|
2906
|
-
"hasDynamicHelp": false,
|
|
2907
|
-
"multiple": false,
|
|
2908
|
-
"options": [
|
|
2909
|
-
"summary",
|
|
2910
|
-
"json"
|
|
2911
|
-
],
|
|
2912
|
-
"type": "option"
|
|
2913
|
-
},
|
|
2914
|
-
"release": {
|
|
2915
|
-
"char": "r",
|
|
2916
|
-
"description": "Release name to deploy",
|
|
2917
|
-
"name": "release",
|
|
2918
|
-
"required": true,
|
|
2919
|
-
"hasDynamicHelp": false,
|
|
2920
|
-
"multiple": false,
|
|
2921
|
-
"type": "option"
|
|
2922
|
-
},
|
|
2923
|
-
"workspace": {
|
|
2924
|
-
"char": "w",
|
|
2925
|
-
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
2926
|
-
"name": "workspace",
|
|
2927
|
-
"required": false,
|
|
2928
|
-
"hasDynamicHelp": false,
|
|
2929
|
-
"multiple": false,
|
|
2930
|
-
"type": "option"
|
|
2931
|
-
}
|
|
2932
|
-
},
|
|
2933
|
-
"hasDynamicHelp": false,
|
|
2934
|
-
"hiddenAliases": [],
|
|
2935
|
-
"id": "tenant:deploy_release",
|
|
2936
|
-
"pluginAlias": "@xano/cli",
|
|
2937
|
-
"pluginName": "@xano/cli",
|
|
2938
|
-
"pluginType": "core",
|
|
2939
|
-
"strict": true,
|
|
2940
|
-
"enableJsonFlag": false,
|
|
2941
|
-
"isESM": true,
|
|
2942
|
-
"relativePath": [
|
|
2943
|
-
"dist",
|
|
2944
|
-
"commands",
|
|
2945
|
-
"tenant",
|
|
2946
|
-
"deploy_release",
|
|
2947
|
-
"index.js"
|
|
2948
|
-
]
|
|
2949
|
-
},
|
|
2950
2866
|
"tenant:get": {
|
|
2951
2867
|
"aliases": [],
|
|
2952
2868
|
"args": {
|
|
@@ -3151,19 +3067,19 @@
|
|
|
3151
3067
|
"index.js"
|
|
3152
3068
|
]
|
|
3153
3069
|
},
|
|
3154
|
-
"tenant:
|
|
3070
|
+
"tenant:deploy_release": {
|
|
3155
3071
|
"aliases": [],
|
|
3156
3072
|
"args": {
|
|
3157
3073
|
"tenant_name": {
|
|
3158
|
-
"description": "Tenant name to
|
|
3074
|
+
"description": "Tenant name to deploy to",
|
|
3159
3075
|
"name": "tenant_name",
|
|
3160
3076
|
"required": true
|
|
3161
3077
|
}
|
|
3162
3078
|
},
|
|
3163
|
-
"description": "
|
|
3079
|
+
"description": "Deploy a release to a tenant",
|
|
3164
3080
|
"examples": [
|
|
3165
|
-
"$ xano tenant
|
|
3166
|
-
"$ xano tenant
|
|
3081
|
+
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0\nDeployed release \"v1.0\" to tenant: My Tenant (my-tenant)\n",
|
|
3082
|
+
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0 -o json"
|
|
3167
3083
|
],
|
|
3168
3084
|
"flags": {
|
|
3169
3085
|
"profile": {
|
|
@@ -3199,17 +3115,111 @@
|
|
|
3199
3115
|
],
|
|
3200
3116
|
"type": "option"
|
|
3201
3117
|
},
|
|
3202
|
-
"
|
|
3203
|
-
"char": "
|
|
3204
|
-
"description": "
|
|
3205
|
-
"name": "
|
|
3118
|
+
"release": {
|
|
3119
|
+
"char": "r",
|
|
3120
|
+
"description": "Release name to deploy",
|
|
3121
|
+
"name": "release",
|
|
3122
|
+
"required": true,
|
|
3123
|
+
"hasDynamicHelp": false,
|
|
3124
|
+
"multiple": false,
|
|
3125
|
+
"type": "option"
|
|
3126
|
+
},
|
|
3127
|
+
"workspace": {
|
|
3128
|
+
"char": "w",
|
|
3129
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
3130
|
+
"name": "workspace",
|
|
3131
|
+
"required": false,
|
|
3132
|
+
"hasDynamicHelp": false,
|
|
3133
|
+
"multiple": false,
|
|
3134
|
+
"type": "option"
|
|
3135
|
+
}
|
|
3136
|
+
},
|
|
3137
|
+
"hasDynamicHelp": false,
|
|
3138
|
+
"hiddenAliases": [],
|
|
3139
|
+
"id": "tenant:deploy_release",
|
|
3140
|
+
"pluginAlias": "@xano/cli",
|
|
3141
|
+
"pluginName": "@xano/cli",
|
|
3142
|
+
"pluginType": "core",
|
|
3143
|
+
"strict": true,
|
|
3144
|
+
"enableJsonFlag": false,
|
|
3145
|
+
"isESM": true,
|
|
3146
|
+
"relativePath": [
|
|
3147
|
+
"dist",
|
|
3148
|
+
"commands",
|
|
3149
|
+
"tenant",
|
|
3150
|
+
"deploy_release",
|
|
3151
|
+
"index.js"
|
|
3152
|
+
]
|
|
3153
|
+
},
|
|
3154
|
+
"tenant:pull": {
|
|
3155
|
+
"aliases": [],
|
|
3156
|
+
"args": {
|
|
3157
|
+
"directory": {
|
|
3158
|
+
"description": "Output directory for pulled documents",
|
|
3159
|
+
"name": "directory",
|
|
3160
|
+
"required": true
|
|
3161
|
+
}
|
|
3162
|
+
},
|
|
3163
|
+
"description": "Pull a tenant multidoc from the Xano Metadata API and split into individual files",
|
|
3164
|
+
"examples": [
|
|
3165
|
+
"$ xano tenant pull ./my-tenant -t my-tenant\nPulled 42 documents from tenant my-tenant to ./my-tenant\n",
|
|
3166
|
+
"$ xano tenant pull ./output -t my-tenant -w 40\nPulled 15 documents from tenant my-tenant to ./output\n",
|
|
3167
|
+
"$ xano tenant pull ./backup -t my-tenant --profile production --env --records\nPulled 58 documents from tenant my-tenant to ./backup\n",
|
|
3168
|
+
"$ xano tenant pull ./my-tenant -t my-tenant --draft\nPulled 42 documents from tenant my-tenant to ./my-tenant\n"
|
|
3169
|
+
],
|
|
3170
|
+
"flags": {
|
|
3171
|
+
"profile": {
|
|
3172
|
+
"char": "p",
|
|
3173
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
3174
|
+
"env": "XANO_PROFILE",
|
|
3175
|
+
"name": "profile",
|
|
3176
|
+
"required": false,
|
|
3177
|
+
"hasDynamicHelp": false,
|
|
3178
|
+
"multiple": false,
|
|
3179
|
+
"type": "option"
|
|
3180
|
+
},
|
|
3181
|
+
"verbose": {
|
|
3182
|
+
"char": "v",
|
|
3183
|
+
"description": "Show detailed request/response information",
|
|
3184
|
+
"env": "XANO_VERBOSE",
|
|
3185
|
+
"name": "verbose",
|
|
3186
|
+
"required": false,
|
|
3187
|
+
"allowNo": false,
|
|
3188
|
+
"type": "boolean"
|
|
3189
|
+
},
|
|
3190
|
+
"draft": {
|
|
3191
|
+
"description": "Include draft versions",
|
|
3192
|
+
"name": "draft",
|
|
3193
|
+
"required": false,
|
|
3194
|
+
"allowNo": false,
|
|
3195
|
+
"type": "boolean"
|
|
3196
|
+
},
|
|
3197
|
+
"env": {
|
|
3198
|
+
"description": "Include environment variables",
|
|
3199
|
+
"name": "env",
|
|
3200
|
+
"required": false,
|
|
3201
|
+
"allowNo": false,
|
|
3202
|
+
"type": "boolean"
|
|
3203
|
+
},
|
|
3204
|
+
"records": {
|
|
3205
|
+
"description": "Include records",
|
|
3206
|
+
"name": "records",
|
|
3206
3207
|
"required": false,
|
|
3207
3208
|
"allowNo": false,
|
|
3208
3209
|
"type": "boolean"
|
|
3209
3210
|
},
|
|
3211
|
+
"tenant": {
|
|
3212
|
+
"char": "t",
|
|
3213
|
+
"description": "Tenant name to pull from",
|
|
3214
|
+
"name": "tenant",
|
|
3215
|
+
"required": true,
|
|
3216
|
+
"hasDynamicHelp": false,
|
|
3217
|
+
"multiple": false,
|
|
3218
|
+
"type": "option"
|
|
3219
|
+
},
|
|
3210
3220
|
"workspace": {
|
|
3211
3221
|
"char": "w",
|
|
3212
|
-
"description": "Workspace ID (
|
|
3222
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
3213
3223
|
"name": "workspace",
|
|
3214
3224
|
"required": false,
|
|
3215
3225
|
"hasDynamicHelp": false,
|
|
@@ -3219,7 +3229,7 @@
|
|
|
3219
3229
|
},
|
|
3220
3230
|
"hasDynamicHelp": false,
|
|
3221
3231
|
"hiddenAliases": [],
|
|
3222
|
-
"id": "tenant:
|
|
3232
|
+
"id": "tenant:pull",
|
|
3223
3233
|
"pluginAlias": "@xano/cli",
|
|
3224
3234
|
"pluginName": "@xano/cli",
|
|
3225
3235
|
"pluginType": "core",
|
|
@@ -3230,7 +3240,7 @@
|
|
|
3230
3240
|
"dist",
|
|
3231
3241
|
"commands",
|
|
3232
3242
|
"tenant",
|
|
3233
|
-
"
|
|
3243
|
+
"pull",
|
|
3234
3244
|
"index.js"
|
|
3235
3245
|
]
|
|
3236
3246
|
},
|
|
@@ -3303,21 +3313,19 @@
|
|
|
3303
3313
|
"index.js"
|
|
3304
3314
|
]
|
|
3305
3315
|
},
|
|
3306
|
-
"tenant:
|
|
3316
|
+
"tenant:impersonate": {
|
|
3307
3317
|
"aliases": [],
|
|
3308
3318
|
"args": {
|
|
3309
|
-
"
|
|
3310
|
-
"description": "
|
|
3311
|
-
"name": "
|
|
3319
|
+
"tenant_name": {
|
|
3320
|
+
"description": "Tenant name to impersonate",
|
|
3321
|
+
"name": "tenant_name",
|
|
3312
3322
|
"required": true
|
|
3313
3323
|
}
|
|
3314
3324
|
},
|
|
3315
|
-
"description": "
|
|
3325
|
+
"description": "Impersonate a tenant and open it in the browser",
|
|
3316
3326
|
"examples": [
|
|
3317
|
-
"$ xano tenant
|
|
3318
|
-
"$ xano tenant
|
|
3319
|
-
"$ xano tenant pull ./backup -t my-tenant --profile production --env --records\nPulled 58 documents from tenant my-tenant to ./backup\n",
|
|
3320
|
-
"$ xano tenant pull ./my-tenant -t my-tenant --draft\nPulled 42 documents from tenant my-tenant to ./my-tenant\n"
|
|
3327
|
+
"$ xano tenant impersonate my-tenant\nOpening browser...\nImpersonation successful!\n",
|
|
3328
|
+
"$ xano tenant impersonate my-tenant -o json"
|
|
3321
3329
|
],
|
|
3322
3330
|
"flags": {
|
|
3323
3331
|
"profile": {
|
|
@@ -3339,39 +3347,31 @@
|
|
|
3339
3347
|
"allowNo": false,
|
|
3340
3348
|
"type": "boolean"
|
|
3341
3349
|
},
|
|
3342
|
-
"
|
|
3343
|
-
"
|
|
3344
|
-
"
|
|
3345
|
-
"
|
|
3346
|
-
"allowNo": false,
|
|
3347
|
-
"type": "boolean"
|
|
3348
|
-
},
|
|
3349
|
-
"env": {
|
|
3350
|
-
"description": "Include environment variables",
|
|
3351
|
-
"name": "env",
|
|
3350
|
+
"output": {
|
|
3351
|
+
"char": "o",
|
|
3352
|
+
"description": "Output format",
|
|
3353
|
+
"name": "output",
|
|
3352
3354
|
"required": false,
|
|
3353
|
-
"
|
|
3354
|
-
"
|
|
3355
|
+
"default": "summary",
|
|
3356
|
+
"hasDynamicHelp": false,
|
|
3357
|
+
"multiple": false,
|
|
3358
|
+
"options": [
|
|
3359
|
+
"summary",
|
|
3360
|
+
"json"
|
|
3361
|
+
],
|
|
3362
|
+
"type": "option"
|
|
3355
3363
|
},
|
|
3356
|
-
"
|
|
3357
|
-
"
|
|
3358
|
-
"
|
|
3364
|
+
"url-only": {
|
|
3365
|
+
"char": "u",
|
|
3366
|
+
"description": "Print the URL without opening the browser",
|
|
3367
|
+
"name": "url-only",
|
|
3359
3368
|
"required": false,
|
|
3360
3369
|
"allowNo": false,
|
|
3361
3370
|
"type": "boolean"
|
|
3362
3371
|
},
|
|
3363
|
-
"tenant": {
|
|
3364
|
-
"char": "t",
|
|
3365
|
-
"description": "Tenant name to pull from",
|
|
3366
|
-
"name": "tenant",
|
|
3367
|
-
"required": true,
|
|
3368
|
-
"hasDynamicHelp": false,
|
|
3369
|
-
"multiple": false,
|
|
3370
|
-
"type": "option"
|
|
3371
|
-
},
|
|
3372
3372
|
"workspace": {
|
|
3373
3373
|
"char": "w",
|
|
3374
|
-
"description": "Workspace ID (
|
|
3374
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
3375
3375
|
"name": "workspace",
|
|
3376
3376
|
"required": false,
|
|
3377
3377
|
"hasDynamicHelp": false,
|
|
@@ -3381,7 +3381,7 @@
|
|
|
3381
3381
|
},
|
|
3382
3382
|
"hasDynamicHelp": false,
|
|
3383
3383
|
"hiddenAliases": [],
|
|
3384
|
-
"id": "tenant:
|
|
3384
|
+
"id": "tenant:impersonate",
|
|
3385
3385
|
"pluginAlias": "@xano/cli",
|
|
3386
3386
|
"pluginName": "@xano/cli",
|
|
3387
3387
|
"pluginType": "core",
|
|
@@ -3392,7 +3392,7 @@
|
|
|
3392
3392
|
"dist",
|
|
3393
3393
|
"commands",
|
|
3394
3394
|
"tenant",
|
|
3395
|
-
"
|
|
3395
|
+
"impersonate",
|
|
3396
3396
|
"index.js"
|
|
3397
3397
|
]
|
|
3398
3398
|
},
|
|
@@ -3658,82 +3658,6 @@
|
|
|
3658
3658
|
"index.js"
|
|
3659
3659
|
]
|
|
3660
3660
|
},
|
|
3661
|
-
"workspace:create": {
|
|
3662
|
-
"aliases": [],
|
|
3663
|
-
"args": {
|
|
3664
|
-
"name": {
|
|
3665
|
-
"description": "Name of the workspace",
|
|
3666
|
-
"name": "name",
|
|
3667
|
-
"required": true
|
|
3668
|
-
}
|
|
3669
|
-
},
|
|
3670
|
-
"description": "Create a new workspace via the Xano Metadata API",
|
|
3671
|
-
"examples": [
|
|
3672
|
-
"$ xano workspace create my-workspace\nCreated workspace: my-workspace (ID: 123)\n",
|
|
3673
|
-
"$ xano workspace create my-app --description \"My application workspace\"\nCreated workspace: my-app (ID: 456)\n Description: My application workspace\n",
|
|
3674
|
-
"$ xano workspace create new-project -d \"New project workspace\" -o json\n{\n \"id\": 789,\n \"name\": \"new-project\",\n \"description\": \"New project workspace\"\n}\n"
|
|
3675
|
-
],
|
|
3676
|
-
"flags": {
|
|
3677
|
-
"profile": {
|
|
3678
|
-
"char": "p",
|
|
3679
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
3680
|
-
"env": "XANO_PROFILE",
|
|
3681
|
-
"name": "profile",
|
|
3682
|
-
"required": false,
|
|
3683
|
-
"hasDynamicHelp": false,
|
|
3684
|
-
"multiple": false,
|
|
3685
|
-
"type": "option"
|
|
3686
|
-
},
|
|
3687
|
-
"verbose": {
|
|
3688
|
-
"char": "v",
|
|
3689
|
-
"description": "Show detailed request/response information",
|
|
3690
|
-
"env": "XANO_VERBOSE",
|
|
3691
|
-
"name": "verbose",
|
|
3692
|
-
"required": false,
|
|
3693
|
-
"allowNo": false,
|
|
3694
|
-
"type": "boolean"
|
|
3695
|
-
},
|
|
3696
|
-
"description": {
|
|
3697
|
-
"char": "d",
|
|
3698
|
-
"description": "Description for the workspace",
|
|
3699
|
-
"name": "description",
|
|
3700
|
-
"required": false,
|
|
3701
|
-
"hasDynamicHelp": false,
|
|
3702
|
-
"multiple": false,
|
|
3703
|
-
"type": "option"
|
|
3704
|
-
},
|
|
3705
|
-
"output": {
|
|
3706
|
-
"char": "o",
|
|
3707
|
-
"description": "Output format",
|
|
3708
|
-
"name": "output",
|
|
3709
|
-
"required": false,
|
|
3710
|
-
"default": "summary",
|
|
3711
|
-
"hasDynamicHelp": false,
|
|
3712
|
-
"multiple": false,
|
|
3713
|
-
"options": [
|
|
3714
|
-
"summary",
|
|
3715
|
-
"json"
|
|
3716
|
-
],
|
|
3717
|
-
"type": "option"
|
|
3718
|
-
}
|
|
3719
|
-
},
|
|
3720
|
-
"hasDynamicHelp": false,
|
|
3721
|
-
"hiddenAliases": [],
|
|
3722
|
-
"id": "workspace:create",
|
|
3723
|
-
"pluginAlias": "@xano/cli",
|
|
3724
|
-
"pluginName": "@xano/cli",
|
|
3725
|
-
"pluginType": "core",
|
|
3726
|
-
"strict": true,
|
|
3727
|
-
"enableJsonFlag": false,
|
|
3728
|
-
"isESM": true,
|
|
3729
|
-
"relativePath": [
|
|
3730
|
-
"dist",
|
|
3731
|
-
"commands",
|
|
3732
|
-
"workspace",
|
|
3733
|
-
"create",
|
|
3734
|
-
"index.js"
|
|
3735
|
-
]
|
|
3736
|
-
},
|
|
3737
3661
|
"unit_test:run_all": {
|
|
3738
3662
|
"aliases": [],
|
|
3739
3663
|
"args": {},
|
|
@@ -3825,13 +3749,89 @@
|
|
|
3825
3749
|
"index.js"
|
|
3826
3750
|
]
|
|
3827
3751
|
},
|
|
3828
|
-
"workspace:
|
|
3752
|
+
"workspace:create": {
|
|
3829
3753
|
"aliases": [],
|
|
3830
3754
|
"args": {
|
|
3831
|
-
"
|
|
3832
|
-
"description": "
|
|
3833
|
-
"name": "
|
|
3834
|
-
"required":
|
|
3755
|
+
"name": {
|
|
3756
|
+
"description": "Name of the workspace",
|
|
3757
|
+
"name": "name",
|
|
3758
|
+
"required": true
|
|
3759
|
+
}
|
|
3760
|
+
},
|
|
3761
|
+
"description": "Create a new workspace via the Xano Metadata API",
|
|
3762
|
+
"examples": [
|
|
3763
|
+
"$ xano workspace create my-workspace\nCreated workspace: my-workspace (ID: 123)\n",
|
|
3764
|
+
"$ xano workspace create my-app --description \"My application workspace\"\nCreated workspace: my-app (ID: 456)\n Description: My application workspace\n",
|
|
3765
|
+
"$ xano workspace create new-project -d \"New project workspace\" -o json\n{\n \"id\": 789,\n \"name\": \"new-project\",\n \"description\": \"New project workspace\"\n}\n"
|
|
3766
|
+
],
|
|
3767
|
+
"flags": {
|
|
3768
|
+
"profile": {
|
|
3769
|
+
"char": "p",
|
|
3770
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
3771
|
+
"env": "XANO_PROFILE",
|
|
3772
|
+
"name": "profile",
|
|
3773
|
+
"required": false,
|
|
3774
|
+
"hasDynamicHelp": false,
|
|
3775
|
+
"multiple": false,
|
|
3776
|
+
"type": "option"
|
|
3777
|
+
},
|
|
3778
|
+
"verbose": {
|
|
3779
|
+
"char": "v",
|
|
3780
|
+
"description": "Show detailed request/response information",
|
|
3781
|
+
"env": "XANO_VERBOSE",
|
|
3782
|
+
"name": "verbose",
|
|
3783
|
+
"required": false,
|
|
3784
|
+
"allowNo": false,
|
|
3785
|
+
"type": "boolean"
|
|
3786
|
+
},
|
|
3787
|
+
"description": {
|
|
3788
|
+
"char": "d",
|
|
3789
|
+
"description": "Description for the workspace",
|
|
3790
|
+
"name": "description",
|
|
3791
|
+
"required": false,
|
|
3792
|
+
"hasDynamicHelp": false,
|
|
3793
|
+
"multiple": false,
|
|
3794
|
+
"type": "option"
|
|
3795
|
+
},
|
|
3796
|
+
"output": {
|
|
3797
|
+
"char": "o",
|
|
3798
|
+
"description": "Output format",
|
|
3799
|
+
"name": "output",
|
|
3800
|
+
"required": false,
|
|
3801
|
+
"default": "summary",
|
|
3802
|
+
"hasDynamicHelp": false,
|
|
3803
|
+
"multiple": false,
|
|
3804
|
+
"options": [
|
|
3805
|
+
"summary",
|
|
3806
|
+
"json"
|
|
3807
|
+
],
|
|
3808
|
+
"type": "option"
|
|
3809
|
+
}
|
|
3810
|
+
},
|
|
3811
|
+
"hasDynamicHelp": false,
|
|
3812
|
+
"hiddenAliases": [],
|
|
3813
|
+
"id": "workspace:create",
|
|
3814
|
+
"pluginAlias": "@xano/cli",
|
|
3815
|
+
"pluginName": "@xano/cli",
|
|
3816
|
+
"pluginType": "core",
|
|
3817
|
+
"strict": true,
|
|
3818
|
+
"enableJsonFlag": false,
|
|
3819
|
+
"isESM": true,
|
|
3820
|
+
"relativePath": [
|
|
3821
|
+
"dist",
|
|
3822
|
+
"commands",
|
|
3823
|
+
"workspace",
|
|
3824
|
+
"create",
|
|
3825
|
+
"index.js"
|
|
3826
|
+
]
|
|
3827
|
+
},
|
|
3828
|
+
"workspace:edit": {
|
|
3829
|
+
"aliases": [],
|
|
3830
|
+
"args": {
|
|
3831
|
+
"workspace_id": {
|
|
3832
|
+
"description": "Workspace ID to edit (uses profile workspace if not provided)",
|
|
3833
|
+
"name": "workspace_id",
|
|
3834
|
+
"required": false
|
|
3835
3835
|
}
|
|
3836
3836
|
},
|
|
3837
3837
|
"description": "Edit an existing workspace via the Xano Metadata API",
|
|
@@ -4296,28 +4296,22 @@
|
|
|
4296
4296
|
"index.js"
|
|
4297
4297
|
]
|
|
4298
4298
|
},
|
|
4299
|
-
"workspace:
|
|
4299
|
+
"workspace:pull": {
|
|
4300
4300
|
"aliases": [],
|
|
4301
4301
|
"args": {
|
|
4302
4302
|
"directory": {
|
|
4303
|
-
"description": "
|
|
4303
|
+
"description": "Output directory for pulled documents",
|
|
4304
4304
|
"name": "directory",
|
|
4305
4305
|
"required": true
|
|
4306
4306
|
}
|
|
4307
4307
|
},
|
|
4308
|
-
"description": "
|
|
4308
|
+
"description": "Pull a workspace multidoc from the Xano Metadata API and split into individual files",
|
|
4309
4309
|
"examples": [
|
|
4310
|
-
"$ xano workspace
|
|
4311
|
-
"$ xano workspace
|
|
4312
|
-
"$ xano workspace
|
|
4313
|
-
"$ xano workspace
|
|
4314
|
-
"$ xano workspace
|
|
4315
|
-
"$ xano workspace push ./my-workspace --no-delete\nPatch files without deleting existing workspace objects\n",
|
|
4316
|
-
"$ xano workspace push ./my-workspace --no-records\nPush schema only, skip importing table records\n",
|
|
4317
|
-
"$ xano workspace push ./my-workspace --no-env\nPush without overwriting environment variables\n",
|
|
4318
|
-
"$ xano workspace push ./my-workspace --truncate\nTruncate all table records before importing\n",
|
|
4319
|
-
"$ xano workspace push ./my-workspace --truncate --no-records\nTruncate all table records without importing new ones\n",
|
|
4320
|
-
"$ xano workspace push ./my-workspace --no-records --no-env\nPush schema only, skip records and environment variables\n"
|
|
4310
|
+
"$ xano workspace pull ./my-workspace\nPulled 42 documents to ./my-workspace\n",
|
|
4311
|
+
"$ xano workspace pull ./output -w 40\nPulled 15 documents to ./output\n",
|
|
4312
|
+
"$ xano workspace pull ./backup --profile production --env --records\nPulled 58 documents to ./backup\n",
|
|
4313
|
+
"$ xano workspace pull ./my-workspace --draft\nPulled 42 documents to ./my-workspace\n",
|
|
4314
|
+
"$ xano workspace pull ./my-workspace -b dev\nPulled 42 documents to ./my-workspace\n"
|
|
4321
4315
|
],
|
|
4322
4316
|
"flags": {
|
|
4323
4317
|
"profile": {
|
|
@@ -4348,45 +4342,24 @@
|
|
|
4348
4342
|
"multiple": false,
|
|
4349
4343
|
"type": "option"
|
|
4350
4344
|
},
|
|
4351
|
-
"delete": {
|
|
4352
|
-
"description": "Delete workspace objects not included in the push (default: false)",
|
|
4353
|
-
"name": "delete",
|
|
4354
|
-
"required": false,
|
|
4355
|
-
"allowNo": true,
|
|
4356
|
-
"type": "boolean"
|
|
4357
|
-
},
|
|
4358
4345
|
"env": {
|
|
4359
|
-
"description": "Include environment variables
|
|
4346
|
+
"description": "Include environment variables",
|
|
4360
4347
|
"name": "env",
|
|
4361
4348
|
"required": false,
|
|
4362
|
-
"allowNo":
|
|
4349
|
+
"allowNo": false,
|
|
4363
4350
|
"type": "boolean"
|
|
4364
4351
|
},
|
|
4365
|
-
"
|
|
4366
|
-
"description": "
|
|
4367
|
-
"name": "
|
|
4352
|
+
"draft": {
|
|
4353
|
+
"description": "Include draft versions",
|
|
4354
|
+
"name": "draft",
|
|
4368
4355
|
"required": false,
|
|
4369
4356
|
"allowNo": false,
|
|
4370
4357
|
"type": "boolean"
|
|
4371
4358
|
},
|
|
4372
4359
|
"records": {
|
|
4373
|
-
"description": "Include records
|
|
4360
|
+
"description": "Include records",
|
|
4374
4361
|
"name": "records",
|
|
4375
4362
|
"required": false,
|
|
4376
|
-
"allowNo": true,
|
|
4377
|
-
"type": "boolean"
|
|
4378
|
-
},
|
|
4379
|
-
"sync-guids": {
|
|
4380
|
-
"description": "Write server-assigned GUIDs back to local files (use --no-sync-guids to skip)",
|
|
4381
|
-
"name": "sync-guids",
|
|
4382
|
-
"required": false,
|
|
4383
|
-
"allowNo": true,
|
|
4384
|
-
"type": "boolean"
|
|
4385
|
-
},
|
|
4386
|
-
"truncate": {
|
|
4387
|
-
"description": "Truncate all table records before importing",
|
|
4388
|
-
"name": "truncate",
|
|
4389
|
-
"required": false,
|
|
4390
4363
|
"allowNo": false,
|
|
4391
4364
|
"type": "boolean"
|
|
4392
4365
|
},
|
|
@@ -4402,7 +4375,7 @@
|
|
|
4402
4375
|
},
|
|
4403
4376
|
"hasDynamicHelp": false,
|
|
4404
4377
|
"hiddenAliases": [],
|
|
4405
|
-
"id": "workspace:
|
|
4378
|
+
"id": "workspace:pull",
|
|
4406
4379
|
"pluginAlias": "@xano/cli",
|
|
4407
4380
|
"pluginName": "@xano/cli",
|
|
4408
4381
|
"pluginType": "core",
|
|
@@ -4413,26 +4386,32 @@
|
|
|
4413
4386
|
"dist",
|
|
4414
4387
|
"commands",
|
|
4415
4388
|
"workspace",
|
|
4416
|
-
"
|
|
4389
|
+
"pull",
|
|
4417
4390
|
"index.js"
|
|
4418
4391
|
]
|
|
4419
4392
|
},
|
|
4420
|
-
"workspace:
|
|
4393
|
+
"workspace:push": {
|
|
4421
4394
|
"aliases": [],
|
|
4422
4395
|
"args": {
|
|
4423
4396
|
"directory": {
|
|
4424
|
-
"description": "
|
|
4397
|
+
"description": "Directory containing documents to push (as produced by workspace pull)",
|
|
4425
4398
|
"name": "directory",
|
|
4426
4399
|
"required": true
|
|
4427
4400
|
}
|
|
4428
4401
|
},
|
|
4429
|
-
"description": "
|
|
4402
|
+
"description": "Push local documents to a workspace via the Xano Metadata API multidoc endpoint",
|
|
4430
4403
|
"examples": [
|
|
4431
|
-
"$ xano workspace
|
|
4432
|
-
"$ xano workspace
|
|
4433
|
-
"$ xano workspace
|
|
4434
|
-
"$ xano workspace
|
|
4435
|
-
"$ xano workspace
|
|
4404
|
+
"$ xano workspace push ./my-workspace\nPushed 42 documents from ./my-workspace\n",
|
|
4405
|
+
"$ xano workspace push ./output -w 40\nPushed 15 documents from ./output\n",
|
|
4406
|
+
"$ xano workspace push ./backup --profile production\nPushed 58 documents from ./backup\n",
|
|
4407
|
+
"$ xano workspace push ./my-workspace -b dev\nPushed 42 documents from ./my-workspace\n",
|
|
4408
|
+
"$ xano workspace push ./my-functions --partial\nPush some files without a workspace block (implies --no-delete)\n",
|
|
4409
|
+
"$ xano workspace push ./my-workspace --no-delete\nPatch files without deleting existing workspace objects\n",
|
|
4410
|
+
"$ xano workspace push ./my-workspace --no-records\nPush schema only, skip importing table records\n",
|
|
4411
|
+
"$ xano workspace push ./my-workspace --no-env\nPush without overwriting environment variables\n",
|
|
4412
|
+
"$ xano workspace push ./my-workspace --truncate\nTruncate all table records before importing\n",
|
|
4413
|
+
"$ xano workspace push ./my-workspace --truncate --no-records\nTruncate all table records without importing new ones\n",
|
|
4414
|
+
"$ xano workspace push ./my-workspace --no-records --no-env\nPush schema only, skip records and environment variables\n"
|
|
4436
4415
|
],
|
|
4437
4416
|
"flags": {
|
|
4438
4417
|
"profile": {
|
|
@@ -4463,24 +4442,45 @@
|
|
|
4463
4442
|
"multiple": false,
|
|
4464
4443
|
"type": "option"
|
|
4465
4444
|
},
|
|
4445
|
+
"delete": {
|
|
4446
|
+
"description": "Delete workspace objects not included in the push (default: false)",
|
|
4447
|
+
"name": "delete",
|
|
4448
|
+
"required": false,
|
|
4449
|
+
"allowNo": true,
|
|
4450
|
+
"type": "boolean"
|
|
4451
|
+
},
|
|
4466
4452
|
"env": {
|
|
4467
|
-
"description": "Include environment variables",
|
|
4453
|
+
"description": "Include environment variables in import (default: true, use --no-env to exclude)",
|
|
4468
4454
|
"name": "env",
|
|
4469
4455
|
"required": false,
|
|
4470
|
-
"allowNo":
|
|
4456
|
+
"allowNo": true,
|
|
4471
4457
|
"type": "boolean"
|
|
4472
4458
|
},
|
|
4473
|
-
"
|
|
4474
|
-
"description": "
|
|
4475
|
-
"name": "
|
|
4459
|
+
"partial": {
|
|
4460
|
+
"description": "Partial push — workspace block is not required, existing objects are kept (implies --no-delete)",
|
|
4461
|
+
"name": "partial",
|
|
4476
4462
|
"required": false,
|
|
4477
4463
|
"allowNo": false,
|
|
4478
4464
|
"type": "boolean"
|
|
4479
4465
|
},
|
|
4480
4466
|
"records": {
|
|
4481
|
-
"description": "Include records",
|
|
4467
|
+
"description": "Include records in import (default: true, use --no-records to exclude)",
|
|
4482
4468
|
"name": "records",
|
|
4483
4469
|
"required": false,
|
|
4470
|
+
"allowNo": true,
|
|
4471
|
+
"type": "boolean"
|
|
4472
|
+
},
|
|
4473
|
+
"sync-guids": {
|
|
4474
|
+
"description": "Write server-assigned GUIDs back to local files (use --no-sync-guids to skip)",
|
|
4475
|
+
"name": "sync-guids",
|
|
4476
|
+
"required": false,
|
|
4477
|
+
"allowNo": true,
|
|
4478
|
+
"type": "boolean"
|
|
4479
|
+
},
|
|
4480
|
+
"truncate": {
|
|
4481
|
+
"description": "Truncate all table records before importing",
|
|
4482
|
+
"name": "truncate",
|
|
4483
|
+
"required": false,
|
|
4484
4484
|
"allowNo": false,
|
|
4485
4485
|
"type": "boolean"
|
|
4486
4486
|
},
|
|
@@ -4496,7 +4496,7 @@
|
|
|
4496
4496
|
},
|
|
4497
4497
|
"hasDynamicHelp": false,
|
|
4498
4498
|
"hiddenAliases": [],
|
|
4499
|
-
"id": "workspace:
|
|
4499
|
+
"id": "workspace:push",
|
|
4500
4500
|
"pluginAlias": "@xano/cli",
|
|
4501
4501
|
"pluginName": "@xano/cli",
|
|
4502
4502
|
"pluginType": "core",
|
|
@@ -4507,23 +4507,18 @@
|
|
|
4507
4507
|
"dist",
|
|
4508
4508
|
"commands",
|
|
4509
4509
|
"workspace",
|
|
4510
|
-
"
|
|
4510
|
+
"push",
|
|
4511
4511
|
"index.js"
|
|
4512
4512
|
]
|
|
4513
4513
|
},
|
|
4514
|
-
"workflow_test:
|
|
4514
|
+
"workflow_test:list": {
|
|
4515
4515
|
"aliases": [],
|
|
4516
|
-
"args": {
|
|
4517
|
-
|
|
4518
|
-
"description": "ID of the workflow test to run",
|
|
4519
|
-
"name": "workflow_test_id",
|
|
4520
|
-
"required": true
|
|
4521
|
-
}
|
|
4522
|
-
},
|
|
4523
|
-
"description": "Run a workflow test",
|
|
4516
|
+
"args": {},
|
|
4517
|
+
"description": "List all workflow tests in a workspace",
|
|
4524
4518
|
"examples": [
|
|
4525
|
-
"$ xano workflow-test
|
|
4526
|
-
"$ xano workflow-test
|
|
4519
|
+
"$ xano workflow-test list\nWorkflow tests in workspace 5:\n - my-test (ID: 1)\n - auth-flow (ID: 2) - Validates auth endpoints\n",
|
|
4520
|
+
"$ xano workflow-test list -w 5 --output json",
|
|
4521
|
+
"$ xano workflow-test list --branch main"
|
|
4527
4522
|
],
|
|
4528
4523
|
"flags": {
|
|
4529
4524
|
"profile": {
|
|
@@ -4545,6 +4540,15 @@
|
|
|
4545
4540
|
"allowNo": false,
|
|
4546
4541
|
"type": "boolean"
|
|
4547
4542
|
},
|
|
4543
|
+
"branch": {
|
|
4544
|
+
"char": "b",
|
|
4545
|
+
"description": "Filter by branch name",
|
|
4546
|
+
"name": "branch",
|
|
4547
|
+
"required": false,
|
|
4548
|
+
"hasDynamicHelp": false,
|
|
4549
|
+
"multiple": false,
|
|
4550
|
+
"type": "option"
|
|
4551
|
+
},
|
|
4548
4552
|
"output": {
|
|
4549
4553
|
"char": "o",
|
|
4550
4554
|
"description": "Output format",
|
|
@@ -4571,7 +4575,7 @@
|
|
|
4571
4575
|
},
|
|
4572
4576
|
"hasDynamicHelp": false,
|
|
4573
4577
|
"hiddenAliases": [],
|
|
4574
|
-
"id": "workflow_test:
|
|
4578
|
+
"id": "workflow_test:list",
|
|
4575
4579
|
"pluginAlias": "@xano/cli",
|
|
4576
4580
|
"pluginName": "@xano/cli",
|
|
4577
4581
|
"pluginType": "core",
|
|
@@ -4582,17 +4586,23 @@
|
|
|
4582
4586
|
"dist",
|
|
4583
4587
|
"commands",
|
|
4584
4588
|
"workflow_test",
|
|
4585
|
-
"
|
|
4589
|
+
"list",
|
|
4586
4590
|
"index.js"
|
|
4587
4591
|
]
|
|
4588
4592
|
},
|
|
4589
|
-
"workflow_test:
|
|
4593
|
+
"workflow_test:run": {
|
|
4590
4594
|
"aliases": [],
|
|
4591
|
-
"args": {
|
|
4592
|
-
|
|
4595
|
+
"args": {
|
|
4596
|
+
"workflow_test_id": {
|
|
4597
|
+
"description": "ID of the workflow test to run",
|
|
4598
|
+
"name": "workflow_test_id",
|
|
4599
|
+
"required": true
|
|
4600
|
+
}
|
|
4601
|
+
},
|
|
4602
|
+
"description": "Run a workflow test",
|
|
4593
4603
|
"examples": [
|
|
4594
|
-
"$ xano workflow-test run
|
|
4595
|
-
"$ xano workflow-test run
|
|
4604
|
+
"$ xano workflow-test run 1\nRunning workflow test 1...\nResult: PASS (1.234s)\n",
|
|
4605
|
+
"$ xano workflow-test run 1 -o json"
|
|
4596
4606
|
],
|
|
4597
4607
|
"flags": {
|
|
4598
4608
|
"profile": {
|
|
@@ -4614,15 +4624,6 @@
|
|
|
4614
4624
|
"allowNo": false,
|
|
4615
4625
|
"type": "boolean"
|
|
4616
4626
|
},
|
|
4617
|
-
"branch": {
|
|
4618
|
-
"char": "b",
|
|
4619
|
-
"description": "Filter by branch name",
|
|
4620
|
-
"name": "branch",
|
|
4621
|
-
"required": false,
|
|
4622
|
-
"hasDynamicHelp": false,
|
|
4623
|
-
"multiple": false,
|
|
4624
|
-
"type": "option"
|
|
4625
|
-
},
|
|
4626
4627
|
"output": {
|
|
4627
4628
|
"char": "o",
|
|
4628
4629
|
"description": "Output format",
|
|
@@ -4649,7 +4650,7 @@
|
|
|
4649
4650
|
},
|
|
4650
4651
|
"hasDynamicHelp": false,
|
|
4651
4652
|
"hiddenAliases": [],
|
|
4652
|
-
"id": "workflow_test:
|
|
4653
|
+
"id": "workflow_test:run",
|
|
4653
4654
|
"pluginAlias": "@xano/cli",
|
|
4654
4655
|
"pluginName": "@xano/cli",
|
|
4655
4656
|
"pluginType": "core",
|
|
@@ -4660,18 +4661,24 @@
|
|
|
4660
4661
|
"dist",
|
|
4661
4662
|
"commands",
|
|
4662
4663
|
"workflow_test",
|
|
4663
|
-
"
|
|
4664
|
+
"run",
|
|
4664
4665
|
"index.js"
|
|
4665
4666
|
]
|
|
4666
4667
|
},
|
|
4667
|
-
"
|
|
4668
|
+
"static_host:build:create": {
|
|
4668
4669
|
"aliases": [],
|
|
4669
|
-
"args": {
|
|
4670
|
-
|
|
4670
|
+
"args": {
|
|
4671
|
+
"static_host": {
|
|
4672
|
+
"description": "Static Host name",
|
|
4673
|
+
"name": "static_host",
|
|
4674
|
+
"required": true
|
|
4675
|
+
}
|
|
4676
|
+
},
|
|
4677
|
+
"description": "Create a new build for a static host",
|
|
4671
4678
|
"examples": [
|
|
4672
|
-
"$ xano
|
|
4673
|
-
"$ xano
|
|
4674
|
-
"$ xano
|
|
4679
|
+
"$ xano static_host:build:create default -f ./build.zip -n \"v1.0.0\"\nBuild created successfully!\nID: 123\nName: v1.0.0\nStatus: pending\n",
|
|
4680
|
+
"$ xano static_host:build:create default -w 40 -f ./dist.zip -n \"production\" -d \"Production build\"\nBuild created successfully!\nID: 124\nName: production\nDescription: Production build\n",
|
|
4681
|
+
"$ xano static_host:build:create myhost -f ./app.zip -n \"release-1.2\" -o json\n{\n \"id\": 125,\n \"name\": \"release-1.2\",\n \"status\": \"pending\"\n}\n"
|
|
4675
4682
|
],
|
|
4676
4683
|
"flags": {
|
|
4677
4684
|
"profile": {
|
|
@@ -4693,15 +4700,33 @@
|
|
|
4693
4700
|
"allowNo": false,
|
|
4694
4701
|
"type": "boolean"
|
|
4695
4702
|
},
|
|
4696
|
-
"
|
|
4697
|
-
"char": "
|
|
4698
|
-
"description": "
|
|
4699
|
-
"name": "
|
|
4703
|
+
"description": {
|
|
4704
|
+
"char": "d",
|
|
4705
|
+
"description": "Build description",
|
|
4706
|
+
"name": "description",
|
|
4700
4707
|
"required": false,
|
|
4701
4708
|
"hasDynamicHelp": false,
|
|
4702
4709
|
"multiple": false,
|
|
4703
4710
|
"type": "option"
|
|
4704
4711
|
},
|
|
4712
|
+
"file": {
|
|
4713
|
+
"char": "f",
|
|
4714
|
+
"description": "Path to zip file to upload",
|
|
4715
|
+
"name": "file",
|
|
4716
|
+
"required": true,
|
|
4717
|
+
"hasDynamicHelp": false,
|
|
4718
|
+
"multiple": false,
|
|
4719
|
+
"type": "option"
|
|
4720
|
+
},
|
|
4721
|
+
"name": {
|
|
4722
|
+
"char": "n",
|
|
4723
|
+
"description": "Build name",
|
|
4724
|
+
"name": "name",
|
|
4725
|
+
"required": true,
|
|
4726
|
+
"hasDynamicHelp": false,
|
|
4727
|
+
"multiple": false,
|
|
4728
|
+
"type": "option"
|
|
4729
|
+
},
|
|
4705
4730
|
"output": {
|
|
4706
4731
|
"char": "o",
|
|
4707
4732
|
"description": "Output format",
|
|
@@ -4718,7 +4743,7 @@
|
|
|
4718
4743
|
},
|
|
4719
4744
|
"workspace": {
|
|
4720
4745
|
"char": "w",
|
|
4721
|
-
"description": "Workspace ID (
|
|
4746
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
4722
4747
|
"name": "workspace",
|
|
4723
4748
|
"required": false,
|
|
4724
4749
|
"hasDynamicHelp": false,
|
|
@@ -4728,7 +4753,7 @@
|
|
|
4728
4753
|
},
|
|
4729
4754
|
"hasDynamicHelp": false,
|
|
4730
4755
|
"hiddenAliases": [],
|
|
4731
|
-
"id": "
|
|
4756
|
+
"id": "static_host:build:create",
|
|
4732
4757
|
"pluginAlias": "@xano/cli",
|
|
4733
4758
|
"pluginName": "@xano/cli",
|
|
4734
4759
|
"pluginType": "core",
|
|
@@ -4738,73 +4763,53 @@
|
|
|
4738
4763
|
"relativePath": [
|
|
4739
4764
|
"dist",
|
|
4740
4765
|
"commands",
|
|
4741
|
-
"
|
|
4742
|
-
"
|
|
4766
|
+
"static_host",
|
|
4767
|
+
"build",
|
|
4768
|
+
"create",
|
|
4743
4769
|
"index.js"
|
|
4744
4770
|
]
|
|
4745
4771
|
},
|
|
4746
|
-
"static_host:build:
|
|
4772
|
+
"static_host:build:get": {
|
|
4747
4773
|
"aliases": [],
|
|
4748
4774
|
"args": {
|
|
4775
|
+
"build_id": {
|
|
4776
|
+
"description": "Build ID",
|
|
4777
|
+
"name": "build_id",
|
|
4778
|
+
"required": true
|
|
4779
|
+
},
|
|
4749
4780
|
"static_host": {
|
|
4750
4781
|
"description": "Static Host name",
|
|
4751
4782
|
"name": "static_host",
|
|
4752
4783
|
"required": true
|
|
4753
4784
|
}
|
|
4754
4785
|
},
|
|
4755
|
-
"description": "
|
|
4786
|
+
"description": "Get details of a specific build for a static host",
|
|
4756
4787
|
"examples": [
|
|
4757
|
-
"$ xano static_host:build:
|
|
4758
|
-
"$ xano static_host:build:
|
|
4759
|
-
"$ xano static_host:build:
|
|
4788
|
+
"$ xano static_host:build:get default 52\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
4789
|
+
"$ xano static_host:build:get default 52 -w 40\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
4790
|
+
"$ xano static_host:build:get myhost 123 --profile production\nBuild Details:\nID: 123\nName: production-build\n",
|
|
4791
|
+
"$ xano static_host:build:get default 52 -o json\n{\n \"id\": 52,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n}\n"
|
|
4760
4792
|
],
|
|
4761
4793
|
"flags": {
|
|
4762
|
-
"profile": {
|
|
4763
|
-
"char": "p",
|
|
4764
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
4765
|
-
"env": "XANO_PROFILE",
|
|
4766
|
-
"name": "profile",
|
|
4767
|
-
"required": false,
|
|
4768
|
-
"hasDynamicHelp": false,
|
|
4769
|
-
"multiple": false,
|
|
4770
|
-
"type": "option"
|
|
4771
|
-
},
|
|
4772
|
-
"verbose": {
|
|
4773
|
-
"char": "v",
|
|
4774
|
-
"description": "Show detailed request/response information",
|
|
4775
|
-
"env": "XANO_VERBOSE",
|
|
4776
|
-
"name": "verbose",
|
|
4777
|
-
"required": false,
|
|
4778
|
-
"allowNo": false,
|
|
4779
|
-
"type": "boolean"
|
|
4780
|
-
},
|
|
4781
|
-
"description": {
|
|
4782
|
-
"char": "d",
|
|
4783
|
-
"description": "Build description",
|
|
4784
|
-
"name": "description",
|
|
4785
|
-
"required": false,
|
|
4786
|
-
"hasDynamicHelp": false,
|
|
4787
|
-
"multiple": false,
|
|
4788
|
-
"type": "option"
|
|
4789
|
-
},
|
|
4790
|
-
"file": {
|
|
4791
|
-
"char": "f",
|
|
4792
|
-
"description": "Path to zip file to upload",
|
|
4793
|
-
"name": "file",
|
|
4794
|
-
"required": true,
|
|
4795
|
-
"hasDynamicHelp": false,
|
|
4796
|
-
"multiple": false,
|
|
4797
|
-
"type": "option"
|
|
4798
|
-
},
|
|
4799
|
-
"name": {
|
|
4800
|
-
"char": "n",
|
|
4801
|
-
"description": "Build name",
|
|
4802
|
-
"name": "name",
|
|
4803
|
-
"required": true,
|
|
4794
|
+
"profile": {
|
|
4795
|
+
"char": "p",
|
|
4796
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
4797
|
+
"env": "XANO_PROFILE",
|
|
4798
|
+
"name": "profile",
|
|
4799
|
+
"required": false,
|
|
4804
4800
|
"hasDynamicHelp": false,
|
|
4805
4801
|
"multiple": false,
|
|
4806
4802
|
"type": "option"
|
|
4807
4803
|
},
|
|
4804
|
+
"verbose": {
|
|
4805
|
+
"char": "v",
|
|
4806
|
+
"description": "Show detailed request/response information",
|
|
4807
|
+
"env": "XANO_VERBOSE",
|
|
4808
|
+
"name": "verbose",
|
|
4809
|
+
"required": false,
|
|
4810
|
+
"allowNo": false,
|
|
4811
|
+
"type": "boolean"
|
|
4812
|
+
},
|
|
4808
4813
|
"output": {
|
|
4809
4814
|
"char": "o",
|
|
4810
4815
|
"description": "Output format",
|
|
@@ -4831,7 +4836,7 @@
|
|
|
4831
4836
|
},
|
|
4832
4837
|
"hasDynamicHelp": false,
|
|
4833
4838
|
"hiddenAliases": [],
|
|
4834
|
-
"id": "static_host:build:
|
|
4839
|
+
"id": "static_host:build:get",
|
|
4835
4840
|
"pluginAlias": "@xano/cli",
|
|
4836
4841
|
"pluginName": "@xano/cli",
|
|
4837
4842
|
"pluginType": "core",
|
|
@@ -4843,30 +4848,17 @@
|
|
|
4843
4848
|
"commands",
|
|
4844
4849
|
"static_host",
|
|
4845
4850
|
"build",
|
|
4846
|
-
"
|
|
4851
|
+
"get",
|
|
4847
4852
|
"index.js"
|
|
4848
4853
|
]
|
|
4849
4854
|
},
|
|
4850
|
-
"
|
|
4855
|
+
"workflow_test:run_all": {
|
|
4851
4856
|
"aliases": [],
|
|
4852
|
-
"args": {
|
|
4853
|
-
|
|
4854
|
-
"description": "Build ID",
|
|
4855
|
-
"name": "build_id",
|
|
4856
|
-
"required": true
|
|
4857
|
-
},
|
|
4858
|
-
"static_host": {
|
|
4859
|
-
"description": "Static Host name",
|
|
4860
|
-
"name": "static_host",
|
|
4861
|
-
"required": true
|
|
4862
|
-
}
|
|
4863
|
-
},
|
|
4864
|
-
"description": "Get details of a specific build for a static host",
|
|
4857
|
+
"args": {},
|
|
4858
|
+
"description": "Run all workflow tests in a workspace",
|
|
4865
4859
|
"examples": [
|
|
4866
|
-
"$ xano
|
|
4867
|
-
"$ xano
|
|
4868
|
-
"$ xano static_host:build:get myhost 123 --profile production\nBuild Details:\nID: 123\nName: production-build\n",
|
|
4869
|
-
"$ xano static_host:build:get default 52 -o json\n{\n \"id\": 52,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n}\n"
|
|
4860
|
+
"$ xano workflow-test run-all\nRunning 3 workflow tests...\n\nPASS my-test (1.234s)\nPASS auth-flow (0.567s)\nFAIL data-validation (0.890s)\n Error: assertion failed at step 3\n\nResults: 2 passed, 1 failed (2.691s total)\n",
|
|
4861
|
+
"$ xano workflow-test run-all --branch main -o json"
|
|
4870
4862
|
],
|
|
4871
4863
|
"flags": {
|
|
4872
4864
|
"profile": {
|
|
@@ -4888,6 +4880,15 @@
|
|
|
4888
4880
|
"allowNo": false,
|
|
4889
4881
|
"type": "boolean"
|
|
4890
4882
|
},
|
|
4883
|
+
"branch": {
|
|
4884
|
+
"char": "b",
|
|
4885
|
+
"description": "Filter by branch name",
|
|
4886
|
+
"name": "branch",
|
|
4887
|
+
"required": false,
|
|
4888
|
+
"hasDynamicHelp": false,
|
|
4889
|
+
"multiple": false,
|
|
4890
|
+
"type": "option"
|
|
4891
|
+
},
|
|
4891
4892
|
"output": {
|
|
4892
4893
|
"char": "o",
|
|
4893
4894
|
"description": "Output format",
|
|
@@ -4904,7 +4905,7 @@
|
|
|
4904
4905
|
},
|
|
4905
4906
|
"workspace": {
|
|
4906
4907
|
"char": "w",
|
|
4907
|
-
"description": "Workspace ID (
|
|
4908
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
4908
4909
|
"name": "workspace",
|
|
4909
4910
|
"required": false,
|
|
4910
4911
|
"hasDynamicHelp": false,
|
|
@@ -4914,7 +4915,7 @@
|
|
|
4914
4915
|
},
|
|
4915
4916
|
"hasDynamicHelp": false,
|
|
4916
4917
|
"hiddenAliases": [],
|
|
4917
|
-
"id": "
|
|
4918
|
+
"id": "workflow_test:run_all",
|
|
4918
4919
|
"pluginAlias": "@xano/cli",
|
|
4919
4920
|
"pluginName": "@xano/cli",
|
|
4920
4921
|
"pluginType": "core",
|
|
@@ -4924,9 +4925,8 @@
|
|
|
4924
4925
|
"relativePath": [
|
|
4925
4926
|
"dist",
|
|
4926
4927
|
"commands",
|
|
4927
|
-
"
|
|
4928
|
-
"
|
|
4929
|
-
"get",
|
|
4928
|
+
"workflow_test",
|
|
4929
|
+
"run_all",
|
|
4930
4930
|
"index.js"
|
|
4931
4931
|
]
|
|
4932
4932
|
},
|
|
@@ -5212,19 +5212,19 @@
|
|
|
5212
5212
|
"index.js"
|
|
5213
5213
|
]
|
|
5214
5214
|
},
|
|
5215
|
-
"tenant:backup:
|
|
5215
|
+
"tenant:backup:create": {
|
|
5216
5216
|
"aliases": [],
|
|
5217
5217
|
"args": {
|
|
5218
5218
|
"tenant_name": {
|
|
5219
|
-
"description": "Tenant name to
|
|
5219
|
+
"description": "Tenant name to back up",
|
|
5220
5220
|
"name": "tenant_name",
|
|
5221
5221
|
"required": true
|
|
5222
5222
|
}
|
|
5223
5223
|
},
|
|
5224
|
-
"description": "
|
|
5224
|
+
"description": "Create a backup for a tenant",
|
|
5225
5225
|
"examples": [
|
|
5226
|
-
"$ xano tenant backup
|
|
5227
|
-
"$ xano tenant backup
|
|
5226
|
+
"$ xano tenant backup create t1234-abcd-xyz1 --description \"Pre-deploy backup\"\nCreated backup #15 for tenant t1234-abcd-xyz1\n",
|
|
5227
|
+
"$ xano tenant backup create t1234-abcd-xyz1 -d \"Daily backup\" -o json"
|
|
5228
5228
|
],
|
|
5229
5229
|
"flags": {
|
|
5230
5230
|
"profile": {
|
|
@@ -5246,6 +5246,16 @@
|
|
|
5246
5246
|
"allowNo": false,
|
|
5247
5247
|
"type": "boolean"
|
|
5248
5248
|
},
|
|
5249
|
+
"description": {
|
|
5250
|
+
"char": "d",
|
|
5251
|
+
"description": "Backup description",
|
|
5252
|
+
"name": "description",
|
|
5253
|
+
"required": false,
|
|
5254
|
+
"default": "",
|
|
5255
|
+
"hasDynamicHelp": false,
|
|
5256
|
+
"multiple": false,
|
|
5257
|
+
"type": "option"
|
|
5258
|
+
},
|
|
5249
5259
|
"output": {
|
|
5250
5260
|
"char": "o",
|
|
5251
5261
|
"description": "Output format",
|
|
@@ -5260,15 +5270,6 @@
|
|
|
5260
5270
|
],
|
|
5261
5271
|
"type": "option"
|
|
5262
5272
|
},
|
|
5263
|
-
"page": {
|
|
5264
|
-
"description": "Page number for pagination",
|
|
5265
|
-
"name": "page",
|
|
5266
|
-
"required": false,
|
|
5267
|
-
"default": 1,
|
|
5268
|
-
"hasDynamicHelp": false,
|
|
5269
|
-
"multiple": false,
|
|
5270
|
-
"type": "option"
|
|
5271
|
-
},
|
|
5272
5273
|
"workspace": {
|
|
5273
5274
|
"char": "w",
|
|
5274
5275
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -5281,7 +5282,7 @@
|
|
|
5281
5282
|
},
|
|
5282
5283
|
"hasDynamicHelp": false,
|
|
5283
5284
|
"hiddenAliases": [],
|
|
5284
|
-
"id": "tenant:backup:
|
|
5285
|
+
"id": "tenant:backup:create",
|
|
5285
5286
|
"pluginAlias": "@xano/cli",
|
|
5286
5287
|
"pluginName": "@xano/cli",
|
|
5287
5288
|
"pluginType": "core",
|
|
@@ -5293,23 +5294,23 @@
|
|
|
5293
5294
|
"commands",
|
|
5294
5295
|
"tenant",
|
|
5295
5296
|
"backup",
|
|
5296
|
-
"
|
|
5297
|
+
"create",
|
|
5297
5298
|
"index.js"
|
|
5298
5299
|
]
|
|
5299
5300
|
},
|
|
5300
|
-
"tenant:backup:
|
|
5301
|
+
"tenant:backup:list": {
|
|
5301
5302
|
"aliases": [],
|
|
5302
5303
|
"args": {
|
|
5303
5304
|
"tenant_name": {
|
|
5304
|
-
"description": "Tenant name to
|
|
5305
|
+
"description": "Tenant name to list backups for",
|
|
5305
5306
|
"name": "tenant_name",
|
|
5306
5307
|
"required": true
|
|
5307
5308
|
}
|
|
5308
5309
|
},
|
|
5309
|
-
"description": "
|
|
5310
|
+
"description": "List backups for a tenant",
|
|
5310
5311
|
"examples": [
|
|
5311
|
-
"$ xano tenant backup
|
|
5312
|
-
"$ xano tenant backup
|
|
5312
|
+
"$ xano tenant backup list t1234-abcd-xyz1\nBackups for tenant t1234-abcd-xyz1:\n - #1 - Pre-deploy backup (2024-01-15)\n - #2 - Daily backup (2024-01-16)\n",
|
|
5313
|
+
"$ xano tenant backup list t1234-abcd-xyz1 -o json"
|
|
5313
5314
|
],
|
|
5314
5315
|
"flags": {
|
|
5315
5316
|
"profile": {
|
|
@@ -5331,22 +5332,6 @@
|
|
|
5331
5332
|
"allowNo": false,
|
|
5332
5333
|
"type": "boolean"
|
|
5333
5334
|
},
|
|
5334
|
-
"backup_id": {
|
|
5335
|
-
"description": "Backup ID to restore from",
|
|
5336
|
-
"name": "backup_id",
|
|
5337
|
-
"required": true,
|
|
5338
|
-
"hasDynamicHelp": false,
|
|
5339
|
-
"multiple": false,
|
|
5340
|
-
"type": "option"
|
|
5341
|
-
},
|
|
5342
|
-
"force": {
|
|
5343
|
-
"char": "f",
|
|
5344
|
-
"description": "Skip confirmation prompt",
|
|
5345
|
-
"name": "force",
|
|
5346
|
-
"required": false,
|
|
5347
|
-
"allowNo": false,
|
|
5348
|
-
"type": "boolean"
|
|
5349
|
-
},
|
|
5350
5335
|
"output": {
|
|
5351
5336
|
"char": "o",
|
|
5352
5337
|
"description": "Output format",
|
|
@@ -5361,6 +5346,15 @@
|
|
|
5361
5346
|
],
|
|
5362
5347
|
"type": "option"
|
|
5363
5348
|
},
|
|
5349
|
+
"page": {
|
|
5350
|
+
"description": "Page number for pagination",
|
|
5351
|
+
"name": "page",
|
|
5352
|
+
"required": false,
|
|
5353
|
+
"default": 1,
|
|
5354
|
+
"hasDynamicHelp": false,
|
|
5355
|
+
"multiple": false,
|
|
5356
|
+
"type": "option"
|
|
5357
|
+
},
|
|
5364
5358
|
"workspace": {
|
|
5365
5359
|
"char": "w",
|
|
5366
5360
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -5373,7 +5367,7 @@
|
|
|
5373
5367
|
},
|
|
5374
5368
|
"hasDynamicHelp": false,
|
|
5375
5369
|
"hiddenAliases": [],
|
|
5376
|
-
"id": "tenant:backup:
|
|
5370
|
+
"id": "tenant:backup:list",
|
|
5377
5371
|
"pluginAlias": "@xano/cli",
|
|
5378
5372
|
"pluginName": "@xano/cli",
|
|
5379
5373
|
"pluginType": "core",
|
|
@@ -5385,23 +5379,23 @@
|
|
|
5385
5379
|
"commands",
|
|
5386
5380
|
"tenant",
|
|
5387
5381
|
"backup",
|
|
5388
|
-
"
|
|
5382
|
+
"list",
|
|
5389
5383
|
"index.js"
|
|
5390
5384
|
]
|
|
5391
5385
|
},
|
|
5392
|
-
"tenant:backup:
|
|
5386
|
+
"tenant:backup:restore": {
|
|
5393
5387
|
"aliases": [],
|
|
5394
5388
|
"args": {
|
|
5395
5389
|
"tenant_name": {
|
|
5396
|
-
"description": "Tenant name to
|
|
5390
|
+
"description": "Tenant name to restore",
|
|
5397
5391
|
"name": "tenant_name",
|
|
5398
5392
|
"required": true
|
|
5399
5393
|
}
|
|
5400
5394
|
},
|
|
5401
|
-
"description": "
|
|
5395
|
+
"description": "Restore a tenant from a backup. This replaces the current tenant data.",
|
|
5402
5396
|
"examples": [
|
|
5403
|
-
"$ xano tenant backup
|
|
5404
|
-
"$ xano tenant backup
|
|
5397
|
+
"$ xano tenant backup restore t1234-abcd-xyz1 --backup_id 10\nAre you sure you want to restore tenant t1234-abcd-xyz1 from backup 10? This will replace current data. (y/N) y\nRestored tenant t1234-abcd-xyz1 from backup #10\n",
|
|
5398
|
+
"$ xano tenant backup restore t1234-abcd-xyz1 --backup_id 10 --force -o json"
|
|
5405
5399
|
],
|
|
5406
5400
|
"flags": {
|
|
5407
5401
|
"profile": {
|
|
@@ -5423,16 +5417,22 @@
|
|
|
5423
5417
|
"allowNo": false,
|
|
5424
5418
|
"type": "boolean"
|
|
5425
5419
|
},
|
|
5426
|
-
"
|
|
5427
|
-
"
|
|
5428
|
-
"
|
|
5429
|
-
"
|
|
5430
|
-
"required": false,
|
|
5431
|
-
"default": "",
|
|
5420
|
+
"backup_id": {
|
|
5421
|
+
"description": "Backup ID to restore from",
|
|
5422
|
+
"name": "backup_id",
|
|
5423
|
+
"required": true,
|
|
5432
5424
|
"hasDynamicHelp": false,
|
|
5433
5425
|
"multiple": false,
|
|
5434
5426
|
"type": "option"
|
|
5435
5427
|
},
|
|
5428
|
+
"force": {
|
|
5429
|
+
"char": "f",
|
|
5430
|
+
"description": "Skip confirmation prompt",
|
|
5431
|
+
"name": "force",
|
|
5432
|
+
"required": false,
|
|
5433
|
+
"allowNo": false,
|
|
5434
|
+
"type": "boolean"
|
|
5435
|
+
},
|
|
5436
5436
|
"output": {
|
|
5437
5437
|
"char": "o",
|
|
5438
5438
|
"description": "Output format",
|
|
@@ -5459,7 +5459,7 @@
|
|
|
5459
5459
|
},
|
|
5460
5460
|
"hasDynamicHelp": false,
|
|
5461
5461
|
"hiddenAliases": [],
|
|
5462
|
-
"id": "tenant:backup:
|
|
5462
|
+
"id": "tenant:backup:restore",
|
|
5463
5463
|
"pluginAlias": "@xano/cli",
|
|
5464
5464
|
"pluginName": "@xano/cli",
|
|
5465
5465
|
"pluginType": "core",
|
|
@@ -5471,7 +5471,7 @@
|
|
|
5471
5471
|
"commands",
|
|
5472
5472
|
"tenant",
|
|
5473
5473
|
"backup",
|
|
5474
|
-
"
|
|
5474
|
+
"restore",
|
|
5475
5475
|
"index.js"
|
|
5476
5476
|
]
|
|
5477
5477
|
},
|
|
@@ -5700,98 +5700,12 @@
|
|
|
5700
5700
|
},
|
|
5701
5701
|
"verbose": {
|
|
5702
5702
|
"char": "v",
|
|
5703
|
-
"description": "Show detailed request/response information",
|
|
5704
|
-
"env": "XANO_VERBOSE",
|
|
5705
|
-
"name": "verbose",
|
|
5706
|
-
"required": false,
|
|
5707
|
-
"allowNo": false,
|
|
5708
|
-
"type": "boolean"
|
|
5709
|
-
},
|
|
5710
|
-
"output": {
|
|
5711
|
-
"char": "o",
|
|
5712
|
-
"description": "Output format",
|
|
5713
|
-
"name": "output",
|
|
5714
|
-
"required": false,
|
|
5715
|
-
"default": "summary",
|
|
5716
|
-
"hasDynamicHelp": false,
|
|
5717
|
-
"multiple": false,
|
|
5718
|
-
"options": [
|
|
5719
|
-
"summary",
|
|
5720
|
-
"json"
|
|
5721
|
-
],
|
|
5722
|
-
"type": "option"
|
|
5723
|
-
}
|
|
5724
|
-
},
|
|
5725
|
-
"hasDynamicHelp": false,
|
|
5726
|
-
"hiddenAliases": [],
|
|
5727
|
-
"id": "tenant:cluster:get",
|
|
5728
|
-
"pluginAlias": "@xano/cli",
|
|
5729
|
-
"pluginName": "@xano/cli",
|
|
5730
|
-
"pluginType": "core",
|
|
5731
|
-
"strict": true,
|
|
5732
|
-
"enableJsonFlag": false,
|
|
5733
|
-
"isESM": true,
|
|
5734
|
-
"relativePath": [
|
|
5735
|
-
"dist",
|
|
5736
|
-
"commands",
|
|
5737
|
-
"tenant",
|
|
5738
|
-
"cluster",
|
|
5739
|
-
"get",
|
|
5740
|
-
"index.js"
|
|
5741
|
-
]
|
|
5742
|
-
},
|
|
5743
|
-
"tenant:backup:import": {
|
|
5744
|
-
"aliases": [],
|
|
5745
|
-
"args": {
|
|
5746
|
-
"tenant_name": {
|
|
5747
|
-
"description": "Tenant name to import backup into",
|
|
5748
|
-
"name": "tenant_name",
|
|
5749
|
-
"required": true
|
|
5750
|
-
}
|
|
5751
|
-
},
|
|
5752
|
-
"description": "Import a backup file into a tenant",
|
|
5753
|
-
"examples": [
|
|
5754
|
-
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz\nImported backup as #15 for tenant t1234-abcd-xyz1\n",
|
|
5755
|
-
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz --description \"Restored from production\" -o json"
|
|
5756
|
-
],
|
|
5757
|
-
"flags": {
|
|
5758
|
-
"profile": {
|
|
5759
|
-
"char": "p",
|
|
5760
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
5761
|
-
"env": "XANO_PROFILE",
|
|
5762
|
-
"name": "profile",
|
|
5763
|
-
"required": false,
|
|
5764
|
-
"hasDynamicHelp": false,
|
|
5765
|
-
"multiple": false,
|
|
5766
|
-
"type": "option"
|
|
5767
|
-
},
|
|
5768
|
-
"verbose": {
|
|
5769
|
-
"char": "v",
|
|
5770
|
-
"description": "Show detailed request/response information",
|
|
5771
|
-
"env": "XANO_VERBOSE",
|
|
5772
|
-
"name": "verbose",
|
|
5773
|
-
"required": false,
|
|
5774
|
-
"allowNo": false,
|
|
5775
|
-
"type": "boolean"
|
|
5776
|
-
},
|
|
5777
|
-
"description": {
|
|
5778
|
-
"char": "d",
|
|
5779
|
-
"description": "Backup description",
|
|
5780
|
-
"name": "description",
|
|
5781
|
-
"required": false,
|
|
5782
|
-
"default": "",
|
|
5783
|
-
"hasDynamicHelp": false,
|
|
5784
|
-
"multiple": false,
|
|
5785
|
-
"type": "option"
|
|
5786
|
-
},
|
|
5787
|
-
"file": {
|
|
5788
|
-
"char": "f",
|
|
5789
|
-
"description": "Path to the backup file (.tar.gz)",
|
|
5790
|
-
"name": "file",
|
|
5791
|
-
"required": true,
|
|
5792
|
-
"hasDynamicHelp": false,
|
|
5793
|
-
"multiple": false,
|
|
5794
|
-
"type": "option"
|
|
5703
|
+
"description": "Show detailed request/response information",
|
|
5704
|
+
"env": "XANO_VERBOSE",
|
|
5705
|
+
"name": "verbose",
|
|
5706
|
+
"required": false,
|
|
5707
|
+
"allowNo": false,
|
|
5708
|
+
"type": "boolean"
|
|
5795
5709
|
},
|
|
5796
5710
|
"output": {
|
|
5797
5711
|
"char": "o",
|
|
@@ -5806,20 +5720,11 @@
|
|
|
5806
5720
|
"json"
|
|
5807
5721
|
],
|
|
5808
5722
|
"type": "option"
|
|
5809
|
-
},
|
|
5810
|
-
"workspace": {
|
|
5811
|
-
"char": "w",
|
|
5812
|
-
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
5813
|
-
"name": "workspace",
|
|
5814
|
-
"required": false,
|
|
5815
|
-
"hasDynamicHelp": false,
|
|
5816
|
-
"multiple": false,
|
|
5817
|
-
"type": "option"
|
|
5818
5723
|
}
|
|
5819
5724
|
},
|
|
5820
5725
|
"hasDynamicHelp": false,
|
|
5821
5726
|
"hiddenAliases": [],
|
|
5822
|
-
"id": "tenant:
|
|
5727
|
+
"id": "tenant:cluster:get",
|
|
5823
5728
|
"pluginAlias": "@xano/cli",
|
|
5824
5729
|
"pluginName": "@xano/cli",
|
|
5825
5730
|
"pluginType": "core",
|
|
@@ -5830,8 +5735,8 @@
|
|
|
5830
5735
|
"dist",
|
|
5831
5736
|
"commands",
|
|
5832
5737
|
"tenant",
|
|
5833
|
-
"
|
|
5834
|
-
"
|
|
5738
|
+
"cluster",
|
|
5739
|
+
"get",
|
|
5835
5740
|
"index.js"
|
|
5836
5741
|
]
|
|
5837
5742
|
},
|
|
@@ -6001,20 +5906,19 @@
|
|
|
6001
5906
|
"index.js"
|
|
6002
5907
|
]
|
|
6003
5908
|
},
|
|
6004
|
-
"tenant:
|
|
5909
|
+
"tenant:backup:import": {
|
|
6005
5910
|
"aliases": [],
|
|
6006
5911
|
"args": {
|
|
6007
5912
|
"tenant_name": {
|
|
6008
|
-
"description": "Tenant name",
|
|
5913
|
+
"description": "Tenant name to import backup into",
|
|
6009
5914
|
"name": "tenant_name",
|
|
6010
5915
|
"required": true
|
|
6011
5916
|
}
|
|
6012
5917
|
},
|
|
6013
|
-
"description": "
|
|
5918
|
+
"description": "Import a backup file into a tenant",
|
|
6014
5919
|
"examples": [
|
|
6015
|
-
"$ xano tenant
|
|
6016
|
-
"$ xano tenant
|
|
6017
|
-
"$ xano tenant env delete my-tenant --name DATABASE_URL -f -w 5 -o json"
|
|
5920
|
+
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz\nImported backup as #15 for tenant t1234-abcd-xyz1\n",
|
|
5921
|
+
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz --description \"Restored from production\" -o json"
|
|
6018
5922
|
],
|
|
6019
5923
|
"flags": {
|
|
6020
5924
|
"profile": {
|
|
@@ -6036,18 +5940,20 @@
|
|
|
6036
5940
|
"allowNo": false,
|
|
6037
5941
|
"type": "boolean"
|
|
6038
5942
|
},
|
|
6039
|
-
"
|
|
6040
|
-
"char": "
|
|
6041
|
-
"description": "
|
|
6042
|
-
"name": "
|
|
5943
|
+
"description": {
|
|
5944
|
+
"char": "d",
|
|
5945
|
+
"description": "Backup description",
|
|
5946
|
+
"name": "description",
|
|
6043
5947
|
"required": false,
|
|
6044
|
-
"
|
|
6045
|
-
"
|
|
5948
|
+
"default": "",
|
|
5949
|
+
"hasDynamicHelp": false,
|
|
5950
|
+
"multiple": false,
|
|
5951
|
+
"type": "option"
|
|
6046
5952
|
},
|
|
6047
|
-
"
|
|
6048
|
-
"char": "
|
|
6049
|
-
"description": "
|
|
6050
|
-
"name": "
|
|
5953
|
+
"file": {
|
|
5954
|
+
"char": "f",
|
|
5955
|
+
"description": "Path to the backup file (.tar.gz)",
|
|
5956
|
+
"name": "file",
|
|
6051
5957
|
"required": true,
|
|
6052
5958
|
"hasDynamicHelp": false,
|
|
6053
5959
|
"multiple": false,
|
|
@@ -6079,7 +5985,7 @@
|
|
|
6079
5985
|
},
|
|
6080
5986
|
"hasDynamicHelp": false,
|
|
6081
5987
|
"hiddenAliases": [],
|
|
6082
|
-
"id": "tenant:
|
|
5988
|
+
"id": "tenant:backup:import",
|
|
6083
5989
|
"pluginAlias": "@xano/cli",
|
|
6084
5990
|
"pluginName": "@xano/cli",
|
|
6085
5991
|
"pluginType": "core",
|
|
@@ -6090,12 +5996,12 @@
|
|
|
6090
5996
|
"dist",
|
|
6091
5997
|
"commands",
|
|
6092
5998
|
"tenant",
|
|
6093
|
-
"
|
|
6094
|
-
"
|
|
5999
|
+
"backup",
|
|
6000
|
+
"import",
|
|
6095
6001
|
"index.js"
|
|
6096
6002
|
]
|
|
6097
6003
|
},
|
|
6098
|
-
"tenant:env:
|
|
6004
|
+
"tenant:env:delete": {
|
|
6099
6005
|
"aliases": [],
|
|
6100
6006
|
"args": {
|
|
6101
6007
|
"tenant_name": {
|
|
@@ -6104,12 +6010,11 @@
|
|
|
6104
6010
|
"required": true
|
|
6105
6011
|
}
|
|
6106
6012
|
},
|
|
6107
|
-
"description": "
|
|
6013
|
+
"description": "Delete an environment variable from a tenant",
|
|
6108
6014
|
"examples": [
|
|
6109
|
-
"$ xano tenant env
|
|
6110
|
-
"$ xano tenant env
|
|
6111
|
-
"$ xano tenant env
|
|
6112
|
-
"$ xano tenant env get_all my-tenant -o json"
|
|
6015
|
+
"$ xano tenant env delete my-tenant --name DATABASE_URL\nAre you sure you want to delete environment variable 'DATABASE_URL' from tenant my-tenant? (y/N) y\nEnvironment variable 'DATABASE_URL' deleted from tenant my-tenant\n",
|
|
6016
|
+
"$ xano tenant env delete my-tenant --name DATABASE_URL --force\nEnvironment variable 'DATABASE_URL' deleted from tenant my-tenant\n",
|
|
6017
|
+
"$ xano tenant env delete my-tenant --name DATABASE_URL -f -w 5 -o json"
|
|
6113
6018
|
],
|
|
6114
6019
|
"flags": {
|
|
6115
6020
|
"profile": {
|
|
@@ -6131,11 +6036,19 @@
|
|
|
6131
6036
|
"allowNo": false,
|
|
6132
6037
|
"type": "boolean"
|
|
6133
6038
|
},
|
|
6134
|
-
"
|
|
6039
|
+
"force": {
|
|
6135
6040
|
"char": "f",
|
|
6136
|
-
"description": "
|
|
6137
|
-
"name": "
|
|
6041
|
+
"description": "Skip confirmation prompt",
|
|
6042
|
+
"name": "force",
|
|
6138
6043
|
"required": false,
|
|
6044
|
+
"allowNo": false,
|
|
6045
|
+
"type": "boolean"
|
|
6046
|
+
},
|
|
6047
|
+
"name": {
|
|
6048
|
+
"char": "n",
|
|
6049
|
+
"description": "Environment variable name",
|
|
6050
|
+
"name": "name",
|
|
6051
|
+
"required": true,
|
|
6139
6052
|
"hasDynamicHelp": false,
|
|
6140
6053
|
"multiple": false,
|
|
6141
6054
|
"type": "option"
|
|
@@ -6154,13 +6067,6 @@
|
|
|
6154
6067
|
],
|
|
6155
6068
|
"type": "option"
|
|
6156
6069
|
},
|
|
6157
|
-
"view": {
|
|
6158
|
-
"description": "Print environment variables to stdout instead of saving to file",
|
|
6159
|
-
"name": "view",
|
|
6160
|
-
"required": false,
|
|
6161
|
-
"allowNo": false,
|
|
6162
|
-
"type": "boolean"
|
|
6163
|
-
},
|
|
6164
6070
|
"workspace": {
|
|
6165
6071
|
"char": "w",
|
|
6166
6072
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -6173,7 +6079,7 @@
|
|
|
6173
6079
|
},
|
|
6174
6080
|
"hasDynamicHelp": false,
|
|
6175
6081
|
"hiddenAliases": [],
|
|
6176
|
-
"id": "tenant:env:
|
|
6082
|
+
"id": "tenant:env:delete",
|
|
6177
6083
|
"pluginAlias": "@xano/cli",
|
|
6178
6084
|
"pluginName": "@xano/cli",
|
|
6179
6085
|
"pluginType": "core",
|
|
@@ -6185,7 +6091,7 @@
|
|
|
6185
6091
|
"commands",
|
|
6186
6092
|
"tenant",
|
|
6187
6093
|
"env",
|
|
6188
|
-
"
|
|
6094
|
+
"delete",
|
|
6189
6095
|
"index.js"
|
|
6190
6096
|
]
|
|
6191
6097
|
},
|
|
@@ -6350,6 +6256,100 @@
|
|
|
6350
6256
|
"index.js"
|
|
6351
6257
|
]
|
|
6352
6258
|
},
|
|
6259
|
+
"tenant:env:get_all": {
|
|
6260
|
+
"aliases": [],
|
|
6261
|
+
"args": {
|
|
6262
|
+
"tenant_name": {
|
|
6263
|
+
"description": "Tenant name",
|
|
6264
|
+
"name": "tenant_name",
|
|
6265
|
+
"required": true
|
|
6266
|
+
}
|
|
6267
|
+
},
|
|
6268
|
+
"description": "Get all environment variables for a tenant and save to a YAML file",
|
|
6269
|
+
"examples": [
|
|
6270
|
+
"$ xano tenant env get_all my-tenant\nEnvironment variables saved to env_my-tenant.yaml\n",
|
|
6271
|
+
"$ xano tenant env get_all my-tenant --file ./my-env.yaml",
|
|
6272
|
+
"$ xano tenant env get_all my-tenant --view",
|
|
6273
|
+
"$ xano tenant env get_all my-tenant -o json"
|
|
6274
|
+
],
|
|
6275
|
+
"flags": {
|
|
6276
|
+
"profile": {
|
|
6277
|
+
"char": "p",
|
|
6278
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
6279
|
+
"env": "XANO_PROFILE",
|
|
6280
|
+
"name": "profile",
|
|
6281
|
+
"required": false,
|
|
6282
|
+
"hasDynamicHelp": false,
|
|
6283
|
+
"multiple": false,
|
|
6284
|
+
"type": "option"
|
|
6285
|
+
},
|
|
6286
|
+
"verbose": {
|
|
6287
|
+
"char": "v",
|
|
6288
|
+
"description": "Show detailed request/response information",
|
|
6289
|
+
"env": "XANO_VERBOSE",
|
|
6290
|
+
"name": "verbose",
|
|
6291
|
+
"required": false,
|
|
6292
|
+
"allowNo": false,
|
|
6293
|
+
"type": "boolean"
|
|
6294
|
+
},
|
|
6295
|
+
"file": {
|
|
6296
|
+
"char": "f",
|
|
6297
|
+
"description": "Output file path (default: env_<tenant_name>.yaml)",
|
|
6298
|
+
"name": "file",
|
|
6299
|
+
"required": false,
|
|
6300
|
+
"hasDynamicHelp": false,
|
|
6301
|
+
"multiple": false,
|
|
6302
|
+
"type": "option"
|
|
6303
|
+
},
|
|
6304
|
+
"output": {
|
|
6305
|
+
"char": "o",
|
|
6306
|
+
"description": "Output format",
|
|
6307
|
+
"name": "output",
|
|
6308
|
+
"required": false,
|
|
6309
|
+
"default": "summary",
|
|
6310
|
+
"hasDynamicHelp": false,
|
|
6311
|
+
"multiple": false,
|
|
6312
|
+
"options": [
|
|
6313
|
+
"summary",
|
|
6314
|
+
"json"
|
|
6315
|
+
],
|
|
6316
|
+
"type": "option"
|
|
6317
|
+
},
|
|
6318
|
+
"view": {
|
|
6319
|
+
"description": "Print environment variables to stdout instead of saving to file",
|
|
6320
|
+
"name": "view",
|
|
6321
|
+
"required": false,
|
|
6322
|
+
"allowNo": false,
|
|
6323
|
+
"type": "boolean"
|
|
6324
|
+
},
|
|
6325
|
+
"workspace": {
|
|
6326
|
+
"char": "w",
|
|
6327
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
6328
|
+
"name": "workspace",
|
|
6329
|
+
"required": false,
|
|
6330
|
+
"hasDynamicHelp": false,
|
|
6331
|
+
"multiple": false,
|
|
6332
|
+
"type": "option"
|
|
6333
|
+
}
|
|
6334
|
+
},
|
|
6335
|
+
"hasDynamicHelp": false,
|
|
6336
|
+
"hiddenAliases": [],
|
|
6337
|
+
"id": "tenant:env:get_all",
|
|
6338
|
+
"pluginAlias": "@xano/cli",
|
|
6339
|
+
"pluginName": "@xano/cli",
|
|
6340
|
+
"pluginType": "core",
|
|
6341
|
+
"strict": true,
|
|
6342
|
+
"enableJsonFlag": false,
|
|
6343
|
+
"isESM": true,
|
|
6344
|
+
"relativePath": [
|
|
6345
|
+
"dist",
|
|
6346
|
+
"commands",
|
|
6347
|
+
"tenant",
|
|
6348
|
+
"env",
|
|
6349
|
+
"get_all",
|
|
6350
|
+
"index.js"
|
|
6351
|
+
]
|
|
6352
|
+
},
|
|
6353
6353
|
"tenant:env:set": {
|
|
6354
6354
|
"aliases": [],
|
|
6355
6355
|
"args": {
|
|
@@ -6443,7 +6443,7 @@
|
|
|
6443
6443
|
"index.js"
|
|
6444
6444
|
]
|
|
6445
6445
|
},
|
|
6446
|
-
"tenant:
|
|
6446
|
+
"tenant:license:get": {
|
|
6447
6447
|
"aliases": [],
|
|
6448
6448
|
"args": {
|
|
6449
6449
|
"tenant_name": {
|
|
@@ -6452,11 +6452,12 @@
|
|
|
6452
6452
|
"required": true
|
|
6453
6453
|
}
|
|
6454
6454
|
},
|
|
6455
|
-
"description": "
|
|
6455
|
+
"description": "Get the license for a tenant",
|
|
6456
6456
|
"examples": [
|
|
6457
|
-
"$ xano tenant
|
|
6458
|
-
"$ xano tenant
|
|
6459
|
-
"$ xano tenant
|
|
6457
|
+
"$ xano tenant license get my-tenant\nLicense saved to license_my-tenant.yaml\n",
|
|
6458
|
+
"$ xano tenant license get my-tenant --file ./my-license.yaml\nLicense saved to my-license.yaml\n",
|
|
6459
|
+
"$ xano tenant license get my-tenant --view",
|
|
6460
|
+
"$ xano tenant license get my-tenant -o json"
|
|
6460
6461
|
],
|
|
6461
6462
|
"flags": {
|
|
6462
6463
|
"profile": {
|
|
@@ -6478,16 +6479,9 @@
|
|
|
6478
6479
|
"allowNo": false,
|
|
6479
6480
|
"type": "boolean"
|
|
6480
6481
|
},
|
|
6481
|
-
"clean": {
|
|
6482
|
-
"description": "Remove the source file after successful upload",
|
|
6483
|
-
"name": "clean",
|
|
6484
|
-
"required": false,
|
|
6485
|
-
"allowNo": false,
|
|
6486
|
-
"type": "boolean"
|
|
6487
|
-
},
|
|
6488
6482
|
"file": {
|
|
6489
6483
|
"char": "f",
|
|
6490
|
-
"description": "
|
|
6484
|
+
"description": "Output file path (default: license_<tenant_name>.yaml)",
|
|
6491
6485
|
"name": "file",
|
|
6492
6486
|
"required": false,
|
|
6493
6487
|
"hasDynamicHelp": false,
|
|
@@ -6508,6 +6502,13 @@
|
|
|
6508
6502
|
],
|
|
6509
6503
|
"type": "option"
|
|
6510
6504
|
},
|
|
6505
|
+
"view": {
|
|
6506
|
+
"description": "Print license to stdout instead of saving to file",
|
|
6507
|
+
"name": "view",
|
|
6508
|
+
"required": false,
|
|
6509
|
+
"allowNo": false,
|
|
6510
|
+
"type": "boolean"
|
|
6511
|
+
},
|
|
6511
6512
|
"workspace": {
|
|
6512
6513
|
"char": "w",
|
|
6513
6514
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -6520,7 +6521,7 @@
|
|
|
6520
6521
|
},
|
|
6521
6522
|
"hasDynamicHelp": false,
|
|
6522
6523
|
"hiddenAliases": [],
|
|
6523
|
-
"id": "tenant:
|
|
6524
|
+
"id": "tenant:license:get",
|
|
6524
6525
|
"pluginAlias": "@xano/cli",
|
|
6525
6526
|
"pluginName": "@xano/cli",
|
|
6526
6527
|
"pluginType": "core",
|
|
@@ -6531,12 +6532,12 @@
|
|
|
6531
6532
|
"dist",
|
|
6532
6533
|
"commands",
|
|
6533
6534
|
"tenant",
|
|
6534
|
-
"
|
|
6535
|
-
"
|
|
6535
|
+
"license",
|
|
6536
|
+
"get",
|
|
6536
6537
|
"index.js"
|
|
6537
6538
|
]
|
|
6538
6539
|
},
|
|
6539
|
-
"tenant:
|
|
6540
|
+
"tenant:env:set_all": {
|
|
6540
6541
|
"aliases": [],
|
|
6541
6542
|
"args": {
|
|
6542
6543
|
"tenant_name": {
|
|
@@ -6545,12 +6546,11 @@
|
|
|
6545
6546
|
"required": true
|
|
6546
6547
|
}
|
|
6547
6548
|
},
|
|
6548
|
-
"description": "
|
|
6549
|
+
"description": "Set all environment variables for a tenant from a YAML file (replaces all existing)",
|
|
6549
6550
|
"examples": [
|
|
6550
|
-
"$ xano tenant
|
|
6551
|
-
"$ xano tenant
|
|
6552
|
-
"$ xano tenant
|
|
6553
|
-
"$ xano tenant license get my-tenant -o json"
|
|
6551
|
+
"$ xano tenant env set_all my-tenant\nReads from env_my-tenant.yaml\n",
|
|
6552
|
+
"$ xano tenant env set_all my-tenant --file ./my-env.yaml",
|
|
6553
|
+
"$ xano tenant env set_all my-tenant -o json"
|
|
6554
6554
|
],
|
|
6555
6555
|
"flags": {
|
|
6556
6556
|
"profile": {
|
|
@@ -6572,9 +6572,16 @@
|
|
|
6572
6572
|
"allowNo": false,
|
|
6573
6573
|
"type": "boolean"
|
|
6574
6574
|
},
|
|
6575
|
+
"clean": {
|
|
6576
|
+
"description": "Remove the source file after successful upload",
|
|
6577
|
+
"name": "clean",
|
|
6578
|
+
"required": false,
|
|
6579
|
+
"allowNo": false,
|
|
6580
|
+
"type": "boolean"
|
|
6581
|
+
},
|
|
6575
6582
|
"file": {
|
|
6576
6583
|
"char": "f",
|
|
6577
|
-
"description": "
|
|
6584
|
+
"description": "Path to env file (default: env_<tenant_name>.yaml)",
|
|
6578
6585
|
"name": "file",
|
|
6579
6586
|
"required": false,
|
|
6580
6587
|
"hasDynamicHelp": false,
|
|
@@ -6595,13 +6602,6 @@
|
|
|
6595
6602
|
],
|
|
6596
6603
|
"type": "option"
|
|
6597
6604
|
},
|
|
6598
|
-
"view": {
|
|
6599
|
-
"description": "Print license to stdout instead of saving to file",
|
|
6600
|
-
"name": "view",
|
|
6601
|
-
"required": false,
|
|
6602
|
-
"allowNo": false,
|
|
6603
|
-
"type": "boolean"
|
|
6604
|
-
},
|
|
6605
6605
|
"workspace": {
|
|
6606
6606
|
"char": "w",
|
|
6607
6607
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -6614,7 +6614,7 @@
|
|
|
6614
6614
|
},
|
|
6615
6615
|
"hasDynamicHelp": false,
|
|
6616
6616
|
"hiddenAliases": [],
|
|
6617
|
-
"id": "tenant:
|
|
6617
|
+
"id": "tenant:env:set_all",
|
|
6618
6618
|
"pluginAlias": "@xano/cli",
|
|
6619
6619
|
"pluginName": "@xano/cli",
|
|
6620
6620
|
"pluginType": "core",
|
|
@@ -6625,8 +6625,8 @@
|
|
|
6625
6625
|
"dist",
|
|
6626
6626
|
"commands",
|
|
6627
6627
|
"tenant",
|
|
6628
|
-
"
|
|
6629
|
-
"
|
|
6628
|
+
"env",
|
|
6629
|
+
"set_all",
|
|
6630
6630
|
"index.js"
|
|
6631
6631
|
]
|
|
6632
6632
|
},
|
|
@@ -7027,5 +7027,5 @@
|
|
|
7027
7027
|
]
|
|
7028
7028
|
}
|
|
7029
7029
|
},
|
|
7030
|
-
"version": "0.0.
|
|
7030
|
+
"version": "0.0.55"
|
|
7031
7031
|
}
|