@codiac.io/codiac-cli 1.3.253 → 1.3.255

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 (44) hide show
  1. package/README.md +556 -165
  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/commands/asset/create.js +5 -4
  28. package/dist/commands/asset/create.js.map +1 -1
  29. package/dist/commands/asset/edit.d.ts +9 -0
  30. package/dist/commands/asset/edit.js +38 -0
  31. package/dist/commands/asset/edit.js.map +1 -1
  32. package/dist/commands/imageRegistry/edit.d.ts +47 -0
  33. package/dist/commands/imageRegistry/edit.js +163 -0
  34. package/dist/commands/imageRegistry/edit.js.map +1 -0
  35. package/dist/uilogic/model-spec.d.ts +40 -0
  36. package/dist/uilogic/model-spec.js +71 -0
  37. package/dist/uilogic/model-spec.js.map +1 -0
  38. package/dist/uilogic/registry-resolver.d.ts +21 -0
  39. package/dist/uilogic/registry-resolver.js +42 -0
  40. package/dist/uilogic/registry-resolver.js.map +1 -0
  41. package/oclif.manifest.json +670 -1
  42. package/package.json +1 -1
  43. package/skill/references/cli-reference.md +1 -1
  44. package/skill/references/concepts.md +26 -3
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.255 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)
@@ -376,6 +383,7 @@ USAGE
376
383
  * [`codiac image version bump NAME`](#codiac-image-version-bump-name)
377
384
  * [`codiac image version get NAME`](#codiac-image-version-get-name)
378
385
  * [`codiac imageRegistry capture`](#codiac-imageregistry-capture)
386
+ * [`codiac imageRegistry edit`](#codiac-imageregistry-edit)
379
387
  * [`codiac imageRegistry forget`](#codiac-imageregistry-forget)
380
388
  * [`codiac imageRegistry list`](#codiac-imageregistry-list)
381
389
  * [`codiac imageRegistry pullSecret set`](#codiac-imageregistry-pullsecret-set)
@@ -531,7 +539,339 @@ EXAMPLES
531
539
  $ codiac ai agent install -e ben -t hermes -c dev --to-script
532
540
  ```
533
541
 
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)_
542
+ _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/agent/install.ts)_
543
+
544
+ ## `codiac ai model attach`
545
+
546
+ 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).
547
+
548
+ ```
549
+ USAGE
550
+ $ codiac ai model attach [-h] [-e <value>] [-m <value>] [--agent <value>] [-c <value>] [--silent | --echo |
551
+ --to-script]
552
+
553
+ FLAGS
554
+ -c, --cabinet=<value> Cabinet the model and agent are deployed in.
555
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
556
+ -h, --help Show CLI help.
557
+ -m, --model=<value> Handle of the provisioned model to wire in.
558
+ --agent=<value> Name of the already-installed agent to wire the model into.
559
+ --echo Renders the equivalent non-interactive command for future use before executing.
560
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
561
+ --to-script Renders the equivalent non-interactive command without executing it.
562
+
563
+ DESCRIPTION
564
+ Wires an already-provisioned model into an already-installed agent (writes the model endpoint onto the agent and
565
+ redeploys it so it uses the private model).
566
+
567
+ EXAMPLES
568
+ Wire the qwen3-dev model into the hermes-agent in the dev cabinet.
569
+
570
+ $ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev
571
+
572
+ Non-interactive (scripted) invocation.
573
+
574
+ $ codiac ai model attach -e ben -m qwen3-dev --agent hermes-agent -c dev --silent
575
+ ```
576
+
577
+ _See code: [src/commands/ai/model/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/model/attach.ts)_
578
+
579
+ ## `codiac ai model install`
580
+
581
+ 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.
582
+
583
+ ```
584
+ USAGE
585
+ $ codiac ai model install [-h] [-e <value>] [--source served|byo] [-m <value>] [--runtime cpu|gpu] [--base-url
586
+ <value>] [--key <value>] [-c <value>] [-n <value>] [--attach existing|new|none] [--agent <value>] [--framework
587
+ <value>] [--input <value>] [--take-defaults | --silent] [--echo | --to-script | ]
588
+
589
+ FLAGS
590
+ -c, --cabinet=<value> Cabinet (environment) the model is deployed into (served) or registered against (byo).
591
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
592
+ -h, --help Show CLI help.
593
+ -m, --model=<value> Catalog model kind to serve when --source served (one of: qwen3, gpt-oss, glm,
594
+ deepseek-r1).
595
+ -n, --name=<value> Handle for the model workload (server-assigns a default when omitted).
596
+ --agent=<value> Name of the already-installed agent to wire the model into (required with --attach
597
+ existing).
598
+ --attach=<option> Wire the model to an agent once ready: attach to an existing agent, install a new one,
599
+ or neither (defaults to none).
600
+ <options: existing|new|none>
601
+ --base-url=<value> OpenAI-compatible base URL of the endpoint to register when --source byo (e.g.
602
+ https://host/v1).
603
+ --echo Renders the equivalent non-interactive command for future use before executing.
604
+ --framework=<value> Agent framework to install and wire to the model (required with --attach new).
605
+ --input=<value>... Pre-supply a needs_action input as key=value (repeatable), e.g. --input
606
+ skipReachabilityCheck=true . Lets --silent/headless runs resolve secret/decision prompts
607
+ without interaction.
608
+ --key=<value> API key for the BYO endpoint (prompted as a secret during install when omitted; stored
609
+ server-side as a secret).
610
+ --runtime=<option> Compute tier for a served model: cpu-only, or scheduled onto a GPU node pool.
611
+ <options: cpu|gpu>
612
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
613
+ --source=<option> Serve a license-clean catalog model in-cluster (served) or register an external
614
+ OpenAI-compatible endpoint (byo).
615
+ <options: served|byo>
616
+ --take-defaults Prevents prompting for confirmation on parameters that were passed in or were
617
+ automatically set to default values (Irrelevant in --silent mode). This behavior does
618
+ NOT apply to scenarios where the command needs to override invalid user input; such
619
+ cases will always prompt for confirmation.
620
+ --to-script Renders the equivalent non-interactive command without executing it.
621
+
622
+ DESCRIPTION
623
+ Provisions a private LLM into an enterprise cabinet — either an in-cluster (ClusterIP-only) catalog model served via
624
+ Ollama, or a registered bring-your-own OpenAI-compatible endpoint.
625
+
626
+ EXAMPLES
627
+ Serve the Qwen3 catalog model (CPU) into the dev cabinet of the ben enterprise.
628
+
629
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev
630
+
631
+ Non-interactive (scripted) served install; a served model needs both --model and --runtime.
632
+
633
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --attach none --silent
634
+
635
+ Register a BYO OpenAI-compatible endpoint and attach it to an existing agent.
636
+
637
+ $ codiac ai model install -e ben --source byo --base-url https://host/v1 --key sk-... -c dev --attach existing \
638
+ --agent hermes-agent --silent
639
+
640
+ Renders the equivalent silent command and then executes.
641
+
642
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --echo
643
+
644
+ Renders the equivalent silent command without executing.
645
+
646
+ $ codiac ai model install -e ben --source served -m qwen3 --runtime cpu -c dev --to-script
647
+ ```
648
+
649
+ _See code: [src/commands/ai/model/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/model/install.ts)_
650
+
651
+ ## `codiac ai model list`
652
+
653
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered bring-your-own (BYO) OpenAI-compatible endpoints.
654
+
655
+ ```
656
+ USAGE
657
+ $ codiac ai model list [-h] [-e <value>] [-c <value>] [-o text|tree|json|yaml|tsv|csv] [-q <value>] [--silent |
658
+ --echo | --to-script]
659
+
660
+ FLAGS
661
+ -c, --cabinet=<value> Restrict the listing to one cabinet (also resolves served endpoints to that cabinet's
662
+ in-cluster service DNS).
663
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
664
+ -h, --help Show CLI help.
665
+ -o, --output=<option> Format in which to render the results.
666
+ <options: text|tree|json|yaml|tsv|csv>
667
+ -q, --query=<value> JMESPath expression to filter or reshape the results (see jmespath.org).
668
+ --echo Renders the equivalent non-interactive command for future use before executing.
669
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
670
+ --to-script Renders the equivalent non-interactive command without executing it.
671
+
672
+ DESCRIPTION
673
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered
674
+ bring-your-own (BYO) OpenAI-compatible endpoints.
675
+
676
+ ALIASES
677
+ $ codiac ai model ls
678
+
679
+ EXAMPLES
680
+ Simple listing for an enterprise.
681
+
682
+ $ codiac ai model list -e ben
683
+
684
+ Only the models in one cabinet.
685
+
686
+ $ codiac ai model list -e ben -c dev
687
+
688
+ Handles only.
689
+
690
+ $ codiac ai model list -e ben -q '[].handle'
691
+
692
+ Filter to served models.
693
+
694
+ $ codiac ai model list -e ben -q "[?mode == 'served']"
695
+
696
+ Export as YAML.
697
+
698
+ $ codiac ai model list -e ben -o yaml
699
+
700
+ Non-interactive invocation.
701
+
702
+ $ codiac ai model list -e ben --silent
703
+ ```
704
+
705
+ _See code: [src/commands/ai/model/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/model/list.ts)_
706
+
707
+ ## `codiac ai model ls`
708
+
709
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered bring-your-own (BYO) OpenAI-compatible endpoints.
710
+
711
+ ```
712
+ USAGE
713
+ $ codiac ai model ls [-h] [-e <value>] [-c <value>] [-o text|tree|json|yaml|tsv|csv] [-q <value>] [--silent |
714
+ --echo | --to-script]
715
+
716
+ FLAGS
717
+ -c, --cabinet=<value> Restrict the listing to one cabinet (also resolves served endpoints to that cabinet's
718
+ in-cluster service DNS).
719
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
720
+ -h, --help Show CLI help.
721
+ -o, --output=<option> Format in which to render the results.
722
+ <options: text|tree|json|yaml|tsv|csv>
723
+ -q, --query=<value> JMESPath expression to filter or reshape the results (see jmespath.org).
724
+ --echo Renders the equivalent non-interactive command for future use before executing.
725
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
726
+ --to-script Renders the equivalent non-interactive command without executing it.
727
+
728
+ DESCRIPTION
729
+ Lists the private models provisioned for an enterprise — both in-cluster (served) catalog models and registered
730
+ bring-your-own (BYO) OpenAI-compatible endpoints.
731
+
732
+ ALIASES
733
+ $ codiac ai model ls
734
+
735
+ EXAMPLES
736
+ Simple listing for an enterprise.
737
+
738
+ $ codiac ai model ls -e ben
739
+
740
+ Only the models in one cabinet.
741
+
742
+ $ codiac ai model ls -e ben -c dev
743
+
744
+ Handles only.
745
+
746
+ $ codiac ai model ls -e ben -q '[].handle'
747
+
748
+ Filter to served models.
749
+
750
+ $ codiac ai model ls -e ben -q "[?mode == 'served']"
751
+
752
+ Export as YAML.
753
+
754
+ $ codiac ai model ls -e ben -o yaml
755
+
756
+ Non-interactive invocation.
757
+
758
+ $ codiac ai model ls -e ben --silent
759
+ ```
760
+
761
+ ## `codiac ai model remove`
762
+
763
+ 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.
764
+
765
+ ```
766
+ USAGE
767
+ $ codiac ai model remove [-h] [-e <value>] [-m <value>] [-c <value>] [--silent | --echo | --to-script]
768
+
769
+ FLAGS
770
+ -c, --cabinet=<value> Cabinet the model was deployed into (served) or registered against (byo).
771
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
772
+ -h, --help Show CLI help.
773
+ -m, --model=<value> Handle of the model to remove.
774
+ --echo Renders the equivalent non-interactive command for future use before executing.
775
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
776
+ --to-script Renders the equivalent non-interactive command without executing it.
777
+
778
+ DESCRIPTION
779
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO
780
+ endpoints are not yet removable here.
781
+
782
+ ALIASES
783
+ $ codiac ai model remove
784
+
785
+ EXAMPLES
786
+ Undeploy the served qwen3-dev model from the dev cabinet.
787
+
788
+ $ codiac ai model remove -e ben -m qwen3-dev -c dev
789
+
790
+ Non-interactive (scripted) invocation.
791
+
792
+ $ codiac ai model remove -e ben -m qwen3-dev -c dev --silent
793
+ ```
794
+
795
+ ## `codiac ai model uninstall`
796
+
797
+ 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.
798
+
799
+ ```
800
+ USAGE
801
+ $ codiac ai model uninstall [-h] [-e <value>] [-m <value>] [-c <value>] [--silent | --echo | --to-script]
802
+
803
+ FLAGS
804
+ -c, --cabinet=<value> Cabinet the model was deployed into (served) or registered against (byo).
805
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
806
+ -h, --help Show CLI help.
807
+ -m, --model=<value> Handle of the model to remove.
808
+ --echo Renders the equivalent non-interactive command for future use before executing.
809
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
810
+ --to-script Renders the equivalent non-interactive command without executing it.
811
+
812
+ DESCRIPTION
813
+ Removes a provisioned model. A served (in-cluster) model is undeployed from its cabinet (its asset is destroyed); BYO
814
+ endpoints are not yet removable here.
815
+
816
+ ALIASES
817
+ $ codiac ai model remove
818
+
819
+ EXAMPLES
820
+ Undeploy the served qwen3-dev model from the dev cabinet.
821
+
822
+ $ codiac ai model uninstall -e ben -m qwen3-dev -c dev
823
+
824
+ Non-interactive (scripted) invocation.
825
+
826
+ $ codiac ai model uninstall -e ben -m qwen3-dev -c dev --silent
827
+ ```
828
+
829
+ _See code: [src/commands/ai/model/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/model/uninstall.ts)_
830
+
831
+ ## `codiac ai model view`
832
+
833
+ Shows the details of a single provisioned model (served or BYO) by its handle.
834
+
835
+ ```
836
+ USAGE
837
+ $ codiac ai model view [-h] [-e <value>] [-m <value>] [-c <value>] [-o text|json|yaml] [-q <value>] [--silent |
838
+ --echo | --to-script]
839
+
840
+ FLAGS
841
+ -c, --cabinet=<value> Cabinet the model lives in (resolves a served endpoint to that cabinet's in-cluster
842
+ service DNS).
843
+ -e, --enterpriseCode=<value> Code name identifying the target enterprise.
844
+ -h, --help Show CLI help.
845
+ -m, --model=<value> Handle of the model to view.
846
+ -o, --output=<option> Format in which to render the result.
847
+ <options: text|json|yaml>
848
+ -q, --query=<value> JMESPath expression to reshape the result (see jmespath.org).
849
+ --echo Renders the equivalent non-interactive command for future use before executing.
850
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
851
+ --to-script Renders the equivalent non-interactive command without executing it.
852
+
853
+ DESCRIPTION
854
+ Shows the details of a single provisioned model (served or BYO) by its handle.
855
+
856
+ EXAMPLES
857
+ View a model by handle.
858
+
859
+ $ codiac ai model view -e ben -m qwen3-dev
860
+
861
+ View as JSON.
862
+
863
+ $ codiac ai model view -e ben -m qwen3-dev -o json
864
+
865
+ Just the endpoint.
866
+
867
+ $ codiac ai model view -e ben -m qwen3-dev -q endpoint
868
+
869
+ Non-interactive invocation.
870
+
871
+ $ codiac ai model view -e ben -m qwen3-dev --silent
872
+ ```
873
+
874
+ _See code: [src/commands/ai/model/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/ai/model/view.ts)_
535
875
 
536
876
  ## `codiac asset create`
537
877
 
@@ -652,7 +992,7 @@ EXAMPLES
652
992
  $ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
653
993
  ```
654
994
 
655
- _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/create.ts)_
995
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/create.ts)_
656
996
 
657
997
  ## `codiac asset edit`
658
998
 
@@ -660,8 +1000,8 @@ Changes asset attributes.
660
1000
 
661
1001
  ```
662
1002
  USAGE
663
- $ codiac asset edit [-e <value>] [-c <value>] [--deploy-condition-because <value> --deploy-condition <value>]
664
- [--remove-deploy-condition | ] [--echo | --to-script | [--silent -n <value>]]
1003
+ $ codiac asset edit [-e <value>] [-c <value>] [-r <value>] [--deploy-condition-because <value>
1004
+ --deploy-condition <value>] [--remove-deploy-condition | ] [--echo | --to-script | [--silent -n <value>]]
665
1005
 
666
1006
  FLAGS
667
1007
  -c, --code=<value> The host name to assign this asset in the domain url. eg: 'myasset' in
@@ -671,6 +1011,10 @@ FLAGS
671
1011
  and cannot be modified; this flag is used only for identifying the asset.
672
1012
  -n, --name=<value> The name of the asset to edit. NOTE: The asset name is immutable and cannot be
673
1013
  modified; this flag is used only for identifying the asset.
1014
+ -r, --registry=<value> Re-point this asset at a different container registry, given by its Codiac
1015
+ registry CODE (run `cod imageRegistry list`; NOT the registry url). Re-resolves
1016
+ the asset's embedded registry reference — use this after correcting a registry url
1017
+ so the asset picks up the fix.
674
1018
  --deploy-condition=<value> JSONata expression evaluated at deploy time; when falsy the asset is skipped
675
1019
  rather than deployed (see https://jsonata.org for syntax). Uses the same
676
1020
  expression context as config conditions: cabinet, cluster, environment, and asset
@@ -708,9 +1052,13 @@ EXAMPLES
708
1052
  Remove a deploy condition so the asset always deploys.
709
1053
 
710
1054
  $ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
1055
+
1056
+ Re-point an asset at a corrected registry (by its Codiac code, not its url).
1057
+
1058
+ $ codiac asset edit -e myEnterprise -n my-api --registry devCodiacContainers --silent
711
1059
  ```
712
1060
 
713
- _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/edit.ts)_
1061
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/edit.ts)_
714
1062
 
715
1063
  ## `codiac asset entrypoint`
716
1064
 
@@ -831,7 +1179,7 @@ EXAMPLES
831
1179
  $ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
832
1180
  ```
833
1181
 
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)_
1182
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/entrypoint/delete.ts)_
835
1183
 
836
1184
  ## `codiac asset entrypoint set`
837
1185
 
@@ -900,7 +1248,7 @@ EXAMPLES
900
1248
  --input=/backup/workflows'
901
1249
  ```
902
1250
 
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)_
1251
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/entrypoint/set.ts)_
904
1252
 
905
1253
  ## `codiac asset get [CMD]`
906
1254
 
@@ -1008,7 +1356,7 @@ EXAMPLES
1008
1356
  $ codiac asset list -e myEnterprise --to-script
1009
1357
  ```
1010
1358
 
1011
- _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/list.ts)_
1359
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/list.ts)_
1012
1360
 
1013
1361
  ## `codiac asset mon [CMD]`
1014
1362
 
@@ -1269,7 +1617,7 @@ EXAMPLES
1269
1617
  $ codiac asset obliterate -e main -n my-api
1270
1618
  ```
1271
1619
 
1272
- _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/obliterate.ts)_
1620
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/obliterate.ts)_
1273
1621
 
