@knocklabs/cli 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +258 -36
  2. package/dist/commands/branch/create.js +1 -1
  3. package/dist/commands/branch/delete.js +1 -1
  4. package/dist/commands/branch/exit.js +44 -0
  5. package/dist/commands/branch/switch.js +161 -0
  6. package/dist/commands/commit/get.js +4 -4
  7. package/dist/commands/commit/index.js +47 -2
  8. package/dist/commands/commit/list.js +61 -13
  9. package/dist/commands/guide/activate.js +48 -4
  10. package/dist/commands/guide/generate-types.js +4 -1
  11. package/dist/commands/guide/get.js +46 -3
  12. package/dist/commands/guide/list.js +46 -3
  13. package/dist/commands/guide/pull.js +6 -4
  14. package/dist/commands/guide/push.js +4 -3
  15. package/dist/commands/guide/validate.js +4 -3
  16. package/dist/commands/layout/get.js +46 -1
  17. package/dist/commands/layout/list.js +46 -1
  18. package/dist/commands/layout/pull.js +6 -2
  19. package/dist/commands/layout/push.js +4 -1
  20. package/dist/commands/layout/validate.js +4 -1
  21. package/dist/commands/login.js +1 -0
  22. package/dist/commands/logout.js +1 -0
  23. package/dist/commands/message-type/get.js +46 -3
  24. package/dist/commands/message-type/list.js +46 -3
  25. package/dist/commands/message-type/pull.js +6 -4
  26. package/dist/commands/message-type/push.js +4 -3
  27. package/dist/commands/message-type/validate.js +4 -3
  28. package/dist/commands/partial/get.js +46 -1
  29. package/dist/commands/partial/list.js +46 -1
  30. package/dist/commands/partial/pull.js +6 -2
  31. package/dist/commands/partial/push.js +4 -1
  32. package/dist/commands/partial/validate.js +6 -1
  33. package/dist/commands/pull.js +28 -8
  34. package/dist/commands/push.js +27 -8
  35. package/dist/commands/translation/get.js +5 -1
  36. package/dist/commands/translation/list.js +5 -1
  37. package/dist/commands/translation/pull.js +8 -3
  38. package/dist/commands/translation/push.js +4 -1
  39. package/dist/commands/translation/validate.js +4 -1
  40. package/dist/commands/workflow/activate.js +47 -3
  41. package/dist/commands/workflow/generate-types.js +4 -1
  42. package/dist/commands/workflow/get.js +9 -4
  43. package/dist/commands/workflow/list.js +5 -1
  44. package/dist/commands/workflow/pull.js +6 -2
  45. package/dist/commands/workflow/push.js +4 -1
  46. package/dist/commands/workflow/run.js +46 -2
  47. package/dist/commands/workflow/validate.js +4 -1
  48. package/dist/lib/api-v1.js +35 -12
  49. package/dist/lib/helpers/arg.js +6 -5
  50. package/dist/lib/helpers/branch.js +124 -0
  51. package/dist/lib/helpers/command.js +14 -0
  52. package/dist/lib/helpers/error.js +5 -0
  53. package/dist/lib/helpers/flag.js +23 -0
  54. package/dist/lib/helpers/git.js +25 -0
  55. package/dist/lib/helpers/request.js +1 -1
  56. package/dist/lib/helpers/string.js +4 -0
  57. package/dist/lib/marshal/commit/index.js +0 -1
  58. package/dist/lib/marshal/translation/helpers.js +1 -1
  59. package/dist/lib/resources.js +6 -1
  60. package/dist/lib/urls.js +4 -0
  61. package/oclif.manifest.json +414 -50
  62. package/package.json +15 -5
  63. package/dist/commands/ping.js +0 -37
  64. package/dist/lib/marshal/commit/types.js +0 -5
@@ -67,6 +67,7 @@
67
67
  "pluginName": "@knocklabs/cli",
68
68
  "pluginType": "core",
69
69
  "strict": true,
70
+ "summary": "Log in with a Knock user account.",
70
71
  "enableJsonFlag": false,
71
72
  "isESM": false,
72
73
  "relativePath": [
@@ -104,6 +105,7 @@
104
105
  "pluginName": "@knocklabs/cli",
105
106
  "pluginType": "core",
106
107
  "strict": true,
108
+ "summary": "Log out of a Knock user account.",
107
109
  "enableJsonFlag": false,
108
110
  "isESM": false,
109
111
  "relativePath": [
@@ -112,44 +114,6 @@
112
114
  "logout.js"
113
115
  ]
114
116
  },
