@xano/cli 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -14
- package/dist/commands/profile/create/index.d.ts +2 -0
- package/dist/commands/profile/create/index.js +15 -0
- package/dist/commands/profile/edit/index.d.ts +6 -0
- package/dist/commands/profile/edit/index.js +50 -1
- package/dist/commands/profile/list/index.js +5 -0
- package/dist/commands/profile/project/index.d.ts +6 -0
- package/dist/commands/profile/project/index.js +54 -0
- package/dist/commands/profile/token/index.d.ts +6 -0
- package/dist/commands/profile/token/index.js +54 -0
- package/dist/commands/profile/wizard/index.d.ts +2 -0
- package/dist/commands/profile/wizard/index.js +108 -0
- package/dist/commands/run/env/delete/index.d.ts +13 -0
- package/dist/commands/run/env/delete/index.js +65 -0
- package/dist/commands/run/env/get/index.d.ts +13 -0
- package/dist/commands/run/env/get/index.js +52 -0
- package/dist/commands/run/env/list/index.d.ts +11 -0
- package/dist/commands/run/env/list/index.js +58 -0
- package/dist/commands/run/env/set/index.d.ts +13 -0
- package/dist/commands/run/env/set/index.js +51 -0
- package/dist/commands/{ephemeral/run/job → run/exec}/index.d.ts +4 -3
- package/dist/commands/run/exec/index.js +353 -0
- package/dist/commands/{ephemeral/run/service → run/info}/index.d.ts +3 -5
- package/dist/commands/run/info/index.js +160 -0
- package/dist/commands/run/projects/create/index.d.ts +13 -0
- package/dist/commands/run/projects/create/index.js +75 -0
- package/dist/commands/run/projects/delete/index.d.ts +13 -0
- package/dist/commands/run/projects/delete/index.js +65 -0
- package/dist/commands/run/projects/list/index.d.ts +12 -0
- package/dist/commands/run/projects/list/index.js +66 -0
- package/dist/commands/run/projects/update/index.d.ts +15 -0
- package/dist/commands/run/projects/update/index.js +86 -0
- package/dist/commands/run/secrets/delete/index.d.ts +13 -0
- package/dist/commands/run/secrets/delete/index.js +65 -0
- package/dist/commands/run/secrets/get/index.d.ts +13 -0
- package/dist/commands/run/secrets/get/index.js +52 -0
- package/dist/commands/run/secrets/list/index.d.ts +11 -0
- package/dist/commands/run/secrets/list/index.js +62 -0
- package/dist/commands/run/secrets/set/index.d.ts +15 -0
- package/dist/commands/run/secrets/set/index.js +74 -0
- package/dist/commands/run/sessions/delete/index.d.ts +13 -0
- package/dist/commands/run/sessions/delete/index.js +65 -0
- package/dist/commands/run/sessions/get/index.d.ts +13 -0
- package/dist/commands/run/sessions/get/index.js +72 -0
- package/dist/commands/run/sessions/list/index.d.ts +12 -0
- package/dist/commands/run/sessions/list/index.js +64 -0
- package/dist/commands/run/sessions/start/index.d.ts +13 -0
- package/dist/commands/run/sessions/start/index.js +56 -0
- package/dist/commands/run/sessions/stop/index.d.ts +13 -0
- package/dist/commands/run/sessions/stop/index.js +56 -0
- package/dist/commands/run/sink/get/index.d.ts +13 -0
- package/dist/commands/run/sink/get/index.js +63 -0
- package/dist/commands/workspace/pull/index.d.ts +28 -0
- package/dist/commands/workspace/pull/index.js +238 -0
- package/dist/commands/workspace/push/index.d.ts +19 -0
- package/dist/commands/workspace/push/index.js +163 -0
- package/dist/lib/base-run-command.d.ts +42 -0
- package/dist/lib/base-run-command.js +75 -0
- package/dist/lib/run-http-client.d.ts +58 -0
- package/dist/lib/run-http-client.js +136 -0
- package/dist/lib/run-types.d.ts +226 -0
- package/dist/lib/run-types.js +5 -0
- package/oclif.manifest.json +1470 -218
- package/package.json +1 -1
- package/dist/commands/ephemeral/run/job/index.js +0 -311
- package/dist/commands/ephemeral/run/service/index.js +0 -287
package/oclif.manifest.json
CHANGED
|
@@ -408,86 +408,6 @@
|
|
|
408
408
|
"index.js"
|
|
409
409
|
]
|
|
410
410
|
},
|
|
411
|
-
"static_host:list": {
|
|
412
|
-
"aliases": [],
|
|
413
|
-
"args": {},
|
|
414
|
-
"description": "List all static hosts in a workspace from the Xano Metadata API",
|
|
415
|
-
"examples": [
|
|
416
|
-
"$ xano static_host:list -w 40\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
417
|
-
"$ xano static_host:list --profile production\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
418
|
-
"$ 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",
|
|
419
|
-
"$ xano static_host:list -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"static-host-3\"\n }\n]\n"
|
|
420
|
-
],
|
|
421
|
-
"flags": {
|
|
422
|
-
"profile": {
|
|
423
|
-
"char": "p",
|
|
424
|
-
"description": "Profile to use for this command",
|
|
425
|
-
"env": "XANO_PROFILE",
|
|
426
|
-
"name": "profile",
|
|
427
|
-
"required": false,
|
|
428
|
-
"hasDynamicHelp": false,
|
|
429
|
-
"multiple": false,
|
|
430
|
-
"type": "option"
|
|
431
|
-
},
|
|
432
|
-
"workspace": {
|
|
433
|
-
"char": "w",
|
|
434
|
-
"description": "Workspace ID (optional if set in profile)",
|
|
435
|
-
"name": "workspace",
|
|
436
|
-
"required": false,
|
|
437
|
-
"hasDynamicHelp": false,
|
|
438
|
-
"multiple": false,
|
|
439
|
-
"type": "option"
|
|
440
|
-
},
|
|
441
|
-
"output": {
|
|
442
|
-
"char": "o",
|
|
443
|
-
"description": "Output format",
|
|
444
|
-
"name": "output",
|
|
445
|
-
"required": false,
|
|
446
|
-
"default": "summary",
|
|
447
|
-
"hasDynamicHelp": false,
|
|
448
|
-
"multiple": false,
|
|
449
|
-
"options": [
|
|
450
|
-
"summary",
|
|
451
|
-
"json"
|
|
452
|
-
],
|
|
453
|
-
"type": "option"
|
|
454
|
-
},
|
|
455
|
-
"page": {
|
|
456
|
-
"description": "Page number for pagination",
|
|
457
|
-
"name": "page",
|
|
458
|
-
"required": false,
|
|
459
|
-
"default": 1,
|
|
460
|
-
"hasDynamicHelp": false,
|
|
461
|
-
"multiple": false,
|
|
462
|
-
"type": "option"
|
|
463
|
-
},
|
|
464
|
-
"per_page": {
|
|
465
|
-
"description": "Number of results per page",
|
|
466
|
-
"name": "per_page",
|
|
467
|
-
"required": false,
|
|
468
|
-
"default": 50,
|
|
469
|
-
"hasDynamicHelp": false,
|
|
470
|
-
"multiple": false,
|
|
471
|
-
"type": "option"
|
|
472
|
-
}
|
|
473
|
-
},
|
|
474
|
-
"hasDynamicHelp": false,
|
|
475
|
-
"hiddenAliases": [],
|
|
476
|
-
"id": "static_host:list",
|
|
477
|
-
"pluginAlias": "@xano/cli",
|
|
478
|
-
"pluginName": "@xano/cli",
|
|
479
|
-
"pluginType": "core",
|
|
480
|
-
"strict": true,
|
|
481
|
-
"enableJsonFlag": false,
|
|
482
|
-
"isESM": true,
|
|
483
|
-
"relativePath": [
|
|
484
|
-
"dist",
|
|
485
|
-
"commands",
|
|
486
|
-
"static_host",
|
|
487
|
-
"list",
|
|
488
|
-
"index.js"
|
|
489
|
-
]
|
|
490
|
-
},
|
|
491
411
|
"profile:create": {
|
|
492
412
|
"aliases": [],
|
|
493
413
|
"args": {
|
|
@@ -502,6 +422,7 @@
|
|
|
502
422
|
"$ xano profile:create production --account_origin https://account.xano.com --instance_origin https://instance.xano.com --access_token token123\nProfile 'production' created successfully at ~/.xano/credentials.yaml\n",
|
|
503
423
|
"$ xano profile:create staging -a https://staging-account.xano.com -i https://staging-instance.xano.com -t token456\nProfile 'staging' created successfully at ~/.xano/credentials.yaml\n",
|
|
504
424
|
"$ xano profile:create dev -i https://dev-instance.xano.com -t token789 -w my-workspace -b feature-branch\nProfile 'dev' created successfully at ~/.xano/credentials.yaml\n",
|
|
425
|
+
"$ xano profile:create dev -i https://dev-instance.xano.com -t token789 -w my-workspace -b feature-branch -j my-project\nProfile 'dev' created successfully at ~/.xano/credentials.yaml\n",
|
|
505
426
|
"$ xano profile:create production --account_origin https://account.xano.com --instance_origin https://instance.xano.com --access_token token123 --default\nProfile 'production' created successfully at ~/.xano/credentials.yaml\nDefault profile set to 'production'\n"
|
|
506
427
|
],
|
|
507
428
|
"flags": {
|
|
@@ -550,6 +471,24 @@
|
|
|
550
471
|
"multiple": false,
|
|
551
472
|
"type": "option"
|
|
552
473
|
},
|
|
474
|
+
"project": {
|
|
475
|
+
"char": "j",
|
|
476
|
+
"description": "Project name",
|
|
477
|
+
"name": "project",
|
|
478
|
+
"required": false,
|
|
479
|
+
"hasDynamicHelp": false,
|
|
480
|
+
"multiple": false,
|
|
481
|
+
"type": "option"
|
|
482
|
+
},
|
|
483
|
+
"run_base_url": {
|
|
484
|
+
"char": "r",
|
|
485
|
+
"description": "Xano Run API base URL (default: https://app.xano.com/)",
|
|
486
|
+
"name": "run_base_url",
|
|
487
|
+
"required": false,
|
|
488
|
+
"hasDynamicHelp": false,
|
|
489
|
+
"multiple": false,
|
|
490
|
+
"type": "option"
|
|
491
|
+
},
|
|
553
492
|
"default": {
|
|
554
493
|
"description": "Set this profile as the default",
|
|
555
494
|
"name": "default",
|
|
@@ -617,6 +556,160 @@
|
|
|
617
556
|
"index.js"
|
|
618
557
|
]
|
|
619
558
|
},
|
|
559
|
+
"profile:edit": {
|
|
560
|
+
"aliases": [],
|
|
561
|
+
"args": {
|
|
562
|
+
"name": {
|
|
563
|
+
"description": "Profile name to edit (uses default profile if not specified)",
|
|
564
|
+
"name": "name",
|
|
565
|
+
"required": false
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"description": "Edit an existing profile configuration",
|
|
569
|
+
"examples": [
|
|
570
|
+
"$ xano profile:edit --access_token new_token123\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n",
|
|
571
|
+
"$ xano profile:edit production --access_token new_token123\nProfile 'production' updated successfully at ~/.xano/credentials.yaml\n",
|
|
572
|
+
"$ xano profile:edit staging -i https://new-staging-instance.xano.com -t new_token456\nProfile 'staging' updated successfully at ~/.xano/credentials.yaml\n",
|
|
573
|
+
"$ xano profile:edit -b new-branch\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n",
|
|
574
|
+
"$ xano profile:edit --remove-branch\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n",
|
|
575
|
+
"$ xano profile:edit -j my-project\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n",
|
|
576
|
+
"$ xano profile:edit --remove-project\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n"
|
|
577
|
+
],
|
|
578
|
+
"flags": {
|
|
579
|
+
"profile": {
|
|
580
|
+
"char": "p",
|
|
581
|
+
"description": "Profile to use for this command",
|
|
582
|
+
"env": "XANO_PROFILE",
|
|
583
|
+
"name": "profile",
|
|
584
|
+
"required": false,
|
|
585
|
+
"hasDynamicHelp": false,
|
|
586
|
+
"multiple": false,
|
|
587
|
+
"type": "option"
|
|
588
|
+
},
|
|
589
|
+
"account_origin": {
|
|
590
|
+
"char": "a",
|
|
591
|
+
"description": "Update account origin URL",
|
|
592
|
+
"name": "account_origin",
|
|
593
|
+
"required": false,
|
|
594
|
+
"hasDynamicHelp": false,
|
|
595
|
+
"multiple": false,
|
|
596
|
+
"type": "option"
|
|
597
|
+
},
|
|
598
|
+
"instance_origin": {
|
|
599
|
+
"char": "i",
|
|
600
|
+
"description": "Update instance origin URL",
|
|
601
|
+
"name": "instance_origin",
|
|
602
|
+
"required": false,
|
|
603
|
+
"hasDynamicHelp": false,
|
|
604
|
+
"multiple": false,
|
|
605
|
+
"type": "option"
|
|
606
|
+
},
|
|
607
|
+
"access_token": {
|
|
608
|
+
"char": "t",
|
|
609
|
+
"description": "Update access token for the Xano Metadata API",
|
|
610
|
+
"name": "access_token",
|
|
611
|
+
"required": false,
|
|
612
|
+
"hasDynamicHelp": false,
|
|
613
|
+
"multiple": false,
|
|
614
|
+
"type": "option"
|
|
615
|
+
},
|
|
616
|
+
"workspace": {
|
|
617
|
+
"char": "w",
|
|
618
|
+
"description": "Update workspace name",
|
|
619
|
+
"name": "workspace",
|
|
620
|
+
"required": false,
|
|
621
|
+
"hasDynamicHelp": false,
|
|
622
|
+
"multiple": false,
|
|
623
|
+
"type": "option"
|
|
624
|
+
},
|
|
625
|
+
"branch": {
|
|
626
|
+
"char": "b",
|
|
627
|
+
"description": "Update branch name",
|
|
628
|
+
"name": "branch",
|
|
629
|
+
"required": false,
|
|
630
|
+
"hasDynamicHelp": false,
|
|
631
|
+
"multiple": false,
|
|
632
|
+
"type": "option"
|
|
633
|
+
},
|
|
634
|
+
"project": {
|
|
635
|
+
"char": "j",
|
|
636
|
+
"description": "Update project name",
|
|
637
|
+
"name": "project",
|
|
638
|
+
"required": false,
|
|
639
|
+
"hasDynamicHelp": false,
|
|
640
|
+
"multiple": false,
|
|
641
|
+
"type": "option"
|
|
642
|
+
},
|
|
643
|
+
"run-project": {
|
|
644
|
+
"description": "Update run project ID (for xano run commands)",
|
|
645
|
+
"name": "run-project",
|
|
646
|
+
"required": false,
|
|
647
|
+
"hasDynamicHelp": false,
|
|
648
|
+
"multiple": false,
|
|
649
|
+
"type": "option"
|
|
650
|
+
},
|
|
651
|
+
"remove-workspace": {
|
|
652
|
+
"description": "Remove workspace from profile",
|
|
653
|
+
"name": "remove-workspace",
|
|
654
|
+
"required": false,
|
|
655
|
+
"allowNo": false,
|
|
656
|
+
"type": "boolean"
|
|
657
|
+
},
|
|
658
|
+
"remove-branch": {
|
|
659
|
+
"description": "Remove branch from profile",
|
|
660
|
+
"name": "remove-branch",
|
|
661
|
+
"required": false,
|
|
662
|
+
"allowNo": false,
|
|
663
|
+
"type": "boolean"
|
|
664
|
+
},
|
|
665
|
+
"remove-project": {
|
|
666
|
+
"description": "Remove project from profile",
|
|
667
|
+
"name": "remove-project",
|
|
668
|
+
"required": false,
|
|
669
|
+
"allowNo": false,
|
|
670
|
+
"type": "boolean"
|
|
671
|
+
},
|
|
672
|
+
"remove-run-project": {
|
|
673
|
+
"description": "Remove run project from profile",
|
|
674
|
+
"name": "remove-run-project",
|
|
675
|
+
"required": false,
|
|
676
|
+
"allowNo": false,
|
|
677
|
+
"type": "boolean"
|
|
678
|
+
},
|
|
679
|
+
"run_base_url": {
|
|
680
|
+
"char": "r",
|
|
681
|
+
"description": "Update Xano Run API base URL",
|
|
682
|
+
"name": "run_base_url",
|
|
683
|
+
"required": false,
|
|
684
|
+
"hasDynamicHelp": false,
|
|
685
|
+
"multiple": false,
|
|
686
|
+
"type": "option"
|
|
687
|
+
},
|
|
688
|
+
"remove-run-base-url": {
|
|
689
|
+
"description": "Remove run_base_url from profile (use default)",
|
|
690
|
+
"name": "remove-run-base-url",
|
|
691
|
+
"required": false,
|
|
692
|
+
"allowNo": false,
|
|
693
|
+
"type": "boolean"
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"hasDynamicHelp": false,
|
|
697
|
+
"hiddenAliases": [],
|
|
698
|
+
"id": "profile:edit",
|
|
699
|
+
"pluginAlias": "@xano/cli",
|
|
700
|
+
"pluginName": "@xano/cli",
|
|
701
|
+
"pluginType": "core",
|
|
702
|
+
"strict": true,
|
|
703
|
+
"enableJsonFlag": false,
|
|
704
|
+
"isESM": true,
|
|
705
|
+
"relativePath": [
|
|
706
|
+
"dist",
|
|
707
|
+
"commands",
|
|
708
|
+
"profile",
|
|
709
|
+
"edit",
|
|
710
|
+
"index.js"
|
|
711
|
+
]
|
|
712
|
+
},
|
|
620
713
|
"profile:get-default": {
|
|
621
714
|
"aliases": [],
|
|
622
715
|
"args": {},
|
|
@@ -649,8 +742,8 @@
|
|
|
649
742
|
"description": "List all available profile configurations",
|
|
650
743
|
"examples": [
|
|
651
744
|
"$ xano profile:list\nAvailable profiles:\n - default\n - production\n - staging\n - development\n",
|
|
652
|
-
"$ 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\nProfile: production\n Account Origin: https://account.xano.com\n Instance Origin: https://prod-instance.xano.com\n Access Token: ***...***\n",
|
|
653
|
-
"$ 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"
|
|
745
|
+
"$ 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",
|
|
746
|
+
"$ 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"
|
|
654
747
|
],
|
|
655
748
|
"flags": {
|
|
656
749
|
"details": {
|
|
@@ -731,24 +824,18 @@
|
|
|
731
824
|
"index.js"
|
|
732
825
|
]
|
|
733
826
|
},
|
|
734
|
-
"profile:
|
|
827
|
+
"profile:project": {
|
|
735
828
|
"aliases": [],
|
|
736
|
-
"args": {
|
|
737
|
-
|
|
738
|
-
"description": "Profile name to set as default",
|
|
739
|
-
"name": "name",
|
|
740
|
-
"required": true
|
|
741
|
-
}
|
|
742
|
-
},
|
|
743
|
-
"description": "Set the default profile",
|
|
829
|
+
"args": {},
|
|
830
|
+
"description": "Print the project for the default profile",
|
|
744
831
|
"examples": [
|
|
745
|
-
"$ xano profile:
|
|
746
|
-
"$ xano profile:
|
|
832
|
+
"$ xano profile:project\nmy-project-id\n",
|
|
833
|
+
"$ xano profile:project | pbcopy\n# Copies the project to clipboard on macOS\n"
|
|
747
834
|
],
|
|
748
835
|
"flags": {},
|
|
749
836
|
"hasDynamicHelp": false,
|
|
750
837
|
"hiddenAliases": [],
|
|
751
|
-
"id": "profile:
|
|
838
|
+
"id": "profile:project",
|
|
752
839
|
"pluginAlias": "@xano/cli",
|
|
753
840
|
"pluginName": "@xano/cli",
|
|
754
841
|
"pluginType": "core",
|
|
@@ -759,41 +846,54 @@
|
|
|
759
846
|
"dist",
|
|
760
847
|
"commands",
|
|
761
848
|
"profile",
|
|
762
|
-
"
|
|
849
|
+
"project",
|
|
763
850
|
"index.js"
|
|
764
851
|
]
|
|
765
852
|
},
|
|
766
|
-
"profile:
|
|
853
|
+
"profile:token": {
|
|
767
854
|
"aliases": [],
|
|
768
855
|
"args": {},
|
|
769
|
-
"description": "
|
|
856
|
+
"description": "Print the access token for the default profile",
|
|
770
857
|
"examples": [
|
|
771
|
-
"$ xano profile:
|
|
858
|
+
"$ xano profile:token\neyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...\n",
|
|
859
|
+
"$ xano profile:token | pbcopy\n# Copies the token to clipboard on macOS\n"
|
|
772
860
|
],
|
|
773
|
-
"flags": {
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
861
|
+
"flags": {},
|
|
862
|
+
"hasDynamicHelp": false,
|
|
863
|
+
"hiddenAliases": [],
|
|
864
|
+
"id": "profile:token",
|
|
865
|
+
"pluginAlias": "@xano/cli",
|
|
866
|
+
"pluginName": "@xano/cli",
|
|
867
|
+
"pluginType": "core",
|
|
868
|
+
"strict": true,
|
|
869
|
+
"enableJsonFlag": false,
|
|
870
|
+
"isESM": true,
|
|
871
|
+
"relativePath": [
|
|
872
|
+
"dist",
|
|
873
|
+
"commands",
|
|
874
|
+
"profile",
|
|
875
|
+
"token",
|
|
876
|
+
"index.js"
|
|
877
|
+
]
|
|
878
|
+
},
|
|
879
|
+
"profile:set-default": {
|
|
880
|
+
"aliases": [],
|
|
881
|
+
"args": {
|
|
882
|
+
"name": {
|
|
883
|
+
"description": "Profile name to set as default",
|
|
884
|
+
"name": "name",
|
|
885
|
+
"required": true
|
|
792
886
|
}
|
|
793
887
|
},
|
|
888
|
+
"description": "Set the default profile",
|
|
889
|
+
"examples": [
|
|
890
|
+
"$ xano profile:set-default production\nDefault profile set to 'production'\n",
|
|
891
|
+
"$ xano profile:set-default staging\nDefault profile set to 'staging'\n"
|
|
892
|
+
],
|
|
893
|
+
"flags": {},
|
|
794
894
|
"hasDynamicHelp": false,
|
|
795
895
|
"hiddenAliases": [],
|
|
796
|
-
"id": "profile:
|
|
896
|
+
"id": "profile:set-default",
|
|
797
897
|
"pluginAlias": "@xano/cli",
|
|
798
898
|
"pluginName": "@xano/cli",
|
|
799
899
|
"pluginType": "core",
|
|
@@ -804,49 +904,41 @@
|
|
|
804
904
|
"dist",
|
|
805
905
|
"commands",
|
|
806
906
|
"profile",
|
|
807
|
-
"
|
|
907
|
+
"set-default",
|
|
808
908
|
"index.js"
|
|
809
909
|
]
|
|
810
910
|
},
|
|
811
|
-
"
|
|
911
|
+
"profile:wizard": {
|
|
812
912
|
"aliases": [],
|
|
813
913
|
"args": {},
|
|
814
|
-
"description": "
|
|
914
|
+
"description": "Create a new profile configuration using an interactive wizard",
|
|
815
915
|
"examples": [
|
|
816
|
-
"$ xano
|
|
817
|
-
"$ xano workspace:list --profile production\nAvailable workspaces:\n - my-app (ID: 1)\n - staging-env (ID: 2)\n",
|
|
818
|
-
"$ xano workspace:list --output json\n{\n \"workspaces\": [\n {\n \"id\": 1,\n \"name\": \"workspace-1\"\n },\n {\n \"id\": 2,\n \"name\": \"workspace-2\"\n }\n ]\n}\n",
|
|
819
|
-
"$ xano workspace:list -p staging -o json\n{\n \"workspaces\": [\n {\n \"id\": 1,\n \"name\": \"my-app\"\n }\n ]\n}\n"
|
|
916
|
+
"$ xano profile:wizard\nWelcome to the Xano Profile Wizard!\n? Enter your access token: ***...***\n? Select an instance:\n > Production (https://app.xano.com)\n Staging (https://staging.xano.com)\n? Profile name: production\nProfile 'production' created successfully at ~/.xano/credentials.yaml\n"
|
|
820
917
|
],
|
|
821
918
|
"flags": {
|
|
822
|
-
"
|
|
823
|
-
"char": "
|
|
824
|
-
"description": "Profile
|
|
825
|
-
"
|
|
826
|
-
"name": "profile",
|
|
919
|
+
"name": {
|
|
920
|
+
"char": "n",
|
|
921
|
+
"description": "Profile name (skip prompt if provided)",
|
|
922
|
+
"name": "name",
|
|
827
923
|
"required": false,
|
|
828
924
|
"hasDynamicHelp": false,
|
|
829
925
|
"multiple": false,
|
|
830
926
|
"type": "option"
|
|
831
927
|
},
|
|
832
|
-
"
|
|
928
|
+
"origin": {
|
|
833
929
|
"char": "o",
|
|
834
|
-
"description": "
|
|
835
|
-
"name": "
|
|
930
|
+
"description": "Xano instance origin URL",
|
|
931
|
+
"name": "origin",
|
|
836
932
|
"required": false,
|
|
837
|
-
"default": "
|
|
933
|
+
"default": "https://app.xano.com",
|
|
838
934
|
"hasDynamicHelp": false,
|
|
839
935
|
"multiple": false,
|
|
840
|
-
"options": [
|
|
841
|
-
"summary",
|
|
842
|
-
"json"
|
|
843
|
-
],
|
|
844
936
|
"type": "option"
|
|
845
937
|
}
|
|
846
938
|
},
|
|
847
939
|
"hasDynamicHelp": false,
|
|
848
940
|
"hiddenAliases": [],
|
|
849
|
-
"id": "
|
|
941
|
+
"id": "profile:wizard",
|
|
850
942
|
"pluginAlias": "@xano/cli",
|
|
851
943
|
"pluginName": "@xano/cli",
|
|
852
944
|
"pluginType": "core",
|
|
@@ -856,21 +948,22 @@
|
|
|
856
948
|
"relativePath": [
|
|
857
949
|
"dist",
|
|
858
950
|
"commands",
|
|
859
|
-
"
|
|
860
|
-
"
|
|
951
|
+
"profile",
|
|
952
|
+
"wizard",
|
|
861
953
|
"index.js"
|
|
862
954
|
]
|
|
863
955
|
},
|
|
864
|
-
"
|
|
956
|
+
"run:exec": {
|
|
865
957
|
"aliases": [],
|
|
866
958
|
"args": {},
|
|
867
|
-
"description": "
|
|
959
|
+
"description": "Execute XanoScript code (job or service)",
|
|
868
960
|
"examples": [
|
|
869
|
-
"$ xano
|
|
870
|
-
"$ xano
|
|
871
|
-
"$ cat script.xs | xano
|
|
872
|
-
"$ xano
|
|
873
|
-
"$ xano
|
|
961
|
+
"$ xano run exec -f script.xs\nExecuted successfully!\n...\n",
|
|
962
|
+
"$ xano run exec -f script.xs --edit\n# Opens script.xs in $EDITOR, then executes\nExecuted successfully!\n...\n",
|
|
963
|
+
"$ cat script.xs | xano run exec --stdin\nExecuted successfully!\n...\n",
|
|
964
|
+
"$ xano run exec -f script.xs -o json\n{\n \"run\": { ... }\n}\n",
|
|
965
|
+
"$ xano run exec -f script.xs -a args.json\n# Executes with input arguments from args.json\nExecuted successfully!\n...\n",
|
|
966
|
+
"$ xano run exec -f script.xs --env API_KEY=secret --env DEBUG=true\n# Executes with environment variable overrides\nExecuted successfully!\n...\n"
|
|
874
967
|
],
|
|
875
968
|
"flags": {
|
|
876
969
|
"profile": {
|
|
@@ -911,7 +1004,7 @@
|
|
|
911
1004
|
"dependsOn": [
|
|
912
1005
|
"file"
|
|
913
1006
|
],
|
|
914
|
-
"description": "Open file in editor before running
|
|
1007
|
+
"description": "Open file in editor before running (requires --file)",
|
|
915
1008
|
"name": "edit",
|
|
916
1009
|
"required": false,
|
|
917
1010
|
"allowNo": false,
|
|
@@ -939,35 +1032,40 @@
|
|
|
939
1032
|
"hasDynamicHelp": false,
|
|
940
1033
|
"multiple": false,
|
|
941
1034
|
"type": "option"
|
|
1035
|
+
},
|
|
1036
|
+
"env": {
|
|
1037
|
+
"description": "Environment variable override (key=value)",
|
|
1038
|
+
"name": "env",
|
|
1039
|
+
"required": false,
|
|
1040
|
+
"hasDynamicHelp": false,
|
|
1041
|
+
"multiple": true,
|
|
1042
|
+
"type": "option"
|
|
942
1043
|
}
|
|
943
1044
|
},
|
|
944
1045
|
"hasDynamicHelp": false,
|
|
945
1046
|
"hiddenAliases": [],
|
|
946
|
-
"id": "
|
|
1047
|
+
"id": "run:exec",
|
|
947
1048
|
"pluginAlias": "@xano/cli",
|
|
948
1049
|
"pluginName": "@xano/cli",
|
|
949
1050
|
"pluginType": "core",
|
|
950
1051
|
"strict": true,
|
|
951
|
-
"enableJsonFlag": false,
|
|
952
1052
|
"isESM": true,
|
|
953
1053
|
"relativePath": [
|
|
954
1054
|
"dist",
|
|
955
1055
|
"commands",
|
|
956
|
-
"ephemeral",
|
|
957
1056
|
"run",
|
|
958
|
-
"
|
|
1057
|
+
"exec",
|
|
959
1058
|
"index.js"
|
|
960
1059
|
]
|
|
961
1060
|
},
|
|
962
|
-
"
|
|
1061
|
+
"run:info": {
|
|
963
1062
|
"aliases": [],
|
|
964
1063
|
"args": {},
|
|
965
|
-
"description": "
|
|
1064
|
+
"description": "Get information about a XanoScript document (type, inputs, env vars)",
|
|
966
1065
|
"examples": [
|
|
967
|
-
"$ xano
|
|
968
|
-
"$
|
|
969
|
-
"$
|
|
970
|
-
"$ xano ephemeral:run:service -f service.xs -o json\n{\n \"service\": { \"id\": 1 },\n ...\n}\n"
|
|
1066
|
+
"$ xano run info -f script.xs\nDocument Info:\n Type: job\n Inputs:\n - name (string, required)\n - count (number, optional)\n Environment Variables:\n - API_KEY\n - DEBUG\n",
|
|
1067
|
+
"$ cat script.xs | xano run info --stdin\nDocument Info:\n Type: service\n Inputs: none\n Environment Variables: none\n",
|
|
1068
|
+
"$ xano run info -f script.xs -o json\n{ \"type\": \"job\", \"input\": { \"name\": {...} }, \"env\": [\"API_KEY\"] }\n"
|
|
971
1069
|
],
|
|
972
1070
|
"flags": {
|
|
973
1071
|
"profile": {
|
|
@@ -1003,17 +1101,6 @@
|
|
|
1003
1101
|
"allowNo": false,
|
|
1004
1102
|
"type": "boolean"
|
|
1005
1103
|
},
|
|
1006
|
-
"edit": {
|
|
1007
|
-
"char": "e",
|
|
1008
|
-
"dependsOn": [
|
|
1009
|
-
"file"
|
|
1010
|
-
],
|
|
1011
|
-
"description": "Open file in editor before running service (requires --file)",
|
|
1012
|
-
"name": "edit",
|
|
1013
|
-
"required": false,
|
|
1014
|
-
"allowNo": false,
|
|
1015
|
-
"type": "boolean"
|
|
1016
|
-
},
|
|
1017
1104
|
"output": {
|
|
1018
1105
|
"char": "o",
|
|
1019
1106
|
"description": "Output format",
|
|
@@ -1031,38 +1118,29 @@
|
|
|
1031
1118
|
},
|
|
1032
1119
|
"hasDynamicHelp": false,
|
|
1033
1120
|
"hiddenAliases": [],
|
|
1034
|
-
"id": "
|
|
1121
|
+
"id": "run:info",
|
|
1035
1122
|
"pluginAlias": "@xano/cli",
|
|
1036
1123
|
"pluginName": "@xano/cli",
|
|
1037
1124
|
"pluginType": "core",
|
|
1038
1125
|
"strict": true,
|
|
1039
|
-
"enableJsonFlag": false,
|
|
1040
1126
|
"isESM": true,
|
|
1041
1127
|
"relativePath": [
|
|
1042
1128
|
"dist",
|
|
1043
1129
|
"commands",
|
|
1044
|
-
"ephemeral",
|
|
1045
1130
|
"run",
|
|
1046
|
-
"
|
|
1131
|
+
"info",
|
|
1047
1132
|
"index.js"
|
|
1048
1133
|
]
|
|
1049
1134
|
},
|
|
1050
|
-
"
|
|
1135
|
+
"static_host:list": {
|
|
1051
1136
|
"aliases": [],
|
|
1052
|
-
"args": {
|
|
1053
|
-
|
|
1054
|
-
"description": "Profile name to edit (uses default profile if not specified)",
|
|
1055
|
-
"name": "name",
|
|
1056
|
-
"required": false
|
|
1057
|
-
}
|
|
1058
|
-
},
|
|
1059
|
-
"description": "Edit an existing profile configuration",
|
|
1137
|
+
"args": {},
|
|
1138
|
+
"description": "List all static hosts in a workspace from the Xano Metadata API",
|
|
1060
1139
|
"examples": [
|
|
1061
|
-
"$ xano
|
|
1062
|
-
"$ xano
|
|
1063
|
-
"$ xano
|
|
1064
|
-
"$ xano
|
|
1065
|
-
"$ xano profile:edit --remove-branch\nProfile 'default' updated successfully at ~/.xano/credentials.yaml\n"
|
|
1140
|
+
"$ xano static_host:list -w 40\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
1141
|
+
"$ xano static_host:list --profile production\nAvailable static hosts:\n - my-static-host (ID: 1)\n - another-host (ID: 2)\n",
|
|
1142
|
+
"$ 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",
|
|
1143
|
+
"$ xano static_host:list -p staging -o json --page 2\n[\n {\n \"id\": 3,\n \"name\": \"static-host-3\"\n }\n]\n"
|
|
1066
1144
|
],
|
|
1067
1145
|
"flags": {
|
|
1068
1146
|
"profile": {
|
|
@@ -1075,61 +1153,163 @@
|
|
|
1075
1153
|
"multiple": false,
|
|
1076
1154
|
"type": "option"
|
|
1077
1155
|
},
|
|
1078
|
-
"
|
|
1079
|
-
"char": "
|
|
1080
|
-
"description": "
|
|
1081
|
-
"name": "
|
|
1156
|
+
"workspace": {
|
|
1157
|
+
"char": "w",
|
|
1158
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
1159
|
+
"name": "workspace",
|
|
1082
1160
|
"required": false,
|
|
1083
1161
|
"hasDynamicHelp": false,
|
|
1084
1162
|
"multiple": false,
|
|
1085
1163
|
"type": "option"
|
|
1086
1164
|
},
|
|
1087
|
-
"
|
|
1088
|
-
"char": "
|
|
1089
|
-
"description": "
|
|
1090
|
-
"name": "
|
|
1165
|
+
"output": {
|
|
1166
|
+
"char": "o",
|
|
1167
|
+
"description": "Output format",
|
|
1168
|
+
"name": "output",
|
|
1091
1169
|
"required": false,
|
|
1170
|
+
"default": "summary",
|
|
1092
1171
|
"hasDynamicHelp": false,
|
|
1093
1172
|
"multiple": false,
|
|
1173
|
+
"options": [
|
|
1174
|
+
"summary",
|
|
1175
|
+
"json"
|
|
1176
|
+
],
|
|
1094
1177
|
"type": "option"
|
|
1095
1178
|
},
|
|
1096
|
-
"
|
|
1097
|
-
"
|
|
1098
|
-
"
|
|
1099
|
-
"name": "access_token",
|
|
1179
|
+
"page": {
|
|
1180
|
+
"description": "Page number for pagination",
|
|
1181
|
+
"name": "page",
|
|
1100
1182
|
"required": false,
|
|
1183
|
+
"default": 1,
|
|
1101
1184
|
"hasDynamicHelp": false,
|
|
1102
1185
|
"multiple": false,
|
|
1103
1186
|
"type": "option"
|
|
1104
1187
|
},
|
|
1105
|
-
"
|
|
1106
|
-
"
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1188
|
+
"per_page": {
|
|
1189
|
+
"description": "Number of results per page",
|
|
1190
|
+
"name": "per_page",
|
|
1191
|
+
"required": false,
|
|
1192
|
+
"default": 50,
|
|
1193
|
+
"hasDynamicHelp": false,
|
|
1194
|
+
"multiple": false,
|
|
1195
|
+
"type": "option"
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
"hasDynamicHelp": false,
|
|
1199
|
+
"hiddenAliases": [],
|
|
1200
|
+
"id": "static_host:list",
|
|
1201
|
+
"pluginAlias": "@xano/cli",
|
|
1202
|
+
"pluginName": "@xano/cli",
|
|
1203
|
+
"pluginType": "core",
|
|
1204
|
+
"strict": true,
|
|
1205
|
+
"enableJsonFlag": false,
|
|
1206
|
+
"isESM": true,
|
|
1207
|
+
"relativePath": [
|
|
1208
|
+
"dist",
|
|
1209
|
+
"commands",
|
|
1210
|
+
"static_host",
|
|
1211
|
+
"list",
|
|
1212
|
+
"index.js"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
"workspace:list": {
|
|
1216
|
+
"aliases": [],
|
|
1217
|
+
"args": {},
|
|
1218
|
+
"description": "List all workspaces from the Xano Metadata API",
|
|
1219
|
+
"examples": [
|
|
1220
|
+
"$ xano workspace:list\nAvailable workspaces:\n - workspace-1 (ID: 1)\n - workspace-2 (ID: 2)\n - workspace-3 (ID: 3)\n",
|
|
1221
|
+
"$ xano workspace:list --profile production\nAvailable workspaces:\n - my-app (ID: 1)\n - staging-env (ID: 2)\n",
|
|
1222
|
+
"$ xano workspace:list --output json\n{\n \"workspaces\": [\n {\n \"id\": 1,\n \"name\": \"workspace-1\"\n },\n {\n \"id\": 2,\n \"name\": \"workspace-2\"\n }\n ]\n}\n",
|
|
1223
|
+
"$ xano workspace:list -p staging -o json\n{\n \"workspaces\": [\n {\n \"id\": 1,\n \"name\": \"my-app\"\n }\n ]\n}\n"
|
|
1224
|
+
],
|
|
1225
|
+
"flags": {
|
|
1226
|
+
"profile": {
|
|
1227
|
+
"char": "p",
|
|
1228
|
+
"description": "Profile to use for this command",
|
|
1229
|
+
"env": "XANO_PROFILE",
|
|
1230
|
+
"name": "profile",
|
|
1109
1231
|
"required": false,
|
|
1110
1232
|
"hasDynamicHelp": false,
|
|
1111
1233
|
"multiple": false,
|
|
1112
1234
|
"type": "option"
|
|
1113
1235
|
},
|
|
1114
|
-
"
|
|
1115
|
-
"char": "
|
|
1116
|
-
"description": "
|
|
1117
|
-
"name": "
|
|
1236
|
+
"output": {
|
|
1237
|
+
"char": "o",
|
|
1238
|
+
"description": "Output format",
|
|
1239
|
+
"name": "output",
|
|
1240
|
+
"required": false,
|
|
1241
|
+
"default": "summary",
|
|
1242
|
+
"hasDynamicHelp": false,
|
|
1243
|
+
"multiple": false,
|
|
1244
|
+
"options": [
|
|
1245
|
+
"summary",
|
|
1246
|
+
"json"
|
|
1247
|
+
],
|
|
1248
|
+
"type": "option"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"hasDynamicHelp": false,
|
|
1252
|
+
"hiddenAliases": [],
|
|
1253
|
+
"id": "workspace:list",
|
|
1254
|
+
"pluginAlias": "@xano/cli",
|
|
1255
|
+
"pluginName": "@xano/cli",
|
|
1256
|
+
"pluginType": "core",
|
|
1257
|
+
"strict": true,
|
|
1258
|
+
"enableJsonFlag": false,
|
|
1259
|
+
"isESM": true,
|
|
1260
|
+
"relativePath": [
|
|
1261
|
+
"dist",
|
|
1262
|
+
"commands",
|
|
1263
|
+
"workspace",
|
|
1264
|
+
"list",
|
|
1265
|
+
"index.js"
|
|
1266
|
+
]
|
|
1267
|
+
},
|
|
1268
|
+
"workspace:pull": {
|
|
1269
|
+
"aliases": [],
|
|
1270
|
+
"args": {
|
|
1271
|
+
"directory": {
|
|
1272
|
+
"description": "Output directory for pulled documents",
|
|
1273
|
+
"name": "directory",
|
|
1274
|
+
"required": true
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
"description": "Pull a workspace multidoc from the Xano Metadata API and split into individual files",
|
|
1278
|
+
"examples": [
|
|
1279
|
+
"$ xano workspace pull ./my-workspace\nPulled 42 documents to ./my-workspace\n",
|
|
1280
|
+
"$ xano workspace pull ./output -w 40\nPulled 15 documents to ./output\n",
|
|
1281
|
+
"$ xano workspace pull ./backup --profile production --env --records\nPulled 58 documents to ./backup\n"
|
|
1282
|
+
],
|
|
1283
|
+
"flags": {
|
|
1284
|
+
"profile": {
|
|
1285
|
+
"char": "p",
|
|
1286
|
+
"description": "Profile to use for this command",
|
|
1287
|
+
"env": "XANO_PROFILE",
|
|
1288
|
+
"name": "profile",
|
|
1118
1289
|
"required": false,
|
|
1119
1290
|
"hasDynamicHelp": false,
|
|
1120
1291
|
"multiple": false,
|
|
1121
1292
|
"type": "option"
|
|
1122
1293
|
},
|
|
1123
|
-
"
|
|
1124
|
-
"
|
|
1125
|
-
"
|
|
1294
|
+
"workspace": {
|
|
1295
|
+
"char": "w",
|
|
1296
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
1297
|
+
"name": "workspace",
|
|
1298
|
+
"required": false,
|
|
1299
|
+
"hasDynamicHelp": false,
|
|
1300
|
+
"multiple": false,
|
|
1301
|
+
"type": "option"
|
|
1302
|
+
},
|
|
1303
|
+
"env": {
|
|
1304
|
+
"description": "Include environment variables",
|
|
1305
|
+
"name": "env",
|
|
1126
1306
|
"required": false,
|
|
1127
1307
|
"allowNo": false,
|
|
1128
1308
|
"type": "boolean"
|
|
1129
1309
|
},
|
|
1130
|
-
"
|
|
1131
|
-
"description": "
|
|
1132
|
-
"name": "
|
|
1310
|
+
"records": {
|
|
1311
|
+
"description": "Include records",
|
|
1312
|
+
"name": "records",
|
|
1133
1313
|
"required": false,
|
|
1134
1314
|
"allowNo": false,
|
|
1135
1315
|
"type": "boolean"
|
|
@@ -1137,7 +1317,7 @@
|
|
|
1137
1317
|
},
|
|
1138
1318
|
"hasDynamicHelp": false,
|
|
1139
1319
|
"hiddenAliases": [],
|
|
1140
|
-
"id": "
|
|
1320
|
+
"id": "workspace:pull",
|
|
1141
1321
|
"pluginAlias": "@xano/cli",
|
|
1142
1322
|
"pluginName": "@xano/cli",
|
|
1143
1323
|
"pluginType": "core",
|
|
@@ -1147,8 +1327,1080 @@
|
|
|
1147
1327
|
"relativePath": [
|
|
1148
1328
|
"dist",
|
|
1149
1329
|
"commands",
|
|
1150
|
-
"
|
|
1151
|
-
"
|
|
1330
|
+
"workspace",
|
|
1331
|
+
"pull",
|
|
1332
|
+
"index.js"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
"workspace:push": {
|
|
1336
|
+
"aliases": [],
|
|
1337
|
+
"args": {
|
|
1338
|
+
"directory": {
|
|
1339
|
+
"description": "Directory containing documents to push (as produced by workspace pull)",
|
|
1340
|
+
"name": "directory",
|
|
1341
|
+
"required": true
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"description": "Push local documents to a workspace via the Xano Metadata API multidoc endpoint",
|
|
1345
|
+
"examples": [
|
|
1346
|
+
"$ xano workspace push ./my-workspace\nPushed 42 documents from ./my-workspace\n",
|
|
1347
|
+
"$ xano workspace push ./output -w 40\nPushed 15 documents from ./output\n",
|
|
1348
|
+
"$ xano workspace push ./backup --profile production\nPushed 58 documents from ./backup\n"
|
|
1349
|
+
],
|
|
1350
|
+
"flags": {
|
|
1351
|
+
"profile": {
|
|
1352
|
+
"char": "p",
|
|
1353
|
+
"description": "Profile to use for this command",
|
|
1354
|
+
"env": "XANO_PROFILE",
|
|
1355
|
+
"name": "profile",
|
|
1356
|
+
"required": false,
|
|
1357
|
+
"hasDynamicHelp": false,
|
|
1358
|
+
"multiple": false,
|
|
1359
|
+
"type": "option"
|
|
1360
|
+
},
|
|
1361
|
+
"workspace": {
|
|
1362
|
+
"char": "w",
|
|
1363
|
+
"description": "Workspace ID (optional if set in profile)",
|
|
1364
|
+
"name": "workspace",
|
|
1365
|
+
"required": false,
|
|
1366
|
+
"hasDynamicHelp": false,
|
|
1367
|
+
"multiple": false,
|
|
1368
|
+
"type": "option"
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
"hasDynamicHelp": false,
|
|
1372
|
+
"hiddenAliases": [],
|
|
1373
|
+
"id": "workspace:push",
|
|
1374
|
+
"pluginAlias": "@xano/cli",
|
|
1375
|
+
"pluginName": "@xano/cli",
|
|
1376
|
+
"pluginType": "core",
|
|
1377
|
+
"strict": true,
|
|
1378
|
+
"enableJsonFlag": false,
|
|
1379
|
+
"isESM": true,
|
|
1380
|
+
"relativePath": [
|
|
1381
|
+
"dist",
|
|
1382
|
+
"commands",
|
|
1383
|
+
"workspace",
|
|
1384
|
+
"push",
|
|
1385
|
+
"index.js"
|
|
1386
|
+
]
|
|
1387
|
+
},
|
|
1388
|
+
"run:env:delete": {
|
|
1389
|
+
"aliases": [],
|
|
1390
|
+
"args": {
|
|
1391
|
+
"name": {
|
|
1392
|
+
"description": "Environment variable name",
|
|
1393
|
+
"name": "name",
|
|
1394
|
+
"required": true
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
"description": "Delete an environment variable",
|
|
1398
|
+
"examples": [
|
|
1399
|
+
"$ xano run env delete API_KEY\nAre you sure you want to delete environment variable 'API_KEY'? (y/N)\nEnvironment variable 'API_KEY' deleted successfully!\n",
|
|
1400
|
+
"$ xano run env delete API_KEY --force\nEnvironment variable 'API_KEY' deleted successfully!\n"
|
|
1401
|
+
],
|
|
1402
|
+
"flags": {
|
|
1403
|
+
"profile": {
|
|
1404
|
+
"char": "p",
|
|
1405
|
+
"description": "Profile to use for this command",
|
|
1406
|
+
"env": "XANO_PROFILE",
|
|
1407
|
+
"name": "profile",
|
|
1408
|
+
"required": false,
|
|
1409
|
+
"hasDynamicHelp": false,
|
|
1410
|
+
"multiple": false,
|
|
1411
|
+
"type": "option"
|
|
1412
|
+
},
|
|
1413
|
+
"force": {
|
|
1414
|
+
"char": "f",
|
|
1415
|
+
"description": "Skip confirmation prompt",
|
|
1416
|
+
"name": "force",
|
|
1417
|
+
"required": false,
|
|
1418
|
+
"allowNo": false,
|
|
1419
|
+
"type": "boolean"
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"hasDynamicHelp": false,
|
|
1423
|
+
"hiddenAliases": [],
|
|
1424
|
+
"id": "run:env:delete",
|
|
1425
|
+
"pluginAlias": "@xano/cli",
|
|
1426
|
+
"pluginName": "@xano/cli",
|
|
1427
|
+
"pluginType": "core",
|
|
1428
|
+
"strict": true,
|
|
1429
|
+
"isESM": true,
|
|
1430
|
+
"relativePath": [
|
|
1431
|
+
"dist",
|
|
1432
|
+
"commands",
|
|
1433
|
+
"run",
|
|
1434
|
+
"env",
|
|
1435
|
+
"delete",
|
|
1436
|
+
"index.js"
|
|
1437
|
+
]
|
|
1438
|
+
},
|
|
1439
|
+
"run:env:get": {
|
|
1440
|
+
"aliases": [],
|
|
1441
|
+
"args": {
|
|
1442
|
+
"name": {
|
|
1443
|
+
"description": "Environment variable name",
|
|
1444
|
+
"name": "name",
|
|
1445
|
+
"required": true
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
"description": "Get an environment variable value",
|
|
1449
|
+
"examples": [
|
|
1450
|
+
"$ xano run env get API_KEY\nmy-secret-api-key\n",
|
|
1451
|
+
"$ xano run env get API_KEY -o json\n{ \"name\": \"API_KEY\", \"value\": \"my-secret-api-key\" }\n"
|
|
1452
|
+
],
|
|
1453
|
+
"flags": {
|
|
1454
|
+
"profile": {
|
|
1455
|
+
"char": "p",
|
|
1456
|
+
"description": "Profile to use for this command",
|
|
1457
|
+
"env": "XANO_PROFILE",
|
|
1458
|
+
"name": "profile",
|
|
1459
|
+
"required": false,
|
|
1460
|
+
"hasDynamicHelp": false,
|
|
1461
|
+
"multiple": false,
|
|
1462
|
+
"type": "option"
|
|
1463
|
+
},
|
|
1464
|
+
"output": {
|
|
1465
|
+
"char": "o",
|
|
1466
|
+
"description": "Output format",
|
|
1467
|
+
"name": "output",
|
|
1468
|
+
"required": false,
|
|
1469
|
+
"default": "value",
|
|
1470
|
+
"hasDynamicHelp": false,
|
|
1471
|
+
"multiple": false,
|
|
1472
|
+
"options": [
|
|
1473
|
+
"value",
|
|
1474
|
+
"json"
|
|
1475
|
+
],
|
|
1476
|
+
"type": "option"
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
"hasDynamicHelp": false,
|
|
1480
|
+
"hiddenAliases": [],
|
|
1481
|
+
"id": "run:env:get",
|
|
1482
|
+
"pluginAlias": "@xano/cli",
|
|
1483
|
+
"pluginName": "@xano/cli",
|
|
1484
|
+
"pluginType": "core",
|
|
1485
|
+
"strict": true,
|
|
1486
|
+
"isESM": true,
|
|
1487
|
+
"relativePath": [
|
|
1488
|
+
"dist",
|
|
1489
|
+
"commands",
|
|
1490
|
+
"run",
|
|
1491
|
+
"env",
|
|
1492
|
+
"get",
|
|
1493
|
+
"index.js"
|
|
1494
|
+
]
|
|
1495
|
+
},
|
|
1496
|
+
"run:env:list": {
|
|
1497
|
+
"aliases": [],
|
|
1498
|
+
"args": {},
|
|
1499
|
+
"description": "List all environment variable keys",
|
|
1500
|
+
"examples": [
|
|
1501
|
+
"$ xano run env list\nEnvironment variables:\n - API_KEY\n - DATABASE_URL\n - DEBUG\n",
|
|
1502
|
+
"$ xano run env list -o json\n{ \"env\": [\"API_KEY\", \"DATABASE_URL\", \"DEBUG\"] }\n"
|
|
1503
|
+
],
|
|
1504
|
+
"flags": {
|
|
1505
|
+
"profile": {
|
|
1506
|
+
"char": "p",
|
|
1507
|
+
"description": "Profile to use for this command",
|
|
1508
|
+
"env": "XANO_PROFILE",
|
|
1509
|
+
"name": "profile",
|
|
1510
|
+
"required": false,
|
|
1511
|
+
"hasDynamicHelp": false,
|
|
1512
|
+
"multiple": false,
|
|
1513
|
+
"type": "option"
|
|
1514
|
+
},
|
|
1515
|
+
"output": {
|
|
1516
|
+
"char": "o",
|
|
1517
|
+
"description": "Output format",
|
|
1518
|
+
"name": "output",
|
|
1519
|
+
"required": false,
|
|
1520
|
+
"default": "list",
|
|
1521
|
+
"hasDynamicHelp": false,
|
|
1522
|
+
"multiple": false,
|
|
1523
|
+
"options": [
|
|
1524
|
+
"list",
|
|
1525
|
+
"json"
|
|
1526
|
+
],
|
|
1527
|
+
"type": "option"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
"hasDynamicHelp": false,
|
|
1531
|
+
"hiddenAliases": [],
|
|
1532
|
+
"id": "run:env:list",
|
|
1533
|
+
"pluginAlias": "@xano/cli",
|
|
1534
|
+
"pluginName": "@xano/cli",
|
|
1535
|
+
"pluginType": "core",
|
|
1536
|
+
"strict": true,
|
|
1537
|
+
"isESM": true,
|
|
1538
|
+
"relativePath": [
|
|
1539
|
+
"dist",
|
|
1540
|
+
"commands",
|
|
1541
|
+
"run",
|
|
1542
|
+
"env",
|
|
1543
|
+
"list",
|
|
1544
|
+
"index.js"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"run:env:set": {
|
|
1548
|
+
"aliases": [],
|
|
1549
|
+
"args": {
|
|
1550
|
+
"name": {
|
|
1551
|
+
"description": "Environment variable name",
|
|
1552
|
+
"name": "name",
|
|
1553
|
+
"required": true
|
|
1554
|
+
},
|
|
1555
|
+
"value": {
|
|
1556
|
+
"description": "Environment variable value",
|
|
1557
|
+
"name": "value",
|
|
1558
|
+
"required": true
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
"description": "Set an environment variable",
|
|
1562
|
+
"examples": [
|
|
1563
|
+
"$ xano run env set API_KEY my-secret-key\nEnvironment variable 'API_KEY' set successfully!\n",
|
|
1564
|
+
"$ xano run env set DATABASE_URL \"postgres://user:pass@host/db\"\nEnvironment variable 'DATABASE_URL' set successfully!\n"
|
|
1565
|
+
],
|
|
1566
|
+
"flags": {
|
|
1567
|
+
"profile": {
|
|
1568
|
+
"char": "p",
|
|
1569
|
+
"description": "Profile to use for this command",
|
|
1570
|
+
"env": "XANO_PROFILE",
|
|
1571
|
+
"name": "profile",
|
|
1572
|
+
"required": false,
|
|
1573
|
+
"hasDynamicHelp": false,
|
|
1574
|
+
"multiple": false,
|
|
1575
|
+
"type": "option"
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"hasDynamicHelp": false,
|
|
1579
|
+
"hiddenAliases": [],
|
|
1580
|
+
"id": "run:env:set",
|
|
1581
|
+
"pluginAlias": "@xano/cli",
|
|
1582
|
+
"pluginName": "@xano/cli",
|
|
1583
|
+
"pluginType": "core",
|
|
1584
|
+
"strict": true,
|
|
1585
|
+
"isESM": true,
|
|
1586
|
+
"relativePath": [
|
|
1587
|
+
"dist",
|
|
1588
|
+
"commands",
|
|
1589
|
+
"run",
|
|
1590
|
+
"env",
|
|
1591
|
+
"set",
|
|
1592
|
+
"index.js"
|
|
1593
|
+
]
|
|
1594
|
+
},
|
|
1595
|
+
"run:projects:create": {
|
|
1596
|
+
"aliases": [],
|
|
1597
|
+
"args": {},
|
|
1598
|
+
"description": "Create a new project",
|
|
1599
|
+
"examples": [
|
|
1600
|
+
"$ xano run projects create -n \"My Project\"\nProject created successfully!\n ID: abc123-def456-ghi789\n Name: My Project\n",
|
|
1601
|
+
"$ xano run projects create -n \"My Project\" -d \"Description here\"\nProject created successfully!\n ID: abc123-def456-ghi789\n Name: My Project\n",
|
|
1602
|
+
"$ xano run projects create -n \"My Project\" -o json\n{ \"id\": \"abc123-def456-ghi789\", \"name\": \"My Project\", ... }\n"
|
|
1603
|
+
],
|
|
1604
|
+
"flags": {
|
|
1605
|
+
"profile": {
|
|
1606
|
+
"char": "p",
|
|
1607
|
+
"description": "Profile to use for this command",
|
|
1608
|
+
"env": "XANO_PROFILE",
|
|
1609
|
+
"name": "profile",
|
|
1610
|
+
"required": false,
|
|
1611
|
+
"hasDynamicHelp": false,
|
|
1612
|
+
"multiple": false,
|
|
1613
|
+
"type": "option"
|
|
1614
|
+
},
|
|
1615
|
+
"name": {
|
|
1616
|
+
"char": "n",
|
|
1617
|
+
"description": "Project name",
|
|
1618
|
+
"name": "name",
|
|
1619
|
+
"required": true,
|
|
1620
|
+
"hasDynamicHelp": false,
|
|
1621
|
+
"multiple": false,
|
|
1622
|
+
"type": "option"
|
|
1623
|
+
},
|
|
1624
|
+
"description": {
|
|
1625
|
+
"char": "d",
|
|
1626
|
+
"description": "Project description",
|
|
1627
|
+
"name": "description",
|
|
1628
|
+
"required": false,
|
|
1629
|
+
"default": "",
|
|
1630
|
+
"hasDynamicHelp": false,
|
|
1631
|
+
"multiple": false,
|
|
1632
|
+
"type": "option"
|
|
1633
|
+
},
|
|
1634
|
+
"output": {
|
|
1635
|
+
"char": "o",
|
|
1636
|
+
"description": "Output format",
|
|
1637
|
+
"name": "output",
|
|
1638
|
+
"required": false,
|
|
1639
|
+
"default": "summary",
|
|
1640
|
+
"hasDynamicHelp": false,
|
|
1641
|
+
"multiple": false,
|
|
1642
|
+
"options": [
|
|
1643
|
+
"summary",
|
|
1644
|
+
"json"
|
|
1645
|
+
],
|
|
1646
|
+
"type": "option"
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1649
|
+
"hasDynamicHelp": false,
|
|
1650
|
+
"hiddenAliases": [],
|
|
1651
|
+
"id": "run:projects:create",
|
|
1652
|
+
"pluginAlias": "@xano/cli",
|
|
1653
|
+
"pluginName": "@xano/cli",
|
|
1654
|
+
"pluginType": "core",
|
|
1655
|
+
"strict": true,
|
|
1656
|
+
"isESM": true,
|
|
1657
|
+
"relativePath": [
|
|
1658
|
+
"dist",
|
|
1659
|
+
"commands",
|
|
1660
|
+
"run",
|
|
1661
|
+
"projects",
|
|
1662
|
+
"create",
|
|
1663
|
+
"index.js"
|
|
1664
|
+
]
|
|
1665
|
+
},
|
|
1666
|
+
"run:projects:delete": {
|
|
1667
|
+
"aliases": [],
|
|
1668
|
+
"args": {
|
|
1669
|
+
"projectId": {
|
|
1670
|
+
"description": "Project ID to delete",
|
|
1671
|
+
"name": "projectId",
|
|
1672
|
+
"required": true
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
"description": "Delete a project",
|
|
1676
|
+
"examples": [
|
|
1677
|
+
"$ xano run projects delete abc123-def456\nAre you sure you want to delete project 'abc123-def456'? (y/N)\nProject deleted successfully!\n",
|
|
1678
|
+
"$ xano run projects delete abc123-def456 --force\nProject deleted successfully!\n"
|
|
1679
|
+
],
|
|
1680
|
+
"flags": {
|
|
1681
|
+
"profile": {
|
|
1682
|
+
"char": "p",
|
|
1683
|
+
"description": "Profile to use for this command",
|
|
1684
|
+
"env": "XANO_PROFILE",
|
|
1685
|
+
"name": "profile",
|
|
1686
|
+
"required": false,
|
|
1687
|
+
"hasDynamicHelp": false,
|
|
1688
|
+
"multiple": false,
|
|
1689
|
+
"type": "option"
|
|
1690
|
+
},
|
|
1691
|
+
"force": {
|
|
1692
|
+
"char": "f",
|
|
1693
|
+
"description": "Skip confirmation prompt",
|
|
1694
|
+
"name": "force",
|
|
1695
|
+
"required": false,
|
|
1696
|
+
"allowNo": false,
|
|
1697
|
+
"type": "boolean"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1700
|
+
"hasDynamicHelp": false,
|
|
1701
|
+
"hiddenAliases": [],
|
|
1702
|
+
"id": "run:projects:delete",
|
|
1703
|
+
"pluginAlias": "@xano/cli",
|
|
1704
|
+
"pluginName": "@xano/cli",
|
|
1705
|
+
"pluginType": "core",
|
|
1706
|
+
"strict": true,
|
|
1707
|
+
"isESM": true,
|
|
1708
|
+
"relativePath": [
|
|
1709
|
+
"dist",
|
|
1710
|
+
"commands",
|
|
1711
|
+
"run",
|
|
1712
|
+
"projects",
|
|
1713
|
+
"delete",
|
|
1714
|
+
"index.js"
|
|
1715
|
+
]
|
|
1716
|
+
},
|
|
1717
|
+
"run:projects:update": {
|
|
1718
|
+
"aliases": [],
|
|
1719
|
+
"args": {
|
|
1720
|
+
"projectId": {
|
|
1721
|
+
"description": "Project ID to update",
|
|
1722
|
+
"name": "projectId",
|
|
1723
|
+
"required": true
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
"description": "Update a project",
|
|
1727
|
+
"examples": [
|
|
1728
|
+
"$ xano run projects update abc123-def456 -n \"New Name\"\nProject updated successfully!\n ID: abc123-def456\n Name: New Name\n",
|
|
1729
|
+
"$ xano run projects update abc123-def456 -d \"New description\"\nProject updated successfully!\n ID: abc123-def456\n Description: New description\n",
|
|
1730
|
+
"$ xano run projects update abc123-def456 -n \"New Name\" -o json\n{ \"id\": \"abc123-def456\", \"name\": \"New Name\", ... }\n"
|
|
1731
|
+
],
|
|
1732
|
+
"flags": {
|
|
1733
|
+
"profile": {
|
|
1734
|
+
"char": "p",
|
|
1735
|
+
"description": "Profile to use for this command",
|
|
1736
|
+
"env": "XANO_PROFILE",
|
|
1737
|
+
"name": "profile",
|
|
1738
|
+
"required": false,
|
|
1739
|
+
"hasDynamicHelp": false,
|
|
1740
|
+
"multiple": false,
|
|
1741
|
+
"type": "option"
|
|
1742
|
+
},
|
|
1743
|
+
"name": {
|
|
1744
|
+
"char": "n",
|
|
1745
|
+
"description": "New project name",
|
|
1746
|
+
"name": "name",
|
|
1747
|
+
"required": false,
|
|
1748
|
+
"hasDynamicHelp": false,
|
|
1749
|
+
"multiple": false,
|
|
1750
|
+
"type": "option"
|
|
1751
|
+
},
|
|
1752
|
+
"description": {
|
|
1753
|
+
"char": "d",
|
|
1754
|
+
"description": "New project description",
|
|
1755
|
+
"name": "description",
|
|
1756
|
+
"required": false,
|
|
1757
|
+
"hasDynamicHelp": false,
|
|
1758
|
+
"multiple": false,
|
|
1759
|
+
"type": "option"
|
|
1760
|
+
},
|
|
1761
|
+
"output": {
|
|
1762
|
+
"char": "o",
|
|
1763
|
+
"description": "Output format",
|
|
1764
|
+
"name": "output",
|
|
1765
|
+
"required": false,
|
|
1766
|
+
"default": "summary",
|
|
1767
|
+
"hasDynamicHelp": false,
|
|
1768
|
+
"multiple": false,
|
|
1769
|
+
"options": [
|
|
1770
|
+
"summary",
|
|
1771
|
+
"json"
|
|
1772
|
+
],
|
|
1773
|
+
"type": "option"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"hasDynamicHelp": false,
|
|
1777
|
+
"hiddenAliases": [],
|
|
1778
|
+
"id": "run:projects:update",
|
|
1779
|
+
"pluginAlias": "@xano/cli",
|
|
1780
|
+
"pluginName": "@xano/cli",
|
|
1781
|
+
"pluginType": "core",
|
|
1782
|
+
"strict": true,
|
|
1783
|
+
"isESM": true,
|
|
1784
|
+
"relativePath": [
|
|
1785
|
+
"dist",
|
|
1786
|
+
"commands",
|
|
1787
|
+
"run",
|
|
1788
|
+
"projects",
|
|
1789
|
+
"update",
|
|
1790
|
+
"index.js"
|
|
1791
|
+
]
|
|
1792
|
+
},
|
|
1793
|
+
"run:projects:list": {
|
|
1794
|
+
"aliases": [],
|
|
1795
|
+
"args": {},
|
|
1796
|
+
"description": "List all projects",
|
|
1797
|
+
"examples": [
|
|
1798
|
+
"$ xano run projects list\nID NAME ACCESS\nabc123-def456-ghi789 My Project private\nxyz789-uvw456-rst123 Test Project public\n",
|
|
1799
|
+
"$ xano run projects list -o json\n[\n { \"id\": \"abc123-def456-ghi789\", \"name\": \"My Project\", ... }\n]\n"
|
|
1800
|
+
],
|
|
1801
|
+
"flags": {
|
|
1802
|
+
"profile": {
|
|
1803
|
+
"char": "p",
|
|
1804
|
+
"description": "Profile to use for this command",
|
|
1805
|
+
"env": "XANO_PROFILE",
|
|
1806
|
+
"name": "profile",
|
|
1807
|
+
"required": false,
|
|
1808
|
+
"hasDynamicHelp": false,
|
|
1809
|
+
"multiple": false,
|
|
1810
|
+
"type": "option"
|
|
1811
|
+
},
|
|
1812
|
+
"output": {
|
|
1813
|
+
"char": "o",
|
|
1814
|
+
"description": "Output format",
|
|
1815
|
+
"name": "output",
|
|
1816
|
+
"required": false,
|
|
1817
|
+
"default": "table",
|
|
1818
|
+
"hasDynamicHelp": false,
|
|
1819
|
+
"multiple": false,
|
|
1820
|
+
"options": [
|
|
1821
|
+
"table",
|
|
1822
|
+
"json"
|
|
1823
|
+
],
|
|
1824
|
+
"type": "option"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
"hasDynamicHelp": false,
|
|
1828
|
+
"hiddenAliases": [],
|
|
1829
|
+
"id": "run:projects:list",
|
|
1830
|
+
"pluginAlias": "@xano/cli",
|
|
1831
|
+
"pluginName": "@xano/cli",
|
|
1832
|
+
"pluginType": "core",
|
|
1833
|
+
"strict": true,
|
|
1834
|
+
"isESM": true,
|
|
1835
|
+
"relativePath": [
|
|
1836
|
+
"dist",
|
|
1837
|
+
"commands",
|
|
1838
|
+
"run",
|
|
1839
|
+
"projects",
|
|
1840
|
+
"list",
|
|
1841
|
+
"index.js"
|
|
1842
|
+
]
|
|
1843
|
+
},
|
|
1844
|
+
"run:secrets:delete": {
|
|
1845
|
+
"aliases": [],
|
|
1846
|
+
"args": {
|
|
1847
|
+
"name": {
|
|
1848
|
+
"description": "Secret name",
|
|
1849
|
+
"name": "name",
|
|
1850
|
+
"required": true
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
"description": "Delete a secret",
|
|
1854
|
+
"examples": [
|
|
1855
|
+
"$ xano run secrets delete docker-registry\nAre you sure you want to delete secret 'docker-registry'? (y/N)\nSecret 'docker-registry' deleted successfully!\n",
|
|
1856
|
+
"$ xano run secrets delete docker-registry --force\nSecret 'docker-registry' deleted successfully!\n"
|
|
1857
|
+
],
|
|
1858
|
+
"flags": {
|
|
1859
|
+
"profile": {
|
|
1860
|
+
"char": "p",
|
|
1861
|
+
"description": "Profile to use for this command",
|
|
1862
|
+
"env": "XANO_PROFILE",
|
|
1863
|
+
"name": "profile",
|
|
1864
|
+
"required": false,
|
|
1865
|
+
"hasDynamicHelp": false,
|
|
1866
|
+
"multiple": false,
|
|
1867
|
+
"type": "option"
|
|
1868
|
+
},
|
|
1869
|
+
"force": {
|
|
1870
|
+
"char": "f",
|
|
1871
|
+
"description": "Skip confirmation prompt",
|
|
1872
|
+
"name": "force",
|
|
1873
|
+
"required": false,
|
|
1874
|
+
"allowNo": false,
|
|
1875
|
+
"type": "boolean"
|
|
1876
|
+
}
|
|
1877
|
+
},
|
|
1878
|
+
"hasDynamicHelp": false,
|
|
1879
|
+
"hiddenAliases": [],
|
|
1880
|
+
"id": "run:secrets:delete",
|
|
1881
|
+
"pluginAlias": "@xano/cli",
|
|
1882
|
+
"pluginName": "@xano/cli",
|
|
1883
|
+
"pluginType": "core",
|
|
1884
|
+
"strict": true,
|
|
1885
|
+
"isESM": true,
|
|
1886
|
+
"relativePath": [
|
|
1887
|
+
"dist",
|
|
1888
|
+
"commands",
|
|
1889
|
+
"run",
|
|
1890
|
+
"secrets",
|
|
1891
|
+
"delete",
|
|
1892
|
+
"index.js"
|
|
1893
|
+
]
|
|
1894
|
+
},
|
|
1895
|
+
"run:secrets:get": {
|
|
1896
|
+
"aliases": [],
|
|
1897
|
+
"args": {
|
|
1898
|
+
"name": {
|
|
1899
|
+
"description": "Secret name",
|
|
1900
|
+
"name": "name",
|
|
1901
|
+
"required": true
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"description": "Get a secret value",
|
|
1905
|
+
"examples": [
|
|
1906
|
+
"$ xano run secrets get docker-registry\n{\"auths\":{\"ghcr.io\":{\"auth\":\"...\"}}}\n",
|
|
1907
|
+
"$ xano run secrets get docker-registry -o json\n{ \"name\": \"docker-registry\", \"type\": \"kubernetes.io/dockerconfigjson\", \"value\": \"...\" }\n"
|
|
1908
|
+
],
|
|
1909
|
+
"flags": {
|
|
1910
|
+
"profile": {
|
|
1911
|
+
"char": "p",
|
|
1912
|
+
"description": "Profile to use for this command",
|
|
1913
|
+
"env": "XANO_PROFILE",
|
|
1914
|
+
"name": "profile",
|
|
1915
|
+
"required": false,
|
|
1916
|
+
"hasDynamicHelp": false,
|
|
1917
|
+
"multiple": false,
|
|
1918
|
+
"type": "option"
|
|
1919
|
+
},
|
|
1920
|
+
"output": {
|
|
1921
|
+
"char": "o",
|
|
1922
|
+
"description": "Output format",
|
|
1923
|
+
"name": "output",
|
|
1924
|
+
"required": false,
|
|
1925
|
+
"default": "value",
|
|
1926
|
+
"hasDynamicHelp": false,
|
|
1927
|
+
"multiple": false,
|
|
1928
|
+
"options": [
|
|
1929
|
+
"value",
|
|
1930
|
+
"json"
|
|
1931
|
+
],
|
|
1932
|
+
"type": "option"
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
"hasDynamicHelp": false,
|
|
1936
|
+
"hiddenAliases": [],
|
|
1937
|
+
"id": "run:secrets:get",
|
|
1938
|
+
"pluginAlias": "@xano/cli",
|
|
1939
|
+
"pluginName": "@xano/cli",
|
|
1940
|
+
"pluginType": "core",
|
|
1941
|
+
"strict": true,
|
|
1942
|
+
"isESM": true,
|
|
1943
|
+
"relativePath": [
|
|
1944
|
+
"dist",
|
|
1945
|
+
"commands",
|
|
1946
|
+
"run",
|
|
1947
|
+
"secrets",
|
|
1948
|
+
"get",
|
|
1949
|
+
"index.js"
|
|
1950
|
+
]
|
|
1951
|
+
},
|
|
1952
|
+
"run:secrets:list": {
|
|
1953
|
+
"aliases": [],
|
|
1954
|
+
"args": {},
|
|
1955
|
+
"description": "List all secret keys",
|
|
1956
|
+
"examples": [
|
|
1957
|
+
"$ xano run secrets list\nNAME TYPE REPO\ndocker-registry kubernetes.io/dockerconfigjson ghcr.io\nservice-account kubernetes.io/service-account-token -\n",
|
|
1958
|
+
"$ xano run secrets list -o json\n{ \"secrets\": [{ \"name\": \"docker-registry\", \"type\": \"kubernetes.io/dockerconfigjson\", \"repo\": \"ghcr.io\" }] }\n"
|
|
1959
|
+
],
|
|
1960
|
+
"flags": {
|
|
1961
|
+
"profile": {
|
|
1962
|
+
"char": "p",
|
|
1963
|
+
"description": "Profile to use for this command",
|
|
1964
|
+
"env": "XANO_PROFILE",
|
|
1965
|
+
"name": "profile",
|
|
1966
|
+
"required": false,
|
|
1967
|
+
"hasDynamicHelp": false,
|
|
1968
|
+
"multiple": false,
|
|
1969
|
+
"type": "option"
|
|
1970
|
+
},
|
|
1971
|
+
"output": {
|
|
1972
|
+
"char": "o",
|
|
1973
|
+
"description": "Output format",
|
|
1974
|
+
"name": "output",
|
|
1975
|
+
"required": false,
|
|
1976
|
+
"default": "table",
|
|
1977
|
+
"hasDynamicHelp": false,
|
|
1978
|
+
"multiple": false,
|
|
1979
|
+
"options": [
|
|
1980
|
+
"table",
|
|
1981
|
+
"json"
|
|
1982
|
+
],
|
|
1983
|
+
"type": "option"
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
"hasDynamicHelp": false,
|
|
1987
|
+
"hiddenAliases": [],
|
|
1988
|
+
"id": "run:secrets:list",
|
|
1989
|
+
"pluginAlias": "@xano/cli",
|
|
1990
|
+
"pluginName": "@xano/cli",
|
|
1991
|
+
"pluginType": "core",
|
|
1992
|
+
"strict": true,
|
|
1993
|
+
"isESM": true,
|
|
1994
|
+
"relativePath": [
|
|
1995
|
+
"dist",
|
|
1996
|
+
"commands",
|
|
1997
|
+
"run",
|
|
1998
|
+
"secrets",
|
|
1999
|
+
"list",
|
|
2000
|
+
"index.js"
|
|
2001
|
+
]
|
|
2002
|
+
},
|
|
2003
|
+
"run:sessions:delete": {
|
|
2004
|
+
"aliases": [],
|
|
2005
|
+
"args": {
|
|
2006
|
+
"sessionId": {
|
|
2007
|
+
"description": "Session ID",
|
|
2008
|
+
"name": "sessionId",
|
|
2009
|
+
"required": true
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
"description": "Delete a session",
|
|
2013
|
+
"examples": [
|
|
2014
|
+
"$ xano run sessions delete abc123-def456\nAre you sure you want to delete session 'abc123-def456'? (y/N)\nSession deleted successfully!\n",
|
|
2015
|
+
"$ xano run sessions delete abc123-def456 --force\nSession deleted successfully!\n"
|
|
2016
|
+
],
|
|
2017
|
+
"flags": {
|
|
2018
|
+
"profile": {
|
|
2019
|
+
"char": "p",
|
|
2020
|
+
"description": "Profile to use for this command",
|
|
2021
|
+
"env": "XANO_PROFILE",
|
|
2022
|
+
"name": "profile",
|
|
2023
|
+
"required": false,
|
|
2024
|
+
"hasDynamicHelp": false,
|
|
2025
|
+
"multiple": false,
|
|
2026
|
+
"type": "option"
|
|
2027
|
+
},
|
|
2028
|
+
"force": {
|
|
2029
|
+
"char": "f",
|
|
2030
|
+
"description": "Skip confirmation prompt",
|
|
2031
|
+
"name": "force",
|
|
2032
|
+
"required": false,
|
|
2033
|
+
"allowNo": false,
|
|
2034
|
+
"type": "boolean"
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
"hasDynamicHelp": false,
|
|
2038
|
+
"hiddenAliases": [],
|
|
2039
|
+
"id": "run:sessions:delete",
|
|
2040
|
+
"pluginAlias": "@xano/cli",
|
|
2041
|
+
"pluginName": "@xano/cli",
|
|
2042
|
+
"pluginType": "core",
|
|
2043
|
+
"strict": true,
|
|
2044
|
+
"isESM": true,
|
|
2045
|
+
"relativePath": [
|
|
2046
|
+
"dist",
|
|
2047
|
+
"commands",
|
|
2048
|
+
"run",
|
|
2049
|
+
"sessions",
|
|
2050
|
+
"delete",
|
|
2051
|
+
"index.js"
|
|
2052
|
+
]
|
|
2053
|
+
},
|
|
2054
|
+
"run:secrets:set": {
|
|
2055
|
+
"aliases": [],
|
|
2056
|
+
"args": {
|
|
2057
|
+
"name": {
|
|
2058
|
+
"description": "Secret name",
|
|
2059
|
+
"name": "name",
|
|
2060
|
+
"required": true
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
"description": "Set a secret",
|
|
2064
|
+
"examples": [
|
|
2065
|
+
"$ xano run secrets set docker-registry -t dockerconfigjson -v '{\"auths\":{\"ghcr.io\":{\"auth\":\"...\"}}}' -r ghcr.io\nSecret 'docker-registry' set successfully!\n",
|
|
2066
|
+
"$ xano run secrets set service-key -t service-account-token -v 'token-value-here'\nSecret 'service-key' set successfully!\n"
|
|
2067
|
+
],
|
|
2068
|
+
"flags": {
|
|
2069
|
+
"profile": {
|
|
2070
|
+
"char": "p",
|
|
2071
|
+
"description": "Profile to use for this command",
|
|
2072
|
+
"env": "XANO_PROFILE",
|
|
2073
|
+
"name": "profile",
|
|
2074
|
+
"required": false,
|
|
2075
|
+
"hasDynamicHelp": false,
|
|
2076
|
+
"multiple": false,
|
|
2077
|
+
"type": "option"
|
|
2078
|
+
},
|
|
2079
|
+
"type": {
|
|
2080
|
+
"char": "t",
|
|
2081
|
+
"description": "Secret type",
|
|
2082
|
+
"name": "type",
|
|
2083
|
+
"required": true,
|
|
2084
|
+
"hasDynamicHelp": false,
|
|
2085
|
+
"multiple": false,
|
|
2086
|
+
"options": [
|
|
2087
|
+
"dockerconfigjson",
|
|
2088
|
+
"service-account-token"
|
|
2089
|
+
],
|
|
2090
|
+
"type": "option"
|
|
2091
|
+
},
|
|
2092
|
+
"value": {
|
|
2093
|
+
"char": "v",
|
|
2094
|
+
"description": "Secret value",
|
|
2095
|
+
"name": "value",
|
|
2096
|
+
"required": true,
|
|
2097
|
+
"hasDynamicHelp": false,
|
|
2098
|
+
"multiple": false,
|
|
2099
|
+
"type": "option"
|
|
2100
|
+
},
|
|
2101
|
+
"repo": {
|
|
2102
|
+
"char": "r",
|
|
2103
|
+
"description": "Repository (for dockerconfigjson type)",
|
|
2104
|
+
"name": "repo",
|
|
2105
|
+
"required": false,
|
|
2106
|
+
"hasDynamicHelp": false,
|
|
2107
|
+
"multiple": false,
|
|
2108
|
+
"type": "option"
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
"hasDynamicHelp": false,
|
|
2112
|
+
"hiddenAliases": [],
|
|
2113
|
+
"id": "run:secrets:set",
|
|
2114
|
+
"pluginAlias": "@xano/cli",
|
|
2115
|
+
"pluginName": "@xano/cli",
|
|
2116
|
+
"pluginType": "core",
|
|
2117
|
+
"strict": true,
|
|
2118
|
+
"isESM": true,
|
|
2119
|
+
"relativePath": [
|
|
2120
|
+
"dist",
|
|
2121
|
+
"commands",
|
|
2122
|
+
"run",
|
|
2123
|
+
"secrets",
|
|
2124
|
+
"set",
|
|
2125
|
+
"index.js"
|
|
2126
|
+
]
|
|
2127
|
+
},
|
|
2128
|
+
"run:sessions:get": {
|
|
2129
|
+
"aliases": [],
|
|
2130
|
+
"args": {
|
|
2131
|
+
"sessionId": {
|
|
2132
|
+
"description": "Session ID",
|
|
2133
|
+
"name": "sessionId",
|
|
2134
|
+
"required": true
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2137
|
+
"description": "Get session details",
|
|
2138
|
+
"examples": [
|
|
2139
|
+
"$ xano run sessions get abc123-def456\nSession Details:\n ID: abc123-def456\n Name: My Session\n Status: running\n Access: private\n URL: https://session.xano.io/abc123\n Uptime: 3600s\n",
|
|
2140
|
+
"$ xano run sessions get abc123-def456 -o json\n{ \"id\": \"abc123-def456\", \"name\": \"My Session\", \"status\": \"running\", ... }\n"
|
|
2141
|
+
],
|
|
2142
|
+
"flags": {
|
|
2143
|
+
"profile": {
|
|
2144
|
+
"char": "p",
|
|
2145
|
+
"description": "Profile to use for this command",
|
|
2146
|
+
"env": "XANO_PROFILE",
|
|
2147
|
+
"name": "profile",
|
|
2148
|
+
"required": false,
|
|
2149
|
+
"hasDynamicHelp": false,
|
|
2150
|
+
"multiple": false,
|
|
2151
|
+
"type": "option"
|
|
2152
|
+
},
|
|
2153
|
+
"output": {
|
|
2154
|
+
"char": "o",
|
|
2155
|
+
"description": "Output format",
|
|
2156
|
+
"name": "output",
|
|
2157
|
+
"required": false,
|
|
2158
|
+
"default": "summary",
|
|
2159
|
+
"hasDynamicHelp": false,
|
|
2160
|
+
"multiple": false,
|
|
2161
|
+
"options": [
|
|
2162
|
+
"summary",
|
|
2163
|
+
"json"
|
|
2164
|
+
],
|
|
2165
|
+
"type": "option"
|
|
2166
|
+
}
|
|
2167
|
+
},
|
|
2168
|
+
"hasDynamicHelp": false,
|
|
2169
|
+
"hiddenAliases": [],
|
|
2170
|
+
"id": "run:sessions:get",
|
|
2171
|
+
"pluginAlias": "@xano/cli",
|
|
2172
|
+
"pluginName": "@xano/cli",
|
|
2173
|
+
"pluginType": "core",
|
|
2174
|
+
"strict": true,
|
|
2175
|
+
"isESM": true,
|
|
2176
|
+
"relativePath": [
|
|
2177
|
+
"dist",
|
|
2178
|
+
"commands",
|
|
2179
|
+
"run",
|
|
2180
|
+
"sessions",
|
|
2181
|
+
"get",
|
|
2182
|
+
"index.js"
|
|
2183
|
+
]
|
|
2184
|
+
},
|
|
2185
|
+
"run:sessions:list": {
|
|
2186
|
+
"aliases": [],
|
|
2187
|
+
"args": {},
|
|
2188
|
+
"description": "List all sessions for the project",
|
|
2189
|
+
"examples": [
|
|
2190
|
+
"$ xano run sessions list\nID STATE CREATED\nabc123-def456-ghi789 running 2024-01-15T10:30:00Z\nxyz789-uvw456-rst123 stopped 2024-01-14T09:00:00Z\n",
|
|
2191
|
+
"$ xano run sessions list -o json\n{ \"items\": [{ \"id\": \"abc123-def456-ghi789\", \"state\": \"running\", ... }] }\n"
|
|
2192
|
+
],
|
|
2193
|
+
"flags": {
|
|
2194
|
+
"profile": {
|
|
2195
|
+
"char": "p",
|
|
2196
|
+
"description": "Profile to use for this command",
|
|
2197
|
+
"env": "XANO_PROFILE",
|
|
2198
|
+
"name": "profile",
|
|
2199
|
+
"required": false,
|
|
2200
|
+
"hasDynamicHelp": false,
|
|
2201
|
+
"multiple": false,
|
|
2202
|
+
"type": "option"
|
|
2203
|
+
},
|
|
2204
|
+
"output": {
|
|
2205
|
+
"char": "o",
|
|
2206
|
+
"description": "Output format",
|
|
2207
|
+
"name": "output",
|
|
2208
|
+
"required": false,
|
|
2209
|
+
"default": "table",
|
|
2210
|
+
"hasDynamicHelp": false,
|
|
2211
|
+
"multiple": false,
|
|
2212
|
+
"options": [
|
|
2213
|
+
"table",
|
|
2214
|
+
"json"
|
|
2215
|
+
],
|
|
2216
|
+
"type": "option"
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
"hasDynamicHelp": false,
|
|
2220
|
+
"hiddenAliases": [],
|
|
2221
|
+
"id": "run:sessions:list",
|
|
2222
|
+
"pluginAlias": "@xano/cli",
|
|
2223
|
+
"pluginName": "@xano/cli",
|
|
2224
|
+
"pluginType": "core",
|
|
2225
|
+
"strict": true,
|
|
2226
|
+
"isESM": true,
|
|
2227
|
+
"relativePath": [
|
|
2228
|
+
"dist",
|
|
2229
|
+
"commands",
|
|
2230
|
+
"run",
|
|
2231
|
+
"sessions",
|
|
2232
|
+
"list",
|
|
2233
|
+
"index.js"
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
"run:sessions:start": {
|
|
2237
|
+
"aliases": [],
|
|
2238
|
+
"args": {
|
|
2239
|
+
"sessionId": {
|
|
2240
|
+
"description": "Session ID",
|
|
2241
|
+
"name": "sessionId",
|
|
2242
|
+
"required": true
|
|
2243
|
+
}
|
|
2244
|
+
},
|
|
2245
|
+
"description": "Start a session",
|
|
2246
|
+
"examples": [
|
|
2247
|
+
"$ xano run sessions start abc123-def456\nSession started successfully!\n ID: abc123-def456\n State: running\n",
|
|
2248
|
+
"$ xano run sessions start abc123-def456 -o json\n{ \"id\": \"abc123-def456\", \"state\": \"running\", ... }\n"
|
|
2249
|
+
],
|
|
2250
|
+
"flags": {
|
|
2251
|
+
"profile": {
|
|
2252
|
+
"char": "p",
|
|
2253
|
+
"description": "Profile to use for this command",
|
|
2254
|
+
"env": "XANO_PROFILE",
|
|
2255
|
+
"name": "profile",
|
|
2256
|
+
"required": false,
|
|
2257
|
+
"hasDynamicHelp": false,
|
|
2258
|
+
"multiple": false,
|
|
2259
|
+
"type": "option"
|
|
2260
|
+
},
|
|
2261
|
+
"output": {
|
|
2262
|
+
"char": "o",
|
|
2263
|
+
"description": "Output format",
|
|
2264
|
+
"name": "output",
|
|
2265
|
+
"required": false,
|
|
2266
|
+
"default": "summary",
|
|
2267
|
+
"hasDynamicHelp": false,
|
|
2268
|
+
"multiple": false,
|
|
2269
|
+
"options": [
|
|
2270
|
+
"summary",
|
|
2271
|
+
"json"
|
|
2272
|
+
],
|
|
2273
|
+
"type": "option"
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2276
|
+
"hasDynamicHelp": false,
|
|
2277
|
+
"hiddenAliases": [],
|
|
2278
|
+
"id": "run:sessions:start",
|
|
2279
|
+
"pluginAlias": "@xano/cli",
|
|
2280
|
+
"pluginName": "@xano/cli",
|
|
2281
|
+
"pluginType": "core",
|
|
2282
|
+
"strict": true,
|
|
2283
|
+
"isESM": true,
|
|
2284
|
+
"relativePath": [
|
|
2285
|
+
"dist",
|
|
2286
|
+
"commands",
|
|
2287
|
+
"run",
|
|
2288
|
+
"sessions",
|
|
2289
|
+
"start",
|
|
2290
|
+
"index.js"
|
|
2291
|
+
]
|
|
2292
|
+
},
|
|
2293
|
+
"run:sessions:stop": {
|
|
2294
|
+
"aliases": [],
|
|
2295
|
+
"args": {
|
|
2296
|
+
"sessionId": {
|
|
2297
|
+
"description": "Session ID",
|
|
2298
|
+
"name": "sessionId",
|
|
2299
|
+
"required": true
|
|
2300
|
+
}
|
|
2301
|
+
},
|
|
2302
|
+
"description": "Stop a session",
|
|
2303
|
+
"examples": [
|
|
2304
|
+
"$ xano run sessions stop abc123-def456\nSession stopped successfully!\n ID: abc123-def456\n State: stopped\n",
|
|
2305
|
+
"$ xano run sessions stop abc123-def456 -o json\n{ \"id\": \"abc123-def456\", \"state\": \"stopped\", ... }\n"
|
|
2306
|
+
],
|
|
2307
|
+
"flags": {
|
|
2308
|
+
"profile": {
|
|
2309
|
+
"char": "p",
|
|
2310
|
+
"description": "Profile to use for this command",
|
|
2311
|
+
"env": "XANO_PROFILE",
|
|
2312
|
+
"name": "profile",
|
|
2313
|
+
"required": false,
|
|
2314
|
+
"hasDynamicHelp": false,
|
|
2315
|
+
"multiple": false,
|
|
2316
|
+
"type": "option"
|
|
2317
|
+
},
|
|
2318
|
+
"output": {
|
|
2319
|
+
"char": "o",
|
|
2320
|
+
"description": "Output format",
|
|
2321
|
+
"name": "output",
|
|
2322
|
+
"required": false,
|
|
2323
|
+
"default": "summary",
|
|
2324
|
+
"hasDynamicHelp": false,
|
|
2325
|
+
"multiple": false,
|
|
2326
|
+
"options": [
|
|
2327
|
+
"summary",
|
|
2328
|
+
"json"
|
|
2329
|
+
],
|
|
2330
|
+
"type": "option"
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"hasDynamicHelp": false,
|
|
2334
|
+
"hiddenAliases": [],
|
|
2335
|
+
"id": "run:sessions:stop",
|
|
2336
|
+
"pluginAlias": "@xano/cli",
|
|
2337
|
+
"pluginName": "@xano/cli",
|
|
2338
|
+
"pluginType": "core",
|
|
2339
|
+
"strict": true,
|
|
2340
|
+
"isESM": true,
|
|
2341
|
+
"relativePath": [
|
|
2342
|
+
"dist",
|
|
2343
|
+
"commands",
|
|
2344
|
+
"run",
|
|
2345
|
+
"sessions",
|
|
2346
|
+
"stop",
|
|
2347
|
+
"index.js"
|
|
2348
|
+
]
|
|
2349
|
+
},
|
|
2350
|
+
"run:sink:get": {
|
|
2351
|
+
"aliases": [],
|
|
2352
|
+
"args": {
|
|
2353
|
+
"sessionId": {
|
|
2354
|
+
"description": "Session ID",
|
|
2355
|
+
"name": "sessionId",
|
|
2356
|
+
"required": true
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
"description": "Get sink data for a completed session",
|
|
2360
|
+
"examples": [
|
|
2361
|
+
"$ xano run sink get abc123-def456\nSink Data:\n Tables: 3\n - users (5 rows)\n - orders (12 rows)\n - products (8 rows)\n Logs: 15 entries\n",
|
|
2362
|
+
"$ xano run sink get abc123-def456 -o json\n{ \"tables\": [...], \"logs\": [...] }\n"
|
|
2363
|
+
],
|
|
2364
|
+
"flags": {
|
|
2365
|
+
"profile": {
|
|
2366
|
+
"char": "p",
|
|
2367
|
+
"description": "Profile to use for this command",
|
|
2368
|
+
"env": "XANO_PROFILE",
|
|
2369
|
+
"name": "profile",
|
|
2370
|
+
"required": false,
|
|
2371
|
+
"hasDynamicHelp": false,
|
|
2372
|
+
"multiple": false,
|
|
2373
|
+
"type": "option"
|
|
2374
|
+
},
|
|
2375
|
+
"output": {
|
|
2376
|
+
"char": "o",
|
|
2377
|
+
"description": "Output format",
|
|
2378
|
+
"name": "output",
|
|
2379
|
+
"required": false,
|
|
2380
|
+
"default": "summary",
|
|
2381
|
+
"hasDynamicHelp": false,
|
|
2382
|
+
"multiple": false,
|
|
2383
|
+
"options": [
|
|
2384
|
+
"summary",
|
|
2385
|
+
"json"
|
|
2386
|
+
],
|
|
2387
|
+
"type": "option"
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
"hasDynamicHelp": false,
|
|
2391
|
+
"hiddenAliases": [],
|
|
2392
|
+
"id": "run:sink:get",
|
|
2393
|
+
"pluginAlias": "@xano/cli",
|
|
2394
|
+
"pluginName": "@xano/cli",
|
|
2395
|
+
"pluginType": "core",
|
|
2396
|
+
"strict": true,
|
|
2397
|
+
"isESM": true,
|
|
2398
|
+
"relativePath": [
|
|
2399
|
+
"dist",
|
|
2400
|
+
"commands",
|
|
2401
|
+
"run",
|
|
2402
|
+
"sink",
|
|
2403
|
+
"get",
|
|
1152
2404
|
"index.js"
|
|
1153
2405
|
]
|
|
1154
2406
|
},
|
|
@@ -1409,5 +2661,5 @@
|
|
|
1409
2661
|
]
|
|
1410
2662
|
}
|
|
1411
2663
|
},
|
|
1412
|
-
"version": "0.0.
|
|
2664
|
+
"version": "0.0.16"
|
|
1413
2665
|
}
|