1274
1622
  ## `codiac asset probe create [CMD]`
1275
1623
 
@@ -1359,7 +1707,7 @@ EXAMPLES
1359
1707
  $ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
1360
1708
  ```
1361
1709
 
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)_
1710
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/probe/create.ts)_
1363
1711
 
1364
1712
  ## `codiac asset probe delete`
1365
1713
 
@@ -1414,7 +1762,7 @@ EXAMPLES
1414
1762
  $ codiac asset probe delete
1415
1763
  ```
1416
1764
 
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)_
1765
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/probe/delete.ts)_
1418
1766
 
1419
1767
  ## `codiac asset probe list`
1420
1768
 
@@ -1466,7 +1814,7 @@ EXAMPLES
1466
1814
  $ codiac asset probe list
1467
1815
  ```
1468
1816
 
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)_
1817
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/probe/list.ts)_
1470
1818
 
1471
1819
  ## `codiac asset recycle`
1472
1820
 
@@ -1506,7 +1854,7 @@ DESCRIPTION
1506
1854
  Deploys a given asset to a given cabinet. Defaults to current version.
1507
1855
  ```
1508
1856
 
1509
- _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/recycle.ts)_
1857
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/recycle.ts)_
1510
1858
 
1511
1859
  ## `codiac asset undeploy`
