@codiac.io/codiac-cli 1.3.242 → 1.3.244

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md 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.242 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.244 linux-x64 node-v22.15.1
25
25
  $ codiac --help [COMMAND]
26
26
  USAGE
27
27
  $ codiac COMMAND
@@ -528,7 +528,7 @@ EXAMPLES
528
528
  $ codiac ai agent install -e ben -t hermes -c dev --to-script
529
529
  ```
530
530
 
531
- _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/ai/agent/install.ts)_
531
+ _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/ai/agent/install.ts)_
532
532
 
533
533
  ## `codiac asset create`
534
534
 
@@ -649,7 +649,7 @@ EXAMPLES
649
649
  $ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
650
650
  ```
651
651
 
652
- _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/create.ts)_
652
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/create.ts)_
653
653
 
654
654
  ## `codiac asset edit`
655
655
 
@@ -707,7 +707,7 @@ EXAMPLES
707
707
  $ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
708
708
  ```
709
709
 
710
- _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/edit.ts)_
710
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/edit.ts)_
711
711
 
712
712
  ## `codiac asset entrypoint`
713
713
 
@@ -828,7 +828,7 @@ EXAMPLES
828
828
  $ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
829
829
  ```
830
830
 
831
- _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/entrypoint/delete.ts)_
831
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/entrypoint/delete.ts)_
832
832
 
833
833
  ## `codiac asset entrypoint set`
834
834
 
@@ -897,7 +897,7 @@ EXAMPLES
897
897
  --input=/backup/workflows'
898
898
  ```
899
899
 
900
- _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/entrypoint/set.ts)_
900
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/entrypoint/set.ts)_
901
901
 
902
902
  ## `codiac asset get [CMD]`
903
903
 
@@ -906,7 +906,7 @@ Renders a selected type of content for an asset
906
906
  ```
907
907
  USAGE
908
908
  $ codiac asset get [CMD] [-h] [-e <value>] [-a <value>] [-n <value>] [-c <value>] [-r <value>] [-t
909
- logs|term|exec|env|config|status] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
909
+ logs|term|exec|env|config|status|events] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
910
910
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | ]
911
911
  [--take-defaults | [--silent | --echo | --to-script]]
912
912
 
@@ -925,13 +925,14 @@ FLAGS
925
925
  -e, --enterprise=<value> The name of the enterprise containing the asset being viewed.
926
926
  -f, --logsFollow (requires type=logs) Follow (aka watch, tail, stream) the output.
927
927
  -h, --help Show CLI help.
928
- -l, --logsTail=<value> [default: 10] (requires type=logs) Lines of recent logs to include in the output. Enter -1
929
- to include the entire log history stored in the container.
928
+ -l, --logsTail=<value> [default: 10] (type=logs or type=events) For type=logs: lines of recent logs to include
929
+ (enter -1 for the entire log history stored in the container). For type=events: number of
930
+ most-recent events to show (defaults to 25).
930
931
  -n, --environment=<value> The name of the environment in which the cabinet resides.
931
932
  -r, --replica=<value> The name of one of the asset instances currently running in the cabinet. Set to "any" to
932
933
  select the first available replica without prompting for one.
933
934
  -t, --type=<option> The type of content to retrieve.
934
- <options: logs|term|exec|env|config|status>
935
+ <options: logs|term|exec|env|config|status|events>
935
936
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
936
937
  before final execution.
937
938
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
@@ -1004,7 +1005,7 @@ EXAMPLES
1004
1005
  $ codiac asset list -e myEnterprise --to-script
1005
1006
  ```
1006
1007
 
1007
- _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/list.ts)_
1008
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/list.ts)_
1008
1009
 
1009
1010
  ## `codiac asset mon [CMD]`
1010
1011
 
@@ -1013,7 +1014,7 @@ Renders a selected type of content for an asset
1013
1014
  ```
1014
1015
  USAGE
1015
1016
  $ codiac asset mon [CMD] [-h] [-e <value>] [-a <value>] [-n <value>] [-c <value>] [-r <value>] [-t
1016
- logs|term|exec|env|config|status] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1017
+ logs|term|exec|env|config|status|events] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1017
1018
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | ]
1018
1019
  [--take-defaults | [--silent | --echo | --to-script]]
1019
1020
 
@@ -1032,13 +1033,14 @@ FLAGS
1032
1033
  -e, --enterprise=<value> The name of the enterprise containing the asset being viewed.
1033
1034
  -f, --logsFollow (requires type=logs) Follow (aka watch, tail, stream) the output.
1034
1035
  -h, --help Show CLI help.
1035
- -l, --logsTail=<value> [default: 10] (requires type=logs) Lines of recent logs to include in the output. Enter -1
1036
- to include the entire log history stored in the container.
1036
+ -l, --logsTail=<value> [default: 10] (type=logs or type=events) For type=logs: lines of recent logs to include
1037
+ (enter -1 for the entire log history stored in the container). For type=events: number of
1038
+ most-recent events to show (defaults to 25).
1037
1039
  -n, --environment=<value> The name of the environment in which the cabinet resides.
1038
1040
  -r, --replica=<value> The name of one of the asset instances currently running in the cabinet. Set to "any" to
1039
1041
  select the first available replica without prompting for one.
1040
1042
  -t, --type=<option> The type of content to retrieve.
1041
- <options: logs|term|exec|env|config|status>
1043
+ <options: logs|term|exec|env|config|status|events>
1042
1044
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
1043
1045
  before final execution.
1044
1046
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
@@ -1066,7 +1068,7 @@ Renders a selected type of content for an asset
1066
1068
  ```
1067
1069
  USAGE
1068
1070
  $ codiac asset monitor [CMD] [-h] [-e <value>] [-a <value>] [-n <value>] [-c <value>] [-r <value>] [-t
1069
- logs|term|exec|env|config|status] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1071
+ logs|term|exec|env|config|status|events] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1070
1072
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | ]
1071
1073
  [--take-defaults | [--silent | --echo | --to-script]]
1072
1074
 
@@ -1085,13 +1087,14 @@ FLAGS
1085
1087
  -e, --enterprise=<value> The name of the enterprise containing the asset being viewed.
1086
1088
  -f, --logsFollow (requires type=logs) Follow (aka watch, tail, stream) the output.
1087
1089
  -h, --help Show CLI help.
1088
- -l, --logsTail=<value> [default: 10] (requires type=logs) Lines of recent logs to include in the output. Enter -1
1089
- to include the entire log history stored in the container.
1090
+ -l, --logsTail=<value> [default: 10] (type=logs or type=events) For type=logs: lines of recent logs to include
1091
+ (enter -1 for the entire log history stored in the container). For type=events: number of
1092
+ most-recent events to show (defaults to 25).
1090
1093
  -n, --environment=<value> The name of the environment in which the cabinet resides.
1091
1094
  -r, --replica=<value> The name of one of the asset instances currently running in the cabinet. Set to "any" to
1092
1095
  select the first available replica without prompting for one.
1093
1096
  -t, --type=<option> The type of content to retrieve.
1094
- <options: logs|term|exec|env|config|status>
1097
+ <options: logs|term|exec|env|config|status|events>
1095
1098
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
1096
1099
  before final execution.
1097
1100
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
@@ -1263,7 +1266,7 @@ EXAMPLES
1263
1266
  $ codiac asset obliterate -e main -n my-api
1264
1267
  ```
1265
1268
 
1266
- _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/obliterate.ts)_
1269
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/obliterate.ts)_
1267
1270
 
1268
1271
  ## `codiac asset probe create [CMD]`
1269
1272
 
@@ -1353,7 +1356,7 @@ EXAMPLES
1353
1356
  $ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
1354
1357
  ```
1355
1358
 
1356
- _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/probe/create.ts)_
1359
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/probe/create.ts)_
1357
1360
 
1358
1361
  ## `codiac asset probe delete`
1359
1362
 
@@ -1408,7 +1411,7 @@ EXAMPLES
1408
1411
  $ codiac asset probe delete
1409
1412
  ```
1410
1413
 
1411
- _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/probe/delete.ts)_
1414
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/probe/delete.ts)_
1412
1415
 
1413
1416
  ## `codiac asset probe list`
1414
1417
 