115
- "ping": {
116
- "aliases": [],
117
- "args": {},
118
- "flags": {
119
- "service-token": {
120
- "env": "KNOCK_SERVICE_TOKEN",
121
- "name": "service-token",
122
- "required": false,
123
- "summary": "The service token to authenticate with.",
124
- "hasDynamicHelp": false,
125
- "multiple": false,
126
- "type": "option"
127
- },
128
- "api-origin": {
129
- "hidden": true,
130
- "name": "api-origin",
131
- "required": false,
132
- "hasDynamicHelp": false,
133
- "multiple": false,
134
- "type": "option"
135
- }
136
- },
137
- "hasDynamicHelp": false,
138
- "hidden": true,
139
- "hiddenAliases": [],
140
- "id": "ping",
141
- "pluginAlias": "@knocklabs/cli",
142
- "pluginName": "@knocklabs/cli",
143
- "pluginType": "core",
144
- "strict": true,
145
- "enableJsonFlag": false,
146
- "isESM": false,
147
- "relativePath": [
148
- "dist",
149
- "commands",
150
- "ping.js"
151
- ]
152
- },
153
117
  "pull": {
154
118
  "aliases": [],
155
119
  "args": {},
@@ -179,6 +143,14 @@
179
143
  "multiple": false,
180
144
  "type": "option"
181
145
  },
146
+ "branch": {
147
+ "hidden": true,
148
+ "name": "branch",
149
+ "summary": "The slug of the branch to use.",
150
+ "hasDynamicHelp": false,
151
+ "multiple": false,
152
+ "type": "option"
153
+ },
182
154
  "knock-dir": {
183
155
  "name": "knock-dir",
184
156
  "required": true,
@@ -248,6 +220,14 @@
248
220
  ],
249
221
  "type": "option"
250
222
  },
223
+ "branch": {
224
+ "hidden": true,
225
+ "name": "branch",
226
+ "summary": "The slug of the branch to use.",
227
+ "hasDynamicHelp": false,
228
+ "multiple": false,
229
+ "type": "option"
230
+ },
251
231
  "knock-dir": {
252
232
  "name": "knock-dir",
253
233
  "required": true,
@@ -440,6 +420,46 @@
440
420
  "delete.js"
441
421
  ]
442
422
  },
423
+ "branch:exit": {
424
+ "aliases": [],
425
+ "args": {},
426
+ "flags": {
427
+ "service-token": {
428
+ "env": "KNOCK_SERVICE_TOKEN",
429
+ "name": "service-token",
430
+ "required": false,
431
+ "summary": "The service token to authenticate with.",
432
+ "hasDynamicHelp": false,
433
+ "multiple": false,
434
+ "type": "option"
435
+ },
436
+ "api-origin": {
437
+ "hidden": true,
438
+ "name": "api-origin",
439
+ "required": false,
440
+ "hasDynamicHelp": false,
441
+ "multiple": false,
442
+ "type": "option"
443
+ }
444
+ },
445
+ "hasDynamicHelp": false,
446
+ "hidden": true,
447
+ "hiddenAliases": [],
448
+ "id": "branch:exit",
449
+ "pluginAlias": "@knocklabs/cli",
450
+ "pluginName": "@knocklabs/cli",
451
+ "pluginType": "core",
452
+ "strict": true,
453
+ "summary": "Exits the current branch.",
454
+ "enableJsonFlag": false,
455
+ "isESM": false,
456
+ "relativePath": [
457
+ "dist",
458
+ "commands",
459
+ "branch",
460
+ "exit.js"
461
+ ]
462
+ },
443
463
  "branch:list": {
444
464
  "aliases": [],
445
465
  "args": {},
@@ -508,6 +528,64 @@
508
528
  "list.js"
509
529
  ]
510
530
  },
