@codiac.io/codiac-cli 1.3.193 → 1.3.195

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.193 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.195 linux-x64 node-v22.15.1
25
25
  $ codiac --help [COMMAND]
26
26
  USAGE
27
27
  $ codiac COMMAND
@@ -471,8 +471,8 @@ Creates a new asset in the given enterprise from an image that exists in a conta
471
471
  ```
472
472
  USAGE
473
473
  $ codiac asset create [-h] [-k <value> | -i <value> | -r <value>] [-n <value>] [-c <value>] [-e <value>] [-p
474
- <value>] [--private -g] [-o] [--allow-http] [--disable-https] [--helm] [--take-defaults | [--silent | --echo |
475
- --to-script]]
474
+ <value>] [--private -g] [-o] [--allow-http] [--disable-https] [--helm] [--deploy-condition-because <value>
475
+ --deploy-condition <value>] [--take-defaults | [--silent | --echo | --to-script]]
476
476
 
477
477
  FLAGS
478
478
  -c, --code=<value>
@@ -514,6 +514,14 @@ FLAGS
514
514
  getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
515
515
  automatic redirect to https on any inbound http requests. (optional: defaults to false).
516
516
 
517
+ --deploy-condition=<value>
518
+ JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
519
+ https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
520
+ environment, and asset variables are all in scope.
521
+
522
+ --deploy-condition-because=<value>
523
+ Human-readable explanation shown in the deploy output when this asset is skipped.
524
+
517
525
  --disable-https
518
526
  (Advanced) (optional: defaults to false) Enable this setting to remove support for https (aka: SSL/TLS) in the
519
527
  ingress controller. Use this setting when tls terminates upstream of the cluster and its ingress controller.
@@ -547,9 +555,23 @@ DESCRIPTION
547
555
 
548
556
  ALIASES
549
557
  $ codiac asset new
558
+
559
+ EXAMPLES
560
+ Create an asset interactively.
561
+
562
+ $ codiac asset create
563
+
564
+ Create an asset with a deploy condition so it is skipped on AKS clusters (which include metrics-server natively).
565
+
566
+ $ codiac asset create -e myEnterprise -n metrics-server --deploy-condition "cluster.provider != 'azure'" \
567
+ --deploy-condition-because 'AKS clusters include metrics-server natively.'
568
+
569
+ Create an asset that only deploys to production environments.
570
+
571
+ $ codiac asset create -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
550
572
  ```
551
573
 
552
- _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/create.ts)_
574
+ _See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/create.ts)_
553
575
 
554
576
  ## `codiac asset edit`
555
577
 
@@ -557,35 +579,57 @@ Changes asset attributes.
557
579
 
558
580
  ```
559
581
  USAGE
560
- $ codiac asset edit [-e <value>] [-c <value>] [--echo | --to-script | [--silent -n <value>]]
582
+ $ codiac asset edit [-e <value>] [-c <value>] [--deploy-condition-because <value> --deploy-condition <value>]
583
+ [--remove-deploy-condition | ] [--echo | --to-script | [--silent -n <value>]]
561
584
 
562
585
  FLAGS
563
- -c, --code=<value> The host name to assign this asset in the domain url. eg: 'myasset' in
564
- 'myasset.your-domain.com' (Optional: defaults to the asset name).
565
- -e, --enterprise=<value> The name of the enterprise in which this asset resides. (defaults to the current enterprise
566
- context). NOTE: The enterprise assignment for an asset is immutable and cannot be modified;
567
- this flag is used only for identifying the asset.
568
- -n, --name=<value> The name of the asset to edit. NOTE: The asset name is immutable and cannot be modified;
569
- this flag is used only for identifying the asset.
570
- --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
571
- before final execution.
572
- --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
573
- invalid arguments.
574
- --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
575
- execution.
586
+ -c, --code=<value> The host name to assign this asset in the domain url. eg: 'myasset' in
587
+ 'myasset.your-domain.com' (Optional: defaults to the asset name).
588
+ -e, --enterprise=<value> The name of the enterprise in which this asset resides. (defaults to the current
589
+ enterprise context). NOTE: The enterprise assignment for an asset is immutable
590
+ and cannot be modified; this flag is used only for identifying the asset.
591
+ -n, --name=<value> The name of the asset to edit. NOTE: The asset name is immutable and cannot be
592
+ modified; this flag is used only for identifying the asset.
593
+ --deploy-condition=<value> JSONata expression evaluated at deploy time; when falsy the asset is skipped
594
+ rather than deployed (see https://jsonata.org for syntax). Uses the same
595
+ expression context as config conditions: cabinet, cluster, environment, and asset
596
+ variables are all in scope.
597
+ --deploy-condition-because=<value> Human-readable explanation shown in the deploy output when this asset is skipped.
598
+ --echo Echo interaction mode; renders the equivalent non-interactive cli command for
599
+ future use before final execution.
600
+ --remove-deploy-condition Removes any existing deploy condition from this asset so it always deploys.
601
+ --silent Non-Interactive mode; executes without any user interaction and fails on any
602
+ missing or invalid arguments.
603
+ --to-script Toscript interaction mode; renders the equivalent non-interactive cli command
604
+ WITHOUT any execution.
576
605
 
577
606
  DESCRIPTION
578
607
  Changes asset attributes.
579
608
 
580
609
  EXAMPLES
581
- $ codiac asset edit
610
+ Edit an asset interactively.
611
+
612
+ $ codiac asset edit
613
+
614
+ Edit a specific asset.
615
+
616
+ $ codiac asset edit -e main -n my-api
582
617
 
583
- $ codiac asset edit -n my-api
618
+ Set a deploy condition so the asset is skipped on AKS clusters (which include metrics-server natively).
584
619
 
585
- $ codiac asset edit -e main -n my-api
620
+ $ codiac asset edit -e myEnterprise -n metrics-server --deploy-condition "cluster.provider != 'azure'" \
621
+ --deploy-condition-because 'AKS clusters include metrics-server natively.' --silent
622
+
623
+ Set a deploy condition so the asset only deploys in production.
624
+
625
+ $ codiac asset edit -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'" --silent
626
+
627
+ Remove a deploy condition so the asset always deploys.
628
+
629
+ $ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
586
630
  ```
587
631
 
588
- _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/edit.ts)_
632
+ _See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/edit.ts)_
589
633
 
590
634
  ## `codiac asset entrypoint`
591
635
 
@@ -706,7 +750,7 @@ EXAMPLES
706
750
  $ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
707
751
  ```
708
752
 
709
- _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/entrypoint/delete.ts)_
753
+ _See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/entrypoint/delete.ts)_
710
754
 
711
755
  ## `codiac asset entrypoint set`
712
756
 
@@ -775,7 +819,7 @@ EXAMPLES
775
819
  --input=/backup/workflows'
776
820
  ```
777
821
 
778
- _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/entrypoint/set.ts)_
822
+ _See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/entrypoint/set.ts)_
779
823
 
780
824
  ## `codiac asset get [CMD]`
781
825
 
@@ -882,7 +926,7 @@ EXAMPLES
882
926
  $ codiac asset list -e myEnterprise --to-script
883
927
  ```
884
928
 
885
- _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/list.ts)_
929
+ _See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/list.ts)_
886
930
 
887
931
  ## `codiac asset mon [CMD]`
888
932
 
@@ -997,8 +1041,8 @@ Creates a new asset in the given enterprise from an image that exists in a conta
997
1041
  ```
998
1042
  USAGE
999
1043
  $ codiac asset new [-h] [-k <value> | -i <value> | -r <value>] [-n <value>] [-c <value>] [-e <value>] [-p
1000
- <value>] [--private -g] [-o] [--allow-http] [--disable-https] [--helm] [--take-defaults | [--silent | --echo |
1001
- --to-script]]
1044
+ <value>] [--private -g] [-o] [--allow-http] [--disable-https] [--helm] [--deploy-condition-because <value>
1045
+ --deploy-condition <value>] [--take-defaults | [--silent | --echo | --to-script]]
1002
1046
 