@@ -1460,7 +1463,7 @@ EXAMPLES
1460
1463
  $ codiac asset probe list
1461
1464
  ```
1462
1465
 
1463
- _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/probe/list.ts)_
1466
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/probe/list.ts)_
1464
1467
 
1465
1468
  ## `codiac asset recycle`
1466
1469
 
@@ -1500,7 +1503,7 @@ DESCRIPTION
1500
1503
  Deploys a given asset to a given cabinet. Defaults to current version.
1501
1504
  ```
1502
1505
 
1503
- _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/recycle.ts)_
1506
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/recycle.ts)_
1504
1507
 
1505
1508
  ## `codiac asset undeploy`
1506
1509
 
@@ -1544,7 +1547,7 @@ EXAMPLES
1544
1547
  $ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
1545
1548
  ```
1546
1549
 
1547
- _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/undeploy.ts)_
1550
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/undeploy.ts)_
1548
1551
 
1549
1552
  ## `codiac asset view [CMD]`
1550
1553
 
@@ -1553,7 +1556,7 @@ Renders a selected type of content for an asset
1553
1556
  ```
1554
1557
  USAGE
1555
1558
  $ codiac asset view [CMD] [-h] [-e <value>] [-a <value>] [-n <value>] [-c <value>] [-r <value>] [-t
1556
- logs|term|exec|env|config|status] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1559
+ logs|term|exec|env|config|status|events] [--terminal bash|sh] [-f] [-l <value>] [-F <value>] [-T
1557
1560
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | ]
1558
1561
  [--take-defaults | [--silent | --echo | --to-script]]
1559
1562
 
@@ -1572,13 +1575,14 @@ FLAGS
1572
1575
  -e, --enterprise=<value> The name of the enterprise containing the asset being viewed.
1573
1576
  -f, --logsFollow (requires type=logs) Follow (aka watch, tail, stream) the output.
1574
1577
  -h, --help Show CLI help.
1575
- -l, --logsTail=<value> [default: 10] (requires type=logs) Lines of recent logs to include in the output. Enter -1
1576
- to include the entire log history stored in the container.
1578
+ -l, --logsTail=<value> [default: 10] (type=logs or type=events) For type=logs: lines of recent logs to include
1579
+ (enter -1 for the entire log history stored in the container). For type=events: number of
1580
+ most-recent events to show (defaults to 25).
1577
1581
  -n, --environment=<value> The name of the environment in which the cabinet resides.
1578
1582
  -r, --replica=<value> The name of one of the asset instances currently running in the cabinet. Set to "any" to
1579
1583
  select the first available replica without prompting for one.
1580
1584
  -t, --type=<option> The type of content to retrieve.
1581
- <options: logs|term|exec|env|config|status>
1585
+ <options: logs|term|exec|env|config|status|events>
1582
1586
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
1583
1587
  before final execution.
1584
1588
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
@@ -1599,7 +1603,7 @@ ALIASES
1599
1603
  $ codiac asset get
1600
1604
  ```
1601
1605
 
1602
- _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/view.ts)_
1606
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/view.ts)_
1603
1607
 
1604
1608
  ## `codiac asset vol add [MOUNTPATH]`
1605
1609
 
@@ -1870,7 +1874,7 @@ ALIASES
1870
1874
  $ codiac asset volume add
1871
1875
  ```
1872
1876
 
1873
- _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/volume/create.ts)_
1877
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/volume/create.ts)_
1874
1878
 
1875
1879
  ## `codiac asset volume del`
1876
1880
 
@@ -1958,7 +1962,7 @@ EXAMPLES
1958
1962
  $ codiac asset volume delete -e myEnterprise -n myMount --to-script
1959
1963
  ```
1960
1964
 
1961
- _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/volume/delete.ts)_
1965
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/volume/delete.ts)_
1962
1966
 
1963
1967
  ## `codiac asset volume list`
1964
1968
 
@@ -2007,7 +2011,7 @@ EXAMPLES
2007
2011
  $ codiac asset volume list -e myEnterprise --silent
2008
2012
  ```
2009
2013
 
2010
- _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/volume/list.ts)_
2014
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/volume/list.ts)_
2011
2015
 
2012
2016
  ## `codiac asset volumes del`
2013
2017
 
@@ -2174,7 +2178,7 @@ EXAMPLES
2174
2178
  $ codiac asset where -e main -a my-api --silent
2175
2179
  ```
2176
2180
 
2177
- _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/asset/where.ts)_
2181
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/asset/where.ts)_
2178
2182
 
2179
2183
  ## `codiac auth cab allow`
2180
2184
 
@@ -2336,7 +2340,7 @@ EXAMPLES
2336
2340
  $ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
2337
2341
  ```
2338
2342
 
2339
- _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/cabinet/allow.ts)_
2343
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/cabinet/allow.ts)_
2340
2344
 
2341
2345
  ## `codiac auth cabinet allowed`
2342
2346
 
@@ -2384,7 +2388,7 @@ EXAMPLES
2384
2388
  $ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
2385
2389
  ```
2386
2390
 
2387
- _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/cabinet/allowed.ts)_
2391
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/cabinet/allowed.ts)_
2388
2392
 
2389
2393
  ## `codiac auth ent allow`
2390
2394
 
@@ -2575,7 +2579,7 @@ EXAMPLES
2575
2579
  $ codiac auth enterprise allow -r deployer -p none
2576
2580
  ```
2577
2581
 
2578
- _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/enterprise/allow.ts)_
2582
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/enterprise/allow.ts)_
2579
2583
 
2580
2584
  ## `codiac auth enterprise allow onEnvironments`
2581
2585
 
@@ -2629,7 +2633,7 @@ EXAMPLES
2629
2633
  $ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
2630
2634
  ```
2631
2635
 
2632
- _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2636
+ _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2633
2637
 
2634
2638
  ## `codiac auth enterprise allowed`
2635
2639
 
@@ -2670,7 +2674,7 @@ EXAMPLES
2670
2674
  $ codiac auth enterprise allowed --enterprise modeling
2671
2675
  ```
2672
2676
 
2673
- _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/enterprise/allowed.ts)_
2677
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/enterprise/allowed.ts)_
2674
2678
 
2675
2679
  ## `codiac auth env allowed`
2676
2680
 
@@ -2877,7 +2881,7 @@ EXAMPLES
2877
2881
  $ codiac auth environment allow -e qa -r productmanager -p read
2878
2882
  ```
2879
2883
 
2880
- _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/environment/allow.ts)_
2884
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/environment/allow.ts)_
2881
2885
 
2882
2886
  ## `codiac auth environment allow onCabinets`
2883
2887
 
@@ -2934,7 +2938,7 @@ EXAMPLES
2934
2938
  $ codiac auth environment allow onCabinets -e qa -r productmanager -p read
2935
2939
  ```
2936
2940
 
2937
- _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/environment/allow/onCabinets.ts)_
2941
+ _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/environment/allow/onCabinets.ts)_
2938
2942
 
2939
2943
  ## `codiac auth environment allowed`
2940
2944
 
@@ -2979,7 +2983,7 @@ EXAMPLES
2979
2983
  $ codiac auth environment allowed --enterprise modeling -e dev
2980
2984
  ```
2981
2985
 
2982
- _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/environment/allowed.ts)_
2986
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/environment/allowed.ts)_
2983
2987
 
2984
2988
  ## `codiac auth register`
2985
2989
 
@@ -3025,7 +3029,7 @@ EXAMPLES
3025
3029
  $ codiac auth register
3026
3030
  ```
3027
3031
 
3028
- _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/register.ts)_
3032
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/register.ts)_
3029
3033
 
3030
3034
  ## `codiac auth role allowed [NAME]`
3031
3035
 
@@ -3072,7 +3076,7 @@ EXAMPLES
3072
3076
  $ codiac auth role allowed -n deployer -e main
3073
3077
  ```
3074
3078
 
3075
- _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/allowed.ts)_
3079
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/allowed.ts)_
3076
3080
 
3077
3081
  ## `codiac auth role assign`
3078
3082
 
@@ -3104,7 +3108,7 @@ EXAMPLES
3104
3108
  $ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
3105
3109
  ```
3106
3110
 