531
+ "branch:switch": {
532
+ "aliases": [],
533
+ "args": {
534
+ "slug": {
535
+ "description": "The slug of the branch to switch to",
536
+ "name": "slug",
537
+ "required": true
538
+ }
539
+ },
540
+ "flags": {
541
+ "service-token": {
542
+ "env": "KNOCK_SERVICE_TOKEN",
543
+ "name": "service-token",
544
+ "required": false,
545
+ "summary": "The service token to authenticate with.",
546
+ "hasDynamicHelp": false,
547
+ "multiple": false,
548
+ "type": "option"
549
+ },
550
+ "api-origin": {
551
+ "hidden": true,
552
+ "name": "api-origin",
553
+ "required": false,
554
+ "hasDynamicHelp": false,
555
+ "multiple": false,
556
+ "type": "option"
557
+ },
558
+ "create": {
559
+ "name": "create",
560
+ "summary": "Create the branch if it doesn't yet exist.",
561
+ "allowNo": false,
562
+ "type": "boolean"
563
+ },
564
+ "force": {
565
+ "name": "force",
566
+ "summary": "Remove the confirmation prompt.",
567
+ "allowNo": false,
568
+ "type": "boolean"
569
+ }
570
+ },
571
+ "hasDynamicHelp": false,
572
+ "hidden": true,
573
+ "hiddenAliases": [],
574
+ "id": "branch:switch",
575
+ "pluginAlias": "@knocklabs/cli",
576
+ "pluginName": "@knocklabs/cli",
577
+ "pluginType": "core",
578
+ "strict": true,
579
+ "summary": "Switches to an existing branch with the given slug.",
580
+ "enableJsonFlag": false,
581
+ "isESM": false,
582
+ "relativePath": [
583
+ "dist",
584
+ "commands",
585
+ "branch",
586
+ "switch.js"
587
+ ]
588
+ },
511
589
  "commit:get": {
512
590
  "aliases": [],
513
591
  "args": {
@@ -591,6 +669,14 @@
591
669
  ],
592
670
  "type": "option"
593
671
  },
672
+ "branch": {
673
+ "hidden": true,
674
+ "name": "branch",
675
+ "summary": "The slug of the branch to use.",
676
+ "hasDynamicHelp": false,
677
+ "multiple": false,
678
+ "type": "option"
679
+ },
594
680
  "commit-message": {
595
681
  "char": "m",
596
682
  "name": "commit-message",
@@ -659,6 +745,14 @@
659
745
  "multiple": false,
660
746
  "type": "option"
661
747
  },
748
+ "branch": {
749
+ "hidden": true,
750
+ "name": "branch",
751
+ "summary": "The slug of the branch to use.",
752
+ "hasDynamicHelp": false,
753
+ "multiple": false,
754
+ "type": "option"
755
+ },
662
756
  "promoted": {
663
757
  "name": "promoted",
664
758
  "summary": "Show only promoted or unpromoted changes between the given environment and the subsequent environment.",
@@ -793,7 +887,7 @@
793
887
  "required": true
794
888
  }
795
889
  },
796
- "description": "This enables or disables a guide in a given environment without\nneeding to go through environment promotion.\n\nYou can activate or deactivate a guide immediately or schedule it to be activated \nor deactivated at a later time using the --from and --until flags.",
890
+ "description": "This enables or disables a guide in a given environment without\nneeding to go through environment promotion.\n\nYou can activate or deactivate a guide immediately or schedule it to be activated\nor deactivated at a later time using the --from and --until flags.",
797
891
  "flags": {
798
892
  "service-token": {
799
893
  "env": "KNOCK_SERVICE_TOKEN",
@@ -820,6 +914,14 @@
820
914
  "multiple": false,
821
915
  "type": "option"
822
916
  },
917
+ "branch": {
918
+ "hidden": true,
919
+ "name": "branch",
920
+ "summary": "The slug of the branch to use.",
921
+ "hasDynamicHelp": false,
922
+ "multiple": false,
923
+ "type": "option"
924
+ },
823
925
  "status": {
824
926
  "exclusive": [
825
927
  "from",
@@ -909,6 +1011,14 @@
909
1011
  "multiple": false,
910
1012
  "type": "option"
911
1013
  },
1014
+ "branch": {
1015
+ "hidden": true,
1016
+ "name": "branch",
1017
+ "summary": "The slug of the branch to use.",
1018
+ "hasDynamicHelp": false,
1019
+ "multiple": false,
1020
+ "type": "option"
1021
+ },
912
1022
  "output-file": {
913
1023
  "name": "output-file",
914
1024
  "required": true,
@@ -975,6 +1085,14 @@
975
1085
  "multiple": false,
976
1086
  "type": "option"
977
1087
  },
1088
+ "branch": {
1089
+ "hidden": true,
1090
+ "name": "branch",
1091
+ "summary": "The slug of the branch to use.",
1092
+ "hasDynamicHelp": false,
1093
+ "multiple": false,
1094
+ "type": "option"
1095
+ },
978
1096
  "hide-uncommitted-changes": {
979
1097
  "name": "hide-uncommitted-changes",
980
1098
  "summary": "Hide any uncommitted changes.",
@@ -983,7 +1101,6 @@
983
1101
  }
984
1102
  },
985
1103
  "hasDynamicHelp": false,
986
- "hidden": true,
987
1104
  "hiddenAliases": [],
988
1105
  "id": "guide:get",
989
1106
  "pluginAlias": "@knocklabs/cli",
@@ -1036,6 +1153,14 @@
1036
1153
  "multiple": false,
1037
1154
  "type": "option"
1038
1155
  },