1003
1047
  FLAGS
1004
1048
  -c, --code=<value>
@@ -1040,6 +1084,14 @@ FLAGS
1040
1084
  getting redirected to https. That is, Setting this to true will prevent the ingress controller from invoking an
1041
1085
  automatic redirect to https on any inbound http requests. (optional: defaults to false).
1042
1086
 
1087
+ --deploy-condition=<value>
1088
+ JSONata expression evaluated at deploy time; when falsy the asset is skipped rather than deployed (see
1089
+ https://jsonata.org for syntax). Uses the same expression context as config conditions: cabinet, cluster,
1090
+ environment, and asset variables are all in scope.
1091
+
1092
+ --deploy-condition-because=<value>
1093
+ Human-readable explanation shown in the deploy output when this asset is skipped.
1094
+
1043
1095
  --disable-https
1044
1096
  (Advanced) (optional: defaults to false) Enable this setting to remove support for https (aka: SSL/TLS) in the
1045
1097
  ingress controller. Use this setting when tls terminates upstream of the cluster and its ingress controller.
@@ -1073,6 +1125,20 @@ DESCRIPTION
1073
1125
 
1074
1126
  ALIASES
1075
1127
  $ codiac asset new
1128
+
1129
+ EXAMPLES
1130
+ Create an asset interactively.
1131
+
1132
+ $ codiac asset new
1133
+
1134
+ Create an asset with a deploy condition so it is skipped on AKS clusters (which include metrics-server natively).
1135
+
1136
+ $ codiac asset new -e myEnterprise -n metrics-server --deploy-condition "cluster.provider != 'azure'" \
1137
+ --deploy-condition-because 'AKS clusters include metrics-server natively.'
1138
+
1139
+ Create an asset that only deploys to production environments.
1140
+
1141
+ $ codiac asset new -e myEnterprise -n my-api --deploy-condition "environment.name = 'production'"
1076
1142
  ```
1077
1143
 
1078
1144
  ## `codiac asset obliterate`
@@ -1107,7 +1173,7 @@ EXAMPLES
1107
1173
  $ codiac asset obliterate -e main -n my-api
1108
1174
  ```
1109
1175
 
1110
- _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/obliterate.ts)_
1176
+ _See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/obliterate.ts)_
1111
1177
 
1112
1178
  ## `codiac asset probe create [CMD]`
1113
1179
 
@@ -1197,7 +1263,7 @@ EXAMPLES
1197
1263
  $ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
1198
1264
  ```
1199
1265
 
1200
- _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/probe/create.ts)_
1266
+ _See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/probe/create.ts)_
1201
1267
 
1202
1268
  ## `codiac asset probe delete`
1203
1269
 
@@ -1252,7 +1318,7 @@ EXAMPLES
1252
1318
  $ codiac asset probe delete
1253
1319
  ```
1254
1320
 
1255
- _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/probe/delete.ts)_
1321
+ _See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/probe/delete.ts)_
1256
1322
 
1257
1323
  ## `codiac asset probe list`
1258
1324
 
@@ -1304,7 +1370,7 @@ EXAMPLES
1304
1370
  $ codiac asset probe list
1305
1371
  ```
1306
1372
 
1307
- _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/probe/list.ts)_
1373
+ _See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/probe/list.ts)_
1308
1374
 
1309
1375
  ## `codiac asset recycle`
1310
1376
 
@@ -1344,7 +1410,7 @@ DESCRIPTION
1344
1410
  Deploys a given asset to a given cabinet. Defaults to current version.
1345
1411
  ```
1346
1412
 
1347
- _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/recycle.ts)_
1413
+ _See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/recycle.ts)_
1348
1414
 
1349
1415
  ## `codiac asset undeploy`
1350
1416
 
@@ -1388,7 +1454,7 @@ EXAMPLES
1388
1454
  $ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
1389
1455
  ```
1390
1456
 
1391
- _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/undeploy.ts)_
1457
+ _See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/undeploy.ts)_
1392
1458
 
1393
1459
  ## `codiac asset view [CMD]`
1394
1460
 
@@ -1443,7 +1509,7 @@ ALIASES
1443
1509
  $ codiac asset get
1444
1510
  ```
1445
1511
 
1446
- _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/view.ts)_
1512
+ _See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/view.ts)_
1447
1513
 
1448
1514
  ## `codiac asset vol add [MOUNTPATH]`
1449
1515
 
@@ -1714,7 +1780,7 @@ ALIASES
1714
1780
  $ codiac asset volume add
1715
1781
  ```
1716
1782
 
1717
- _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/volume/create.ts)_
1783
+ _See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/volume/create.ts)_
1718
1784
 
1719
1785
  ## `codiac asset volume del`
1720
1786
 
@@ -1802,7 +1868,7 @@ EXAMPLES
1802
1868
  $ codiac asset volume delete -e myEnterprise -n myMount --to-script
1803
1869
  ```
1804
1870
 
1805
- _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/volume/delete.ts)_
1871
+ _See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/volume/delete.ts)_
1806
1872
 
1807
1873
  ## `codiac asset volume list`
1808
1874
 
@@ -1851,7 +1917,7 @@ EXAMPLES
1851
1917
  $ codiac asset volume list -e myEnterprise --silent
1852
1918
  ```
1853
1919
 
1854
- _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/volume/list.ts)_
1920
+ _See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/volume/list.ts)_
1855
1921
 
1856
1922
  ## `codiac asset volumes del`
1857
1923
 
@@ -2018,7 +2084,7 @@ EXAMPLES
2018
2084
  $ codiac asset where -e main -a my-api --silent
2019
2085
  ```
2020
2086
 
2021
- _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/asset/where.ts)_
2087
+ _See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/asset/where.ts)_
2022
2088
 
2023
2089
  ## `codiac auth cab allow`
2024
2090
 
@@ -2180,7 +2246,7 @@ EXAMPLES
2180
2246
  $ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
2181
2247
  ```
2182
2248
 
2183
- _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/cabinet/allow.ts)_
2249
+ _See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/cabinet/allow.ts)_
2184
2250
 
2185
2251
  ## `codiac auth cabinet allowed`
2186
2252
 
@@ -2228,7 +2294,7 @@ EXAMPLES
2228
2294
  $ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
2229
2295
  ```
2230
2296
 
2231
- _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/cabinet/allowed.ts)_
2297
+ _See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/cabinet/allowed.ts)_
2232
2298
 
2233
2299
  ## `codiac auth ent allow`
2234
2300
 
@@ -2419,7 +2485,7 @@ EXAMPLES
2419
2485
  $ codiac auth enterprise allow -r deployer -p none
2420
2486
  ```
2421
2487
 
2422
- _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/enterprise/allow.ts)_
2488
+ _See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/enterprise/allow.ts)_
2423
2489
 
2424
2490
  ## `codiac auth enterprise allow onEnvironments`
2425
2491
 
@@ -2473,7 +2539,7 @@ EXAMPLES
2473
2539
  $ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
2474
2540
  ```
2475
2541
 
2476
- _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2542
+ _See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/enterprise/allow/onEnvironments.ts)_
2477
2543
 
2478
2544
  ## `codiac auth enterprise allowed`
2479
2545
 
@@ -2514,7 +2580,7 @@ EXAMPLES
2514
2580
  $ codiac auth enterprise allowed --enterprise modeling
2515
2581
  ```
2516
2582
 
2517
- _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/enterprise/allowed.ts)_
2583
+ _See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/enterprise/allowed.ts)_
2518
2584
 
2519
2585
  ## `codiac auth env allowed`
2520
2586
 
@@ -2721,7 +2787,7 @@ EXAMPLES
2721
2787
  $ codiac auth environment allow -e qa -r productmanager -p read
2722
2788
  ```
2723
2789
 
2724
- _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/environment/allow.ts)_
2790
+ _See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/environment/allow.ts)_
2725
2791
 
2726
2792
  ## `codiac auth environment allow onCabinets`
2727
2793
 
