@codiac.io/codiac-cli 1.3.243 → 1.3.245

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.243 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.245 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.243/src/commands/ai/agent/install.ts)_
531
+ _See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/create.ts)_
652
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/edit.ts)_
710
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/entrypoint/delete.ts)_
831
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/entrypoint/set.ts)_
900
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/list.ts)_
1008
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/obliterate.ts)_
1269
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/probe/create.ts)_
1359
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/probe/delete.ts)_
1414
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/probe/list.ts)_
1466
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/recycle.ts)_
1506
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/undeploy.ts)_
1550
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/view.ts)_
1606
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/volume/create.ts)_
1877
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/volume/delete.ts)_
1965
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/volume/list.ts)_
2014
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/asset/where.ts)_
2181
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/cabinet/allow.ts)_
2343
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/cabinet/allowed.ts)_
2391
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/enterprise/allow.ts)_
2582
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/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.245/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.243/src/commands/auth/enterprise/allowed.ts)_
2677
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/environment/allow.ts)_
2884
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/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.245/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.243/src/commands/auth/environment/allowed.ts)_
2986
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/register.ts)_
3032
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/allowed.ts)_
3079
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/assign.ts)_
3111
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/create.ts)_
3144
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/delete.ts)_
3180
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/list.ts)_
3216
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/role/unassign.ts)_
3248
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/user/invite.ts)_
3288
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/auth/user/list.ts)_
3324
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/branch.ts)_
3374
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/branch/current.ts)_
3394
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/branch/list.ts)_
3416
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/build.ts)_
3506
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/build.ts)_
3503
3507
 
3504
3508
  ## `codiac cab attach`
3505
3509
 
@@ -3636,7 +3640,7 @@ Renders the list of asset versions that are currently deployed to the given cabi
3636
3640
 
3637
3641
  ```
3638
3642
  USAGE
3639
- $ codiac cab contents [-e <value>] [-c <value>] [--echo | --to-script | [--silent ]]
3643
+ $ codiac cab contents [-e <value>] [-c <value>] [--silent | --echo | --to-script]
3640
3644
 
3641
3645
  FLAGS
3642
3646
  -c, --cabinet=<value> The name of the cabinet to inspect.
@@ -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.243/src/commands/cabinet/cluster/attach.ts)_
4255
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cabinet/cluster/attach.ts)_
4252
4256
 
4253
4257
  ## `codiac cabinet contents`
4254
4258
 
@@ -4256,7 +4260,7 @@ Renders the list of asset versions that are currently deployed to the given cabi
4256
4260
 
4257
4261
  ```
4258
4262
  USAGE
4259
- $ codiac cabinet contents [-e <value>] [-c <value>] [--echo | --to-script | [--silent ]]
4263
+ $ codiac cabinet contents [-e <value>] [-c <value>] [--silent | --echo | --to-script]
4260
4264
 
4261
4265
  FLAGS
4262
4266
  -c, --cabinet=<value> The name of the cabinet to inspect.
@@ -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.243/src/commands/cabinet/contents.ts)_
4299
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/create.ts)_
4366
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/define.ts)_
4428
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/destroy.ts)_
4486
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/detach.ts)_
4543
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/forget.ts)_
4598
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/list.ts)_
4649
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/obliterate.ts)_
4691
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/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.243/src/commands/cabinet/restore.ts)_
4758
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cabinet/restore.ts)_
4755
4759
 
4756
4760
  ## `codiac cfg add`
4757
4761
 
@@ -5050,7 +5054,7 @@ DESCRIPTION
5050
5054
  Applies settings to the Codiac CLI itself (scoped to the local machine).
5051
5055
  ```
5052
5056
 
5053
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cli.ts)_
5057
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cli.ts)_
5054
5058
 
5055
5059
  ## `codiac cluster agent configure [CLUSTER]`
5056
5060
 
@@ -5118,7 +5122,7 @@ EXAMPLES
5118
5122
  $ codiac cluster agent configure my-cluster --to-script
5119
5123
  ```
5120
5124
 
5121
- _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/agent/configure.ts)_
5125
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/agent/configure.ts)_
5122
5126
 
5123
5127
  ## `codiac cluster agent install [CLUSTER]`
5124
5128
 
@@ -5174,7 +5178,7 @@ EXAMPLES
5174
5178
  $ codiac cluster agent install my-cluster --to-script
5175
5179
  ```
5176
5180
 
5177
- _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/agent/install.ts)_
5181
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/agent/install.ts)_
5178
5182
 
5179
5183
  ## `codiac cluster agent uninstall [CLUSTER]`
5180
5184
 
@@ -5222,7 +5226,7 @@ EXAMPLES
5222
5226
  $ codiac cluster agent uninstall my-cluster --to-script
5223
5227
  ```
5224
5228
 
5225
- _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/agent/uninstall.ts)_
5229
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/agent/uninstall.ts)_
5226
5230
 
5227
5231
  ## `codiac cluster bootstrap [NAME]`
5228
5232
 
@@ -5285,7 +5289,7 @@ EXAMPLES
5285
5289
  $ codiac cluster bootstrap my-cluster --to-script
