@codiac.io/codiac-cli 1.3.253 → 1.3.254

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 (31) hide show
  1. package/README.md +502 -163
  2. package/dist/apis/codiac-relay/gen/client.d.ts +12 -1
  3. package/dist/apis/codiac-relay/gen/client.js +23 -0
  4. package/dist/apis/codiac-relay/gen/client.js.map +1 -1
  5. package/dist/apis/codiac-relay/gen/contracts/types.gen.d.ts +120 -0
  6. package/dist/apis/codiac-relay/gen/contracts/types.gen.js.map +1 -1
  7. package/dist/apis/codiac-relay/i-client.d.ts +11 -0
  8. package/dist/apis/codiac-relay-nats/gen/client.d.ts +15 -0
  9. package/dist/apis/codiac-relay-nats/gen/client.js +27 -0
  10. package/dist/apis/codiac-relay-nats/gen/client.js.map +1 -1
  11. package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.d.ts +49 -0
  12. package/dist/commands/ai/model/attach.d.ts +37 -0
  13. package/dist/commands/ai/model/attach.js +173 -0
  14. package/dist/commands/ai/model/attach.js.map +1 -0
  15. package/dist/commands/ai/model/install.d.ts +105 -0
  16. package/dist/commands/ai/model/install.js +655 -0
  17. package/dist/commands/ai/model/install.js.map +1 -0
  18. package/dist/commands/ai/model/list.d.ts +37 -0
  19. package/dist/commands/ai/model/list.js +160 -0
  20. package/dist/commands/ai/model/list.js.map +1 -0
  21. package/dist/commands/ai/model/uninstall.d.ts +40 -0
  22. package/dist/commands/ai/model/uninstall.js +144 -0
  23. package/dist/commands/ai/model/uninstall.js.map +1 -0
  24. package/dist/commands/ai/model/view.d.ts +35 -0
  25. package/dist/commands/ai/model/view.js +143 -0
  26. package/dist/commands/ai/model/view.js.map +1 -0
  27. package/dist/uilogic/model-spec.d.ts +40 -0
  28. package/dist/uilogic/model-spec.js +71 -0
  29. package/dist/uilogic/model-spec.js.map +1 -0
  30. package/oclif.manifest.json +568 -1
  31. package/package.json +1 -1
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
21
21
  $ codiac COMMAND
22
22
  running command...
23
23
  $ codiac (--version|-v)
24
- @codiac.io/codiac-cli/1.3.253 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.254 linux-x64 node-v22.15.1
25
25
  $ codiac --help [COMMAND]
26
26
  USAGE
27
27
  $ codiac COMMAND
@@ -194,6 +194,13 @@ USAGE
194
194
 
195
195
  <!-- commands -->