@@ -2778,7 +2844,7 @@ EXAMPLES
2778
2844
  $ codiac auth environment allow onCabinets -e qa -r productmanager -p read
2779
2845
  ```
2780
2846
 
2781
- _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/environment/allow/onCabinets.ts)_
2847
+ _See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/environment/allow/onCabinets.ts)_
2782
2848
 
2783
2849
  ## `codiac auth environment allowed`
2784
2850
 
@@ -2823,7 +2889,7 @@ EXAMPLES
2823
2889
  $ codiac auth environment allowed --enterprise modeling -e dev
2824
2890
  ```
2825
2891
 
2826
- _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/environment/allowed.ts)_
2892
+ _See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/environment/allowed.ts)_
2827
2893
 
2828
2894
  ## `codiac auth register`
2829
2895
 
@@ -2869,7 +2935,7 @@ EXAMPLES
2869
2935
  $ codiac auth register
2870
2936
  ```
2871
2937
 
2872
- _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/register.ts)_
2938
+ _See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/register.ts)_
2873
2939
 
2874
2940
  ## `codiac auth role allowed [NAME]`
2875
2941
 
@@ -2916,7 +2982,7 @@ EXAMPLES
2916
2982
  $ codiac auth role allowed -n deployer -e main
2917
2983
  ```
2918
2984
 
2919
- _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/allowed.ts)_
2985
+ _See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/allowed.ts)_
2920
2986
 
2921
2987
  ## `codiac auth role assign`
2922
2988
 
@@ -2948,7 +3014,7 @@ EXAMPLES
2948
3014
  $ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
2949
3015
  ```
2950
3016
 
2951
- _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/assign.ts)_
3017
+ _See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/assign.ts)_
2952
3018
 
2953
3019
  ## `codiac auth role create [NAME]`
2954
3020
 
@@ -2981,7 +3047,7 @@ EXAMPLES
2981
3047
  $ codiac auth role create -n deployer
2982
3048
  ```
2983
3049
 
2984
- _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/create.ts)_
3050
+ _See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/create.ts)_
2985
3051
 
2986
3052
  ## `codiac auth role delete [NAME]`
2987
3053
 
@@ -3017,7 +3083,7 @@ EXAMPLES
3017
3083
  $ codiac auth role delete --id abc123def456
3018
3084
  ```
3019
3085
 
3020
- _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/delete.ts)_
3086
+ _See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/delete.ts)_
3021
3087
 
3022
3088
  ## `codiac auth role list`
3023
3089
 
@@ -3053,7 +3119,7 @@ EXAMPLES
3053
3119
  $ codiac auth role list -o yaml > roles.yaml
3054
3120
  ```
3055
3121
 
3056
- _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/list.ts)_
3122
+ _See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/list.ts)_
3057
3123
 
3058
3124
  ## `codiac auth role unassign`
3059
3125
 
@@ -3085,7 +3151,7 @@ EXAMPLES
3085
3151
  $ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
3086
3152
  ```
3087
3153
 
3088
- _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/role/unassign.ts)_
3154
+ _See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/role/unassign.ts)_
3089
3155
 
3090
3156
  ## `codiac auth user invite`
3091
3157
 
@@ -3125,7 +3191,7 @@ EXAMPLES
3125
3191
  $ codiac auth user invite
3126
3192
  ```
3127
3193
 
3128
- _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/user/invite.ts)_
3194
+ _See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/user/invite.ts)_
3129
3195
 
3130
3196
  ## `codiac auth user list`
3131
3197
 
@@ -3161,7 +3227,7 @@ EXAMPLES
3161
3227
  $ codiac auth user list -o yaml > users.yaml
3162
3228
  ```
3163
3229
 
3164
- _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/auth/user/list.ts)_
3230
+ _See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/auth/user/list.ts)_
3165
3231
 
3166
3232
  ## `codiac autocomplete [SHELL]`
3167
3233
 
@@ -3211,7 +3277,7 @@ DESCRIPTION
3211
3277
  Creates a new branch for the parent project and any sourced dependencies.
3212
3278
  ```
3213
3279
 
3214
- _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/branch.ts)_
3280
+ _See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/branch.ts)_
3215
3281
 
3216
3282
  ## `codiac branch current`
3217
3283
 
@@ -3231,7 +3297,7 @@ ALIASES
3231
3297
  $ codiac branches current
3232
3298
  ```
3233
3299
 
3234
- _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/branch/current.ts)_
3300
+ _See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/branch/current.ts)_
3235
3301
 
3236
3302
  ## `codiac branch list`
3237
3303
 
@@ -3253,7 +3319,7 @@ ALIASES
3253
3319
  $ codiac branches list
3254
3320
  ```
3255
3321
 
3256
- _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/branch/list.ts)_
3322
+ _See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/branch/list.ts)_
3257
3323
 
3258
3324
  ## `codiac branches current`
3259
3325
 
@@ -3343,7 +3409,7 @@ DESCRIPTION
3343
3409
  Builds the project and the docker container
3344
3410
  ```
3345
3411
 
3346
- _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/build.ts)_
3412
+ _See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/build.ts)_
3347
3413
 
3348
3414
  ## `codiac cab cluster attach`
3349
3415
 
@@ -3943,7 +4009,7 @@ EXAMPLES
3943
4009
  prod-cluster-1 --to-script
3944
4010
  ```
3945
4011
 
3946
- _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/cluster/attach.ts)_
4012
+ _See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/cluster/attach.ts)_
3947
4013
 
3948
4014
  ## `codiac cabinet contents`
3949
4015
 
@@ -3987,7 +4053,7 @@ EXAMPLES
3987
4053
  $ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
3988
4054
  ```
3989
4055
 
3990
- _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/contents.ts)_
4056
+ _See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/contents.ts)_
3991
4057
 
3992
4058
  ## `codiac cabinet create [CABINET]`
3993
4059
 
@@ -4054,7 +4120,7 @@ EXAMPLES
4054
4120
  cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
4055
4121
  ```
4056
4122
 
4057
- _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/create.ts)_
4123
+ _See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/create.ts)_
4058
4124
 
4059
4125
  ## `codiac cabinet define [CABINET]`
4060
4126
 
@@ -4116,7 +4182,7 @@ EXAMPLES
4116
4182
  $ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
4117
4183
  ```
4118
4184
 
4119
- _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/define.ts)_
4185
+ _See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/define.ts)_
4120
4186
 
4121
4187
  ## `codiac cabinet destroy [CABINET]`
4122
4188
 
@@ -4174,7 +4240,7 @@ EXAMPLES
4174
4240
  --environment dev --silent
4175
4241
  ```
4176
4242
 
4177
- _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/destroy.ts)_
4243
+ _See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/destroy.ts)_
4178
4244
 
4179
4245
  ## `codiac cabinet detach [CABINET]`
4180
4246
 
@@ -4231,7 +4297,7 @@ EXAMPLES
4231
4297
  main --environment dev
4232
4298
  ```
4233
4299
 
4234
- _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/detach.ts)_
4300
+ _See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/detach.ts)_
4235
4301
 
4236
4302
  ## `codiac cabinet forget [CABINET]`
4237
4303
 
@@ -4286,7 +4352,7 @@ EXAMPLES
4286
4352
  $ codiac cabinet forget --to-script
4287
4353
  ```
4288
4354
 
4289
- _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/forget.ts)_
4355
+ _See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/forget.ts)_
4290
4356
 
4291
4357
  ## `codiac cabinet list`
4292
4358
 
@@ -4337,7 +4403,7 @@ EXAMPLES
4337
4403
  $ codiac cabinet list -e myEnterprise --silent
4338
4404
  ```
4339
4405
 
4340
- _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/list.ts)_
4406
+ _See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/list.ts)_
4341
4407
 
4342
4408
  ## `codiac cabinet obliterate [CABINET]`
4343
4409
 
@@ -4379,7 +4445,7 @@ ALIASES
4379
4445
  $ codiac infrx cab obliterate
4380
4446
  ```