1512
1860
 
@@ -1550,7 +1898,7 @@ EXAMPLES
1550
1898
  $ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
1551
1899
  ```
1552
1900
 
1553
- _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/undeploy.ts)_
1901
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/undeploy.ts)_
1554
1902
 
1555
1903
  ## `codiac asset view [CMD]`
1556
1904
 
@@ -1606,7 +1954,7 @@ ALIASES
1606
1954
  $ codiac asset get
1607
1955
  ```
1608
1956
 
1609
- _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/view.ts)_
1957
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/view.ts)_
1610
1958
 
1611
1959
  ## `codiac asset vol add [MOUNTPATH]`
1612
1960
 
@@ -1877,7 +2225,7 @@ ALIASES
1877
2225
  $ codiac asset volume add
1878
2226
  ```
1879
2227
 
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)_
2228
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/volume/create.ts)_
1881
2229
 
1882
2230
  ## `codiac asset volume del`
1883
2231
 
@@ -1965,7 +2313,7 @@ EXAMPLES
1965
2313
  $ codiac asset volume delete -e myEnterprise -n myMount --to-script
1966
2314
  ```
1967
2315
 
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)_
2316
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/volume/delete.ts)_
1969
2317
 
1970
2318
  ## `codiac asset volume list`
1971
2319
 
@@ -2014,7 +2362,7 @@ EXAMPLES
2014
2362
  $ codiac asset volume list -e myEnterprise --silent
2015
2363
  ```
2016
2364
 
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)_
2365
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/volume/list.ts)_
2018
2366
 
2019
2367
  ## `codiac asset volumes del`
2020
2368
 
@@ -2181,7 +2529,7 @@ EXAMPLES
2181
2529
  $ codiac asset where -e main -a my-api --silent
2182
2530
  ```
2183
2531
 
2184
- _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/asset/where.ts)_
2532
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/asset/where.ts)_
2185
2533
 
2186
2534
  ## `codiac auth cab allow`
2187
2535
 
@@ -2343,7 +2691,7 @@ EXAMPLES
2343
2691
  $ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
2344
2692
  ```
2345
2693
 
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)_
2694
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/cabinet/allow.ts)_
2347
2695
 
2348
2696
  ## `codiac auth cabinet allowed`
2349
2697
 
@@ -2391,7 +2739,7 @@ EXAMPLES
2391
2739
  $ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
2392
2740
  ```
2393
2741
 
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)_
2742
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/cabinet/allowed.ts)_
2395
2743
 
2396
2744
  ## `codiac auth ent allow`
2397
2745
 
@@ -2582,7 +2930,7 @@ EXAMPLES
2582
2930
  $ codiac auth enterprise allow -r deployer -p none
2583
2931
  ```
2584
2932
 
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)_
2933
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/enterprise/allow.ts)_
2586
2934
 
2587
2935
  ## `codiac auth enterprise allow onEnvironments`
2588
2936
 
@@ -2636,7 +2984,7 @@ EXAMPLES
2636
2984
  $ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
2637
2985
  ```
2638
2986
 
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)_
2987
+ _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2640
2988
 
2641
2989
  ## `codiac auth enterprise allowed`
2642
2990
 
@@ -2677,7 +3025,7 @@ EXAMPLES
2677
3025
  $ codiac auth enterprise allowed --enterprise modeling
2678
3026
  ```
2679
3027
 
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)_
3028
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/enterprise/allowed.ts)_
2681
3029
 
2682
3030
  ## `codiac auth env allowed`
2683
3031
 
@@ -2884,7 +3232,7 @@ EXAMPLES
2884
3232
  $ codiac auth environment allow -e qa -r productmanager -p read
2885
3233
  ```
2886
3234
 
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)_
3235
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/environment/allow.ts)_
2888
3236
 
2889
3237
  ## `codiac auth environment allow onCabinets`
2890
3238
 
@@ -2941,7 +3289,7 @@ EXAMPLES
2941
3289
  $ codiac auth environment allow onCabinets -e qa -r productmanager -p read
2942
3290
  ```
2943
3291
 
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)_
3292
+ _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/environment/allow/onCabinets.ts)_
2945
3293
 
2946
3294
  ## `codiac auth environment allowed`
2947
3295
 
@@ -2986,7 +3334,7 @@ EXAMPLES
2986
3334
  $ codiac auth environment allowed --enterprise modeling -e dev
2987
3335
  ```
2988
3336
 
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)_
3337
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/environment/allowed.ts)_
2990
3338
 
2991
3339
  ## `codiac auth register`
2992
3340
 
@@ -3032,7 +3380,7 @@ EXAMPLES
3032
3380
  $ codiac auth register
3033
3381
  ```
3034
3382
 
3035
- _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/auth/register.ts)_
3383
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/register.ts)_
3036
3384
 
3037
3385
  ## `codiac auth role allowed [NAME]`
3038
3386
 
@@ -3079,7 +3427,7 @@ EXAMPLES
3079
3427
  $ codiac auth role allowed -n deployer -e main
3080
3428
  ```
3081
3429
 
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)_
3430
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/allowed.ts)_
3083
3431
 
3084
3432
  ## `codiac auth role assign`
3085
3433
 
@@ -3111,7 +3459,7 @@ EXAMPLES
3111
3459
  $ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
3112
3460
  ```
3113
3461
 
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)_
3462
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/assign.ts)_
3115
3463
 
3116
3464
  ## `codiac auth role create [NAME]`
3117
3465
 
@@ -3144,7 +3492,7 @@ EXAMPLES
3144
3492
  $ codiac auth role create -n deployer
3145
3493
  ```
3146
3494
 
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)_
3495
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/create.ts)_
3148
3496
 
3149
3497
  ## `codiac auth role delete [NAME]`
3150
3498
 
@@ -3180,7 +3528,7 @@ EXAMPLES
3180
3528
  $ codiac auth role delete --id abc123def456