196
196
  * [`codiac ai agent install`](#codiac-ai-agent-install)
197
+ * [`codiac ai model attach`](#codiac-ai-model-attach)
198
+ * [`codiac ai model install`](#codiac-ai-model-install)
199
+ * [`codiac ai model list`](#codiac-ai-model-list)
200
+ * [`codiac ai model ls`](#codiac-ai-model-ls)
201
+ * [`codiac ai model remove`](#codiac-ai-model-remove)
202
+ * [`codiac ai model uninstall`](#codiac-ai-model-uninstall)
203
+ * [`codiac ai model view`](#codiac-ai-model-view)
197
204
  * [`codiac asset create`](#codiac-asset-create)
198
205
  * [`codiac asset edit`](#codiac-asset-edit)
199
206
  * [`codiac asset entrypoint`](#codiac-asset-entrypoint)
@@ -531,7 +538,339 @@ EXAMPLES
531
538
  $ codiac ai agent install -e ben -t hermes -c dev --to-script
532
539
  ```
533
540
 
534
- _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/ai/agent/install.ts)_
541
+ _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/agent/install.ts)_
542
+
543
+ ## `codiac ai model attach`
544
+
545
+ Wires an already-provisioned model into an already-installed agent (writes the model endpoint onto the agent and redeploys it so it uses the private model).
546
+
547
+ ```
548
+ USAGE
549
+ $ codiac ai model attach [-h] [-e <value>] [-m <value>] [--agent <value>] [-c <value>] [--silent | --echo |
550
+ --to-script]
551
+
552
+ FLAGS
553
+ -c, --cabinet=<value> Cabinet the model and agent are deployed in.
554
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
555
+ -h, --help Show CLI help.
556
+ -m, --model=<value> Handle of the provisioned model to wire in.
557
+ --agent=<value> Name of the already-installed agent to wire the model into.
558
+ --echo Renders the equivalent non-interactive command for future use before executing.
559
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
560
+ --to-script Renders the equivalent non-interactive command without executing it.
561
+
562
+ DESCRIPTION
563
+ Wires an already-provisioned model into an already-installed agent (writes the model endpoint onto the agent and
564
+ redeploys it so it uses the private model).
565
+
566
+ EXAMPLES
567
+ Wire the qwen3-dev model into the hermes-agent in the dev cabinet.
568
+
569
+ $ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev
570
+
571
+ Non-interactive (scripted) invocation.
572
+
573
+ $ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev --silent
574
+ ```
575
+
576
+ _See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/model/attach.ts)_
577
+
578
+ ## `codiac ai model install`
579
+
580
+ Provisions a private LLM into an enterprise cabinet — either an in-cluster (ClusterIP-only) catalog model served via Ollama, or a registered bring-your-own OpenAI-compatible endpoint.
581
+
582
+ ```
583
+ USAGE
584
+ $ codiac ai model install [-h] [-e <value>] [--source served|byo] [-m <value>] [--runtime cpu|gpu] [--base-url
585
+ <value>] [--key <value>] [-c <value>] [-n <value>] [--attach existing|new|none] [--agent <value>] [--framework
586
+ <value>] [--input <value>] [--take-defaults | --silent] [--echo | --to-script | ]
587
+
588
+ FLAGS
589
+ -c, --cabinet=<value> Cabinet (environment) the model is deployed into (served) or registered against (byo).
590
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
591
+ -h, --help Show CLI help.
592
+ -m, --model=<value> Catalog model kind to serve when --source served (one of: qwen3, gpt-oss, glm,
593
+ deepseek-r1).
594
+ -n, --name=<value> Handle for the model workload (server-assigns a default when omitted).
595
+ --agent=<value> Name of the already-installed agent to wire the model into (required with --attach
596
+ existing).
597
+ --attach=<option> Wire the model to an agent once ready: attach to an existing agent, install a new one,
598
+ or neither (defaults to none).
599
+ <options: existing|new|none>
600
+ --base-url=<value> OpenAI-compatible base URL of the endpoint to register when --source byo (e.g.
601
+ https://host/v1).
602
+ --echo Renders the equivalent non-interactive command for future use before executing.
603
+ --framework=<value> Agent framework to install and wire to the model (required with --attach new).
604
+ --input=<value>... Pre-supply a needs_action input as key=value (repeatable), e.g. --input
605
+ skipReachabilityCheck=true . Lets --silent/headless runs resolve secret/decision prompts
606
+ without interaction.
607
+ --key=<value> API key for the BYO endpoint (prompted as a secret during install when omitted; stored
608
+ server-side as a secret).
609
+ --runtime=<option> Compute tier for a served model: cpu-only, or scheduled onto a GPU node pool.
610
+ <options: cpu|gpu>
611
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
612
+ --source=<option> Serve a license-clean catalog model in-cluster (served) or register an external
613
+ OpenAI-compatible endpoint (byo).
614
+ <options: served|byo>
615
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were
616
+ automatically set to default values (Irrelevant in --silent mode). This behavior does
617
+ NOT apply to scenarios where the command needs to override invalid user input; such
618
+ cases will always prompt for confirmation.
619
+ --to-script Renders the equivalent non-interactive command without executing it.
620
+
621
+ DESCRIPTION
622
+ Provisions a private LLM into an enterprise cabinet — either an in-cluster (ClusterIP-only) catalog model served via
623
+ Ollama, or a registered bring-your-own OpenAI-compatible endpoint.
624
+
625
+ EXAMPLES
626
+ Serve the Qwen3 catalog model (CPU) into the dev cabinet of the ben enterprise.
627
+
628
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev
629
+
630
+ Non-interactive (scripted) served install; a served model needs both --model and --runtime.
631
+
632
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --attach none --silent
633
+
634
+ Register a BYO OpenAI-compatible endpoint and attach it to an existing agent.
635
+
636
+ $ codiac ai model install -e ben --source byo --base-url https://host/v1 --key sk-... -c dev --attach existing \
637
+ --agent hermes-agent --silent
638
+
639
+ Renders the equivalent silent command and then executes.
640
+
641
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --echo
642
+
643
+ Renders the equivalent silent command without executing.
644
+
645
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --to-script
646
+ ```
647
+
648
+ _See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/model/install.ts)_
649
+
650
+ ## `codiac ai model list`
651
+
652
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered bring-your-own (BYO) OpenAI-compatible endpoints.
653
+
654
+ ```
655
+ USAGE
656
+ $ codiac ai model list [-h] [-e <value>] [-c <value>] [-o text|tree|json|yaml|tsv|csv] [-q <value>] [--silent |
657
+ --echo | --to-script]
658
+
659
+ FLAGS
660
+ -c, --cabinet=<value> Restrict the listing to one cabinet (also resolves served endpoints to that cabinet's
661
+ in-cluster service DNS).
662
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
663
+ -h, --help Show CLI help.
664
+ -o, --output=<option> Format in which to render the results.
665
+ <options: text|tree|json|yaml|tsv|csv>
666
+ -q, --query=<value> JMESPath expression to filter or reshape the results (see jmespath.org).
667
+ --echo Renders the equivalent non-interactive command for future use before executing.
668
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
669
+ --to-script Renders the equivalent non-interactive command without executing it.
670
+
671
+ DESCRIPTION
672
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered
673
+ bring-your-own (BYO) OpenAI-compatible endpoints.
674
+
675
+ ALIASES
676
+ $ codiac ai model ls
677
+
678
+ EXAMPLES
679
+ Simple listing for an enterprise.
680
+
681
+ $ codiac ai model list -e ben
682
+
683
+ Only the models in one cabinet.
684
+
685
+ $ codiac ai model list -e ben -c dev
686
+
687
+ Handles only.
688
+
689
+ $ codiac ai model list -e ben -q '[].handle'
690
+
691
+ Filter to served models.
692
+
693
+ $ codiac ai model list -e ben -q "[?mode == 'served']"
694
+
695
+ Export as YAML.
696
+
697
+ $ codiac ai model list -e ben -o yaml
698
+
699
+ Non-interactive invocation.
700
+
701
+ $ codiac ai model list -e ben --silent
702
+ ```
703
+
704
+ _See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/model/list.ts)_
705
+
706
+ ## `codiac ai model ls`
707
+
708
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered bring-your-own (BYO) OpenAI-compatible endpoints.
709
+
710
+ ```
711
+ USAGE
712
+ $ codiac ai model ls [-h] [-e <value>] [-c <value>] [-o text|tree|json|yaml|tsv|csv] [-q <value>] [--silent |
713
+ --echo | --to-script]
714
+
715
+ FLAGS
716
+ -c, --cabinet=<value> Restrict the listing to one cabinet (also resolves served endpoints to that cabinet's
717
+ in-cluster service DNS).
718
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
719
+ -h, --help Show CLI help.
720
+ -o, --output=<option> Format in which to render the results.
721
+ <options: text|tree|json|yaml|tsv|csv>
722
+ -q, --query=<value> JMESPath expression to filter or reshape the results (see jmespath.org).
723
+ --echo Renders the equivalent non-interactive command for future use before executing.
724
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
725
+ --to-script Renders the equivalent non-interactive command without executing it.
726
+
727
+ DESCRIPTION
728
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered
729
+ bring-your-own (BYO) OpenAI-compatible endpoints.
730
+
731
+ ALIASES
732
+ $ codiac ai model ls
733
+
734
+ EXAMPLES
735
+ Simple listing for an enterprise.
736
+
737
+ $ codiac ai model ls -e ben
738
+
739
+ Only the models in one cabinet.
740
+
741
+ $ codiac ai model ls -e ben -c dev
742
+
743
+ Handles only.
744
+
745
+ $ codiac ai model ls -e ben -q '[].handle'
746
+
747
+ Filter to served models.
748
+
749
+ $ codiac ai model ls -e ben -q "[?mode == 'served']"
750
+
751
+ Export as YAML.
752
+
753
+ $ codiac ai model ls -e ben -o yaml
754
+
755
+ Non-interactive invocation.
756
+
757
+ $ codiac ai model ls -e ben --silent
758
+ ```
759
+
760
+ ## `codiac ai model remove`
761
+
762
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO endpoints are not yet removable here.
763
+
764
+ ```
765
+ USAGE
766
+ $ codiac ai model remove [-h] [-e <value>] [-m <value>] [-c <value>] [--silent | --echo | --to-script]
767
+
768
+ FLAGS
769
+ -c, --cabinet=<value> Cabinet the model was deployed into (served) or registered against (byo).
770
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
771
+ -h, --help Show CLI help.
772
+ -m, --model=<value> Handle of the model to remove.
773
+ --echo Renders the equivalent non-interactive command for future use before executing.
774
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
775
+ --to-script Renders the equivalent non-interactive command without executing it.
776
+
777
+ DESCRIPTION
778
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO
779
+ endpoints are not yet removable here.
780
+
781
+ ALIASES
782
+ $ codiac ai model remove
783
+
784
+ EXAMPLES
785
+ Undeploy the served qwen3-dev model from the dev cabinet.
786
+
787
+ $ codiac ai model remove -e ben -m qwen3-dev -c dev
788
+
789
+ Non-interactive (scripted) invocation.
790
+
791
+ $ codiac ai model remove -e ben -m qwen3-dev -c dev --silent
792
+ ```
793
+
794
+ ## `codiac ai model uninstall`
795
+
796
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO endpoints are not yet removable here.
797
+
798
+ ```
799
+ USAGE
800
+ $ codiac ai model uninstall [-h] [-e <value>] [-m <value>] [-c <value>] [--silent | --echo | --to-script]
801
+
802
+ FLAGS
803
+ -c, --cabinet=<value> Cabinet the model was deployed into (served) or registered against (byo).
804
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
805
+ -h, --help Show CLI help.
806
+ -m, --model=<value> Handle of the model to remove.
807
+ --echo Renders the equivalent non-interactive command for future use before executing.
808
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
809
+ --to-script Renders the equivalent non-interactive command without executing it.
810
+
811
+ DESCRIPTION
812
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO
813
+ endpoints are not yet removable here.
814
+
815
+ ALIASES
816
+ $ codiac ai model remove
817
+
818
+ EXAMPLES
819
+ Undeploy the served qwen3-dev model from the dev cabinet.
820
+
821
+ $ codiac ai model uninstall -e ben -m qwen3-dev -c dev
822
+
823
+ Non-interactive (scripted) invocation.
824
+
825
+ $ codiac ai model uninstall -e ben -m qwen3-dev -c dev --silent
826
+ ```
827
+
828
+ _See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/model/uninstall.ts)_
829
+
830
+ ## `codiac ai model view`
831
+
832
+ Shows the details of a single provisioned model (served or BYO) by its handle.
833
+
834
+ ```
835
+ USAGE
836
+ $ codiac ai model view [-h] [-e <value>] [-m <value>] [-c <value>] [-o text|json|yaml] [-q <value>] [--silent |
837
+ --echo | --to-script]
838
+
839
+ FLAGS
840
+ -c, --cabinet=<value> Cabinet the model lives in (resolves a served endpoint to that cabinet's in-cluster
841
+ service DNS).
842
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
843
+ -h, --help Show CLI help.
844
+ -m, --model=<value> Handle of the model to view.
845
+ -o, --output=<option> Format in which to render the result.
846
+ <options: text|json|yaml>
847
+ -q, --query=<value> JMESPath expression to reshape the result (see jmespath.org).
848
+ --echo Renders the equivalent non-interactive command for future use before executing.
849
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
850
+ --to-script Renders the equivalent non-interactive command without executing it.
851
+
852
+ DESCRIPTION
853
+ Shows the details of a single provisioned model (served or BYO) by its handle.
854
+
855
+ EXAMPLES
856
+ View a model by handle.
857
+
858
+ $ codiac ai model view -e ben -m qwen3-dev
859
+
860
+ View as JSON.
861
+
862
+ $ codiac ai model view -e ben -m qwen3-dev -o json
863
+
864
+ Just the endpoint.
865
+
866
+ $ codiac ai model view -e ben -m qwen3-dev -q endpoint
867
+
868
+ Non-interactive invocation.
869
+
870
+ $ codiac ai model view -e ben -m qwen3-dev --silent
871
+ ```
872
+
873
+ _See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/ai/model/view.ts)_
535
874
 
536
875
  ## `codiac asset create`
537
876
 
@@ -652,7 +991,7 @@ EXAMPLES
652
991
  $ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
653
992
  ```
654
993
 
655
- _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/create.ts)_
994
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/create.ts)_
656
995
 
657
996
  ## `codiac asset edit`
658
997
 
@@ -710,7 +1049,7 @@ EXAMPLES
710
1049
  $ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
711
1050
  ```
712
1051
 
713
- _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/edit.ts)_
1052
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/edit.ts)_
714
1053
 
715
1054
  ## `codiac asset entrypoint`
716
1055
 
@@ -831,7 +1170,7 @@ EXAMPLES
831
1170
  $ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
832
1171
  ```
833
1172
 
834
- _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/entrypoint/delete.ts)_
1173
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/entrypoint/delete.ts)_
835
1174
 
836
1175
  ## `codiac asset entrypoint set`
837
1176
 
@@ -900,7 +1239,7 @@ EXAMPLES
900
1239
  --input=/backup/workflows'
901
1240
  ```
902
1241
 
903
- _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/entrypoint/set.ts)_
1242
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/entrypoint/set.ts)_
904
1243
 
905
1244
  ## `codiac asset get [CMD]`
906
1245
 
@@ -1008,7 +1347,7 @@ EXAMPLES
1008
1347
  $ codiac asset list -e myEnterprise --to-script
1009
1348
  ```
1010
1349
 
1011
- _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/list.ts)_
1350
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/list.ts)_
1012
1351
 
1013
1352
  ## `codiac asset mon [CMD]`
1014
1353
 
@@ -1269,7 +1608,7 @@ EXAMPLES
1269
1608
  $ codiac asset obliterate -e main -n my-api
1270
1609
  ```
1271
1610
 
1272
- _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/obliterate.ts)_
1611
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/obliterate.ts)_
1273
1612
 
1274
1613
  ## `codiac asset probe create [CMD]`
1275
1614
 
@@ -1359,7 +1698,7 @@ EXAMPLES
1359
1698
  $ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
1360
1699
  ```
1361
1700
 
1362
- _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/probe/create.ts)_
1701
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/probe/create.ts)_
1363
1702
 
1364
1703
  ## `codiac asset probe delete`
1365
1704
 
@@ -1414,7 +1753,7 @@ EXAMPLES
1414
1753
  $ codiac asset probe delete
1415
1754
  ```
1416
1755
 
1417
- _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/probe/delete.ts)_
1756
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/probe/delete.ts)_
1418
1757
 
1419
1758
  ## `codiac asset probe list`
1420
1759
 
@@ -1466,7 +1805,7 @@ EXAMPLES
1466
1805
  $ codiac asset probe list
1467
1806
  ```
1468
1807
 
1469
- _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/probe/list.ts)_
1808
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/probe/list.ts)_
1470
1809
 
1471
1810
  ## `codiac asset recycle`
1472
1811
 
@@ -1506,7 +1845,7 @@ DESCRIPTION
1506
1845
  Deploys a given asset to a given cabinet. Defaults to current version.
1507
1846
  ```
1508
1847
 
1509
- _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/recycle.ts)_
1848
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/recycle.ts)_
1510
1849
 
1511
1850
  ## `codiac asset undeploy`
1512
1851
 
@@ -1550,7 +1889,7 @@ EXAMPLES
1550
1889
  $ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
1551
1890
  ```
1552
1891
 
1553
- _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/undeploy.ts)_
1892
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/undeploy.ts)_
1554
1893
 