3107
- _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/assign.ts)_
3111
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/assign.ts)_
3108
3112
 
3109
3113
  ## `codiac auth role create [NAME]`
3110
3114
 
@@ -3137,7 +3141,7 @@ EXAMPLES
3137
3141
  $ codiac auth role create -n deployer
3138
3142
  ```
3139
3143
 
3140
- _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/create.ts)_
3144
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/create.ts)_
3141
3145
 
3142
3146
  ## `codiac auth role delete [NAME]`
3143
3147
 
@@ -3173,7 +3177,7 @@ EXAMPLES
3173
3177
  $ codiac auth role delete --id abc123def456
3174
3178
  ```
3175
3179
 
3176
- _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/delete.ts)_
3180
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/delete.ts)_
3177
3181
 
3178
3182
  ## `codiac auth role list`
3179
3183
 
@@ -3209,7 +3213,7 @@ EXAMPLES
3209
3213
  $ codiac auth role list -o yaml > roles.yaml
3210
3214
  ```
3211
3215
 
3212
- _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/list.ts)_
3216
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/list.ts)_
3213
3217
 
3214
3218
  ## `codiac auth role unassign`
3215
3219
 
@@ -3241,7 +3245,7 @@ EXAMPLES
3241
3245
  $ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
3242
3246
  ```
3243
3247
 
3244
- _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/role/unassign.ts)_
3248
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/role/unassign.ts)_
3245
3249
 
3246
3250
  ## `codiac auth user invite`
3247
3251
 
@@ -3281,7 +3285,7 @@ EXAMPLES
3281
3285
  $ codiac auth user invite
3282
3286
  ```
3283
3287
 
3284
- _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/user/invite.ts)_
3288
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/user/invite.ts)_
3285
3289
 
3286
3290
  ## `codiac auth user list`
3287
3291
 
@@ -3317,7 +3321,7 @@ EXAMPLES
3317
3321
  $ codiac auth user list -o yaml > users.yaml
3318
3322
  ```
3319
3323
 
3320
- _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/auth/user/list.ts)_
3324
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/auth/user/list.ts)_
3321
3325
 
3322
3326
  ## `codiac autocomplete [SHELL]`
3323
3327
 
@@ -3367,7 +3371,7 @@ DESCRIPTION
3367
3371
  Creates a new branch for the parent project and any sourced dependencies.
3368
3372
  ```
3369
3373
 
3370
- _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/branch.ts)_
3374
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/branch.ts)_
3371
3375
 
3372
3376
  ## `codiac branch current`
3373
3377
 
@@ -3387,7 +3391,7 @@ ALIASES
3387
3391
  $ codiac branches current
3388
3392
  ```
3389
3393
 
3390
- _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/branch/current.ts)_
3394
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/branch/current.ts)_
3391
3395
 
3392
3396
  ## `codiac branch list`
3393
3397
 
@@ -3409,7 +3413,7 @@ ALIASES
3409
3413
  $ codiac branches list
3410
3414
  ```
3411
3415
 
3412
- _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/branch/list.ts)_
3416
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/branch/list.ts)_
3413
3417
 
3414
3418
  ## `codiac branches current`
3415
3419
 
@@ -3499,7 +3503,7 @@ DESCRIPTION
3499
3503
  Builds the project and the docker container
3500
3504
  ```
3501
3505
 
3502
- _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/build.ts)_
3506
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/build.ts)_
3503
3507
 
3504
3508
  ## `codiac cab attach`
3505
3509
 
@@ -4248,7 +4252,7 @@ EXAMPLES
4248
4252
  prod-cluster-1 --to-script
4249
4253
  ```
4250
4254
 
4251
- _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/cluster/attach.ts)_
4255
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/cluster/attach.ts)_
4252
4256
 
4253
4257
  ## `codiac cabinet contents`
4254
4258
 
@@ -4292,7 +4296,7 @@ EXAMPLES
4292
4296
  $ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
4293
4297
  ```
4294
4298
 
4295
- _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/contents.ts)_
4299
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/contents.ts)_
4296
4300
 
4297
4301
  ## `codiac cabinet create [CABINET]`
4298
4302
 
@@ -4359,7 +4363,7 @@ EXAMPLES
4359
4363
  cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
4360
4364
  ```
4361
4365
 
4362
- _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/create.ts)_
4366
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/create.ts)_
4363
4367
 
4364
4368
  ## `codiac cabinet define [CABINET]`
4365
4369
 
@@ -4421,7 +4425,7 @@ EXAMPLES
4421
4425
  $ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
4422
4426
  ```
4423
4427
 
4424
- _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/define.ts)_
4428
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/define.ts)_
4425
4429
 
4426
4430
  ## `codiac cabinet destroy [CABINET]`
4427
4431
 
@@ -4479,7 +4483,7 @@ EXAMPLES
4479
4483
  --environment dev --silent
4480
4484
  ```
4481
4485
 
4482
- _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/destroy.ts)_
4486
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/destroy.ts)_
4483
4487
 
4484
4488
  ## `codiac cabinet detach [CABINET]`
4485
4489
 
@@ -4536,7 +4540,7 @@ EXAMPLES
4536
4540
  main --environment dev
4537
4541
  ```
4538
4542
 
4539
- _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/detach.ts)_
4543
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/detach.ts)_
4540
4544
 
4541
4545
  ## `codiac cabinet forget [CABINET]`
4542
4546
 
@@ -4591,7 +4595,7 @@ EXAMPLES
4591
4595
  $ codiac cabinet forget --to-script
4592
4596
  ```
4593
4597
 
4594
- _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/forget.ts)_
4598
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/forget.ts)_
4595
4599
 
4596
4600
  ## `codiac cabinet list`
4597
4601
 
@@ -4642,7 +4646,7 @@ EXAMPLES
4642
4646
  $ codiac cabinet list -e myEnterprise --silent
4643
4647
  ```
4644
4648
 
4645
- _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/list.ts)_
4649
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/list.ts)_
4646
4650
 
4647
4651
  ## `codiac cabinet obliterate [CABINET]`
4648
4652
 
@@ -4684,7 +4688,7 @@ ALIASES
4684
4688
  $ codiac infrx cab obliterate
4685
4689
  ```
4686
4690
 
4687
- _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/obliterate.ts)_
4691
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/obliterate.ts)_
4688
4692
 
4689
4693
  ## `codiac cabinet restore`
4690
4694
 
@@ -4751,7 +4755,7 @@ EXAMPLES
4751
4755
  $ codiac cabinet restore --cluster prod-cluster-1 --to-script
4752
4756
  ```
4753
4757
 
4754
- _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cabinet/restore.ts)_
4758
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cabinet/restore.ts)_
4755
4759
 
4756
4760
  ## `codiac cfg add`
4757
4761
 
@@ -4762,8 +4766,8 @@ USAGE
4762
4766
  $ codiac cfg add [-h] [-n <value>] [-a <value>] [-s | -e <value> | -c <value>] [--entire-file | --setting
4763
4767
  <value> | [-t
4764
4768
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | -f
4765
- <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--take-defaults |
4766
- [--silent | --echo | --to-script]]
4769
+ <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--value-type
4770
+ string|number|integer|boolean] [--take-defaults | [--silent | --echo | --to-script]]
4767
4771
 
4768
4772
  FLAGS
4769
4773
  -a, --asset=<value>
@@ -4831,6 +4835,12 @@ FLAGS
4831
4835
  Reads the value from the stdin stream instead of from --value. Compatible with both --file and --type targets (see
4832
4836
  examples).
4833
4837
 
4838
+ --value-type=<option>
4839
+ Pins how the stored value is typed when rendered into the target config, overriding Codiac's automatic type
4840
+ inference. Use 'string' to keep values like "false" or "3600" from being coerced to bool/number — required for
4841
+ Kubernetes env var values, which must be strings.
4842
+ <options: string|number|integer|boolean>
4843
+
4834
4844
  DESCRIPTION
4835
4845
  Adds a key value pair to the app config
4836
4846
 
@@ -4889,6 +4899,12 @@ EXAMPLES
4889
4899
 
4890
4900
  cat external-values.yaml | cod config set -a my-asset -c dev -t helm --entire-file --value-stdin \
4891
4901
  --escape-expressions