1156
+ "branch": {
1157
+ "hidden": true,
1158
+ "name": "branch",
1159
+ "summary": "The slug of the branch to use.",
1160
+ "hasDynamicHelp": false,
1161
+ "multiple": false,
1162
+ "type": "option"
1163
+ },
1039
1164
  "hide-uncommitted-changes": {
1040
1165
  "name": "hide-uncommitted-changes",
1041
1166
  "summary": "Hide any uncommitted changes.",
@@ -1065,7 +1190,6 @@
1065
1190
  }
1066
1191
  },
1067
1192
  "hasDynamicHelp": false,
1068
- "hidden": true,
1069
1193
  "hiddenAliases": [],
1070
1194
  "id": "guide:list",
1071
1195
  "pluginAlias": "@knocklabs/cli",
@@ -1116,6 +1240,14 @@
1116
1240
  "multiple": false,
1117
1241
  "type": "option"
1118
1242
  },
1243
+ "branch": {
1244
+ "hidden": true,
1245
+ "name": "branch",
1246
+ "summary": "The slug of the branch to use.",
1247
+ "hasDynamicHelp": false,
1248
+ "multiple": false,
1249
+ "type": "option"
1250
+ },
1119
1251
  "all": {
1120
1252
  "name": "all",
1121
1253
  "summary": "Whether to pull all guides from the specified environment.",
@@ -1146,7 +1278,6 @@
1146
1278
  }
1147
1279
  },
1148
1280
  "hasDynamicHelp": false,
1149
- "hidden": true,
1150
1281
  "hiddenAliases": [],
1151
1282
  "id": "guide:pull",
1152
1283
  "pluginAlias": "@knocklabs/cli",
@@ -1200,6 +1331,14 @@
1200
1331
  ],
1201
1332
  "type": "option"
1202
1333
  },
1334
+ "branch": {
1335
+ "hidden": true,
1336
+ "name": "branch",
1337
+ "summary": "The slug of the branch to use.",
1338
+ "hasDynamicHelp": false,
1339
+ "multiple": false,
1340
+ "type": "option"
1341
+ },
1203
1342
  "all": {
1204
1343
  "name": "all",
1205
1344
  "summary": "Whether to push all guides from the target directory.",
@@ -1235,7 +1374,6 @@
1235
1374
  }
1236
1375
  },
1237
1376
  "hasDynamicHelp": false,
1238
- "hidden": true,
1239
1377
  "hiddenAliases": [],
1240
1378
  "id": "guide:push",
1241
1379
  "pluginAlias": "@knocklabs/cli",
@@ -1289,6 +1427,14 @@
1289
1427
  ],
1290
1428
  "type": "option"
1291
1429
  },
1430
+ "branch": {
1431
+ "hidden": true,
1432
+ "name": "branch",
1433
+ "summary": "The slug of the branch to use.",
1434
+ "hasDynamicHelp": false,
1435
+ "multiple": false,
1436
+ "type": "option"
1437
+ },
1292
1438
  "all": {
1293
1439
  "name": "all",
1294
1440
  "summary": "Whether to validate all guides from the target directory.",
@@ -1307,7 +1453,6 @@
1307
1453
  }
1308
1454
  },
1309
1455
  "hasDynamicHelp": false,
1310
- "hidden": true,
1311
1456
  "hiddenAliases": [],
1312
1457
  "id": "guide:validate",
1313
1458
  "pluginAlias": "@knocklabs/cli",
@@ -1365,6 +1510,14 @@
1365
1510
  "multiple": false,
1366
1511
  "type": "option"
1367
1512
  },