5286
5290
  ```
5287
5291
 
5288
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/bootstrap.ts)_
5292
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/bootstrap.ts)_
5289
5293
 
5290
5294
  ## `codiac cluster capture`
5291
5295
 
@@ -5370,7 +5374,7 @@ EXAMPLES
5370
5374
  $ codiac cluster connect my-fav-cluster
5371
5375
  ```
5372
5376
 
5373
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/connect.ts)_
5377
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/connect.ts)_
5374
5378
 
5375
5379
  ## `codiac cluster contents`
5376
5380
 
@@ -5378,7 +5382,7 @@ Renders the list of asset versions that are currently deployed to the given cabi
5378
5382
 
5379
5383
  ```
5380
5384
  USAGE
5381
- $ codiac cluster contents [-e <value>] [-c <value>] [--echo | --to-script | [--silent ]]
5385
+ $ codiac cluster contents [-e <value>] [-c <value>] [--silent | --echo | --to-script]
5382
5386
 
5383
5387
  FLAGS
5384
5388
  -c, --cabinet=<value> The name of the cabinet to inspect.
@@ -6035,7 +6039,7 @@ EXAMPLES
6035
6039
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
6036
6040
  ```
6037
6041
 
6038
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/install.ts)_
6042
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/install.ts)_
6039
6043
 
6040
6044
  ## `codiac cluster journal [CLUSTER]`
6041
6045
 
@@ -6324,7 +6328,7 @@ EXAMPLES
6324
6328
  $ codiac cluster stack capture my-fav-cluster
6325
6329
  ```
6326
6330
 
6327
- _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/stack/capture.ts)_
6331
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/stack/capture.ts)_
6328
6332
 
6329
6333
  ## `codiac cluster stack install [CLUSTER]`
6330
6334
 
@@ -6376,7 +6380,7 @@ EXAMPLES
6376
6380
  $ codiac cluster stack install my-cluster --to-script
6377
6381
  ```
6378
6382
 
6379
- _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/stack/install.ts)_
6383
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/stack/install.ts)_
6380
6384
 
6381
6385
  ## `codiac cluster stack list`
6382
6386
 
@@ -6542,7 +6546,7 @@ EXAMPLES
6542
6546
  $ codiac cluster start my-fav-cluster
6543
6547
  ```
6544
6548
 
6545
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/start.ts)_
6549
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/start.ts)_
6546
6550
 
6547
6551
  ## `codiac cluster stop [CLUSTER]`
6548
6552
 
@@ -6579,7 +6583,7 @@ EXAMPLES
6579
6583
  $ codiac cluster start my-fav-cluster
6580
6584
  ```
6581
6585
 
6582
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/cluster/stop.ts)_
6586
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/cluster/stop.ts)_
6583
6587
 
6584
6588
  ## `codiac cluster uninstall`
6585
6589
 
@@ -6641,7 +6645,7 @@ DESCRIPTION
6641
6645
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6642
6646
  ```
6643
6647
 
6644
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/commit.ts)_
6648
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/commit.ts)_
6645
6649
 
6646
6650
  ## `codiac config add`
6647
6651
 
@@ -6793,7 +6797,7 @@ EXAMPLES
6793
6797
  --value-type string
6794
6798
  ```
6795
6799
 
6796
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/add.ts)_
6800
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/add.ts)_
6797
6801
 
6798
6802
  ## `codiac config delete [SETTING]`
6799
6803
 
@@ -6862,7 +6866,7 @@ ALIASES
6862
6866
  $ codiac cfg delete
6863
6867
  ```
6864
6868
 
6865
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/delete.ts)_
6869
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/delete.ts)_
6866
6870
 
6867
6871
  ## `codiac config deploy`
6868
6872
 
@@ -6903,7 +6907,7 @@ EXAMPLES
6903
6907
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6904
6908
  ```
6905
6909
 
6906
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/deploy.ts)_
6910
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/deploy.ts)_
6907
6911
 
6908
6912
  ## `codiac config import`
6909
6913
 
@@ -6964,7 +6968,7 @@ EXAMPLES
6964
6968
  $ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
6965
6969
  ```
6966
6970
 
6967
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/import.ts)_
6971
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/import.ts)_
6968
6972
 
6969
6973
  ## `codiac config preview [SETTING]`
6970
6974
 
@@ -7247,7 +7251,7 @@ DESCRIPTION
7247
7251
  Shows the list of clusters.
7248
7252
  ```
7249
7253
 
7250
- _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/settings/get.ts)_
7254
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/settings/get.ts)_
7251
7255
 
7252
7256
  ## `codiac config view [SETTING]`
7253
7257
 
@@ -7312,7 +7316,7 @@ EXAMPLES
7312
7316
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
7313
7317
  ```
7314
7318
 
7315
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/config/view.ts)_
7319
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/config/view.ts)_
7316
7320
 
7317
7321
  ## `codiac csp creds list`
7318
7322
 
@@ -7360,7 +7364,7 @@ EXAMPLES
7360
7364
  $ codiac csp creds list
7361
7365
  ```
7362
7366
 