4902
+
4903
+ Pin a value's type so Codiac doesn't infer it — keeps a boolean/numeric-looking string as a string, e.g. a
4904
+ Kubernetes env var value (which must be a string).
4905
+
4906
+ cod config set -a my-asset -e prod -t helm --setting 'statefulSet.patch[1].value.env[5].value' --value 'false' \
4907
+ --value-type string
4892
4908
  ```
4893
4909
 
4894
4910
  ## `codiac cfg delete [SETTING]`
@@ -5038,7 +5054,7 @@ DESCRIPTION
5038
5054
  Applies settings to the Codiac CLI itself (scoped to the local machine).
5039
5055
  ```
5040
5056
 
5041
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cli.ts)_
5057
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cli.ts)_
5042
5058
 
5043
5059
  ## `codiac cluster agent configure [CLUSTER]`
5044
5060
 
@@ -5106,7 +5122,7 @@ EXAMPLES
5106
5122
  $ codiac cluster agent configure my-cluster --to-script
5107
5123
  ```
5108
5124
 
5109
- _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/agent/configure.ts)_
5125
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/agent/configure.ts)_
5110
5126
 
5111
5127
  ## `codiac cluster agent install [CLUSTER]`
5112
5128
 
@@ -5162,7 +5178,7 @@ EXAMPLES
5162
5178
  $ codiac cluster agent install my-cluster --to-script
5163
5179
  ```
5164
5180
 
5165
- _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/agent/install.ts)_
5181
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/agent/install.ts)_
5166
5182
 
5167
5183
  ## `codiac cluster agent uninstall [CLUSTER]`
5168
5184
 
@@ -5210,7 +5226,7 @@ EXAMPLES
5210
5226
  $ codiac cluster agent uninstall my-cluster --to-script
5211
5227
  ```
5212
5228
 
5213
- _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/agent/uninstall.ts)_
5229
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/agent/uninstall.ts)_
5214
5230
 
5215
5231
  ## `codiac cluster bootstrap [NAME]`
5216
5232
 
@@ -5273,7 +5289,7 @@ EXAMPLES
5273
5289
  $ codiac cluster bootstrap my-cluster --to-script
5274
5290
  ```
5275
5291
 
5276
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/bootstrap.ts)_
5292
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/bootstrap.ts)_
5277
5293
 
5278
5294
  ## `codiac cluster capture`
5279
5295
 
@@ -5358,7 +5374,7 @@ EXAMPLES
5358
5374
  $ codiac cluster connect my-fav-cluster
5359
5375
  ```
5360
5376
 
5361
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/connect.ts)_
5377
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/connect.ts)_
5362
5378
 
5363
5379
  ## `codiac cluster contents`
5364
5380
 
@@ -6023,7 +6039,7 @@ EXAMPLES
6023
6039
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
6024
6040
  ```
6025
6041
 
6026
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/install.ts)_
6042
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/install.ts)_
6027
6043
 
6028
6044
  ## `codiac cluster journal [CLUSTER]`
6029
6045
 
@@ -6312,7 +6328,7 @@ EXAMPLES
6312
6328
  $ codiac cluster stack capture my-fav-cluster
6313
6329
  ```
6314
6330
 
6315
- _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/stack/capture.ts)_
6331
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/stack/capture.ts)_
6316
6332
 
6317
6333
  ## `codiac cluster stack install [CLUSTER]`
6318
6334
 
@@ -6364,7 +6380,7 @@ EXAMPLES
6364
6380
  $ codiac cluster stack install my-cluster --to-script
6365
6381
  ```
6366
6382
 
6367
- _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/stack/install.ts)_
6383
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/stack/install.ts)_
6368
6384
 
6369
6385
  ## `codiac cluster stack list`
6370
6386
 
@@ -6530,7 +6546,7 @@ EXAMPLES
6530
6546
  $ codiac cluster start my-fav-cluster
6531
6547
  ```
6532
6548
 
6533
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/start.ts)_
6549
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/start.ts)_
6534
6550
 
6535
6551
  ## `codiac cluster stop [CLUSTER]`
6536
6552
 
@@ -6567,7 +6583,7 @@ EXAMPLES
6567
6583
  $ codiac cluster start my-fav-cluster
6568
6584
  ```
6569
6585
 
6570
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/cluster/stop.ts)_
6586
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/cluster/stop.ts)_
6571
6587
 
6572
6588
  ## `codiac cluster uninstall`
6573
6589
 
@@ -6629,7 +6645,7 @@ DESCRIPTION
6629
6645
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6630
6646
  ```
6631
6647
 
6632
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/commit.ts)_
6648
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/commit.ts)_
6633
6649
 
6634
6650
  ## `codiac config add`
6635
6651
 
@@ -6640,8 +6656,8 @@ USAGE
6640
6656
  $ codiac config add [-h] [-n <value>] [-a <value>] [-s | -e <value> | -c <value>] [--entire-file | --setting
6641
6657
  <value> | [-t
6642
6658
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | -f
6643
- <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--take-defaults |
6644
- [--silent | --echo | --to-script]]
6659
+ <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--value-type
6660
+ string|number|integer|boolean] [--take-defaults | [--silent | --echo | --to-script]]
6645
6661
 
6646
6662
  FLAGS
6647
6663
  -a, --asset=<value>
@@ -6709,6 +6725,12 @@ FLAGS
6709
6725
  Reads the value from the stdin stream instead of from --value. Compatible with both --file and --type targets (see
6710
6726
  examples).
6711
6727
 
6728
+ --value-type=<option>
6729
+ Pins how the stored value is typed when rendered into the target config, overriding Codiac's automatic type
6730
+ inference. Use 'string' to keep values like "false" or "3600" from being coerced to bool/number — required for
6731
+ Kubernetes env var values, which must be strings.
6732
+ <options: string|number|integer|boolean>
6733
+
6712
6734
  DESCRIPTION
6713
6735
  Adds a key value pair to the app config
6714
6736
 
@@ -6767,9 +6789,15 @@ EXAMPLES
6767
6789
 
6768
6790
  cat external-values.yaml | cod config set -a my-asset -c dev -t helm --entire-file --value-stdin \
6769
6791
  --escape-expressions
6792
+
6793
+ Pin a value's type so Codiac doesn't infer it — keeps a boolean/numeric-looking string as a string, e.g. a
6794
+ Kubernetes env var value (which must be a string).
6795
+
6796
+ cod config set -a my-asset -e prod -t helm --setting 'statefulSet.patch[1].value.env[5].value' --value 'false' \
6797
+ --value-type string
6770
6798
  ```
6771
6799
 
6772
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/add.ts)_
6800
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/add.ts)_
6773
6801
 
6774
6802
  ## `codiac config delete [SETTING]`
6775
6803
 
@@ -6838,7 +6866,7 @@ ALIASES
6838
6866
  $ codiac cfg delete
6839
6867
  ```
6840
6868
 
6841
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/delete.ts)_
6869
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/delete.ts)_
6842
6870
 
6843
6871
  ## `codiac config deploy`
6844
6872
 
@@ -6879,7 +6907,7 @@ EXAMPLES
6879
6907
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6880
6908
  ```
6881
6909
 
6882
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/deploy.ts)_
6910
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/deploy.ts)_
6883
6911
 
6884
6912
  ## `codiac config import`
6885
6913
 
@@ -6940,7 +6968,7 @@ EXAMPLES
6940
6968
  $ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