1555
1894
  ## `codiac asset view [CMD]`
1556
1895
 
@@ -1606,7 +1945,7 @@ ALIASES
1606
1945
  $ codiac asset get
1607
1946
  ```
1608
1947
 
1609
- _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/view.ts)_
1948
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/view.ts)_
1610
1949
 
1611
1950
  ## `codiac asset vol add [MOUNTPATH]`
1612
1951
 
@@ -1877,7 +2216,7 @@ ALIASES
1877
2216
  $ codiac asset volume add
1878
2217
  ```
1879
2218
 
1880
- _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/volume/create.ts)_
2219
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/volume/create.ts)_
1881
2220
 
1882
2221
  ## `codiac asset volume del`
1883
2222
 
@@ -1965,7 +2304,7 @@ EXAMPLES
1965
2304
  $ codiac asset volume delete -e myEnterprise -n myMount --to-script
1966
2305
  ```
1967
2306
 
1968
- _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/volume/delete.ts)_
2307
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/volume/delete.ts)_
1969
2308
 
1970
2309
  ## `codiac asset volume list`
1971
2310
 
@@ -2014,7 +2353,7 @@ EXAMPLES
2014
2353
  $ codiac asset volume list -e myEnterprise --silent
2015
2354
  ```
2016
2355
 
2017
- _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/volume/list.ts)_
2356
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/volume/list.ts)_
2018
2357
 
2019
2358
  ## `codiac asset volumes del`
2020
2359
 
@@ -2181,7 +2520,7 @@ EXAMPLES
2181
2520
  $ codiac asset where -e main -a my-api --silent
2182
2521
  ```
2183
2522
 
2184
- _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/where.ts)_
2523
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/asset/where.ts)_
2185
2524
 
2186
2525
  ## `codiac auth cab allow`
2187
2526
 
@@ -2343,7 +2682,7 @@ EXAMPLES
2343
2682
  $ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
2344
2683
  ```
2345
2684
 
2346
- _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/cabinet/allow.ts)_
2685
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/cabinet/allow.ts)_
2347
2686
 
2348
2687
  ## `codiac auth cabinet allowed`
2349
2688
 
@@ -2391,7 +2730,7 @@ EXAMPLES
2391
2730
  $ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
2392
2731
  ```
2393
2732
 
2394
- _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/cabinet/allowed.ts)_
2733
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/cabinet/allowed.ts)_
2395
2734
 
2396
2735
  ## `codiac auth ent allow`
2397
2736
 
@@ -2582,7 +2921,7 @@ EXAMPLES
2582
2921
  $ codiac auth enterprise allow -r deployer -p none
2583
2922
  ```
2584
2923
 
2585
- _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/enterprise/allow.ts)_
2924
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/enterprise/allow.ts)_
2586
2925
 
2587
2926
  ## `codiac auth enterprise allow onEnvironments`
2588
2927
 
@@ -2636,7 +2975,7 @@ EXAMPLES
2636
2975
  $ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
2637
2976
  ```
2638
2977
 
2639
- _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2978
+ _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2640
2979
 
2641
2980
  ## `codiac auth enterprise allowed`
2642
2981
 
@@ -2677,7 +3016,7 @@ EXAMPLES
2677
3016
  $ codiac auth enterprise allowed --enterprise modeling
2678
3017
  ```
2679
3018
 
2680
- _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/enterprise/allowed.ts)_
3019
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/enterprise/allowed.ts)_
2681
3020
 
2682
3021
  ## `codiac auth env allowed`
2683
3022
 
@@ -2884,7 +3223,7 @@ EXAMPLES
2884
3223
  $ codiac auth environment allow -e qa -r productmanager -p read
2885
3224
  ```
2886
3225
 
2887
- _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/environment/allow.ts)_
3226
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/environment/allow.ts)_
2888
3227
 
2889
3228
  ## `codiac auth environment allow onCabinets`
2890
3229
 
@@ -2941,7 +3280,7 @@ EXAMPLES
2941
3280
  $ codiac auth environment allow onCabinets -e qa -r productmanager -p read
2942
3281
  ```
2943
3282
 
2944
- _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/environment/allow/onCabinets.ts)_
3283
+ _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/environment/allow/onCabinets.ts)_
2945
3284
 
2946
3285
  ## `codiac auth environment allowed`
2947
3286
 
@@ -2986,7 +3325,7 @@ EXAMPLES
2986
3325
  $ codiac auth environment allowed --enterprise modeling -e dev
2987
3326
  ```
2988
3327
 
2989
- _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/environment/allowed.ts)_
3328
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/environment/allowed.ts)_
2990
3329
 
2991
3330
  ## `codiac auth register`
2992
3331
 
@@ -3032,7 +3371,7 @@ EXAMPLES
3032
3371
  $ codiac auth register
3033
3372
  ```
3034
3373
 
3035
- _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/register.ts)_
3374
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/register.ts)_
3036
3375
 
3037
3376
  ## `codiac auth role allowed [NAME]`
3038
3377
 
@@ -3079,7 +3418,7 @@ EXAMPLES
3079
3418
  $ codiac auth role allowed -n deployer -e main
3080
3419
  ```
3081
3420
 
3082
- _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/allowed.ts)_
3421
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/allowed.ts)_
3083
3422
 
3084
3423
  ## `codiac auth role assign`
3085
3424
 
@@ -3111,7 +3450,7 @@ EXAMPLES
3111
3450
  $ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
3112
3451
  ```
3113
3452
 
3114
- _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/assign.ts)_
3453
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/assign.ts)_
3115
3454
 
3116
3455
  ## `codiac auth role create [NAME]`
3117
3456
 
@@ -3144,7 +3483,7 @@ EXAMPLES
3144
3483
  $ codiac auth role create -n deployer