3181
3529
  ```
3182
3530
 
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)_
3531
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/delete.ts)_
3184
3532
 
3185
3533
  ## `codiac auth role list`
3186
3534
 
@@ -3216,7 +3564,7 @@ EXAMPLES
3216
3564
  $ codiac auth role list -o yaml > roles.yaml
3217
3565
  ```
3218
3566
 
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)_
3567
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/list.ts)_
3220
3568
 
3221
3569
  ## `codiac auth role unassign`
3222
3570
 
@@ -3248,7 +3596,7 @@ EXAMPLES
3248
3596
  $ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
3249
3597
  ```
3250
3598
 
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)_
3599
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/role/unassign.ts)_
3252
3600
 
3253
3601
  ## `codiac auth user invite`
3254
3602
 
@@ -3288,7 +3636,7 @@ EXAMPLES
3288
3636
  $ codiac auth user invite
3289
3637
  ```
3290
3638
 
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)_
3639
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/user/invite.ts)_
3292
3640
 
3293
3641
  ## `codiac auth user list`
3294
3642
 
@@ -3324,7 +3672,7 @@ EXAMPLES
3324
3672
  $ codiac auth user list -o yaml > users.yaml
3325
3673
  ```
3326
3674
 
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)_
3675
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/auth/user/list.ts)_
3328
3676
 
3329
3677
  ## `codiac autocomplete [SHELL]`
3330
3678
 
@@ -3374,7 +3722,7 @@ DESCRIPTION
3374
3722
  Creates a new branch for the parent project and any sourced dependencies.
3375
3723
  ```
3376
3724
 
3377
- _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch.ts)_
3725
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/branch.ts)_
3378
3726
 
3379
3727
  ## `codiac branch current`
3380
3728
 
@@ -3394,7 +3742,7 @@ ALIASES
3394
3742
  $ codiac branches current
3395
3743
  ```
3396
3744
 
3397
- _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch/current.ts)_
3745
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/branch/current.ts)_
3398
3746
 
3399
3747
  ## `codiac branch list`
3400
3748
 
@@ -3416,7 +3764,7 @@ ALIASES
3416
3764
  $ codiac branches list
3417
3765
  ```
3418
3766
 
3419
- _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/branch/list.ts)_
3767
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/branch/list.ts)_
3420
3768
 
3421
3769
  ## `codiac branches current`
3422
3770
 
@@ -3506,7 +3854,7 @@ DESCRIPTION
3506
3854
  Builds the project and the docker container
3507
3855
  ```
3508
3856
 
3509
- _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/build.ts)_
3857
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/build.ts)_
3510
3858
 
3511
3859
  ## `codiac cab attach`
3512
3860
 
@@ -4255,7 +4603,7 @@ EXAMPLES
4255
4603
  prod-cluster-1 --to-script
4256
4604
  ```
4257
4605
 
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)_
4606
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/cluster/attach.ts)_
4259
4607
 
4260
4608
  ## `codiac cabinet contents`
4261
4609
 
@@ -4299,7 +4647,7 @@ EXAMPLES
4299
4647
  $ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
4300
4648
  ```
4301
4649
 
4302
- _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/contents.ts)_
4650
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/contents.ts)_
4303
4651
 
4304
4652
  ## `codiac cabinet create [CABINET]`
4305
4653
 
@@ -4366,7 +4714,7 @@ EXAMPLES
4366
4714
  cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
4367
4715
  ```
4368
4716
 
4369
- _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/create.ts)_
4717
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/create.ts)_
4370
4718
 
4371
4719
  ## `codiac cabinet define [CABINET]`
4372
4720
 
@@ -4428,7 +4776,7 @@ EXAMPLES
4428
4776
  $ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
4429
4777
  ```
4430
4778
 
4431
- _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/define.ts)_
4779
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/define.ts)_
4432
4780
 
4433
4781
  ## `codiac cabinet destroy [CABINET]`
4434
4782
 
@@ -4486,7 +4834,7 @@ EXAMPLES
4486
4834
  --environment dev --silent
4487
4835
  ```
4488
4836
 
4489
- _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/destroy.ts)_
4837
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/destroy.ts)_
4490
4838
 
4491
4839
  ## `codiac cabinet detach [CABINET]`
4492
4840
 
@@ -4543,7 +4891,7 @@ EXAMPLES
4543
4891
  main --environment dev
4544
4892
  ```
4545
4893
 
4546
- _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/detach.ts)_
4894
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/detach.ts)_
4547
4895
 
4548
4896
  ## `codiac cabinet forget [CABINET]`
4549
4897
 
@@ -4598,7 +4946,7 @@ EXAMPLES
4598
4946
  $ codiac cabinet forget --to-script
4599
4947
  ```
4600
4948
 
4601
- _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/forget.ts)_
4949
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/forget.ts)_
4602
4950
 
4603
4951
  ## `codiac cabinet list`
4604
4952
 
@@ -4649,7 +4997,7 @@ EXAMPLES
4649
4997
  $ codiac cabinet list -e myEnterprise --silent
4650
4998
  ```
4651
4999
 
4652
- _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/list.ts)_
5000
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/list.ts)_
4653
5001
 
4654
5002
  ## `codiac cabinet obliterate [CABINET]`
4655
5003
 
@@ -4691,7 +5039,7 @@ ALIASES
4691
5039
  $ codiac infrx cab obliterate
4692
5040
  ```
4693
5041
 
4694
- _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/obliterate.ts)_
5042
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/obliterate.ts)_
4695
5043
 
4696
5044
  ## `codiac cabinet restore`
4697
5045
 
@@ -4758,7 +5106,7 @@ EXAMPLES
4758
5106
  $ codiac cabinet restore --cluster prod-cluster-1 --to-script
4759
5107
  ```
4760
5108
 
4761
- _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cabinet/restore.ts)_
5109
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cabinet/restore.ts)_
4762
5110
 
4763
5111
  ## `codiac cfg add`
4764
5112
 
@@ -5057,7 +5405,7 @@ DESCRIPTION
5057
5405
  Applies settings to the Codiac CLI itself (scoped to the local machine).
5058
5406
  ```
5059
5407
 
5060
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cli.ts)_
5408
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cli.ts)_
5061
5409
 
5062
5410
  ## `codiac cluster agent configure [CLUSTER]`
5063
5411
 
@@ -5125,7 +5473,7 @@ EXAMPLES
5125
5473
  $ codiac cluster agent configure my-cluster --to-script
5126
5474
  ```
5127
5475
 
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)_
5476
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/agent/configure.ts)_
5129
5477
 
5130
5478
  ## `codiac cluster agent install [CLUSTER]`
5131
5479
 
@@ -5181,7 +5529,7 @@ EXAMPLES
5181
5529
  $ codiac cluster agent install my-cluster --to-script
5182
5530
  ```
5183
5531
 
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)_
5532
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/agent/install.ts)_
5185
5533
 
5186
5534
  ## `codiac cluster agent uninstall [CLUSTER]`
5187
5535
 
@@ -5229,7 +5577,7 @@ EXAMPLES
5229
5577
  $ codiac cluster agent uninstall my-cluster --to-script
5230
5578
  ```
5231
5579
 
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)_
5580
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/agent/uninstall.ts)_
5233
5581
 
5234
5582
  ## `codiac cluster bootstrap [NAME]`
5235
5583
 
@@ -5292,7 +5640,7 @@ EXAMPLES
5292
5640
  $ codiac cluster bootstrap my-cluster --to-script
5293
5641
  ```
5294
5642
 
5295
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/bootstrap.ts)_
5643
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/bootstrap.ts)_
5296
5644
 
5297
5645
  ## `codiac cluster capture`
5298
5646
 
@@ -5377,7 +5725,7 @@ EXAMPLES
5377
5725
  $ codiac cluster connect my-fav-cluster
5378
5726
  ```
5379
5727
 
5380
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/connect.ts)_
5728
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/connect.ts)_
5381
5729
 
5382
5730
  ## `codiac cluster contents`
5383
5731
 
@@ -6042,7 +6390,7 @@ EXAMPLES
6042
6390
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
6043
6391
  ```
6044
6392
 
6045
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/install.ts)_
6393
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/install.ts)_
6046
6394
 
6047
6395
  ## `codiac cluster journal [CLUSTER]`
6048
6396
 
@@ -6331,7 +6679,7 @@ EXAMPLES
6331
6679
  $ codiac cluster stack capture my-fav-cluster
6332
6680
  ```
6333
6681
 
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)_
6682
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/stack/capture.ts)_
6335
6683
 
6336
6684
  ## `codiac cluster stack install [CLUSTER]`
6337
6685
 
@@ -6383,7 +6731,7 @@ EXAMPLES
6383
6731
  $ codiac cluster stack install my-cluster --to-script
6384
6732
  ```
6385
6733
 
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)_
6734
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/stack/install.ts)_
6387
6735
 
6388
6736
  ## `codiac cluster stack list`