6941
6969
  ```
6942
6970
 
6943
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/import.ts)_
6971
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/import.ts)_
6944
6972
 
6945
6973
  ## `codiac config preview [SETTING]`
6946
6974
 
@@ -7014,8 +7042,8 @@ USAGE
7014
7042
  $ codiac config set [-h] [-n <value>] [-a <value>] [-s | -e <value> | -c <value>] [--entire-file | --setting
7015
7043
  <value> | [-t
7016
7044
  annotation|env|footprint|filestore|helm|k8spatch|label|namespace|onpostdeploy|onpredeploy|permit|probing | -f
7017
- <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--take-defaults |
7018
- [--silent | --echo | --to-script]]
7045
+ <value>]] [--condition <value>] [--value-stdin | --value <value>] [--escape-expressions] [--value-type
7046
+ string|number|integer|boolean] [--take-defaults | [--silent | --echo | --to-script]]
7019
7047
 
7020
7048
  FLAGS
7021
7049
  -a, --asset=<value>
@@ -7083,6 +7111,12 @@ FLAGS
7083
7111
  Reads the value from the stdin stream instead of from --value. Compatible with both --file and --type targets (see
7084
7112
  examples).
7085
7113
 
7114
+ --value-type=<option>
7115
+ Pins how the stored value is typed when rendered into the target config, overriding Codiac's automatic type
7116
+ inference. Use 'string' to keep values like "false" or "3600" from being coerced to bool/number — required for
7117
+ Kubernetes env var values, which must be strings.
7118
+ <options: string|number|integer|boolean>
7119
+
7086
7120
  DESCRIPTION
7087
7121
  Adds a key value pair to the app config
7088
7122
 
@@ -7141,6 +7175,12 @@ EXAMPLES
7141
7175
 
7142
7176
  cat external-values.yaml | cod config set -a my-asset -c dev -t helm --entire-file --value-stdin \
7143
7177
  --escape-expressions
7178
+
7179
+ Pin a value's type so Codiac doesn't infer it — keeps a boolean/numeric-looking string as a string, e.g. a
7180
+ Kubernetes env var value (which must be a string).
7181
+
7182
+ cod config set -a my-asset -e prod -t helm --setting 'statefulSet.patch[1].value.env[5].value' --value 'false' \
7183
+ --value-type string
7144
7184
  ```
7145
7185
 
7146
7186
  ## `codiac config settings get`
@@ -7211,7 +7251,7 @@ DESCRIPTION
7211
7251
  Shows the list of clusters.
7212
7252
  ```
7213
7253
 
7214
- _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/settings/get.ts)_
7254
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/settings/get.ts)_
7215
7255
 
7216
7256
  ## `codiac config view [SETTING]`
7217
7257
 
@@ -7276,7 +7316,7 @@ EXAMPLES
7276
7316
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
7277
7317
  ```
7278
7318
 
7279
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/config/view.ts)_
7319
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/config/view.ts)_
7280
7320
 
7281
7321
  ## `codiac csp creds list`
7282
7322
 
@@ -7324,7 +7364,7 @@ EXAMPLES
7324
7364
  $ codiac csp creds list
7325
7365
  ```
7326
7366
 
7327
- _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/csp/creds/list.ts)_
7367
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/csp/creds/list.ts)_
7328
7368
 
7329
7369
  ## `codiac csp login [PROVIDER]`
7330
7370
 
@@ -7402,7 +7442,7 @@ EXAMPLES
7402
7442
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
7403
7443
  ```
7404
7444
 
7405
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/csp/login.ts)_
7445
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/csp/login.ts)_
7406
7446
 
7407
7447
  ## `codiac csp logout [PROVIDER]`
7408
7448
 
@@ -7449,7 +7489,7 @@ EXAMPLES
7449
7489
  $ codiac csp logout azure --to-script
7450
7490
  ```
7451
7491
 
7452
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/csp/logout.ts)_
7492
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/csp/logout.ts)_
7453
7493
 
7454
7494
  ## `codiac dep [NAME]`
7455
7495
 
@@ -7470,7 +7510,7 @@ DESCRIPTION
7470
7510
  Installs a package into current project.
7471
7511
  ```
7472
7512
 
7473
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep.ts)_
7513
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep.ts)_
7474
7514
 
7475
7515
  ## `codiac dep create [URL]`
7476
7516
 
@@ -7494,7 +7534,7 @@ DESCRIPTION
7494
7534
  package version is used.
7495
7535
  ```
7496
7536
 
7497
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/create.ts)_
7537
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/create.ts)_
7498
7538
 
7499
7539
  ## `codiac dep install`
7500
7540
 
@@ -7511,7 +7551,7 @@ DESCRIPTION
7511
7551
  installs any missing dependency packages into the local project folder.
7512
7552
  ```
7513
7553
 
7514
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/install.ts)_
7554
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/install.ts)_
7515
7555
 
7516
7556
  ## `codiac dep list`
7517
7557
 
@@ -7528,7 +7568,7 @@ DESCRIPTION
7528
7568
  Shows the dependencies for the project.
7529
7569
  ```
7530
7570
 
7531
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/list.ts)_
7571
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/list.ts)_
7532
7572
 
7533
7573
  ## `codiac dep remove [NAME]`
7534
7574
 
@@ -7551,7 +7591,7 @@ DESCRIPTION
7551
7591
  Removes a dependency from the project.
7552
7592
  ```
7553
7593
 
7554
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/remove.ts)_
7594
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/remove.ts)_
7555
7595
 
7556
7596
  ## `codiac dep source [NAME]`
7557
7597
 
@@ -7577,7 +7617,7 @@ ALIASES
7577
7617
  $ codiac dep src
7578
7618
  ```
7579
7619
 
7580
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/source.ts)_
7620
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/source.ts)_
7581
7621
 
7582
7622
  ## `codiac dep src [NAME]`
7583
7623
 
@@ -7621,7 +7661,7 @@ DESCRIPTION
7621
7661
  Publishes the dependency in its current state and upgrades to it in the main project.
7622
7662
  ```
7623
7663
 
7624
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/syncup.ts)_
7664
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/syncup.ts)_
7625
7665
 
7626
7666
  ## `codiac dep unsource [NAME]`
7627
7667
 
@@ -7649,7 +7689,7 @@ ALIASES
7649
7689
  $ codiac dep unsrc
7650
7690
  ```
7651
7691
 
7652
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/unsource.ts)_
7692
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/unsource.ts)_
7653
7693
 
7654
7694
  ## `codiac dep unsrc [NAME]`
7655
7695
 
@@ -7696,7 +7736,7 @@ DESCRIPTION
7696
7736
  describe the command here
7697
7737
  ```
7698
7738
 
7699
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/dep/upgrade.ts)_
7739
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/dep/upgrade.ts)_
7700
7740
 
7701
7741
  ## `codiac deploy`
7702
7742
 
@@ -7749,7 +7789,7 @@ EXAMPLES
7749
7789
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7750
7790
  ```
7751
7791
 
7752
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/deploy.ts)_
7792
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/deploy.ts)_
7753
7793
 
7754
7794
  ## `codiac domain map [DOMAIN]`
7755
7795
 
@@ -7905,7 +7945,7 @@ EXAMPLES
7905
7945
  cod enterprise create my-enterprise-code --silent
7906
7946
  ```
7907
7947
 
7908
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/enterprise/create.ts)_
7948
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/enterprise/create.ts)_
7909
7949
 
7910
7950
  ## `codiac enterprise list`
7911
7951
 
@@ -7960,7 +8000,7 @@ EXAMPLES
7960
8000
  $ codiac enterprise list --to-script
7961
8001
  ```
7962
8002
 
7963
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/enterprise/list.ts)_
8003
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/enterprise/list.ts)_
7964
8004
 
7965
8005
  ## `codiac env add [SETTING]`
7966
8006
 
@@ -8010,7 +8050,7 @@ EXAMPLES
8010
8050
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
8011
8051
  ```
8012
8052
 
8013
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/env/add.ts)_
8053
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/env/add.ts)_
8014
8054
 
8015
8055
  ## `codiac enviro cluster attach`
8016
8056
 
@@ -8313,7 +8353,7 @@ ALIASES
8313
8353
  $ codiac infrx enviro cluster attach
8314
8354
  ```
8315
8355
 
8316
- _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/environment/cluster/attach.ts)_
8356
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/environment/cluster/attach.ts)_
8317
8357
 
8318
8358
  ## `codiac environment cluster detach`
8319
8359
 
@@ -8359,7 +8399,7 @@ ALIASES
8359
8399
  $ codiac infrx enviro cluster detach
8360
8400
  ```
8361
8401
 
8362
- _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/environment/cluster/detach.ts)_
8402
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/environment/cluster/detach.ts)_
8363
8403
 
8364
8404
  ## `codiac environment create [NAME]`
8365
8405
 