1513
+ "branch": {
1514
+ "hidden": true,
1515
+ "name": "branch",
1516
+ "summary": "The slug of the branch to use.",
1517
+ "hasDynamicHelp": false,
1518
+ "multiple": false,
1519
+ "type": "option"
1520
+ },
1368
1521
  "hide-uncommitted-changes": {
1369
1522
  "name": "hide-uncommitted-changes",
1370
1523
  "summary": "Hide any uncommitted changes.",
@@ -1425,6 +1578,14 @@
1425
1578
  "multiple": false,
1426
1579
  "type": "option"
1427
1580
  },
1581
+ "branch": {
1582
+ "hidden": true,
1583
+ "name": "branch",
1584
+ "summary": "The slug of the branch to use.",
1585
+ "hasDynamicHelp": false,
1586
+ "multiple": false,
1587
+ "type": "option"
1588
+ },
1428
1589
  "hide-uncommitted-changes": {
1429
1590
  "name": "hide-uncommitted-changes",
1430
1591
  "summary": "Hide any uncommitted changes.",
@@ -1504,6 +1665,14 @@
1504
1665
  "multiple": false,
1505
1666
  "type": "option"
1506
1667
  },
1668
+ "branch": {
1669
+ "hidden": true,
1670
+ "name": "branch",
1671
+ "summary": "The slug of the branch to use.",
1672
+ "hasDynamicHelp": false,
1673
+ "multiple": false,
1674
+ "type": "option"
1675
+ },
1507
1676
  "all": {
1508
1677
  "name": "all",
1509
1678
  "summary": "Whether to pull all email layouts from the specified environment.",
@@ -1590,6 +1759,14 @@
1590
1759
  ],
1591
1760
  "type": "option"
1592
1761
  },
1762
+ "branch": {
1763
+ "hidden": true,
1764
+ "name": "branch",
1765
+ "summary": "The slug of the branch to use.",
1766
+ "hasDynamicHelp": false,
1767
+ "multiple": false,
1768
+ "type": "option"
1769
+ },
1593
1770
  "all": {
1594
1771
  "name": "all",
1595
1772
  "summary": "Whether to push all layouts from the target directory.",
@@ -1681,6 +1858,14 @@
1681
1858
  ],
1682
1859
  "type": "option"
1683
1860
  },
1861
+ "branch": {
1862
+ "hidden": true,
1863
+ "name": "branch",
1864
+ "summary": "The slug of the branch to use.",
1865
+ "hasDynamicHelp": false,
1866
+ "multiple": false,
1867
+ "type": "option"
1868
+ },
1684
1869
  "all": {
1685
1870
  "name": "all",
1686
1871
  "summary": "Whether to validate all layouts from the target directory.",
@@ -1759,6 +1944,14 @@
1759
1944
  "multiple": false,
1760
1945
  "type": "option"
1761
1946
  },
1947
+ "branch": {
1948
+ "hidden": true,
1949
+ "name": "branch",
1950
+ "summary": "The slug of the branch to use.",
1951
+ "hasDynamicHelp": false,
1952
+ "multiple": false,
1953
+ "type": "option"
1954
+ },
1762
1955
  "hide-uncommitted-changes": {
1763
1956
  "name": "hide-uncommitted-changes",
1764
1957
  "summary": "Hide any uncommitted changes.",
@@ -1767,7 +1960,6 @@
1767
1960
  }
1768
1961
  },
1769
1962
  "hasDynamicHelp": false,
1770
- "hidden": true,
1771
1963
  "hiddenAliases": [],
1772
1964
  "id": "message-type:get",
1773
1965
  "pluginAlias": "@knocklabs/cli",
@@ -1820,6 +2012,14 @@
1820
2012
  "multiple": false,
1821
2013
  "type": "option"
1822
2014
  },
2015
+ "branch": {
2016
+ "hidden": true,
2017
+ "name": "branch",
2018
+ "summary": "The slug of the branch to use.",
2019
+ "hasDynamicHelp": false,
2020
+ "multiple": false,
2021
+ "type": "option"
2022
+ },
1823
2023
  "hide-uncommitted-changes": {
1824
2024
  "name": "hide-uncommitted-changes",
1825
2025
  "summary": "Hide any uncommitted changes.",
@@ -1849,7 +2049,6 @@
1849
2049
  }
1850
2050
  },
1851
2051
  "hasDynamicHelp": false,