3145
3484
  ```
3146
3485
 
3147
- _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/create.ts)_
3486
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/create.ts)_
3148
3487
 
3149
3488
  ## `codiac auth role delete [NAME]`
3150
3489
 
@@ -3180,7 +3519,7 @@ EXAMPLES
3180
3519
  $ codiac auth role delete --id abc123def456
3181
3520
  ```
3182
3521
 
3183
- _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/delete.ts)_
3522
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/delete.ts)_
3184
3523
 
3185
3524
  ## `codiac auth role list`
3186
3525
 
@@ -3216,7 +3555,7 @@ EXAMPLES
3216
3555
  $ codiac auth role list -o yaml > roles.yaml
3217
3556
  ```
3218
3557
 
3219
- _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/list.ts)_
3558
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/list.ts)_
3220
3559
 
3221
3560
  ## `codiac auth role unassign`
3222
3561
 
@@ -3248,7 +3587,7 @@ EXAMPLES
3248
3587
  $ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
3249
3588
  ```
3250
3589
 
3251
- _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/role/unassign.ts)_
3590
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/role/unassign.ts)_
3252
3591
 
3253
3592
  ## `codiac auth user invite`
3254
3593
 
@@ -3288,7 +3627,7 @@ EXAMPLES
3288
3627
  $ codiac auth user invite
3289
3628
  ```
3290
3629
 
3291
- _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/user/invite.ts)_
3630
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/user/invite.ts)_
3292
3631
 
3293
3632
  ## `codiac auth user list`
3294
3633
 
@@ -3324,7 +3663,7 @@ EXAMPLES
3324
3663
  $ codiac auth user list -o yaml > users.yaml
3325
3664
  ```
3326
3665
 
3327
- _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/user/list.ts)_
3666
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/auth/user/list.ts)_
3328
3667
 
3329
3668
  ## `codiac autocomplete [SHELL]`
3330
3669
 
@@ -3374,7 +3713,7 @@ DESCRIPTION
3374
3713
  Creates a new branch for the parent project and any sourced dependencies.
3375
3714
  ```
3376
3715
 
3377
- _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch.ts)_
3716
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/branch.ts)_
3378
3717
 
3379
3718
  ## `codiac branch current`
3380
3719
 
@@ -3394,7 +3733,7 @@ ALIASES
3394
3733
  $ codiac branches current
3395
3734
  ```
3396
3735
 
3397
- _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch/current.ts)_
3736
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/branch/current.ts)_
3398
3737
 
3399
3738
  ## `codiac branch list`
3400
3739
 
@@ -3416,7 +3755,7 @@ ALIASES
3416
3755
  $ codiac branches list
3417
3756
  ```
3418
3757
 
3419
- _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch/list.ts)_
3758
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/branch/list.ts)_
3420
3759
 
3421
3760
  ## `codiac branches current`
3422
3761
 
@@ -3506,7 +3845,7 @@ DESCRIPTION
3506
3845
  Builds the project and the docker container
3507
3846
  ```
3508
3847
 
3509
- _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/build.ts)_
3848
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/build.ts)_
3510
3849
 
3511
3850
  ## `codiac cab attach`
3512
3851
 
@@ -4255,7 +4594,7 @@ EXAMPLES
4255
4594
  prod-cluster-1 --to-script
4256
4595
  ```
4257
4596
 
4258
- _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/cluster/attach.ts)_
4597
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/cluster/attach.ts)_
4259
4598
 
4260
4599
  ## `codiac cabinet contents`
4261
4600
 
@@ -4299,7 +4638,7 @@ EXAMPLES
4299
4638
  $ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
4300
4639
  ```
4301
4640
 
4302
- _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/contents.ts)_
4641
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/contents.ts)_
4303
4642
 
4304
4643
  ## `codiac cabinet create [CABINET]`
4305
4644
 
@@ -4366,7 +4705,7 @@ EXAMPLES
4366
4705
  cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
4367
4706
  ```
4368
4707
 
4369
- _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/create.ts)_
4708
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/create.ts)_
4370
4709
 
4371
4710
  ## `codiac cabinet define [CABINET]`
4372
4711
 
@@ -4428,7 +4767,7 @@ EXAMPLES
4428
4767
  $ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
4429
4768
  ```
4430
4769
 
4431
- _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/define.ts)_
4770
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/define.ts)_
4432
4771
 
4433
4772
  ## `codiac cabinet destroy [CABINET]`
4434
4773
 
@@ -4486,7 +4825,7 @@ EXAMPLES
4486
4825
  --environment dev --silent
4487
4826
  ```
4488
4827
 
4489
- _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/destroy.ts)_
4828
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/destroy.ts)_
4490
4829
 
4491
4830
  ## `codiac cabinet detach [CABINET]`
4492
4831
 
@@ -4543,7 +4882,7 @@ EXAMPLES
4543
4882
  main --environment dev
4544
4883
  ```
4545
4884
 
4546
- _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/detach.ts)_
4885
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/detach.ts)_
4547
4886
 
4548
4887
  ## `codiac cabinet forget [CABINET]`
4549
4888
 
@@ -4598,7 +4937,7 @@ EXAMPLES
4598
4937
  $ codiac cabinet forget --to-script
4599
4938
  ```
4600
4939
 
4601
- _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/forget.ts)_
4940
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/forget.ts)_
4602
4941
 
4603
4942
  ## `codiac cabinet list`
4604
4943
 
@@ -4649,7 +4988,7 @@ EXAMPLES
4649
4988
  $ codiac cabinet list -e myEnterprise --silent
4650
4989
  ```
4651
4990
 
4652
- _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/list.ts)_
4991
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/list.ts)_
4653
4992
 
4654
4993
  ## `codiac cabinet obliterate [CABINET]`
4655
4994
 
@@ -4691,7 +5030,7 @@ ALIASES
4691
5030
  $ codiac infrx cab obliterate
4692
5031
  ```
4693
5032
 
4694
- _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/obliterate.ts)_
5033
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/obliterate.ts)_
4695
5034
 
4696
5035
  ## `codiac cabinet restore`
4697
5036
 
@@ -4758,7 +5097,7 @@ EXAMPLES
4758
5097
  $ codiac cabinet restore --cluster prod-cluster-1 --to-script
4759
5098
  ```
4760
5099
 
4761
- _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/restore.ts)_
5100
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cabinet/restore.ts)_
4762
5101
 
4763
5102
  ## `codiac cfg add`
4764
5103
 
@@ -5057,7 +5396,7 @@ DESCRIPTION
5057
5396
  Applies settings to the Codiac CLI itself (scoped to the local machine).
5058
5397
  ```
5059
5398
 
5060
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cli.ts)_
5399
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cli.ts)_
5061
5400
 
5062
5401
  ## `codiac cluster agent configure [CLUSTER]`
5063
5402
 
@@ -5125,7 +5464,7 @@ EXAMPLES
5125
5464
  $ codiac cluster agent configure my-cluster --to-script
5126
5465
  ```
5127
5466
 
5128
- _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/agent/configure.ts)_
5467
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/agent/configure.ts)_
5129
5468
 
5130
5469
  ## `codiac cluster agent install [CLUSTER]`
5131
5470
 
@@ -5181,7 +5520,7 @@ EXAMPLES
5181
5520
  $ codiac cluster agent install my-cluster --to-script
5182
5521
  ```
5183
5522
 
5184
- _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/agent/install.ts)_
5523
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/agent/install.ts)_
5185
5524
 
5186
5525
  ## `codiac cluster agent uninstall [CLUSTER]`
5187
5526
 
@@ -5229,7 +5568,7 @@ EXAMPLES
5229
5568
  $ codiac cluster agent uninstall my-cluster --to-script
5230
5569
  ```
5231
5570
 
5232
- _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/agent/uninstall.ts)_
5571
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/agent/uninstall.ts)_
5233
5572
 
5234
5573
  ## `codiac cluster bootstrap [NAME]`
5235
5574
 
@@ -5292,7 +5631,7 @@ EXAMPLES
5292
5631
  $ codiac cluster bootstrap my-cluster --to-script
5293
5632
  ```
5294
5633
 
5295
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/bootstrap.ts)_
5634
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/bootstrap.ts)_
5296
5635
 
5297
5636
  ## `codiac cluster capture`
5298
5637
 
@@ -5377,7 +5716,7 @@ EXAMPLES
5377
5716
  $ codiac cluster connect my-fav-cluster
5378
5717
  ```
5379
5718
 
5380
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/connect.ts)_
5719
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/connect.ts)_
5381
5720
 
5382
5721
  ## `codiac cluster contents`
5383
5722
 