@@ -8422,7 +8462,7 @@ EXAMPLES
8422
8462
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
8423
8463
  ```
8424
8464
 
8425
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/environment/create.ts)_
8465
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/environment/create.ts)_
8426
8466
 
8427
8467
  ## `codiac environment delete [NAME]`
8428
8468
 
@@ -8483,7 +8523,7 @@ EXAMPLES
8483
8523
  $ codiac environment delete dev --enterprise main --to-script
8484
8524
  ```
8485
8525
 
8486
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/environment/delete.ts)_
8526
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/environment/delete.ts)_
8487
8527
 
8488
8528
  ## `codiac environment list`
8489
8529
 
@@ -8534,7 +8574,7 @@ EXAMPLES
8534
8574
  $ codiac environment list -e myEnterprise --silent
8535
8575
  ```
8536
8576
 
8537
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/environment/list.ts)_
8577
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/environment/list.ts)_
8538
8578
 
8539
8579
  ## `codiac fileshare capture`
8540
8580
 
@@ -8618,7 +8658,7 @@ ALIASES
8618
8658
  $ codiac fileshare capture
8619
8659
  ```
8620
8660
 
8621
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/filestore/capture.ts)_
8661
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/filestore/capture.ts)_
8622
8662
 
8623
8663
  ## `codiac filestore forget`
8624
8664
 
@@ -8665,7 +8705,7 @@ EXAMPLES
8665
8705
  $ codiac filestore forget
8666
8706
  ```
8667
8707
 
8668
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/filestore/forget.ts)_
8708
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/filestore/forget.ts)_
8669
8709
 
8670
8710
  ## `codiac filestore list`
8671
8711
 
@@ -8711,7 +8751,7 @@ EXAMPLES
8711
8751
  $ codiac filestore list
8712
8752
  ```
8713
8753
 
8714
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/filestore/list.ts)_
8754
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/filestore/list.ts)_
8715
8755
 
8716
8756
  ## `codiac help [COMMANDS]`
8717
8757
 
@@ -8797,7 +8837,7 @@ EXAMPLES
8797
8837
  $ codiac host delete
8798
8838
  ```
8799
8839
 
8800
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/host/delete.ts)_
8840
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/host/delete.ts)_
8801
8841
 
8802
8842
  ## `codiac host list [DOMAIN]`
8803
8843
 
@@ -8841,7 +8881,7 @@ EXAMPLES
8841
8881
  $ codiac host list
8842
8882
  ```
8843
8883
 
8844
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/host/list.ts)_
8884
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/host/list.ts)_
8845
8885
 
8846
8886
  ## `codiac host map [DOMAIN]`
8847
8887
 
@@ -8895,7 +8935,7 @@ EXAMPLES
8895
8935
  $ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
8896
8936
  ```
8897
8937
 
8898
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/host/map.ts)_
8938
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/host/map.ts)_
8899
8939
 
8900
8940
  ## `codiac host view [DOMAIN]`
8901
8941
 
@@ -8940,7 +8980,7 @@ EXAMPLES
8940
8980
  $ codiac host view
8941
8981
  ```
8942
8982
 
8943
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/host/view.ts)_
8983
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/host/view.ts)_
8944
8984
 
8945
8985
  ## `codiac identify [TOKENNAME]`
8946
8986
 
@@ -9012,7 +9052,7 @@ ALIASES
9012
9052
  $ codiac token
9013
9053
  ```
9014
9054
 
9015
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/identity.ts)_
9055
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/identity.ts)_
9016
9056
 
9017
9057
  ## `codiac identity delete [NAME]`
9018
9058
 
@@ -9037,7 +9077,7 @@ ALIASES
9037
9077
  $ codiac token remove
9038
9078
  ```
9039
9079
 
9040
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/identity/delete.ts)_
9080
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/identity/delete.ts)_
9041
9081
 
9042
9082
  ## `codiac identity list`
9043
9083
 
@@ -9059,7 +9099,7 @@ ALIASES
9059
9099
  $ codiac token list
9060
9100
  ```
9061
9101
 
9062
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/identity/list.ts)_
9102
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/identity/list.ts)_
9063
9103
 
9064
9104
  ## `codiac identity remove [NAME]`
9065
9105
 
@@ -9382,7 +9422,7 @@ DESCRIPTION
9382
9422
  Saves a reference to an existing container registry.
9383
9423
  ```
9384
9424
 
9385
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/imageRegistry/capture.ts)_
9425
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/imageRegistry/capture.ts)_
9386
9426
 
9387
9427
  ## `codiac imageRegistry forget`
9388
9428
 
@@ -9403,7 +9443,7 @@ DESCRIPTION
9403
9443
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
9404
9444
  ```
9405
9445
 
9406
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/imageRegistry/forget.ts)_
9446
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/imageRegistry/forget.ts)_
9407
9447
 
9408
9448
  ## `codiac imageRegistry list`
9409
9449
 
@@ -9445,7 +9485,7 @@ EXAMPLES
9445
9485
  $ codiac imageRegistry list -o yaml > registries.yaml
9446
9486
  ```
9447
9487
 
9448
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/imageRegistry/list.ts)_
9488
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/imageRegistry/list.ts)_
9449
9489
 
9450
9490
  ## `codiac imageRegistry pullSecret set`
9451
9491
 
@@ -9481,7 +9521,7 @@ ALIASES
9481
9521
  $ codiac pullsecret
9482
9522
  ```
9483
9523
 
9484
- _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/imageRegistry/pullSecret/set.ts)_
9524
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/imageRegistry/pullSecret/set.ts)_
9485
9525
 
9486
9526
  ## `codiac imageRegistry pullSecret unset`
9487
9527
 
@@ -9508,7 +9548,7 @@ ALIASES
9508
9548
  $ codiac pullsecret unset
9509
9549
  ```
9510
9550
 
9511
- _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/imageRegistry/pullSecret/unset.ts)_
9551
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/imageRegistry/pullSecret/unset.ts)_
9512
9552
 
9513
9553
  ## `codiac images add [IMAGENAME]`
9514
9554
 
@@ -9569,7 +9609,7 @@ EXAMPLES
9569
9609
  $ codiac images add your-company/your-image --to-script
9570
9610
  ```
9571
9611
 
9572
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/add.ts)_
9612
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/add.ts)_
9573
9613
 
9574
9614
  ## `codiac images list`
9575
9615
 
@@ -9592,7 +9632,7 @@ ALIASES
9592
9632
  $ codiac img list
9593
9633
  ```
9594
9634
 
9595
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/list.ts)_
9635
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/list.ts)_
9596
9636
 
9597
9637
  ## `codiac images patch IMAGENAME`
9598
9638
 
@@ -9622,7 +9662,7 @@ ALIASES
9622
9662
  $ codiac img patch
9623
9663
  ```
9624
9664
 
9625
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/patch.ts)_
9665
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/patch.ts)_
9626
9666
 
9627
9667
  ## `codiac images remove IMAGENAME`
9628
9668
 
@@ -9648,7 +9688,7 @@ ALIASES
9648
9688
  $ codiac img delete
9649
9689
  ```
9650
9690
 
9651
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/remove.ts)_
9691
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/remove.ts)_
9652
9692
 
9653
9693
  ## `codiac images version NAME`
9654
9694
 
@@ -9674,7 +9714,7 @@ ALIASES
9674
9714
  $ codiac img version get
9675
9715
  ```
9676
9716
 
9677
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/version.ts)_
9717
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/version.ts)_
9678
9718
 
9679
9719
  ## `codiac images version bump NAME`
9680
9720
 
@@ -9707,7 +9747,7 @@ ALIASES
9707
9747
  $ codiac img version bump
9708
9748
  ```
9709
9749
 
9710
- _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/images/version/bump.ts)_
9750
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/images/version/bump.ts)_
9711
9751
 
9712
9752
  ## `codiac img [IMAGENAME]`
9713
9753
 
@@ -10023,7 +10063,7 @@ EXAMPLES
10023
10063
  $ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
10024
10064
  ```
10025
10065
 
10026
- _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/import/cluster.ts)_
10066
+ _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/import/cluster.ts)_
10027
10067
 
10028
10068
  ## `codiac infrx cab create [CABINET]`
10029
10069
 
@@ -10868,7 +10908,7 @@ DESCRIPTION
10868
10908
  Declares the given folder as a project root
10869
10909
  ```