7363
- _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/csp/creds/list.ts)_
7367
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/csp/creds/list.ts)_
7364
7368
 
7365
7369
  ## `codiac csp login [PROVIDER]`
7366
7370
 
@@ -7438,7 +7442,7 @@ EXAMPLES
7438
7442
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
7439
7443
  ```
7440
7444
 
7441
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/csp/login.ts)_
7445
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/csp/login.ts)_
7442
7446
 
7443
7447
  ## `codiac csp logout [PROVIDER]`
7444
7448
 
@@ -7485,7 +7489,7 @@ EXAMPLES
7485
7489
  $ codiac csp logout azure --to-script
7486
7490
  ```
7487
7491
 
7488
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/csp/logout.ts)_
7492
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/csp/logout.ts)_
7489
7493
 
7490
7494
  ## `codiac dep [NAME]`
7491
7495
 
@@ -7506,7 +7510,7 @@ DESCRIPTION
7506
7510
  Installs a package into current project.
7507
7511
  ```
7508
7512
 
7509
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep.ts)_
7513
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep.ts)_
7510
7514
 
7511
7515
  ## `codiac dep create [URL]`
7512
7516
 
@@ -7530,7 +7534,7 @@ DESCRIPTION
7530
7534
  package version is used.
7531
7535
  ```
7532
7536
 
7533
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/create.ts)_
7537
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/create.ts)_
7534
7538
 
7535
7539
  ## `codiac dep install`
7536
7540
 
@@ -7547,7 +7551,7 @@ DESCRIPTION
7547
7551
  installs any missing dependency packages into the local project folder.
7548
7552
  ```
7549
7553
 
7550
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/install.ts)_
7554
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/install.ts)_
7551
7555
 
7552
7556
  ## `codiac dep list`
7553
7557
 
@@ -7564,7 +7568,7 @@ DESCRIPTION
7564
7568
  Shows the dependencies for the project.
7565
7569
  ```
7566
7570
 
7567
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/list.ts)_
7571
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/list.ts)_
7568
7572
 
7569
7573
  ## `codiac dep remove [NAME]`
7570
7574
 
@@ -7587,7 +7591,7 @@ DESCRIPTION
7587
7591
  Removes a dependency from the project.
7588
7592
  ```
7589
7593
 
7590
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/remove.ts)_
7594
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/remove.ts)_
7591
7595
 
7592
7596
  ## `codiac dep source [NAME]`
7593
7597
 
@@ -7613,7 +7617,7 @@ ALIASES
7613
7617
  $ codiac dep src
7614
7618
  ```
7615
7619
 
7616
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/source.ts)_
7620
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/source.ts)_
7617
7621
 
7618
7622
  ## `codiac dep src [NAME]`
7619
7623
 
@@ -7657,7 +7661,7 @@ DESCRIPTION
7657
7661
  Publishes the dependency in its current state and upgrades to it in the main project.
7658
7662
  ```
7659
7663
 
7660
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/syncup.ts)_
7664
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/syncup.ts)_
7661
7665
 
7662
7666
  ## `codiac dep unsource [NAME]`
7663
7667
 
@@ -7685,7 +7689,7 @@ ALIASES
7685
7689
  $ codiac dep unsrc
7686
7690
  ```
7687
7691
 
7688
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/unsource.ts)_
7692
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/unsource.ts)_
7689
7693
 
7690
7694
  ## `codiac dep unsrc [NAME]`
7691
7695
 
@@ -7732,7 +7736,7 @@ DESCRIPTION
7732
7736
  describe the command here
7733
7737
  ```
7734
7738
 
7735
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/dep/upgrade.ts)_
7739
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/dep/upgrade.ts)_
7736
7740
 
7737
7741
  ## `codiac deploy`
7738
7742
 
@@ -7785,7 +7789,7 @@ EXAMPLES
7785
7789
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7786
7790
  ```
7787
7791
 
7788
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/deploy.ts)_
7792
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/deploy.ts)_
7789
7793
 
7790
7794
  ## `codiac domain map [DOMAIN]`
7791
7795
 
@@ -7941,7 +7945,7 @@ EXAMPLES
7941
7945
  cod enterprise create my-enterprise-code --silent
7942
7946
  ```
7943
7947
 
7944
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/enterprise/create.ts)_
7948
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/enterprise/create.ts)_
7945
7949
 
7946
7950
  ## `codiac enterprise list`
7947
7951
 
@@ -7996,7 +8000,7 @@ EXAMPLES
7996
8000
  $ codiac enterprise list --to-script
7997
8001
  ```
7998
8002
 
7999
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/enterprise/list.ts)_
8003
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/enterprise/list.ts)_
8000
8004
 
8001
8005
  ## `codiac env add [SETTING]`
8002
8006
 
@@ -8046,7 +8050,7 @@ EXAMPLES
8046
8050
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
8047
8051
  ```
8048
8052
 
8049
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/env/add.ts)_
8053
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/env/add.ts)_
8050
8054
 
8051
8055
  ## `codiac enviro cluster attach`
8052
8056
 
@@ -8349,7 +8353,7 @@ ALIASES
8349
8353
  $ codiac infrx enviro cluster attach
8350
8354
  ```