1852
- "hidden": true,
1853
2052
  "hiddenAliases": [],
1854
2053
  "id": "message-type:list",
1855
2054
  "pluginAlias": "@knocklabs/cli",
@@ -1900,6 +2099,14 @@
1900
2099
  "multiple": false,
1901
2100
  "type": "option"
1902
2101
  },
2102
+ "branch": {
2103
+ "hidden": true,
2104
+ "name": "branch",
2105
+ "summary": "The slug of the branch to use.",
2106
+ "hasDynamicHelp": false,
2107
+ "multiple": false,
2108
+ "type": "option"
2109
+ },
1903
2110
  "all": {
1904
2111
  "name": "all",
1905
2112
  "summary": "Whether to pull all in-app message types from the specified environment.",
@@ -1930,7 +2137,6 @@
1930
2137
  }
1931
2138
  },
1932
2139
  "hasDynamicHelp": false,
1933
- "hidden": true,
1934
2140
  "hiddenAliases": [],
1935
2141
  "id": "message-type:pull",
1936
2142
  "pluginAlias": "@knocklabs/cli",
@@ -1984,6 +2190,14 @@
1984
2190
  ],
1985
2191
  "type": "option"
1986
2192
  },
2193
+ "branch": {
2194
+ "hidden": true,
2195
+ "name": "branch",
2196
+ "summary": "The slug of the branch to use.",
2197
+ "hasDynamicHelp": false,
2198
+ "multiple": false,
2199
+ "type": "option"
2200
+ },
1987
2201
  "all": {
1988
2202
  "name": "all",
1989
2203
  "summary": "Whether to push all message types from the target directory.",
@@ -2019,7 +2233,6 @@
2019
2233
  }
2020
2234
  },
2021
2235
  "hasDynamicHelp": false,
2022
- "hidden": true,
2023
2236
  "hiddenAliases": [],
2024
2237
  "id": "message-type:push",
2025
2238
  "pluginAlias": "@knocklabs/cli",
@@ -2073,6 +2286,14 @@
2073
2286
  ],
2074
2287
  "type": "option"
2075
2288
  },
2289
+ "branch": {
2290
+ "hidden": true,
2291
+ "name": "branch",
2292
+ "summary": "The slug of the branch to use.",
2293
+ "hasDynamicHelp": false,
2294
+ "multiple": false,
2295
+ "type": "option"
2296
+ },
2076
2297
  "all": {
2077
2298
  "name": "all",
2078
2299
  "summary": "Whether to validate all message types from the target directory.",
@@ -2091,7 +2312,6 @@
2091
2312
  }
2092
2313
  },
2093
2314
  "hasDynamicHelp": false,
2094
- "hidden": true,
2095
2315
  "hiddenAliases": [],
2096
2316
  "id": "message-type:validate",
2097
2317
  "pluginAlias": "@knocklabs/cli",
@@ -2149,6 +2369,14 @@
2149
2369
  "multiple": false,
2150
2370
  "type": "option"
2151
2371
  },
2372
+ "branch": {
2373
+ "hidden": true,
2374
+ "name": "branch",
2375
+ "summary": "The slug of the branch to use.",
2376
+ "hasDynamicHelp": false,
2377
+ "multiple": false,
2378
+ "type": "option"
2379
+ },
2152
2380
  "hide-uncommitted-changes": {
2153
2381
  "name": "hide-uncommitted-changes",
2154
2382
  "summary": "Hide any uncommitted changes.",
@@ -2209,6 +2437,14 @@
2209
2437
  "multiple": false,
2210
2438
  "type": "option"
2211
2439
  },
2440
+ "branch": {
2441
+ "hidden": true,
2442
+ "name": "branch",
2443
+ "summary": "The slug of the branch to use.",
2444
+ "hasDynamicHelp": false,
2445
+ "multiple": false,
2446
+ "type": "option"
2447
+ },
2212
2448
  "hide-uncommitted-changes": {
2213
2449
  "name": "hide-uncommitted-changes",
2214
2450
  "summary": "Hide any uncommitted changes.",
@@ -2288,6 +2524,14 @@
2288
2524
  "multiple": false,
2289
2525
  "type": "option"
2290
2526
  },