@@ -6042,7 +6381,7 @@ EXAMPLES
6042
6381
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
6043
6382
  ```
6044
6383
 
6045
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/install.ts)_
6384
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/install.ts)_
6046
6385
 
6047
6386
  ## `codiac cluster journal [CLUSTER]`
6048
6387
 
@@ -6331,7 +6670,7 @@ EXAMPLES
6331
6670
  $ codiac cluster stack capture my-fav-cluster
6332
6671
  ```
6333
6672
 
6334
- _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/stack/capture.ts)_
6673
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/stack/capture.ts)_
6335
6674
 
6336
6675
  ## `codiac cluster stack install [CLUSTER]`
6337
6676
 
@@ -6383,7 +6722,7 @@ EXAMPLES
6383
6722
  $ codiac cluster stack install my-cluster --to-script
6384
6723
  ```
6385
6724
 
6386
- _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/stack/install.ts)_
6725
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/stack/install.ts)_
6387
6726
 
6388
6727
  ## `codiac cluster stack list`
6389
6728
 
@@ -6549,7 +6888,7 @@ EXAMPLES
6549
6888
  $ codiac cluster start my-fav-cluster
6550
6889
  ```
6551
6890
 
6552
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/start.ts)_
6891
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/start.ts)_
6553
6892
 
6554
6893
  ## `codiac cluster stop [CLUSTER]`
6555
6894
 
@@ -6586,7 +6925,7 @@ EXAMPLES
6586
6925
  $ codiac cluster start my-fav-cluster
6587
6926
  ```
6588
6927
 
6589
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/stop.ts)_
6928
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/cluster/stop.ts)_
6590
6929
 
6591
6930
  ## `codiac cluster uninstall`
6592
6931
 
@@ -6648,7 +6987,7 @@ DESCRIPTION
6648
6987
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6649
6988
  ```
6650
6989
 
6651
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/commit.ts)_
6990
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/commit.ts)_
6652
6991
 
6653
6992
  ## `codiac config add`
6654
6993
 
@@ -6800,7 +7139,7 @@ EXAMPLES
6800
7139
  --value-type string
6801
7140
  ```
6802
7141
 
6803
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/add.ts)_
7142
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/add.ts)_
6804
7143
 
6805
7144
  ## `codiac config delete [SETTING]`
6806
7145
 
@@ -6869,7 +7208,7 @@ ALIASES
6869
7208
  $ codiac cfg delete
6870
7209
  ```
6871
7210
 
6872
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/delete.ts)_
7211
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/delete.ts)_
6873
7212
 
6874
7213
  ## `codiac config deploy`
6875
7214
 
@@ -6910,7 +7249,7 @@ EXAMPLES
6910
7249
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6911
7250
  ```
6912
7251
 
6913
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/deploy.ts)_
7252
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/deploy.ts)_
6914
7253
 
6915
7254
  ## `codiac config import`
6916
7255
 
@@ -6971,7 +7310,7 @@ EXAMPLES
6971
7310
  $ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
6972
7311
  ```
6973
7312
 
6974
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/import.ts)_
7313
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/import.ts)_
6975
7314
 
6976
7315
  ## `codiac config preview [SETTING]`
6977
7316
 
@@ -7254,7 +7593,7 @@ DESCRIPTION
7254
7593
  Shows the list of clusters.
7255
7594
  ```
7256
7595
 
7257
- _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/settings/get.ts)_
7596
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/settings/get.ts)_
7258
7597
 
7259
7598
  ## `codiac config view [SETTING]`
7260
7599
 
@@ -7319,7 +7658,7 @@ EXAMPLES
7319
7658
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
7320
7659
  ```
7321
7660
 
7322
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/view.ts)_
7661
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/config/view.ts)_
7323
7662
 
7324
7663
  ## `codiac csp creds list`
7325
7664
 
@@ -7367,7 +7706,7 @@ EXAMPLES
7367
7706
  $ codiac csp creds list
7368
7707
  ```
7369
7708
 
7370
- _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/csp/creds/list.ts)_
7709
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/csp/creds/list.ts)_
7371
7710
 
7372
7711
  ## `codiac csp login [PROVIDER]`
7373
7712
 
@@ -7445,7 +7784,7 @@ EXAMPLES
7445
7784
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
7446
7785
  ```
7447
7786
 
7448
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/csp/login.ts)_
7787
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/csp/login.ts)_
7449
7788
 
7450
7789
  ## `codiac csp logout [PROVIDER]`
7451
7790
 
@@ -7492,7 +7831,7 @@ EXAMPLES
7492
7831
  $ codiac csp logout azure --to-script
7493
7832
  ```
7494
7833
 
7495
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/csp/logout.ts)_
7834
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/csp/logout.ts)_
7496
7835
 
7497
7836
  ## `codiac dep [NAME]`
7498
7837
 
@@ -7513,7 +7852,7 @@ DESCRIPTION
7513
7852
  Installs a package into current project.
7514
7853
  ```
7515
7854
 
7516
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep.ts)_
7855
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep.ts)_
7517
7856
 
7518
7857
  ## `codiac dep create [URL]`
7519
7858
 
@@ -7537,7 +7876,7 @@ DESCRIPTION
7537
7876
  package version is used.
7538
7877
  ```
7539
7878
 
7540
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/create.ts)_
7879
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/create.ts)_
7541
7880
 
7542
7881
  ## `codiac dep install`
7543
7882
 
@@ -7554,7 +7893,7 @@ DESCRIPTION
7554
7893
  installs any missing dependency packages into the local project folder.
7555
7894
  ```
7556
7895
 
7557
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/install.ts)_
7896
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/install.ts)_
7558
7897
 
7559
7898
  ## `codiac dep list`
7560
7899
 
@@ -7571,7 +7910,7 @@ DESCRIPTION
7571
7910
  Shows the dependencies for the project.
7572
7911
  ```
7573
7912
 
7574
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/list.ts)_
7913
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/list.ts)_
7575
7914
 
7576
7915
  ## `codiac dep remove [NAME]`
7577
7916
 
@@ -7594,7 +7933,7 @@ DESCRIPTION
7594
7933
  Removes a dependency from the project.
7595
7934
  ```
7596
7935
 
7597
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/remove.ts)_
7936
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/remove.ts)_
7598
7937
 
7599
7938
  ## `codiac dep source [NAME]`
7600
7939
 
@@ -7620,7 +7959,7 @@ ALIASES
7620
7959
  $ codiac dep src
7621
7960
  ```
7622
7961
 
7623
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/source.ts)_
7962
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/source.ts)_
7624
7963
 
7625
7964
  ## `codiac dep src [NAME]`
7626
7965
 
@@ -7664,7 +8003,7 @@ DESCRIPTION
7664
8003
  Publishes the dependency in its current state and upgrades to it in the main project.
7665
8004
  ```
7666
8005
 
7667
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/syncup.ts)_
8006
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/syncup.ts)_
7668
8007
 
7669
8008
  ## `codiac dep unsource [NAME]`
7670
8009
 
@@ -7692,7 +8031,7 @@ ALIASES
7692
8031
  $ codiac dep unsrc
7693
8032
  ```
7694
8033
 
7695
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/unsource.ts)_
8034
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/unsource.ts)_
7696
8035
 
7697
8036
  ## `codiac dep unsrc [NAME]`
7698
8037
 
@@ -7739,7 +8078,7 @@ DESCRIPTION
7739
8078
  describe the command here
7740
8079
  ```
7741
8080
 
7742
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/upgrade.ts)_
8081
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/dep/upgrade.ts)_
7743
8082
 
7744
8083
  ## `codiac deploy`
7745
8084
 
@@ -7792,7 +8131,7 @@ EXAMPLES
7792
8131
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7793
8132
  ```
7794
8133
 
7795
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/deploy.ts)_
8134
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/deploy.ts)_
7796
8135
 
7797
8136
  ## `codiac domain map [DOMAIN]`
7798
8137
 
@@ -7948,7 +8287,7 @@ EXAMPLES
7948
8287
  cod enterprise create my-enterprise-code --silent
7949
8288
  ```
7950
8289
 
7951
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/enterprise/create.ts)_
8290
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/enterprise/create.ts)_
7952
8291
 
7953
8292
  ## `codiac enterprise list`
7954
8293
 
@@ -8003,7 +8342,7 @@ EXAMPLES
8003
8342
  $ codiac enterprise list --to-script
8004
8343
  ```
8005
8344
 
8006
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/enterprise/list.ts)_
8345
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/enterprise/list.ts)_
8007
8346
 
8008
8347
  ## `codiac env add [SETTING]`
8009
8348
 
@@ -8053,7 +8392,7 @@ EXAMPLES
8053
8392
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
8054
8393
  ```
8055
8394
 