8351
8355
 
8352
- _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/environment/cluster/attach.ts)_
8356
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/environment/cluster/attach.ts)_
8353
8357
 
8354
8358
  ## `codiac environment cluster detach`
8355
8359
 
@@ -8395,7 +8399,7 @@ ALIASES
8395
8399
  $ codiac infrx enviro cluster detach
8396
8400
  ```
8397
8401
 
8398
- _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/environment/cluster/detach.ts)_
8402
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/environment/cluster/detach.ts)_
8399
8403
 
8400
8404
  ## `codiac environment create [NAME]`
8401
8405
 
@@ -8458,7 +8462,7 @@ EXAMPLES
8458
8462
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
8459
8463
  ```
8460
8464
 
8461
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/environment/create.ts)_
8465
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/environment/create.ts)_
8462
8466
 
8463
8467
  ## `codiac environment delete [NAME]`
8464
8468
 
@@ -8519,7 +8523,7 @@ EXAMPLES
8519
8523
  $ codiac environment delete dev --enterprise main --to-script
8520
8524
  ```
8521
8525
 
8522
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/environment/delete.ts)_
8526
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/environment/delete.ts)_
8523
8527
 
8524
8528
  ## `codiac environment list`
8525
8529
 
@@ -8570,7 +8574,7 @@ EXAMPLES
8570
8574
  $ codiac environment list -e myEnterprise --silent
8571
8575
  ```
8572
8576
 
8573
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/environment/list.ts)_
8577
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/environment/list.ts)_
8574
8578
 
8575
8579
  ## `codiac fileshare capture`
8576
8580
 
@@ -8654,7 +8658,7 @@ ALIASES
8654
8658
  $ codiac fileshare capture
8655
8659
  ```
8656
8660
 
8657
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/filestore/capture.ts)_
8661
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/filestore/capture.ts)_
8658
8662
 
8659
8663
  ## `codiac filestore forget`
8660
8664
 
@@ -8701,7 +8705,7 @@ EXAMPLES
8701
8705
  $ codiac filestore forget
8702
8706
  ```
8703
8707
 
8704
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/filestore/forget.ts)_
8708
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/filestore/forget.ts)_
8705
8709
 
8706
8710
  ## `codiac filestore list`
8707
8711
 
@@ -8747,7 +8751,7 @@ EXAMPLES
8747
8751
  $ codiac filestore list
8748
8752
  ```
8749
8753
 
8750
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/filestore/list.ts)_
8754
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/filestore/list.ts)_
8751
8755
 
8752
8756
  ## `codiac help [COMMANDS]`
8753
8757
 
@@ -8833,7 +8837,7 @@ EXAMPLES
8833
8837
  $ codiac host delete
8834
8838
  ```
8835
8839
 
8836
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/host/delete.ts)_
8840
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/host/delete.ts)_
8837
8841
 
8838
8842
  ## `codiac host list [DOMAIN]`
8839
8843
 
@@ -8877,7 +8881,7 @@ EXAMPLES
8877
8881
  $ codiac host list
8878
8882
  ```
8879
8883
 
8880
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/host/list.ts)_
8884
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/host/list.ts)_
8881
8885
 
8882
8886
  ## `codiac host map [DOMAIN]`
8883
8887
 
@@ -8931,7 +8935,7 @@ EXAMPLES
8931
8935
  $ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
8932
8936
  ```
8933
8937
 
8934
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/host/map.ts)_
8938
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/host/map.ts)_
8935
8939
 
8936
8940
  ## `codiac host view [DOMAIN]`
8937
8941
 
@@ -8976,7 +8980,7 @@ EXAMPLES
8976
8980
  $ codiac host view
8977
8981
  ```
8978
8982
 
8979
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/host/view.ts)_
8983
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/host/view.ts)_
8980
8984
 
8981
8985
  ## `codiac identify [TOKENNAME]`
8982
8986
 
@@ -9048,7 +9052,7 @@ ALIASES
9048
9052
  $ codiac token
9049
9053
  ```
9050
9054
 
9051
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/identity.ts)_
9055
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/identity.ts)_
9052
9056
 
9053
9057
  ## `codiac identity delete [NAME]`
9054
9058
 
@@ -9073,7 +9077,7 @@ ALIASES
9073
9077
  $ codiac token remove
9074
9078
  ```
9075
9079
 
9076
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/identity/delete.ts)_
9080
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/identity/delete.ts)_
9077
9081
 
9078
9082
  ## `codiac identity list`
9079
9083
 
@@ -9095,7 +9099,7 @@ ALIASES
9095
9099
  $ codiac token list
9096
9100
  ```
9097
9101
 
9098
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/identity/list.ts)_
9102
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/identity/list.ts)_
9099
9103
 
9100
9104
  ## `codiac identity remove [NAME]`
9101
9105
 
@@ -9418,7 +9422,7 @@ DESCRIPTION
9418
9422
  Saves a reference to an existing container registry.