4381
4447
 
4382
- _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/obliterate.ts)_
4448
+ _See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/obliterate.ts)_
4383
4449
 
4384
4450
  ## `codiac cabinet restore`
4385
4451
 
@@ -4446,7 +4512,7 @@ EXAMPLES
4446
4512
  $ codiac cabinet restore --cluster prod-cluster-1 --to-script
4447
4513
  ```
4448
4514
 
4449
- _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cabinet/restore.ts)_
4515
+ _See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cabinet/restore.ts)_
4450
4516
 
4451
4517
  ## `codiac cfg add`
4452
4518
 
@@ -4703,7 +4769,7 @@ DESCRIPTION
4703
4769
  Applies settings to the Codiac CLI itself (scoped to the local machine).
4704
4770
  ```
4705
4771
 
4706
- _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cli.ts)_
4772
+ _See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cli.ts)_
4707
4773
 
4708
4774
  ## `codiac cluster agent configure [CLUSTER]`
4709
4775
 
@@ -4768,7 +4834,7 @@ EXAMPLES
4768
4834
  $ codiac cluster agent configure my-cluster --to-script
4769
4835
  ```
4770
4836
 
4771
- _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/agent/configure.ts)_
4837
+ _See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/agent/configure.ts)_
4772
4838
 
4773
4839
  ## `codiac cluster agent install [CLUSTER]`
4774
4840
 
@@ -4821,7 +4887,7 @@ EXAMPLES
4821
4887
  $ codiac cluster agent install my-cluster --to-script
4822
4888
  ```
4823
4889
 
4824
- _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/agent/install.ts)_
4890
+ _See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/agent/install.ts)_
4825
4891
 
4826
4892
  ## `codiac cluster agent uninstall [CLUSTER]`
4827
4893
 
@@ -4866,7 +4932,7 @@ EXAMPLES
4866
4932
  $ codiac cluster agent uninstall my-cluster --to-script
4867
4933
  ```
4868
4934
 
4869
- _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/agent/uninstall.ts)_
4935
+ _See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/agent/uninstall.ts)_
4870
4936
 
4871
4937
  ## `codiac cluster bootstrap [NAME]`
4872
4938
 
@@ -4929,7 +4995,7 @@ EXAMPLES
4929
4995
  $ codiac cluster bootstrap my-cluster --to-script
4930
4996
  ```
4931
4997
 
4932
- _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/bootstrap.ts)_
4998
+ _See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/bootstrap.ts)_
4933
4999
 
4934
5000
  ## `codiac cluster capture`
4935
5001
 
@@ -5014,7 +5080,7 @@ EXAMPLES
5014
5080
  $ codiac cluster connect my-fav-cluster
5015
5081
  ```
5016
5082
 
5017
- _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/connect.ts)_
5083
+ _See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/connect.ts)_
5018
5084
 
5019
5085
  ## `codiac cluster contents`
5020
5086
 
@@ -5508,7 +5574,7 @@ EXAMPLES
5508
5574
  $ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
5509
5575
  ```
5510
5576
 
5511
- _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/install.ts)_
5577
+ _See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/install.ts)_
5512
5578
 
5513
5579
  ## `codiac cluster journal [CLUSTER]`
5514
5580
 
@@ -5797,7 +5863,7 @@ EXAMPLES
5797
5863
  $ codiac cluster stack capture my-fav-cluster
5798
5864
  ```
5799
5865
 
5800
- _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/stack/capture.ts)_
5866
+ _See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/stack/capture.ts)_
5801
5867
 
5802
5868
  ## `codiac cluster stack install [CLUSTER]`
5803
5869
 
@@ -5849,7 +5915,7 @@ EXAMPLES
5849
5915
  $ codiac cluster stack install my-cluster --to-script
5850
5916
  ```
5851
5917
 
5852
- _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/stack/install.ts)_
5918
+ _See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/stack/install.ts)_
5853
5919
 
5854
5920
  ## `codiac cluster stack list`
5855
5921
 
@@ -6015,7 +6081,7 @@ EXAMPLES
6015
6081
  $ codiac cluster start my-fav-cluster
6016
6082
  ```
6017
6083
 
6018
- _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/start.ts)_
6084
+ _See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/start.ts)_
6019
6085
 
6020
6086
  ## `codiac cluster stop [CLUSTER]`
6021
6087
 
@@ -6052,7 +6118,7 @@ EXAMPLES
6052
6118
  $ codiac cluster start my-fav-cluster
6053
6119
  ```
6054
6120
 
6055
- _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/cluster/stop.ts)_
6121
+ _See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/cluster/stop.ts)_
6056
6122
 
6057
6123
  ## `codiac cluster uninstall`
6058
6124
 
@@ -6114,7 +6180,7 @@ DESCRIPTION
6114
6180
  Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
6115
6181
  ```
6116
6182
 
6117
- _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/commit.ts)_
6183
+ _See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/commit.ts)_
6118
6184
 
6119
6185
  ## `codiac config add`
6120
6186
 
@@ -6224,7 +6290,7 @@ EXAMPLES
6224
6290
  '#REF|azKeyVault|our-secret-store|some-managed-svc-cert'
6225
6291
  ```
6226
6292
 
6227
- _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/add.ts)_
6293
+ _See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/add.ts)_
6228
6294
 
6229
6295
  ## `codiac config delete [SETTING]`
6230
6296
 
@@ -6293,7 +6359,7 @@ ALIASES
6293
6359
  $ codiac cfg delete
6294
6360
  ```
6295
6361
 
6296
- _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/delete.ts)_
6362
+ _See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/delete.ts)_
6297
6363
 
6298
6364
  ## `codiac config deploy`
6299
6365
 
@@ -6334,7 +6400,7 @@ EXAMPLES
6334
6400
  $ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
6335
6401
  ```
6336
6402
 
6337
- _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/deploy.ts)_
6403
+ _See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/deploy.ts)_
6338
6404
 
6339
6405
  ## `codiac config import`
6340
6406
 
@@ -6387,7 +6453,7 @@ EXAMPLES
6387
6453
  $ codiac config import -a myApi -s ./dist/app-config.json -n myEnterprise --to-script
6388
6454
  ```
6389
6455
 
6390
- _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/import.ts)_
6456
+ _See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/import.ts)_
6391
6457
 
6392
6458
  ## `codiac config preview [SETTING]`
6393
6459
 
@@ -6628,7 +6694,7 @@ DESCRIPTION
6628
6694
  Shows the list of clusters.
6629
6695
  ```
6630
6696
 
6631
- _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/settings/get.ts)_
6697
+ _See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/settings/get.ts)_
6632
6698
 
6633
6699
  ## `codiac config view [SETTING]`
6634
6700
 
@@ -6693,7 +6759,7 @@ EXAMPLES
6693
6759
  $ codiac config view -e myEnterprise -a myApi -c dev --to-script
6694
6760
  ```
6695
6761
 
6696
- _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/config/view.ts)_
6762
+ _See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/config/view.ts)_
6697
6763
 
6698
6764
  ## `codiac csp creds list`
6699
6765
 
@@ -6741,7 +6807,7 @@ EXAMPLES
6741
6807
  $ codiac csp creds list
6742
6808
  ```
6743
6809
 
6744
- _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/csp/creds/list.ts)_
6810
+ _See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/csp/creds/list.ts)_
6745
6811
 
6746
6812
  ## `codiac csp login [PROVIDER]`
6747
6813
 
@@ -6819,7 +6885,7 @@ EXAMPLES
6819
6885
  cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
6820
6886
  ```
6821
6887
 
6822
- _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/csp/login.ts)_
6888
+ _See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/csp/login.ts)_
6823
6889
 
6824
6890
  ## `codiac csp logout [PROVIDER]`
6825
6891
 
@@ -6866,7 +6932,7 @@ EXAMPLES
6866
6932
  $ codiac csp logout azure --to-script
6867
6933
  ```
6868
6934
 
6869
- _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/csp/logout.ts)_
6935
+ _See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/csp/logout.ts)_
6870
6936
 