8056
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/env/add.ts)_
8395
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/env/add.ts)_
8057
8396
 
8058
8397
  ## `codiac enviro cluster attach`
8059
8398
 
@@ -8356,7 +8695,7 @@ ALIASES
8356
8695
  $ codiac infrx enviro cluster attach
8357
8696
  ```
8358
8697
 
8359
- _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/cluster/attach.ts)_
8698
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/environment/cluster/attach.ts)_
8360
8699
 
8361
8700
  ## `codiac environment cluster detach`
8362
8701
 
@@ -8402,7 +8741,7 @@ ALIASES
8402
8741
  $ codiac infrx enviro cluster detach
8403
8742
  ```
8404
8743
 
8405
- _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/cluster/detach.ts)_
8744
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/environment/cluster/detach.ts)_
8406
8745
 
8407
8746
  ## `codiac environment create [NAME]`
8408
8747
 
@@ -8465,7 +8804,7 @@ EXAMPLES
8465
8804
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
8466
8805
  ```
8467
8806
 
8468
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/create.ts)_
8807
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/environment/create.ts)_
8469
8808
 
8470
8809
  ## `codiac environment delete [NAME]`
8471
8810
 
@@ -8526,7 +8865,7 @@ EXAMPLES
8526
8865
  $ codiac environment delete dev --enterprise main --to-script
8527
8866
  ```
8528
8867
 
8529
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/delete.ts)_
8868
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/environment/delete.ts)_
8530
8869
 
8531
8870
  ## `codiac environment list`
8532
8871
 
@@ -8577,7 +8916,7 @@ EXAMPLES
8577
8916
  $ codiac environment list -e myEnterprise --silent
8578
8917
  ```
8579
8918
 
8580
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/list.ts)_
8919
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/environment/list.ts)_
8581
8920
 
8582
8921
  ## `codiac fileshare capture`
8583
8922
 
@@ -8661,7 +9000,7 @@ ALIASES
8661
9000
  $ codiac fileshare capture
8662
9001
  ```
8663
9002
 
8664
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/capture.ts)_
9003
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/filestore/capture.ts)_
8665
9004
 
8666
9005
  ## `codiac filestore forget`
8667
9006
 
@@ -8708,7 +9047,7 @@ EXAMPLES
8708
9047
  $ codiac filestore forget
8709
9048
  ```
8710
9049
 
8711
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/forget.ts)_
9050
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/filestore/forget.ts)_
8712
9051
 
8713
9052
  ## `codiac filestore list`
8714
9053
 
@@ -8754,7 +9093,7 @@ EXAMPLES
8754
9093
  $ codiac filestore list
8755
9094
  ```
8756
9095
 
8757
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/list.ts)_
9096
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/filestore/list.ts)_
8758
9097
 
8759
9098
  ## `codiac help [COMMANDS]`
8760
9099
 
@@ -8840,7 +9179,7 @@ EXAMPLES
8840
9179
  $ codiac host delete
8841
9180
  ```
8842
9181
 
8843
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/delete.ts)_
9182
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/host/delete.ts)_
8844
9183
 
8845
9184
  ## `codiac host list [DOMAIN]`
8846
9185
 
@@ -8884,7 +9223,7 @@ EXAMPLES
8884
9223
  $ codiac host list
8885
9224
  ```
8886
9225
 
8887
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/list.ts)_
9226
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/host/list.ts)_
8888
9227
 
8889
9228
  ## `codiac host map [DOMAIN]`
8890
9229
 
@@ -8938,7 +9277,7 @@ EXAMPLES
8938
9277
  $ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
8939
9278
  ```
8940
9279
 
8941
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/map.ts)_
9280
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/host/map.ts)_
8942
9281
 
8943
9282
  ## `codiac host view [DOMAIN]`
8944
9283
 
@@ -8983,7 +9322,7 @@ EXAMPLES
8983
9322
  $ codiac host view
8984
9323
  ```
8985
9324
 
8986
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/view.ts)_
9325
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/host/view.ts)_
8987
9326
 
8988
9327
  ## `codiac identify [TOKENNAME]`
8989
9328
 
@@ -9055,7 +9394,7 @@ ALIASES
9055
9394
  $ codiac token
9056
9395
  ```
9057
9396
 
9058
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity.ts)_
9397
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/identity.ts)_
9059
9398
 
9060
9399
  ## `codiac identity delete [NAME]`
9061
9400
 
@@ -9080,7 +9419,7 @@ ALIASES
9080
9419
  $ codiac token remove
9081
9420
  ```
9082
9421
 
9083
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity/delete.ts)_
9422
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/identity/delete.ts)_
9084
9423
 
9085
9424
  ## `codiac identity list`
9086
9425
 
@@ -9102,7 +9441,7 @@ ALIASES
9102
9441
  $ codiac token list
9103
9442
  ```
9104
9443
 
9105
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity/list.ts)_
9444
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/identity/list.ts)_
9106
9445
 
9107
9446
  ## `codiac identity remove [NAME]`
9108
9447
 
@@ -9425,7 +9764,7 @@ DESCRIPTION
9425
9764
  Saves a reference to an existing container registry.
9426
9765
  ```
9427
9766
 
9428
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/capture.ts)_
9767
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/imageRegistry/capture.ts)_
9429
9768
 
9430
9769
  ## `codiac imageRegistry forget`
9431
9770
 
@@ -9446,7 +9785,7 @@ DESCRIPTION
9446
9785
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
9447
9786
  ```
9448
9787
 
9449
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/forget.ts)_
9788
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/imageRegistry/forget.ts)_
9450
9789
 
9451
9790
  ## `codiac imageRegistry list`
9452
9791
 
@@ -9488,7 +9827,7 @@ EXAMPLES
9488
9827
  $ codiac imageRegistry list -o yaml > registries.yaml
9489
9828
  ```
9490
9829
 
9491
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/list.ts)_
9830
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/imageRegistry/list.ts)_
9492
9831
 
9493
9832
  ## `codiac imageRegistry pullSecret set`
9494
9833
 
@@ -9524,7 +9863,7 @@ ALIASES
9524
9863
  $ codiac pullsecret
9525
9864
  ```
9526
9865
 
9527
- _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/pullSecret/set.ts)_
9866
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/imageRegistry/pullSecret/set.ts)_
9528
9867
 
9529
9868
  ## `codiac imageRegistry pullSecret unset`
9530
9869
 
@@ -9551,7 +9890,7 @@ ALIASES
9551
9890
  $ codiac pullsecret unset
9552
9891
  ```
9553
9892
 
9554
- _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/pullSecret/unset.ts)_
9893
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/imageRegistry/pullSecret/unset.ts)_
9555
9894
 
9556
9895
  ## `codiac images add [IMAGENAME]`
9557
9896
 
@@ -9612,7 +9951,7 @@ EXAMPLES
9612
9951
  $ codiac images add your-company/your-image --to-script
9613
9952
  ```
9614
9953
 
9615
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/add.ts)_
9954
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/add.ts)_
9616
9955
 
9617
9956
  ## `codiac images list`
9618
9957
 
@@ -9635,7 +9974,7 @@ ALIASES
9635
9974
  $ codiac img list
9636
9975
  ```
9637
9976
 
9638
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/list.ts)_
9977
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/list.ts)_
9639
9978
 
9640
9979
  ## `codiac images patch IMAGENAME`
9641
9980
 
@@ -9665,7 +10004,7 @@ ALIASES
9665
10004
  $ codiac img patch
9666
10005
  ```
9667
10006
 
9668
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/patch.ts)_
10007
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/patch.ts)_
9669
10008
 
9670
10009
  ## `codiac images remove IMAGENAME`
9671
10010
 
@@ -9691,7 +10030,7 @@ ALIASES
9691
10030
  $ codiac img delete
9692
10031
  ```
9693
10032
 
9694
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/remove.ts)_
10033
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/remove.ts)_
9695
10034
 
9696
10035
  ## `codiac images version NAME`
9697
10036
 
@@ -9717,7 +10056,7 @@ ALIASES
9717
10056
  $ codiac img version get
9718
10057
  ```
9719
10058
 
9720
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/version.ts)_
10059
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/version.ts)_
9721
10060
 
9722
10061
  ## `codiac images version bump NAME`
9723
10062
 
@@ -9750,7 +10089,7 @@ ALIASES
9750
10089
  $ codiac img version bump
9751
10090
  ```
9752
10091
 
9753
- _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/version/bump.ts)_
10092
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/images/version/bump.ts)_
9754
10093
 
9755
10094
  ## `codiac img [IMAGENAME]`
9756
10095
 
@@ -10066,7 +10405,7 @@ EXAMPLES
10066
10405
  $ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