9419
9423
  ```
9420
9424
 
9421
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/imageRegistry/capture.ts)_
9425
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/imageRegistry/capture.ts)_
9422
9426
 
9423
9427
  ## `codiac imageRegistry forget`
9424
9428
 
@@ -9439,7 +9443,7 @@ DESCRIPTION
9439
9443
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
9440
9444
  ```
9441
9445
 
9442
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/imageRegistry/forget.ts)_
9446
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/imageRegistry/forget.ts)_
9443
9447
 
9444
9448
  ## `codiac imageRegistry list`
9445
9449
 
@@ -9481,7 +9485,7 @@ EXAMPLES
9481
9485
  $ codiac imageRegistry list -o yaml > registries.yaml
9482
9486
  ```
9483
9487
 
9484
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/imageRegistry/list.ts)_
9488
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/imageRegistry/list.ts)_
9485
9489
 
9486
9490
  ## `codiac imageRegistry pullSecret set`
9487
9491
 
@@ -9517,7 +9521,7 @@ ALIASES
9517
9521
  $ codiac pullsecret
9518
9522
  ```
9519
9523
 
9520
- _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/imageRegistry/pullSecret/set.ts)_
9524
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/imageRegistry/pullSecret/set.ts)_
9521
9525
 
9522
9526
  ## `codiac imageRegistry pullSecret unset`
9523
9527
 
@@ -9544,7 +9548,7 @@ ALIASES
9544
9548
  $ codiac pullsecret unset
9545
9549
  ```
9546
9550
 
9547
- _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/imageRegistry/pullSecret/unset.ts)_
9551
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/imageRegistry/pullSecret/unset.ts)_
9548
9552
 
9549
9553
  ## `codiac images add [IMAGENAME]`
9550
9554
 
@@ -9605,7 +9609,7 @@ EXAMPLES
9605
9609
  $ codiac images add your-company/your-image --to-script
9606
9610
  ```
9607
9611
 
9608
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/add.ts)_
9612
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/add.ts)_
9609
9613
 
9610
9614
  ## `codiac images list`
9611
9615
 
@@ -9628,7 +9632,7 @@ ALIASES
9628
9632
  $ codiac img list
9629
9633
  ```
9630
9634
 
9631
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/list.ts)_
9635
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/list.ts)_
9632
9636
 
9633
9637
  ## `codiac images patch IMAGENAME`
9634
9638
 
@@ -9658,7 +9662,7 @@ ALIASES
9658
9662
  $ codiac img patch
9659
9663
  ```
9660
9664
 
9661
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/patch.ts)_
9665
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/patch.ts)_
9662
9666
 
9663
9667
  ## `codiac images remove IMAGENAME`
9664
9668
 
@@ -9684,7 +9688,7 @@ ALIASES
9684
9688
  $ codiac img delete
9685
9689
  ```
9686
9690
 
9687
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/remove.ts)_
9691
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/remove.ts)_
9688
9692
 
9689
9693
  ## `codiac images version NAME`
9690
9694
 
@@ -9710,7 +9714,7 @@ ALIASES
9710
9714
  $ codiac img version get
9711
9715
  ```
9712
9716
 
9713
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/version.ts)_
9717
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/version.ts)_
9714
9718
 
9715
9719
  ## `codiac images version bump NAME`
9716
9720
 
@@ -9743,7 +9747,7 @@ ALIASES
9743
9747
  $ codiac img version bump
9744
9748
  ```
9745
9749
 
9746
- _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/images/version/bump.ts)_
9750
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/images/version/bump.ts)_
9747
9751
 
9748
9752
  ## `codiac img [IMAGENAME]`
9749
9753
 
@@ -10059,7 +10063,7 @@ EXAMPLES
10059
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
10060
10064
  ```
10061
10065
 
10062
- _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/import/cluster.ts)_
10066
+ _See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/import/cluster.ts)_
10063
10067
 
10064
10068
  ## `codiac infrx cab create [CABINET]`
10065
10069
 
@@ -10904,7 +10908,7 @@ DESCRIPTION
10904
10908
  Declares the given folder as a project root
10905
10909
  ```
10906
10910
 
10907
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/init.ts)_
10911
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/init.ts)_
10908
10912
 
10909
10913
  ## `codiac kit create`
10910
10914
 
@@ -10947,7 +10951,7 @@ EXAMPLES
10947
10951
  $ codiac kit create -e myEnterprise -a myApi --to-script
10948
10952
  ```
10949
10953
 
10950
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/kit/create.ts)_
10954
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/kit/create.ts)_
10951
10955
 
10952
10956
  ## `codiac login`
10953
10957
 
@@ -11006,7 +11010,7 @@ EXAMPLES
11006
11010
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
11007
11011
  ```
11008
11012
 
11009
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/login.ts)_
11013
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/login.ts)_
11010
11014
 
11011
11015
  ## `codiac logout`
11012
11016
 
@@ -11039,7 +11043,7 @@ EXAMPLES
11039
11043
  $ codiac logout --to-script
11040
11044
  ```
11041
11045
 
11042
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/logout.ts)_
11046
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/logout.ts)_
11043
11047
 
11044
11048
  ## `codiac merge [BRANCH]`
11045
11049
 