6389
6737
 
@@ -6549,7 +6897,7 @@ EXAMPLES
6549
6897
  $ codiac cluster start my-fav-cluster
6550
6898
  ```
6551
6899
 
6552
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/start.ts)_
6900
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/start.ts)_
6553
6901
 
6554
6902
  ## `codiac cluster stop [CLUSTER]`
6555
6903
 
@@ -6586,7 +6934,7 @@ EXAMPLES
6586
6934
  $ codiac cluster start my-fav-cluster
6587
6935
  ```
6588
6936
 
6589
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/cluster/stop.ts)_
6937
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/cluster/stop.ts)_
6590
6938
 
6591
6939
  ## `codiac cluster uninstall`
6592
6940
 
@@ -6648,7 +6996,7 @@ DESCRIPTION
6648
6996
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6649
6997
  ```
6650
6998
 
6651
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/commit.ts)_
6999
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/commit.ts)_
6652
7000
 
6653
7001
  ## `codiac config add`
6654
7002
 
@@ -6800,7 +7148,7 @@ EXAMPLES
6800
7148
  --value-type string
6801
7149
  ```
6802
7150
 
6803
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/add.ts)_
7151
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/add.ts)_
6804
7152
 
6805
7153
  ## `codiac config delete [SETTING]`
6806
7154
 
@@ -6869,7 +7217,7 @@ ALIASES
6869
7217
  $ codiac cfg delete
6870
7218
  ```
6871
7219
 
6872
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/delete.ts)_
7220
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/delete.ts)_
6873
7221
 
6874
7222
  ## `codiac config deploy`
6875
7223
 
@@ -6910,7 +7258,7 @@ EXAMPLES
6910
7258
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6911
7259
  ```
6912
7260
 
6913
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/deploy.ts)_
7261
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/deploy.ts)_
6914
7262
 
6915
7263
  ## `codiac config import`
6916
7264
 
@@ -6971,7 +7319,7 @@ EXAMPLES
6971
7319
  $ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
6972
7320
  ```
6973
7321
 
6974
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/import.ts)_
7322
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/import.ts)_
6975
7323
 
6976
7324
  ## `codiac config preview [SETTING]`
6977
7325
 
@@ -7254,7 +7602,7 @@ DESCRIPTION
7254
7602
  Shows the list of clusters.
7255
7603
  ```
7256
7604
 
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)_
7605
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/settings/get.ts)_
7258
7606
 
7259
7607
  ## `codiac config view [SETTING]`
7260
7608
 
@@ -7319,7 +7667,7 @@ EXAMPLES
7319
7667
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
7320
7668
  ```
7321
7669
 
7322
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/config/view.ts)_
7670
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/config/view.ts)_
7323
7671
 
7324
7672
  ## `codiac csp creds list`
7325
7673
 
@@ -7367,7 +7715,7 @@ EXAMPLES
7367
7715
  $ codiac csp creds list
7368
7716
  ```
7369
7717
 
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)_
7718
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/csp/creds/list.ts)_
7371
7719
 
7372
7720
  ## `codiac csp login [PROVIDER]`
7373
7721
 
@@ -7445,7 +7793,7 @@ EXAMPLES
7445
7793
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
7446
7794
  ```
7447
7795
 
7448
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/csp/login.ts)_
7796
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/csp/login.ts)_
7449
7797
 
7450
7798
  ## `codiac csp logout [PROVIDER]`
7451
7799
 
@@ -7492,7 +7840,7 @@ EXAMPLES
7492
7840
  $ codiac csp logout azure --to-script
7493
7841
  ```
7494
7842
 
7495
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/csp/logout.ts)_
7843
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/csp/logout.ts)_
7496
7844
 
7497
7845
  ## `codiac dep [NAME]`
7498
7846
 
@@ -7513,7 +7861,7 @@ DESCRIPTION
7513
7861
  Installs a package into current project.
7514
7862
  ```
7515
7863
 
7516
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep.ts)_
7864
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep.ts)_
7517
7865
 
7518
7866
  ## `codiac dep create [URL]`
7519
7867
 
@@ -7537,7 +7885,7 @@ DESCRIPTION
7537
7885
  package version is used.
7538
7886
  ```
7539
7887
 
7540
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/create.ts)_
7888
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/create.ts)_
7541
7889
 
7542
7890
  ## `codiac dep install`
7543
7891
 
@@ -7554,7 +7902,7 @@ DESCRIPTION
7554
7902
  installs any missing dependency packages into the local project folder.
7555
7903
  ```
7556
7904
 
7557
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/install.ts)_
7905
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/install.ts)_
7558
7906
 
7559
7907
  ## `codiac dep list`
7560
7908
 
@@ -7571,7 +7919,7 @@ DESCRIPTION
7571
7919
  Shows the dependencies for the project.
7572
7920
  ```
7573
7921
 
7574
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/list.ts)_
7922
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/list.ts)_
7575
7923
 
7576
7924
  ## `codiac dep remove [NAME]`
7577
7925
 
@@ -7594,7 +7942,7 @@ DESCRIPTION
7594
7942
  Removes a dependency from the project.
7595
7943
  ```
7596
7944
 
7597
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/remove.ts)_
7945
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/remove.ts)_
7598
7946
 
7599
7947
  ## `codiac dep source [NAME]`
7600
7948
 
@@ -7620,7 +7968,7 @@ ALIASES
7620
7968
  $ codiac dep src
7621
7969
  ```
7622
7970
 
7623
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/source.ts)_
7971
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/source.ts)_
7624
7972
 
7625
7973
  ## `codiac dep src [NAME]`
7626
7974
 
@@ -7664,7 +8012,7 @@ DESCRIPTION
7664
8012
  Publishes the dependency in its current state and upgrades to it in the main project.
7665
8013
  ```
7666
8014
 
7667
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/syncup.ts)_
8015
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/syncup.ts)_
7668
8016
 
7669
8017
  ## `codiac dep unsource [NAME]`
7670
8018
 
@@ -7692,7 +8040,7 @@ ALIASES
7692
8040
  $ codiac dep unsrc
7693
8041
  ```
7694
8042
 
7695
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/unsource.ts)_
8043
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/unsource.ts)_
7696
8044
 
7697
8045
  ## `codiac dep unsrc [NAME]`
7698
8046
 
@@ -7739,7 +8087,7 @@ DESCRIPTION
7739
8087
  describe the command here
7740
8088
  ```
7741
8089
 
7742
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/dep/upgrade.ts)_
8090
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/dep/upgrade.ts)_
7743
8091
 
7744
8092
  ## `codiac deploy`
7745
8093
 
@@ -7792,7 +8140,7 @@ EXAMPLES
7792
8140
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7793
8141
  ```
7794
8142
 
7795
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/deploy.ts)_
8143
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/deploy.ts)_
7796
8144
 
7797
8145
  ## `codiac domain map [DOMAIN]`
7798
8146
 
@@ -7948,7 +8296,7 @@ EXAMPLES
7948
8296
  cod enterprise create my-enterprise-code --silent
7949
8297
  ```
7950
8298
 
7951
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/enterprise/create.ts)_
8299
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/enterprise/create.ts)_
7952
8300
 
7953
8301
  ## `codiac enterprise list`
7954
8302
 
@@ -8003,7 +8351,7 @@ EXAMPLES
8003
8351
  $ codiac enterprise list --to-script
8004
8352
  ```
8005
8353
 
8006
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/enterprise/list.ts)_
8354
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/enterprise/list.ts)_
8007
8355
 
8008
8356
  ## `codiac env add [SETTING]`
8009
8357
 
@@ -8053,7 +8401,7 @@ EXAMPLES
8053
8401
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
8054
8402
  ```
8055
8403
 
8056
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/env/add.ts)_
8404
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/env/add.ts)_
8057
8405
 
8058
8406
  ## `codiac enviro cluster attach`
8059
8407
 
@@ -8356,7 +8704,7 @@ ALIASES
8356
8704
  $ codiac infrx enviro cluster attach
8357
8705
  ```
8358
8706
 
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)_
8707
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/environment/cluster/attach.ts)_
8360
8708
 
8361
8709
  ## `codiac environment cluster detach`
8362
8710
 
@@ -8402,7 +8750,7 @@ ALIASES
8402
8750
  $ codiac infrx enviro cluster detach
8403
8751
  ```
8404
8752
 
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)_
8753
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/environment/cluster/detach.ts)_
8406
8754
 
8407
8755
  ## `codiac environment create [NAME]`
8408
8756
 
@@ -8465,7 +8813,7 @@ EXAMPLES
8465
8813
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
8466
8814
  ```
8467
8815
 
8468
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/create.ts)_
8816
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/environment/create.ts)_
8469
8817
 
8470
8818
  ## `codiac environment delete [NAME]`
8471
8819
 