2527
+ "branch": {
2528
+ "hidden": true,
2529
+ "name": "branch",
2530
+ "summary": "The slug of the branch to use.",
2531
+ "hasDynamicHelp": false,
2532
+ "multiple": false,
2533
+ "type": "option"
2534
+ },
2291
2535
  "all": {
2292
2536
  "name": "all",
2293
2537
  "summary": "Whether to pull all partials from the specified environment.",
@@ -2371,6 +2615,14 @@
2371
2615
  ],
2372
2616
  "type": "option"
2373
2617
  },
2618
+ "branch": {
2619
+ "hidden": true,
2620
+ "name": "branch",
2621
+ "summary": "The slug of the branch to use.",
2622
+ "hasDynamicHelp": false,
2623
+ "multiple": false,
2624
+ "type": "option"
2625
+ },
2374
2626
  "all": {
2375
2627
  "name": "all",
2376
2628
  "summary": "Whether to push all partials from the target directory.",
@@ -2459,6 +2711,14 @@
2459
2711
  ],
2460
2712
  "type": "option"
2461
2713
  },
2714
+ "branch": {
2715
+ "hidden": true,
2716
+ "name": "branch",
2717
+ "summary": "The slug of the branch to use.",
2718
+ "hasDynamicHelp": false,
2719
+ "multiple": false,
2720
+ "type": "option"
2721
+ },
2462
2722
  "all": {
2463
2723
  "name": "all",
2464
2724
  "summary": "Whether to validate all partials from the target directory.",
@@ -2535,6 +2795,14 @@
2535
2795
  "multiple": false,
2536
2796
  "type": "option"
2537
2797
  },
2798
+ "branch": {
2799
+ "hidden": true,
2800
+ "name": "branch",
2801
+ "summary": "The slug of the branch to use.",
2802
+ "hasDynamicHelp": false,
2803
+ "multiple": false,
2804
+ "type": "option"
2805
+ },
2538
2806
  "hide-uncommitted-changes": {
2539
2807
  "name": "hide-uncommitted-changes",
2540
2808
  "summary": "Hide any uncommitted changes.",
@@ -2607,6 +2875,14 @@
2607
2875
  "multiple": false,
2608
2876
  "type": "option"
2609
2877
  },
2878
+ "branch": {
2879
+ "hidden": true,
2880
+ "name": "branch",
2881
+ "summary": "The slug of the branch to use.",
2882
+ "hasDynamicHelp": false,
2883
+ "multiple": false,
2884
+ "type": "option"
2885
+ },
2610
2886
  "hide-uncommitted-changes": {
2611
2887
  "name": "hide-uncommitted-changes",
2612
2888
  "summary": "Hide any uncommitted changes.",
@@ -2687,6 +2963,14 @@
2687
2963
  "multiple": false,
2688
2964
  "type": "option"
2689
2965
  },
2966
+ "branch": {
2967
+ "hidden": true,
2968
+ "name": "branch",
2969
+ "summary": "The slug of the branch to use.",
2970
+ "hasDynamicHelp": false,
2971
+ "multiple": false,
2972
+ "type": "option"
2973
+ },
2690
2974
  "all": {
2691
2975
  "name": "all",
2692
2976
  "summary": "Whether to pull all translations from the specified environment.",
@@ -2783,6 +3067,14 @@
2783
3067
  ],
2784
3068
  "type": "option"
2785
3069
  },
3070
+ "branch": {
3071
+ "hidden": true,
3072
+ "name": "branch",
3073
+ "summary": "The slug of the branch to use.",
3074
+ "hasDynamicHelp": false,
3075
+ "multiple": false,
3076
+ "type": "option"
3077
+ },
2786
3078
  "all": {
2787
3079
  "name": "all",
2788
3080
  "summary": "Whether to push all translations from the target directory.",
@@ -2872,6 +3164,14 @@
2872
3164
  ],
2873
3165
  "type": "option"
2874
3166
  },
3167
+ "branch": {
3168
+ "hidden": true,
3169
+ "name": "branch",
3170
+ "summary": "The slug of the branch to use.",
3171
+ "hasDynamicHelp": false,
3172
+ "multiple": false,
3173
+ "type": "option"
3174
+ },
2875
3175
  "all": {
2876
3176
  "name": "all",
2877
3177
  "summary": "Whether to validate all translations from the target directory.",
@@ -2941,6 +3241,14 @@
2941
3241
  "multiple": false,
2942
3242
  "type": "option"
2943
3243
  },