10067
10406
  ```
10068
10407
 
10069
- _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/import/cluster.ts)_
10408
+ _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/import/cluster.ts)_
10070
10409
 
10071
10410
  ## `codiac infrx cab create [CABINET]`
10072
10411
 
@@ -10911,7 +11250,7 @@ DESCRIPTION
10911
11250
  Declares the given folder as a project root
10912
11251
  ```
10913
11252
 
10914
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/init.ts)_
11253
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/init.ts)_
10915
11254
 
10916
11255
  ## `codiac kit create`
10917
11256
 
@@ -10954,7 +11293,7 @@ EXAMPLES
10954
11293
  $ codiac kit create -e myEnterprise -a myApi --to-script
10955
11294
  ```
10956
11295
 
10957
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/kit/create.ts)_
11296
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/kit/create.ts)_
10958
11297
 
10959
11298
  ## `codiac login`
10960
11299
 
@@ -11013,7 +11352,7 @@ EXAMPLES
11013
11352
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
11014
11353
  ```
11015
11354
 
11016
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/login.ts)_
11355
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/login.ts)_
11017
11356
 
11018
11357
  ## `codiac logout`
11019
11358
 
@@ -11046,7 +11385,7 @@ EXAMPLES
11046
11385
  $ codiac logout --to-script
11047
11386
  ```
11048
11387
 
11049
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/logout.ts)_
11388
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/logout.ts)_
11050
11389
 
11051
11390
  ## `codiac merge [BRANCH]`
11052
11391
 
@@ -11067,7 +11406,7 @@ DESCRIPTION
11067
11406
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
11068
11407
  ```
11069
11408
 
11070
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/merge.ts)_
11409
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/merge.ts)_
11071
11410
 
11072
11411
  ## `codiac noc cluster capture`
11073
11412
 
@@ -11119,7 +11458,7 @@ EXAMPLES
11119
11458
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
11120
11459
  ```
11121
11460
 
11122
- _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/capture.ts)_
11461
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/capture.ts)_
11123
11462
 
11124
11463
  ## `codiac noc cluster create [NAME]`
11125
11464
 
@@ -11209,7 +11548,7 @@ FLAG DESCRIPTIONS
11209
11548
  initialization is always skipped in that mode.
11210
11549
  ```
11211
11550
 
11212
- _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/create.ts)_
11551
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/create.ts)_
11213
11552
 
11214
11553
  ## `codiac noc cluster credentials-set [NAME]`
11215
11554
 
@@ -11264,7 +11603,7 @@ EXAMPLES
11264
11603
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
11265
11604
  ```
11266
11605
 
11267
- _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/credentials-set.ts)_
11606
+ _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/credentials-set.ts)_
11268
11607
 
11269
11608
  ## `codiac noc cluster define [NAME]`
11270
11609
 
@@ -11338,7 +11677,7 @@ EXAMPLES
11338
11677
  $ codiac noc cluster define my-cluster --to-script
11339
11678
  ```
11340
11679
 
11341
- _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/define.ts)_
11680
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/define.ts)_
11342
11681
 
11343
11682
  ## `codiac noc cluster deinit`
11344
11683
 
@@ -11378,7 +11717,7 @@ EXAMPLES
11378
11717
  $ codiac noc cluster deinit -n my-cluster --to-script
11379
11718
  ```
11380
11719
 
11381
- _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/deinit.ts)_
11720
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/deinit.ts)_
11382
11721
 
11383
11722
  ## `codiac noc cluster destroy [NAME]`
11384
11723
 
@@ -11412,7 +11751,7 @@ ALIASES
11412
11751
  $ codiac cluster destroy
11413
11752
  ```
11414
11753
 
11415
- _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/destroy.ts)_
11754
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/destroy.ts)_
11416
11755
 
11417
11756
  ## `codiac noc cluster forget`
11418
11757
 
@@ -11463,7 +11802,7 @@ EXAMPLES
11463
11802
  $ codiac noc cluster forget --running
11464
11803
  ```
11465
11804
 
11466
- _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/forget.ts)_
11805
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/forget.ts)_
11467
11806
 
11468
11807
  ## `codiac noc cluster grant`
11469
11808
 
@@ -11501,7 +11840,7 @@ EXAMPLES
11501
11840
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
11502
11841
  ```
11503
11842
 
11504
- _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/grant.ts)_
11843
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/grant.ts)_
11505
11844
 
11506
11845
  ## `codiac noc cluster init`
11507
11846
 
@@ -11547,7 +11886,7 @@ EXAMPLES
11547
11886
  $ codiac noc cluster init -n my-cluster --to-script
11548
11887
  ```
11549
11888
 
11550
- _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/init.ts)_
11889
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/init.ts)_
11551
11890
 
11552
11891
  ## `codiac noc cluster journal [CLUSTER]`
11553
11892
 
@@ -11596,7 +11935,7 @@ EXAMPLES
11596
11935
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
11597
11936
  ```
11598
11937
 
11599
- _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/journal.ts)_
11938
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/journal.ts)_
11600
11939
 
11601
11940
  ## `codiac noc cluster list`
11602
11941
 
@@ -11657,7 +11996,7 @@ EXAMPLES
11657
11996
  $ codiac noc cluster list -e myEnterprise --to-script
11658
11997
  ```
11659
11998
 
11660
- _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/list.ts)_
11999
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/list.ts)_
11661
12000
 
11662
12001
  ## `codiac noc cluster restore [NAME]`
11663
12002
 
@@ -11717,7 +12056,7 @@ EXAMPLES
11717
12056
  $ codiac noc cluster restore prod-cluster-1 --to-script
11718
12057
  ```
11719
12058
 
11720
- _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/noc/cluster/restore.ts)_
12059
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/noc/cluster/restore.ts)_
11721
12060
 
11722
12061
  ## `codiac pkg add [DEFINITIONFILE]`
11723
12062
 
@@ -11751,7 +12090,7 @@ DESCRIPTION
11751
12090
  Configures a package to be built and published by the project.
11752
12091
  ```
11753
12092
 
11754
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/add.ts)_
12093
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pkg/add.ts)_
11755
12094
 
11756
12095
  ## `codiac pkg delete [PACKAGENAME]`
11757
12096
 
@@ -11789,7 +12128,7 @@ DESCRIPTION
11789
12128
  Renders the list of packages that are configured as project exports.
11790
12129
  ```
11791
12130
 
11792
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/list.ts)_
12131
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pkg/list.ts)_
11793
12132
 
11794
12133
  ## `codiac pkg patch PACKAGENAME`
11795
12134
 
@@ -11815,7 +12154,7 @@ DESCRIPTION
11815
12154
  registryUrl and/or environment.
11816
12155
  ```
11817
12156
 
11818
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/patch.ts)_
12157
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pkg/patch.ts)_
11819
12158
 
11820
12159
  ## `codiac pkg remove [PACKAGENAME]`
11821
12160
 
@@ -11838,7 +12177,7 @@ ALIASES
11838
12177
  $ codiac pkg delete
11839
12178
  ```
11840
12179
 
11841
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/remove.ts)_
12180
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pkg/remove.ts)_
11842
12181
 
11843
12182
  ## `codiac portal`
11844
12183
 
@@ -11871,7 +12210,7 @@ EXAMPLES
11871
12210
  $ codiac portal --to-script
11872
12211
  ```
11873
12212
 
11874
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/portal.ts)_
12213
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/portal.ts)_
11875
12214
 
11876
12215
  ## `codiac probe create [CMD]`
11877
12216
 
@@ -11992,7 +12331,7 @@ DESCRIPTION
11992
12331
  Publishes the exports (packages and images) declared in the ProjectConfig.
11993
12332
  ```
11994
12333
 
11995
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/publish.ts)_
12334
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/publish.ts)_
11996
12335
 
11997
12336
  ## `codiac pull [NAME]`
11998
12337
 
@@ -12016,7 +12355,7 @@ DESCRIPTION
12016
12355
  Pulls all commits from upstream to local.
12017
12356
  ```
12018
12357
 
12019
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pull.ts)_
12358
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pull.ts)_
12020
12359
 
12021
12360
  ## `codiac pullsecret`
12022
12361
 
@@ -12099,7 +12438,7 @@ DESCRIPTION
12099
12438
  Pushes all local commits upstream.
12100
12439
  ```
12101
12440
 
12102
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/push.ts)_
12441
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/push.ts)_
12103
12442
 
12104
12443
  ## `codiac pvc create`
12105
12444
 
@@ -12183,7 +12522,7 @@ EXAMPLES
12183
12522
  $ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
12184
12523
  ```
12185
12524
 
12186
- _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/create.ts)_
12525
+ _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pvc/create.ts)_
12187
12526
 
12188
12527
  ## `codiac pvc delete`
12189
12528
 
@@ -12230,7 +12569,7 @@ EXAMPLES
12230
12569
  $ codiac pvc delete --id <fileStoreDefId> --silent
12231
12570
  ```