@@ -8526,7 +8874,7 @@ EXAMPLES
8526
8874
  $ codiac environment delete dev --enterprise main --to-script
8527
8875
  ```
8528
8876
 
8529
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/delete.ts)_
8877
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/environment/delete.ts)_
8530
8878
 
8531
8879
  ## `codiac environment list`
8532
8880
 
@@ -8577,7 +8925,7 @@ EXAMPLES
8577
8925
  $ codiac environment list -e myEnterprise --silent
8578
8926
  ```
8579
8927
 
8580
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/environment/list.ts)_
8928
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/environment/list.ts)_
8581
8929
 
8582
8930
  ## `codiac fileshare capture`
8583
8931
 
@@ -8661,7 +9009,7 @@ ALIASES
8661
9009
  $ codiac fileshare capture
8662
9010
  ```
8663
9011
 
8664
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/capture.ts)_
9012
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/filestore/capture.ts)_
8665
9013
 
8666
9014
  ## `codiac filestore forget`
8667
9015
 
@@ -8708,7 +9056,7 @@ EXAMPLES
8708
9056
  $ codiac filestore forget
8709
9057
  ```
8710
9058
 
8711
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/forget.ts)_
9059
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/filestore/forget.ts)_
8712
9060
 
8713
9061
  ## `codiac filestore list`
8714
9062
 
@@ -8754,7 +9102,7 @@ EXAMPLES
8754
9102
  $ codiac filestore list
8755
9103
  ```
8756
9104
 
8757
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/filestore/list.ts)_
9105
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/filestore/list.ts)_
8758
9106
 
8759
9107
  ## `codiac help [COMMANDS]`
8760
9108
 
@@ -8840,7 +9188,7 @@ EXAMPLES
8840
9188
  $ codiac host delete
8841
9189
  ```
8842
9190
 
8843
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/delete.ts)_
9191
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/host/delete.ts)_
8844
9192
 
8845
9193
  ## `codiac host list [DOMAIN]`
8846
9194
 
@@ -8884,7 +9232,7 @@ EXAMPLES
8884
9232
  $ codiac host list
8885
9233
  ```
8886
9234
 
8887
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/list.ts)_
9235
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/host/list.ts)_
8888
9236
 
8889
9237
  ## `codiac host map [DOMAIN]`
8890
9238
 
@@ -8938,7 +9286,7 @@ EXAMPLES
8938
9286
  $ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
8939
9287
  ```
8940
9288
 
8941
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/map.ts)_
9289
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/host/map.ts)_
8942
9290
 
8943
9291
  ## `codiac host view [DOMAIN]`
8944
9292
 
@@ -8983,7 +9331,7 @@ EXAMPLES
8983
9331
  $ codiac host view
8984
9332
  ```
8985
9333
 
8986
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/host/view.ts)_
9334
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/host/view.ts)_
8987
9335
 
8988
9336
  ## `codiac identify [TOKENNAME]`
8989
9337
 
@@ -9055,7 +9403,7 @@ ALIASES
9055
9403
  $ codiac token
9056
9404
  ```
9057
9405
 
9058
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity.ts)_
9406
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/identity.ts)_
9059
9407
 
9060
9408
  ## `codiac identity delete [NAME]`
9061
9409
 
@@ -9080,7 +9428,7 @@ ALIASES
9080
9428
  $ codiac token remove
9081
9429
  ```
9082
9430
 
9083
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity/delete.ts)_
9431
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/identity/delete.ts)_
9084
9432
 
9085
9433
  ## `codiac identity list`
9086
9434
 
@@ -9102,7 +9450,7 @@ ALIASES
9102
9450
  $ codiac token list
9103
9451
  ```
9104
9452
 
9105
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/identity/list.ts)_
9453
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/identity/list.ts)_
9106
9454
 
9107
9455
  ## `codiac identity remove [NAME]`
9108
9456
 
@@ -9425,7 +9773,50 @@ DESCRIPTION
9425
9773
  Saves a reference to an existing container registry.
9426
9774
  ```
9427
9775
 
9428
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/capture.ts)_
9776
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/capture.ts)_
9777
+
9778
+ ## `codiac imageRegistry edit`
9779
+
9780
+ Changes the mutable attributes (url, private/public) of an existing container registry reference. The code, provider, and type are immutable.
9781
+
9782
+ ```
9783
+ USAGE
9784
+ $ codiac imageRegistry edit [-h] [-r <value>] [-u <value>] [--private] [--silent | --echo | --to-script]
9785
+
9786
+ FLAGS
9787
+ -h, --help Show CLI help.
9788
+ -r, --registry=<value> The Codiac code identifying the registry to edit (NOT its url). Run `cod imageRegistry list`
9789
+ to see codes.
9790
+ -u, --url=<value> The corrected container registry url.
9791
+ --echo Renders the equivalent non-interactive command for future use before executing.
9792
+ --[no-]private Whether pulling from this registry requires authentication. Pass --private or --no-private
9793
+ only to change it; omit to leave it unchanged.
9794
+ --silent Executes without any user interaction; fails on missing or invalid arguments.
9795
+ --to-script Renders the equivalent non-interactive command without executing it.
9796
+
9797
+ DESCRIPTION
9798
+ Changes the mutable attributes (url, private/public) of an existing container registry reference. The code, provider,
9799
+ and type are immutable.
9800
+
9801
+ EXAMPLES
9802
+ Edit a registry interactively (select it, then change its url).
9803
+
9804
+ $ codiac imageRegistry edit
9805
+
9806
+ Correct a registry's url (identified by its Codiac code, not its url).
9807
+
9808
+ $ codiac imageRegistry edit --registry devCodiacContainers --url newname.azurecr.io --silent
9809
+
9810
+ Flip a registry to public (no pull authentication).
9811
+
9812
+ $ codiac imageRegistry edit --registry 'Other|ghcr' --no-private --silent
9813
+
9814
+ Render the equivalent silent command without executing it.
9815
+
9816
+ $ codiac imageRegistry edit --registry devCodiacContainers --url newname.azurecr.io --to-script
9817
+ ```
9818
+
9819
+ _See code: [src/commands/imageRegistry/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/edit.ts)_
9429
9820
 
9430
9821
  ## `codiac imageRegistry forget`
9431
9822
 
@@ -9446,7 +9837,7 @@ DESCRIPTION
9446
9837
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
9447
9838
  ```
9448
9839
 
9449
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/forget.ts)_
9840
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/forget.ts)_
9450
9841
 
9451
9842
  ## `codiac imageRegistry list`
9452
9843
 
@@ -9488,7 +9879,7 @@ EXAMPLES
9488
9879
  $ codiac imageRegistry list -o yaml > registries.yaml
9489
9880
  ```
9490
9881
 
9491
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/imageRegistry/list.ts)_
9882
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/list.ts)_
9492
9883
 
9493
9884
  ## `codiac imageRegistry pullSecret set`
9494
9885
 
@@ -9524,7 +9915,7 @@ ALIASES
9524
9915
  $ codiac pullsecret
9525
9916
  ```
9526
9917
 
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)_
9918
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/pullSecret/set.ts)_
9528
9919
 
9529
9920
  ## `codiac imageRegistry pullSecret unset`
9530
9921
 
@@ -9551,7 +9942,7 @@ ALIASES
9551
9942
  $ codiac pullsecret unset
9552
9943
  ```
9553
9944
 
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)_
9945
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/imageRegistry/pullSecret/unset.ts)_
9555
9946
 
9556
9947
  ## `codiac images add [IMAGENAME]`
9557
9948
 
@@ -9612,7 +10003,7 @@ EXAMPLES
9612
10003
  $ codiac images add your-company/your-image --to-script
9613
10004
  ```
9614
10005
 
9615
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/add.ts)_
10006
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/add.ts)_
9616
10007
 
9617
10008
  ## `codiac images list`
9618
10009
 
@@ -9635,7 +10026,7 @@ ALIASES
9635
10026
  $ codiac img list
9636
10027
  ```
9637
10028
 
9638
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/list.ts)_
10029
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/list.ts)_
9639
10030
 
9640
10031
  ## `codiac images patch IMAGENAME`
9641
10032
 
@@ -9665,7 +10056,7 @@ ALIASES
9665
10056
  $ codiac img patch
9666
10057
  ```
9667
10058
 
9668
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/patch.ts)_
10059
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/patch.ts)_
9669
10060
 
9670
10061
  ## `codiac images remove IMAGENAME`
9671
10062
 
@@ -9691,7 +10082,7 @@ ALIASES
9691
10082
  $ codiac img delete
9692
10083
  ```
9693
10084
 
9694
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/remove.ts)_
10085
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/remove.ts)_
9695
10086
 
9696
10087
  ## `codiac images version NAME`
9697
10088
 
@@ -9717,7 +10108,7 @@ ALIASES
9717
10108
  $ codiac img version get
9718
10109
  ```
9719
10110
 
