@xano/cli 0.0.69-beta.1 → 0.0.69-beta.3
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/dist/base-command.d.ts +3 -0
- package/dist/base-command.js +22 -0
- package/dist/commands/workspace/push/index.js +1 -0
- package/dist/update-check.d.ts +7 -0
- package/dist/update-check.js +71 -0
- package/oclif.manifest.json +778 -778
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -93,20 +93,14 @@
|
|
|
93
93
|
"index.js"
|
|
94
94
|
]
|
|
95
95
|
},
|
|
96
|
-
"branch:
|
|
96
|
+
"branch:create": {
|
|
97
97
|
"aliases": [],
|
|
98
|
-
"args": {
|
|
99
|
-
|
|
100
|
-
"description": "Branch label to edit (cannot edit \"v1\" label)",
|
|
101
|
-
"name": "branch_label",
|
|
102
|
-
"required": true
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"description": "Update an existing branch (cannot update \"v1\" label)",
|
|
98
|
+
"args": {},
|
|
99
|
+
"description": "Create a new branch by cloning from an existing branch",
|
|
106
100
|
"examples": [
|
|
107
|
-
"$ xano branch
|
|
108
|
-
"$ xano branch
|
|
109
|
-
"$ xano branch
|
|
101
|
+
"$ xano branch create --label dev\nCreated branch: dev\n Cloned from: v1\n",
|
|
102
|
+
"$ xano branch create -l feature-auth -s dev -d \"Authentication feature\"\nCreated branch: feature-auth\n Cloned from: dev\n Description: Authentication feature\n",
|
|
103
|
+
"$ 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"
|
|
110
104
|
],
|
|
111
105
|
"flags": {
|
|
112
106
|
"profile": {
|
|
@@ -130,7 +124,7 @@
|
|
|
130
124
|
},
|
|
131
125
|
"color": {
|
|
132
126
|
"char": "c",
|
|
133
|
-
"description": "
|
|
127
|
+
"description": "Color hex code for the branch (e.g., \"#ebc346\")",
|
|
134
128
|
"name": "color",
|
|
135
129
|
"required": false,
|
|
136
130
|
"hasDynamicHelp": false,
|
|
@@ -139,7 +133,7 @@
|
|
|
139
133
|
},
|
|
140
134
|
"description": {
|
|
141
135
|
"char": "d",
|
|
142
|
-
"description": "
|
|
136
|
+
"description": "Description for the new branch",
|
|
143
137
|
"name": "description",
|
|
144
138
|
"required": false,
|
|
145
139
|
"hasDynamicHelp": false,
|
|
@@ -148,9 +142,9 @@
|
|
|
148
142
|
},
|
|
149
143
|
"label": {
|
|
150
144
|
"char": "l",
|
|
151
|
-
"description": "
|
|
145
|
+
"description": "Label for the new branch",
|
|
152
146
|
"name": "label",
|
|
153
|
-
"required":
|
|
147
|
+
"required": true,
|
|
154
148
|
"hasDynamicHelp": false,
|
|
155
149
|
"multiple": false,
|
|
156
150
|
"type": "option"
|
|
@@ -169,6 +163,16 @@
|
|
|
169
163
|
],
|
|
170
164
|
"type": "option"
|
|
171
165
|
},
|
|
166
|
+
"source": {
|
|
167
|
+
"char": "s",
|
|
168
|
+
"description": "Source branch to clone from (defaults to \"v1\")",
|
|
169
|
+
"name": "source",
|
|
170
|
+
"required": false,
|
|
171
|
+
"default": "v1",
|
|
172
|
+
"hasDynamicHelp": false,
|
|
173
|
+
"multiple": false,
|
|
174
|
+
"type": "option"
|
|
175
|
+
},
|
|
172
176
|
"workspace": {
|
|
173
177
|
"char": "w",
|
|
174
178
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -181,7 +185,7 @@
|
|
|
181
185
|
},
|
|
182
186
|
"hasDynamicHelp": false,
|
|
183
187
|
"hiddenAliases": [],
|
|
184
|
-
"id": "branch:
|
|
188
|
+
"id": "branch:create",
|
|
185
189
|
"pluginAlias": "@xano/cli",
|
|
186
190
|
"pluginName": "@xano/cli",
|
|
187
191
|
"pluginType": "core",
|
|
@@ -192,7 +196,7 @@
|
|
|
192
196
|
"dist",
|
|
193
197
|
"commands",
|
|
194
198
|
"branch",
|
|
195
|
-
"
|
|
199
|
+
"create",
|
|
196
200
|
"index.js"
|
|
197
201
|
]
|
|
198
202
|
},
|
|
@@ -280,14 +284,20 @@
|
|
|
280
284
|
"index.js"
|
|
281
285
|
]
|
|
282
286
|
},
|
|
283
|
-
"branch:
|
|
287
|
+
"branch:edit": {
|
|
284
288
|
"aliases": [],
|
|
285
|
-
"args": {
|
|
286
|
-
|
|
289
|
+
"args": {
|
|
290
|
+
"branch_label": {
|
|
291
|
+
"description": "Branch label to edit (cannot edit \"v1\" label)",
|
|
292
|
+
"name": "branch_label",
|
|
293
|
+
"required": true
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"description": "Update an existing branch (cannot update \"v1\" label)",
|
|
287
297
|
"examples": [
|
|
288
|
-
"$ xano branch
|
|
289
|
-
"$ xano branch
|
|
290
|
-
"$ xano branch
|
|
298
|
+
"$ xano branch edit dev --label development\nUpdated branch: development\n",
|
|
299
|
+
"$ xano branch edit feature-auth -l feature-authentication --color \"#ff5733\"\nUpdated branch: feature-authentication\n Color: #ff5733\n",
|
|
300
|
+
"$ 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"
|
|
291
301
|
],
|
|
292
302
|
"flags": {
|
|
293
303
|
"profile": {
|
|
@@ -311,7 +321,7 @@
|
|
|
311
321
|
},
|
|
312
322
|
"color": {
|
|
313
323
|
"char": "c",
|
|
314
|
-
"description": "
|
|
324
|
+
"description": "New color hex code for the branch (e.g., \"#ff5733\")",
|
|
315
325
|
"name": "color",
|
|
316
326
|
"required": false,
|
|
317
327
|
"hasDynamicHelp": false,
|
|
@@ -320,7 +330,7 @@
|
|
|
320
330
|
},
|
|
321
331
|
"description": {
|
|
322
332
|
"char": "d",
|
|
323
|
-
"description": "
|
|
333
|
+
"description": "New description for the branch",
|
|
324
334
|
"name": "description",
|
|
325
335
|
"required": false,
|
|
326
336
|
"hasDynamicHelp": false,
|
|
@@ -329,9 +339,9 @@
|
|
|
329
339
|
},
|
|
330
340
|
"label": {
|
|
331
341
|
"char": "l",
|
|
332
|
-
"description": "
|
|
342
|
+
"description": "New label for the branch",
|
|
333
343
|
"name": "label",
|
|
334
|
-
"required":
|
|
344
|
+
"required": false,
|
|
335
345
|
"hasDynamicHelp": false,
|
|
336
346
|
"multiple": false,
|
|
337
347
|
"type": "option"
|
|
@@ -350,16 +360,6 @@
|
|
|
350
360
|
],
|
|
351
361
|
"type": "option"
|
|
352
362
|
},
|
|
353
|
-
"source": {
|
|
354
|
-
"char": "s",
|
|
355
|
-
"description": "Source branch to clone from (defaults to \"v1\")",
|
|
356
|
-
"name": "source",
|
|
357
|
-
"required": false,
|
|
358
|
-
"default": "v1",
|
|
359
|
-
"hasDynamicHelp": false,
|
|
360
|
-
"multiple": false,
|
|
361
|
-
"type": "option"
|
|
362
|
-
},
|
|
363
363
|
"workspace": {
|
|
364
364
|
"char": "w",
|
|
365
365
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
},
|
|
373
373
|
"hasDynamicHelp": false,
|
|
374
374
|
"hiddenAliases": [],
|
|
375
|
-
"id": "branch:
|
|
375
|
+
"id": "branch:edit",
|
|
376
376
|
"pluginAlias": "@xano/cli",
|
|
377
377
|
"pluginName": "@xano/cli",
|
|
378
378
|
"pluginType": "core",
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
"dist",
|
|
384
384
|
"commands",
|
|
385
385
|
"branch",
|
|
386
|
-
"
|
|
386
|
+
"edit",
|
|
387
387
|
"index.js"
|
|
388
388
|
]
|
|
389
389
|
},
|
|
@@ -463,6 +463,73 @@
|
|
|
463
463
|
"index.js"
|
|
464
464
|
]
|
|
465
465
|
},
|
|
466
|
+
"branch:list": {
|
|
467
|
+
"aliases": [],
|
|
468
|
+
"args": {
|
|
469
|
+
"workspace_id": {
|
|
470
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
471
|
+
"name": "workspace_id",
|
|
472
|
+
"required": false
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"description": "List all branches in a workspace",
|
|
476
|
+
"examples": [
|
|
477
|
+
"$ xano branch list\nAvailable branches:\n - v1 (live)\n - dev\n - staging\n",
|
|
478
|
+
"$ xano branch list 123\nAvailable branches:\n - v1 (live)\n - feature-auth\n",
|
|
479
|
+
"$ 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"
|
|
480
|
+
],
|
|
481
|
+
"flags": {
|
|
482
|
+
"profile": {
|
|
483
|
+
"char": "p",
|
|
484
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
485
|
+
"env": "XANO_PROFILE",
|
|
486
|
+
"name": "profile",
|
|
487
|
+
"required": false,
|
|
488
|
+
"hasDynamicHelp": false,
|
|
489
|
+
"multiple": false,
|
|
490
|
+
"type": "option"
|
|
491
|
+
},
|
|
492
|
+
"verbose": {
|
|
493
|
+
"char": "v",
|
|
494
|
+
"description": "Show detailed request/response information",
|
|
495
|
+
"env": "XANO_VERBOSE",
|
|
496
|
+
"name": "verbose",
|
|
497
|
+
"required": false,
|
|
498
|
+
"allowNo": false,
|
|
499
|
+
"type": "boolean"
|
|
500
|
+
},
|
|
501
|
+
"output": {
|
|
502
|
+
"char": "o",
|
|
503
|
+
"description": "Output format",
|
|
504
|
+
"name": "output",
|
|
505
|
+
"required": false,
|
|
506
|
+
"default": "summary",
|
|
507
|
+
"hasDynamicHelp": false,
|
|
508
|
+
"multiple": false,
|
|
509
|
+
"options": [
|
|
510
|
+
"summary",
|
|
511
|
+
"json"
|
|
512
|
+
],
|
|
513
|
+
"type": "option"
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"hasDynamicHelp": false,
|
|
517
|
+
"hiddenAliases": [],
|
|
518
|
+
"id": "branch:list",
|
|
519
|
+
"pluginAlias": "@xano/cli",
|
|
520
|
+
"pluginName": "@xano/cli",
|
|
521
|
+
"pluginType": "core",
|
|
522
|
+
"strict": true,
|
|
523
|
+
"enableJsonFlag": false,
|
|
524
|
+
"isESM": true,
|
|
525
|
+
"relativePath": [
|
|
526
|
+
"dist",
|
|
527
|
+
"commands",
|
|
528
|
+
"branch",
|
|
529
|
+
"list",
|
|
530
|
+
"index.js"
|
|
531
|
+
]
|
|
532
|
+
},
|
|
466
533
|
"branch:set_live": {
|
|
467
534
|
"aliases": [],
|
|
468
535
|
"args": {
|
|
@@ -547,20 +614,16 @@
|
|
|
547
614
|
"index.js"
|
|
548
615
|
]
|
|
549
616
|
},
|
|
550
|
-
"
|
|
617
|
+
"function:create": {
|
|
551
618
|
"aliases": [],
|
|
552
|
-
"args": {
|
|
553
|
-
|
|
554
|
-
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
555
|
-
"name": "workspace_id",
|
|
556
|
-
"required": false
|
|
557
|
-
}
|
|
558
|
-
},
|
|
559
|
-
"description": "List all branches in a workspace",
|
|
619
|
+
"args": {},
|
|
620
|
+
"description": "Create a new function in a workspace",
|
|
560
621
|
"examples": [
|
|
561
|
-
"$ xano
|
|
562
|
-
"$ xano
|
|
563
|
-
"$ xano
|
|
622
|
+
"$ xano function:create -w 40 -f function.xs\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
623
|
+
"$ xano function:create -f function.xs\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
624
|
+
"$ xano function:create -w 40 -f function.xs --edit\n# Opens function.xs in $EDITOR, then creates function with edited content\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
625
|
+
"$ cat function.xs | xano function:create -w 40 --stdin\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
626
|
+
"$ xano function:create -w 40 -f function.xs -o json\n{\n \"id\": 123,\n \"name\": \"my_function\",\n ...\n}\n"
|
|
564
627
|
],
|
|
565
628
|
"flags": {
|
|
566
629
|
"profile": {
|
|
@@ -582,6 +645,29 @@
|
|
|
582
645
|
"allowNo": false,
|
|
583
646
|
"type": "boolean"
|
|
584
647
|
},
|
|
648
|
+
"edit": {
|
|
649
|
+
"char": "e",
|
|
650
|
+
"dependsOn": [
|
|
651
|
+
"file"
|
|
652
|
+
],
|
|
653
|
+
"description": "Open file in editor before creating function (requires --file)",
|
|
654
|
+
"name": "edit",
|
|
655
|
+
"required": false,
|
|
656
|
+
"allowNo": false,
|
|
657
|
+
"type": "boolean"
|
|
658
|
+
},
|
|
659
|
+
"file": {
|
|
660
|
+
"char": "f",
|
|
661
|
+
"description": "Path to file containing XanoScript code",
|
|
662
|
+
"exclusive": [
|
|
663
|
+
"stdin"
|
|
664
|
+
],
|
|
665
|
+
"name": "file",
|
|
666
|
+
"required": false,
|
|
667
|
+
"hasDynamicHelp": false,
|
|
668
|
+
"multiple": false,
|
|
669
|
+
"type": "option"
|
|
670
|
+
},
|
|
585
671
|
"output": {
|
|
586
672
|
"char": "o",
|
|
587
673
|
"description": "Output format",
|
|
@@ -595,11 +681,31 @@
|
|
|
595
681
|
"json"
|
|
596
682
|
],
|
|
597
683
|
"type": "option"
|
|
684
|
+
},
|
|
685
|
+
"stdin": {
|
|
686
|
+
"char": "s",
|
|
687
|
+
"description": "Read XanoScript code from stdin",
|
|
688
|
+
"exclusive": [
|
|
689
|
+
"file"
|
|
690
|
+
],
|
|
691
|
+
"name": "stdin",
|
|
692
|
+
"required": false,
|
|
693
|
+
"allowNo": false,
|
|
694
|
+
"type": "boolean"
|
|
695
|
+
},
|
|
696
|
+
"workspace": {
|
|
697
|
+
"char": "w",
|
|
698
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
699
|
+
"name": "workspace",
|
|
700
|
+
"required": false,
|
|
701
|
+
"hasDynamicHelp": false,
|
|
702
|
+
"multiple": false,
|
|
703
|
+
"type": "option"
|
|
598
704
|
}
|
|
599
705
|
},
|
|
600
706
|
"hasDynamicHelp": false,
|
|
601
707
|
"hiddenAliases": [],
|
|
602
|
-
"id": "
|
|
708
|
+
"id": "function:create",
|
|
603
709
|
"pluginAlias": "@xano/cli",
|
|
604
710
|
"pluginName": "@xano/cli",
|
|
605
711
|
"pluginType": "core",
|
|
@@ -609,8 +715,8 @@
|
|
|
609
715
|
"relativePath": [
|
|
610
716
|
"dist",
|
|
611
717
|
"commands",
|
|
612
|
-
"
|
|
613
|
-
"
|
|
718
|
+
"function",
|
|
719
|
+
"create",
|
|
614
720
|
"index.js"
|
|
615
721
|
]
|
|
616
722
|
},
|
|
@@ -1407,37 +1513,6 @@
|
|
|
1407
1513
|
"index.js"
|
|
1408
1514
|
]
|
|
1409
1515
|
},
|
|
1410
|
-
"profile:set": {
|
|
1411
|
-
"aliases": [],
|
|
1412
|
-
"args": {
|
|
1413
|
-
"name": {
|
|
1414
|
-
"description": "Profile name to set as default",
|
|
1415
|
-
"name": "name",
|
|
1416
|
-
"required": true
|
|
1417
|
-
}
|
|
1418
|
-
},
|
|
1419
|
-
"description": "Set the default profile",
|
|
1420
|
-
"examples": [
|
|
1421
|
-
"$ xano profile set production\nDefault profile set to 'production'\n"
|
|
1422
|
-
],
|
|
1423
|
-
"flags": {},
|
|
1424
|
-
"hasDynamicHelp": false,
|
|
1425
|
-
"hiddenAliases": [],
|
|
1426
|
-
"id": "profile:set",
|
|
1427
|
-
"pluginAlias": "@xano/cli",
|
|
1428
|
-
"pluginName": "@xano/cli",
|
|
1429
|
-
"pluginType": "core",
|
|
1430
|
-
"strict": true,
|
|
1431
|
-
"enableJsonFlag": false,
|
|
1432
|
-
"isESM": true,
|
|
1433
|
-
"relativePath": [
|
|
1434
|
-
"dist",
|
|
1435
|
-
"commands",
|
|
1436
|
-
"profile",
|
|
1437
|
-
"set",
|
|
1438
|
-
"index.js"
|
|
1439
|
-
]
|
|
1440
|
-
},
|
|
1441
1516
|
"profile:me": {
|
|
1442
1517
|
"aliases": [],
|
|
1443
1518
|
"args": {},
|
|
@@ -1499,15 +1574,46 @@
|
|
|
1499
1574
|
"index.js"
|
|
1500
1575
|
]
|
|
1501
1576
|
},
|
|
1502
|
-
"profile:
|
|
1577
|
+
"profile:set": {
|
|
1503
1578
|
"aliases": [],
|
|
1504
|
-
"args": {
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1579
|
+
"args": {
|
|
1580
|
+
"name": {
|
|
1581
|
+
"description": "Profile name to set as default",
|
|
1582
|
+
"name": "name",
|
|
1583
|
+
"required": true
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"description": "Set the default profile",
|
|
1587
|
+
"examples": [
|
|
1588
|
+
"$ xano profile set production\nDefault profile set to 'production'\n"
|
|
1589
|
+
],
|
|
1590
|
+
"flags": {},
|
|
1591
|
+
"hasDynamicHelp": false,
|
|
1592
|
+
"hiddenAliases": [],
|
|
1593
|
+
"id": "profile:set",
|
|
1594
|
+
"pluginAlias": "@xano/cli",
|
|
1595
|
+
"pluginName": "@xano/cli",
|
|
1596
|
+
"pluginType": "core",
|
|
1597
|
+
"strict": true,
|
|
1598
|
+
"enableJsonFlag": false,
|
|
1599
|
+
"isESM": true,
|
|
1600
|
+
"relativePath": [
|
|
1601
|
+
"dist",
|
|
1602
|
+
"commands",
|
|
1603
|
+
"profile",
|
|
1604
|
+
"set",
|
|
1605
|
+
"index.js"
|
|
1606
|
+
]
|
|
1607
|
+
},
|
|
1608
|
+
"profile:token": {
|
|
1609
|
+
"aliases": [],
|
|
1610
|
+
"args": {},
|
|
1611
|
+
"description": "Print the access token for the default profile",
|
|
1612
|
+
"examples": [
|
|
1613
|
+
"$ xano profile:token\neyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...\n",
|
|
1614
|
+
"$ xano profile:token | pbcopy\n# Copies the token to clipboard on macOS\n"
|
|
1615
|
+
],
|
|
1616
|
+
"flags": {},
|
|
1511
1617
|
"hasDynamicHelp": false,
|
|
1512
1618
|
"hiddenAliases": [],
|
|
1513
1619
|
"id": "profile:token",
|
|
@@ -2129,20 +2235,13 @@
|
|
|
2129
2235
|
"index.js"
|
|
2130
2236
|
]
|
|
2131
2237
|
},
|
|
2132
|
-
"release:
|
|
2238
|
+
"release:list": {
|
|
2133
2239
|
"aliases": [],
|
|
2134
|
-
"args": {
|
|
2135
|
-
|
|
2136
|
-
"description": "Output directory for pulled documents",
|
|
2137
|
-
"name": "directory",
|
|
2138
|
-
"required": true
|
|
2139
|
-
}
|
|
2140
|
-
},
|
|
2141
|
-
"description": "Pull a release multidoc from the Xano Metadata API and split into individual files",
|
|
2240
|
+
"args": {},
|
|
2241
|
+
"description": "List all releases in a workspace",
|
|
2142
2242
|
"examples": [
|
|
2143
|
-
"$ xano release
|
|
2144
|
-
"$ xano release
|
|
2145
|
-
"$ xano release pull ./backup -r v1.0 --profile production --env --records\nPulled 58 documents from release 'v1.0' to ./backup\n"
|
|
2243
|
+
"$ xano release list\nReleases in workspace 5:\n - v1.0 (ID: 10) - main\n - v1.1-hotfix (ID: 11) - main [hotfix]\n",
|
|
2244
|
+
"$ xano release list -w 5 --output json"
|
|
2146
2245
|
],
|
|
2147
2246
|
"flags": {
|
|
2148
2247
|
"profile": {
|
|
@@ -2164,32 +2263,23 @@
|
|
|
2164
2263
|
"allowNo": false,
|
|
2165
2264
|
"type": "boolean"
|
|
2166
2265
|
},
|
|
2167
|
-
"
|
|
2168
|
-
"
|
|
2169
|
-
"
|
|
2170
|
-
"
|
|
2171
|
-
"allowNo": false,
|
|
2172
|
-
"type": "boolean"
|
|
2173
|
-
},
|
|
2174
|
-
"records": {
|
|
2175
|
-
"description": "Include records",
|
|
2176
|
-
"name": "records",
|
|
2266
|
+
"output": {
|
|
2267
|
+
"char": "o",
|
|
2268
|
+
"description": "Output format",
|
|
2269
|
+
"name": "output",
|
|
2177
2270
|
"required": false,
|
|
2178
|
-
"
|
|
2179
|
-
"type": "boolean"
|
|
2180
|
-
},
|
|
2181
|
-
"release": {
|
|
2182
|
-
"char": "r",
|
|
2183
|
-
"description": "Release name to pull from",
|
|
2184
|
-
"name": "release",
|
|
2185
|
-
"required": true,
|
|
2271
|
+
"default": "summary",
|
|
2186
2272
|
"hasDynamicHelp": false,
|
|
2187
2273
|
"multiple": false,
|
|
2274
|
+
"options": [
|
|
2275
|
+
"summary",
|
|
2276
|
+
"json"
|
|
2277
|
+
],
|
|
2188
2278
|
"type": "option"
|
|
2189
2279
|
},
|
|
2190
2280
|
"workspace": {
|
|
2191
2281
|
"char": "w",
|
|
2192
|
-
"description": "Workspace ID (
|
|
2282
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
2193
2283
|
"name": "workspace",
|
|
2194
2284
|
"required": false,
|
|
2195
2285
|
"hasDynamicHelp": false,
|
|
@@ -2199,7 +2289,7 @@
|
|
|
2199
2289
|
},
|
|
2200
2290
|
"hasDynamicHelp": false,
|
|
2201
2291
|
"hiddenAliases": [],
|
|
2202
|
-
"id": "release:
|
|
2292
|
+
"id": "release:list",
|
|
2203
2293
|
"pluginAlias": "@xano/cli",
|
|
2204
2294
|
"pluginName": "@xano/cli",
|
|
2205
2295
|
"pluginType": "core",
|
|
@@ -2210,17 +2300,24 @@
|
|
|
2210
2300
|
"dist",
|
|
2211
2301
|
"commands",
|
|
2212
2302
|
"release",
|
|
2213
|
-
"
|
|
2303
|
+
"list",
|
|
2214
2304
|
"index.js"
|
|
2215
2305
|
]
|
|
2216
2306
|
},
|
|
2217
|
-
"release:
|
|
2307
|
+
"release:pull": {
|
|
2218
2308
|
"aliases": [],
|
|
2219
|
-
"args": {
|
|
2220
|
-
|
|
2309
|
+
"args": {
|
|
2310
|
+
"directory": {
|
|
2311
|
+
"description": "Output directory for pulled documents",
|
|
2312
|
+
"name": "directory",
|
|
2313
|
+
"required": true
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
"description": "Pull a release multidoc from the Xano Metadata API and split into individual files",
|
|
2221
2317
|
"examples": [
|
|
2222
|
-
"$ xano release
|
|
2223
|
-
"$ xano release
|
|
2318
|
+
"$ xano release pull ./my-release -r v1.0\nPulled 42 documents from release 'v1.0' to ./my-release\n",
|
|
2319
|
+
"$ xano release pull ./output -r v1.0 -w 40\nPulled 15 documents from release 'v1.0' to ./output\n",
|
|
2320
|
+
"$ xano release pull ./backup -r v1.0 --profile production --env --records\nPulled 58 documents from release 'v1.0' to ./backup\n"
|
|
2224
2321
|
],
|
|
2225
2322
|
"flags": {
|
|
2226
2323
|
"profile": {
|
|
@@ -2242,23 +2339,32 @@
|
|
|
2242
2339
|
"allowNo": false,
|
|
2243
2340
|
"type": "boolean"
|
|
2244
2341
|
},
|
|
2245
|
-
"
|
|
2246
|
-
"
|
|
2247
|
-
"
|
|
2248
|
-
"name": "output",
|
|
2342
|
+
"env": {
|
|
2343
|
+
"description": "Include environment variables",
|
|
2344
|
+
"name": "env",
|
|
2249
2345
|
"required": false,
|
|
2250
|
-
"
|
|
2346
|
+
"allowNo": false,
|
|
2347
|
+
"type": "boolean"
|
|
2348
|
+
},
|
|
2349
|
+
"records": {
|
|
2350
|
+
"description": "Include records",
|
|
2351
|
+
"name": "records",
|
|
2352
|
+
"required": false,
|
|
2353
|
+
"allowNo": false,
|
|
2354
|
+
"type": "boolean"
|
|
2355
|
+
},
|
|
2356
|
+
"release": {
|
|
2357
|
+
"char": "r",
|
|
2358
|
+
"description": "Release name to pull from",
|
|
2359
|
+
"name": "release",
|
|
2360
|
+
"required": true,
|
|
2251
2361
|
"hasDynamicHelp": false,
|
|
2252
2362
|
"multiple": false,
|
|
2253
|
-
"options": [
|
|
2254
|
-
"summary",
|
|
2255
|
-
"json"
|
|
2256
|
-
],
|
|
2257
2363
|
"type": "option"
|
|
2258
2364
|
},
|
|
2259
2365
|
"workspace": {
|
|
2260
2366
|
"char": "w",
|
|
2261
|
-
"description": "Workspace ID (
|
|
2367
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
2262
2368
|
"name": "workspace",
|
|
2263
2369
|
"required": false,
|
|
2264
2370
|
"hasDynamicHelp": false,
|
|
@@ -2268,7 +2374,7 @@
|
|
|
2268
2374
|
},
|
|
2269
2375
|
"hasDynamicHelp": false,
|
|
2270
2376
|
"hiddenAliases": [],
|
|
2271
|
-
"id": "release:
|
|
2377
|
+
"id": "release:pull",
|
|
2272
2378
|
"pluginAlias": "@xano/cli",
|
|
2273
2379
|
"pluginName": "@xano/cli",
|
|
2274
2380
|
"pluginType": "core",
|
|
@@ -2279,7 +2385,7 @@
|
|
|
2279
2385
|
"dist",
|
|
2280
2386
|
"commands",
|
|
2281
2387
|
"release",
|
|
2282
|
-
"
|
|
2388
|
+
"pull",
|
|
2283
2389
|
"index.js"
|
|
2284
2390
|
]
|
|
2285
2391
|
},
|
|
@@ -2630,19 +2736,20 @@
|
|
|
2630
2736
|
"index.js"
|
|
2631
2737
|
]
|
|
2632
2738
|
},
|
|
2633
|
-
"tenant:
|
|
2739
|
+
"tenant:delete": {
|
|
2634
2740
|
"aliases": [],
|
|
2635
2741
|
"args": {
|
|
2636
2742
|
"tenant_name": {
|
|
2637
|
-
"description": "Tenant name to
|
|
2743
|
+
"description": "Tenant name to delete",
|
|
2638
2744
|
"name": "tenant_name",
|
|
2639
2745
|
"required": true
|
|
2640
2746
|
}
|
|
2641
2747
|
},
|
|
2642
|
-
"description": "
|
|
2748
|
+
"description": "Delete a tenant permanently. This destroys all associated infrastructure and cannot be undone.",
|
|
2643
2749
|
"examples": [
|
|
2644
|
-
"$ xano tenant
|
|
2645
|
-
"$ xano tenant
|
|
2750
|
+
"$ xano tenant delete t1234-abcd-xyz1\nAre you sure you want to delete tenant t1234-abcd-xyz1? This action cannot be undone. (y/N) y\nDeleted tenant t1234-abcd-xyz1\n",
|
|
2751
|
+
"$ xano tenant delete t1234-abcd-xyz1 --force\nDeleted tenant t1234-abcd-xyz1\n",
|
|
2752
|
+
"$ xano tenant delete t1234-abcd-xyz1 -f -o json"
|
|
2646
2753
|
],
|
|
2647
2754
|
"flags": {
|
|
2648
2755
|
"profile": {
|
|
@@ -2664,6 +2771,14 @@
|
|
|
2664
2771
|
"allowNo": false,
|
|
2665
2772
|
"type": "boolean"
|
|
2666
2773
|
},
|
|
2774
|
+
"force": {
|
|
2775
|
+
"char": "f",
|
|
2776
|
+
"description": "Skip confirmation prompt",
|
|
2777
|
+
"name": "force",
|
|
2778
|
+
"required": false,
|
|
2779
|
+
"allowNo": false,
|
|
2780
|
+
"type": "boolean"
|
|
2781
|
+
},
|
|
2667
2782
|
"output": {
|
|
2668
2783
|
"char": "o",
|
|
2669
2784
|
"description": "Output format",
|
|
@@ -2678,15 +2793,6 @@
|
|
|
2678
2793
|
],
|
|
2679
2794
|
"type": "option"
|
|
2680
2795
|
},
|
|
2681
|
-
"release": {
|
|
2682
|
-
"char": "r",
|
|
2683
|
-
"description": "Release name to deploy",
|
|
2684
|
-
"name": "release",
|
|
2685
|
-
"required": true,
|
|
2686
|
-
"hasDynamicHelp": false,
|
|
2687
|
-
"multiple": false,
|
|
2688
|
-
"type": "option"
|
|
2689
|
-
},
|
|
2690
2796
|
"workspace": {
|
|
2691
2797
|
"char": "w",
|
|
2692
2798
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -2699,7 +2805,7 @@
|
|
|
2699
2805
|
},
|
|
2700
2806
|
"hasDynamicHelp": false,
|
|
2701
2807
|
"hiddenAliases": [],
|
|
2702
|
-
"id": "tenant:
|
|
2808
|
+
"id": "tenant:delete",
|
|
2703
2809
|
"pluginAlias": "@xano/cli",
|
|
2704
2810
|
"pluginName": "@xano/cli",
|
|
2705
2811
|
"pluginType": "core",
|
|
@@ -2710,7 +2816,7 @@
|
|
|
2710
2816
|
"dist",
|
|
2711
2817
|
"commands",
|
|
2712
2818
|
"tenant",
|
|
2713
|
-
"
|
|
2819
|
+
"delete",
|
|
2714
2820
|
"index.js"
|
|
2715
2821
|
]
|
|
2716
2822
|
},
|
|
@@ -2797,20 +2903,19 @@
|
|
|
2797
2903
|
"index.js"
|
|
2798
2904
|
]
|
|
2799
2905
|
},
|
|
2800
|
-
"tenant:
|
|
2906
|
+
"tenant:deploy_release": {
|
|
2801
2907
|
"aliases": [],
|
|
2802
2908
|
"args": {
|
|
2803
2909
|
"tenant_name": {
|
|
2804
|
-
"description": "Tenant name to
|
|
2910
|
+
"description": "Tenant name to deploy to",
|
|
2805
2911
|
"name": "tenant_name",
|
|
2806
2912
|
"required": true
|
|
2807
2913
|
}
|
|
2808
2914
|
},
|
|
2809
|
-
"description": "
|
|
2915
|
+
"description": "Deploy a release to a tenant",
|
|
2810
2916
|
"examples": [
|
|
2811
|
-
"$ xano tenant
|
|
2812
|
-
"$ xano tenant
|
|
2813
|
-
"$ xano tenant delete t1234-abcd-xyz1 -f -o json"
|
|
2917
|
+
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0\nDeployed release \"v1.0\" to tenant: My Tenant (my-tenant)\n",
|
|
2918
|
+
"$ xano tenant deploy_release t1234-abcd-xyz1 --release v1.0 -o json"
|
|
2814
2919
|
],
|
|
2815
2920
|
"flags": {
|
|
2816
2921
|
"profile": {
|
|
@@ -2832,14 +2937,6 @@
|
|
|
2832
2937
|
"allowNo": false,
|
|
2833
2938
|
"type": "boolean"
|
|
2834
2939
|
},
|
|
2835
|
-
"force": {
|
|
2836
|
-
"char": "f",
|
|
2837
|
-
"description": "Skip confirmation prompt",
|
|
2838
|
-
"name": "force",
|
|
2839
|
-
"required": false,
|
|
2840
|
-
"allowNo": false,
|
|
2841
|
-
"type": "boolean"
|
|
2842
|
-
},
|
|
2843
2940
|
"output": {
|
|
2844
2941
|
"char": "o",
|
|
2845
2942
|
"description": "Output format",
|
|
@@ -2854,6 +2951,15 @@
|
|
|
2854
2951
|
],
|
|
2855
2952
|
"type": "option"
|
|
2856
2953
|
},
|
|
2954
|
+
"release": {
|
|
2955
|
+
"char": "r",
|
|
2956
|
+
"description": "Release name to deploy",
|
|
2957
|
+
"name": "release",
|
|
2958
|
+
"required": true,
|
|
2959
|
+
"hasDynamicHelp": false,
|
|
2960
|
+
"multiple": false,
|
|
2961
|
+
"type": "option"
|
|
2962
|
+
},
|
|
2857
2963
|
"workspace": {
|
|
2858
2964
|
"char": "w",
|
|
2859
2965
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -2866,7 +2972,7 @@
|
|
|
2866
2972
|
},
|
|
2867
2973
|
"hasDynamicHelp": false,
|
|
2868
2974
|
"hiddenAliases": [],
|
|
2869
|
-
"id": "tenant:
|
|
2975
|
+
"id": "tenant:deploy_release",
|
|
2870
2976
|
"pluginAlias": "@xano/cli",
|
|
2871
2977
|
"pluginName": "@xano/cli",
|
|
2872
2978
|
"pluginType": "core",
|
|
@@ -2877,20 +2983,23 @@
|
|
|
2877
2983
|
"dist",
|
|
2878
2984
|
"commands",
|
|
2879
2985
|
"tenant",
|
|
2880
|
-
"
|
|
2986
|
+
"deploy_release",
|
|
2881
2987
|
"index.js"
|
|
2882
2988
|
]
|
|
2883
2989
|
},
|
|
2884
|
-
"
|
|
2990
|
+
"tenant:edit": {
|
|
2885
2991
|
"aliases": [],
|
|
2886
|
-
"args": {
|
|
2887
|
-
|
|
2992
|
+
"args": {
|
|
2993
|
+
"tenant_name": {
|
|
2994
|
+
"description": "Tenant name to edit",
|
|
2995
|
+
"name": "tenant_name",
|
|
2996
|
+
"required": true
|
|
2997
|
+
}
|
|
2998
|
+
},
|
|
2999
|
+
"description": "Edit an existing tenant",
|
|
2888
3000
|
"examples": [
|
|
2889
|
-
"$ xano
|
|
2890
|
-
"$ xano
|
|
2891
|
-
"$ xano function:create -w 40 -f function.xs --edit\n# Opens function.xs in $EDITOR, then creates function with edited content\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
2892
|
-
"$ cat function.xs | xano function:create -w 40 --stdin\nFunction created successfully!\nID: 123\nName: my_function\n",
|
|
2893
|
-
"$ xano function:create -w 40 -f function.xs -o json\n{\n \"id\": 123,\n \"name\": \"my_function\",\n ...\n}\n"
|
|
3001
|
+
"$ xano tenant edit t1234-abcd-xyz1 --display \"New Name\" --description \"Updated description\"\nUpdated tenant: New Name (my-tenant) - ID: 42\n",
|
|
3002
|
+
"$ xano tenant edit t1234-abcd-xyz1 --no-tasks --no-ingress -o json"
|
|
2894
3003
|
],
|
|
2895
3004
|
"flags": {
|
|
2896
3005
|
"profile": {
|
|
@@ -2912,57 +3021,77 @@
|
|
|
2912
3021
|
"allowNo": false,
|
|
2913
3022
|
"type": "boolean"
|
|
2914
3023
|
},
|
|
2915
|
-
"
|
|
2916
|
-
"char": "
|
|
2917
|
-
"
|
|
2918
|
-
|
|
2919
|
-
],
|
|
2920
|
-
"description": "Open file in editor before creating function (requires --file)",
|
|
2921
|
-
"name": "edit",
|
|
2922
|
-
"required": false,
|
|
2923
|
-
"allowNo": false,
|
|
2924
|
-
"type": "boolean"
|
|
2925
|
-
},
|
|
2926
|
-
"file": {
|
|
2927
|
-
"char": "f",
|
|
2928
|
-
"description": "Path to file containing XanoScript code",
|
|
2929
|
-
"exclusive": [
|
|
2930
|
-
"stdin"
|
|
2931
|
-
],
|
|
2932
|
-
"name": "file",
|
|
3024
|
+
"description": {
|
|
3025
|
+
"char": "d",
|
|
3026
|
+
"description": "New description",
|
|
3027
|
+
"name": "description",
|
|
2933
3028
|
"required": false,
|
|
2934
3029
|
"hasDynamicHelp": false,
|
|
2935
3030
|
"multiple": false,
|
|
2936
3031
|
"type": "option"
|
|
2937
3032
|
},
|
|
2938
|
-
"
|
|
2939
|
-
"
|
|
2940
|
-
"
|
|
2941
|
-
"name": "output",
|
|
3033
|
+
"display": {
|
|
3034
|
+
"description": "New display name",
|
|
3035
|
+
"name": "display",
|
|
2942
3036
|
"required": false,
|
|
2943
|
-
"default": "summary",
|
|
2944
3037
|
"hasDynamicHelp": false,
|
|
2945
3038
|
"multiple": false,
|
|
2946
|
-
"options": [
|
|
2947
|
-
"summary",
|
|
2948
|
-
"json"
|
|
2949
|
-
],
|
|
2950
3039
|
"type": "option"
|
|
2951
3040
|
},
|
|
2952
|
-
"
|
|
2953
|
-
"
|
|
2954
|
-
"
|
|
2955
|
-
"
|
|
2956
|
-
|
|
3041
|
+
"domain": {
|
|
3042
|
+
"description": "Custom domain",
|
|
3043
|
+
"name": "domain",
|
|
3044
|
+
"required": false,
|
|
3045
|
+
"hasDynamicHelp": false,
|
|
3046
|
+
"multiple": false,
|
|
3047
|
+
"type": "option"
|
|
3048
|
+
},
|
|
3049
|
+
"ingress": {
|
|
3050
|
+
"description": "Enable/disable ingress",
|
|
3051
|
+
"name": "ingress",
|
|
3052
|
+
"required": false,
|
|
3053
|
+
"allowNo": true,
|
|
3054
|
+
"type": "boolean"
|
|
3055
|
+
},
|
|
3056
|
+
"output": {
|
|
3057
|
+
"char": "o",
|
|
3058
|
+
"description": "Output format",
|
|
3059
|
+
"name": "output",
|
|
3060
|
+
"required": false,
|
|
3061
|
+
"default": "summary",
|
|
3062
|
+
"hasDynamicHelp": false,
|
|
3063
|
+
"multiple": false,
|
|
3064
|
+
"options": [
|
|
3065
|
+
"summary",
|
|
3066
|
+
"json"
|
|
2957
3067
|
],
|
|
2958
|
-
"
|
|
3068
|
+
"type": "option"
|
|
3069
|
+
},
|
|
3070
|
+
"proxy": {
|
|
3071
|
+
"description": "Proxy URL",
|
|
3072
|
+
"name": "proxy",
|
|
2959
3073
|
"required": false,
|
|
2960
|
-
"
|
|
3074
|
+
"hasDynamicHelp": false,
|
|
3075
|
+
"multiple": false,
|
|
3076
|
+
"type": "option"
|
|
3077
|
+
},
|
|
3078
|
+
"rbac": {
|
|
3079
|
+
"description": "Enable/disable RBAC",
|
|
3080
|
+
"name": "rbac",
|
|
3081
|
+
"required": false,
|
|
3082
|
+
"allowNo": true,
|
|
3083
|
+
"type": "boolean"
|
|
3084
|
+
},
|
|
3085
|
+
"tasks": {
|
|
3086
|
+
"description": "Enable/disable background tasks",
|
|
3087
|
+
"name": "tasks",
|
|
3088
|
+
"required": false,
|
|
3089
|
+
"allowNo": true,
|
|
2961
3090
|
"type": "boolean"
|
|
2962
3091
|
},
|
|
2963
3092
|
"workspace": {
|
|
2964
3093
|
"char": "w",
|
|
2965
|
-
"description": "Workspace ID (
|
|
3094
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
2966
3095
|
"name": "workspace",
|
|
2967
3096
|
"required": false,
|
|
2968
3097
|
"hasDynamicHelp": false,
|
|
@@ -2972,7 +3101,7 @@
|
|
|
2972
3101
|
},
|
|
2973
3102
|
"hasDynamicHelp": false,
|
|
2974
3103
|
"hiddenAliases": [],
|
|
2975
|
-
"id": "
|
|
3104
|
+
"id": "tenant:edit",
|
|
2976
3105
|
"pluginAlias": "@xano/cli",
|
|
2977
3106
|
"pluginName": "@xano/cli",
|
|
2978
3107
|
"pluginType": "core",
|
|
@@ -2982,24 +3111,24 @@
|
|
|
2982
3111
|
"relativePath": [
|
|
2983
3112
|
"dist",
|
|
2984
3113
|
"commands",
|
|
2985
|
-
"
|
|
2986
|
-
"
|
|
3114
|
+
"tenant",
|
|
3115
|
+
"edit",
|
|
2987
3116
|
"index.js"
|
|
2988
3117
|
]
|
|
2989
3118
|
},
|
|
2990
|
-
"tenant:
|
|
3119
|
+
"tenant:get": {
|
|
2991
3120
|
"aliases": [],
|
|
2992
3121
|
"args": {
|
|
2993
3122
|
"tenant_name": {
|
|
2994
|
-
"description": "Tenant name to
|
|
3123
|
+
"description": "Tenant name to retrieve",
|
|
2995
3124
|
"name": "tenant_name",
|
|
2996
3125
|
"required": true
|
|
2997
3126
|
}
|
|
2998
3127
|
},
|
|
2999
|
-
"description": "
|
|
3128
|
+
"description": "Get details of a specific tenant",
|
|
3000
3129
|
"examples": [
|
|
3001
|
-
"$ xano tenant
|
|
3002
|
-
"$ xano tenant
|
|
3130
|
+
"$ xano tenant get t1234-abcd-xyz1\nTenant: My Tenant (my-tenant)\n State: ok\n License: tier1\n Domain: my-tenant.xano.io\n Cluster: default\n Release: v1.0\n",
|
|
3131
|
+
"$ xano tenant get t1234-abcd-xyz1 -w 5 -o json"
|
|
3003
3132
|
],
|
|
3004
3133
|
"flags": {
|
|
3005
3134
|
"profile": {
|
|
@@ -3021,38 +3150,6 @@
|
|
|
3021
3150
|
"allowNo": false,
|
|
3022
3151
|
"type": "boolean"
|
|
3023
3152
|
},
|
|
3024
|
-
"description": {
|
|
3025
|
-
"char": "d",
|
|
3026
|
-
"description": "New description",
|
|
3027
|
-
"name": "description",
|
|
3028
|
-
"required": false,
|
|
3029
|
-
"hasDynamicHelp": false,
|
|
3030
|
-
"multiple": false,
|
|
3031
|
-
"type": "option"
|
|
3032
|
-
},
|
|
3033
|
-
"display": {
|
|
3034
|
-
"description": "New display name",
|
|
3035
|
-
"name": "display",
|
|
3036
|
-
"required": false,
|
|
3037
|
-
"hasDynamicHelp": false,
|
|
3038
|
-
"multiple": false,
|
|
3039
|
-
"type": "option"
|
|
3040
|
-
},
|
|
3041
|
-
"domain": {
|
|
3042
|
-
"description": "Custom domain",
|
|
3043
|
-
"name": "domain",
|
|
3044
|
-
"required": false,
|
|
3045
|
-
"hasDynamicHelp": false,
|
|
3046
|
-
"multiple": false,
|
|
3047
|
-
"type": "option"
|
|
3048
|
-
},
|
|
3049
|
-
"ingress": {
|
|
3050
|
-
"description": "Enable/disable ingress",
|
|
3051
|
-
"name": "ingress",
|
|
3052
|
-
"required": false,
|
|
3053
|
-
"allowNo": true,
|
|
3054
|
-
"type": "boolean"
|
|
3055
|
-
},
|
|
3056
3153
|
"output": {
|
|
3057
3154
|
"char": "o",
|
|
3058
3155
|
"description": "Output format",
|
|
@@ -3067,28 +3164,6 @@
|
|
|
3067
3164
|
],
|
|
3068
3165
|
"type": "option"
|
|
3069
3166
|
},
|
|
3070
|
-
"proxy": {
|
|
3071
|
-
"description": "Proxy URL",
|
|
3072
|
-
"name": "proxy",
|
|
3073
|
-
"required": false,
|
|
3074
|
-
"hasDynamicHelp": false,
|
|
3075
|
-
"multiple": false,
|
|
3076
|
-
"type": "option"
|
|
3077
|
-
},
|
|
3078
|
-
"rbac": {
|
|
3079
|
-
"description": "Enable/disable RBAC",
|
|
3080
|
-
"name": "rbac",
|
|
3081
|
-
"required": false,
|
|
3082
|
-
"allowNo": true,
|
|
3083
|
-
"type": "boolean"
|
|
3084
|
-
},
|
|
3085
|
-
"tasks": {
|
|
3086
|
-
"description": "Enable/disable background tasks",
|
|
3087
|
-
"name": "tasks",
|
|
3088
|
-
"required": false,
|
|
3089
|
-
"allowNo": true,
|
|
3090
|
-
"type": "boolean"
|
|
3091
|
-
},
|
|
3092
3167
|
"workspace": {
|
|
3093
3168
|
"char": "w",
|
|
3094
3169
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -3101,7 +3176,7 @@
|
|
|
3101
3176
|
},
|
|
3102
3177
|
"hasDynamicHelp": false,
|
|
3103
3178
|
"hiddenAliases": [],
|
|
3104
|
-
"id": "tenant:
|
|
3179
|
+
"id": "tenant:get",
|
|
3105
3180
|
"pluginAlias": "@xano/cli",
|
|
3106
3181
|
"pluginName": "@xano/cli",
|
|
3107
3182
|
"pluginType": "core",
|
|
@@ -3112,23 +3187,23 @@
|
|
|
3112
3187
|
"dist",
|
|
3113
3188
|
"commands",
|
|
3114
3189
|
"tenant",
|
|
3115
|
-
"
|
|
3190
|
+
"get",
|
|
3116
3191
|
"index.js"
|
|
3117
3192
|
]
|
|
3118
3193
|
},
|
|
3119
|
-
"tenant:
|
|
3194
|
+
"tenant:impersonate": {
|
|
3120
3195
|
"aliases": [],
|
|
3121
3196
|
"args": {
|
|
3122
3197
|
"tenant_name": {
|
|
3123
|
-
"description": "Tenant name to
|
|
3198
|
+
"description": "Tenant name to impersonate",
|
|
3124
3199
|
"name": "tenant_name",
|
|
3125
3200
|
"required": true
|
|
3126
3201
|
}
|
|
3127
3202
|
},
|
|
3128
|
-
"description": "
|
|
3203
|
+
"description": "Impersonate a tenant and open it in the browser",
|
|
3129
3204
|
"examples": [
|
|
3130
|
-
"$ xano tenant
|
|
3131
|
-
"$ xano tenant
|
|
3205
|
+
"$ xano tenant impersonate my-tenant\nOpening browser...\nImpersonation successful!\n",
|
|
3206
|
+
"$ xano tenant impersonate my-tenant -o json"
|
|
3132
3207
|
],
|
|
3133
3208
|
"flags": {
|
|
3134
3209
|
"profile": {
|
|
@@ -3164,6 +3239,14 @@
|
|
|
3164
3239
|
],
|
|
3165
3240
|
"type": "option"
|
|
3166
3241
|
},
|
|
3242
|
+
"url-only": {
|
|
3243
|
+
"char": "u",
|
|
3244
|
+
"description": "Print the URL without opening the browser",
|
|
3245
|
+
"name": "url-only",
|
|
3246
|
+
"required": false,
|
|
3247
|
+
"allowNo": false,
|
|
3248
|
+
"type": "boolean"
|
|
3249
|
+
},
|
|
3167
3250
|
"workspace": {
|
|
3168
3251
|
"char": "w",
|
|
3169
3252
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -3176,7 +3259,7 @@
|
|
|
3176
3259
|
},
|
|
3177
3260
|
"hasDynamicHelp": false,
|
|
3178
3261
|
"hiddenAliases": [],
|
|
3179
|
-
"id": "tenant:
|
|
3262
|
+
"id": "tenant:impersonate",
|
|
3180
3263
|
"pluginAlias": "@xano/cli",
|
|
3181
3264
|
"pluginName": "@xano/cli",
|
|
3182
3265
|
"pluginType": "core",
|
|
@@ -3187,7 +3270,7 @@
|
|
|
3187
3270
|
"dist",
|
|
3188
3271
|
"commands",
|
|
3189
3272
|
"tenant",
|
|
3190
|
-
"
|
|
3273
|
+
"impersonate",
|
|
3191
3274
|
"index.js"
|
|
3192
3275
|
]
|
|
3193
3276
|
},
|
|
@@ -3353,19 +3436,23 @@
|
|
|
3353
3436
|
"index.js"
|
|
3354
3437
|
]
|
|
3355
3438
|
},
|
|
3356
|
-
"
|
|
3439
|
+
"tenant:push": {
|
|
3357
3440
|
"aliases": [],
|
|
3358
3441
|
"args": {
|
|
3359
|
-
"
|
|
3360
|
-
"description": "
|
|
3361
|
-
"name": "
|
|
3442
|
+
"directory": {
|
|
3443
|
+
"description": "Directory containing documents to push (as produced by tenant pull or workspace pull)",
|
|
3444
|
+
"name": "directory",
|
|
3362
3445
|
"required": true
|
|
3363
3446
|
}
|
|
3364
3447
|
},
|
|
3365
|
-
"description": "
|
|
3448
|
+
"description": "Push local documents to a tenant via the Xano Metadata API multidoc endpoint",
|
|
3366
3449
|
"examples": [
|
|
3367
|
-
"$ xano
|
|
3368
|
-
"$ xano
|
|
3450
|
+
"$ xano tenant push ./my-workspace -t my-tenant\nPushed 42 documents to tenant my-tenant from ./my-workspace\n",
|
|
3451
|
+
"$ xano tenant push ./output -t my-tenant -w 40\nPushed 15 documents to tenant my-tenant from ./output\n",
|
|
3452
|
+
"$ xano tenant push ./backup -t my-tenant --profile production\nPushed 58 documents to tenant my-tenant from ./backup\n",
|
|
3453
|
+
"$ xano tenant push ./my-workspace -t my-tenant --no-records\nPush schema only, skip importing table records\n",
|
|
3454
|
+
"$ xano tenant push ./my-workspace -t my-tenant --no-env\nPush without overwriting environment variables\n",
|
|
3455
|
+
"$ xano tenant push ./my-workspace -t my-tenant --truncate\nTruncate all table records before importing\n"
|
|
3369
3456
|
],
|
|
3370
3457
|
"flags": {
|
|
3371
3458
|
"profile": {
|
|
@@ -3387,23 +3474,39 @@
|
|
|
3387
3474
|
"allowNo": false,
|
|
3388
3475
|
"type": "boolean"
|
|
3389
3476
|
},
|
|
3390
|
-
"
|
|
3391
|
-
"
|
|
3392
|
-
"
|
|
3393
|
-
"name": "output",
|
|
3477
|
+
"env": {
|
|
3478
|
+
"description": "Include environment variables in import (default: true, use --no-env to exclude)",
|
|
3479
|
+
"name": "env",
|
|
3394
3480
|
"required": false,
|
|
3395
|
-
"
|
|
3481
|
+
"allowNo": true,
|
|
3482
|
+
"type": "boolean"
|
|
3483
|
+
},
|
|
3484
|
+
"records": {
|
|
3485
|
+
"description": "Include records in import (default: true, use --no-records to exclude)",
|
|
3486
|
+
"name": "records",
|
|
3487
|
+
"required": false,
|
|
3488
|
+
"allowNo": true,
|
|
3489
|
+
"type": "boolean"
|
|
3490
|
+
},
|
|
3491
|
+
"tenant": {
|
|
3492
|
+
"char": "t",
|
|
3493
|
+
"description": "Tenant name to push to",
|
|
3494
|
+
"name": "tenant",
|
|
3495
|
+
"required": true,
|
|
3396
3496
|
"hasDynamicHelp": false,
|
|
3397
3497
|
"multiple": false,
|
|
3398
|
-
"options": [
|
|
3399
|
-
"summary",
|
|
3400
|
-
"json"
|
|
3401
|
-
],
|
|
3402
3498
|
"type": "option"
|
|
3403
3499
|
},
|
|
3500
|
+
"truncate": {
|
|
3501
|
+
"description": "Truncate all table records before importing",
|
|
3502
|
+
"name": "truncate",
|
|
3503
|
+
"required": false,
|
|
3504
|
+
"allowNo": false,
|
|
3505
|
+
"type": "boolean"
|
|
3506
|
+
},
|
|
3404
3507
|
"workspace": {
|
|
3405
3508
|
"char": "w",
|
|
3406
|
-
"description": "Workspace ID (
|
|
3509
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
3407
3510
|
"name": "workspace",
|
|
3408
3511
|
"required": false,
|
|
3409
3512
|
"hasDynamicHelp": false,
|
|
@@ -3413,7 +3516,7 @@
|
|
|
3413
3516
|
},
|
|
3414
3517
|
"hasDynamicHelp": false,
|
|
3415
3518
|
"hiddenAliases": [],
|
|
3416
|
-
"id": "
|
|
3519
|
+
"id": "tenant:push",
|
|
3417
3520
|
"pluginAlias": "@xano/cli",
|
|
3418
3521
|
"pluginName": "@xano/cli",
|
|
3419
3522
|
"pluginType": "core",
|
|
@@ -3423,8 +3526,8 @@
|
|
|
3423
3526
|
"relativePath": [
|
|
3424
3527
|
"dist",
|
|
3425
3528
|
"commands",
|
|
3426
|
-
"
|
|
3427
|
-
"
|
|
3529
|
+
"tenant",
|
|
3530
|
+
"push",
|
|
3428
3531
|
"index.js"
|
|
3429
3532
|
]
|
|
3430
3533
|
},
|
|
@@ -3520,23 +3623,19 @@
|
|
|
3520
3623
|
"index.js"
|
|
3521
3624
|
]
|
|
3522
3625
|
},
|
|
3523
|
-
"
|
|
3626
|
+
"unit_test:run": {
|
|
3524
3627
|
"aliases": [],
|
|
3525
3628
|
"args": {
|
|
3526
|
-
"
|
|
3527
|
-
"description": "
|
|
3528
|
-
"name": "
|
|
3629
|
+
"unit_test_id": {
|
|
3630
|
+
"description": "ID of the unit test to run",
|
|
3631
|
+
"name": "unit_test_id",
|
|
3529
3632
|
"required": true
|
|
3530
3633
|
}
|
|
3531
3634
|
},
|
|
3532
|
-
"description": "
|
|
3635
|
+
"description": "Run a unit test",
|
|
3533
3636
|
"examples": [
|
|
3534
|
-
"$ xano
|
|
3535
|
-
"$ xano
|
|
3536
|
-
"$ xano tenant push ./backup -t my-tenant --profile production\nPushed 58 documents to tenant my-tenant from ./backup\n",
|
|
3537
|
-
"$ xano tenant push ./my-workspace -t my-tenant --no-records\nPush schema only, skip importing table records\n",
|
|
3538
|
-
"$ xano tenant push ./my-workspace -t my-tenant --no-env\nPush without overwriting environment variables\n",
|
|
3539
|
-
"$ xano tenant push ./my-workspace -t my-tenant --truncate\nTruncate all table records before importing\n"
|
|
3637
|
+
"$ xano unit-test run abc-123\nRunning unit test abc-123...\nResult: PASS\n",
|
|
3638
|
+
"$ xano unit-test run abc-123 -o json"
|
|
3540
3639
|
],
|
|
3541
3640
|
"flags": {
|
|
3542
3641
|
"profile": {
|
|
@@ -3558,39 +3657,23 @@
|
|
|
3558
3657
|
"allowNo": false,
|
|
3559
3658
|
"type": "boolean"
|
|
3560
3659
|
},
|
|
3561
|
-
"
|
|
3562
|
-
"
|
|
3563
|
-
"
|
|
3564
|
-
"
|
|
3565
|
-
"allowNo": true,
|
|
3566
|
-
"type": "boolean"
|
|
3567
|
-
},
|
|
3568
|
-
"records": {
|
|
3569
|
-
"description": "Include records in import (default: true, use --no-records to exclude)",
|
|
3570
|
-
"name": "records",
|
|
3660
|
+
"output": {
|
|
3661
|
+
"char": "o",
|
|
3662
|
+
"description": "Output format",
|
|
3663
|
+
"name": "output",
|
|
3571
3664
|
"required": false,
|
|
3572
|
-
"
|
|
3573
|
-
"type": "boolean"
|
|
3574
|
-
},
|
|
3575
|
-
"tenant": {
|
|
3576
|
-
"char": "t",
|
|
3577
|
-
"description": "Tenant name to push to",
|
|
3578
|
-
"name": "tenant",
|
|
3579
|
-
"required": true,
|
|
3665
|
+
"default": "summary",
|
|
3580
3666
|
"hasDynamicHelp": false,
|
|
3581
3667
|
"multiple": false,
|
|
3668
|
+
"options": [
|
|
3669
|
+
"summary",
|
|
3670
|
+
"json"
|
|
3671
|
+
],
|
|
3582
3672
|
"type": "option"
|
|
3583
3673
|
},
|
|
3584
|
-
"truncate": {
|
|
3585
|
-
"description": "Truncate all table records before importing",
|
|
3586
|
-
"name": "truncate",
|
|
3587
|
-
"required": false,
|
|
3588
|
-
"allowNo": false,
|
|
3589
|
-
"type": "boolean"
|
|
3590
|
-
},
|
|
3591
3674
|
"workspace": {
|
|
3592
3675
|
"char": "w",
|
|
3593
|
-
"description": "Workspace ID (
|
|
3676
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
3594
3677
|
"name": "workspace",
|
|
3595
3678
|
"required": false,
|
|
3596
3679
|
"hasDynamicHelp": false,
|
|
@@ -3600,7 +3683,7 @@
|
|
|
3600
3683
|
},
|
|
3601
3684
|
"hasDynamicHelp": false,
|
|
3602
3685
|
"hiddenAliases": [],
|
|
3603
|
-
"id": "
|
|
3686
|
+
"id": "unit_test:run",
|
|
3604
3687
|
"pluginAlias": "@xano/cli",
|
|
3605
3688
|
"pluginName": "@xano/cli",
|
|
3606
3689
|
"pluginType": "core",
|
|
@@ -3610,8 +3693,8 @@
|
|
|
3610
3693
|
"relativePath": [
|
|
3611
3694
|
"dist",
|
|
3612
3695
|
"commands",
|
|
3613
|
-
"
|
|
3614
|
-
"
|
|
3696
|
+
"unit_test",
|
|
3697
|
+
"run",
|
|
3615
3698
|
"index.js"
|
|
3616
3699
|
]
|
|
3617
3700
|
},
|
|
@@ -3873,19 +3956,14 @@
|
|
|
3873
3956
|
"index.js"
|
|
3874
3957
|
]
|
|
3875
3958
|
},
|
|
3876
|
-
"
|
|
3959
|
+
"workflow_test:list": {
|
|
3877
3960
|
"aliases": [],
|
|
3878
|
-
"args": {
|
|
3879
|
-
|
|
3880
|
-
"description": "Tenant name to impersonate",
|
|
3881
|
-
"name": "tenant_name",
|
|
3882
|
-
"required": true
|
|
3883
|
-
}
|
|
3884
|
-
},
|
|
3885
|
-
"description": "Impersonate a tenant and open it in the browser",
|
|
3961
|
+
"args": {},
|
|
3962
|
+
"description": "List all workflow tests in a workspace",
|
|
3886
3963
|
"examples": [
|
|
3887
|
-
"$ xano
|
|
3888
|
-
"$ xano
|
|
3964
|
+
"$ xano workflow-test list\nWorkflow tests in workspace 5:\n - my-test (ID: 1)\n - auth-flow (ID: 2) - Validates auth endpoints\n",
|
|
3965
|
+
"$ xano workflow-test list -w 5 --output json",
|
|
3966
|
+
"$ xano workflow-test list --branch main"
|
|
3889
3967
|
],
|
|
3890
3968
|
"flags": {
|
|
3891
3969
|
"profile": {
|
|
@@ -3907,6 +3985,15 @@
|
|
|
3907
3985
|
"allowNo": false,
|
|
3908
3986
|
"type": "boolean"
|
|
3909
3987
|
},
|
|
3988
|
+
"branch": {
|
|
3989
|
+
"char": "b",
|
|
3990
|
+
"description": "Filter by branch name",
|
|
3991
|
+
"name": "branch",
|
|
3992
|
+
"required": false,
|
|
3993
|
+
"hasDynamicHelp": false,
|
|
3994
|
+
"multiple": false,
|
|
3995
|
+
"type": "option"
|
|
3996
|
+
},
|
|
3910
3997
|
"output": {
|
|
3911
3998
|
"char": "o",
|
|
3912
3999
|
"description": "Output format",
|
|
@@ -3921,14 +4008,6 @@
|
|
|
3921
4008
|
],
|
|
3922
4009
|
"type": "option"
|
|
3923
4010
|
},
|
|
3924
|
-
"url-only": {
|
|
3925
|
-
"char": "u",
|
|
3926
|
-
"description": "Print the URL without opening the browser",
|
|
3927
|
-
"name": "url-only",
|
|
3928
|
-
"required": false,
|
|
3929
|
-
"allowNo": false,
|
|
3930
|
-
"type": "boolean"
|
|
3931
|
-
},
|
|
3932
4011
|
"workspace": {
|
|
3933
4012
|
"char": "w",
|
|
3934
4013
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -3941,7 +4020,7 @@
|
|
|
3941
4020
|
},
|
|
3942
4021
|
"hasDynamicHelp": false,
|
|
3943
4022
|
"hiddenAliases": [],
|
|
3944
|
-
"id": "
|
|
4023
|
+
"id": "workflow_test:list",
|
|
3945
4024
|
"pluginAlias": "@xano/cli",
|
|
3946
4025
|
"pluginName": "@xano/cli",
|
|
3947
4026
|
"pluginType": "core",
|
|
@@ -3951,19 +4030,24 @@
|
|
|
3951
4030
|
"relativePath": [
|
|
3952
4031
|
"dist",
|
|
3953
4032
|
"commands",
|
|
3954
|
-
"
|
|
3955
|
-
"
|
|
4033
|
+
"workflow_test",
|
|
4034
|
+
"list",
|
|
3956
4035
|
"index.js"
|
|
3957
4036
|
]
|
|
3958
4037
|
},
|
|
3959
|
-
"workflow_test:
|
|
4038
|
+
"workflow_test:run": {
|
|
3960
4039
|
"aliases": [],
|
|
3961
|
-
"args": {
|
|
3962
|
-
|
|
4040
|
+
"args": {
|
|
4041
|
+
"workflow_test_id": {
|
|
4042
|
+
"description": "ID of the workflow test to run",
|
|
4043
|
+
"name": "workflow_test_id",
|
|
4044
|
+
"required": true
|
|
4045
|
+
}
|
|
4046
|
+
},
|
|
4047
|
+
"description": "Run a workflow test",
|
|
3963
4048
|
"examples": [
|
|
3964
|
-
"$ xano workflow-test
|
|
3965
|
-
"$ xano workflow-test
|
|
3966
|
-
"$ xano workflow-test list --branch main"
|
|
4049
|
+
"$ xano workflow-test run 1\nRunning workflow test 1...\nResult: PASS (1.234s)\n",
|
|
4050
|
+
"$ xano workflow-test run 1 -o json"
|
|
3967
4051
|
],
|
|
3968
4052
|
"flags": {
|
|
3969
4053
|
"profile": {
|
|
@@ -3985,15 +4069,6 @@
|
|
|
3985
4069
|
"allowNo": false,
|
|
3986
4070
|
"type": "boolean"
|
|
3987
4071
|
},
|
|
3988
|
-
"branch": {
|
|
3989
|
-
"char": "b",
|
|
3990
|
-
"description": "Filter by branch name",
|
|
3991
|
-
"name": "branch",
|
|
3992
|
-
"required": false,
|
|
3993
|
-
"hasDynamicHelp": false,
|
|
3994
|
-
"multiple": false,
|
|
3995
|
-
"type": "option"
|
|
3996
|
-
},
|
|
3997
4072
|
"output": {
|
|
3998
4073
|
"char": "o",
|
|
3999
4074
|
"description": "Output format",
|
|
@@ -4020,7 +4095,7 @@
|
|
|
4020
4095
|
},
|
|
4021
4096
|
"hasDynamicHelp": false,
|
|
4022
4097
|
"hiddenAliases": [],
|
|
4023
|
-
"id": "workflow_test:
|
|
4098
|
+
"id": "workflow_test:run",
|
|
4024
4099
|
"pluginAlias": "@xano/cli",
|
|
4025
4100
|
"pluginName": "@xano/cli",
|
|
4026
4101
|
"pluginType": "core",
|
|
@@ -4031,23 +4106,17 @@
|
|
|
4031
4106
|
"dist",
|
|
4032
4107
|
"commands",
|
|
4033
4108
|
"workflow_test",
|
|
4034
|
-
"
|
|
4109
|
+
"run",
|
|
4035
4110
|
"index.js"
|
|
4036
4111
|
]
|
|
4037
4112
|
},
|
|
4038
|
-
"workflow_test:
|
|
4113
|
+
"workflow_test:run_all": {
|
|
4039
4114
|
"aliases": [],
|
|
4040
|
-
"args": {
|
|
4041
|
-
|
|
4042
|
-
"description": "ID of the workflow test to run",
|
|
4043
|
-
"name": "workflow_test_id",
|
|
4044
|
-
"required": true
|
|
4045
|
-
}
|
|
4046
|
-
},
|
|
4047
|
-
"description": "Run a workflow test",
|
|
4115
|
+
"args": {},
|
|
4116
|
+
"description": "Run all workflow tests in a workspace",
|
|
4048
4117
|
"examples": [
|
|
4049
|
-
"$ xano workflow-test run
|
|
4050
|
-
"$ xano workflow-test run
|
|
4118
|
+
"$ 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",
|
|
4119
|
+
"$ xano workflow-test run-all --branch main -o json"
|
|
4051
4120
|
],
|
|
4052
4121
|
"flags": {
|
|
4053
4122
|
"profile": {
|
|
@@ -4069,6 +4138,15 @@
|
|
|
4069
4138
|
"allowNo": false,
|
|
4070
4139
|
"type": "boolean"
|
|
4071
4140
|
},
|
|
4141
|
+
"branch": {
|
|
4142
|
+
"char": "b",
|
|
4143
|
+
"description": "Filter by branch name",
|
|
4144
|
+
"name": "branch",
|
|
4145
|
+
"required": false,
|
|
4146
|
+
"hasDynamicHelp": false,
|
|
4147
|
+
"multiple": false,
|
|
4148
|
+
"type": "option"
|
|
4149
|
+
},
|
|
4072
4150
|
"output": {
|
|
4073
4151
|
"char": "o",
|
|
4074
4152
|
"description": "Output format",
|
|
@@ -4095,7 +4173,7 @@
|
|
|
4095
4173
|
},
|
|
4096
4174
|
"hasDynamicHelp": false,
|
|
4097
4175
|
"hiddenAliases": [],
|
|
4098
|
-
"id": "workflow_test:
|
|
4176
|
+
"id": "workflow_test:run_all",
|
|
4099
4177
|
"pluginAlias": "@xano/cli",
|
|
4100
4178
|
"pluginName": "@xano/cli",
|
|
4101
4179
|
"pluginType": "core",
|
|
@@ -4106,17 +4184,24 @@
|
|
|
4106
4184
|
"dist",
|
|
4107
4185
|
"commands",
|
|
4108
4186
|
"workflow_test",
|
|
4109
|
-
"
|
|
4187
|
+
"run_all",
|
|
4110
4188
|
"index.js"
|
|
4111
4189
|
]
|
|
4112
4190
|
},
|
|
4113
|
-
"
|
|
4191
|
+
"workspace:create": {
|
|
4114
4192
|
"aliases": [],
|
|
4115
|
-
"args": {
|
|
4116
|
-
|
|
4193
|
+
"args": {
|
|
4194
|
+
"name": {
|
|
4195
|
+
"description": "Name of the workspace",
|
|
4196
|
+
"name": "name",
|
|
4197
|
+
"required": true
|
|
4198
|
+
}
|
|
4199
|
+
},
|
|
4200
|
+
"description": "Create a new workspace via the Xano Metadata API",
|
|
4117
4201
|
"examples": [
|
|
4118
|
-
"$ xano
|
|
4119
|
-
"$ xano
|
|
4202
|
+
"$ xano workspace create my-workspace\nCreated workspace: my-workspace (ID: 123)\n",
|
|
4203
|
+
"$ xano workspace create my-app --description \"My application workspace\"\nCreated workspace: my-app (ID: 456)\n Description: My application workspace\n",
|
|
4204
|
+
"$ 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"
|
|
4120
4205
|
],
|
|
4121
4206
|
"flags": {
|
|
4122
4207
|
"profile": {
|
|
@@ -4138,10 +4223,10 @@
|
|
|
4138
4223
|
"allowNo": false,
|
|
4139
4224
|
"type": "boolean"
|
|
4140
4225
|
},
|
|
4141
|
-
"
|
|
4142
|
-
"char": "
|
|
4143
|
-
"description": "
|
|
4144
|
-
"name": "
|
|
4226
|
+
"description": {
|
|
4227
|
+
"char": "d",
|
|
4228
|
+
"description": "Description for the workspace",
|
|
4229
|
+
"name": "description",
|
|
4145
4230
|
"required": false,
|
|
4146
4231
|
"hasDynamicHelp": false,
|
|
4147
4232
|
"multiple": false,
|
|
@@ -4160,20 +4245,11 @@
|
|
|
4160
4245
|
"json"
|
|
4161
4246
|
],
|
|
4162
4247
|
"type": "option"
|
|
4163
|
-
},
|
|
4164
|
-
"workspace": {
|
|
4165
|
-
"char": "w",
|
|
4166
|
-
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
4167
|
-
"name": "workspace",
|
|
4168
|
-
"required": false,
|
|
4169
|
-
"hasDynamicHelp": false,
|
|
4170
|
-
"multiple": false,
|
|
4171
|
-
"type": "option"
|
|
4172
4248
|
}
|
|
4173
4249
|
},
|
|
4174
4250
|
"hasDynamicHelp": false,
|
|
4175
4251
|
"hiddenAliases": [],
|
|
4176
|
-
"id": "
|
|
4252
|
+
"id": "workspace:create",
|
|
4177
4253
|
"pluginAlias": "@xano/cli",
|
|
4178
4254
|
"pluginName": "@xano/cli",
|
|
4179
4255
|
"pluginType": "core",
|
|
@@ -4183,8 +4259,8 @@
|
|
|
4183
4259
|
"relativePath": [
|
|
4184
4260
|
"dist",
|
|
4185
4261
|
"commands",
|
|
4186
|
-
"
|
|
4187
|
-
"
|
|
4262
|
+
"workspace",
|
|
4263
|
+
"create",
|
|
4188
4264
|
"index.js"
|
|
4189
4265
|
]
|
|
4190
4266
|
},
|
|
@@ -4586,20 +4662,27 @@
|
|
|
4586
4662
|
"index.js"
|
|
4587
4663
|
]
|
|
4588
4664
|
},
|
|
4589
|
-
"workspace:
|
|
4665
|
+
"workspace:push": {
|
|
4590
4666
|
"aliases": [],
|
|
4591
4667
|
"args": {
|
|
4592
|
-
"
|
|
4593
|
-
"description": "
|
|
4594
|
-
"name": "
|
|
4668
|
+
"directory": {
|
|
4669
|
+
"description": "Directory containing documents to push (as produced by workspace pull)",
|
|
4670
|
+
"name": "directory",
|
|
4595
4671
|
"required": true
|
|
4596
4672
|
}
|
|
4597
4673
|
},
|
|
4598
|
-
"description": "
|
|
4674
|
+
"description": "Push local documents to a workspace. Shows a preview of changes before pushing unless --yes is specified.",
|
|
4599
4675
|
"examples": [
|
|
4600
|
-
"$ xano workspace
|
|
4601
|
-
"$ xano workspace
|
|
4602
|
-
"$ xano workspace
|
|
4676
|
+
"$ xano workspace push ./my-workspace\nShows preview of changes, requires confirmation\n",
|
|
4677
|
+
"$ xano workspace push ./my-workspace --force\nSkip preview and push immediately (for CI/CD)\n",
|
|
4678
|
+
"$ xano workspace push ./my-workspace --delete\nShows preview including deletions, requires confirmation\n",
|
|
4679
|
+
"$ xano workspace push ./output -w 40\nPushed 15 documents from ./output\n",
|
|
4680
|
+
"$ xano workspace push ./backup --profile production\nPushed 58 documents from ./backup\n",
|
|
4681
|
+
"$ xano workspace push ./my-workspace -b dev\nPushed 42 documents from ./my-workspace\n",
|
|
4682
|
+
"$ xano workspace push ./my-functions --partial\nPush some files without a workspace block (implies --no-delete)\n",
|
|
4683
|
+
"$ xano workspace push ./my-workspace --no-records\nPush schema only, skip importing table records\n",
|
|
4684
|
+
"$ xano workspace push ./my-workspace --no-env\nPush without overwriting environment variables\n",
|
|
4685
|
+
"$ xano workspace push ./my-workspace --truncate\nTruncate all table records before importing\n"
|
|
4603
4686
|
],
|
|
4604
4687
|
"flags": {
|
|
4605
4688
|
"profile": {
|
|
@@ -4621,33 +4704,77 @@
|
|
|
4621
4704
|
"allowNo": false,
|
|
4622
4705
|
"type": "boolean"
|
|
4623
4706
|
},
|
|
4624
|
-
"
|
|
4625
|
-
"char": "
|
|
4626
|
-
"description": "
|
|
4627
|
-
"name": "
|
|
4707
|
+
"branch": {
|
|
4708
|
+
"char": "b",
|
|
4709
|
+
"description": "Branch name (optional if set in profile, defaults to live)",
|
|
4710
|
+
"name": "branch",
|
|
4628
4711
|
"required": false,
|
|
4629
4712
|
"hasDynamicHelp": false,
|
|
4630
4713
|
"multiple": false,
|
|
4631
4714
|
"type": "option"
|
|
4632
4715
|
},
|
|
4633
|
-
"
|
|
4634
|
-
"
|
|
4635
|
-
"
|
|
4636
|
-
"
|
|
4716
|
+
"delete": {
|
|
4717
|
+
"description": "Delete workspace objects not included in the push (default: false)",
|
|
4718
|
+
"name": "delete",
|
|
4719
|
+
"required": false,
|
|
4720
|
+
"allowNo": true,
|
|
4721
|
+
"type": "boolean"
|
|
4722
|
+
},
|
|
4723
|
+
"env": {
|
|
4724
|
+
"description": "Include environment variables in import (default: true, use --no-env to exclude)",
|
|
4725
|
+
"name": "env",
|
|
4726
|
+
"required": false,
|
|
4727
|
+
"allowNo": true,
|
|
4728
|
+
"type": "boolean"
|
|
4729
|
+
},
|
|
4730
|
+
"partial": {
|
|
4731
|
+
"description": "Partial push — workspace block is not required, existing objects are kept (implies --no-delete)",
|
|
4732
|
+
"name": "partial",
|
|
4733
|
+
"required": false,
|
|
4734
|
+
"allowNo": false,
|
|
4735
|
+
"type": "boolean"
|
|
4736
|
+
},
|
|
4737
|
+
"records": {
|
|
4738
|
+
"description": "Include records in import (default: true, use --no-records to exclude)",
|
|
4739
|
+
"name": "records",
|
|
4740
|
+
"required": false,
|
|
4741
|
+
"allowNo": true,
|
|
4742
|
+
"type": "boolean"
|
|
4743
|
+
},
|
|
4744
|
+
"sync-guids": {
|
|
4745
|
+
"description": "Write server-assigned GUIDs back to local files (use --no-sync-guids to skip)",
|
|
4746
|
+
"name": "sync-guids",
|
|
4747
|
+
"required": false,
|
|
4748
|
+
"allowNo": true,
|
|
4749
|
+
"type": "boolean"
|
|
4750
|
+
},
|
|
4751
|
+
"truncate": {
|
|
4752
|
+
"description": "Truncate all table records before importing",
|
|
4753
|
+
"name": "truncate",
|
|
4754
|
+
"required": false,
|
|
4755
|
+
"allowNo": false,
|
|
4756
|
+
"type": "boolean"
|
|
4757
|
+
},
|
|
4758
|
+
"workspace": {
|
|
4759
|
+
"char": "w",
|
|
4760
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
4761
|
+
"name": "workspace",
|
|
4637
4762
|
"required": false,
|
|
4638
|
-
"default": "summary",
|
|
4639
4763
|
"hasDynamicHelp": false,
|
|
4640
4764
|
"multiple": false,
|
|
4641
|
-
"options": [
|
|
4642
|
-
"summary",
|
|
4643
|
-
"json"
|
|
4644
|
-
],
|
|
4645
4765
|
"type": "option"
|
|
4766
|
+
},
|
|
4767
|
+
"force": {
|
|
4768
|
+
"description": "Skip preview and confirmation prompt (for CI/CD pipelines)",
|
|
4769
|
+
"name": "force",
|
|
4770
|
+
"required": false,
|
|
4771
|
+
"allowNo": false,
|
|
4772
|
+
"type": "boolean"
|
|
4646
4773
|
}
|
|
4647
4774
|
},
|
|
4648
4775
|
"hasDynamicHelp": false,
|
|
4649
4776
|
"hiddenAliases": [],
|
|
4650
|
-
"id": "workspace:
|
|
4777
|
+
"id": "workspace:push",
|
|
4651
4778
|
"pluginAlias": "@xano/cli",
|
|
4652
4779
|
"pluginName": "@xano/cli",
|
|
4653
4780
|
"pluginType": "core",
|
|
@@ -4658,7 +4785,7 @@
|
|
|
4658
4785
|
"dist",
|
|
4659
4786
|
"commands",
|
|
4660
4787
|
"workspace",
|
|
4661
|
-
"
|
|
4788
|
+
"push",
|
|
4662
4789
|
"index.js"
|
|
4663
4790
|
]
|
|
4664
4791
|
},
|
|
@@ -4813,27 +4940,26 @@
|
|
|
4813
4940
|
"index.js"
|
|
4814
4941
|
]
|
|
4815
4942
|
},
|
|
4816
|
-
"
|
|
4943
|
+
"static_host:build:get": {
|
|
4817
4944
|
"aliases": [],
|
|
4818
4945
|
"args": {
|
|
4819
|
-
"
|
|
4820
|
-
"description": "
|
|
4821
|
-
"name": "
|
|
4946
|
+
"build_id": {
|
|
4947
|
+
"description": "Build ID",
|
|
4948
|
+
"name": "build_id",
|
|
4949
|
+
"required": true
|
|
4950
|
+
},
|
|
4951
|
+
"static_host": {
|
|
4952
|
+
"description": "Static Host name",
|
|
4953
|
+
"name": "static_host",
|
|
4822
4954
|
"required": true
|
|
4823
4955
|
}
|
|
4824
4956
|
},
|
|
4825
|
-
"description": "
|
|
4957
|
+
"description": "Get details of a specific build for a static host",
|
|
4826
4958
|
"examples": [
|
|
4827
|
-
"$ xano
|
|
4828
|
-
"$ xano
|
|
4829
|
-
"$ xano
|
|
4830
|
-
"$ xano
|
|
4831
|
-
"$ xano workspace push ./backup --profile production\nPushed 58 documents from ./backup\n",
|
|
4832
|
-
"$ xano workspace push ./my-workspace -b dev\nPushed 42 documents from ./my-workspace\n",
|
|
4833
|
-
"$ xano workspace push ./my-functions --partial\nPush some files without a workspace block (implies --no-delete)\n",
|
|
4834
|
-
"$ xano workspace push ./my-workspace --no-records\nPush schema only, skip importing table records\n",
|
|
4835
|
-
"$ xano workspace push ./my-workspace --no-env\nPush without overwriting environment variables\n",
|
|
4836
|
-
"$ xano workspace push ./my-workspace --truncate\nTruncate all table records before importing\n"
|
|
4959
|
+
"$ xano static_host:build:get default 52\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
4960
|
+
"$ xano static_host:build:get default 52 -w 40\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
4961
|
+
"$ xano static_host:build:get myhost 123 --profile production\nBuild Details:\nID: 123\nName: production-build\n",
|
|
4962
|
+
"$ xano static_host:build:get default 52 -o json\n{\n \"id\": 52,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n}\n"
|
|
4837
4963
|
],
|
|
4838
4964
|
"flags": {
|
|
4839
4965
|
"profile": {
|
|
@@ -4855,57 +4981,20 @@
|
|
|
4855
4981
|
"allowNo": false,
|
|
4856
4982
|
"type": "boolean"
|
|
4857
4983
|
},
|
|
4858
|
-
"
|
|
4859
|
-
"char": "
|
|
4860
|
-
"description": "
|
|
4861
|
-
"name": "
|
|
4984
|
+
"output": {
|
|
4985
|
+
"char": "o",
|
|
4986
|
+
"description": "Output format",
|
|
4987
|
+
"name": "output",
|
|
4862
4988
|
"required": false,
|
|
4989
|
+
"default": "summary",
|
|
4863
4990
|
"hasDynamicHelp": false,
|
|
4864
4991
|
"multiple": false,
|
|
4992
|
+
"options": [
|
|
4993
|
+
"summary",
|
|
4994
|
+
"json"
|
|
4995
|
+
],
|
|
4865
4996
|
"type": "option"
|
|
4866
4997
|
},
|
|
4867
|
-
"delete": {
|
|
4868
|
-
"description": "Delete workspace objects not included in the push (default: false)",
|
|
4869
|
-
"name": "delete",
|
|
4870
|
-
"required": false,
|
|
4871
|
-
"allowNo": true,
|
|
4872
|
-
"type": "boolean"
|
|
4873
|
-
},
|
|
4874
|
-
"env": {
|
|
4875
|
-
"description": "Include environment variables in import (default: true, use --no-env to exclude)",
|
|
4876
|
-
"name": "env",
|
|
4877
|
-
"required": false,
|
|
4878
|
-
"allowNo": true,
|
|
4879
|
-
"type": "boolean"
|
|
4880
|
-
},
|
|
4881
|
-
"partial": {
|
|
4882
|
-
"description": "Partial push — workspace block is not required, existing objects are kept (implies --no-delete)",
|
|
4883
|
-
"name": "partial",
|
|
4884
|
-
"required": false,
|
|
4885
|
-
"allowNo": false,
|
|
4886
|
-
"type": "boolean"
|
|
4887
|
-
},
|
|
4888
|
-
"records": {
|
|
4889
|
-
"description": "Include records in import (default: true, use --no-records to exclude)",
|
|
4890
|
-
"name": "records",
|
|
4891
|
-
"required": false,
|
|
4892
|
-
"allowNo": true,
|
|
4893
|
-
"type": "boolean"
|
|
4894
|
-
},
|
|
4895
|
-
"sync-guids": {
|
|
4896
|
-
"description": "Write server-assigned GUIDs back to local files (use --no-sync-guids to skip)",
|
|
4897
|
-
"name": "sync-guids",
|
|
4898
|
-
"required": false,
|
|
4899
|
-
"allowNo": true,
|
|
4900
|
-
"type": "boolean"
|
|
4901
|
-
},
|
|
4902
|
-
"truncate": {
|
|
4903
|
-
"description": "Truncate all table records before importing",
|
|
4904
|
-
"name": "truncate",
|
|
4905
|
-
"required": false,
|
|
4906
|
-
"allowNo": false,
|
|
4907
|
-
"type": "boolean"
|
|
4908
|
-
},
|
|
4909
4998
|
"workspace": {
|
|
4910
4999
|
"char": "w",
|
|
4911
5000
|
"description": "Workspace ID (optional if set in profile)",
|
|
@@ -4914,18 +5003,11 @@
|
|
|
4914
5003
|
"hasDynamicHelp": false,
|
|
4915
5004
|
"multiple": false,
|
|
4916
5005
|
"type": "option"
|
|
4917
|
-
},
|
|
4918
|
-
"force": {
|
|
4919
|
-
"description": "Skip preview and confirmation prompt (for CI/CD pipelines)",
|
|
4920
|
-
"name": "force",
|
|
4921
|
-
"required": false,
|
|
4922
|
-
"allowNo": false,
|
|
4923
|
-
"type": "boolean"
|
|
4924
5006
|
}
|
|
4925
5007
|
},
|
|
4926
5008
|
"hasDynamicHelp": false,
|
|
4927
5009
|
"hiddenAliases": [],
|
|
4928
|
-
"id": "
|
|
5010
|
+
"id": "static_host:build:get",
|
|
4929
5011
|
"pluginAlias": "@xano/cli",
|
|
4930
5012
|
"pluginName": "@xano/cli",
|
|
4931
5013
|
"pluginType": "core",
|
|
@@ -4935,8 +5017,9 @@
|
|
|
4935
5017
|
"relativePath": [
|
|
4936
5018
|
"dist",
|
|
4937
5019
|
"commands",
|
|
4938
|
-
"
|
|
4939
|
-
"
|
|
5020
|
+
"static_host",
|
|
5021
|
+
"build",
|
|
5022
|
+
"get",
|
|
4940
5023
|
"index.js"
|
|
4941
5024
|
]
|
|
4942
5025
|
},
|
|
@@ -5114,204 +5197,28 @@
|
|
|
5114
5197
|
"enableJsonFlag": false,
|
|
5115
5198
|
"isESM": true,
|
|
5116
5199
|
"relativePath": [
|
|
5117
|
-
"dist",
|
|
5118
|
-
"commands",
|
|
5119
|
-
"tenant",
|
|
5120
|
-
"backup",
|
|
5121
|
-
"create",
|
|
5122
|
-
"index.js"
|
|
5123
|
-
]
|
|
5124
|
-
},
|
|
5125
|
-
"tenant:backup:delete": {
|
|
5126
|
-
"aliases": [],
|
|
5127
|
-
"args": {
|
|
5128
|
-
"tenant_name": {
|
|
5129
|
-
"description": "Tenant name that owns the backup",
|
|
5130
|
-
"name": "tenant_name",
|
|
5131
|
-
"required": true
|
|
5132
|
-
}
|
|
5133
|
-
},
|
|
5134
|
-
"description": "Delete a tenant backup permanently. This action cannot be undone.",
|
|
5135
|
-
"examples": [
|
|
5136
|
-
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10\nAre you sure you want to delete backup #10? This action cannot be undone. (y/N) y\nDeleted backup #10\n",
|
|
5137
|
-
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10 --force",
|
|
5138
|
-
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10 -o json"
|
|
5139
|
-
],
|
|
5140
|
-
"flags": {
|
|
5141
|
-
"profile": {
|
|
5142
|
-
"char": "p",
|
|
5143
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
5144
|
-
"env": "XANO_PROFILE",
|
|
5145
|
-
"name": "profile",
|
|
5146
|
-
"required": false,
|
|
5147
|
-
"hasDynamicHelp": false,
|
|
5148
|
-
"multiple": false,
|
|
5149
|
-
"type": "option"
|
|
5150
|
-
},
|
|
5151
|
-
"verbose": {
|
|
5152
|
-
"char": "v",
|
|
5153
|
-
"description": "Show detailed request/response information",
|
|
5154
|
-
"env": "XANO_VERBOSE",
|
|
5155
|
-
"name": "verbose",
|
|
5156
|
-
"required": false,
|
|
5157
|
-
"allowNo": false,
|
|
5158
|
-
"type": "boolean"
|
|
5159
|
-
},
|
|
5160
|
-
"backup_id": {
|
|
5161
|
-
"description": "Backup ID to delete",
|
|
5162
|
-
"name": "backup_id",
|
|
5163
|
-
"required": true,
|
|
5164
|
-
"hasDynamicHelp": false,
|
|
5165
|
-
"multiple": false,
|
|
5166
|
-
"type": "option"
|
|
5167
|
-
},
|
|
5168
|
-
"force": {
|
|
5169
|
-
"char": "f",
|
|
5170
|
-
"description": "Skip confirmation prompt",
|
|
5171
|
-
"name": "force",
|
|
5172
|
-
"required": false,
|
|
5173
|
-
"allowNo": false,
|
|
5174
|
-
"type": "boolean"
|
|
5175
|
-
},
|
|
5176
|
-
"output": {
|
|
5177
|
-
"char": "o",
|
|
5178
|
-
"description": "Output format",
|
|
5179
|
-
"name": "output",
|
|
5180
|
-
"required": false,
|
|
5181
|
-
"default": "summary",
|
|
5182
|
-
"hasDynamicHelp": false,
|
|
5183
|
-
"multiple": false,
|
|
5184
|
-
"options": [
|
|
5185
|
-
"summary",
|
|
5186
|
-
"json"
|
|
5187
|
-
],
|
|
5188
|
-
"type": "option"
|
|
5189
|
-
},
|
|
5190
|
-
"workspace": {
|
|
5191
|
-
"char": "w",
|
|
5192
|
-
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
5193
|
-
"name": "workspace",
|
|
5194
|
-
"required": false,
|
|
5195
|
-
"hasDynamicHelp": false,
|
|
5196
|
-
"multiple": false,
|
|
5197
|
-
"type": "option"
|
|
5198
|
-
}
|
|
5199
|
-
},
|
|
5200
|
-
"hasDynamicHelp": false,
|
|
5201
|
-
"hiddenAliases": [],
|
|
5202
|
-
"id": "tenant:backup:delete",
|
|
5203
|
-
"pluginAlias": "@xano/cli",
|
|
5204
|
-
"pluginName": "@xano/cli",
|
|
5205
|
-
"pluginType": "core",
|
|
5206
|
-
"strict": true,
|
|
5207
|
-
"enableJsonFlag": false,
|
|
5208
|
-
"isESM": true,
|
|
5209
|
-
"relativePath": [
|
|
5210
|
-
"dist",
|
|
5211
|
-
"commands",
|
|
5212
|
-
"tenant",
|
|
5213
|
-
"backup",
|
|
5214
|
-
"delete",
|
|
5215
|
-
"index.js"
|
|
5216
|
-
]
|
|
5217
|
-
},
|
|
5218
|
-
"static_host:build:get": {
|
|
5219
|
-
"aliases": [],
|
|
5220
|
-
"args": {
|
|
5221
|
-
"build_id": {
|
|
5222
|
-
"description": "Build ID",
|
|
5223
|
-
"name": "build_id",
|
|
5224
|
-
"required": true
|
|
5225
|
-
},
|
|
5226
|
-
"static_host": {
|
|
5227
|
-
"description": "Static Host name",
|
|
5228
|
-
"name": "static_host",
|
|
5229
|
-
"required": true
|
|
5230
|
-
}
|
|
5231
|
-
},
|
|
5232
|
-
"description": "Get details of a specific build for a static host",
|
|
5233
|
-
"examples": [
|
|
5234
|
-
"$ xano static_host:build:get default 52\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
5235
|
-
"$ xano static_host:build:get default 52 -w 40\nBuild Details:\nID: 52\nName: v1.0.0\nStatus: completed\n",
|
|
5236
|
-
"$ xano static_host:build:get myhost 123 --profile production\nBuild Details:\nID: 123\nName: production-build\n",
|
|
5237
|
-
"$ xano static_host:build:get default 52 -o json\n{\n \"id\": 52,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n}\n"
|
|
5238
|
-
],
|
|
5239
|
-
"flags": {
|
|
5240
|
-
"profile": {
|
|
5241
|
-
"char": "p",
|
|
5242
|
-
"description": "Profile to use (uses default profile if not specified)",
|
|
5243
|
-
"env": "XANO_PROFILE",
|
|
5244
|
-
"name": "profile",
|
|
5245
|
-
"required": false,
|
|
5246
|
-
"hasDynamicHelp": false,
|
|
5247
|
-
"multiple": false,
|
|
5248
|
-
"type": "option"
|
|
5249
|
-
},
|
|
5250
|
-
"verbose": {
|
|
5251
|
-
"char": "v",
|
|
5252
|
-
"description": "Show detailed request/response information",
|
|
5253
|
-
"env": "XANO_VERBOSE",
|
|
5254
|
-
"name": "verbose",
|
|
5255
|
-
"required": false,
|
|
5256
|
-
"allowNo": false,
|
|
5257
|
-
"type": "boolean"
|
|
5258
|
-
},
|
|
5259
|
-
"output": {
|
|
5260
|
-
"char": "o",
|
|
5261
|
-
"description": "Output format",
|
|
5262
|
-
"name": "output",
|
|
5263
|
-
"required": false,
|
|
5264
|
-
"default": "summary",
|
|
5265
|
-
"hasDynamicHelp": false,
|
|
5266
|
-
"multiple": false,
|
|
5267
|
-
"options": [
|
|
5268
|
-
"summary",
|
|
5269
|
-
"json"
|
|
5270
|
-
],
|
|
5271
|
-
"type": "option"
|
|
5272
|
-
},
|
|
5273
|
-
"workspace": {
|
|
5274
|
-
"char": "w",
|
|
5275
|
-
"description": "Workspace ID (optional if set in profile)",
|
|
5276
|
-
"name": "workspace",
|
|
5277
|
-
"required": false,
|
|
5278
|
-
"hasDynamicHelp": false,
|
|
5279
|
-
"multiple": false,
|
|
5280
|
-
"type": "option"
|
|
5281
|
-
}
|
|
5282
|
-
},
|
|
5283
|
-
"hasDynamicHelp": false,
|
|
5284
|
-
"hiddenAliases": [],
|
|
5285
|
-
"id": "static_host:build:get",
|
|
5286
|
-
"pluginAlias": "@xano/cli",
|
|
5287
|
-
"pluginName": "@xano/cli",
|
|
5288
|
-
"pluginType": "core",
|
|
5289
|
-
"strict": true,
|
|
5290
|
-
"enableJsonFlag": false,
|
|
5291
|
-
"isESM": true,
|
|
5292
|
-
"relativePath": [
|
|
5293
|
-
"dist",
|
|
5294
|
-
"commands",
|
|
5295
|
-
"static_host",
|
|
5296
|
-
"build",
|
|
5297
|
-
"get",
|
|
5200
|
+
"dist",
|
|
5201
|
+
"commands",
|
|
5202
|
+
"tenant",
|
|
5203
|
+
"backup",
|
|
5204
|
+
"create",
|
|
5298
5205
|
"index.js"
|
|
5299
5206
|
]
|
|
5300
5207
|
},
|
|
5301
|
-
"tenant:backup:
|
|
5208
|
+
"tenant:backup:delete": {
|
|
5302
5209
|
"aliases": [],
|
|
5303
5210
|
"args": {
|
|
5304
5211
|
"tenant_name": {
|
|
5305
|
-
"description": "Tenant name
|
|
5212
|
+
"description": "Tenant name that owns the backup",
|
|
5306
5213
|
"name": "tenant_name",
|
|
5307
5214
|
"required": true
|
|
5308
5215
|
}
|
|
5309
5216
|
},
|
|
5310
|
-
"description": "
|
|
5217
|
+
"description": "Delete a tenant backup permanently. This action cannot be undone.",
|
|
5311
5218
|
"examples": [
|
|
5312
|
-
"$ xano tenant backup
|
|
5313
|
-
"$ xano tenant backup
|
|
5314
|
-
"$ xano tenant backup
|
|
5219
|
+
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10\nAre you sure you want to delete backup #10? This action cannot be undone. (y/N) y\nDeleted backup #10\n",
|
|
5220
|
+
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10 --force",
|
|
5221
|
+
"$ xano tenant backup delete t1234-abcd-xyz1 --backup_id 10 -o json"
|
|
5315
5222
|
],
|
|
5316
5223
|
"flags": {
|
|
5317
5224
|
"profile": {
|
|
@@ -5334,17 +5241,25 @@
|
|
|
5334
5241
|
"type": "boolean"
|
|
5335
5242
|
},
|
|
5336
5243
|
"backup_id": {
|
|
5337
|
-
"description": "Backup ID to
|
|
5244
|
+
"description": "Backup ID to delete",
|
|
5338
5245
|
"name": "backup_id",
|
|
5339
5246
|
"required": true,
|
|
5340
5247
|
"hasDynamicHelp": false,
|
|
5341
5248
|
"multiple": false,
|
|
5342
5249
|
"type": "option"
|
|
5343
5250
|
},
|
|
5344
|
-
"
|
|
5251
|
+
"force": {
|
|
5252
|
+
"char": "f",
|
|
5253
|
+
"description": "Skip confirmation prompt",
|
|
5254
|
+
"name": "force",
|
|
5255
|
+
"required": false,
|
|
5256
|
+
"allowNo": false,
|
|
5257
|
+
"type": "boolean"
|
|
5258
|
+
},
|
|
5259
|
+
"output": {
|
|
5345
5260
|
"char": "o",
|
|
5346
5261
|
"description": "Output format",
|
|
5347
|
-
"name": "
|
|
5262
|
+
"name": "output",
|
|
5348
5263
|
"required": false,
|
|
5349
5264
|
"default": "summary",
|
|
5350
5265
|
"hasDynamicHelp": false,
|
|
@@ -5355,14 +5270,6 @@
|
|
|
5355
5270
|
],
|
|
5356
5271
|
"type": "option"
|
|
5357
5272
|
},
|
|
5358
|
-
"output": {
|
|
5359
|
-
"description": "Output file path (defaults to ./tenant-{name}-backup-{backup_id}.tar.gz)",
|
|
5360
|
-
"name": "output",
|
|
5361
|
-
"required": false,
|
|
5362
|
-
"hasDynamicHelp": false,
|
|
5363
|
-
"multiple": false,
|
|
5364
|
-
"type": "option"
|
|
5365
|
-
},
|
|
5366
5273
|
"workspace": {
|
|
5367
5274
|
"char": "w",
|
|
5368
5275
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -5375,7 +5282,7 @@
|
|
|
5375
5282
|
},
|
|
5376
5283
|
"hasDynamicHelp": false,
|
|
5377
5284
|
"hiddenAliases": [],
|
|
5378
|
-
"id": "tenant:backup:
|
|
5285
|
+
"id": "tenant:backup:delete",
|
|
5379
5286
|
"pluginAlias": "@xano/cli",
|
|
5380
5287
|
"pluginName": "@xano/cli",
|
|
5381
5288
|
"pluginType": "core",
|
|
@@ -5387,23 +5294,24 @@
|
|
|
5387
5294
|
"commands",
|
|
5388
5295
|
"tenant",
|
|
5389
5296
|
"backup",
|
|
5390
|
-
"
|
|
5297
|
+
"delete",
|
|
5391
5298
|
"index.js"
|
|
5392
5299
|
]
|
|
5393
5300
|
},
|
|
5394
|
-
"tenant:backup:
|
|
5301
|
+
"tenant:backup:export": {
|
|
5395
5302
|
"aliases": [],
|
|
5396
5303
|
"args": {
|
|
5397
5304
|
"tenant_name": {
|
|
5398
|
-
"description": "Tenant name to
|
|
5305
|
+
"description": "Tenant name to export backup from",
|
|
5399
5306
|
"name": "tenant_name",
|
|
5400
5307
|
"required": true
|
|
5401
5308
|
}
|
|
5402
5309
|
},
|
|
5403
|
-
"description": "
|
|
5310
|
+
"description": "Export (download) a tenant backup to a local file",
|
|
5404
5311
|
"examples": [
|
|
5405
|
-
"$ xano tenant backup
|
|
5406
|
-
"$ xano tenant backup
|
|
5312
|
+
"$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10\nDownloaded backup #10 to ./tenant-t1234-abcd-xyz1-backup-10.tar.gz\n",
|
|
5313
|
+
"$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 --output ./backups/my-backup.tar.gz",
|
|
5314
|
+
"$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 -o json"
|
|
5407
5315
|
],
|
|
5408
5316
|
"flags": {
|
|
5409
5317
|
"profile": {
|
|
@@ -5425,29 +5333,18 @@
|
|
|
5425
5333
|
"allowNo": false,
|
|
5426
5334
|
"type": "boolean"
|
|
5427
5335
|
},
|
|
5428
|
-
"
|
|
5429
|
-
"
|
|
5430
|
-
"
|
|
5431
|
-
"name": "description",
|
|
5432
|
-
"required": false,
|
|
5433
|
-
"default": "",
|
|
5434
|
-
"hasDynamicHelp": false,
|
|
5435
|
-
"multiple": false,
|
|
5436
|
-
"type": "option"
|
|
5437
|
-
},
|
|
5438
|
-
"file": {
|
|
5439
|
-
"char": "f",
|
|
5440
|
-
"description": "Path to the backup file (.tar.gz)",
|
|
5441
|
-
"name": "file",
|
|
5336
|
+
"backup_id": {
|
|
5337
|
+
"description": "Backup ID to export",
|
|
5338
|
+
"name": "backup_id",
|
|
5442
5339
|
"required": true,
|
|
5443
5340
|
"hasDynamicHelp": false,
|
|
5444
5341
|
"multiple": false,
|
|
5445
5342
|
"type": "option"
|
|
5446
5343
|
},
|
|
5447
|
-
"
|
|
5344
|
+
"format": {
|
|
5448
5345
|
"char": "o",
|
|
5449
5346
|
"description": "Output format",
|
|
5450
|
-
"name": "
|
|
5347
|
+
"name": "format",
|
|
5451
5348
|
"required": false,
|
|
5452
5349
|
"default": "summary",
|
|
5453
5350
|
"hasDynamicHelp": false,
|
|
@@ -5458,6 +5355,14 @@
|
|
|
5458
5355
|
],
|
|
5459
5356
|
"type": "option"
|
|
5460
5357
|
},
|
|
5358
|
+
"output": {
|
|
5359
|
+
"description": "Output file path (defaults to ./tenant-{name}-backup-{backup_id}.tar.gz)",
|
|
5360
|
+
"name": "output",
|
|
5361
|
+
"required": false,
|
|
5362
|
+
"hasDynamicHelp": false,
|
|
5363
|
+
"multiple": false,
|
|
5364
|
+
"type": "option"
|
|
5365
|
+
},
|
|
5461
5366
|
"workspace": {
|
|
5462
5367
|
"char": "w",
|
|
5463
5368
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -5470,7 +5375,7 @@
|
|
|
5470
5375
|
},
|
|
5471
5376
|
"hasDynamicHelp": false,
|
|
5472
5377
|
"hiddenAliases": [],
|
|
5473
|
-
"id": "tenant:backup:
|
|
5378
|
+
"id": "tenant:backup:export",
|
|
5474
5379
|
"pluginAlias": "@xano/cli",
|
|
5475
5380
|
"pluginName": "@xano/cli",
|
|
5476
5381
|
"pluginType": "core",
|
|
@@ -5482,7 +5387,7 @@
|
|
|
5482
5387
|
"commands",
|
|
5483
5388
|
"tenant",
|
|
5484
5389
|
"backup",
|
|
5485
|
-
"
|
|
5390
|
+
"export",
|
|
5486
5391
|
"index.js"
|
|
5487
5392
|
]
|
|
5488
5393
|
},
|
|
@@ -5785,6 +5690,101 @@
|
|
|
5785
5690
|
"index.js"
|
|
5786
5691
|
]
|
|
5787
5692
|
},
|
|
5693
|
+
"tenant:backup:import": {
|
|
5694
|
+
"aliases": [],
|
|
5695
|
+
"args": {
|
|
5696
|
+
"tenant_name": {
|
|
5697
|
+
"description": "Tenant name to import backup into",
|
|
5698
|
+
"name": "tenant_name",
|
|
5699
|
+
"required": true
|
|
5700
|
+
}
|
|
5701
|
+
},
|
|
5702
|
+
"description": "Import a backup file into a tenant",
|
|
5703
|
+
"examples": [
|
|
5704
|
+
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz\nImported backup as #15 for tenant t1234-abcd-xyz1\n",
|
|
5705
|
+
"$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz --description \"Restored from production\" -o json"
|
|
5706
|
+
],
|
|
5707
|
+
"flags": {
|
|
5708
|
+
"profile": {
|
|
5709
|
+
"char": "p",
|
|
5710
|
+
"description": "Profile to use (uses default profile if not specified)",
|
|
5711
|
+
"env": "XANO_PROFILE",
|
|
5712
|
+
"name": "profile",
|
|
5713
|
+
"required": false,
|
|
5714
|
+
"hasDynamicHelp": false,
|
|
5715
|
+
"multiple": false,
|
|
5716
|
+
"type": "option"
|
|
5717
|
+
},
|
|
5718
|
+
"verbose": {
|
|
5719
|
+
"char": "v",
|
|
5720
|
+
"description": "Show detailed request/response information",
|
|
5721
|
+
"env": "XANO_VERBOSE",
|
|
5722
|
+
"name": "verbose",
|
|
5723
|
+
"required": false,
|
|
5724
|
+
"allowNo": false,
|
|
5725
|
+
"type": "boolean"
|
|
5726
|
+
},
|
|
5727
|
+
"description": {
|
|
5728
|
+
"char": "d",
|
|
5729
|
+
"description": "Backup description",
|
|
5730
|
+
"name": "description",
|
|
5731
|
+
"required": false,
|
|
5732
|
+
"default": "",
|
|
5733
|
+
"hasDynamicHelp": false,
|
|
5734
|
+
"multiple": false,
|
|
5735
|
+
"type": "option"
|
|
5736
|
+
},
|
|
5737
|
+
"file": {
|
|
5738
|
+
"char": "f",
|
|
5739
|
+
"description": "Path to the backup file (.tar.gz)",
|
|
5740
|
+
"name": "file",
|
|
5741
|
+
"required": true,
|
|
5742
|
+
"hasDynamicHelp": false,
|
|
5743
|
+
"multiple": false,
|
|
5744
|
+
"type": "option"
|
|
5745
|
+
},
|
|
5746
|
+
"output": {
|
|
5747
|
+
"char": "o",
|
|
5748
|
+
"description": "Output format",
|
|
5749
|
+
"name": "output",
|
|
5750
|
+
"required": false,
|
|
5751
|
+
"default": "summary",
|
|
5752
|
+
"hasDynamicHelp": false,
|
|
5753
|
+
"multiple": false,
|
|
5754
|
+
"options": [
|
|
5755
|
+
"summary",
|
|
5756
|
+
"json"
|
|
5757
|
+
],
|
|
5758
|
+
"type": "option"
|
|
5759
|
+
},
|
|
5760
|
+
"workspace": {
|
|
5761
|
+
"char": "w",
|
|
5762
|
+
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
5763
|
+
"name": "workspace",
|
|
5764
|
+
"required": false,
|
|
5765
|
+
"hasDynamicHelp": false,
|
|
5766
|
+
"multiple": false,
|
|
5767
|
+
"type": "option"
|
|
5768
|
+
}
|
|
5769
|
+
},
|
|
5770
|
+
"hasDynamicHelp": false,
|
|
5771
|
+
"hiddenAliases": [],
|
|
5772
|
+
"id": "tenant:backup:import",
|
|
5773
|
+
"pluginAlias": "@xano/cli",
|
|
5774
|
+
"pluginName": "@xano/cli",
|
|
5775
|
+
"pluginType": "core",
|
|
5776
|
+
"strict": true,
|
|
5777
|
+
"enableJsonFlag": false,
|
|
5778
|
+
"isESM": true,
|
|
5779
|
+
"relativePath": [
|
|
5780
|
+
"dist",
|
|
5781
|
+
"commands",
|
|
5782
|
+
"tenant",
|
|
5783
|
+
"backup",
|
|
5784
|
+
"import",
|
|
5785
|
+
"index.js"
|
|
5786
|
+
]
|
|
5787
|
+
},
|
|
5788
5788
|
"tenant:cluster:delete": {
|
|
5789
5789
|
"aliases": [],
|
|
5790
5790
|
"args": {
|
|
@@ -6536,7 +6536,7 @@
|
|
|
6536
6536
|
"index.js"
|
|
6537
6537
|
]
|
|
6538
6538
|
},
|
|
6539
|
-
"tenant:
|
|
6539
|
+
"tenant:env:set_all": {
|
|
6540
6540
|
"aliases": [],
|
|
6541
6541
|
"args": {
|
|
6542
6542
|
"tenant_name": {
|
|
@@ -6545,12 +6545,11 @@
|
|
|
6545
6545
|
"required": true
|
|
6546
6546
|
}
|
|
6547
6547
|
},
|
|
6548
|
-
"description": "Set
|
|
6548
|
+
"description": "Set all environment variables for a tenant from a YAML file (replaces all existing)",
|
|
6549
6549
|
"examples": [
|
|
6550
|
-
"$ xano tenant
|
|
6551
|
-
"$ xano tenant
|
|
6552
|
-
"$ xano tenant
|
|
6553
|
-
"$ xano tenant license set my-tenant -o json"
|
|
6550
|
+
"$ xano tenant env set_all my-tenant\nReads from env_my-tenant.yaml\n",
|
|
6551
|
+
"$ xano tenant env set_all my-tenant --file ./my-env.yaml",
|
|
6552
|
+
"$ xano tenant env set_all my-tenant -o json"
|
|
6554
6553
|
],
|
|
6555
6554
|
"flags": {
|
|
6556
6555
|
"profile": {
|
|
@@ -6574,9 +6573,6 @@
|
|
|
6574
6573
|
},
|
|
6575
6574
|
"clean": {
|
|
6576
6575
|
"description": "Remove the source file after successful upload",
|
|
6577
|
-
"exclusive": [
|
|
6578
|
-
"value"
|
|
6579
|
-
],
|
|
6580
6576
|
"name": "clean",
|
|
6581
6577
|
"required": false,
|
|
6582
6578
|
"allowNo": false,
|
|
@@ -6584,10 +6580,7 @@
|
|
|
6584
6580
|
},
|
|
6585
6581
|
"file": {
|
|
6586
6582
|
"char": "f",
|
|
6587
|
-
"description": "Path to
|
|
6588
|
-
"exclusive": [
|
|
6589
|
-
"value"
|
|
6590
|
-
],
|
|
6583
|
+
"description": "Path to env file (default: env_<tenant_name>.yaml)",
|
|
6591
6584
|
"name": "file",
|
|
6592
6585
|
"required": false,
|
|
6593
6586
|
"hasDynamicHelp": false,
|
|
@@ -6608,18 +6601,6 @@
|
|
|
6608
6601
|
],
|
|
6609
6602
|
"type": "option"
|
|
6610
6603
|
},
|
|
6611
|
-
"value": {
|
|
6612
|
-
"description": "Inline license value",
|
|
6613
|
-
"exclusive": [
|
|
6614
|
-
"file",
|
|
6615
|
-
"clean"
|
|
6616
|
-
],
|
|
6617
|
-
"name": "value",
|
|
6618
|
-
"required": false,
|
|
6619
|
-
"hasDynamicHelp": false,
|
|
6620
|
-
"multiple": false,
|
|
6621
|
-
"type": "option"
|
|
6622
|
-
},
|
|
6623
6604
|
"workspace": {
|
|
6624
6605
|
"char": "w",
|
|
6625
6606
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -6632,7 +6613,7 @@
|
|
|
6632
6613
|
},
|
|
6633
6614
|
"hasDynamicHelp": false,
|
|
6634
6615
|
"hiddenAliases": [],
|
|
6635
|
-
"id": "tenant:
|
|
6616
|
+
"id": "tenant:env:set_all",
|
|
6636
6617
|
"pluginAlias": "@xano/cli",
|
|
6637
6618
|
"pluginName": "@xano/cli",
|
|
6638
6619
|
"pluginType": "core",
|
|
@@ -6643,8 +6624,8 @@
|
|
|
6643
6624
|
"dist",
|
|
6644
6625
|
"commands",
|
|
6645
6626
|
"tenant",
|
|
6646
|
-
"
|
|
6647
|
-
"
|
|
6627
|
+
"env",
|
|
6628
|
+
"set_all",
|
|
6648
6629
|
"index.js"
|
|
6649
6630
|
]
|
|
6650
6631
|
},
|
|
@@ -6742,7 +6723,7 @@
|
|
|
6742
6723
|
"index.js"
|
|
6743
6724
|
]
|
|
6744
6725
|
},
|
|
6745
|
-
"tenant:
|
|
6726
|
+
"tenant:license:set": {
|
|
6746
6727
|
"aliases": [],
|
|
6747
6728
|
"args": {
|
|
6748
6729
|
"tenant_name": {
|
|
@@ -6751,11 +6732,12 @@
|
|
|
6751
6732
|
"required": true
|
|
6752
6733
|
}
|
|
6753
6734
|
},
|
|
6754
|
-
"description": "Set
|
|
6735
|
+
"description": "Set/update the license for a tenant",
|
|
6755
6736
|
"examples": [
|
|
6756
|
-
"$ xano tenant
|
|
6757
|
-
"$ xano tenant
|
|
6758
|
-
"$ xano tenant
|
|
6737
|
+
"$ xano tenant license set my-tenant\nReads from license_my-tenant.yaml\n",
|
|
6738
|
+
"$ xano tenant license set my-tenant --file ./license.yaml",
|
|
6739
|
+
"$ xano tenant license set my-tenant --value 'key: value'",
|
|
6740
|
+
"$ xano tenant license set my-tenant -o json"
|
|
6759
6741
|
],
|
|
6760
6742
|
"flags": {
|
|
6761
6743
|
"profile": {
|
|
@@ -6779,6 +6761,9 @@
|
|
|
6779
6761
|
},
|
|
6780
6762
|
"clean": {
|
|
6781
6763
|
"description": "Remove the source file after successful upload",
|
|
6764
|
+
"exclusive": [
|
|
6765
|
+
"value"
|
|
6766
|
+
],
|
|
6782
6767
|
"name": "clean",
|
|
6783
6768
|
"required": false,
|
|
6784
6769
|
"allowNo": false,
|
|
@@ -6786,7 +6771,10 @@
|
|
|
6786
6771
|
},
|
|
6787
6772
|
"file": {
|
|
6788
6773
|
"char": "f",
|
|
6789
|
-
"description": "Path to
|
|
6774
|
+
"description": "Path to license file (default: license_<tenant_name>.yaml)",
|
|
6775
|
+
"exclusive": [
|
|
6776
|
+
"value"
|
|
6777
|
+
],
|
|
6790
6778
|
"name": "file",
|
|
6791
6779
|
"required": false,
|
|
6792
6780
|
"hasDynamicHelp": false,
|
|
@@ -6807,6 +6795,18 @@
|
|
|
6807
6795
|
],
|
|
6808
6796
|
"type": "option"
|
|
6809
6797
|
},
|
|
6798
|
+
"value": {
|
|
6799
|
+
"description": "Inline license value",
|
|
6800
|
+
"exclusive": [
|
|
6801
|
+
"file",
|
|
6802
|
+
"clean"
|
|
6803
|
+
],
|
|
6804
|
+
"name": "value",
|
|
6805
|
+
"required": false,
|
|
6806
|
+
"hasDynamicHelp": false,
|
|
6807
|
+
"multiple": false,
|
|
6808
|
+
"type": "option"
|
|
6809
|
+
},
|
|
6810
6810
|
"workspace": {
|
|
6811
6811
|
"char": "w",
|
|
6812
6812
|
"description": "Workspace ID (uses profile workspace if not provided)",
|
|
@@ -6819,7 +6819,7 @@
|
|
|
6819
6819
|
},
|
|
6820
6820
|
"hasDynamicHelp": false,
|
|
6821
6821
|
"hiddenAliases": [],
|
|
6822
|
-
"id": "tenant:
|
|
6822
|
+
"id": "tenant:license:set",
|
|
6823
6823
|
"pluginAlias": "@xano/cli",
|
|
6824
6824
|
"pluginName": "@xano/cli",
|
|
6825
6825
|
"pluginType": "core",
|
|
@@ -6830,8 +6830,8 @@
|
|
|
6830
6830
|
"dist",
|
|
6831
6831
|
"commands",
|
|
6832
6832
|
"tenant",
|
|
6833
|
-
"
|
|
6834
|
-
"
|
|
6833
|
+
"license",
|
|
6834
|
+
"set",
|
|
6835
6835
|
"index.js"
|
|
6836
6836
|
]
|
|
6837
6837
|
},
|
|
@@ -7120,5 +7120,5 @@
|
|
|
7120
7120
|
]
|
|
7121
7121
|
}
|
|
7122
7122
|
},
|
|
7123
|
-
"version": "0.0.69-beta.
|
|
7123
|
+
"version": "0.0.69-beta.3"
|
|
7124
7124
|
}
|