@@ -11060,7 +11064,7 @@ DESCRIPTION
11060
11064
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
11061
11065
  ```
11062
11066
 
11063
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/merge.ts)_
11067
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/merge.ts)_
11064
11068
 
11065
11069
  ## `codiac noc cluster capture`
11066
11070
 
@@ -11112,7 +11116,7 @@ EXAMPLES
11112
11116
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
11113
11117
  ```
11114
11118
 
11115
- _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/capture.ts)_
11119
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/capture.ts)_
11116
11120
 
11117
11121
  ## `codiac noc cluster create [NAME]`
11118
11122
 
@@ -11202,7 +11206,7 @@ FLAG DESCRIPTIONS
11202
11206
  initialization is always skipped in that mode.
11203
11207
  ```
11204
11208
 
11205
- _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/create.ts)_
11209
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/create.ts)_
11206
11210
 
11207
11211
  ## `codiac noc cluster credentials-set [NAME]`
11208
11212
 
@@ -11257,7 +11261,7 @@ EXAMPLES
11257
11261
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
11258
11262
  ```
11259
11263
 
11260
- _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/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.245/src/commands/noc/cluster/credentials-set.ts)_
11261
11265
 
11262
11266
  ## `codiac noc cluster define [NAME]`
11263
11267
 
@@ -11331,7 +11335,7 @@ EXAMPLES
11331
11335
  $ codiac noc cluster define my-cluster --to-script
11332
11336
  ```
11333
11337
 
11334
- _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/define.ts)_
11338
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/define.ts)_
11335
11339
 
11336
11340
  ## `codiac noc cluster deinit`
11337
11341
 
@@ -11371,7 +11375,7 @@ EXAMPLES
11371
11375
  $ codiac noc cluster deinit -n my-cluster --to-script
11372
11376
  ```
11373
11377
 
11374
- _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/deinit.ts)_
11378
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/deinit.ts)_
11375
11379
 
11376
11380
  ## `codiac noc cluster destroy [NAME]`
11377
11381
 
@@ -11405,7 +11409,7 @@ ALIASES
11405
11409
  $ codiac cluster destroy
11406
11410
  ```
11407
11411
 
11408
- _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/destroy.ts)_
11412
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/destroy.ts)_
11409
11413
 
11410
11414
  ## `codiac noc cluster forget`
11411
11415
 
@@ -11456,7 +11460,7 @@ EXAMPLES
11456
11460
  $ codiac noc cluster forget --running
11457
11461
  ```
11458
11462
 
11459
- _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/forget.ts)_
11463
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/forget.ts)_
11460
11464
 
11461
11465
  ## `codiac noc cluster grant`
11462
11466
 
@@ -11494,7 +11498,7 @@ EXAMPLES
11494
11498
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
11495
11499
  ```
11496
11500
 
11497
- _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/grant.ts)_
11501
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/grant.ts)_
11498
11502
 
11499
11503
  ## `codiac noc cluster init`
11500
11504
 
@@ -11540,7 +11544,7 @@ EXAMPLES
11540
11544
  $ codiac noc cluster init -n my-cluster --to-script
11541
11545
  ```
11542
11546
 
11543
- _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/init.ts)_
11547
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/init.ts)_
11544
11548
 
11545
11549
  ## `codiac noc cluster journal [CLUSTER]`
11546
11550
 
@@ -11589,7 +11593,7 @@ EXAMPLES
11589
11593
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
11590
11594
  ```
11591
11595
 
11592
- _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/journal.ts)_
11596
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/journal.ts)_
11593
11597
 
11594
11598
  ## `codiac noc cluster list`
11595
11599
 
@@ -11650,7 +11654,7 @@ EXAMPLES
11650
11654
  $ codiac noc cluster list -e myEnterprise --to-script
11651
11655
  ```
11652
11656
 
11653
- _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/list.ts)_
11657
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/list.ts)_
11654
11658
 
11655
11659
  ## `codiac noc cluster restore [NAME]`
11656
11660
 
@@ -11710,7 +11714,7 @@ EXAMPLES
11710
11714
  $ codiac noc cluster restore prod-cluster-1 --to-script
11711
11715
  ```
11712
11716
 
11713
- _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/noc/cluster/restore.ts)_
11717
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/noc/cluster/restore.ts)_
11714
11718
 
11715
11719
  ## `codiac pkg add [DEFINITIONFILE]`
11716
11720
 
@@ -11744,7 +11748,7 @@ DESCRIPTION
11744
11748
  Configures a package to be built and published by the project.
11745
11749
  ```
11746
11750
 
11747
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pkg/add.ts)_
11751
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pkg/add.ts)_
11748
11752
 
11749
11753
  ## `codiac pkg delete [PACKAGENAME]`
11750
11754
 
@@ -11782,7 +11786,7 @@ DESCRIPTION
11782
11786
  Renders the list of packages that are configured as project exports.
11783
11787
  ```
11784
11788
 
11785
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pkg/list.ts)_
11789
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pkg/list.ts)_
11786
11790
 
11787
11791
  ## `codiac pkg patch PACKAGENAME`
11788
11792
 
@@ -11808,7 +11812,7 @@ DESCRIPTION
11808
11812
  registryUrl and/or environment.
11809
11813
  ```