10870
10910
 
10871
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/init.ts)_
10911
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/init.ts)_
10872
10912
 
10873
10913
  ## `codiac kit create`
10874
10914
 
@@ -10911,7 +10951,7 @@ EXAMPLES
10911
10951
  $ codiac kit create -e myEnterprise -a myApi --to-script
10912
10952
  ```
10913
10953
 
10914
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/kit/create.ts)_
10954
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/kit/create.ts)_
10915
10955
 
10916
10956
  ## `codiac login`
10917
10957
 
@@ -10970,7 +11010,7 @@ EXAMPLES
10970
11010
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
10971
11011
  ```
10972
11012
 
10973
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/login.ts)_
11013
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/login.ts)_
10974
11014
 
10975
11015
  ## `codiac logout`
10976
11016
 
@@ -11003,7 +11043,7 @@ EXAMPLES
11003
11043
  $ codiac logout --to-script
11004
11044
  ```
11005
11045
 
11006
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/logout.ts)_
11046
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/logout.ts)_
11007
11047
 
11008
11048
  ## `codiac merge [BRANCH]`
11009
11049
 
@@ -11024,7 +11064,7 @@ DESCRIPTION
11024
11064
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
11025
11065
  ```
11026
11066
 
11027
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/merge.ts)_
11067
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/merge.ts)_
11028
11068
 
11029
11069
  ## `codiac noc cluster capture`
11030
11070
 
@@ -11076,7 +11116,7 @@ EXAMPLES
11076
11116
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
11077
11117
  ```
11078
11118
 
11079
- _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/capture.ts)_
11119
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/capture.ts)_
11080
11120
 
11081
11121
  ## `codiac noc cluster create [NAME]`
11082
11122
 
@@ -11166,7 +11206,7 @@ FLAG DESCRIPTIONS
11166
11206
  initialization is always skipped in that mode.
11167
11207
  ```
11168
11208
 
11169
- _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/create.ts)_
11209
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/create.ts)_
11170
11210
 
11171
11211
  ## `codiac noc cluster credentials-set [NAME]`
11172
11212
 
@@ -11221,7 +11261,7 @@ EXAMPLES
11221
11261
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
11222
11262
  ```
11223
11263
 
11224
- _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/credentials-set.ts)_
11264
+ _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/credentials-set.ts)_
11225
11265
 
11226
11266
  ## `codiac noc cluster define [NAME]`
11227
11267
 
@@ -11295,7 +11335,7 @@ EXAMPLES
11295
11335
  $ codiac noc cluster define my-cluster --to-script
11296
11336
  ```
11297
11337
 
11298
- _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/define.ts)_
11338
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/define.ts)_
11299
11339
 
11300
11340
  ## `codiac noc cluster deinit`
11301
11341
 
@@ -11335,7 +11375,7 @@ EXAMPLES
11335
11375
  $ codiac noc cluster deinit -n my-cluster --to-script
11336
11376
  ```
11337
11377
 
11338
- _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/deinit.ts)_
11378
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/deinit.ts)_
11339
11379
 
11340
11380
  ## `codiac noc cluster destroy [NAME]`
11341
11381
 
@@ -11369,7 +11409,7 @@ ALIASES
11369
11409
  $ codiac cluster destroy
11370
11410
  ```
11371
11411
 
11372
- _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/destroy.ts)_
11412
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/destroy.ts)_
11373
11413
 
11374
11414
  ## `codiac noc cluster forget`
11375
11415
 
@@ -11420,7 +11460,7 @@ EXAMPLES
11420
11460
  $ codiac noc cluster forget --running
11421
11461
  ```
11422
11462
 
11423
- _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/forget.ts)_
11463
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/forget.ts)_
11424
11464
 
11425
11465
  ## `codiac noc cluster grant`
11426
11466
 
@@ -11458,7 +11498,7 @@ EXAMPLES
11458
11498
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
11459
11499
  ```
11460
11500
 
11461
- _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/grant.ts)_
11501
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/grant.ts)_
11462
11502
 
11463
11503
  ## `codiac noc cluster init`
11464
11504
 
@@ -11504,7 +11544,7 @@ EXAMPLES
11504
11544
  $ codiac noc cluster init -n my-cluster --to-script
11505
11545
  ```
11506
11546
 
11507
- _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/init.ts)_
11547
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/init.ts)_
11508
11548
 
11509
11549
  ## `codiac noc cluster journal [CLUSTER]`
11510
11550
 
@@ -11553,7 +11593,7 @@ EXAMPLES
11553
11593
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
11554
11594
  ```
11555
11595
 
11556
- _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/journal.ts)_
11596
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/journal.ts)_
11557
11597
 
11558
11598
  ## `codiac noc cluster list`
11559
11599
 
@@ -11614,7 +11654,7 @@ EXAMPLES
11614
11654
  $ codiac noc cluster list -e myEnterprise --to-script
11615
11655
  ```
11616
11656
 
11617
- _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/list.ts)_
11657
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/list.ts)_
11618
11658
 
11619
11659
  ## `codiac noc cluster restore [NAME]`
11620
11660
 
@@ -11674,7 +11714,7 @@ EXAMPLES
11674
11714
  $ codiac noc cluster restore prod-cluster-1 --to-script
11675
11715
  ```
11676
11716
 
11677
- _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/noc/cluster/restore.ts)_
11717
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/noc/cluster/restore.ts)_
11678
11718
 
11679
11719
  ## `codiac pkg add [DEFINITIONFILE]`
11680
11720
 
@@ -11708,7 +11748,7 @@ DESCRIPTION
11708
11748
  Configures a package to be built and published by the project.
11709
11749
  ```
11710
11750
 
11711
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pkg/add.ts)_
11751
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pkg/add.ts)_
11712
11752
 
11713
11753
  ## `codiac pkg delete [PACKAGENAME]`
11714
11754
 
@@ -11746,7 +11786,7 @@ DESCRIPTION
11746
11786
  Renders the list of packages that are configured as project exports.
11747
11787
  ```
11748
11788
 
11749
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pkg/list.ts)_
11789
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pkg/list.ts)_
11750
11790
 
11751
11791
  ## `codiac pkg patch PACKAGENAME`
11752
11792
 
@@ -11772,7 +11812,7 @@ DESCRIPTION
11772
11812
  registryUrl and/or environment.
11773
11813
  ```
11774
11814
 
11775
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pkg/patch.ts)_
11815
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pkg/patch.ts)_
11776
11816
 
11777
11817
  ## `codiac pkg remove [PACKAGENAME]`
11778
11818
 
@@ -11795,7 +11835,7 @@ ALIASES
11795
11835
  $ codiac pkg delete
11796
11836
  ```
11797
11837
 
11798
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pkg/remove.ts)_
11838
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pkg/remove.ts)_
11799
11839
 
11800
11840
  ## `codiac portal`
11801
11841
 
@@ -11828,7 +11868,7 @@ EXAMPLES
11828
11868
  $ codiac portal --to-script
11829
11869
  ```
11830
11870
 
11831
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/portal.ts)_
11871
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/portal.ts)_
11832
11872
 
11833
11873
  ## `codiac probe create [CMD]`
11834
11874
 
@@ -11949,7 +11989,7 @@ DESCRIPTION
11949
11989
  Publishes the exports (packages and images) declared in the ProjectConfig.
11950
11990
  ```
11951
11991
 
11952
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/publish.ts)_
11992
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/publish.ts)_
11953
11993
 
11954
11994
  ## `codiac pull [NAME]`
11955
11995
 
@@ -11973,7 +12013,7 @@ DESCRIPTION
11973
12013
  Pulls all commits from upstream to local.
11974
12014
  ```
11975
12015
 
11976
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pull.ts)_
12016
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pull.ts)_
11977
12017
 
11978
12018
  ## `codiac pullsecret`
11979
12019
 
@@ -12056,7 +12096,7 @@ DESCRIPTION
12056
12096
  Pushes all local commits upstream.
12057
12097
  ```
12058
12098
 
12059
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/push.ts)_
12099
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/push.ts)_
12060
12100
 
12061
12101
  ## `codiac pvc create`
12062
12102
 