6871
6937
  ## `codiac dep [NAME]`
6872
6938
 
@@ -6887,7 +6953,7 @@ DESCRIPTION
6887
6953
  Installs a package into current project.
6888
6954
  ```
6889
6955
 
6890
- _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep.ts)_
6956
+ _See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep.ts)_
6891
6957
 
6892
6958
  ## `codiac dep create [URL]`
6893
6959
 
@@ -6911,7 +6977,7 @@ DESCRIPTION
6911
6977
  package version is used.
6912
6978
  ```
6913
6979
 
6914
- _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/create.ts)_
6980
+ _See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/create.ts)_
6915
6981
 
6916
6982
  ## `codiac dep install`
6917
6983
 
@@ -6928,7 +6994,7 @@ DESCRIPTION
6928
6994
  installs any missing dependency packages into the local project folder.
6929
6995
  ```
6930
6996
 
6931
- _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/install.ts)_
6997
+ _See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/install.ts)_
6932
6998
 
6933
6999
  ## `codiac dep list`
6934
7000
 
@@ -6945,7 +7011,7 @@ DESCRIPTION
6945
7011
  Shows the dependencies for the project.
6946
7012
  ```
6947
7013
 
6948
- _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/list.ts)_
7014
+ _See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/list.ts)_
6949
7015
 
6950
7016
  ## `codiac dep remove [NAME]`
6951
7017
 
@@ -6968,7 +7034,7 @@ DESCRIPTION
6968
7034
  Removes a dependency from the project.
6969
7035
  ```
6970
7036
 
6971
- _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/remove.ts)_
7037
+ _See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/remove.ts)_
6972
7038
 
6973
7039
  ## `codiac dep source [NAME]`
6974
7040
 
@@ -6994,7 +7060,7 @@ ALIASES
6994
7060
  $ codiac dep src
6995
7061
  ```
6996
7062
 
6997
- _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/source.ts)_
7063
+ _See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/source.ts)_
6998
7064
 
6999
7065
  ## `codiac dep src [NAME]`
7000
7066
 
@@ -7038,7 +7104,7 @@ DESCRIPTION
7038
7104
  Publishes the dependency in its current state and upgrades to it in the main project.
7039
7105
  ```
7040
7106
 
7041
- _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/syncup.ts)_
7107
+ _See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/syncup.ts)_
7042
7108
 
7043
7109
  ## `codiac dep unsource [NAME]`
7044
7110
 
@@ -7066,7 +7132,7 @@ ALIASES
7066
7132
  $ codiac dep unsrc
7067
7133
  ```
7068
7134
 
7069
- _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/unsource.ts)_
7135
+ _See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/unsource.ts)_
7070
7136
 
7071
7137
  ## `codiac dep unsrc [NAME]`
7072
7138
 
@@ -7113,7 +7179,7 @@ DESCRIPTION
7113
7179
  describe the command here
7114
7180
  ```
7115
7181
 
7116
- _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/dep/upgrade.ts)_
7182
+ _See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/dep/upgrade.ts)_
7117
7183
 
7118
7184
  ## `codiac deploy`
7119
7185
 
@@ -7122,7 +7188,7 @@ Deploys a given asset to a given cabinet. Defaults to current version.
7122
7188
  ```
7123
7189
  USAGE
7124
7190
  $ codiac deploy [-h] [-e <value>] [-m any|all|none [-t <value> | -c <value>]] [-a <value>] [-u <value>]
7125
- [-w <value>] [-n <value>] [-p <value>] [--silent | --echo | --to-script]
7191
+ [-w <value>] [-n <value>] [-p <value>] [--override-conditions] [--silent | --echo | --to-script]
7126
7192
 
7127
7193
  FLAGS
7128
7194
  -a, --asset=<value> Name of the asset to deploy (use ? or ?? to be prompted).
@@ -7137,6 +7203,7 @@ FLAGS
7137
7203
  -u, --version=<value> Version of the asset to deploy (use ? or ?? to be prompted).
7138
7204
  -w, --tagAsset=<value>... Tags to apply to the selected asset version.
7139
7205
  --echo Renders the equivalent non-interactive command for future use before executing.
7206
+ --override-conditions Deploy all assets regardless of any configured deploy conditions.
7140
7207
  --silent Executes without any user interaction; fails on missing or invalid arguments.
7141
7208
  --to-script Renders the equivalent non-interactive command without executing it.
7142
7209
 
@@ -7165,7 +7232,7 @@ EXAMPLES
7165
7232
  $ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
7166
7233
  ```
7167
7234
 
7168
- _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/deploy.ts)_
7235
+ _See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/deploy.ts)_
7169
7236
 
7170
7237
  ## `codiac domain map [DOMAIN]`
7171
7238
 
@@ -7315,7 +7382,7 @@ EXAMPLES
7315
7382
  cod enterprise create my-enterprise-code --silent
7316
7383
  ```
7317
7384
 
7318
- _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/enterprise/create.ts)_
7385
+ _See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/enterprise/create.ts)_
7319
7386
 
7320
7387
  ## `codiac enterprise list`
7321
7388
 
@@ -7370,7 +7437,7 @@ EXAMPLES
7370
7437
  $ codiac enterprise list --to-script
7371
7438
  ```
7372
7439
 
7373
- _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/enterprise/list.ts)_
7440
+ _See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/enterprise/list.ts)_
7374
7441
 
7375
7442
  ## `codiac env add [SETTING]`
7376
7443
 
@@ -7420,7 +7487,7 @@ EXAMPLES
7420
7487
  $ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
7421
7488
  ```
7422
7489
 
7423
- _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/env/add.ts)_
7490
+ _See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/env/add.ts)_
7424
7491
 
7425
7492
  ## `codiac enviro cluster attach`
7426
7493
 
@@ -7723,7 +7790,7 @@ ALIASES
7723
7790
  $ codiac infrx enviro cluster attach
7724
7791
  ```
7725
7792
 
7726
- _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/environment/cluster/attach.ts)_
7793
+ _See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/environment/cluster/attach.ts)_
7727
7794
 
7728
7795
  ## `codiac environment cluster detach`
7729
7796
 
@@ -7769,7 +7836,7 @@ ALIASES
7769
7836
  $ codiac infrx enviro cluster detach
7770
7837
  ```
7771
7838
 
7772
- _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/environment/cluster/detach.ts)_
7839
+ _See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/environment/cluster/detach.ts)_
7773
7840
 
7774
7841
  ## `codiac environment create [NAME]`
7775
7842
 
@@ -7832,7 +7899,7 @@ EXAMPLES
7832
7899
  cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
7833
7900
  ```
7834
7901
 
7835
- _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/environment/create.ts)_
7902
+ _See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/environment/create.ts)_
7836
7903
 
7837
7904
  ## `codiac environment delete [NAME]`
7838
7905
 
@@ -7893,7 +7960,7 @@ EXAMPLES
7893
7960
  $ codiac environment delete dev --enterprise main --to-script
7894
7961
  ```
7895
7962
 
7896
- _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/environment/delete.ts)_
7963
+ _See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/environment/delete.ts)_
7897
7964
 
7898
7965
  ## `codiac environment list`
7899
7966
 
@@ -7944,7 +8011,7 @@ EXAMPLES
7944
8011
  $ codiac environment list -e myEnterprise --silent
7945
8012
  ```
7946
8013
 
7947
- _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/environment/list.ts)_
8014
+ _See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/environment/list.ts)_
7948
8015
 
7949
8016
  ## `codiac fileshare capture`
7950
8017
 
@@ -8028,7 +8095,7 @@ ALIASES
8028
8095
  $ codiac fileshare capture
8029
8096
  ```
8030
8097
 
8031
- _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/filestore/capture.ts)_
8098
+ _See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/filestore/capture.ts)_
8032
8099
 
8033
8100
  ## `codiac filestore forget`
8034
8101
 
@@ -8075,7 +8142,7 @@ EXAMPLES
8075
8142
  $ codiac filestore forget