12232
12571
 
12233
- _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/delete.ts)_
12572
+ _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pvc/delete.ts)_
12234
12573
 
12235
12574
  ## `codiac pvc get`
12236
12575
 
@@ -12271,7 +12610,7 @@ EXAMPLES
12271
12610
  $ codiac pvc get --name app-documents-share --silent -o json
12272
12611
  ```
12273
12612
 
12274
- _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/get.ts)_
12613
+ _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pvc/get.ts)_
12275
12614
 
12276
12615
  ## `codiac pvc list`
12277
12616
 
@@ -12314,7 +12653,7 @@ EXAMPLES
12314
12653
  $ codiac pvc list -o yaml
12315
12654
  ```
12316
12655
 
12317
- _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/list.ts)_
12656
+ _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/pvc/list.ts)_
12318
12657
 
12319
12658
  ## `codiac relay-version`
12320
12659
 
@@ -12331,7 +12670,7 @@ EXAMPLES
12331
12670
  $ codiac relay-version
12332
12671
  ```
12333
12672
 
12334
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/relay-version.ts)_
12673
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/relay-version.ts)_
12335
12674
 
12336
12675
  ## `codiac run`
12337
12676
 
@@ -12373,7 +12712,7 @@ DESCRIPTION
12373
12712
  Runs the latest build of the api container locally.
12374
12713
  ```
12375
12714
 
12376
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/run.ts)_
12715
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/run.ts)_
12377
12716
 
12378
12717
  ## `codiac secretStore`
12379
12718
 
@@ -12491,7 +12830,7 @@ EXAMPLES
12491
12830
  $ codiac secretStore capture --echo
12492
12831
  ```
12493
12832
 
12494
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/capture.ts)_
12833
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/secretStore/capture.ts)_
12495
12834
 
12496
12835
  ## `codiac secretStore forget`
12497
12836
 
@@ -12512,7 +12851,7 @@ DESCRIPTION
12512
12851
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
12513
12852
  ```
12514
12853
 
12515
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/forget.ts)_
12854
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/secretStore/forget.ts)_
12516
12855
 
12517
12856
  ## `codiac secretStore list`
12518
12857
 
@@ -12557,7 +12896,7 @@ EXAMPLES
12557
12896
  $ codiac secretStore list
12558
12897
  ```
12559
12898
 
12560
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/list.ts)_
12899
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/secretStore/list.ts)_
12561
12900
 
12562
12901
  ## `codiac shell init`
12563
12902
 
@@ -12595,7 +12934,7 @@ EXAMPLES
12595
12934
  Invoke-Expression (codiac shell init --shell powershell)
12596
12935
  ```
12597
12936
 
12598
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/shell/init.ts)_
12937
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/shell/init.ts)_
12599
12938
 
12600
12939
  ## `codiac skill install`
12601
12940
 
@@ -12630,7 +12969,7 @@ EXAMPLES
12630
12969
  $ codiac skill install --force
12631
12970
  ```
12632
12971
 
12633
- _See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/install.ts)_
12972
+ _See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/skill/install.ts)_
12634
12973
 
12635
12974
  ## `codiac skill path`
12636
12975
 
@@ -12653,7 +12992,7 @@ EXAMPLES
12653
12992
  $ codiac skill path
12654
12993
  ```
12655
12994
 
12656
- _See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/path.ts)_
12995
+ _See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/skill/path.ts)_
12657
12996
 
12658
12997
  ## `codiac skill show`
12659
12998
 
@@ -12692,7 +13031,7 @@ EXAMPLES
12692
13031
  $ codiac skill show --list
12693
13032
  ```
12694
13033
 
12695
- _See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/show.ts)_
13034
+ _See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/skill/show.ts)_
12696
13035
 
12697
13036
  ## `codiac snapshot deploy`
12698
13037
 
@@ -12720,7 +13059,7 @@ DESCRIPTION
12720
13059
  Deploys all assets in a snapshot to a target cabinet.
12721
13060
  ```
12722
13061
 
12723
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/deploy.ts)_
13062
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/snapshot/deploy.ts)_
12724
13063
 
12725
13064
  ## `codiac snapshot list`
12726
13065
 
@@ -12769,7 +13108,7 @@ EXAMPLES
12769
13108
  $ codiac snapshot list -e myEnterprise --silent
12770
13109
  ```
12771
13110
 
12772
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/list.ts)_
13111
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/snapshot/list.ts)_
12773
13112
 
12774
13113
  ## `codiac snapshot tag`
12775
13114
 
@@ -12812,7 +13151,7 @@ EXAMPLES
12812
13151
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
12813
13152
  ```
12814
13153
 
12815
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/tag.ts)_
13154
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/snapshot/tag.ts)_
12816
13155
 
12817
13156
  ## `codiac snapshot untag`
12818
13157
 
@@ -12855,7 +13194,7 @@ EXAMPLES
12855
13194
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
12856
13195
  ```
12857
13196
 
12858
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/untag.ts)_
13197
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/snapshot/untag.ts)_
12859
13198
 
12860
13199
  ## `codiac stage [FILES]`
12861
13200
 
@@ -12877,7 +13216,7 @@ DESCRIPTION
12877
13216
  Flags files to be included in the next commit.
12878
13217
  ```
12879
13218
 
12880
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stage.ts)_
13219
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/stage.ts)_
12881
13220
 
12882
13221
  ## `codiac stash [FILE]`
12883
13222
 
@@ -12899,7 +13238,7 @@ DESCRIPTION
12899
13238
  describe the command here
12900
13239
  ```
12901
13240
 
12902
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stash.ts)_
13241
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/stash.ts)_
12903
13242
 
12904
13243
  ## `codiac status`
12905
13244
 
@@ -12918,7 +13257,7 @@ DESCRIPTION
12918
13257
  Shows the current uncommitted changes in the current branch.
12919
13258
  ```
12920
13259
 
12921
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/status.ts)_
13260
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/status.ts)_
12922
13261
 
12923
13262
  ## `codiac stop`
12924
13263
 
@@ -12936,7 +13275,7 @@ DESCRIPTION
12936
13275
  Stops the running container for this project
12937
13276
  ```
12938
13277
 
12939
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stop.ts)_
13278
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/stop.ts)_
12940
13279
 
12941
13280
  ## `codiac switch [NAME]`
12942
13281
 
@@ -12956,7 +13295,7 @@ DESCRIPTION
12956
13295
  Changes branch on the main project and any sourced dependencies.
12957
13296
  ```
12958
13297
 
12959
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/switch.ts)_
13298
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/switch.ts)_
12960
13299
 
12961
13300
  ## `codiac sync [NAME]`
12962
13301
 
@@ -12981,7 +13320,7 @@ DESCRIPTION
12981
13320
  Merges the given branch into the current branch.
12982
13321
  ```
12983
13322
 
12984
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/sync.ts)_
13323
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/sync.ts)_
12985
13324
 
12986
13325
  ## `codiac tenant create [NAME]`
12987
13326
 
@@ -13024,7 +13363,7 @@ EXAMPLES
13024
13363
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
13025
13364
  ```
13026
13365
 
13027
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/tenant/create.ts)_
13366
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/tenant/create.ts)_
13028
13367
 
13029
13368
  ## `codiac tenant switch [CODE]`
13030
13369
 
@@ -13064,7 +13403,7 @@ EXAMPLES
13064
13403
  $ codiac tenant switch my-tenant-code --to-script
13065
13404
  ```
13066
13405
 
13067
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/tenant/switch.ts)_
13406
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/tenant/switch.ts)_
13068
13407
 
13069
13408
  ## `codiac token [TOKENNAME]`
13070
13409
 
@@ -13186,7 +13525,7 @@ DESCRIPTION
13186
13525
  Flags files to be included in the next commit.
13187
13526
  ```
13188
13527
 
13189
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/unstage.ts)_
13528
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/unstage.ts)_
13190
13529
 
13191
13530
  ## `codiac update [CHANNEL]`
13192
13531
 
@@ -13373,7 +13712,7 @@ EXAMPLES
13373
13712
  $ codiac whereami --to-script
13374
13713
  ```
13375
13714
 
13376
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/whereami.ts)_
13715
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/whereami.ts)_
13377
13716
 
13378
13717
  ## `codiac whoami`
13379
13718
 
@@ -13415,5 +13754,5 @@ EXAMPLES
13415
13754
  $ codiac whoami --to-script
13416
13755
  ```
13417
13756
 
13418
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/whoami.ts)_
13757
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.254/src/commands/whoami.ts)_
13419
13758
  <!-- commandsstop -->