@xano/cli 0.0.55 → 0.0.57

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +1239 -1239
  2. package/package.json +1 -1
@@ -86,90 +86,6 @@
86
86
  "index.js"
87
87
  ]
88
88
  },
89
- "branch:delete": {
90
- "aliases": [],
91
- "args": {
92
- "branch_label": {
93
- "description": "Branch label to delete (cannot delete \"v1\" or the live branch)",
94
- "name": "branch_label",
95
- "required": true
96
- }
97
- },
98
- "description": "Delete a branch (cannot delete \"v1\" or the live branch)",
99
- "examples": [
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
- ],
104
- "flags": {
105
- "profile": {
106
- "char": "p",
107
- "description": "Profile to use (uses default profile if not specified)",
108
- "env": "XANO_PROFILE",
109
- "name": "profile",
110
- "required": false,
111
- "hasDynamicHelp": false,
112
- "multiple": false,
113
- "type": "option"
114
- },
115
- "verbose": {
116
- "char": "v",
117
- "description": "Show detailed request/response information",
118
- "env": "XANO_VERBOSE",
119
- "name": "verbose",
120
- "required": false,
121
- "allowNo": false,
122
- "type": "boolean"
123
- },
124
- "force": {
125
- "char": "f",
126
- "description": "Skip confirmation prompt",
127
- "name": "force",
128
- "required": false,
129
- "allowNo": false,
130
- "type": "boolean"
131
- },
132
- "output": {
133
- "char": "o",
134
- "description": "Output format",
135
- "name": "output",
136
- "required": false,
137
- "default": "summary",
138
- "hasDynamicHelp": false,
139
- "multiple": false,
140
- "options": [
141
- "summary",
142
- "json"
143
- ],
144
- "type": "option"
145
- },
146
- "workspace": {
147
- "char": "w",
148
- "description": "Workspace ID (uses profile workspace if not provided)",
149
- "name": "workspace",
150
- "required": false,
151
- "hasDynamicHelp": false,
152
- "multiple": false,
153
- "type": "option"
154
- }
155
- },
156
- "hasDynamicHelp": false,
157
- "hiddenAliases": [],
158
- "id": "branch:delete",
159
- "pluginAlias": "@xano/cli",
160
- "pluginName": "@xano/cli",
161
- "pluginType": "core",
162
- "strict": true,
163
- "enableJsonFlag": false,
164
- "isESM": true,
165
- "relativePath": [
166
- "dist",
167
- "commands",
168
- "branch",
169
- "delete",
170
- "index.js"
171
- ]
172
- },
173
89
  "branch:create": {
174
90
  "aliases": [],
175
91
  "args": {},
@@ -456,19 +372,20 @@
456
372
  "index.js"
457
373
  ]
458
374
  },