8076
8143
  ```
8077
8144
 
8078
- _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/filestore/forget.ts)_
8145
+ _See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/filestore/forget.ts)_
8079
8146
 
8080
8147
  ## `codiac filestore list`
8081
8148
 
@@ -8121,7 +8188,7 @@ EXAMPLES
8121
8188
  $ codiac filestore list
8122
8189
  ```
8123
8190
 
8124
- _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/filestore/list.ts)_
8191
+ _See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/filestore/list.ts)_
8125
8192
 
8126
8193
  ## `codiac help [COMMANDS]`
8127
8194
 
@@ -8207,7 +8274,7 @@ EXAMPLES
8207
8274
  $ codiac host delete
8208
8275
  ```
8209
8276
 
8210
- _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/host/delete.ts)_
8277
+ _See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/host/delete.ts)_
8211
8278
 
8212
8279
  ## `codiac host list [DOMAIN]`
8213
8280
 
@@ -8251,7 +8318,7 @@ EXAMPLES
8251
8318
  $ codiac host list
8252
8319
  ```
8253
8320
 
8254
- _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/host/list.ts)_
8321
+ _See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/host/list.ts)_
8255
8322
 
8256
8323
  ## `codiac host map [DOMAIN]`
8257
8324
 
@@ -8299,7 +8366,7 @@ EXAMPLES
8299
8366
  $ codiac host map my-company.com -e myEnterprise --to-script
8300
8367
  ```
8301
8368
 
8302
- _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/host/map.ts)_
8369
+ _See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/host/map.ts)_
8303
8370
 
8304
8371
  ## `codiac host view [DOMAIN]`
8305
8372
 
@@ -8344,7 +8411,7 @@ EXAMPLES
8344
8411
  $ codiac host view
8345
8412
  ```
8346
8413
 
8347
- _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/host/view.ts)_
8414
+ _See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/host/view.ts)_
8348
8415
 
8349
8416
  ## `codiac identify [TOKENNAME]`
8350
8417
 
@@ -8416,7 +8483,7 @@ ALIASES
8416
8483
  $ codiac token
8417
8484
  ```
8418
8485
 
8419
- _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/identity.ts)_
8486
+ _See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/identity.ts)_
8420
8487
 
8421
8488
  ## `codiac identity delete [NAME]`
8422
8489
 
@@ -8441,7 +8508,7 @@ ALIASES
8441
8508
  $ codiac token remove
8442
8509
  ```
8443
8510
 
8444
- _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/identity/delete.ts)_
8511
+ _See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/identity/delete.ts)_
8445
8512
 
8446
8513
  ## `codiac identity list`
8447
8514
 
@@ -8463,7 +8530,7 @@ ALIASES
8463
8530
  $ codiac token list
8464
8531
  ```
8465
8532
 
8466
- _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/identity/list.ts)_
8533
+ _See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/identity/list.ts)_
8467
8534
 
8468
8535
  ## `codiac identity remove [NAME]`
8469
8536
 
@@ -8784,7 +8851,7 @@ DESCRIPTION
8784
8851
  Saves a reference to an existing container registry.
8785
8852
  ```
8786
8853
 
8787
- _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/imageRegistry/capture.ts)_
8854
+ _See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/imageRegistry/capture.ts)_
8788
8855
 
8789
8856
  ## `codiac imageRegistry forget`
8790
8857
 
@@ -8805,7 +8872,7 @@ DESCRIPTION
8805
8872
  Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
8806
8873
  ```
8807
8874
 
8808
- _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/imageRegistry/forget.ts)_
8875
+ _See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/imageRegistry/forget.ts)_
8809
8876
 
8810
8877
  ## `codiac imageRegistry list`
8811
8878
 
@@ -8847,7 +8914,7 @@ EXAMPLES
8847
8914
  $ codiac imageRegistry list -o yaml > registries.yaml
8848
8915
  ```
8849
8916
 
8850
- _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/imageRegistry/list.ts)_
8917
+ _See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/imageRegistry/list.ts)_
8851
8918
 
8852
8919
  ## `codiac imageRegistry pullSecret set`
8853
8920
 
@@ -8883,7 +8950,7 @@ ALIASES
8883
8950
  $ codiac pullsecret
8884
8951
  ```
8885
8952
 
8886
- _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/imageRegistry/pullSecret/set.ts)_
8953
+ _See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/imageRegistry/pullSecret/set.ts)_
8887
8954
 
8888
8955
  ## `codiac imageRegistry pullSecret unset`
8889
8956
 
@@ -8910,7 +8977,7 @@ ALIASES
8910
8977
  $ codiac pullsecret unset
8911
8978
  ```
8912
8979
 
8913
- _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/imageRegistry/pullSecret/unset.ts)_
8980
+ _See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/imageRegistry/pullSecret/unset.ts)_
8914
8981
 
8915
8982
  ## `codiac images add [IMAGENAME]`
8916
8983
 
@@ -8971,7 +9038,7 @@ EXAMPLES
8971
9038
  $ codiac images add your-company/your-image --to-script
8972
9039
  ```
8973
9040
 
8974
- _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/add.ts)_
9041
+ _See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/add.ts)_
8975
9042
 
8976
9043
  ## `codiac images list`
8977
9044
 
@@ -8994,7 +9061,7 @@ ALIASES
8994
9061
  $ codiac img list
8995
9062
  ```
8996
9063
 
8997
- _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/list.ts)_
9064
+ _See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/list.ts)_
8998
9065
 
8999
9066
  ## `codiac images patch IMAGENAME`
9000
9067
 
@@ -9024,7 +9091,7 @@ ALIASES
9024
9091
  $ codiac img patch
9025
9092
  ```
9026
9093
 
9027
- _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/patch.ts)_
9094
+ _See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/patch.ts)_
9028
9095
 
9029
9096
  ## `codiac images remove IMAGENAME`
9030
9097
 
@@ -9050,7 +9117,7 @@ ALIASES
9050
9117
  $ codiac img delete
9051
9118
  ```
9052
9119
 
9053
- _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/remove.ts)_
9120
+ _See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/remove.ts)_
9054
9121
 
9055
9122
  ## `codiac images version NAME`
9056
9123
 
@@ -9076,7 +9143,7 @@ ALIASES
9076
9143
  $ codiac img version get
9077
9144
  ```
9078
9145
 
9079
- _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/version.ts)_
9146
+ _See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/version.ts)_
9080
9147
 
9081
9148
  ## `codiac images version bump NAME`
9082
9149
 
@@ -9109,7 +9176,7 @@ ALIASES
9109
9176
  $ codiac img version bump
9110
9177
  ```
9111
9178
 
9112
- _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/images/version/bump.ts)_
9179
+ _See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/images/version/bump.ts)_
9113
9180
 
9114
9181
  ## `codiac img [IMAGENAME]`
9115
9182
 
@@ -10224,7 +10291,7 @@ DESCRIPTION
10224
10291
  Declares the given folder as a project root
10225
10292
  ```
10226
10293
 
10227
- _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/init.ts)_
10294
+ _See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/init.ts)_
10228
10295
 
10229
10296
  ## `codiac kit create`
10230
10297
 
@@ -10267,7 +10334,7 @@ EXAMPLES
10267
10334
  $ codiac kit create -e myEnterprise -a myApi --to-script
10268
10335
  ```
10269
10336
 
10270
- _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/kit/create.ts)_
10337
+ _See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/kit/create.ts)_
10271
10338
 
10272
10339
  ## `codiac login`
10273
10340
 
@@ -10326,7 +10393,7 @@ EXAMPLES
10326
10393
  $ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
10327
10394
  ```
10328
10395
 
10329
- _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/login.ts)_
10396
+ _See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/login.ts)_
10330
10397
 
10331
10398
  ## `codiac logout`
10332
10399
 
@@ -10359,7 +10426,7 @@ EXAMPLES
10359
10426
  $ codiac logout --to-script
10360
10427
  ```
10361
10428
 