11810
11814
 
11811
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pkg/patch.ts)_
11815
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pkg/patch.ts)_
11812
11816
 
11813
11817
  ## `codiac pkg remove [PACKAGENAME]`
11814
11818
 
@@ -11831,7 +11835,7 @@ ALIASES
11831
11835
  $ codiac pkg delete
11832
11836
  ```
11833
11837
 
11834
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pkg/remove.ts)_
11838
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pkg/remove.ts)_
11835
11839
 
11836
11840
  ## `codiac portal`
11837
11841
 
@@ -11864,7 +11868,7 @@ EXAMPLES
11864
11868
  $ codiac portal --to-script
11865
11869
  ```
11866
11870
 
11867
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/portal.ts)_
11871
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/portal.ts)_
11868
11872
 
11869
11873
  ## `codiac probe create [CMD]`
11870
11874
 
@@ -11985,7 +11989,7 @@ DESCRIPTION
11985
11989
  Publishes the exports (packages and images) declared in the ProjectConfig.
11986
11990
  ```
11987
11991
 
11988
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/publish.ts)_
11992
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/publish.ts)_
11989
11993
 
11990
11994
  ## `codiac pull [NAME]`
11991
11995
 
@@ -12009,7 +12013,7 @@ DESCRIPTION
12009
12013
  Pulls all commits from upstream to local.
12010
12014
  ```
12011
12015
 
12012
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pull.ts)_
12016
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pull.ts)_
12013
12017
 
12014
12018
  ## `codiac pullsecret`
12015
12019
 
@@ -12092,7 +12096,7 @@ DESCRIPTION
12092
12096
  Pushes all local commits upstream.
12093
12097
  ```
12094
12098
 
12095
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/push.ts)_
12099
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/push.ts)_
12096
12100
 
12097
12101
  ## `codiac pvc create`
12098
12102
 
@@ -12176,7 +12180,7 @@ EXAMPLES
12176
12180
  $ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
12177
12181
  ```
12178
12182
 
12179
- _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pvc/create.ts)_
12183
+ _See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pvc/create.ts)_
12180
12184
 
12181
12185
  ## `codiac pvc delete`
12182
12186
 
@@ -12223,7 +12227,7 @@ EXAMPLES
12223
12227
  $ codiac pvc delete --id <fileStoreDefId> --silent
12224
12228
  ```
12225
12229
 
12226
- _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pvc/delete.ts)_
12230
+ _See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pvc/delete.ts)_
12227
12231
 
12228
12232
  ## `codiac pvc get`
12229
12233
 
@@ -12264,7 +12268,7 @@ EXAMPLES
12264
12268
  $ codiac pvc get --name app-documents-share --silent -o json
12265
12269
  ```
12266
12270
 
12267
- _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pvc/get.ts)_
12271
+ _See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pvc/get.ts)_
12268
12272
 
12269
12273
  ## `codiac pvc list`
12270
12274
 
@@ -12307,7 +12311,7 @@ EXAMPLES
12307
12311
  $ codiac pvc list -o yaml
12308
12312
  ```
12309
12313
 
12310
- _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/pvc/list.ts)_
12314
+ _See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/pvc/list.ts)_
12311
12315
 
12312
12316
  ## `codiac relay-version`
12313
12317
 
@@ -12324,7 +12328,7 @@ EXAMPLES
12324
12328
  $ codiac relay-version
12325
12329
  ```
12326
12330
 
12327
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/relay-version.ts)_
12331
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/relay-version.ts)_
12328
12332
 
12329
12333
  ## `codiac run`
12330
12334
 
@@ -12366,7 +12370,7 @@ DESCRIPTION
12366
12370
  Runs the latest build of the api container locally.
12367
12371
  ```
12368
12372
 
12369
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/run.ts)_
12373
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/run.ts)_
12370
12374
 
12371
12375
  ## `codiac secretStore`
12372
12376
 
@@ -12484,7 +12488,7 @@ EXAMPLES
12484
12488
  $ codiac secretStore capture --echo
12485
12489
  ```
12486
12490
 
12487
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/secretStore/capture.ts)_
12491
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/secretStore/capture.ts)_
12488
12492
 
12489
12493
  ## `codiac secretStore forget`
12490
12494
 
@@ -12505,7 +12509,7 @@ DESCRIPTION
12505
12509
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
12506
12510
  ```
12507
12511
 
12508
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/secretStore/forget.ts)_
12512
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/secretStore/forget.ts)_
12509
12513
 
12510
12514
  ## `codiac secretStore list`
12511
12515
 
@@ -12550,7 +12554,7 @@ EXAMPLES
12550
12554
  $ codiac secretStore list
12551
12555
  ```
12552
12556
 
12553
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/secretStore/list.ts)_
12557
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/secretStore/list.ts)_
12554
12558
 
12555
12559
  ## `codiac shell init`
12556
12560
 
@@ -12588,7 +12592,7 @@ EXAMPLES
12588
12592
  Invoke-Expression (codiac shell init --shell powershell)