459
- "platform:get": {
375
+ "branch:list": {
460
376
  "aliases": [],
461
377
  "args": {
462
- "platform_id": {
463
- "description": "Platform ID to retrieve",
464
- "name": "platform_id",
465
- "required": true
378
+ "workspace_id": {
379
+ "description": "Workspace ID (uses profile workspace if not provided)",
380
+ "name": "workspace_id",
381
+ "required": false
466
382
  }
467
383
  },
468
- "description": "Get details of a specific platform",
384
+ "description": "List all branches in a workspace",
469
385
  "examples": [
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"
386
+ "$ xano branch list\nAvailable branches:\n - v1 (live)\n - dev\n - staging\n",
387
+ "$ xano branch list 123\nAvailable branches:\n - v1 (live)\n - feature-auth\n",
388
+ "$ 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"
472
389
  ],
473
390
  "flags": {
474
391
  "profile": {
@@ -507,7 +424,7 @@
507
424
  },
508
425
  "hasDynamicHelp": false,
509
426
  "hiddenAliases": [],
510
- "id": "platform:get",
427
+ "id": "branch:list",
511
428
  "pluginAlias": "@xano/cli",
512
429
  "pluginName": "@xano/cli",
513
430
  "pluginType": "core",
@@ -517,25 +434,24 @@
517
434
  "relativePath": [
518
435
  "dist",
519
436
  "commands",
520
- "platform",
521
- "get",
437
+ "branch",
438
+ "list",
522
439
  "index.js"
523
440
  ]
524
441
  },
525
- "branch:set_live": {
442
+ "platform:get": {
526
443
  "aliases": [],
527
444
  "args": {
528
- "branch_label": {
529
- "description": "Branch label to set as live (use \"v1\" for default branch)",
530
- "name": "branch_label",
445
+ "platform_id": {
446
+ "description": "Platform ID to retrieve",
447
+ "name": "platform_id",
531
448
  "required": true
532
449
  }
533
450
  },
534
- "description": "Set a branch as the live (active) branch for API requests",
451
+ "description": "Get details of a specific platform",
535
452
  "examples": [
536
- "$ xano branch set-live staging\nAre you sure you want to set 'staging' as the live branch? (y/N) y\nBranch 'staging' is now live\n",
537
- "$ xano branch set-live v1 --force\nBranch 'v1' is now live\n",
538
- "$ xano branch set-live production -f -o json\n{\n \"created_at\": \"2024-02-10T09:15:00Z\",\n \"label\": \"production\",\n \"backup\": false,\n \"live\": true\n}\n"
453
+ "$ 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",
454
+ "$ xano platform get 23629 -o json"
539
455
  ],
540
456
  "flags": {
541
457
  "profile": {
@@ -557,14 +473,6 @@
557
473
  "allowNo": false,
558
474
  "type": "boolean"
559
475
  },
560
- "force": {
561
- "char": "f",
562
- "description": "Skip confirmation prompt",
563
- "name": "force",
564
- "required": false,
565
- "allowNo": false,
566
- "type": "boolean"
567
- },
568
476
  "output": {
569
477
  "char": "o",
570
478
  "description": "Output format",
@@ -578,20 +486,11 @@
578
486
  "json"
579
487
  ],
580
488
  "type": "option"
581
- },
582
- "workspace": {
583
- "char": "w",
584
- "description": "Workspace ID (uses profile workspace if not provided)",
585
- "name": "workspace",
586
- "required": false,
587
- "hasDynamicHelp": false,
588
- "multiple": false,
589
- "type": "option"
590
489
  }
591
490
  },
592
491
  "hasDynamicHelp": false,
593
492
  "hiddenAliases": [],
594
- "id": "branch:set_live",
493
+ "id": "platform:get",
595
494
  "pluginAlias": "@xano/cli",
596
495
  "pluginName": "@xano/cli",
597
496
  "pluginType": "core",
@@ -601,18 +500,25 @@
601
500
  "relativePath": [
602
501
  "dist",
603
502
  "commands",
604
- "branch",
605
- "set_live",
503
+ "platform",
504
+ "get",
606
505
  "index.js"
607
506
  ]
608
507
  },
609
- "platform:list": {
508
+ "branch:set_live": {
610
509
  "aliases": [],
611
- "args": {},
612
- "description": "List all platforms",
510
+ "args": {
511
+ "branch_label": {
512
+ "description": "Branch label to set as live (use \"v1\" for default branch)",
513
+ "name": "branch_label",
514
+ "required": true
515
+ }
516
+ },
517
+ "description": "Set a branch as the live (active) branch for API requests",
613
518
  "examples": [
614
- "$ xano platform list\nPlatforms:\n ID: 23629 | Helm: 0.1.356 | Created: 2025-11-28\n",
615
- "$ xano platform list --output json"
519
+ "$ xano branch set-live staging\nAre you sure you want to set 'staging' as the live branch? (y/N) y\nBranch 'staging' is now live\n",
520
+ "$ xano branch set-live v1 --force\nBranch 'v1' is now live\n",
521
+ "$ xano branch set-live production -f -o json\n{\n \"created_at\": \"2024-02-10T09:15:00Z\",\n \"label\": \"production\",\n \"backup\": false,\n \"live\": true\n}\n"
616
522
  ],
617
523
  "flags": {
618
524
  "profile": {
@@ -634,6 +540,14 @@
634
540
  "allowNo": false,
635
541
  "type": "boolean"
636
542
  },
543
+ "force": {
544
+ "char": "f",
545
+ "description": "Skip confirmation prompt",
546
+ "name": "force",
547
+ "required": false,
548
+ "allowNo": false,
549
+ "type": "boolean"
550
+ },
637
551
  "output": {
638
552
  "char": "o",
639
553
  "description": "Output format",
@@ -647,11 +561,20 @@
647
561
  "json"
648
562
  ],
649
563
  "type": "option"
564
+ },
565
+ "workspace": {
566
+ "char": "w",
567
+ "description": "Workspace ID (uses profile workspace if not provided)",
568
+ "name": "workspace",
569
+ "required": false,
570
+ "hasDynamicHelp": false,
571
+ "multiple": false,
572
+ "type": "option"
650
573
  }
651
574
  },
652
575
  "hasDynamicHelp": false,
653
576
  "hiddenAliases": [],
654
- "id": "platform:list",
577
+ "id": "branch:set_live",
655
578
  "pluginAlias": "@xano/cli",
656
579
  "pluginName": "@xano/cli",
657
580
  "pluginType": "core",
@@ -661,25 +584,18 @@
661
584
  "relativePath": [
662
585
  "dist",
663
586
  "commands",
664
- "platform",
665
- "list",
587
+ "branch",
588
+ "set_live",
666
589
  "index.js"
667
590
  ]
668
591
  },
669
- "branch:list": {
592
+ "platform:list": {
670
593
  "aliases": [],
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",
594
+ "args": {},
595
+ "description": "List all platforms",
679
596
  "examples": [
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"
597
+ "$ xano platform list\nPlatforms:\n ID: 23629 | Helm: 0.1.356 | Created: 2025-11-28\n",
598
+ "$ xano platform list --output json"
683
599
  ],
684
600
  "flags": {
685
601
  "profile": {
@@ -718,7 +634,7 @@
718
634
  },
719
635
  "hasDynamicHelp": false,
720
636
  "hiddenAliases": [],
721
- "id": "branch:list",
637
+ "id": "platform:list",
722
638
  "pluginAlias": "@xano/cli",
723
639
  "pluginName": "@xano/cli",
724
640
  "pluginType": "core",
@@ -728,7 +644,7 @@
728
644
  "relativePath": [
729
645
  "dist",
730
646
  "commands",
731
- "branch",
647
+ "platform",
732
648
  "list",
733
649
  "index.js"
734
650
  ]
@@ -1264,22 +1180,41 @@
1264
1180
  "index.js"
1265
1181
  ]
1266
1182
  },
1267
- "profile:delete": {
1183
+ "branch:delete": {
1268
1184
  "aliases": [],
1269
1185
  "args": {
1270
- "name": {
1271
- "description": "Profile name to delete",
1272
- "name": "name",
1186
+ "branch_label": {
1187
+ "description": "Branch label to delete (cannot delete \"v1\" or the live branch)",
1188
+ "name": "branch_label",
1273
1189
  "required": true
1274
1190
  }
1275
1191
  },
1276
- "description": "Delete a profile configuration",
1192
+ "description": "Delete a branch (cannot delete \"v1\" or the live branch)",
1277
1193
  "examples": [
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"
1194
+ "$ 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",
1195
+ "$ xano branch delete dev --force\nDeleted branch: dev\n",
1196
+ "$ xano branch delete staging -f -o json\n{\n \"deleted\": true,\n \"branch_label\": \"staging\"\n}\n"
1281
1197
  ],
1282
1198
  "flags": {
1199
+ "profile": {
1200
+ "char": "p",
1201
+ "description": "Profile to use (uses default profile if not specified)",
1202
+ "env": "XANO_PROFILE",
1203
+ "name": "profile",
1204
+ "required": false,
1205
+ "hasDynamicHelp": false,
1206
+ "multiple": false,
1207
+ "type": "option"
1208
+ },
1209
+ "verbose": {
1210
+ "char": "v",
1211
+ "description": "Show detailed request/response information",
1212
+ "env": "XANO_VERBOSE",
1213
+ "name": "verbose",
1214
+ "required": false,
1215
+ "allowNo": false,
1216
+ "type": "boolean"
1217
+ },
1283
1218
  "force": {
1284
1219
  "char": "f",
1285
1220
  "description": "Skip confirmation prompt",
@@ -1287,72 +1222,34 @@
1287
1222
  "required": false,
1288
1223
  "allowNo": false,
1289
1224
  "type": "boolean"
1290
- }
1291
- },
1292
- "hasDynamicHelp": false,
1293
- "hiddenAliases": [],
1294
- "id": "profile:delete",
1295
- "pluginAlias": "@xano/cli",
1296
- "pluginName": "@xano/cli",
1297
- "pluginType": "core",
1298
- "strict": true,
1299
- "enableJsonFlag": false,
1300
- "isESM": true,
1301
- "relativePath": [
1302
- "dist",
1303
- "commands",
1304
- "profile",
1305
- "delete",
1306
- "index.js"
1307
- ]
1308
- },
1309
- "profile:list": {
1310
- "aliases": [],
1311
- "args": {},
1312
- "description": "List all available profile configurations",
1313
- "examples": [
1314
- "$ xano profile:list\nAvailable profiles:\n - default\n - production\n - staging\n - development\n",
1315
- "$ xano profile:list --details\nAvailable profiles:\n\nProfile: default\n Account Origin: https://account.xano.com\n Instance Origin: https://instance.xano.com\n Access Token: ***...***\n Workspace: my-workspace\n Branch: main\n Project: my-project\n\nProfile: production\n Account Origin: https://account.xano.com\n Instance Origin: https://prod-instance.xano.com\n Access Token: ***...***\n",
1316
- "$ xano profile:list -d\nAvailable profiles:\n\nProfile: default\n Account Origin: https://account.xano.com\n Instance Origin: https://instance.xano.com\n Access Token: ***...***\n Workspace: my-workspace\n Branch: main\n Project: my-project\n"
1317
- ],
1318
- "flags": {
1319
- "details": {
1320
- "char": "d",
1321
- "description": "Show detailed information for each profile",
1322
- "name": "details",
1225
+ },
1226
+ "output": {
1227
+ "char": "o",
1228
+ "description": "Output format",
1229
+ "name": "output",
1323
1230
  "required": false,
1324
- "allowNo": false,
1325
- "type": "boolean"
1231
+ "default": "summary",
1232
+ "hasDynamicHelp": false,
1233
+ "multiple": false,
1234
+ "options": [
1235
+ "summary",
1236
+ "json"
1237
+ ],
1238
+ "type": "option"
1239
+ },
1240
+ "workspace": {
1241
+ "char": "w",
1242
+ "description": "Workspace ID (uses profile workspace if not provided)",
1243
+ "name": "workspace",
1244
+ "required": false,
1245
+ "hasDynamicHelp": false,
1246
+ "multiple": false,
1247
+ "type": "option"
1326
1248
  }
1327
1249
  },
1328
1250
  "hasDynamicHelp": false,
1329
1251
  "hiddenAliases": [],
1330
- "id": "profile:list",
1331
- "pluginAlias": "@xano/cli",
1332
- "pluginName": "@xano/cli",
1333
- "pluginType": "core",
1334
- "strict": true,
1335
- "enableJsonFlag": false,
1336
- "isESM": true,
1337
- "relativePath": [
1338
- "dist",
1339
- "commands",
1340
- "profile",
1341
- "list",
1342
- "index.js"
1343
- ]
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",
1252
+ "id": "branch:delete",
1356
1253
  "pluginAlias": "@xano/cli",
1357
1254
  "pluginName": "@xano/cli",
1358
1255
  "pluginType": "core",
@@ -1362,8 +1259,8 @@
1362
1259
  "relativePath": [
1363
1260
  "dist",
1364
1261
  "commands",
1365
- "profile",
1366
- "get",
1262
+ "branch",
1263
+ "delete",
1367
1264
  "index.js"
1368
1265
  ]
1369
1266
  },
@@ -1481,6 +1378,67 @@
1481
1378
  "index.js"
1482
1379
  ]
1483
1380
  },
1381
+ "profile:list": {
1382
+ "aliases": [],
1383
+ "args": {},
1384
+ "description": "List all available profile configurations",
1385
+ "examples": [
1386
+ "$ xano profile:list\nAvailable profiles:\n - default\n - production\n - staging\n - development\n",
1387
+ "$ xano profile:list --details\nAvailable profiles:\n\nProfile: default\n Account Origin: https://account.xano.com\n Instance Origin: https://instance.xano.com\n Access Token: ***...***\n Workspace: my-workspace\n Branch: main\n Project: my-project\n\nProfile: production\n Account Origin: https://account.xano.com\n Instance Origin: https://prod-instance.xano.com\n Access Token: ***...***\n",
1388
+ "$ xano profile:list -d\nAvailable profiles:\n\nProfile: default\n Account Origin: https://account.xano.com\n Instance Origin: https://instance.xano.com\n Access Token: ***...***\n Workspace: my-workspace\n Branch: main\n Project: my-project\n"
1389
+ ],
1390
+ "flags": {
1391
+ "details": {
1392
+ "char": "d",
1393
+ "description": "Show detailed information for each profile",
1394
+ "name": "details",
1395
+ "required": false,
1396
+ "allowNo": false,
1397
+ "type": "boolean"
1398
+ }
1399
+ },
1400
+ "hasDynamicHelp": false,
1401
+ "hiddenAliases": [],
1402
+ "id": "profile:list",
1403
+ "pluginAlias": "@xano/cli",
1404
+ "pluginName": "@xano/cli",
1405
+ "pluginType": "core",
1406
+ "strict": true,
1407
+ "enableJsonFlag": false,
1408
+ "isESM": true,
1409
+ "relativePath": [
1410
+ "dist",
1411
+ "commands",
1412
+ "profile",
1413
+ "list",
1414
+ "index.js"
1415
+ ]
1416
+ },
1417
+ "profile:get": {
1418
+ "aliases": [],
1419
+ "args": {},
1420
+ "description": "Get the current default profile name",
1421
+ "examples": [
1422
+ "$ xano profile get\nproduction\n"
1423
+ ],
1424
+ "flags": {},
1425
+ "hasDynamicHelp": false,
1426
+ "hiddenAliases": [],
1427
+ "id": "profile:get",
1428
+ "pluginAlias": "@xano/cli",
1429
+ "pluginName": "@xano/cli",
1430
+ "pluginType": "core",
1431
+ "strict": true,
1432
+ "enableJsonFlag": false,
1433
+ "isESM": true,
1434
+ "relativePath": [
1435
+ "dist",
1436
+ "commands",
1437
+ "profile",
1438
+ "get",
1439
+ "index.js"
1440
+ ]
1441
+ },
1484
1442
  "profile:me": {
1485
1443
  "aliases": [],
1486
1444
  "args": {},
@@ -1568,23 +1526,34 @@
1568
1526
  "index.js"
1569
1527
  ]
1570
1528
  },
1571
- "profile:set": {
1529
+ "profile:delete": {
1572
1530
  "aliases": [],
1573
1531
  "args": {
1574
1532
  "name": {
1575
- "description": "Profile name to set as default",
1533
+ "description": "Profile name to delete",
1576
1534
  "name": "name",
1577
1535
  "required": true
1578
1536
  }
1579
1537
  },
1580
- "description": "Set the default profile",
1538
+ "description": "Delete a profile configuration",
1581
1539
  "examples": [
1582
- "$ xano profile set production\nDefault profile set to 'production'\n"
1540
+ "$ 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",
1541
+ "$ xano profile:delete old-profile --force\nProfile 'old-profile' deleted successfully from ~/.xano/credentials.yaml\n",
1542
+ "$ xano profile:delete old-profile -f\nProfile 'old-profile' deleted successfully from ~/.xano/credentials.yaml\n"
1583
1543
  ],
1584
- "flags": {},
1544
+ "flags": {
1545
+ "force": {
1546
+ "char": "f",
1547
+ "description": "Skip confirmation prompt",
1548
+ "name": "force",
1549
+ "required": false,
1550
+ "allowNo": false,
1551
+ "type": "boolean"
1552
+ }
1553
+ },
1585
1554
  "hasDynamicHelp": false,
1586
1555
  "hiddenAliases": [],
1587
- "id": "profile:set",
1556
+ "id": "profile:delete",
1588
1557
  "pluginAlias": "@xano/cli",
1589
1558
  "pluginName": "@xano/cli",
1590
1559
  "pluginType": "core",
@@ -1595,22 +1564,27 @@
1595
1564
  "dist",
1596
1565
  "commands",
1597
1566
  "profile",
1598
- "set",
1567
+ "delete",
1599
1568
  "index.js"
1600
1569
  ]
1601
1570
  },
1602
- "profile:workspace": {
1571
+ "profile:set": {
1603
1572
  "aliases": [],
1604
- "args": {},
1605
- "description": "Print the workspace ID for the default profile",
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",
1606
1581
  "examples": [
1607
- "$ xano profile:workspace\nabc123-workspace-id\n",
1608
- "$ xano profile:workspace | pbcopy\n# Copies the workspace ID to clipboard on macOS\n"
1582
+ "$ xano profile set production\nDefault profile set to 'production'\n"
1609
1583
  ],
1610
1584
  "flags": {},
1611
1585
  "hasDynamicHelp": false,
1612
1586
  "hiddenAliases": [],
1613
- "id": "profile:workspace",
1587
+ "id": "profile:set",
1614
1588
  "pluginAlias": "@xano/cli",
1615
1589
  "pluginName": "@xano/cli",
1616
1590
  "pluginType": "core",
@@ -1621,85 +1595,22 @@
1621
1595
  "dist",
1622
1596
  "commands",
1623
1597
  "profile",
1624
- "workspace",
1598
+ "set",
1625
1599
  "index.js"
1626
1600
  ]
1627
1601
  },
1628
- "static_host:list": {
1602
+ "profile:workspace": {
1629
1603
  "aliases": [],
1630
1604
  "args": {},
1631
- "description": "List all static hosts in a workspace from the Xano Metadata API",
1605
+ "description": "Print the workspace ID for the default profile",
1632
1606
  "examples": [
1633
- "$ xano static_host:list -w 40\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
1634
- "$ xano static_host:list --profile production\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
1635
- "$ xano static_host:list -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"my-static-host\",\n \"domain\": \"example.com\"\n }\n]\n",
1636
- "$ xano static_host:list -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"static-host-3\"\n }\n]\n"
1607
+ "$ xano profile:workspace\nabc123-workspace-id\n",
1608
+ "$ xano profile:workspace | pbcopy\n# Copies the workspace ID to clipboard on macOS\n"
1637
1609
  ],
1638
- "flags": {
1639
- "profile": {
1640
- "char": "p",
1641
- "description": "Profile to use (uses default profile if not specified)",
1642
- "env": "XANO_PROFILE",
1643
- "name": "profile",
1644
- "required": false,
1645
- "hasDynamicHelp": false,
1646
- "multiple": false,
1647
- "type": "option"
1648
- },
1649
- "verbose": {
1650
- "char": "v",
1651
- "description": "Show detailed request/response information",
1652
- "env": "XANO_VERBOSE",
1653
- "name": "verbose",
1654
- "required": false,
1655
- "allowNo": false,
1656
- "type": "boolean"
1657
- },
1658
- "output": {
1659
- "char": "o",
1660
- "description": "Output format",
1661
- "name": "output",
1662
- "required": false,
1663
- "default": "summary",
1664
- "hasDynamicHelp": false,
1665
- "multiple": false,
1666
- "options": [
1667
- "summary",
1668
- "json"
1669
- ],
1670
- "type": "option"
1671
- },
1672
- "page": {
1673
- "description": "Page number for pagination",
1674
- "name": "page",
1675
- "required": false,
1676
- "default": 1,
1677
- "hasDynamicHelp": false,
1678
- "multiple": false,
1679
- "type": "option"
1680
- },
1681
- "per_page": {
1682
- "description": "Number of results per page",
1683
- "name": "per_page",
1684
- "required": false,
1685
- "default": 50,
1686
- "hasDynamicHelp": false,
1687
- "multiple": false,
1688
- "type": "option"
1689
- },
1690
- "workspace": {
1691
- "char": "w",
1692
- "description": "Workspace ID (optional if set in profile)",
1693
- "name": "workspace",
1694
- "required": false,
1695
- "hasDynamicHelp": false,
1696
- "multiple": false,
1697
- "type": "option"
1698
- }
1699
- },
1610
+ "flags": {},
1700
1611
  "hasDynamicHelp": false,
1701
1612
  "hiddenAliases": [],
1702
- "id": "static_host:list",
1613
+ "id": "profile:workspace",
1703
1614
  "pluginAlias": "@xano/cli",
1704
1615
  "pluginName": "@xano/cli",
1705
1616
  "pluginType": "core",
@@ -1709,8 +1620,8 @@
1709
1620
  "relativePath": [
1710
1621
  "dist",
1711
1622
  "commands",
1712
- "static_host",
1713
- "list",
1623
+ "profile",
1624
+ "workspace",
1714
1625
  "index.js"
1715
1626
  ]
1716
1627
  },
@@ -1759,117 +1670,6 @@
1759
1670
  "index.js"
1760
1671
  ]
1761
1672
  },
1762
- "release:create": {
1763
- "aliases": [],
1764
- "args": {},
1765
- "description": "Create a new release in a workspace",
1766
- "examples": [
1767
- "$ xano release create --name \"v1.0\" --branch main\nCreated release: v1.0 - ID: 10\n",
1768
- "$ xano release create --name \"v1.1-hotfix\" --branch main --hotfix --description \"Critical fix\" -o json"
1769
- ],
1770
- "flags": {
1771
- "profile": {
1772
- "char": "p",
1773
- "description": "Profile to use (uses default profile if not specified)",
1774
- "env": "XANO_PROFILE",
1775
- "name": "profile",
1776
- "required": false,
1777
- "hasDynamicHelp": false,
1778
- "multiple": false,
1779
- "type": "option"
1780
- },
1781
- "verbose": {
1782
- "char": "v",
1783
- "description": "Show detailed request/response information",
1784
- "env": "XANO_VERBOSE",
1785
- "name": "verbose",
1786
- "required": false,
1787
- "allowNo": false,
1788
- "type": "boolean"
1789
- },
1790
- "branch": {
1791
- "char": "b",
1792
- "description": "Branch to create the release from",
1793
- "name": "branch",
1794
- "required": true,
1795
- "hasDynamicHelp": false,
1796
- "multiple": false,
1797
- "type": "option"
1798
- },
1799
- "description": {
1800
- "char": "d",
1801
- "description": "Release description",
1802
- "name": "description",
1803
- "required": false,
1804
- "hasDynamicHelp": false,
1805
- "multiple": false,
1806
- "type": "option"
1807
- },
1808
- "hotfix": {
1809
- "description": "Mark as a hotfix release",
1810
- "name": "hotfix",
1811
- "required": false,
1812
- "allowNo": false,
1813
- "type": "boolean"
1814
- },
1815
- "name": {
1816
- "char": "n",
1817
- "description": "Name for the release",
1818
- "name": "name",
1819
- "required": true,
1820
- "hasDynamicHelp": false,
1821
- "multiple": false,
1822
- "type": "option"
1823
- },
1824
- "output": {
1825
- "char": "o",
1826
- "description": "Output format",
1827
- "name": "output",
1828
- "required": false,
1829
- "default": "summary",
1830
- "hasDynamicHelp": false,
1831
- "multiple": false,
1832
- "options": [
1833
- "summary",
1834
- "json"
1835
- ],
1836
- "type": "option"
1837
- },
1838
- "table-ids": {
1839
- "description": "Comma-separated table IDs to include",
1840
- "name": "table-ids",
1841
- "required": false,
1842
- "hasDynamicHelp": false,
1843
- "multiple": false,
1844
- "type": "option"
1845
- },
1846
- "workspace": {
1847
- "char": "w",
1848
- "description": "Workspace ID (uses profile workspace if not provided)",
1849
- "name": "workspace",
1850
- "required": false,
1851
- "hasDynamicHelp": false,
1852
- "multiple": false,
1853
- "type": "option"
1854
- }
1855
- },
1856
- "hasDynamicHelp": false,
1857
- "hiddenAliases": [],
1858
- "id": "release:create",
1859
- "pluginAlias": "@xano/cli",
1860
- "pluginName": "@xano/cli",
1861
- "pluginType": "core",
1862
- "strict": true,
1863
- "enableJsonFlag": false,
1864
- "isESM": true,
1865
- "relativePath": [
1866
- "dist",
1867
- "commands",
1868
- "release",
1869
- "create",
1870
- "index.js"
1871
- ]
1872
- },
1873
1673
  "release:delete": {
1874
1674
  "aliases": [],
1875
1675
  "args": {
@@ -2131,19 +1931,13 @@
2131
1931
  "index.js"
2132
1932
  ]
2133
1933
  },
2134
- "release:get": {
1934
+ "release:create": {
2135
1935
  "aliases": [],
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",
1936
+ "args": {},
1937
+ "description": "Create a new release in a workspace",
2144
1938
  "examples": [
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"
1939
+ "$ xano release create --name \"v1.0\" --branch main\nCreated release: v1.0 - ID: 10\n",
1940
+ "$ xano release create --name \"v1.1-hotfix\" --branch main --hotfix --description \"Critical fix\" -o json"
2147
1941
  ],
2148
1942
  "flags": {
2149
1943
  "profile": {
@@ -2165,6 +1959,40 @@
2165
1959
  "allowNo": false,
2166
1960
  "type": "boolean"
2167
1961
  },
1962
+ "branch": {
1963
+ "char": "b",
1964
+ "description": "Branch to create the release from",
1965
+ "name": "branch",
1966
+ "required": true,
1967
+ "hasDynamicHelp": false,
1968
+ "multiple": false,
1969
+ "type": "option"
1970
+ },
1971
+ "description": {
1972
+ "char": "d",
1973
+ "description": "Release description",
1974
+ "name": "description",
1975
+ "required": false,
1976
+ "hasDynamicHelp": false,
1977
+ "multiple": false,
1978
+ "type": "option"
1979
+ },
1980
+ "hotfix": {
1981
+ "description": "Mark as a hotfix release",
1982
+ "name": "hotfix",
1983
+ "required": false,
1984
+ "allowNo": false,
1985
+ "type": "boolean"
1986
+ },
1987
+ "name": {
1988
+ "char": "n",
1989
+ "description": "Name for the release",
1990
+ "name": "name",
1991
+ "required": true,
1992
+ "hasDynamicHelp": false,
1993
+ "multiple": false,
1994
+ "type": "option"
1995
+ },
2168
1996
  "output": {
2169
1997
  "char": "o",
2170
1998
  "description": "Output format",
@@ -2179,6 +2007,14 @@
2179
2007
  ],
2180
2008
  "type": "option"
2181
2009
  },
2010
+ "table-ids": {
2011
+ "description": "Comma-separated table IDs to include",
2012
+ "name": "table-ids",
2013
+ "required": false,
2014
+ "hasDynamicHelp": false,
2015
+ "multiple": false,
2016
+ "type": "option"
2017
+ },
2182
2018
  "workspace": {
2183
2019
  "char": "w",
2184
2020
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -2191,7 +2027,7 @@
2191
2027
  },
2192
2028
  "hasDynamicHelp": false,
2193
2029
  "hiddenAliases": [],
2194
- "id": "release:get",
2030
+ "id": "release:create",
2195
2031
  "pluginAlias": "@xano/cli",
2196
2032
  "pluginName": "@xano/cli",
2197
2033
  "pluginType": "core",
@@ -2202,17 +2038,17 @@
2202
2038
  "dist",
2203
2039
  "commands",
2204
2040
  "release",
2205
- "get",
2041
+ "create",
2206
2042
  "index.js"
2207
2043
  ]
2208
2044
  },
2209
- "release:list": {
2045
+ "release:import": {
2210
2046
  "aliases": [],
2211
2047
  "args": {},
2212
- "description": "List all releases in a workspace",
2048
+ "description": "Import a release file into a workspace",
2213
2049
  "examples": [
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"
2050
+ "$ xano release import --file ./my-release.tar.gz\nImported release as #15\n",
2051
+ "$ xano release import --file ./my-release.tar.gz -o json"
2216
2052
  ],
2217
2053
  "flags": {
2218
2054
  "profile": {
@@ -2234,6 +2070,15 @@
2234
2070
  "allowNo": false,
2235
2071
  "type": "boolean"
2236
2072
  },
2073
+ "file": {
2074
+ "char": "f",
2075
+ "description": "Path to the release file (.tar.gz)",
2076
+ "name": "file",
2077
+ "required": true,
2078
+ "hasDynamicHelp": false,
2079
+ "multiple": false,
2080
+ "type": "option"
2081
+ },
2237
2082
  "output": {
2238
2083
  "char": "o",
2239
2084
  "description": "Output format",
@@ -2260,7 +2105,7 @@
2260
2105
  },
2261
2106
  "hasDynamicHelp": false,
2262
2107
  "hiddenAliases": [],
2263
- "id": "release:list",
2108
+ "id": "release:import",
2264
2109
  "pluginAlias": "@xano/cli",
2265
2110
  "pluginName": "@xano/cli",
2266
2111
  "pluginType": "core",
@@ -2271,17 +2116,17 @@
2271
2116
  "dist",
2272
2117
  "commands",
2273
2118
  "release",
2274
- "list",
2119
+ "import",
2275
2120
  "index.js"
2276
2121
  ]
2277
2122
  },
2278
- "release:import": {
2123
+ "release:list": {
2279
2124
  "aliases": [],
2280
2125
  "args": {},
2281
- "description": "Import a release file into a workspace",
2126
+ "description": "List all releases in a workspace",
2282
2127
  "examples": [
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"
2128
+ "$ xano release list\nReleases in workspace 5:\n - v1.0 (ID: 10) - main\n - v1.1-hotfix (ID: 11) - main [hotfix]\n",
2129
+ "$ xano release list -w 5 --output json"
2285
2130
  ],
2286
2131
  "flags": {
2287
2132
  "profile": {
@@ -2303,15 +2148,6 @@
2303
2148
  "allowNo": false,
2304
2149
  "type": "boolean"
2305
2150
  },
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"
2314
- },
2315
2151
  "output": {
2316
2152
  "char": "o",
2317
2153
  "description": "Output format",
@@ -2338,7 +2174,7 @@
2338
2174
  },
2339
2175
  "hasDynamicHelp": false,
2340
2176
  "hiddenAliases": [],
2341
- "id": "release:import",
2177
+ "id": "release:list",
2342
2178
  "pluginAlias": "@xano/cli",
2343
2179
  "pluginName": "@xano/cli",
2344
2180
  "pluginType": "core",
@@ -2349,7 +2185,7 @@
2349
2185
  "dist",
2350
2186
  "commands",
2351
2187
  "release",
2352
- "import",
2188
+ "list",
2353
2189
  "index.js"
2354
2190
  ]
2355
2191
  },
@@ -2556,19 +2392,15 @@
2556
2392
  "index.js"
2557
2393
  ]
2558
2394
  },
2559
- "tenant:create": {
2395
+ "static_host:list": {
2560
2396
  "aliases": [],
2561
- "args": {
2562
- "display": {
2563
- "description": "Display name for the tenant",
2564
- "name": "display",
2565
- "required": true
2566
- }
2567
- },
2568
- "description": "Create a new tenant in a workspace",
2397
+ "args": {},
2398
+ "description": "List all static hosts in a workspace from the Xano Metadata API",
2569
2399
  "examples": [
2570
- "$ xano tenant create \"Production\"\nCreated tenant: Production (production) - ID: 42\n",
2571
- "$ xano tenant create \"Staging\" --description \"Staging env\" --cluster_id 1 --platform_id 1 --license tier2 -o json"
2400
+ "$ xano static_host:list -w 40\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
2401
+ "$ xano static_host:list --profile production\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
2402
+ "$ xano static_host:list -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"my-static-host\",\n \"domain\": \"example.com\"\n }\n]\n",
2403
+ "$ xano static_host:list -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"static-host-3\"\n }\n]\n"
2572
2404
  ],
2573
2405
  "flags": {
2574
2406
  "profile": {
@@ -2590,57 +2422,174 @@
2590
2422
  "allowNo": false,
2591
2423
  "type": "boolean"
2592
2424
  },
2593
- "cluster_id": {
2594
- "description": "Cluster ID to deploy to (required for tier2/tier3)",
2595
- "name": "cluster_id",
2425
+ "output": {
2426
+ "char": "o",
2427
+ "description": "Output format",
2428
+ "name": "output",
2596
2429
  "required": false,
2430
+ "default": "summary",
2597
2431
  "hasDynamicHelp": false,
2598
2432
  "multiple": false,
2433
+ "options": [
2434
+ "summary",
2435
+ "json"
2436
+ ],
2599
2437
  "type": "option"
2600
2438
  },
2601
- "description": {
2602
- "char": "d",
2603
- "description": "Tenant description",
2604
- "name": "description",
2439
+ "page": {
2440
+ "description": "Page number for pagination",
2441
+ "name": "page",
2605
2442
  "required": false,
2443
+ "default": 1,
2606
2444
  "hasDynamicHelp": false,
2607
2445
  "multiple": false,
2608
2446
  "type": "option"
2609
2447
  },
2610
- "domain": {
2611
- "description": "Custom domain for the tenant",
2612
- "name": "domain",
2448
+ "per_page": {
2449
+ "description": "Number of results per page",
2450
+ "name": "per_page",
2613
2451
  "required": false,
2452
+ "default": 50,
2614
2453
  "hasDynamicHelp": false,
2615
2454
  "multiple": false,
2616
2455
  "type": "option"
2617
2456
  },
2618
- "ephemeral": {
2619
- "description": "Mark tenant as ephemeral (allows push operations)",
2620
- "name": "ephemeral",
2621
- "allowNo": false,
2622
- "type": "boolean"
2457
+ "workspace": {
2458
+ "char": "w",
2459
+ "description": "Workspace ID (optional if set in profile)",
2460
+ "name": "workspace",
2461
+ "required": false,
2462
+ "hasDynamicHelp": false,
2463
+ "multiple": false,
2464
+ "type": "option"
2465
+ }
2466
+ },
2467
+ "hasDynamicHelp": false,
2468
+ "hiddenAliases": [],
2469
+ "id": "static_host:list",
2470
+ "pluginAlias": "@xano/cli",
2471
+ "pluginName": "@xano/cli",
2472
+ "pluginType": "core",
2473
+ "strict": true,
2474
+ "enableJsonFlag": false,
2475
+ "isESM": true,
2476
+ "relativePath": [
2477
+ "dist",
2478
+ "commands",
2479
+ "static_host",
2480
+ "list",
2481
+ "index.js"
2482
+ ]
2483
+ },
2484
+ "release:get": {
2485
+ "aliases": [],
2486
+ "args": {
2487
+ "release_name": {
2488
+ "description": "Release name to retrieve",
2489
+ "name": "release_name",
2490
+ "required": true
2491
+ }
2492
+ },
2493
+ "description": "Get details of a specific release",
2494
+ "examples": [
2495
+ "$ xano release get v1.0\nRelease: v1.0 - ID: 10\n Branch: main\n Description: Initial release\n Hotfix: false\n",
2496
+ "$ xano release get v1.0 -w 5 -o json"
2497
+ ],
2498
+ "flags": {
2499
+ "profile": {
2500
+ "char": "p",
2501
+ "description": "Profile to use (uses default profile if not specified)",
2502
+ "env": "XANO_PROFILE",
2503
+ "name": "profile",
2504
+ "required": false,
2505
+ "hasDynamicHelp": false,
2506
+ "multiple": false,
2507
+ "type": "option"
2623
2508
  },
2624
- "ingress": {
2625
- "description": "Enable ingress",
2626
- "name": "ingress",
2627
- "allowNo": true,
2509
+ "verbose": {
2510
+ "char": "v",
2511
+ "description": "Show detailed request/response information",
2512
+ "env": "XANO_VERBOSE",
2513
+ "name": "verbose",
2514
+ "required": false,
2515
+ "allowNo": false,
2628
2516
  "type": "boolean"
2629
2517
  },
2630
- "license": {
2631
- "description": "License tier",
2632
- "name": "license",
2518
+ "output": {
2519
+ "char": "o",
2520
+ "description": "Output format",
2521
+ "name": "output",
2633
2522
  "required": false,
2634
- "default": "tier1",
2523
+ "default": "summary",
2635
2524
  "hasDynamicHelp": false,
2636
2525
  "multiple": false,
2637
2526
  "options": [
2638
- "tier1",
2639
- "tier2",
2640
- "tier3"
2527
+ "summary",
2528
+ "json"
2641
2529
  ],
2642
2530
  "type": "option"
2643
2531
  },
2532
+ "workspace": {
2533
+ "char": "w",
2534
+ "description": "Workspace ID (uses profile workspace if not provided)",
2535
+ "name": "workspace",
2536
+ "required": false,
2537
+ "hasDynamicHelp": false,
2538
+ "multiple": false,
2539
+ "type": "option"
2540
+ }
2541
+ },
2542
+ "hasDynamicHelp": false,
2543
+ "hiddenAliases": [],
2544
+ "id": "release:get",
2545
+ "pluginAlias": "@xano/cli",
2546
+ "pluginName": "@xano/cli",
2547
+ "pluginType": "core",
2548
+ "strict": true,
2549
+ "enableJsonFlag": false,
2550
+ "isESM": true,
2551
+ "relativePath": [
2552
+ "dist",
2553
+ "commands",
2554
+ "release",
2555
+ "get",
2556
+ "index.js"
2557
+ ]
2558
+ },
2559
+ "tenant:deploy_platform": {
2560
+ "aliases": [],
2561
+ "args": {
2562
+ "tenant_name": {
2563
+ "description": "Tenant name to deploy to",
2564
+ "name": "tenant_name",
2565
+ "required": true
2566
+ }
2567
+ },
2568
+ "description": "Deploy a platform version to a tenant",
2569
+ "examples": [
2570
+ "$ xano tenant deploy_platform t1234-abcd-xyz1 --platform_id 5\nDeployed platform 5 to tenant: My Tenant (my-tenant)\n",
2571
+ "$ xano tenant deploy_platform t1234-abcd-xyz1 --platform_id 5 -o json"
2572
+ ],
2573
+ "flags": {
2574
+ "profile": {
2575
+ "char": "p",
2576
+ "description": "Profile to use (uses default profile if not specified)",
2577
+ "env": "XANO_PROFILE",
2578
+ "name": "profile",
2579
+ "required": false,
2580
+ "hasDynamicHelp": false,
2581
+ "multiple": false,
2582
+ "type": "option"
2583
+ },
2584
+ "verbose": {
2585
+ "char": "v",
2586
+ "description": "Show detailed request/response information",
2587
+ "env": "XANO_VERBOSE",
2588
+ "name": "verbose",
2589
+ "required": false,
2590
+ "allowNo": false,
2591
+ "type": "boolean"
2592
+ },
2644
2593
  "output": {
2645
2594
  "char": "o",
2646
2595
  "description": "Output format",
@@ -2656,19 +2605,13 @@
2656
2605
  "type": "option"
2657
2606
  },
2658
2607
  "platform_id": {
2659
- "description": "Platform ID to use",
2608
+ "description": "Platform ID to deploy",
2660
2609
  "name": "platform_id",
2661
- "required": false,
2610
+ "required": true,
2662
2611
  "hasDynamicHelp": false,
2663
2612
  "multiple": false,
2664
2613
  "type": "option"
2665
2614
  },
2666
- "tasks": {
2667
- "description": "Enable background tasks",
2668
- "name": "tasks",
2669
- "allowNo": true,
2670
- "type": "boolean"
2671
- },
2672
2615
  "workspace": {
2673
2616
  "char": "w",
2674
2617
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -2681,7 +2624,7 @@
2681
2624
  },
2682
2625
  "hasDynamicHelp": false,
2683
2626
  "hiddenAliases": [],
2684
- "id": "tenant:create",
2627
+ "id": "tenant:deploy_platform",
2685
2628
  "pluginAlias": "@xano/cli",
2686
2629
  "pluginName": "@xano/cli",
2687
2630
  "pluginType": "core",
@@ -2692,23 +2635,24 @@
2692
2635
  "dist",
2693
2636
  "commands",
2694
2637
  "tenant",
2695
- "create",
2638
+ "deploy_platform",
2696
2639
  "index.js"
2697
2640
  ]
2698
2641
  },
2699
- "tenant:deploy_platform": {
2642
+ "tenant:delete": {
2700
2643
  "aliases": [],
2701
2644
  "args": {
2702
2645
  "tenant_name": {
2703
- "description": "Tenant name to deploy to",
2646
+ "description": "Tenant name to delete",
2704
2647
  "name": "tenant_name",
2705
2648
  "required": true
2706
2649
  }
2707
2650
  },
2708
- "description": "Deploy a platform version to a tenant",
2651
+ "description": "Delete a tenant permanently. This destroys all associated infrastructure and cannot be undone.",
2709
2652
  "examples": [
2710
- "$ xano tenant deploy_platform t1234-abcd-xyz1 --platform_id 5\nDeployed platform 5 to tenant: My Tenant (my-tenant)\n",
2711
- "$ xano tenant deploy_platform t1234-abcd-xyz1 --platform_id 5 -o json"
2653
+ "$ 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",
2654
+ "$ xano tenant delete t1234-abcd-xyz1 --force\nDeleted tenant t1234-abcd-xyz1\n",
2655
+ "$ xano tenant delete t1234-abcd-xyz1 -f -o json"
2712
2656
  ],
2713
2657
  "flags": {
2714
2658
  "profile": {
@@ -2730,6 +2674,14 @@
2730
2674
  "allowNo": false,
2731
2675
  "type": "boolean"
2732
2676
  },
2677
+ "force": {
2678
+ "char": "f",
2679
+ "description": "Skip confirmation prompt",
2680
+ "name": "force",
2681
+ "required": false,
2682
+ "allowNo": false,
2683
+ "type": "boolean"
2684
+ },
2733
2685
  "output": {
2734
2686
  "char": "o",
2735
2687
  "description": "Output format",
@@ -2744,14 +2696,6 @@
2744
2696
  ],
2745
2697
  "type": "option"
2746
2698
  },
2747
- "platform_id": {
2748
- "description": "Platform ID to deploy",
2749
- "name": "platform_id",
2750
- "required": true,
2751
- "hasDynamicHelp": false,
2752
- "multiple": false,
2753
- "type": "option"
2754
- },
2755
2699
  "workspace": {
2756
2700
  "char": "w",
2757
2701
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -2764,7 +2708,7 @@
2764
2708
  },
2765
2709
  "hasDynamicHelp": false,
2766
2710
  "hiddenAliases": [],
2767
- "id": "tenant:deploy_platform",
2711
+ "id": "tenant:delete",
2768
2712
  "pluginAlias": "@xano/cli",
2769
2713
  "pluginName": "@xano/cli",
2770
2714
  "pluginType": "core",
@@ -2775,24 +2719,23 @@
2775
2719
  "dist",
2776
2720
  "commands",
2777
2721
  "tenant",
2778
- "deploy_platform",
2722
+ "delete",
2779
2723
  "index.js"
2780
2724
  ]
2781
2725
  },
2782
- "tenant:delete": {
2726
+ "tenant:create": {
2783
2727
  "aliases": [],
2784
2728
  "args": {
2785
- "tenant_name": {
2786
- "description": "Tenant name to delete",
2787
- "name": "tenant_name",
2729
+ "display": {
2730
+ "description": "Display name for the tenant",
2731
+ "name": "display",
2788
2732
  "required": true
2789
2733
  }
2790
2734
  },
2791
- "description": "Delete a tenant permanently. This destroys all associated infrastructure and cannot be undone.",
2735
+ "description": "Create a new tenant in a workspace",
2792
2736
  "examples": [
2793
- "$ 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",
2794
- "$ xano tenant delete t1234-abcd-xyz1 --force\nDeleted tenant t1234-abcd-xyz1\n",
2795
- "$ xano tenant delete t1234-abcd-xyz1 -f -o json"
2737
+ "$ xano tenant create \"Production\"\nCreated tenant: Production (production) - ID: 42\n",
2738
+ "$ xano tenant create \"Staging\" --description \"Staging env\" --cluster_id 1 --platform_id 1 --license tier2 -o json"
2796
2739
  ],
2797
2740
  "flags": {
2798
2741
  "profile": {
@@ -2814,14 +2757,57 @@
2814
2757
  "allowNo": false,
2815
2758
  "type": "boolean"
2816
2759
  },
2817
- "force": {
2818
- "char": "f",
2819
- "description": "Skip confirmation prompt",
2820
- "name": "force",
2760
+ "cluster_id": {
2761
+ "description": "Cluster ID to deploy to (required for tier2/tier3)",
2762
+ "name": "cluster_id",
2763
+ "required": false,
2764
+ "hasDynamicHelp": false,
2765
+ "multiple": false,
2766
+ "type": "option"
2767
+ },
2768
+ "description": {
2769
+ "char": "d",
2770
+ "description": "Tenant description",
2771
+ "name": "description",
2772
+ "required": false,
2773
+ "hasDynamicHelp": false,
2774
+ "multiple": false,
2775
+ "type": "option"
2776
+ },
2777
+ "domain": {
2778
+ "description": "Custom domain for the tenant",
2779
+ "name": "domain",
2821
2780
  "required": false,
2781
+ "hasDynamicHelp": false,
2782
+ "multiple": false,
2783
+ "type": "option"
2784
+ },
2785
+ "ephemeral": {
2786
+ "description": "Mark tenant as ephemeral (allows push operations)",
2787
+ "name": "ephemeral",
2822
2788
  "allowNo": false,
2823
2789
  "type": "boolean"
2824
2790
  },
2791
+ "ingress": {
2792
+ "description": "Enable ingress",
2793
+ "name": "ingress",
2794
+ "allowNo": true,
2795
+ "type": "boolean"
2796
+ },
2797
+ "license": {
2798
+ "description": "License tier",
2799
+ "name": "license",
2800
+ "required": false,
2801
+ "default": "tier1",
2802
+ "hasDynamicHelp": false,
2803
+ "multiple": false,
2804
+ "options": [
2805
+ "tier1",
2806
+ "tier2",
2807
+ "tier3"
2808
+ ],
2809
+ "type": "option"
2810
+ },
2825
2811
  "output": {
2826
2812
  "char": "o",
2827
2813
  "description": "Output format",
@@ -2836,6 +2822,20 @@
2836
2822
  ],
2837
2823
  "type": "option"
2838
2824
  },
2825
+ "platform_id": {
2826
+ "description": "Platform ID to use",
2827
+ "name": "platform_id",
2828
+ "required": false,
2829
+ "hasDynamicHelp": false,
2830
+ "multiple": false,
2831
+ "type": "option"
2832
+ },
2833
+ "tasks": {
2834
+ "description": "Enable background tasks",
2835
+ "name": "tasks",
2836
+ "allowNo": true,
2837
+ "type": "boolean"
2838
+ },
2839
2839
  "workspace": {
2840
2840
  "char": "w",
2841
2841
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -2848,7 +2848,7 @@
2848
2848
  },
2849
2849
  "hasDynamicHelp": false,
2850
2850
  "hiddenAliases": [],
2851
- "id": "tenant:delete",
2851
+ "id": "tenant:create",
2852
2852
  "pluginAlias": "@xano/cli",
2853
2853
  "pluginName": "@xano/cli",
2854
2854
  "pluginType": "core",
@@ -2859,23 +2859,23 @@
2859
2859
  "dist",
2860
2860
  "commands",
2861
2861
  "tenant",
2862
- "delete",
2862
+ "create",
2863
2863
  "index.js"
2864
2864
  ]
2865
2865
  },
2866
- "tenant:get": {
2866
+ "tenant:deploy_release": {
2867
2867
  "aliases": [],
2868
2868
  "args": {
2869
2869
  "tenant_name": {
2870
- "description": "Tenant name to retrieve",
2870
+ "description": "Tenant name to deploy to",
2871
2871
  "name": "tenant_name",
2872
2872
  "required": true
2873
2873
  }
2874
2874
  },
2875
- "description": "Get details of a specific tenant",
2875
+ "description": "Deploy a release to a tenant",
2876
2876
  "examples": [
2877
- "$ 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",
2878
- "$ xano tenant get t1234-abcd-xyz1 -w 5 -o json"
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
2879
  ],
2880
2880
  "flags": {
2881
2881
  "profile": {
@@ -2911,6 +2911,15 @@
2911
2911
  ],
2912
2912
  "type": "option"
2913
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
+ },
2914
2923
  "workspace": {
2915
2924
  "char": "w",
2916
2925
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -2923,7 +2932,7 @@
2923
2932
  },
2924
2933
  "hasDynamicHelp": false,
2925
2934
  "hiddenAliases": [],
2926
- "id": "tenant:get",
2935
+ "id": "tenant:deploy_release",
2927
2936
  "pluginAlias": "@xano/cli",
2928
2937
  "pluginName": "@xano/cli",
2929
2938
  "pluginType": "core",
@@ -2934,7 +2943,7 @@
2934
2943
  "dist",
2935
2944
  "commands",
2936
2945
  "tenant",
2937
- "get",
2946
+ "deploy_release",
2938
2947
  "index.js"
2939
2948
  ]
2940
2949
  },
@@ -3067,19 +3076,19 @@
3067
3076
  "index.js"
3068
3077
  ]
3069
3078
  },
3070
- "tenant:deploy_release": {
3079
+ "tenant:get": {
3071
3080
  "aliases": [],
3072
3081
  "args": {
3073
3082
  "tenant_name": {
3074
- "description": "Tenant name to deploy to",
3083
+ "description": "Tenant name to retrieve",
3075
3084
  "name": "tenant_name",
3076
3085
  "required": true
3077
3086
  }
3078
3087
  },
3079
- "description": "Deploy a release to a tenant",
3088
+ "description": "Get details of a specific tenant",
3080
3089
  "examples": [
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"
3090
+ "$ 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",
3091
+ "$ xano tenant get t1234-abcd-xyz1 -w 5 -o json"
3083
3092
  ],
3084
3093
  "flags": {
3085
3094
  "profile": {
@@ -3115,15 +3124,6 @@
3115
3124
  ],
3116
3125
  "type": "option"
3117
3126
  },
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
3127
  "workspace": {
3128
3128
  "char": "w",
3129
3129
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -3136,7 +3136,7 @@
3136
3136
  },
3137
3137
  "hasDynamicHelp": false,
3138
3138
  "hiddenAliases": [],
3139
- "id": "tenant:deploy_release",
3139
+ "id": "tenant:get",
3140
3140
  "pluginAlias": "@xano/cli",
3141
3141
  "pluginName": "@xano/cli",
3142
3142
  "pluginType": "core",
@@ -3147,25 +3147,23 @@
3147
3147
  "dist",
3148
3148
  "commands",
3149
3149
  "tenant",
3150
- "deploy_release",
3150
+ "get",
3151
3151
  "index.js"
3152
3152
  ]
3153
3153
  },
3154
- "tenant:pull": {
3154
+ "tenant:impersonate": {
3155
3155
  "aliases": [],
3156
3156
  "args": {
3157
- "directory": {
3158
- "description": "Output directory for pulled documents",
3159
- "name": "directory",
3157
+ "tenant_name": {
3158
+ "description": "Tenant name to impersonate",
3159
+ "name": "tenant_name",
3160
3160
  "required": true
3161
3161
  }
3162
3162
  },
3163
- "description": "Pull a tenant multidoc from the Xano Metadata API and split into individual files",
3163
+ "description": "Impersonate a tenant and open it in the browser",
3164
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"
3165
+ "$ xano tenant impersonate my-tenant\nOpening browser...\nImpersonation successful!\n",
3166
+ "$ xano tenant impersonate my-tenant -o json"
3169
3167
  ],
3170
3168
  "flags": {
3171
3169
  "profile": {
@@ -3187,39 +3185,31 @@
3187
3185
  "allowNo": false,
3188
3186
  "type": "boolean"
3189
3187
  },
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",
3188
+ "output": {
3189
+ "char": "o",
3190
+ "description": "Output format",
3191
+ "name": "output",
3200
3192
  "required": false,
3201
- "allowNo": false,
3202
- "type": "boolean"
3193
+ "default": "summary",
3194
+ "hasDynamicHelp": false,
3195
+ "multiple": false,
3196
+ "options": [
3197
+ "summary",
3198
+ "json"
3199
+ ],
3200
+ "type": "option"
3203
3201
  },
3204
- "records": {
3205
- "description": "Include records",
3206
- "name": "records",
3202
+ "url-only": {
3203
+ "char": "u",
3204
+ "description": "Print the URL without opening the browser",
3205
+ "name": "url-only",
3207
3206
  "required": false,
3208
3207
  "allowNo": false,
3209
3208
  "type": "boolean"
3210
3209
  },
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
- },
3220
3210
  "workspace": {
3221
3211
  "char": "w",
3222
- "description": "Workspace ID (optional if set in profile)",
3212
+ "description": "Workspace ID (uses profile workspace if not provided)",
3223
3213
  "name": "workspace",
3224
3214
  "required": false,
3225
3215
  "hasDynamicHelp": false,
@@ -3229,7 +3219,7 @@
3229
3219
  },
3230
3220
  "hasDynamicHelp": false,
3231
3221
  "hiddenAliases": [],
3232
- "id": "tenant:pull",
3222
+ "id": "tenant:impersonate",
3233
3223
  "pluginAlias": "@xano/cli",
3234
3224
  "pluginName": "@xano/cli",
3235
3225
  "pluginType": "core",
@@ -3240,7 +3230,7 @@
3240
3230
  "dist",
3241
3231
  "commands",
3242
3232
  "tenant",
3243
- "pull",
3233
+ "impersonate",
3244
3234
  "index.js"
3245
3235
  ]
3246
3236
  },
@@ -3313,19 +3303,21 @@
3313
3303
  "index.js"
3314
3304
  ]
3315
3305
  },
3316
- "tenant:impersonate": {
3306
+ "tenant:pull": {
3317
3307
  "aliases": [],
3318
3308
  "args": {
3319
- "tenant_name": {
3320
- "description": "Tenant name to impersonate",
3321
- "name": "tenant_name",
3309
+ "directory": {
3310
+ "description": "Output directory for pulled documents",
3311
+ "name": "directory",
3322
3312
  "required": true
3323
3313
  }
3324
3314
  },
3325
- "description": "Impersonate a tenant and open it in the browser",
3315
+ "description": "Pull a tenant multidoc from the Xano Metadata API and split into individual files",
3326
3316
  "examples": [
3327
- "$ xano tenant impersonate my-tenant\nOpening browser...\nImpersonation successful!\n",
3328
- "$ xano tenant impersonate my-tenant -o json"
3317
+ "$ xano tenant pull ./my-tenant -t my-tenant\nPulled 42 documents from tenant my-tenant to ./my-tenant\n",
3318
+ "$ xano tenant pull ./output -t my-tenant -w 40\nPulled 15 documents from tenant my-tenant to ./output\n",
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"
3329
3321
  ],
3330
3322
  "flags": {
3331
3323
  "profile": {
@@ -3347,31 +3339,39 @@
3347
3339
  "allowNo": false,
3348
3340
  "type": "boolean"
3349
3341
  },
3350
- "output": {
3351
- "char": "o",
3352
- "description": "Output format",
3353
- "name": "output",
3342
+ "draft": {
3343
+ "description": "Include draft versions",
3344
+ "name": "draft",
3354
3345
  "required": false,
3355
- "default": "summary",
3356
- "hasDynamicHelp": false,
3357
- "multiple": false,
3358
- "options": [
3359
- "summary",
3360
- "json"
3361
- ],
3362
- "type": "option"
3346
+ "allowNo": false,
3347
+ "type": "boolean"
3363
3348
  },
3364
- "url-only": {
3365
- "char": "u",
3366
- "description": "Print the URL without opening the browser",
3367
- "name": "url-only",
3349
+ "env": {
3350
+ "description": "Include environment variables",
3351
+ "name": "env",
3352
+ "required": false,
3353
+ "allowNo": false,
3354
+ "type": "boolean"
3355
+ },
3356
+ "records": {
3357
+ "description": "Include records",
3358
+ "name": "records",
3368
3359
  "required": false,
3369
3360
  "allowNo": false,
3370
3361
  "type": "boolean"
3371
3362
  },
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 (uses profile workspace if not provided)",
3374
+ "description": "Workspace ID (optional if set in profile)",
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:impersonate",
3384
+ "id": "tenant:pull",
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
- "impersonate",
3395
+ "pull",
3396
3396
  "index.js"
3397
3397
  ]
3398
3398
  },
@@ -3491,14 +3491,19 @@
3491
3491
  "index.js"
3492
3492
  ]
3493
3493
  },
3494
- "unit_test:list": {
3494
+ "unit_test:run": {
3495
3495
  "aliases": [],
3496
- "args": {},
3497
- "description": "List all unit tests in a workspace",
3496
+ "args": {
3497
+ "unit_test_id": {
3498
+ "description": "ID of the unit test to run",
3499
+ "name": "unit_test_id",
3500
+ "required": true
3501
+ }
3502
+ },
3503
+ "description": "Run a unit test",
3498
3504
  "examples": [
3499
- "$ xano unit-test list\nUnit tests in workspace 5:\n - my-test (ID: abc-123) [function: math]\n - auth-check (ID: def-456) [query: /user/login]\n",
3500
- "$ xano unit-test list -w 5 --output json",
3501
- "$ xano unit-test list --obj-type function"
3505
+ "$ xano unit-test run abc-123\nRunning unit test abc-123...\nResult: PASS\n",
3506
+ "$ xano unit-test run abc-123 -o json"
3502
3507
  ],
3503
3508
  "flags": {
3504
3509
  "profile": {
@@ -3520,28 +3525,6 @@
3520
3525
  "allowNo": false,
3521
3526
  "type": "boolean"
3522
3527
  },
3523
- "branch": {
3524
- "char": "b",
3525
- "description": "Filter by branch name",
3526
- "name": "branch",
3527
- "required": false,
3528
- "hasDynamicHelp": false,
3529
- "multiple": false,
3530
- "type": "option"
3531
- },
3532
- "obj-type": {
3533
- "description": "Filter by object type",
3534
- "name": "obj-type",
3535
- "required": false,
3536
- "hasDynamicHelp": false,
3537
- "multiple": false,
3538
- "options": [
3539
- "function",
3540
- "query",
3541
- "middleware"
3542
- ],
3543
- "type": "option"
3544
- },
3545
3528
  "output": {
3546
3529
  "char": "o",
3547
3530
  "description": "Output format",
@@ -3568,7 +3551,7 @@
3568
3551
  },
3569
3552
  "hasDynamicHelp": false,
3570
3553
  "hiddenAliases": [],
3571
- "id": "unit_test:list",
3554
+ "id": "unit_test:run",
3572
3555
  "pluginAlias": "@xano/cli",
3573
3556
  "pluginName": "@xano/cli",
3574
3557
  "pluginType": "core",
@@ -3579,23 +3562,18 @@
3579
3562
  "dist",
3580
3563
  "commands",
3581
3564
  "unit_test",
3582
- "list",
3565
+ "run",
3583
3566
  "index.js"
3584
3567
  ]
3585
3568
  },
3586
- "unit_test:run": {
3569
+ "unit_test:list": {
3587
3570
  "aliases": [],
3588
- "args": {
3589
- "unit_test_id": {
3590
- "description": "ID of the unit test to run",
3591
- "name": "unit_test_id",
3592
- "required": true
3593
- }
3594
- },
3595
- "description": "Run a unit test",
3571
+ "args": {},
3572
+ "description": "List all unit tests in a workspace",
3596
3573
  "examples": [
3597
- "$ xano unit-test run abc-123\nRunning unit test abc-123...\nResult: PASS\n",
3598
- "$ xano unit-test run abc-123 -o json"
3574
+ "$ xano unit-test list\nUnit tests in workspace 5:\n - my-test (ID: abc-123) [function: math]\n - auth-check (ID: def-456) [query: /user/login]\n",
3575
+ "$ xano unit-test list -w 5 --output json",
3576
+ "$ xano unit-test list --obj-type function"
3599
3577
  ],
3600
3578
  "flags": {
3601
3579
  "profile": {
@@ -3617,6 +3595,28 @@
3617
3595
  "allowNo": false,
3618
3596
  "type": "boolean"
3619
3597
  },
3598
+ "branch": {
3599
+ "char": "b",
3600
+ "description": "Filter by branch name",
3601
+ "name": "branch",
3602
+ "required": false,
3603
+ "hasDynamicHelp": false,
3604
+ "multiple": false,
3605
+ "type": "option"
3606
+ },
3607
+ "obj-type": {
3608
+ "description": "Filter by object type",
3609
+ "name": "obj-type",
3610
+ "required": false,
3611
+ "hasDynamicHelp": false,
3612
+ "multiple": false,
3613
+ "options": [
3614
+ "function",
3615
+ "query",
3616
+ "middleware"
3617
+ ],
3618
+ "type": "option"
3619
+ },
3620
3620
  "output": {
3621
3621
  "char": "o",
3622
3622
  "description": "Output format",
@@ -3643,7 +3643,7 @@
3643
3643
  },
3644
3644
  "hasDynamicHelp": false,
3645
3645
  "hiddenAliases": [],
3646
- "id": "unit_test:run",
3646
+ "id": "unit_test:list",
3647
3647
  "pluginAlias": "@xano/cli",
3648
3648
  "pluginName": "@xano/cli",
3649
3649
  "pluginType": "core",
@@ -3654,7 +3654,7 @@
3654
3654
  "dist",
3655
3655
  "commands",
3656
3656
  "unit_test",
3657
- "run",
3657
+ "list",
3658
3658
  "index.js"
3659
3659
  ]
3660
3660
  },
@@ -3825,21 +3825,20 @@
3825
3825
  "index.js"
3826
3826
  ]
3827
3827
  },
3828
- "workspace:edit": {
3828
+ "workspace:delete": {
3829
3829
  "aliases": [],
3830
3830
  "args": {
3831
3831
  "workspace_id": {
3832
- "description": "Workspace ID to edit (uses profile workspace if not provided)",
3832
+ "description": "Workspace ID to delete",
3833
3833
  "name": "workspace_id",
3834
- "required": false
3834
+ "required": true
3835
3835
  }
3836
3836
  },
3837
- "description": "Edit an existing workspace via the Xano Metadata API",
3837
+ "description": "Delete a workspace via the Xano Metadata API. Cannot delete workspaces with active tenants.",
3838
3838
  "examples": [
3839
- "$ xano workspace edit 123 --name \"new-name\"\nUpdated workspace: new-name (ID: 123)\n",
3840
- "$ xano workspace edit --name \"updated-workspace\" --description \"Updated description\"\nUpdated workspace: updated-workspace (ID: 123)\n Description: Updated description\n",
3841
- "$ xano workspace edit 123 --swagger --require-token\nUpdated workspace: my-workspace (ID: 123)\n Swagger: enabled\n Require Token: true\n",
3842
- "$ xano workspace edit 123 --no-swagger -o json\n{\n \"id\": 123,\n \"name\": \"my-workspace\",\n \"swagger\": false\n}\n"
3839
+ "$ xano workspace delete 123\nAre you sure you want to delete workspace 123? This action cannot be undone. (y/N) y\nDeleted workspace 123\n",
3840
+ "$ xano workspace delete 123 --force\nDeleted workspace 123\n",
3841
+ "$ xano workspace delete 123 -f -o json\n{\n \"deleted\": true,\n \"workspace_id\": 123\n}\n"
3843
3842
  ],
3844
3843
  "flags": {
3845
3844
  "profile": {
@@ -3861,23 +3860,13 @@
3861
3860
  "allowNo": false,
3862
3861
  "type": "boolean"
3863
3862
  },
3864
- "description": {
3865
- "char": "d",
3866
- "description": "New description for the workspace",
3867
- "name": "description",
3868
- "required": false,
3869
- "hasDynamicHelp": false,
3870
- "multiple": false,
3871
- "type": "option"
3872
- },
3873
- "name": {
3874
- "char": "n",
3875
- "description": "New name for the workspace",
3876
- "name": "name",
3863
+ "force": {
3864
+ "char": "f",
3865
+ "description": "Skip confirmation prompt",
3866
+ "name": "force",
3877
3867
  "required": false,
3878
- "hasDynamicHelp": false,
3879
- "multiple": false,
3880
- "type": "option"
3868
+ "allowNo": false,
3869
+ "type": "boolean"
3881
3870
  },
3882
3871
  "output": {
3883
3872
  "char": "o",
@@ -3892,25 +3881,11 @@
3892
3881
  "json"
3893
3882
  ],
3894
3883
  "type": "option"
3895
- },
3896
- "require-token": {
3897
- "description": "Whether to require a token for documentation access",
3898
- "name": "require-token",
3899
- "required": false,
3900
- "allowNo": true,
3901
- "type": "boolean"
3902
- },
3903
- "swagger": {
3904
- "description": "Enable or disable swagger documentation",
3905
- "name": "swagger",
3906
- "required": false,
3907
- "allowNo": true,
3908
- "type": "boolean"
3909
3884
  }
3910
3885
  },
3911
3886
  "hasDynamicHelp": false,
3912
3887
  "hiddenAliases": [],
3913
- "id": "workspace:edit",
3888
+ "id": "workspace:delete",
3914
3889
  "pluginAlias": "@xano/cli",
3915
3890
  "pluginName": "@xano/cli",
3916
3891
  "pluginType": "core",
@@ -3921,7 +3896,7 @@
3921
3896
  "dist",
3922
3897
  "commands",
3923
3898
  "workspace",
3924
- "edit",
3899
+ "delete",
3925
3900
  "index.js"
3926
3901
  ]
3927
3902
  },
@@ -3992,20 +3967,21 @@
3992
3967
  "index.js"
3993
3968
  ]
3994
3969
  },
3995
- "workspace:delete": {
3970
+ "workspace:edit": {
3996
3971
  "aliases": [],
3997
3972
  "args": {
3998
3973
  "workspace_id": {
3999
- "description": "Workspace ID to delete",
3974
+ "description": "Workspace ID to edit (uses profile workspace if not provided)",
4000
3975
  "name": "workspace_id",
4001
- "required": true
3976
+ "required": false
4002
3977
  }
4003
3978
  },
4004
- "description": "Delete a workspace via the Xano Metadata API. Cannot delete workspaces with active tenants.",
3979
+ "description": "Edit an existing workspace via the Xano Metadata API",
4005
3980
  "examples": [
4006
- "$ xano workspace delete 123\nAre you sure you want to delete workspace 123? This action cannot be undone. (y/N) y\nDeleted workspace 123\n",
4007
- "$ xano workspace delete 123 --force\nDeleted workspace 123\n",
4008
- "$ xano workspace delete 123 -f -o json\n{\n \"deleted\": true,\n \"workspace_id\": 123\n}\n"
3981
+ "$ xano workspace edit 123 --name \"new-name\"\nUpdated workspace: new-name (ID: 123)\n",
3982
+ "$ xano workspace edit --name \"updated-workspace\" --description \"Updated description\"\nUpdated workspace: updated-workspace (ID: 123)\n Description: Updated description\n",
3983
+ "$ xano workspace edit 123 --swagger --require-token\nUpdated workspace: my-workspace (ID: 123)\n Swagger: enabled\n Require Token: true\n",
3984
+ "$ xano workspace edit 123 --no-swagger -o json\n{\n \"id\": 123,\n \"name\": \"my-workspace\",\n \"swagger\": false\n}\n"
4009
3985
  ],
4010
3986
  "flags": {
4011
3987
  "profile": {
@@ -4027,88 +4003,24 @@
4027
4003
  "allowNo": false,
4028
4004
  "type": "boolean"
4029
4005
  },
4030
- "force": {
4031
- "char": "f",
4032
- "description": "Skip confirmation prompt",
4033
- "name": "force",
4034
- "required": false,
4035
- "allowNo": false,
4036
- "type": "boolean"
4037
- },
4038
- "output": {
4039
- "char": "o",
4040
- "description": "Output format",
4041
- "name": "output",
4006
+ "description": {
4007
+ "char": "d",
4008
+ "description": "New description for the workspace",
4009
+ "name": "description",
4042
4010
  "required": false,
4043
- "default": "summary",
4044
4011
  "hasDynamicHelp": false,
4045
4012
  "multiple": false,
4046
- "options": [
4047
- "summary",
4048
- "json"
4049
- ],
4050
4013
  "type": "option"
4051
- }
4052
- },
4053
- "hasDynamicHelp": false,
4054
- "hiddenAliases": [],
4055
- "id": "workspace:delete",
4056
- "pluginAlias": "@xano/cli",
4057
- "pluginName": "@xano/cli",
4058
- "pluginType": "core",
4059
- "strict": true,
4060
- "enableJsonFlag": false,
4061
- "isESM": true,
4062
- "relativePath": [
4063
- "dist",
4064
- "commands",
4065
- "workspace",
4066
- "delete",
4067
- "index.js"
4068
- ]
4069
- },
4070
- "workflow_test:delete": {
4071
- "aliases": [],
4072
- "args": {
4073
- "workflow_test_id": {
4074
- "description": "ID of the workflow test to delete",
4075
- "name": "workflow_test_id",
4076
- "required": true
4077
- }
4078
- },
4079
- "description": "Delete a workflow test",
4080
- "examples": [
4081
- "$ xano workflow-test delete 1\nAre you sure you want to delete workflow test 1? (y/N) y\nDeleted workflow test 1\n",
4082
- "$ xano workflow-test delete 1 --force"
4083
- ],
4084
- "flags": {
4085
- "profile": {
4086
- "char": "p",
4087
- "description": "Profile to use (uses default profile if not specified)",
4088
- "env": "XANO_PROFILE",
4089
- "name": "profile",
4014
+ },
4015
+ "name": {
4016
+ "char": "n",
4017
+ "description": "New name for the workspace",
4018
+ "name": "name",
4090
4019
  "required": false,
4091
4020
  "hasDynamicHelp": false,
4092
4021
  "multiple": false,
4093
4022
  "type": "option"
4094
4023
  },
4095
- "verbose": {
4096
- "char": "v",
4097
- "description": "Show detailed request/response information",
4098
- "env": "XANO_VERBOSE",
4099
- "name": "verbose",
4100
- "required": false,
4101
- "allowNo": false,
4102
- "type": "boolean"
4103
- },
4104
- "force": {
4105
- "char": "f",
4106
- "description": "Skip confirmation prompt",
4107
- "name": "force",
4108
- "required": false,
4109
- "allowNo": false,
4110
- "type": "boolean"
4111
- },
4112
4024
  "output": {
4113
4025
  "char": "o",
4114
4026
  "description": "Output format",
@@ -4123,19 +4035,24 @@
4123
4035
  ],
4124
4036
  "type": "option"
4125
4037
  },
4126
- "workspace": {
4127
- "char": "w",
4128
- "description": "Workspace ID (uses profile workspace if not provided)",
4129
- "name": "workspace",
4038
+ "require-token": {
4039
+ "description": "Whether to require a token for documentation access",
4040
+ "name": "require-token",
4130
4041
  "required": false,
4131
- "hasDynamicHelp": false,
4132
- "multiple": false,
4133
- "type": "option"
4042
+ "allowNo": true,
4043
+ "type": "boolean"
4044
+ },
4045
+ "swagger": {
4046
+ "description": "Enable or disable swagger documentation",
4047
+ "name": "swagger",
4048
+ "required": false,
4049
+ "allowNo": true,
4050
+ "type": "boolean"
4134
4051
  }
4135
4052
  },
4136
4053
  "hasDynamicHelp": false,
4137
4054
  "hiddenAliases": [],
4138
- "id": "workflow_test:delete",
4055
+ "id": "workspace:edit",
4139
4056
  "pluginAlias": "@xano/cli",
4140
4057
  "pluginName": "@xano/cli",
4141
4058
  "pluginType": "core",
@@ -4145,25 +4062,24 @@
4145
4062
  "relativePath": [
4146
4063
  "dist",
4147
4064
  "commands",
4148
- "workflow_test",
4149
- "delete",
4065
+ "workspace",
4066
+ "edit",
4150
4067
  "index.js"
4151
4068
  ]
4152
4069
  },
4153
- "workflow_test:get": {
4070
+ "workflow_test:delete": {
4154
4071
  "aliases": [],
4155
4072
  "args": {
4156
4073
  "workflow_test_id": {
4157
- "description": "ID of the workflow test",
4074
+ "description": "ID of the workflow test to delete",
4158
4075
  "name": "workflow_test_id",
4159
4076
  "required": true
4160
4077
  }
4161
4078
  },
4162
- "description": "Get a specific workflow test",
4079
+ "description": "Delete a workflow test",
4163
4080
  "examples": [
4164
- "$ xano workflow-test get 1\nWorkflow Test: my-test (ID: 1)\n Description: Validates auth endpoints\n Branch: main\n",
4165
- "$ xano workflow-test get 1 -o xs",
4166
- "$ xano workflow-test get 1 -o json"
4081
+ "$ xano workflow-test delete 1\nAre you sure you want to delete workflow test 1? (y/N) y\nDeleted workflow test 1\n",
4082
+ "$ xano workflow-test delete 1 --force"
4167
4083
  ],
4168
4084
  "flags": {
4169
4085
  "profile": {
@@ -4185,9 +4101,10 @@
4185
4101
  "allowNo": false,
4186
4102
  "type": "boolean"
4187
4103
  },
4188
- "include-draft": {
4189
- "description": "Include draft version",
4190
- "name": "include-draft",
4104
+ "force": {
4105
+ "char": "f",
4106
+ "description": "Skip confirmation prompt",
4107
+ "name": "force",
4191
4108
  "required": false,
4192
4109
  "allowNo": false,
4193
4110
  "type": "boolean"
@@ -4202,8 +4119,7 @@
4202
4119
  "multiple": false,
4203
4120
  "options": [
4204
4121
  "summary",
4205
- "json",
4206
- "xs"
4122
+ "json"
4207
4123
  ],
4208
4124
  "type": "option"
4209
4125
  },
@@ -4219,7 +4135,7 @@
4219
4135
  },
4220
4136
  "hasDynamicHelp": false,
4221
4137
  "hiddenAliases": [],
4222
- "id": "workflow_test:get",
4138
+ "id": "workflow_test:delete",
4223
4139
  "pluginAlias": "@xano/cli",
4224
4140
  "pluginName": "@xano/cli",
4225
4141
  "pluginType": "core",
@@ -4230,7 +4146,7 @@
4230
4146
  "dist",
4231
4147
  "commands",
4232
4148
  "workflow_test",
4233
- "get",
4149
+ "delete",
4234
4150
  "index.js"
4235
4151
  ]
4236
4152
  },
@@ -4665,20 +4581,13 @@
4665
4581
  "index.js"
4666
4582
  ]
4667
4583
  },
4668
- "static_host:build:create": {
4584
+ "workflow_test:run_all": {
4669
4585
  "aliases": [],
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",
4586
+ "args": {},
4587
+ "description": "Run all workflow tests in a workspace",
4678
4588
  "examples": [
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"
4589
+ "$ 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",
4590
+ "$ xano workflow-test run-all --branch main -o json"
4682
4591
  ],
4683
4592
  "flags": {
4684
4593
  "profile": {
@@ -4700,33 +4609,98 @@
4700
4609
  "allowNo": false,
4701
4610
  "type": "boolean"
4702
4611
  },
4703
- "description": {
4704
- "char": "d",
4705
- "description": "Build description",
4706
- "name": "description",
4612
+ "branch": {
4613
+ "char": "b",
4614
+ "description": "Filter by branch name",
4615
+ "name": "branch",
4707
4616
  "required": false,
4708
4617
  "hasDynamicHelp": false,
4709
4618
  "multiple": false,
4710
4619
  "type": "option"
4711
4620
  },
4712
- "file": {
4713
- "char": "f",
4714
- "description": "Path to zip file to upload",
4715
- "name": "file",
4716
- "required": true,
4621
+ "output": {
4622
+ "char": "o",
4623
+ "description": "Output format",
4624
+ "name": "output",
4625
+ "required": false,
4626
+ "default": "summary",
4717
4627
  "hasDynamicHelp": false,
4718
4628
  "multiple": false,
4629
+ "options": [
4630
+ "summary",
4631
+ "json"
4632
+ ],
4719
4633
  "type": "option"
4720
4634
  },
4721
- "name": {
4722
- "char": "n",
4723
- "description": "Build name",
4724
- "name": "name",
4725
- "required": true,
4635
+ "workspace": {
4636
+ "char": "w",
4637
+ "description": "Workspace ID (uses profile workspace if not provided)",
4638
+ "name": "workspace",
4639
+ "required": false,
4640
+ "hasDynamicHelp": false,
4641
+ "multiple": false,
4642
+ "type": "option"
4643
+ }
4644
+ },
4645
+ "hasDynamicHelp": false,
4646
+ "hiddenAliases": [],
4647
+ "id": "workflow_test:run_all",
4648
+ "pluginAlias": "@xano/cli",
4649
+ "pluginName": "@xano/cli",
4650
+ "pluginType": "core",
4651
+ "strict": true,
4652
+ "enableJsonFlag": false,
4653
+ "isESM": true,
4654
+ "relativePath": [
4655
+ "dist",
4656
+ "commands",
4657
+ "workflow_test",
4658
+ "run_all",
4659
+ "index.js"
4660
+ ]
4661
+ },
4662
+ "workflow_test:get": {
4663
+ "aliases": [],
4664
+ "args": {
4665
+ "workflow_test_id": {
4666
+ "description": "ID of the workflow test",
4667
+ "name": "workflow_test_id",
4668
+ "required": true
4669
+ }
4670
+ },
4671
+ "description": "Get a specific workflow test",
4672
+ "examples": [
4673
+ "$ xano workflow-test get 1\nWorkflow Test: my-test (ID: 1)\n Description: Validates auth endpoints\n Branch: main\n",
4674
+ "$ xano workflow-test get 1 -o xs",
4675
+ "$ xano workflow-test get 1 -o json"
4676
+ ],
4677
+ "flags": {
4678
+ "profile": {
4679
+ "char": "p",
4680
+ "description": "Profile to use (uses default profile if not specified)",
4681
+ "env": "XANO_PROFILE",
4682
+ "name": "profile",
4683
+ "required": false,
4726
4684
  "hasDynamicHelp": false,
4727
4685
  "multiple": false,
4728
4686
  "type": "option"
4729
4687
  },
4688
+ "verbose": {
4689
+ "char": "v",
4690
+ "description": "Show detailed request/response information",
4691
+ "env": "XANO_VERBOSE",
4692
+ "name": "verbose",
4693
+ "required": false,
4694
+ "allowNo": false,
4695
+ "type": "boolean"
4696
+ },
4697
+ "include-draft": {
4698
+ "description": "Include draft version",
4699
+ "name": "include-draft",
4700
+ "required": false,
4701
+ "allowNo": false,
4702
+ "type": "boolean"
4703
+ },
4730
4704
  "output": {
4731
4705
  "char": "o",
4732
4706
  "description": "Output format",
@@ -4737,13 +4711,14 @@
4737
4711
  "multiple": false,
4738
4712
  "options": [
4739
4713
  "summary",
4740
- "json"
4714
+ "json",
4715
+ "xs"
4741
4716
  ],
4742
4717
  "type": "option"
4743
4718
  },
4744
4719
  "workspace": {
4745
4720
  "char": "w",
4746
- "description": "Workspace ID (optional if set in profile)",
4721
+ "description": "Workspace ID (uses profile workspace if not provided)",
4747
4722
  "name": "workspace",
4748
4723
  "required": false,
4749
4724
  "hasDynamicHelp": false,
@@ -4753,7 +4728,7 @@
4753
4728
  },
4754
4729
  "hasDynamicHelp": false,
4755
4730
  "hiddenAliases": [],
4756
- "id": "static_host:build:create",
4731
+ "id": "workflow_test:get",
4757
4732
  "pluginAlias": "@xano/cli",
4758
4733
  "pluginName": "@xano/cli",
4759
4734
  "pluginType": "core",
@@ -4763,9 +4738,8 @@
4763
4738
  "relativePath": [
4764
4739
  "dist",
4765
4740
  "commands",
4766
- "static_host",
4767
- "build",
4768
- "create",
4741
+ "workflow_test",
4742
+ "get",
4769
4743
  "index.js"
4770
4744
  ]
4771
4745
  },
@@ -4852,13 +4826,21 @@
4852
4826
  "index.js"
4853
4827
  ]
4854
4828
  },
4855
- "workflow_test:run_all": {
4829
+ "static_host:build:list": {
4856
4830
  "aliases": [],
4857
- "args": {},
4858
- "description": "Run all workflow tests in a workspace",
4831
+ "args": {
4832
+ "static_host": {
4833
+ "description": "Static Host name",
4834
+ "name": "static_host",
4835
+ "required": true
4836
+ }
4837
+ },
4838
+ "description": "List all builds for a static host",
4859
4839
  "examples": [
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"
4840
+ "$ xano static_host:build:list default -w 40\nAvailable builds:\n - v1.0.0 (ID: 1) - Status: completed\n - v1.0.1 (ID: 2) - Status: pending\n",
4841
+ "$ xano static_host:build:list myhost --profile production\nAvailable builds:\n - production (ID: 1) - Status: completed\n - staging (ID: 2) - Status: completed\n",
4842
+ "$ xano static_host:build:list default -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n }\n]\n",
4843
+ "$ xano static_host:build:list default -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"v1.0.2\"\n }\n]\n"
4862
4844
  ],
4863
4845
  "flags": {
4864
4846
  "profile": {
@@ -4880,15 +4862,6 @@
4880
4862
  "allowNo": false,
4881
4863
  "type": "boolean"
4882
4864
  },
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
- },
4892
4865
  "output": {
4893
4866
  "char": "o",
4894
4867
  "description": "Output format",
@@ -4903,9 +4876,27 @@
4903
4876
  ],
4904
4877
  "type": "option"
4905
4878
  },
4879
+ "page": {
4880
+ "description": "Page number for pagination",
4881
+ "name": "page",
4882
+ "required": false,
4883
+ "default": 1,
4884
+ "hasDynamicHelp": false,
4885
+ "multiple": false,
4886
+ "type": "option"
4887
+ },
4888
+ "per_page": {
4889
+ "description": "Number of results per page",
4890
+ "name": "per_page",
4891
+ "required": false,
4892
+ "default": 50,
4893
+ "hasDynamicHelp": false,
4894
+ "multiple": false,
4895
+ "type": "option"
4896
+ },
4906
4897
  "workspace": {
4907
4898
  "char": "w",
4908
- "description": "Workspace ID (uses profile workspace if not provided)",
4899
+ "description": "Workspace ID (optional if set in profile)",
4909
4900
  "name": "workspace",
4910
4901
  "required": false,
4911
4902
  "hasDynamicHelp": false,
@@ -4915,7 +4906,7 @@
4915
4906
  },
4916
4907
  "hasDynamicHelp": false,
4917
4908
  "hiddenAliases": [],
4918
- "id": "workflow_test:run_all",
4909
+ "id": "static_host:build:list",
4919
4910
  "pluginAlias": "@xano/cli",
4920
4911
  "pluginName": "@xano/cli",
4921
4912
  "pluginType": "core",
@@ -4925,12 +4916,13 @@
4925
4916
  "relativePath": [
4926
4917
  "dist",
4927
4918
  "commands",
4928
- "workflow_test",
4929
- "run_all",
4919
+ "static_host",
4920
+ "build",
4921
+ "list",
4930
4922
  "index.js"
4931
4923
  ]
4932
4924
  },
4933
- "static_host:build:list": {
4925
+ "static_host:build:create": {
4934
4926
  "aliases": [],
4935
4927
  "args": {
4936
4928
  "static_host": {
@@ -4939,12 +4931,11 @@
4939
4931
  "required": true
4940
4932
  }
4941
4933
  },
4942
- "description": "List all builds for a static host",
4934
+ "description": "Create a new build for a static host",
4943
4935
  "examples": [
4944
- "$ xano static_host:build:list default -w 40\nAvailable builds:\n - v1.0.0 (ID: 1) - Status: completed\n - v1.0.1 (ID: 2) - Status: pending\n",
4945
- "$ xano static_host:build:list myhost --profile production\nAvailable builds:\n - production (ID: 1) - Status: completed\n - staging (ID: 2) - Status: completed\n",
4946
- "$ xano static_host:build:list default -w 40 --output json\n[\n {\n \"id\": 1,\n \"name\": \"v1.0.0\",\n \"status\": \"completed\"\n }\n]\n",
4947
- "$ xano static_host:build:list default -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"v1.0.2\"\n }\n]\n"
4936
+ "$ 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",
4937
+ "$ 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",
4938
+ "$ 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"
4948
4939
  ],
4949
4940
  "flags": {
4950
4941
  "profile": {
@@ -4966,6 +4957,33 @@
4966
4957
  "allowNo": false,
4967
4958
  "type": "boolean"
4968
4959
  },
4960
+ "description": {
4961
+ "char": "d",
4962
+ "description": "Build description",
4963
+ "name": "description",
4964
+ "required": false,
4965
+ "hasDynamicHelp": false,
4966
+ "multiple": false,
4967
+ "type": "option"
4968
+ },
4969
+ "file": {
4970
+ "char": "f",
4971
+ "description": "Path to zip file to upload",
4972
+ "name": "file",
4973
+ "required": true,
4974
+ "hasDynamicHelp": false,
4975
+ "multiple": false,
4976
+ "type": "option"
4977
+ },
4978
+ "name": {
4979
+ "char": "n",
4980
+ "description": "Build name",
4981
+ "name": "name",
4982
+ "required": true,
4983
+ "hasDynamicHelp": false,
4984
+ "multiple": false,
4985
+ "type": "option"
4986
+ },
4969
4987
  "output": {
4970
4988
  "char": "o",
4971
4989
  "description": "Output format",
@@ -4980,24 +4998,6 @@
4980
4998
  ],
4981
4999
  "type": "option"
4982
5000
  },
4983
- "page": {
4984
- "description": "Page number for pagination",
4985
- "name": "page",
4986
- "required": false,
4987
- "default": 1,
4988
- "hasDynamicHelp": false,
4989
- "multiple": false,
4990
- "type": "option"
4991
- },
4992
- "per_page": {
4993
- "description": "Number of results per page",
4994
- "name": "per_page",
4995
- "required": false,
4996
- "default": 50,
4997
- "hasDynamicHelp": false,
4998
- "multiple": false,
4999
- "type": "option"
5000
- },
5001
5001
  "workspace": {
5002
5002
  "char": "w",
5003
5003
  "description": "Workspace ID (optional if set in profile)",
@@ -5010,7 +5010,7 @@
5010
5010
  },
5011
5011
  "hasDynamicHelp": false,
5012
5012
  "hiddenAliases": [],
5013
- "id": "static_host:build:list",
5013
+ "id": "static_host:build:create",
5014
5014
  "pluginAlias": "@xano/cli",
5015
5015
  "pluginName": "@xano/cli",
5016
5016
  "pluginType": "core",
@@ -5022,7 +5022,7 @@
5022
5022
  "commands",
5023
5023
  "static_host",
5024
5024
  "build",
5025
- "list",
5025
+ "create",
5026
5026
  "index.js"
5027
5027
  ]
5028
5028
  },
@@ -5119,20 +5119,19 @@
5119
5119
  "index.js"
5120
5120
  ]
5121
5121
  },
5122
- "tenant:backup:export": {
5122
+ "tenant:backup:create": {
5123
5123
  "aliases": [],
5124
5124
  "args": {
5125
5125
  "tenant_name": {
5126
- "description": "Tenant name to export backup from",
5126
+ "description": "Tenant name to back up",
5127
5127
  "name": "tenant_name",
5128
5128
  "required": true
5129
5129
  }
5130
5130
  },
5131
- "description": "Export (download) a tenant backup to a local file",
5131
+ "description": "Create a backup for a tenant",
5132
5132
  "examples": [
5133
- "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10\nDownloaded backup #10 to ./tenant-t1234-abcd-xyz1-backup-10.tar.gz\n",
5134
- "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 --output ./backups/my-backup.tar.gz",
5135
- "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 -o json"
5133
+ "$ xano tenant backup create t1234-abcd-xyz1 --description \"Pre-deploy backup\"\nCreated backup #15 for tenant t1234-abcd-xyz1\n",
5134
+ "$ xano tenant backup create t1234-abcd-xyz1 -d \"Daily backup\" -o json"
5136
5135
  ],
5137
5136
  "flags": {
5138
5137
  "profile": {
@@ -5154,18 +5153,20 @@
5154
5153
  "allowNo": false,
5155
5154
  "type": "boolean"
5156
5155
  },
5157
- "backup_id": {
5158
- "description": "Backup ID to export",
5159
- "name": "backup_id",
5160
- "required": true,
5156
+ "description": {
5157
+ "char": "d",
5158
+ "description": "Backup description",
5159
+ "name": "description",
5160
+ "required": false,
5161
+ "default": "",
5161
5162
  "hasDynamicHelp": false,
5162
5163
  "multiple": false,
5163
5164
  "type": "option"
5164
5165
  },
5165
- "format": {
5166
+ "output": {
5166
5167
  "char": "o",
5167
5168
  "description": "Output format",
5168
- "name": "format",
5169
+ "name": "output",
5169
5170
  "required": false,
5170
5171
  "default": "summary",
5171
5172
  "hasDynamicHelp": false,
@@ -5176,14 +5177,6 @@
5176
5177
  ],
5177
5178
  "type": "option"
5178
5179
  },
5179
- "output": {
5180
- "description": "Output file path (defaults to ./tenant-{name}-backup-{backup_id}.tar.gz)",
5181
- "name": "output",
5182
- "required": false,
5183
- "hasDynamicHelp": false,
5184
- "multiple": false,
5185
- "type": "option"
5186
- },
5187
5180
  "workspace": {
5188
5181
  "char": "w",
5189
5182
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -5196,7 +5189,7 @@
5196
5189
  },
5197
5190
  "hasDynamicHelp": false,
5198
5191
  "hiddenAliases": [],
5199
- "id": "tenant:backup:export",
5192
+ "id": "tenant:backup:create",
5200
5193
  "pluginAlias": "@xano/cli",
5201
5194
  "pluginName": "@xano/cli",
5202
5195
  "pluginType": "core",
@@ -5208,23 +5201,24 @@
5208
5201
  "commands",
5209
5202
  "tenant",
5210
5203
  "backup",
5211
- "export",
5204
+ "create",
5212
5205
  "index.js"
5213
5206
  ]
5214
5207
  },
5215
- "tenant:backup:create": {
5208
+ "tenant:backup:export": {
5216
5209
  "aliases": [],
5217
5210
  "args": {
5218
5211
  "tenant_name": {
5219
- "description": "Tenant name to back up",
5212
+ "description": "Tenant name to export backup from",
5220
5213
  "name": "tenant_name",
5221
5214
  "required": true
5222
5215
  }
5223
5216
  },
5224
- "description": "Create a backup for a tenant",
5217
+ "description": "Export (download) a tenant backup to a local file",
5225
5218
  "examples": [
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"
5219
+ "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10\nDownloaded backup #10 to ./tenant-t1234-abcd-xyz1-backup-10.tar.gz\n",
5220
+ "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 --output ./backups/my-backup.tar.gz",
5221
+ "$ xano tenant backup export t1234-abcd-xyz1 --backup_id 10 -o json"
5228
5222
  ],
5229
5223
  "flags": {
5230
5224
  "profile": {
@@ -5246,20 +5240,18 @@
5246
5240
  "allowNo": false,
5247
5241
  "type": "boolean"
5248
5242
  },
5249
- "description": {
5250
- "char": "d",
5251
- "description": "Backup description",
5252
- "name": "description",
5253
- "required": false,
5254
- "default": "",
5243
+ "backup_id": {
5244
+ "description": "Backup ID to export",
5245
+ "name": "backup_id",
5246
+ "required": true,
5255
5247
  "hasDynamicHelp": false,
5256
5248
  "multiple": false,
5257
5249
  "type": "option"
5258
5250
  },
5259
- "output": {
5251
+ "format": {
5260
5252
  "char": "o",
5261
5253
  "description": "Output format",
5262
- "name": "output",
5254
+ "name": "format",
5263
5255
  "required": false,
5264
5256
  "default": "summary",
5265
5257
  "hasDynamicHelp": false,
@@ -5270,6 +5262,14 @@
5270
5262
  ],
5271
5263
  "type": "option"
5272
5264
  },
5265
+ "output": {
5266
+ "description": "Output file path (defaults to ./tenant-{name}-backup-{backup_id}.tar.gz)",
5267
+ "name": "output",
5268
+ "required": false,
5269
+ "hasDynamicHelp": false,
5270
+ "multiple": false,
5271
+ "type": "option"
5272
+ },
5273
5273
  "workspace": {
5274
5274
  "char": "w",
5275
5275
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -5282,7 +5282,7 @@
5282
5282
  },
5283
5283
  "hasDynamicHelp": false,
5284
5284
  "hiddenAliases": [],
5285
- "id": "tenant:backup:create",
5285
+ "id": "tenant:backup:export",
5286
5286
  "pluginAlias": "@xano/cli",
5287
5287
  "pluginName": "@xano/cli",
5288
5288
  "pluginType": "core",
@@ -5294,7 +5294,7 @@
5294
5294
  "commands",
5295
5295
  "tenant",
5296
5296
  "backup",
5297
- "create",
5297
+ "export",
5298
5298
  "index.js"
5299
5299
  ]
5300
5300
  },
@@ -5475,6 +5475,82 @@
5475
5475
  "index.js"
5476
5476
  ]
5477
5477
  },
5478
+ "tenant:cluster:delete": {
5479
+ "aliases": [],
5480
+ "args": {
5481
+ "cluster_id": {
5482
+ "description": "Cluster ID to delete",
5483
+ "name": "cluster_id",
5484
+ "required": true
5485
+ }
5486
+ },
5487
+ "description": "Delete a tenant cluster. This action cannot be undone.",
5488
+ "examples": [
5489
+ "$ xano tenant cluster delete 3\nAre you sure you want to delete tenant cluster 3? This action cannot be undone. (y/N) y\nTenant cluster 3 deleted successfully\n",
5490
+ "$ xano tenant cluster delete 3 --force\nTenant cluster 3 deleted successfully\n",
5491
+ "$ xano tenant cluster delete 3 -f -o json"
5492
+ ],
5493
+ "flags": {
5494
+ "profile": {
5495
+ "char": "p",
5496
+ "description": "Profile to use (uses default profile if not specified)",
5497
+ "env": "XANO_PROFILE",
5498
+ "name": "profile",
5499
+ "required": false,
5500
+ "hasDynamicHelp": false,
5501
+ "multiple": false,
5502
+ "type": "option"
5503
+ },
5504
+ "verbose": {
5505
+ "char": "v",
5506
+ "description": "Show detailed request/response information",
5507
+ "env": "XANO_VERBOSE",
5508
+ "name": "verbose",
5509
+ "required": false,
5510
+ "allowNo": false,
5511
+ "type": "boolean"
5512
+ },
5513
+ "force": {
5514
+ "char": "f",
5515
+ "description": "Skip confirmation prompt",
5516
+ "name": "force",
5517
+ "required": false,
5518
+ "allowNo": false,
5519
+ "type": "boolean"
5520
+ },
5521
+ "output": {
5522
+ "char": "o",
5523
+ "description": "Output format",
5524
+ "name": "output",
5525
+ "required": false,
5526
+ "default": "summary",
5527
+ "hasDynamicHelp": false,
5528
+ "multiple": false,
5529
+ "options": [
5530
+ "summary",
5531
+ "json"
5532
+ ],
5533
+ "type": "option"
5534
+ }
5535
+ },
5536
+ "hasDynamicHelp": false,
5537
+ "hiddenAliases": [],
5538
+ "id": "tenant:cluster:delete",
5539
+ "pluginAlias": "@xano/cli",
5540
+ "pluginName": "@xano/cli",
5541
+ "pluginType": "core",
5542
+ "strict": true,
5543
+ "enableJsonFlag": false,
5544
+ "isESM": true,
5545
+ "relativePath": [
5546
+ "dist",
5547
+ "commands",
5548
+ "tenant",
5549
+ "cluster",
5550
+ "delete",
5551
+ "index.js"
5552
+ ]
5553
+ },
5478
5554
  "tenant:cluster:create": {
5479
5555
  "aliases": [],
5480
5556
  "args": {},
@@ -5581,83 +5657,7 @@
5581
5657
  },
5582
5658
  "hasDynamicHelp": false,
5583
5659
  "hiddenAliases": [],
5584
- "id": "tenant:cluster:create",
5585
- "pluginAlias": "@xano/cli",
5586
- "pluginName": "@xano/cli",
5587
- "pluginType": "core",
5588
- "strict": true,
5589
- "enableJsonFlag": false,
5590
- "isESM": true,
5591
- "relativePath": [
5592
- "dist",
5593
- "commands",
5594
- "tenant",
5595
- "cluster",
5596
- "create",
5597
- "index.js"
5598
- ]
5599
- },
5600
- "tenant:cluster:delete": {
5601
- "aliases": [],
5602
- "args": {
5603
- "cluster_id": {
5604
- "description": "Cluster ID to delete",
5605
- "name": "cluster_id",
5606
- "required": true
5607
- }
5608
- },
5609
- "description": "Delete a tenant cluster. This action cannot be undone.",
5610
- "examples": [
5611
- "$ xano tenant cluster delete 3\nAre you sure you want to delete tenant cluster 3? This action cannot be undone. (y/N) y\nTenant cluster 3 deleted successfully\n",
5612
- "$ xano tenant cluster delete 3 --force\nTenant cluster 3 deleted successfully\n",
5613
- "$ xano tenant cluster delete 3 -f -o json"
5614
- ],
5615
- "flags": {
5616
- "profile": {
5617
- "char": "p",
5618
- "description": "Profile to use (uses default profile if not specified)",
5619
- "env": "XANO_PROFILE",
5620
- "name": "profile",
5621
- "required": false,
5622
- "hasDynamicHelp": false,
5623
- "multiple": false,
5624
- "type": "option"
5625
- },
5626
- "verbose": {
5627
- "char": "v",
5628
- "description": "Show detailed request/response information",
5629
- "env": "XANO_VERBOSE",
5630
- "name": "verbose",
5631
- "required": false,
5632
- "allowNo": false,
5633
- "type": "boolean"
5634
- },
5635
- "force": {
5636
- "char": "f",
5637
- "description": "Skip confirmation prompt",
5638
- "name": "force",
5639
- "required": false,
5640
- "allowNo": false,
5641
- "type": "boolean"
5642
- },
5643
- "output": {
5644
- "char": "o",
5645
- "description": "Output format",
5646
- "name": "output",
5647
- "required": false,
5648
- "default": "summary",
5649
- "hasDynamicHelp": false,
5650
- "multiple": false,
5651
- "options": [
5652
- "summary",
5653
- "json"
5654
- ],
5655
- "type": "option"
5656
- }
5657
- },
5658
- "hasDynamicHelp": false,
5659
- "hiddenAliases": [],
5660
- "id": "tenant:cluster:delete",
5660
+ "id": "tenant:cluster:create",
5661
5661
  "pluginAlias": "@xano/cli",
5662
5662
  "pluginName": "@xano/cli",
5663
5663
  "pluginType": "core",
@@ -5669,23 +5669,23 @@
5669
5669
  "commands",
5670
5670
  "tenant",
5671
5671
  "cluster",
5672
- "delete",
5672
+ "create",
5673
5673
  "index.js"
5674
5674
  ]
5675
5675
  },
5676
- "tenant:cluster:get": {
5676
+ "tenant:backup:import": {
5677
5677
  "aliases": [],
5678
5678
  "args": {
5679
- "cluster_id": {
5680
- "description": "Cluster ID to retrieve",
5681
- "name": "cluster_id",
5679
+ "tenant_name": {
5680
+ "description": "Tenant name to import backup into",
5681
+ "name": "tenant_name",
5682
5682
  "required": true
5683
5683
  }
5684
5684
  },
5685
- "description": "Get details of a specific tenant cluster",
5685
+ "description": "Import a backup file into a tenant",
5686
5686
  "examples": [
5687
- "$ xano tenant cluster get 1\nCluster: us-east-1\n ID: 1\n Type: standard\n Domain: us-east-1.xano.io\n",
5688
- "$ xano tenant cluster get 1 -o json"
5687
+ "$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz\nImported backup as #15 for tenant t1234-abcd-xyz1\n",
5688
+ "$ xano tenant backup import t1234-abcd-xyz1 --file ./my-backup.tar.gz --description \"Restored from production\" -o json"
5689
5689
  ],
5690
5690
  "flags": {
5691
5691
  "profile": {
@@ -5707,6 +5707,25 @@
5707
5707
  "allowNo": false,
5708
5708
  "type": "boolean"
5709
5709
  },
5710
+ "description": {
5711
+ "char": "d",
5712
+ "description": "Backup description",
5713
+ "name": "description",
5714
+ "required": false,
5715
+ "default": "",
5716
+ "hasDynamicHelp": false,
5717
+ "multiple": false,
5718
+ "type": "option"
5719
+ },
5720
+ "file": {
5721
+ "char": "f",
5722
+ "description": "Path to the backup file (.tar.gz)",
5723
+ "name": "file",
5724
+ "required": true,
5725
+ "hasDynamicHelp": false,
5726
+ "multiple": false,
5727
+ "type": "option"
5728
+ },
5710
5729
  "output": {
5711
5730
  "char": "o",
5712
5731
  "description": "Output format",
@@ -5720,11 +5739,20 @@
5720
5739
  "json"
5721
5740
  ],
5722
5741
  "type": "option"
5742
+ },
5743
+ "workspace": {
5744
+ "char": "w",
5745
+ "description": "Workspace ID (uses profile workspace if not provided)",
5746
+ "name": "workspace",
5747
+ "required": false,
5748
+ "hasDynamicHelp": false,
5749
+ "multiple": false,
5750
+ "type": "option"
5723
5751
  }
5724
5752
  },
5725
5753
  "hasDynamicHelp": false,
5726
5754
  "hiddenAliases": [],
5727
- "id": "tenant:cluster:get",
5755
+ "id": "tenant:backup:import",
5728
5756
  "pluginAlias": "@xano/cli",
5729
5757
  "pluginName": "@xano/cli",
5730
5758
  "pluginType": "core",
@@ -5735,8 +5763,8 @@
5735
5763
  "dist",
5736
5764
  "commands",
5737
5765
  "tenant",
5738
- "cluster",
5739
- "get",
5766
+ "backup",
5767
+ "import",
5740
5768
  "index.js"
5741
5769
  ]
5742
5770
  },
@@ -5845,6 +5873,73 @@
5845
5873
  "index.js"
5846
5874
  ]
5847
5875
  },
5876
+ "tenant:cluster:get": {
5877
+ "aliases": [],
5878
+ "args": {
5879
+ "cluster_id": {
5880
+ "description": "Cluster ID to retrieve",
5881
+ "name": "cluster_id",
5882
+ "required": true
5883
+ }
5884
+ },
5885
+ "description": "Get details of a specific tenant cluster",
5886
+ "examples": [
5887
+ "$ xano tenant cluster get 1\nCluster: us-east-1\n ID: 1\n Type: standard\n Domain: us-east-1.xano.io\n",
5888
+ "$ xano tenant cluster get 1 -o json"
5889
+ ],
5890
+ "flags": {
5891
+ "profile": {
5892
+ "char": "p",
5893
+ "description": "Profile to use (uses default profile if not specified)",
5894
+ "env": "XANO_PROFILE",
5895
+ "name": "profile",
5896
+ "required": false,
5897
+ "hasDynamicHelp": false,
5898
+ "multiple": false,
5899
+ "type": "option"
5900
+ },
5901
+ "verbose": {
5902
+ "char": "v",
5903
+ "description": "Show detailed request/response information",
5904
+ "env": "XANO_VERBOSE",
5905
+ "name": "verbose",
5906
+ "required": false,
5907
+ "allowNo": false,
5908
+ "type": "boolean"
5909
+ },
5910
+ "output": {
5911
+ "char": "o",
5912
+ "description": "Output format",
5913
+ "name": "output",
5914
+ "required": false,
5915
+ "default": "summary",
5916
+ "hasDynamicHelp": false,
5917
+ "multiple": false,
5918
+ "options": [
5919
+ "summary",
5920
+ "json"
5921
+ ],
5922
+ "type": "option"
5923
+ }
5924
+ },
5925
+ "hasDynamicHelp": false,
5926
+ "hiddenAliases": [],
5927
+ "id": "tenant:cluster:get",
5928
+ "pluginAlias": "@xano/cli",
5929
+ "pluginName": "@xano/cli",
5930
+ "pluginType": "core",
5931
+ "strict": true,
5932
+ "enableJsonFlag": false,
5933
+ "isESM": true,
5934
+ "relativePath": [
5935
+ "dist",
5936
+ "commands",
5937
+ "tenant",
5938
+ "cluster",
5939
+ "get",
5940
+ "index.js"
5941
+ ]
5942
+ },
5848
5943
  "tenant:cluster:list": {
5849
5944
  "aliases": [],
5850
5945
  "args": {},
@@ -5906,19 +6001,19 @@
5906
6001
  "index.js"
5907
6002
  ]
5908
6003
  },
5909
- "tenant:backup:import": {
6004
+ "tenant:env:get": {
5910
6005
  "aliases": [],
5911
6006
  "args": {
5912
6007
  "tenant_name": {
5913
- "description": "Tenant name to import backup into",
6008
+ "description": "Tenant name",
5914
6009
  "name": "tenant_name",
5915
6010
  "required": true
5916
6011
  }
5917
6012
  },
5918
- "description": "Import a backup file into a tenant",
6013
+ "description": "Get a single environment variable for a tenant",
5919
6014
  "examples": [
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"
6015
+ "$ xano tenant env get my-tenant --name DATABASE_URL\npostgres://localhost:5432/mydb\n",
6016
+ "$ xano tenant env get my-tenant --name DATABASE_URL -w 5 -o json"
5922
6017
  ],
5923
6018
  "flags": {
5924
6019
  "profile": {
@@ -5940,20 +6035,10 @@
5940
6035
  "allowNo": false,
5941
6036
  "type": "boolean"
5942
6037
  },
5943
- "description": {
5944
- "char": "d",
5945
- "description": "Backup description",
5946
- "name": "description",
5947
- "required": false,
5948
- "default": "",
5949
- "hasDynamicHelp": false,
5950
- "multiple": false,
5951
- "type": "option"
5952
- },
5953
- "file": {
5954
- "char": "f",
5955
- "description": "Path to the backup file (.tar.gz)",
5956
- "name": "file",
6038
+ "name": {
6039
+ "char": "n",
6040
+ "description": "Environment variable name",
6041
+ "name": "name",
5957
6042
  "required": true,
5958
6043
  "hasDynamicHelp": false,
5959
6044
  "multiple": false,
@@ -5985,7 +6070,7 @@
5985
6070
  },
5986
6071
  "hasDynamicHelp": false,
5987
6072
  "hiddenAliases": [],
5988
- "id": "tenant:backup:import",
6073
+ "id": "tenant:env:get",
5989
6074
  "pluginAlias": "@xano/cli",
5990
6075
  "pluginName": "@xano/cli",
5991
6076
  "pluginType": "core",
@@ -5996,12 +6081,12 @@
5996
6081
  "dist",
5997
6082
  "commands",
5998
6083
  "tenant",
5999
- "backup",
6000
- "import",
6084
+ "env",
6085
+ "get",
6001
6086
  "index.js"
6002
6087
  ]
6003
6088
  },
6004
- "tenant:env:delete": {
6089
+ "tenant:env:get_all": {
6005
6090
  "aliases": [],
6006
6091
  "args": {
6007
6092
  "tenant_name": {
@@ -6010,11 +6095,12 @@
6010
6095
  "required": true
6011
6096
  }
6012
6097
  },
6013
- "description": "Delete an environment variable from a tenant",
6098
+ "description": "Get all environment variables for a tenant and save to a YAML file",
6014
6099
  "examples": [
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"
6100
+ "$ xano tenant env get_all my-tenant\nEnvironment variables saved to env_my-tenant.yaml\n",
6101
+ "$ xano tenant env get_all my-tenant --file ./my-env.yaml",
6102
+ "$ xano tenant env get_all my-tenant --view",
6103
+ "$ xano tenant env get_all my-tenant -o json"
6018
6104
  ],
6019
6105
  "flags": {
6020
6106
  "profile": {
@@ -6036,19 +6122,11 @@
6036
6122
  "allowNo": false,
6037
6123
  "type": "boolean"
6038
6124
  },
6039
- "force": {
6125
+ "file": {
6040
6126
  "char": "f",
6041
- "description": "Skip confirmation prompt",
6042
- "name": "force",
6127
+ "description": "Output file path (default: env_<tenant_name>.yaml)",
6128
+ "name": "file",
6043
6129
  "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,
6052
6130
  "hasDynamicHelp": false,
6053
6131
  "multiple": false,
6054
6132
  "type": "option"
@@ -6067,6 +6145,13 @@
6067
6145
  ],
6068
6146
  "type": "option"
6069
6147
  },
6148
+ "view": {
6149
+ "description": "Print environment variables to stdout instead of saving to file",
6150
+ "name": "view",
6151
+ "required": false,
6152
+ "allowNo": false,
6153
+ "type": "boolean"
6154
+ },
6070
6155
  "workspace": {
6071
6156
  "char": "w",
6072
6157
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -6079,7 +6164,7 @@
6079
6164
  },
6080
6165
  "hasDynamicHelp": false,
6081
6166
  "hiddenAliases": [],
6082
- "id": "tenant:env:delete",
6167
+ "id": "tenant:env:get_all",
6083
6168
  "pluginAlias": "@xano/cli",
6084
6169
  "pluginName": "@xano/cli",
6085
6170
  "pluginType": "core",
@@ -6091,11 +6176,11 @@
6091
6176
  "commands",
6092
6177
  "tenant",
6093
6178
  "env",
6094
- "delete",
6179
+ "get_all",
6095
6180
  "index.js"
6096
6181
  ]
6097
6182
  },
6098
- "tenant:env:get": {
6183
+ "tenant:env:delete": {
6099
6184
  "aliases": [],
6100
6185
  "args": {
6101
6186
  "tenant_name": {
@@ -6104,10 +6189,11 @@
6104
6189
  "required": true
6105
6190
  }
6106
6191
  },
6107
- "description": "Get a single environment variable for a tenant",
6192
+ "description": "Delete an environment variable from a tenant",
6108
6193
  "examples": [
6109
- "$ xano tenant env get my-tenant --name DATABASE_URL\npostgres://localhost:5432/mydb\n",
6110
- "$ xano tenant env get my-tenant --name DATABASE_URL -w 5 -o json"
6194
+ "$ 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",
6195
+ "$ xano tenant env delete my-tenant --name DATABASE_URL --force\nEnvironment variable 'DATABASE_URL' deleted from tenant my-tenant\n",
6196
+ "$ xano tenant env delete my-tenant --name DATABASE_URL -f -w 5 -o json"
6111
6197
  ],
6112
6198
  "flags": {
6113
6199
  "profile": {
@@ -6129,6 +6215,14 @@
6129
6215
  "allowNo": false,
6130
6216
  "type": "boolean"
6131
6217
  },
6218
+ "force": {
6219
+ "char": "f",
6220
+ "description": "Skip confirmation prompt",
6221
+ "name": "force",
6222
+ "required": false,
6223
+ "allowNo": false,
6224
+ "type": "boolean"
6225
+ },
6132
6226
  "name": {
6133
6227
  "char": "n",
6134
6228
  "description": "Environment variable name",
@@ -6164,7 +6258,7 @@
6164
6258
  },
6165
6259
  "hasDynamicHelp": false,
6166
6260
  "hiddenAliases": [],
6167
- "id": "tenant:env:get",
6261
+ "id": "tenant:env:delete",
6168
6262
  "pluginAlias": "@xano/cli",
6169
6263
  "pluginName": "@xano/cli",
6170
6264
  "pluginType": "core",
@@ -6176,7 +6270,7 @@
6176
6270
  "commands",
6177
6271
  "tenant",
6178
6272
  "env",
6179
- "get",
6273
+ "delete",
6180
6274
  "index.js"
6181
6275
  ]
6182
6276
  },
@@ -6256,7 +6350,7 @@
6256
6350
  "index.js"
6257
6351
  ]
6258
6352
  },
6259
- "tenant:env:get_all": {
6353
+ "tenant:env:set": {
6260
6354
  "aliases": [],
6261
6355
  "args": {
6262
6356
  "tenant_name": {
@@ -6265,12 +6359,10 @@
6265
6359
  "required": true
6266
6360
  }
6267
6361
  },
6268
- "description": "Get all environment variables for a tenant and save to a YAML file",
6362
+ "description": "Set (create or update) an environment variable for a tenant",
6269
6363
  "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"
6364
+ "$ xano tenant env set my-tenant --name DATABASE_URL --value postgres://localhost:5432/mydb\nEnvironment variable 'DATABASE_URL' set for tenant my-tenant\n",
6365
+ "$ xano tenant env set my-tenant --name DATABASE_URL --value postgres://localhost:5432/mydb -w 5 -o json"
6274
6366
  ],
6275
6367
  "flags": {
6276
6368
  "profile": {
@@ -6292,11 +6384,11 @@
6292
6384
  "allowNo": false,
6293
6385
  "type": "boolean"
6294
6386
  },
6295
- "file": {
6296
- "char": "f",
6297
- "description": "Output file path (default: env_<tenant_name>.yaml)",
6298
- "name": "file",
6299
- "required": false,
6387
+ "name": {
6388
+ "char": "n",
6389
+ "description": "Environment variable name",
6390
+ "name": "name",
6391
+ "required": true,
6300
6392
  "hasDynamicHelp": false,
6301
6393
  "multiple": false,
6302
6394
  "type": "option"
@@ -6315,12 +6407,13 @@
6315
6407
  ],
6316
6408
  "type": "option"
6317
6409
  },
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"
6410
+ "value": {
6411
+ "description": "Environment variable value",
6412
+ "name": "value",
6413
+ "required": true,
6414
+ "hasDynamicHelp": false,
6415
+ "multiple": false,
6416
+ "type": "option"
6324
6417
  },
6325
6418
  "workspace": {
6326
6419
  "char": "w",
@@ -6334,7 +6427,7 @@
6334
6427
  },
6335
6428
  "hasDynamicHelp": false,
6336
6429
  "hiddenAliases": [],
6337
- "id": "tenant:env:get_all",
6430
+ "id": "tenant:env:set",
6338
6431
  "pluginAlias": "@xano/cli",
6339
6432
  "pluginName": "@xano/cli",
6340
6433
  "pluginType": "core",
@@ -6346,11 +6439,11 @@
6346
6439
  "commands",
6347
6440
  "tenant",
6348
6441
  "env",
6349
- "get_all",
6442
+ "set",
6350
6443
  "index.js"
6351
6444
  ]
6352
6445
  },
6353
- "tenant:env:set": {
6446
+ "tenant:env:set_all": {
6354
6447
  "aliases": [],
6355
6448
  "args": {
6356
6449
  "tenant_name": {
@@ -6359,10 +6452,11 @@
6359
6452
  "required": true
6360
6453
  }
6361
6454
  },
6362
- "description": "Set (create or update) an environment variable for a tenant",
6455
+ "description": "Set all environment variables for a tenant from a YAML file (replaces all existing)",
6363
6456
  "examples": [
6364
- "$ xano tenant env set my-tenant --name DATABASE_URL --value postgres://localhost:5432/mydb\nEnvironment variable 'DATABASE_URL' set for tenant my-tenant\n",
6365
- "$ xano tenant env set my-tenant --name DATABASE_URL --value postgres://localhost:5432/mydb -w 5 -o json"
6457
+ "$ xano tenant env set_all my-tenant\nReads from env_my-tenant.yaml\n",
6458
+ "$ xano tenant env set_all my-tenant --file ./my-env.yaml",
6459
+ "$ xano tenant env set_all my-tenant -o json"
6366
6460
  ],
6367
6461
  "flags": {
6368
6462
  "profile": {
@@ -6384,11 +6478,18 @@
6384
6478
  "allowNo": false,
6385
6479
  "type": "boolean"
6386
6480
  },
6387
- "name": {
6388
- "char": "n",
6389
- "description": "Environment variable name",
6390
- "name": "name",
6391
- "required": true,
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
+ "file": {
6489
+ "char": "f",
6490
+ "description": "Path to env file (default: env_<tenant_name>.yaml)",
6491
+ "name": "file",
6492
+ "required": false,
6392
6493
  "hasDynamicHelp": false,
6393
6494
  "multiple": false,
6394
6495
  "type": "option"
@@ -6407,14 +6508,6 @@
6407
6508
  ],
6408
6509
  "type": "option"
6409
6510
  },
6410
- "value": {
6411
- "description": "Environment variable value",
6412
- "name": "value",
6413
- "required": true,
6414
- "hasDynamicHelp": false,
6415
- "multiple": false,
6416
- "type": "option"
6417
- },
6418
6511
  "workspace": {
6419
6512
  "char": "w",
6420
6513
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -6427,7 +6520,7 @@
6427
6520
  },
6428
6521
  "hasDynamicHelp": false,
6429
6522
  "hiddenAliases": [],
6430
- "id": "tenant:env:set",
6523
+ "id": "tenant:env:set_all",
6431
6524
  "pluginAlias": "@xano/cli",
6432
6525
  "pluginName": "@xano/cli",
6433
6526
  "pluginType": "core",
@@ -6439,11 +6532,11 @@
6439
6532
  "commands",
6440
6533
  "tenant",
6441
6534
  "env",
6442
- "set",
6535
+ "set_all",
6443
6536
  "index.js"
6444
6537
  ]
6445
6538
  },
6446
- "tenant:license:get": {
6539
+ "tenant:license:set": {
6447
6540
  "aliases": [],
6448
6541
  "args": {
6449
6542
  "tenant_name": {
@@ -6452,12 +6545,12 @@
6452
6545
  "required": true
6453
6546
  }
6454
6547
  },
6455
- "description": "Get the license for a tenant",
6548
+ "description": "Set/update the license for a tenant",
6456
6549
  "examples": [
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"
6550
+ "$ xano tenant license set my-tenant\nReads from license_my-tenant.yaml\n",
6551
+ "$ xano tenant license set my-tenant --file ./license.yaml",
6552
+ "$ xano tenant license set my-tenant --value 'key: value'",
6553
+ "$ xano tenant license set my-tenant -o json"
6461
6554
  ],
6462
6555
  "flags": {
6463
6556
  "profile": {
@@ -6479,9 +6572,22 @@
6479
6572
  "allowNo": false,
6480
6573
  "type": "boolean"
6481
6574
  },
6575
+ "clean": {
6576
+ "description": "Remove the source file after successful upload",
6577
+ "exclusive": [
6578
+ "value"
6579
+ ],
6580
+ "name": "clean",
6581
+ "required": false,
6582
+ "allowNo": false,
6583
+ "type": "boolean"
6584
+ },
6482
6585
  "file": {
6483
6586
  "char": "f",
6484
- "description": "Output file path (default: license_<tenant_name>.yaml)",
6587
+ "description": "Path to license file (default: license_<tenant_name>.yaml)",
6588
+ "exclusive": [
6589
+ "value"
6590
+ ],
6485
6591
  "name": "file",
6486
6592
  "required": false,
6487
6593
  "hasDynamicHelp": false,
@@ -6502,12 +6608,17 @@
6502
6608
  ],
6503
6609
  "type": "option"
6504
6610
  },
6505
- "view": {
6506
- "description": "Print license to stdout instead of saving to file",
6507
- "name": "view",
6611
+ "value": {
6612
+ "description": "Inline license value",
6613
+ "exclusive": [
6614
+ "file",
6615
+ "clean"
6616
+ ],
6617
+ "name": "value",
6508
6618
  "required": false,
6509
- "allowNo": false,
6510
- "type": "boolean"
6619
+ "hasDynamicHelp": false,
6620
+ "multiple": false,
6621
+ "type": "option"
6511
6622
  },
6512
6623
  "workspace": {
6513
6624
  "char": "w",
@@ -6521,7 +6632,7 @@
6521
6632
  },
6522
6633
  "hasDynamicHelp": false,
6523
6634
  "hiddenAliases": [],
6524
- "id": "tenant:license:get",
6635
+ "id": "tenant:license:set",
6525
6636
  "pluginAlias": "@xano/cli",
6526
6637
  "pluginName": "@xano/cli",
6527
6638
  "pluginType": "core",
@@ -6533,11 +6644,11 @@
6533
6644
  "commands",
6534
6645
  "tenant",
6535
6646
  "license",
6536
- "get",
6647
+ "set",
6537
6648
  "index.js"
6538
6649
  ]
6539
6650
  },
6540
- "tenant:env:set_all": {
6651
+ "tenant:license:get": {
6541
6652
  "aliases": [],
6542
6653
  "args": {
6543
6654
  "tenant_name": {
@@ -6546,11 +6657,12 @@
6546
6657
  "required": true
6547
6658
  }
6548
6659
  },
6549
- "description": "Set all environment variables for a tenant from a YAML file (replaces all existing)",
6660
+ "description": "Get the license for a tenant",
6550
6661
  "examples": [
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"
6662
+ "$ xano tenant license get my-tenant\nLicense saved to license_my-tenant.yaml\n",
6663
+ "$ xano tenant license get my-tenant --file ./my-license.yaml\nLicense saved to my-license.yaml\n",
6664
+ "$ xano tenant license get my-tenant --view",
6665
+ "$ xano tenant license get my-tenant -o json"
6554
6666
  ],
6555
6667
  "flags": {
6556
6668
  "profile": {
@@ -6572,16 +6684,9 @@
6572
6684
  "allowNo": false,
6573
6685
  "type": "boolean"
6574
6686
  },
6575
- "clean": {
6576
- "description": "Remove the source file after successful upload",
6577
- "name": "clean",
6578
- "required": false,
6579
- "allowNo": false,
6580
- "type": "boolean"
6581
- },
6582
6687
  "file": {
6583
6688
  "char": "f",
6584
- "description": "Path to env file (default: env_<tenant_name>.yaml)",
6689
+ "description": "Output file path (default: license_<tenant_name>.yaml)",
6585
6690
  "name": "file",
6586
6691
  "required": false,
6587
6692
  "hasDynamicHelp": false,
@@ -6602,6 +6707,13 @@
6602
6707
  ],
6603
6708
  "type": "option"
6604
6709
  },
6710
+ "view": {
6711
+ "description": "Print license to stdout instead of saving to file",
6712
+ "name": "view",
6713
+ "required": false,
6714
+ "allowNo": false,
6715
+ "type": "boolean"
6716
+ },
6605
6717
  "workspace": {
6606
6718
  "char": "w",
6607
6719
  "description": "Workspace ID (uses profile workspace if not provided)",
@@ -6614,7 +6726,7 @@
6614
6726
  },
6615
6727
  "hasDynamicHelp": false,
6616
6728
  "hiddenAliases": [],
6617
- "id": "tenant:env:set_all",
6729
+ "id": "tenant:license:get",
6618
6730
  "pluginAlias": "@xano/cli",
6619
6731
  "pluginName": "@xano/cli",
6620
6732
  "pluginType": "core",
@@ -6625,8 +6737,8 @@
6625
6737
  "dist",
6626
6738
  "commands",
6627
6739
  "tenant",
6628
- "env",
6629
- "set_all",
6740
+ "license",
6741
+ "get",
6630
6742
  "index.js"
6631
6743
  ]
6632
6744
  },
@@ -6724,21 +6836,21 @@
6724
6836
  "index.js"
6725
6837
  ]
6726
6838
  },
6727
- "tenant:license:set": {
6839
+ "tenant:cluster:license:get": {
6728
6840
  "aliases": [],
6729
6841
  "args": {
6730
- "tenant_name": {
6731
- "description": "Tenant name",
6732
- "name": "tenant_name",
6842
+ "cluster_id": {
6843
+ "description": "Tenant cluster ID",
6844
+ "name": "cluster_id",
6733
6845
  "required": true
6734
6846
  }
6735
6847
  },
6736
- "description": "Set/update the license for a tenant",
6848
+ "description": "Get the license (kubeconfig) for a tenant cluster",
6737
6849
  "examples": [
6738
- "$ xano tenant license set my-tenant\nReads from license_my-tenant.yaml\n",
6739
- "$ xano tenant license set my-tenant --file ./license.yaml",
6740
- "$ xano tenant license set my-tenant --value 'key: value'",
6741
- "$ xano tenant license set my-tenant -o json"
6850
+ "$ xano tenant cluster license get 1\nLicense saved to kubeconfig-1.yaml\n",
6851
+ "$ xano tenant cluster license get 1 --file ./my-kubeconfig.yaml\nLicense saved to my-kubeconfig.yaml\n",
6852
+ "$ xano tenant cluster license get 1 --view",
6853
+ "$ xano tenant cluster license get 1 -o json"
6742
6854
  ],
6743
6855
  "flags": {
6744
6856
  "profile": {
@@ -6760,22 +6872,9 @@
6760
6872
  "allowNo": false,
6761
6873
  "type": "boolean"
6762
6874
  },
6763
- "clean": {
6764
- "description": "Remove the source file after successful upload",
6765
- "exclusive": [
6766
- "value"
6767
- ],
6768
- "name": "clean",
6769
- "required": false,
6770
- "allowNo": false,
6771
- "type": "boolean"
6772
- },
6773
6875
  "file": {
6774
6876
  "char": "f",
6775
- "description": "Path to license file (default: license_<tenant_name>.yaml)",
6776
- "exclusive": [
6777
- "value"
6778
- ],
6877
+ "description": "Output file path (default: kubeconfig_<cluster_id>.yaml)",
6779
6878
  "name": "file",
6780
6879
  "required": false,
6781
6880
  "hasDynamicHelp": false,
@@ -6796,31 +6895,17 @@
6796
6895
  ],
6797
6896
  "type": "option"
6798
6897
  },
6799
- "value": {
6800
- "description": "Inline license value",
6801
- "exclusive": [
6802
- "file",
6803
- "clean"
6804
- ],
6805
- "name": "value",
6806
- "required": false,
6807
- "hasDynamicHelp": false,
6808
- "multiple": false,
6809
- "type": "option"
6810
- },
6811
- "workspace": {
6812
- "char": "w",
6813
- "description": "Workspace ID (uses profile workspace if not provided)",
6814
- "name": "workspace",
6898
+ "view": {
6899
+ "description": "Print license to stdout instead of saving to file",
6900
+ "name": "view",
6815
6901
  "required": false,
6816
- "hasDynamicHelp": false,
6817
- "multiple": false,
6818
- "type": "option"
6902
+ "allowNo": false,
6903
+ "type": "boolean"
6819
6904
  }
6820
6905
  },
6821
6906
  "hasDynamicHelp": false,
6822
6907
  "hiddenAliases": [],
6823
- "id": "tenant:license:set",
6908
+ "id": "tenant:cluster:license:get",
6824
6909
  "pluginAlias": "@xano/cli",
6825
6910
  "pluginName": "@xano/cli",
6826
6911
  "pluginType": "core",
@@ -6831,8 +6916,9 @@
6831
6916
  "dist",
6832
6917
  "commands",
6833
6918
  "tenant",
6919
+ "cluster",
6834
6920
  "license",
6835
- "set",
6921
+ "get",
6836
6922
  "index.js"
6837
6923
  ]
6838
6924
  },
@@ -6939,93 +7025,7 @@
6939
7025
  "set",
6940
7026
  "index.js"
6941
7027
  ]
6942
- },
6943
- "tenant:cluster:license:get": {
6944
- "aliases": [],
6945
- "args": {
6946
- "cluster_id": {
6947
- "description": "Tenant cluster ID",
6948
- "name": "cluster_id",
6949
- "required": true
6950
- }
6951
- },
6952
- "description": "Get the license (kubeconfig) for a tenant cluster",
6953
- "examples": [
6954
- "$ xano tenant cluster license get 1\nLicense saved to kubeconfig-1.yaml\n",
6955
- "$ xano tenant cluster license get 1 --file ./my-kubeconfig.yaml\nLicense saved to my-kubeconfig.yaml\n",
6956
- "$ xano tenant cluster license get 1 --view",
6957
- "$ xano tenant cluster license get 1 -o json"
6958
- ],
6959
- "flags": {
6960
- "profile": {
6961
- "char": "p",
6962
- "description": "Profile to use (uses default profile if not specified)",
6963
- "env": "XANO_PROFILE",
6964
- "name": "profile",
6965
- "required": false,
6966
- "hasDynamicHelp": false,
6967
- "multiple": false,
6968
- "type": "option"
6969
- },
6970
- "verbose": {
6971
- "char": "v",
6972
- "description": "Show detailed request/response information",
6973
- "env": "XANO_VERBOSE",
6974
- "name": "verbose",
6975
- "required": false,
6976
- "allowNo": false,
6977
- "type": "boolean"
6978
- },
6979
- "file": {
6980
- "char": "f",
6981
- "description": "Output file path (default: kubeconfig_<cluster_id>.yaml)",
6982
- "name": "file",
6983
- "required": false,
6984
- "hasDynamicHelp": false,
6985
- "multiple": false,
6986
- "type": "option"
6987
- },
6988
- "output": {
6989
- "char": "o",
6990
- "description": "Output format",
6991
- "name": "output",
6992
- "required": false,
6993
- "default": "summary",
6994
- "hasDynamicHelp": false,
6995
- "multiple": false,
6996
- "options": [
6997
- "summary",
6998
- "json"
6999
- ],
7000
- "type": "option"
7001
- },
7002
- "view": {
7003
- "description": "Print license to stdout instead of saving to file",
7004
- "name": "view",
7005
- "required": false,
7006
- "allowNo": false,
7007
- "type": "boolean"
7008
- }
7009
- },
7010
- "hasDynamicHelp": false,
7011
- "hiddenAliases": [],
7012
- "id": "tenant:cluster:license:get",
7013
- "pluginAlias": "@xano/cli",
7014
- "pluginName": "@xano/cli",
7015
- "pluginType": "core",
7016
- "strict": true,
7017
- "enableJsonFlag": false,
7018
- "isESM": true,
7019
- "relativePath": [
7020
- "dist",
7021
- "commands",
7022
- "tenant",
7023
- "cluster",
7024
- "license",
7025
- "get",
7026
- "index.js"
7027
- ]
7028
7028
  }
7029
7029
  },
7030
- "version": "0.0.55"
7030
+ "version": "0.0.57"
7031
7031
  }