10362
- _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/logout.ts)_
10429
+ _See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/logout.ts)_
10363
10430
 
10364
10431
  ## `codiac merge [BRANCH]`
10365
10432
 
@@ -10380,7 +10447,7 @@ DESCRIPTION
10380
10447
  Merges the given branch into the current branch of the main project and on any sourced dependencies.
10381
10448
  ```
10382
10449
 
10383
- _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/merge.ts)_
10450
+ _See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/merge.ts)_
10384
10451
 
10385
10452
  ## `codiac noc cluster capture`
10386
10453
 
@@ -10432,7 +10499,7 @@ EXAMPLES
10432
10499
  cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
10433
10500
  ```
10434
10501
 
10435
- _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/capture.ts)_
10502
+ _See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/capture.ts)_
10436
10503
 
10437
10504
  ## `codiac noc cluster create [NAME]`
10438
10505
 
@@ -10522,7 +10589,7 @@ FLAG DESCRIPTIONS
10522
10589
  initialization is always skipped in that mode.
10523
10590
  ```
10524
10591
 
10525
- _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/create.ts)_
10592
+ _See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/create.ts)_
10526
10593
 
10527
10594
  ## `codiac noc cluster credentials-set [NAME]`
10528
10595
 
@@ -10577,7 +10644,7 @@ EXAMPLES
10577
10644
  $ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
10578
10645
  ```
10579
10646
 
10580
- _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/credentials-set.ts)_
10647
+ _See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/credentials-set.ts)_
10581
10648
 
10582
10649
  ## `codiac noc cluster define [NAME]`
10583
10650
 
@@ -10646,7 +10713,7 @@ EXAMPLES
10646
10713
  $ codiac noc cluster define my-cluster --to-script
10647
10714
  ```
10648
10715
 
10649
- _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/define.ts)_
10716
+ _See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/define.ts)_
10650
10717
 
10651
10718
  ## `codiac noc cluster deinit`
10652
10719
 
@@ -10686,7 +10753,7 @@ EXAMPLES
10686
10753
  $ codiac noc cluster deinit -n my-cluster --to-script
10687
10754
  ```
10688
10755
 
10689
- _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/deinit.ts)_
10756
+ _See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/deinit.ts)_
10690
10757
 
10691
10758
  ## `codiac noc cluster destroy [NAME]`
10692
10759
 
@@ -10720,7 +10787,7 @@ ALIASES
10720
10787
  $ codiac cluster destroy
10721
10788
  ```
10722
10789
 
10723
- _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/destroy.ts)_
10790
+ _See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/destroy.ts)_
10724
10791
 
10725
10792
  ## `codiac noc cluster forget`
10726
10793
 
@@ -10771,7 +10838,7 @@ EXAMPLES
10771
10838
  $ codiac noc cluster forget --running
10772
10839
  ```
10773
10840
 
10774
- _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/forget.ts)_
10841
+ _See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/forget.ts)_
10775
10842
 
10776
10843
  ## `codiac noc cluster grant`
10777
10844
 
@@ -10809,7 +10876,7 @@ EXAMPLES
10809
10876
  $ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
10810
10877
  ```
10811
10878
 
10812
- _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/grant.ts)_
10879
+ _See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/grant.ts)_
10813
10880
 
10814
10881
  ## `codiac noc cluster init`
10815
10882
 
@@ -10855,7 +10922,7 @@ EXAMPLES
10855
10922
  $ codiac noc cluster init -n my-cluster --to-script
10856
10923
  ```
10857
10924
 
10858
- _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/init.ts)_
10925
+ _See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/init.ts)_
10859
10926
 
10860
10927
  ## `codiac noc cluster journal [CLUSTER]`
10861
10928
 
@@ -10904,7 +10971,7 @@ EXAMPLES
10904
10971
  $ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
10905
10972
  ```
10906
10973
 
10907
- _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/journal.ts)_
10974
+ _See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/journal.ts)_
10908
10975
 
10909
10976
  ## `codiac noc cluster list`
10910
10977
 
@@ -10965,7 +11032,7 @@ EXAMPLES
10965
11032
  $ codiac noc cluster list -e myEnterprise --to-script
10966
11033
  ```
10967
11034
 
10968
- _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/list.ts)_
11035
+ _See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/list.ts)_
10969
11036
 
10970
11037
  ## `codiac noc cluster restore [NAME]`
10971
11038
 
@@ -11025,7 +11092,7 @@ EXAMPLES
11025
11092
  $ codiac noc cluster restore prod-cluster-1 --to-script
11026
11093
  ```
11027
11094
 
11028
- _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/noc/cluster/restore.ts)_
11095
+ _See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/noc/cluster/restore.ts)_
11029
11096
 
11030
11097
  ## `codiac pkg add [DEFINITIONFILE]`
11031
11098
 
@@ -11059,7 +11126,7 @@ DESCRIPTION
11059
11126
  Configures a package to be built and published by the project.
11060
11127
  ```
11061
11128
 
11062
- _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/pkg/add.ts)_
11129
+ _See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/pkg/add.ts)_
11063
11130
 
11064
11131
  ## `codiac pkg delete [PACKAGENAME]`
11065
11132
 
@@ -11097,7 +11164,7 @@ DESCRIPTION
11097
11164
  Renders the list of packages that are configured as project exports.
11098
11165
  ```
11099
11166
 
11100
- _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/pkg/list.ts)_
11167
+ _See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/pkg/list.ts)_
11101
11168
 
11102
11169
  ## `codiac pkg patch PACKAGENAME`
11103
11170
 
@@ -11123,7 +11190,7 @@ DESCRIPTION
11123
11190
  registryUrl and/or environment.
11124
11191
  ```
11125
11192
 
11126
- _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/pkg/patch.ts)_
11193
+ _See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/pkg/patch.ts)_
11127
11194
 
11128
11195
  ## `codiac pkg remove [PACKAGENAME]`
11129
11196
 
@@ -11146,7 +11213,7 @@ ALIASES
11146
11213
  $ codiac pkg delete
11147
11214
  ```
11148
11215
 
11149
- _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/pkg/remove.ts)_
11216
+ _See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/pkg/remove.ts)_
11150
11217
 
11151
11218
  ## `codiac portal`
11152
11219
 
@@ -11179,7 +11246,7 @@ EXAMPLES
11179
11246
  $ codiac portal --to-script
11180
11247
  ```
11181
11248
 
11182
- _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/portal.ts)_
11249
+ _See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/portal.ts)_
11183
11250
 
11184
11251
  ## `codiac probe create [CMD]`
11185
11252
 
@@ -11300,7 +11367,7 @@ DESCRIPTION
11300
11367
  Publishes the exports (packages and images) declared in the ProjectConfig.
11301
11368
  ```
11302
11369
 
11303
- _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/publish.ts)_
11370
+ _See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/publish.ts)_
11304
11371
 
11305
11372
  ## `codiac pull [NAME]`
11306
11373
 
@@ -11324,7 +11391,7 @@ DESCRIPTION
11324
11391
  Pulls all commits from upstream to local.
11325
11392
  ```
11326
11393
 
11327
- _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/pull.ts)_
11394
+ _See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/pull.ts)_
11328
11395
 
11329
11396
  ## `codiac pullsecret`
11330
11397
 
@@ -11407,7 +11474,7 @@ DESCRIPTION
11407
11474
  Pushes all local commits upstream.
11408
11475
  ```
11409
11476
 
11410
- _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/push.ts)_
11477
+ _See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/push.ts)_
11411
11478
 
11412
11479
  ## `codiac relay-version`
11413
11480
 
@@ -11424,7 +11491,7 @@ EXAMPLES
11424
11491
  $ codiac relay-version
11425
11492
  ```
11426
11493
 
11427
- _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/relay-version.ts)_
11494
+ _See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/relay-version.ts)_
11428
11495
 
11429
11496
  ## `codiac run`
11430
11497
 
@@ -11466,7 +11533,7 @@ DESCRIPTION
11466
11533
  Runs the latest build of the api container locally.