9720
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/images/version.ts)_
10111
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/version.ts)_
9721
10112
 
9722
10113
  ## `codiac images version bump NAME`
9723
10114
 
@@ -9750,7 +10141,7 @@ ALIASES
9750
10141
  $ codiac img version bump
9751
10142
  ```
9752
10143
 
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)_
10144
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/images/version/bump.ts)_
9754
10145
 
9755
10146
  ## `codiac img [IMAGENAME]`
9756
10147
 
@@ -10066,7 +10457,7 @@ EXAMPLES
10066
10457
  $ 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
10458
  ```
10068
10459
 
10069
- _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/import/cluster.ts)_
10460
+ _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/import/cluster.ts)_
10070
10461
 
10071
10462
  ## `codiac infrx cab create [CABINET]`
10072
10463
 
@@ -10911,7 +11302,7 @@ DESCRIPTION
10911
11302
  Declares the given folder as a project root
10912
11303
  ```
10913
11304
 
10914
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/init.ts)_
11305
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/init.ts)_
10915
11306
 
10916
11307
  ## `codiac kit create`
10917
11308
 
@@ -10954,7 +11345,7 @@ EXAMPLES
10954
11345
  $ codiac kit create -e myEnterprise -a myApi --to-script
10955
11346
  ```
10956
11347
 
10957
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/kit/create.ts)_
11348
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/kit/create.ts)_
10958
11349
 
10959
11350
  ## `codiac login`
10960
11351
 
@@ -11013,7 +11404,7 @@ EXAMPLES
11013
11404
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
11014
11405
  ```
11015
11406
 
11016
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/login.ts)_
11407
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/login.ts)_
11017
11408
 
11018
11409
  ## `codiac logout`
11019
11410
 
@@ -11046,7 +11437,7 @@ EXAMPLES
11046
11437
  $ codiac logout --to-script
11047
11438
  ```
11048
11439
 
11049
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/logout.ts)_
11440
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/logout.ts)_
11050
11441
 
11051
11442
  ## `codiac merge [BRANCH]`
11052
11443
 
@@ -11067,7 +11458,7 @@ DESCRIPTION
11067
11458
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
11068
11459
  ```
11069
11460
 
11070
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/merge.ts)_
11461
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/merge.ts)_
11071
11462
 
11072
11463
  ## `codiac noc cluster capture`
11073
11464
 
@@ -11119,7 +11510,7 @@ EXAMPLES
11119
11510
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
11120
11511
  ```
11121
11512
 
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)_
11513
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/capture.ts)_
11123
11514
 
11124
11515
  ## `codiac noc cluster create [NAME]`
11125
11516
 
@@ -11209,7 +11600,7 @@ FLAG DESCRIPTIONS
11209
11600
  initialization is always skipped in that mode.
11210
11601
  ```
11211
11602
 
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)_
11603
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/create.ts)_
11213
11604
 
11214
11605
  ## `codiac noc cluster credentials-set [NAME]`
11215
11606
 
@@ -11264,7 +11655,7 @@ EXAMPLES
11264
11655
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
11265
11656
  ```
11266
11657
 
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)_
11658
+ _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/credentials-set.ts)_
11268
11659
 
11269
11660
  ## `codiac noc cluster define [NAME]`
11270
11661
 
@@ -11338,7 +11729,7 @@ EXAMPLES
11338
11729
  $ codiac noc cluster define my-cluster --to-script
11339
11730
  ```
11340
11731
 
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)_
11732
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/define.ts)_
11342
11733
 
11343
11734
  ## `codiac noc cluster deinit`
11344
11735
 
@@ -11378,7 +11769,7 @@ EXAMPLES
11378
11769
  $ codiac noc cluster deinit -n my-cluster --to-script
11379
11770
  ```
11380
11771
 
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)_
11772
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/deinit.ts)_
11382
11773
 
11383
11774
  ## `codiac noc cluster destroy [NAME]`
11384
11775
 
@@ -11412,7 +11803,7 @@ ALIASES
11412
11803
  $ codiac cluster destroy
11413
11804
  ```
11414
11805
 
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)_
11806
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/destroy.ts)_
11416
11807
 
11417
11808
  ## `codiac noc cluster forget`
11418
11809
 
@@ -11463,7 +11854,7 @@ EXAMPLES
11463
11854
  $ codiac noc cluster forget --running
11464
11855
  ```
11465
11856
 
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)_
11857
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/forget.ts)_
11467
11858
 
11468
11859
  ## `codiac noc cluster grant`
11469
11860
 
@@ -11501,7 +11892,7 @@ EXAMPLES
11501
11892
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
11502
11893
  ```
11503
11894
 
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)_
11895
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/grant.ts)_
11505
11896
 
11506
11897
  ## `codiac noc cluster init`
11507
11898
 
@@ -11547,7 +11938,7 @@ EXAMPLES
11547
11938
  $ codiac noc cluster init -n my-cluster --to-script
11548
11939
  ```
11549
11940
 
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)_
11941
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/init.ts)_
11551
11942
 
11552
11943
  ## `codiac noc cluster journal [CLUSTER]`
11553
11944
 
@@ -11596,7 +11987,7 @@ EXAMPLES
11596
11987
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
11597
11988
  ```
11598
11989
 
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)_
11990
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/journal.ts)_
11600
11991
 
11601
11992
  ## `codiac noc cluster list`
11602
11993
 
@@ -11657,7 +12048,7 @@ EXAMPLES
11657
12048
  $ codiac noc cluster list -e myEnterprise --to-script
11658
12049
  ```
11659
12050
 
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)_
12051
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/list.ts)_
11661
12052
 
11662
12053
  ## `codiac noc cluster restore [NAME]`
11663
12054
 
@@ -11717,7 +12108,7 @@ EXAMPLES
11717
12108
  $ codiac noc cluster restore prod-cluster-1 --to-script
11718
12109
  ```
11719
12110
 
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)_
12111
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/noc/cluster/restore.ts)_
11721
12112
 
11722
12113
  ## `codiac pkg add [DEFINITIONFILE]`
11723
12114
 
@@ -11751,7 +12142,7 @@ DESCRIPTION
11751
12142
  Configures a package to be built and published by the project.
11752
12143
  ```
11753
12144
 
11754
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/add.ts)_
12145
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pkg/add.ts)_
11755
12146
 
11756
12147
  ## `codiac pkg delete [PACKAGENAME]`
11757
12148
 
@@ -11789,7 +12180,7 @@ DESCRIPTION
11789
12180
  Renders the list of packages that are configured as project exports.
11790
12181
  ```
11791
12182
 
11792
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/list.ts)_
12183
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pkg/list.ts)_
11793
12184
 
11794
12185
  ## `codiac pkg patch PACKAGENAME`
11795
12186
 
@@ -11815,7 +12206,7 @@ DESCRIPTION
11815
12206
  registryUrl and/or environment.
11816
12207
  ```
11817
12208
 
11818
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/patch.ts)_
12209
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pkg/patch.ts)_
11819
12210
 
11820
12211
  ## `codiac pkg remove [PACKAGENAME]`
11821
12212
 
@@ -11838,7 +12229,7 @@ ALIASES
11838
12229
  $ codiac pkg delete
11839
12230
  ```
11840
12231
 
11841
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pkg/remove.ts)_
12232
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pkg/remove.ts)_
11842
12233
 
11843
12234
  ## `codiac portal`
11844
12235
 
@@ -11871,7 +12262,7 @@ EXAMPLES
11871
12262
  $ codiac portal --to-script
11872
12263
  ```
11873
12264
 
11874
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/portal.ts)_
12265
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/portal.ts)_
11875
12266
 
11876
12267
  ## `codiac probe create [CMD]`
11877
12268
 
@@ -11992,7 +12383,7 @@ DESCRIPTION
11992
12383
  Publishes the exports (packages and images) declared in the ProjectConfig.
11993
12384
  ```
11994
12385
 
11995
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/publish.ts)_
12386
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/publish.ts)_
11996
12387
 
11997
12388
  ## `codiac pull [NAME]`
11998
12389
 
@@ -12016,7 +12407,7 @@ DESCRIPTION
12016
12407
  Pulls all commits from upstream to local.
12017
12408
  ```
12018
12409
 
12019
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pull.ts)_
12410
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pull.ts)_
12020
12411
 
12021
12412
  ## `codiac pullsecret`
12022
12413
 
@@ -12099,7 +12490,7 @@ DESCRIPTION
12099
12490
  Pushes all local commits upstream.
12100
12491
  ```
12101
12492
 
12102
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/push.ts)_
12493
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/push.ts)_
12103
12494
 
12104
12495
  ## `codiac pvc create`
12105
12496
 
@@ -12183,7 +12574,7 @@ EXAMPLES
12183
12574
  $ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
12184
12575
  ```
12185
12576
 
12186
- _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/create.ts)_
12577
+ _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pvc/create.ts)_
12187
12578
 