12589
12593
  ```
12590
12594
 
12591
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/shell/init.ts)_
12595
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/shell/init.ts)_
12592
12596
 
12593
12597
  ## `codiac snapshot deploy`
12594
12598
 
@@ -12616,7 +12620,7 @@ DESCRIPTION
12616
12620
  Deploys all assets in a snapshot to a target cabinet.
12617
12621
  ```
12618
12622
 
12619
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/snapshot/deploy.ts)_
12623
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/snapshot/deploy.ts)_
12620
12624
 
12621
12625
  ## `codiac snapshot list`
12622
12626
 
@@ -12665,7 +12669,7 @@ EXAMPLES
12665
12669
  $ codiac snapshot list -e myEnterprise --silent
12666
12670
  ```
12667
12671
 
12668
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/snapshot/list.ts)_
12672
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/snapshot/list.ts)_
12669
12673
 
12670
12674
  ## `codiac snapshot tag`
12671
12675
 
@@ -12708,7 +12712,7 @@ EXAMPLES
12708
12712
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
12709
12713
  ```
12710
12714
 
12711
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/snapshot/tag.ts)_
12715
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/snapshot/tag.ts)_
12712
12716
 
12713
12717
  ## `codiac snapshot untag`
12714
12718
 
@@ -12751,7 +12755,7 @@ EXAMPLES
12751
12755
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
12752
12756
  ```
12753
12757
 
12754
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/snapshot/untag.ts)_
12758
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/snapshot/untag.ts)_
12755
12759
 
12756
12760
  ## `codiac stage [FILES]`
12757
12761
 
@@ -12773,7 +12777,7 @@ DESCRIPTION
12773
12777
  Flags files to be included in the next commit.
12774
12778
  ```
12775
12779
 
12776
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/stage.ts)_
12780
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/stage.ts)_
12777
12781
 
12778
12782
  ## `codiac stash [FILE]`
12779
12783
 
@@ -12795,7 +12799,7 @@ DESCRIPTION
12795
12799
  describe the command here
12796
12800
  ```
12797
12801
 
12798
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/stash.ts)_
12802
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/stash.ts)_
12799
12803
 
12800
12804
  ## `codiac status`
12801
12805
 
@@ -12814,7 +12818,7 @@ DESCRIPTION
12814
12818
  Shows the current uncommitted changes in the current branch.
12815
12819
  ```
12816
12820
 
12817
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/status.ts)_
12821
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/status.ts)_
12818
12822
 
12819
12823
  ## `codiac stop`
12820
12824
 
@@ -12832,7 +12836,7 @@ DESCRIPTION
12832
12836
  Stops the running container for this project
12833
12837
  ```
12834
12838
 
12835
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/stop.ts)_
12839
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/stop.ts)_
12836
12840
 
12837
12841
  ## `codiac switch [NAME]`
12838
12842
 
@@ -12852,7 +12856,7 @@ DESCRIPTION
12852
12856
  Changes branch on the main project and any sourced dependencies.
12853
12857
  ```
12854
12858
 
12855
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/switch.ts)_
12859
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/switch.ts)_
12856
12860
 
12857
12861
  ## `codiac sync [NAME]`
12858
12862
 
@@ -12877,7 +12881,7 @@ DESCRIPTION
12877
12881
  Merges the given branch into the current branch.
12878
12882
  ```
12879
12883
 
12880
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/sync.ts)_
12884
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/sync.ts)_
12881
12885
 
12882
12886
  ## `codiac tenant create [NAME]`
12883
12887
 
@@ -12920,7 +12924,7 @@ EXAMPLES
12920
12924
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
12921
12925
  ```
12922
12926
 
12923
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/tenant/create.ts)_
12927
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/tenant/create.ts)_
12924
12928
 
12925
12929
  ## `codiac tenant switch [CODE]`
12926
12930
 
@@ -12960,7 +12964,7 @@ EXAMPLES
12960
12964
  $ codiac tenant switch my-tenant-code --to-script
12961
12965
  ```
12962
12966
 
12963
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/tenant/switch.ts)_
12967
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/tenant/switch.ts)_
12964
12968
 
12965
12969
  ## `codiac token [TOKENNAME]`
12966
12970
 
@@ -13082,7 +13086,7 @@ DESCRIPTION
13082
13086
  Flags files to be included in the next commit.
13083
13087
  ```
13084
13088
 
13085
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/unstage.ts)_
13089
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/unstage.ts)_
13086
13090
 
13087
13091
  ## `codiac update [CHANNEL]`
13088
13092
 
@@ -13269,7 +13273,7 @@ EXAMPLES
13269
13273
  $ codiac whereami --to-script
13270
13274
  ```
13271
13275
 
13272
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/whereami.ts)_
13276
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/whereami.ts)_
13273
13277
 
13274
13278
  ## `codiac whoami`
13275
13279
 
@@ -13311,5 +13315,5 @@ EXAMPLES
13311
13315
  $ codiac whoami --to-script
13312
13316
  ```
13313
13317
 
13314
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.243/src/commands/whoami.ts)_
13318
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.245/src/commands/whoami.ts)_
13315
13319
  <!-- commandsstop -->