@@ -12140,7 +12180,7 @@ EXAMPLES
12140
12180
  $ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
12141
12181
  ```
12142
12182
 
12143
- _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pvc/create.ts)_
12183
+ _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pvc/create.ts)_
12144
12184
 
12145
12185
  ## `codiac pvc delete`
12146
12186
 
@@ -12187,7 +12227,7 @@ EXAMPLES
12187
12227
  $ codiac pvc delete --id <fileStoreDefId> --silent
12188
12228
  ```
12189
12229
 
12190
- _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pvc/delete.ts)_
12230
+ _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pvc/delete.ts)_
12191
12231
 
12192
12232
  ## `codiac pvc get`
12193
12233
 
@@ -12228,7 +12268,7 @@ EXAMPLES
12228
12268
  $ codiac pvc get --name app-documents-share --silent -o json
12229
12269
  ```
12230
12270
 
12231
- _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pvc/get.ts)_
12271
+ _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pvc/get.ts)_
12232
12272
 
12233
12273
  ## `codiac pvc list`
12234
12274
 
@@ -12271,7 +12311,7 @@ EXAMPLES
12271
12311
  $ codiac pvc list -o yaml
12272
12312
  ```
12273
12313
 
12274
- _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/pvc/list.ts)_
12314
+ _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/pvc/list.ts)_
12275
12315
 
12276
12316
  ## `codiac relay-version`
12277
12317
 
@@ -12288,7 +12328,7 @@ EXAMPLES
12288
12328
  $ codiac relay-version
12289
12329
  ```
12290
12330
 
12291
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/relay-version.ts)_
12331
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/relay-version.ts)_
12292
12332
 
12293
12333
  ## `codiac run`
12294
12334
 
@@ -12330,7 +12370,7 @@ DESCRIPTION
12330
12370
  Runs the latest build of the api container locally.
12331
12371
  ```
12332
12372
 
12333
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/run.ts)_
12373
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/run.ts)_
12334
12374
 
12335
12375
  ## `codiac secretStore`
12336
12376
 
@@ -12448,7 +12488,7 @@ EXAMPLES
12448
12488
  $ codiac secretStore capture --echo
12449
12489
  ```
12450
12490
 
12451
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/secretStore/capture.ts)_
12491
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/secretStore/capture.ts)_
12452
12492
 
12453
12493
  ## `codiac secretStore forget`
12454
12494
 
@@ -12469,7 +12509,7 @@ DESCRIPTION
12469
12509
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
12470
12510
  ```
12471
12511
 
12472
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/secretStore/forget.ts)_
12512
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/secretStore/forget.ts)_
12473
12513
 
12474
12514
  ## `codiac secretStore list`
12475
12515
 
@@ -12514,7 +12554,7 @@ EXAMPLES
12514
12554
  $ codiac secretStore list
12515
12555
  ```
12516
12556
 
12517
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/secretStore/list.ts)_
12557
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/secretStore/list.ts)_
12518
12558
 
12519
12559
  ## `codiac shell init`
12520
12560
 
@@ -12552,7 +12592,7 @@ EXAMPLES
12552
12592
  Invoke-Expression (codiac shell init --shell powershell)
12553
12593
  ```
12554
12594
 
12555
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/shell/init.ts)_
12595
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/shell/init.ts)_
12556
12596
 
12557
12597
  ## `codiac snapshot deploy`
12558
12598
 
@@ -12580,7 +12620,7 @@ DESCRIPTION
12580
12620
  Deploys all assets in a snapshot to a target cabinet.
12581
12621
  ```
12582
12622
 
12583
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/snapshot/deploy.ts)_
12623
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/snapshot/deploy.ts)_
12584
12624
 
12585
12625
  ## `codiac snapshot list`
12586
12626
 
@@ -12629,7 +12669,7 @@ EXAMPLES
12629
12669
  $ codiac snapshot list -e myEnterprise --silent
12630
12670
  ```
12631
12671
 
12632
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/snapshot/list.ts)_
12672
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/snapshot/list.ts)_
12633
12673
 
12634
12674
  ## `codiac snapshot tag`
12635
12675
 
@@ -12672,7 +12712,7 @@ EXAMPLES
12672
12712
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
12673
12713
  ```
12674
12714
 
12675
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/snapshot/tag.ts)_
12715
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/snapshot/tag.ts)_
12676
12716
 
12677
12717
  ## `codiac snapshot untag`
12678
12718
 
@@ -12715,7 +12755,7 @@ EXAMPLES
12715
12755
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
12716
12756
  ```
12717
12757
 
12718
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/snapshot/untag.ts)_
12758
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/snapshot/untag.ts)_
12719
12759
 
12720
12760
  ## `codiac stage [FILES]`
12721
12761
 
@@ -12737,7 +12777,7 @@ DESCRIPTION
12737
12777
  Flags files to be included in the next commit.
12738
12778
  ```
12739
12779
 
12740
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/stage.ts)_
12780
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/stage.ts)_
12741
12781
 
12742
12782
  ## `codiac stash [FILE]`
12743
12783
 
@@ -12759,7 +12799,7 @@ DESCRIPTION
12759
12799
  describe the command here
12760
12800
  ```
12761
12801
 
12762
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/stash.ts)_
12802
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/stash.ts)_
12763
12803
 
12764
12804
  ## `codiac status`
12765
12805
 
@@ -12778,7 +12818,7 @@ DESCRIPTION
12778
12818
  Shows the current uncommitted changes in the current branch.
12779
12819
  ```
12780
12820
 
12781
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/status.ts)_
12821
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/status.ts)_
12782
12822
 
12783
12823
  ## `codiac stop`
12784
12824
 
@@ -12796,7 +12836,7 @@ DESCRIPTION
12796
12836
  Stops the running container for this project
12797
12837
  ```
12798
12838
 
12799
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/stop.ts)_
12839
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/stop.ts)_
12800
12840
 
12801
12841
  ## `codiac switch [NAME]`
12802
12842
 
@@ -12816,7 +12856,7 @@ DESCRIPTION
12816
12856
  Changes branch on the main project and any sourced dependencies.
12817
12857
  ```
12818
12858
 
12819
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/switch.ts)_
12859
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/switch.ts)_
12820
12860
 
12821
12861
  ## `codiac sync [NAME]`
12822
12862
 
@@ -12841,7 +12881,7 @@ DESCRIPTION
12841
12881
  Merges the given branch into the current branch.
12842
12882
  ```
12843
12883
 
12844
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/sync.ts)_
12884
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/sync.ts)_
12845
12885
 
12846
12886
  ## `codiac tenant create [NAME]`
12847
12887
 
@@ -12884,7 +12924,7 @@ EXAMPLES
12884
12924
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
12885
12925
  ```
12886
12926
 
12887
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/tenant/create.ts)_
12927
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/tenant/create.ts)_
12888
12928
 
12889
12929
  ## `codiac tenant switch [CODE]`
12890
12930
 
@@ -12924,7 +12964,7 @@ EXAMPLES
12924
12964
  $ codiac tenant switch my-tenant-code --to-script
12925
12965
  ```
12926
12966
 
12927
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/tenant/switch.ts)_
12967
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/tenant/switch.ts)_
12928
12968
 
12929
12969
  ## `codiac token [TOKENNAME]`
12930
12970
 
@@ -13046,7 +13086,7 @@ DESCRIPTION
13046
13086
  Flags files to be included in the next commit.
13047
13087
  ```
13048
13088
 
13049
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/unstage.ts)_
13089
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/unstage.ts)_
13050
13090
 
13051
13091
  ## `codiac update [CHANNEL]`
13052
13092
 
@@ -13233,7 +13273,7 @@ EXAMPLES
13233
13273
  $ codiac whereami --to-script
13234
13274
  ```
13235
13275
 
13236
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/whereami.ts)_
13276
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/whereami.ts)_
13237
13277
 
13238
13278
  ## `codiac whoami`
13239
13279
 
@@ -13275,5 +13315,5 @@ EXAMPLES
13275
13315
  $ codiac whoami --to-script
13276
13316
  ```
13277
13317
 
13278
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.242/src/commands/whoami.ts)_
13318
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.244/src/commands/whoami.ts)_
13279
13319
  <!-- commandsstop -->