12188
12579
  ## `codiac pvc delete`
12189
12580
 
@@ -12230,7 +12621,7 @@ EXAMPLES
12230
12621
  $ codiac pvc delete --id <fileStoreDefId> --silent
12231
12622
  ```
12232
12623
 
12233
- _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/delete.ts)_
12624
+ _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pvc/delete.ts)_
12234
12625
 
12235
12626
  ## `codiac pvc get`
12236
12627
 
@@ -12271,7 +12662,7 @@ EXAMPLES
12271
12662
  $ codiac pvc get --name app-documents-share --silent -o json
12272
12663
  ```
12273
12664
 
12274
- _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/get.ts)_
12665
+ _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pvc/get.ts)_
12275
12666
 
12276
12667
  ## `codiac pvc list`
12277
12668
 
@@ -12314,7 +12705,7 @@ EXAMPLES
12314
12705
  $ codiac pvc list -o yaml
12315
12706
  ```
12316
12707
 
12317
- _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/pvc/list.ts)_
12708
+ _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/pvc/list.ts)_
12318
12709
 
12319
12710
  ## `codiac relay-version`
12320
12711
 
@@ -12331,7 +12722,7 @@ EXAMPLES
12331
12722
  $ codiac relay-version
12332
12723
  ```
12333
12724
 
12334
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/relay-version.ts)_
12725
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/relay-version.ts)_
12335
12726
 
12336
12727
  ## `codiac run`
12337
12728
 
@@ -12373,7 +12764,7 @@ DESCRIPTION
12373
12764
  Runs the latest build of the api container locally.
12374
12765
  ```
12375
12766
 
12376
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/run.ts)_
12767
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/run.ts)_
12377
12768
 
12378
12769
  ## `codiac secretStore`
12379
12770
 
@@ -12491,7 +12882,7 @@ EXAMPLES
12491
12882
  $ codiac secretStore capture --echo
12492
12883
  ```
12493
12884
 
12494
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/capture.ts)_
12885
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/secretStore/capture.ts)_
12495
12886
 
12496
12887
  ## `codiac secretStore forget`
12497
12888
 
@@ -12512,7 +12903,7 @@ DESCRIPTION
12512
12903
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
12513
12904
  ```
12514
12905
 
12515
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/forget.ts)_
12906
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/secretStore/forget.ts)_
12516
12907
 
12517
12908
  ## `codiac secretStore list`
12518
12909
 
@@ -12557,7 +12948,7 @@ EXAMPLES
12557
12948
  $ codiac secretStore list
12558
12949
  ```
12559
12950
 
12560
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/secretStore/list.ts)_
12951
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/secretStore/list.ts)_
12561
12952
 
12562
12953
  ## `codiac shell init`
12563
12954
 
@@ -12595,7 +12986,7 @@ EXAMPLES
12595
12986
  Invoke-Expression (codiac shell init --shell powershell)
12596
12987
  ```
12597
12988
 
12598
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/shell/init.ts)_
12989
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/shell/init.ts)_
12599
12990
 
12600
12991
  ## `codiac skill install`
12601
12992
 
@@ -12630,7 +13021,7 @@ EXAMPLES
12630
13021
  $ codiac skill install --force
12631
13022
  ```
12632
13023
 
12633
- _See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/install.ts)_
13024
+ _See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/skill/install.ts)_
12634
13025
 
12635
13026
  ## `codiac skill path`
12636
13027
 
@@ -12653,7 +13044,7 @@ EXAMPLES
12653
13044
  $ codiac skill path
12654
13045
  ```
12655
13046
 
12656
- _See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/path.ts)_
13047
+ _See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/skill/path.ts)_
12657
13048
 
12658
13049
  ## `codiac skill show`
12659
13050
 
@@ -12692,7 +13083,7 @@ EXAMPLES
12692
13083
  $ codiac skill show --list
12693
13084
  ```
12694
13085
 
12695
- _See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/skill/show.ts)_
13086
+ _See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/skill/show.ts)_
12696
13087
 
12697
13088
  ## `codiac snapshot deploy`
12698
13089
 
@@ -12720,7 +13111,7 @@ DESCRIPTION
12720
13111
  Deploys all assets in a snapshot to a target cabinet.
12721
13112
  ```
12722
13113
 
12723
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/deploy.ts)_
13114
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/snapshot/deploy.ts)_
12724
13115
 
12725
13116
  ## `codiac snapshot list`
12726
13117
 
@@ -12769,7 +13160,7 @@ EXAMPLES
12769
13160
  $ codiac snapshot list -e myEnterprise --silent
12770
13161
  ```
12771
13162
 
12772
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/list.ts)_
13163
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/snapshot/list.ts)_
12773
13164
 
12774
13165
  ## `codiac snapshot tag`
12775
13166
 
@@ -12812,7 +13203,7 @@ EXAMPLES
12812
13203
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
12813
13204
  ```
12814
13205
 
12815
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/tag.ts)_
13206
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/snapshot/tag.ts)_
12816
13207
 
12817
13208
  ## `codiac snapshot untag`
12818
13209
 
@@ -12855,7 +13246,7 @@ EXAMPLES
12855
13246
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
12856
13247
  ```
12857
13248
 
12858
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/snapshot/untag.ts)_
13249
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/snapshot/untag.ts)_
12859
13250
 
12860
13251
  ## `codiac stage [FILES]`
12861
13252
 
@@ -12877,7 +13268,7 @@ DESCRIPTION
12877
13268
  Flags files to be included in the next commit.
12878
13269
  ```
12879
13270
 
12880
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stage.ts)_
13271
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/stage.ts)_
12881
13272
 
12882
13273
  ## `codiac stash [FILE]`
12883
13274
 
@@ -12899,7 +13290,7 @@ DESCRIPTION
12899
13290
  describe the command here
12900
13291
  ```
12901
13292
 
12902
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stash.ts)_
13293
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/stash.ts)_
12903
13294
 
12904
13295
  ## `codiac status`
12905
13296
 
@@ -12918,7 +13309,7 @@ DESCRIPTION
12918
13309
  Shows the current uncommitted changes in the current branch.
12919
13310
  ```
12920
13311
 
12921
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/status.ts)_
13312
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/status.ts)_
12922
13313
 
12923
13314
  ## `codiac stop`
12924
13315
 
@@ -12936,7 +13327,7 @@ DESCRIPTION
12936
13327
  Stops the running container for this project
12937
13328
  ```
12938
13329
 
12939
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/stop.ts)_
13330
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/stop.ts)_
12940
13331
 
12941
13332
  ## `codiac switch [NAME]`
12942
13333
 
@@ -12956,7 +13347,7 @@ DESCRIPTION
12956
13347
  Changes branch on the main project and any sourced dependencies.
12957
13348
  ```
12958
13349
 
12959
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/switch.ts)_
13350
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/switch.ts)_
12960
13351
 
12961
13352
  ## `codiac sync [NAME]`
12962
13353
 
@@ -12981,7 +13372,7 @@ DESCRIPTION
12981
13372
  Merges the given branch into the current branch.
12982
13373
  ```
12983
13374
 
12984
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/sync.ts)_
13375
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/sync.ts)_
12985
13376
 
12986
13377
  ## `codiac tenant create [NAME]`
12987
13378
 
@@ -13024,7 +13415,7 @@ EXAMPLES
13024
13415
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
13025
13416
  ```
13026
13417
 
13027
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/tenant/create.ts)_
13418
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/tenant/create.ts)_
13028
13419
 
13029
13420
  ## `codiac tenant switch [CODE]`
13030
13421
 
@@ -13064,7 +13455,7 @@ EXAMPLES
13064
13455
  $ codiac tenant switch my-tenant-code --to-script
13065
13456
  ```
13066
13457
 
13067
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/tenant/switch.ts)_
13458
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/tenant/switch.ts)_
13068
13459
 
13069
13460
  ## `codiac token [TOKENNAME]`
13070
13461
 
@@ -13186,7 +13577,7 @@ DESCRIPTION
13186
13577
  Flags files to be included in the next commit.
13187
13578
  ```
13188
13579
 
13189
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/unstage.ts)_
13580
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/unstage.ts)_
13190
13581
 
13191
13582
  ## `codiac update [CHANNEL]`
13192
13583
 
@@ -13373,7 +13764,7 @@ EXAMPLES
13373
13764
  $ codiac whereami --to-script
13374
13765
  ```
13375
13766
 
13376
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/whereami.ts)_
13767
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/whereami.ts)_
13377
13768
 
13378
13769
  ## `codiac whoami`
13379
13770
 
@@ -13415,5 +13806,5 @@ EXAMPLES
13415
13806
  $ codiac whoami --to-script
13416
13807
  ```
13417
13808
 
13418
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.253/src/commands/whoami.ts)_
13809
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.255/src/commands/whoami.ts)_
13419
13810
  <!-- commandsstop -->