11467
11534
  ```
11468
11535
 
11469
- _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/run.ts)_
11536
+ _See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/run.ts)_
11470
11537
 
11471
11538
  ## `codiac secretStore`
11472
11539
 
@@ -11528,7 +11595,7 @@ ALIASES
11528
11595
  $ codiac secretStore
11529
11596
  ```
11530
11597
 
11531
- _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/secretStore/capture.ts)_
11598
+ _See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/secretStore/capture.ts)_
11532
11599
 
11533
11600
  ## `codiac secretStore forget`
11534
11601
 
@@ -11549,7 +11616,7 @@ DESCRIPTION
11549
11616
  Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
11550
11617
  ```
11551
11618
 
11552
- _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/secretStore/forget.ts)_
11619
+ _See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/secretStore/forget.ts)_
11553
11620
 
11554
11621
  ## `codiac secretStore list`
11555
11622
 
@@ -11594,7 +11661,7 @@ EXAMPLES
11594
11661
  $ codiac secretStore list
11595
11662
  ```
11596
11663
 
11597
- _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/secretStore/list.ts)_
11664
+ _See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/secretStore/list.ts)_
11598
11665
 
11599
11666
  ## `codiac shell init`
11600
11667
 
@@ -11632,7 +11699,7 @@ EXAMPLES
11632
11699
  Invoke-Expression (codiac shell init --shell powershell)
11633
11700
  ```
11634
11701
 
11635
- _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/shell/init.ts)_
11702
+ _See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/shell/init.ts)_
11636
11703
 
11637
11704
  ## `codiac snapshot deploy`
11638
11705
 
@@ -11640,7 +11707,8 @@ Deploys all assets in a snapshot to a target cabinet.
11640
11707
 
11641
11708
  ```
11642
11709
  USAGE
11643
- $ codiac snapshot deploy [-h] [-e <value>] [-v <value>] [-c <value>] [--silent | --echo | --to-script]
11710
+ $ codiac snapshot deploy [-h] [-e <value>] [-v <value>] [-c <value>] [--override-conditions] [--silent | --echo |
11711
+ --to-script]
11644
11712
 
11645
11713
  FLAGS
11646
11714
  -c, --cabinet=<value> The target cabinet name to deploy to.
@@ -11649,6 +11717,7 @@ FLAGS
11649
11717
  -v, --version=<value> The version of the snapshot to deploy (e.g., 5CJRH7XB).
11650
11718
  --echo Echo interaction mode; renders the equivalent non-interactive cli command for future use
11651
11719
  before final execution.
11720
+ --override-conditions Deploy all assets regardless of any configured deploy conditions.
11652
11721
  --silent Non-Interactive mode; executes without any user interaction and fails on any missing or
11653
11722
  invalid arguments.
11654
11723
  --to-script Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any
@@ -11658,7 +11727,7 @@ DESCRIPTION
11658
11727
  Deploys all assets in a snapshot to a target cabinet.
11659
11728
  ```
11660
11729
 
11661
- _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/snapshot/deploy.ts)_
11730
+ _See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/snapshot/deploy.ts)_
11662
11731
 
11663
11732
  ## `codiac snapshot list`
11664
11733
 
@@ -11707,7 +11776,7 @@ EXAMPLES
11707
11776
  $ codiac snapshot list -e myEnterprise --silent
11708
11777
  ```
11709
11778
 
11710
- _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/snapshot/list.ts)_
11779
+ _See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/snapshot/list.ts)_
11711
11780
 
11712
11781
  ## `codiac snapshot tag`
11713
11782
 
@@ -11750,7 +11819,7 @@ EXAMPLES
11750
11819
  $ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
11751
11820
  ```
11752
11821
 
11753
- _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/snapshot/tag.ts)_
11822
+ _See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/snapshot/tag.ts)_
11754
11823
 
11755
11824
  ## `codiac snapshot untag`
11756
11825
 
@@ -11793,7 +11862,7 @@ EXAMPLES
11793
11862
  $ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
11794
11863
  ```
11795
11864
 
11796
- _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/snapshot/untag.ts)_
11865
+ _See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/snapshot/untag.ts)_
11797
11866
 
11798
11867
  ## `codiac stage [FILES]`
11799
11868
 
@@ -11815,7 +11884,7 @@ DESCRIPTION
11815
11884
  Flags files to be included in the next commit.
11816
11885
  ```
11817
11886
 
11818
- _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/stage.ts)_
11887
+ _See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/stage.ts)_
11819
11888
 
11820
11889
  ## `codiac stash [FILE]`
11821
11890
 
@@ -11837,7 +11906,7 @@ DESCRIPTION
11837
11906
  describe the command here
11838
11907
  ```
11839
11908
 
11840
- _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/stash.ts)_
11909
+ _See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/stash.ts)_
11841
11910
 
11842
11911
  ## `codiac status`
11843
11912
 
@@ -11856,7 +11925,7 @@ DESCRIPTION
11856
11925
  Shows the current uncommitted changes in the current branch.
11857
11926
  ```
11858
11927
 
11859
- _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/status.ts)_
11928
+ _See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/status.ts)_
11860
11929
 
11861
11930
  ## `codiac stop`
11862
11931
 
@@ -11874,7 +11943,7 @@ DESCRIPTION
11874
11943
  Stops the running container for this project
11875
11944
  ```
11876
11945
 
11877
- _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/stop.ts)_
11946
+ _See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/stop.ts)_
11878
11947
 
11879
11948
  ## `codiac switch [NAME]`
11880
11949
 
@@ -11894,7 +11963,7 @@ DESCRIPTION
11894
11963
  Changes branch on the main project and any sourced dependencies.
11895
11964
  ```
11896
11965
 
11897
- _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/switch.ts)_
11966
+ _See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/switch.ts)_
11898
11967
 
11899
11968
  ## `codiac sync [NAME]`
11900
11969
 
@@ -11919,7 +11988,7 @@ DESCRIPTION
11919
11988
  Merges the given branch into the current branch.
11920
11989
  ```
11921
11990
 
11922
- _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/sync.ts)_
11991
+ _See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/sync.ts)_
11923
11992
 
11924
11993
  ## `codiac tenant create [NAME]`
11925
11994
 
@@ -11962,7 +12031,7 @@ EXAMPLES
11962
12031
  $ codiac tenant create -n 'Acme Corp' -c acme --to-script
11963
12032
  ```
11964
12033
 
11965
- _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/tenant/create.ts)_
12034
+ _See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/tenant/create.ts)_
11966
12035
 
11967
12036
  ## `codiac tenant switch [CODE]`
11968
12037
 
@@ -12002,7 +12071,7 @@ EXAMPLES
12002
12071
  $ codiac tenant switch my-tenant-code --to-script
12003
12072
  ```
12004
12073
 
12005
- _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/tenant/switch.ts)_
12074
+ _See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/tenant/switch.ts)_
12006
12075
 
12007
12076
  ## `codiac token [TOKENNAME]`
12008
12077
 
@@ -12124,7 +12193,7 @@ DESCRIPTION
12124
12193
  Flags files to be included in the next commit.
12125
12194
  ```
12126
12195
 
12127
- _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/unstage.ts)_
12196
+ _See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/unstage.ts)_
12128
12197
 
12129
12198
  ## `codiac update [CHANNEL]`
12130
12199
 
@@ -12311,7 +12380,7 @@ EXAMPLES
12311
12380
  $ codiac whereami --to-script
12312
12381
  ```
12313
12382
 
12314
- _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/whereami.ts)_
12383
+ _See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/whereami.ts)_
12315
12384
 
12316
12385
  ## `codiac whoami`
12317
12386
 
@@ -12353,5 +12422,5 @@ EXAMPLES
12353
12422
  $ codiac whoami --to-script
12354
12423
  ```
12355
12424
 
12356
- _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.193/src/commands/whoami.ts)_
12425
+ _See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.195/src/commands/whoami.ts)_
12357
12426
  <!-- commandsstop -->