3244
+ "branch": {
3245
+ "hidden": true,
3246
+ "name": "branch",
3247
+ "summary": "The slug of the branch to use.",
3248
+ "hasDynamicHelp": false,
3249
+ "multiple": false,
3250
+ "type": "option"
3251
+ },
2944
3252
  "status": {
2945
3253
  "name": "status",
2946
3254
  "summary": "The workflow active status to set.",
@@ -3007,6 +3315,14 @@
3007
3315
  "multiple": false,
3008
3316
  "type": "option"
3009
3317
  },
3318
+ "branch": {
3319
+ "hidden": true,
3320
+ "name": "branch",
3321
+ "summary": "The slug of the branch to use.",
3322
+ "hasDynamicHelp": false,
3323
+ "multiple": false,
3324
+ "type": "option"
3325
+ },
3010
3326
  "output-file": {
3011
3327
  "name": "output-file",
3012
3328
  "required": true,
@@ -3073,6 +3389,14 @@
3073
3389
  "multiple": false,
3074
3390
  "type": "option"
3075
3391
  },
3392
+ "branch": {
3393
+ "hidden": true,
3394
+ "name": "branch",
3395
+ "summary": "The slug of the branch to use.",
3396
+ "hasDynamicHelp": false,
3397
+ "multiple": false,
3398
+ "type": "option"
3399
+ },
3076
3400
  "hide-uncommitted-changes": {
3077
3401
  "name": "hide-uncommitted-changes",
3078
3402
  "summary": "Hide any uncommitted changes.",
@@ -3133,6 +3457,14 @@
3133
3457
  "multiple": false,
3134
3458
  "type": "option"
3135
3459
  },
3460
+ "branch": {
3461
+ "hidden": true,
3462
+ "name": "branch",
3463
+ "summary": "The slug of the branch to use.",
3464
+ "hasDynamicHelp": false,
3465
+ "multiple": false,
3466
+ "type": "option"
3467
+ },
3136
3468
  "hide-uncommitted-changes": {
3137
3469
  "name": "hide-uncommitted-changes",
3138
3470
  "summary": "Hide any uncommitted changes.",
@@ -3270,6 +3602,14 @@
3270
3602
  "multiple": false,
3271
3603
  "type": "option"
3272
3604
  },
3605
+ "branch": {
3606
+ "hidden": true,
3607
+ "name": "branch",
3608
+ "summary": "The slug of the branch to use.",
3609
+ "hasDynamicHelp": false,
3610
+ "multiple": false,
3611
+ "type": "option"
3612
+ },
3273
3613
  "all": {
3274
3614
  "name": "all",
3275
3615
  "summary": "Whether to pull all workflows from the specified environment.",
@@ -3353,6 +3693,14 @@
3353
3693
  ],
3354
3694
  "type": "option"
3355
3695
  },
3696
+ "branch": {
3697
+ "hidden": true,
3698
+ "name": "branch",
3699
+ "summary": "The slug of the branch to use.",
3700
+ "hasDynamicHelp": false,
3701
+ "multiple": false,
3702
+ "type": "option"
3703
+ },
3356
3704
  "all": {
3357
3705
  "name": "all",
3358
3706
  "summary": "Whether to push all workflows from the target directory.",
@@ -3438,6 +3786,14 @@
3438
3786
  "multiple": false,
3439
3787
  "type": "option"
3440
3788
  },
3789
+ "branch": {
3790
+ "hidden": true,
3791
+ "name": "branch",
3792
+ "summary": "The slug of the branch to use.",
3793
+ "hasDynamicHelp": false,
3794
+ "multiple": false,
3795
+ "type": "option"
3796
+ },
3441
3797
  "recipients": {
3442
3798
  "aliases": [
3443
3799
  "recipient"
@@ -3525,6 +3881,14 @@
3525
3881
  ],
3526
3882
  "type": "option"
3527
3883
  },
3884
+ "branch": {
3885
+ "hidden": true,
3886
+ "name": "branch",
3887
+ "summary": "The slug of the branch to use.",
3888
+ "hasDynamicHelp": false,
3889
+ "multiple": false,
3890
+ "type": "option"
3891
+ },
3528
3892
  "all": {
3529
3893
  "name": "all",
3530
3894
  "summary": "Whether to validate all workflows from the target directory.",
@@ -3560,5 +3924,5 @@
3560
3924
  ]
3561
3925
  }
3562
3926
  },
3563
- "version": "0.2.1"
3927
+ "version": "0.2.3"
3564
3928
  }