@knocklabs/cli 0.1.21 → 0.1.23

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 (57) hide show
  1. package/README.md +141 -41
  2. package/dist/commands/commit/list.js +21 -1
  3. package/dist/commands/guide/activate.js +121 -0
  4. package/dist/commands/guide/generate-types.js +148 -0
  5. package/dist/commands/guide/get.js +139 -0
  6. package/dist/commands/guide/list.js +112 -0
  7. package/dist/commands/guide/pull.js +209 -0
  8. package/dist/commands/guide/push.js +171 -0
  9. package/dist/commands/guide/validate.js +148 -0
  10. package/dist/commands/pull.js +157 -0
  11. package/dist/commands/push.js +175 -0
  12. package/dist/commands/workflow/generate-types.js +6 -5
  13. package/dist/lib/api-v1.js +61 -0
  14. package/dist/lib/helpers/const.js +4 -4
  15. package/dist/lib/helpers/date.js +3 -3
  16. package/dist/lib/helpers/error.js +8 -8
  17. package/dist/lib/helpers/flag.js +7 -7
  18. package/dist/lib/helpers/json.js +5 -5
  19. package/dist/lib/helpers/object.isomorphic.js +8 -8
  20. package/dist/lib/helpers/page.js +9 -9
  21. package/dist/lib/helpers/request.js +4 -4
  22. package/dist/lib/helpers/string.js +3 -3
  23. package/dist/lib/helpers/typegen.js +59 -0
  24. package/dist/lib/helpers/ux.js +3 -3
  25. package/dist/lib/marshal/email-layout/helpers.js +5 -5
  26. package/dist/lib/marshal/email-layout/processor.isomorphic.js +3 -3
  27. package/dist/lib/marshal/email-layout/reader.js +5 -5
  28. package/dist/lib/marshal/email-layout/writer.js +4 -4
  29. package/dist/lib/marshal/guide/helpers.js +283 -0
  30. package/dist/lib/marshal/guide/index.js +3 -0
  31. package/dist/lib/marshal/guide/processor.isomorphic.js +3 -3
  32. package/dist/lib/marshal/guide/reader.js +193 -0
  33. package/dist/lib/marshal/guide/writer.js +175 -0
  34. package/dist/lib/marshal/index.isomorphic.js +7 -7
  35. package/dist/lib/marshal/message-type/helpers.js +5 -5
  36. package/dist/lib/marshal/message-type/processor.isomorphic.js +3 -3
  37. package/dist/lib/marshal/message-type/reader.js +5 -5
  38. package/dist/lib/marshal/message-type/writer.js +4 -4
  39. package/dist/lib/marshal/partial/helpers.js +5 -5
  40. package/dist/lib/marshal/partial/processor.isomorphic.js +3 -3
  41. package/dist/lib/marshal/partial/reader.js +5 -5
  42. package/dist/lib/marshal/partial/writer.js +4 -4
  43. package/dist/lib/marshal/shared/const.isomorphic.js +3 -3
  44. package/dist/lib/marshal/shared/helpers.isomorphic.js +9 -2
  45. package/dist/lib/marshal/shared/helpers.js +4 -4
  46. package/dist/lib/marshal/translation/helpers.js +10 -10
  47. package/dist/lib/marshal/translation/processor.isomorphic.js +6 -6
  48. package/dist/lib/marshal/translation/writer.js +3 -3
  49. package/dist/lib/marshal/workflow/generator.js +4 -4
  50. package/dist/lib/marshal/workflow/helpers.js +53 -10
  51. package/dist/lib/marshal/workflow/processor.isomorphic.js +5 -5
  52. package/dist/lib/marshal/workflow/reader.js +5 -5
  53. package/dist/lib/marshal/workflow/writer.js +5 -5
  54. package/dist/lib/resources.js +32 -0
  55. package/oclif.manifest.json +961 -260
  56. package/package.json +8 -8
  57. package/dist/lib/type-generator.js +0 -100
@@ -76,6 +76,146 @@
76
76
  "ping.js"
77
77
  ]
78
78
  },
79
+ "pull": {
80
+ "aliases": [],
81
+ "args": {},
82
+ "flags": {
83
+ "service-token": {
84
+ "env": "KNOCK_SERVICE_TOKEN",
85
+ "name": "service-token",
86
+ "required": true,
87
+ "summary": "The service token to authenticate with.",
88
+ "hasDynamicHelp": false,
89
+ "multiple": false,
90
+ "type": "option"
91
+ },
92
+ "api-origin": {
93
+ "hidden": true,
94
+ "name": "api-origin",
95
+ "required": false,
96
+ "hasDynamicHelp": false,
97
+ "multiple": false,
98
+ "type": "option"
99
+ },
100
+ "environment": {
101
+ "name": "environment",
102
+ "summary": "The environment to use.",
103
+ "default": "development",
104
+ "hasDynamicHelp": false,
105
+ "multiple": false,
106
+ "type": "option"
107
+ },
108
+ "knock-dir": {
109
+ "name": "knock-dir",
110
+ "required": true,
111
+ "summary": "The target directory path to pull all resources into.",
112
+ "hasDynamicHelp": false,
113
+ "multiple": false,
114
+ "type": "option"
115
+ },
116
+ "hide-uncommitted-changes": {
117
+ "name": "hide-uncommitted-changes",
118
+ "summary": "Hide any uncommitted changes.",
119
+ "allowNo": false,
120
+ "type": "boolean"
121
+ },
122
+ "force": {
123
+ "name": "force",
124
+ "summary": "Remove the confirmation prompt.",
125
+ "allowNo": false,
126
+ "type": "boolean"
127
+ }
128
+ },
129
+ "hasDynamicHelp": false,
130
+ "hiddenAliases": [],
131
+ "id": "pull",
132
+ "pluginAlias": "@knocklabs/cli",
133
+ "pluginName": "@knocklabs/cli",
134
+ "pluginType": "core",
135
+ "strict": true,
136
+ "summary": "Pull all resources from an environment into a local file system.",
137
+ "enableJsonFlag": false,
138
+ "isESM": false,
139
+ "relativePath": [
140
+ "dist",
141
+ "commands",
142
+ "pull.js"
143
+ ]
144
+ },
145
+ "push": {
146
+ "aliases": [],
147
+ "args": {},
148
+ "flags": {
149
+ "service-token": {
150
+ "env": "KNOCK_SERVICE_TOKEN",
151
+ "name": "service-token",
152
+ "required": true,
153
+ "summary": "The service token to authenticate with.",
154
+ "hasDynamicHelp": false,
155
+ "multiple": false,
156
+ "type": "option"
157
+ },
158
+ "api-origin": {
159
+ "hidden": true,
160
+ "name": "api-origin",
161
+ "required": false,
162
+ "hasDynamicHelp": false,
163
+ "multiple": false,
164
+ "type": "option"
165
+ },
166
+ "environment": {
167
+ "name": "environment",
168
+ "summary": "Pushing resources is only allowed in the development environment",
169
+ "default": "development",
170
+ "hasDynamicHelp": false,
171
+ "multiple": false,
172
+ "options": [
173
+ "development"
174
+ ],
175
+ "type": "option"
176
+ },
177
+ "knock-dir": {
178
+ "name": "knock-dir",
179
+ "required": true,
180
+ "summary": "The target directory path to find all resources to push.",
181
+ "hasDynamicHelp": false,
182
+ "multiple": false,
183
+ "type": "option"
184
+ },
185
+ "commit": {
186
+ "name": "commit",
187
+ "summary": "Push and commit the resource(s) at the same time",
188
+ "allowNo": false,
189
+ "type": "boolean"
190
+ },
191
+ "commit-message": {
192
+ "char": "m",
193
+ "dependsOn": [
194
+ "commit"
195
+ ],
196
+ "name": "commit-message",
197
+ "summary": "Use the given value as the commit message",
198
+ "hasDynamicHelp": false,
199
+ "multiple": false,
200
+ "type": "option"
201
+ }
202
+ },
203
+ "hasDynamicHelp": false,
204
+ "hiddenAliases": [],
205
+ "id": "push",
206
+ "pluginAlias": "@knocklabs/cli",
207
+ "pluginName": "@knocklabs/cli",
208
+ "pluginType": "core",
209
+ "strict": true,
210
+ "summary": "Push all resources from a local file system to Knock.",
211
+ "enableJsonFlag": false,
212
+ "isESM": false,
213
+ "relativePath": [
214
+ "dist",
215
+ "commands",
216
+ "push.js"
217
+ ]
218
+ },
79
219
  "whoami": {
80
220
  "aliases": [],
81
221
  "args": {},
@@ -240,13 +380,551 @@
240
380
  "aliases": [],
241
381
  "args": {},
242
382
  "flags": {
243
- "json": {
244
- "description": "Format output as json.",
245
- "helpGroup": "GLOBAL",
246
- "name": "json",
247
- "allowNo": false,
248
- "type": "boolean"
249
- },
383
+ "json": {
384
+ "description": "Format output as json.",
385
+ "helpGroup": "GLOBAL",
386
+ "name": "json",
387
+ "allowNo": false,
388
+ "type": "boolean"
389
+ },
390
+ "service-token": {
391
+ "env": "KNOCK_SERVICE_TOKEN",
392
+ "name": "service-token",
393
+ "required": true,
394
+ "summary": "The service token to authenticate with.",
395
+ "hasDynamicHelp": false,
396
+ "multiple": false,
397
+ "type": "option"
398
+ },
399
+ "api-origin": {
400
+ "hidden": true,
401
+ "name": "api-origin",
402
+ "required": false,
403
+ "hasDynamicHelp": false,
404
+ "multiple": false,
405
+ "type": "option"
406
+ },
407
+ "environment": {
408
+ "name": "environment",
409
+ "summary": "The environment to use.",
410
+ "default": "development",
411
+ "hasDynamicHelp": false,
412
+ "multiple": false,
413
+ "type": "option"
414
+ },
415
+ "promoted": {
416
+ "name": "promoted",
417
+ "summary": "Show only promoted or unpromoted changes between the given environment and the subsequent environment.",
418
+ "allowNo": true,
419
+ "type": "boolean"
420
+ },
421
+ "resource-type": {
422
+ "name": "resource-type",
423
+ "summary": "Filter commits by resource type. Must be used together with resource-id.",
424
+ "hasDynamicHelp": false,
425
+ "multiple": false,
426
+ "options": [
427
+ "email_layout",
428
+ "guide",
429
+ "message_type",
430
+ "partial",
431
+ "translation",
432
+ "workflow"
433
+ ],
434
+ "type": "option"
435
+ },
436
+ "resource-id": {
437
+ "name": "resource-id",
438
+ "summary": "Filter commits by resource identifier. Must be used together with resource-type. For most resources, this will be the resource key. In the case of translations, this will be the locale code and namespace, separated by a /. For example, en/courses or en.",
439
+ "hasDynamicHelp": false,
440
+ "multiple": false,
441
+ "type": "option"
442
+ },
443
+ "after": {
444
+ "name": "after",
445
+ "summary": "The cursor after which to fetch the next page.",
446
+ "hasDynamicHelp": false,
447
+ "multiple": false,
448
+ "type": "option"
449
+ },
450
+ "before": {
451
+ "name": "before",
452
+ "summary": "The cursor before which to fetch the previous page.",
453
+ "hasDynamicHelp": false,
454
+ "multiple": false,
455
+ "type": "option"
456
+ },
457
+ "limit": {
458
+ "name": "limit",
459
+ "summary": "The total number of entries to fetch per page.",
460
+ "hasDynamicHelp": false,
461
+ "multiple": false,
462
+ "type": "option"
463
+ }
464
+ },
465
+ "hasDynamicHelp": false,
466
+ "hiddenAliases": [],
467
+ "id": "commit:list",
468
+ "pluginAlias": "@knocklabs/cli",
469
+ "pluginName": "@knocklabs/cli",
470
+ "pluginType": "core",
471
+ "strict": true,
472
+ "summary": "Display all commits in an environment",
473
+ "enableJsonFlag": true,
474
+ "isESM": false,
475
+ "relativePath": [
476
+ "dist",
477
+ "commands",
478
+ "commit",
479
+ "list.js"
480
+ ]
481
+ },
482
+ "commit:promote": {
483
+ "aliases": [],
484
+ "args": {},
485
+ "flags": {
486
+ "service-token": {
487
+ "env": "KNOCK_SERVICE_TOKEN",
488
+ "name": "service-token",
489
+ "required": true,
490
+ "summary": "The service token to authenticate with.",
491
+ "hasDynamicHelp": false,
492
+ "multiple": false,
493
+ "type": "option"
494
+ },
495
+ "api-origin": {
496
+ "hidden": true,
497
+ "name": "api-origin",
498
+ "required": false,
499
+ "hasDynamicHelp": false,
500
+ "multiple": false,
501
+ "type": "option"
502
+ },
503
+ "to": {
504
+ "name": "to",
505
+ "summary": "The destination environment to promote all changes from the preceding environment.",
506
+ "hasDynamicHelp": false,
507
+ "multiple": false,
508
+ "type": "option"
509
+ },
510
+ "force": {
511
+ "name": "force",
512
+ "summary": "Remove the confirmation prompt.",
513
+ "allowNo": false,
514
+ "type": "boolean"
515
+ },
516
+ "only": {
517
+ "name": "only",
518
+ "summary": "The target commit id to promote to the subsequent environment",
519
+ "hasDynamicHelp": false,
520
+ "multiple": false,
521
+ "type": "option"
522
+ }
523
+ },
524
+ "hasDynamicHelp": false,
525
+ "hiddenAliases": [],
526
+ "id": "commit:promote",
527
+ "pluginAlias": "@knocklabs/cli",
528
+ "pluginName": "@knocklabs/cli",
529
+ "pluginType": "core",
530
+ "strict": true,
531
+ "summary": "Promote one or all commits to the subsequent environment.",
532
+ "enableJsonFlag": false,
533
+ "isESM": false,
534
+ "relativePath": [
535
+ "dist",
536
+ "commands",
537
+ "commit",
538
+ "promote.js"
539
+ ]
540
+ },
541
+ "guide:activate": {
542
+ "aliases": [],
543
+ "args": {
544
+ "guideKey": {
545
+ "name": "guideKey",
546
+ "required": true
547
+ }
548
+ },
549
+ "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.",
550
+ "flags": {
551
+ "service-token": {
552
+ "env": "KNOCK_SERVICE_TOKEN",
553
+ "name": "service-token",
554
+ "required": true,
555
+ "summary": "The service token to authenticate with.",
556
+ "hasDynamicHelp": false,
557
+ "multiple": false,
558
+ "type": "option"
559
+ },
560
+ "api-origin": {
561
+ "hidden": true,
562
+ "name": "api-origin",
563
+ "required": false,
564
+ "hasDynamicHelp": false,
565
+ "multiple": false,
566
+ "type": "option"
567
+ },
568
+ "environment": {
569
+ "name": "environment",
570
+ "required": true,
571
+ "summary": "The environment to use.",
572
+ "hasDynamicHelp": false,
573
+ "multiple": false,
574
+ "type": "option"
575
+ },
576
+ "status": {
577
+ "exclusive": [
578
+ "from",
579
+ "until"
580
+ ],
581
+ "name": "status",
582
+ "summary": "The guide active status to set. Cannot be used with --from/--until.",
583
+ "hasDynamicHelp": false,
584
+ "multiple": false,
585
+ "options": [
586
+ "true",
587
+ "false"
588
+ ],
589
+ "type": "option"
590
+ },
591
+ "from": {
592
+ "exclusive": [
593
+ "status"
594
+ ],
595
+ "name": "from",
596
+ "summary": "Activate the guide from this ISO8601 UTC datetime (e.g., '2024-01-15T10:30:00Z').",
597
+ "hasDynamicHelp": false,
598
+ "multiple": false,
599
+ "type": "option"
600
+ },
601
+ "until": {
602
+ "exclusive": [
603
+ "status"
604
+ ],
605
+ "name": "until",
606
+ "summary": "Deactivate the guide at this ISO8601 UTC datetime (e.g., '2024-01-15T18:30:00Z').",
607
+ "hasDynamicHelp": false,
608
+ "multiple": false,
609
+ "type": "option"
610
+ },
611
+ "force": {
612
+ "name": "force",
613
+ "summary": "Remove the confirmation prompt.",
614
+ "allowNo": false,
615
+ "type": "boolean"
616
+ }
617
+ },
618
+ "hasDynamicHelp": false,
619
+ "hiddenAliases": [],
620
+ "id": "guide:activate",
621
+ "pluginAlias": "@knocklabs/cli",
622
+ "pluginName": "@knocklabs/cli",
623
+ "pluginType": "core",
624
+ "strict": true,
625
+ "summary": "Activate or deactivate a guide in a given environment.",
626
+ "enableJsonFlag": false,
627
+ "isESM": false,
628
+ "relativePath": [
629
+ "dist",
630
+ "commands",
631
+ "guide",
632
+ "activate.js"
633
+ ]
634
+ },
635
+ "guide:generate-types": {
636
+ "aliases": [],
637
+ "args": {},
638
+ "description": "Generate types for all guides in an environment and write them to a file.",
639
+ "flags": {
640
+ "service-token": {
641
+ "env": "KNOCK_SERVICE_TOKEN",
642
+ "name": "service-token",
643
+ "required": true,
644
+ "summary": "The service token to authenticate with.",
645
+ "hasDynamicHelp": false,
646
+ "multiple": false,
647
+ "type": "option"
648
+ },
649
+ "api-origin": {
650
+ "hidden": true,
651
+ "name": "api-origin",
652
+ "required": false,
653
+ "hasDynamicHelp": false,
654
+ "multiple": false,
655
+ "type": "option"
656
+ },
657
+ "environment": {
658
+ "name": "environment",
659
+ "summary": "Select the environment to generate types for.",
660
+ "default": "development",
661
+ "hasDynamicHelp": false,
662
+ "multiple": false,
663
+ "type": "option"
664
+ },
665
+ "output-file": {
666
+ "name": "output-file",
667
+ "required": true,
668
+ "summary": "The output file to write the generated types to. We currently support .ts, .py, .go, .rb files only. Your file extension will determine the target language for the generated types.",
669
+ "hasDynamicHelp": false,
670
+ "multiple": false,
671
+ "type": "option"
672
+ }
673
+ },
674
+ "hasDynamicHelp": false,
675
+ "hiddenAliases": [],
676
+ "id": "guide:generate-types",
677
+ "pluginAlias": "@knocklabs/cli",
678
+ "pluginName": "@knocklabs/cli",
679
+ "pluginType": "core",
680
+ "strict": true,
681
+ "enableJsonFlag": false,
682
+ "isESM": false,
683
+ "relativePath": [
684
+ "dist",
685
+ "commands",
686
+ "guide",
687
+ "generate-types.js"
688
+ ]
689
+ },
690
+ "guide:get": {
691
+ "aliases": [],
692
+ "args": {
693
+ "guideKey": {
694
+ "name": "guideKey",
695
+ "required": true
696
+ }
697
+ },
698
+ "flags": {
699
+ "json": {
700
+ "description": "Format output as json.",
701
+ "helpGroup": "GLOBAL",
702
+ "name": "json",
703
+ "allowNo": false,
704
+ "type": "boolean"
705
+ },
706
+ "service-token": {
707
+ "env": "KNOCK_SERVICE_TOKEN",
708
+ "name": "service-token",
709
+ "required": true,
710
+ "summary": "The service token to authenticate with.",
711
+ "hasDynamicHelp": false,
712
+ "multiple": false,
713
+ "type": "option"
714
+ },
715
+ "api-origin": {
716
+ "hidden": true,
717
+ "name": "api-origin",
718
+ "required": false,
719
+ "hasDynamicHelp": false,
720
+ "multiple": false,
721
+ "type": "option"
722
+ },
723
+ "environment": {
724
+ "name": "environment",
725
+ "summary": "The environment to use.",
726
+ "default": "development",
727
+ "hasDynamicHelp": false,
728
+ "multiple": false,
729
+ "type": "option"
730
+ },
731
+ "hide-uncommitted-changes": {
732
+ "name": "hide-uncommitted-changes",
733
+ "summary": "Hide any uncommitted changes.",
734
+ "allowNo": false,
735
+ "type": "boolean"
736
+ }
737
+ },
738
+ "hasDynamicHelp": false,
739
+ "hidden": true,
740
+ "hiddenAliases": [],
741
+ "id": "guide:get",
742
+ "pluginAlias": "@knocklabs/cli",
743
+ "pluginName": "@knocklabs/cli",
744
+ "pluginType": "core",
745
+ "strict": true,
746
+ "summary": "Display a single guide from an environment.",
747
+ "enableJsonFlag": true,
748
+ "isESM": false,
749
+ "relativePath": [
750
+ "dist",
751
+ "commands",
752
+ "guide",
753
+ "get.js"
754
+ ]
755
+ },
756
+ "guide:list": {
757
+ "aliases": [],
758
+ "args": {},
759
+ "flags": {
760
+ "json": {
761
+ "description": "Format output as json.",
762
+ "helpGroup": "GLOBAL",
763
+ "name": "json",
764
+ "allowNo": false,
765
+ "type": "boolean"
766
+ },
767
+ "service-token": {
768
+ "env": "KNOCK_SERVICE_TOKEN",
769
+ "name": "service-token",
770
+ "required": true,
771
+ "summary": "The service token to authenticate with.",
772
+ "hasDynamicHelp": false,
773
+ "multiple": false,
774
+ "type": "option"
775
+ },
776
+ "api-origin": {
777
+ "hidden": true,
778
+ "name": "api-origin",
779
+ "required": false,
780
+ "hasDynamicHelp": false,
781
+ "multiple": false,
782
+ "type": "option"
783
+ },
784
+ "environment": {
785
+ "name": "environment",
786
+ "summary": "The environment to use.",
787
+ "default": "development",
788
+ "hasDynamicHelp": false,
789
+ "multiple": false,
790
+ "type": "option"
791
+ },
792
+ "hide-uncommitted-changes": {
793
+ "name": "hide-uncommitted-changes",
794
+ "summary": "Hide any uncommitted changes.",
795
+ "allowNo": false,
796
+ "type": "boolean"
797
+ },
798
+ "after": {
799
+ "name": "after",
800
+ "summary": "The cursor after which to fetch the next page.",
801
+ "hasDynamicHelp": false,
802
+ "multiple": false,
803
+ "type": "option"
804
+ },
805
+ "before": {
806
+ "name": "before",
807
+ "summary": "The cursor before which to fetch the previous page.",
808
+ "hasDynamicHelp": false,
809
+ "multiple": false,
810
+ "type": "option"
811
+ },
812
+ "limit": {
813
+ "name": "limit",
814
+ "summary": "The total number of entries to fetch per page.",
815
+ "hasDynamicHelp": false,
816
+ "multiple": false,
817
+ "type": "option"
818
+ }
819
+ },
820
+ "hasDynamicHelp": false,
821
+ "hidden": true,
822
+ "hiddenAliases": [],
823
+ "id": "guide:list",
824
+ "pluginAlias": "@knocklabs/cli",
825
+ "pluginName": "@knocklabs/cli",
826
+ "pluginType": "core",
827
+ "strict": true,
828
+ "summary": "Display all guides for an environment.",
829
+ "enableJsonFlag": true,
830
+ "isESM": false,
831
+ "relativePath": [
832
+ "dist",
833
+ "commands",
834
+ "guide",
835
+ "list.js"
836
+ ]
837
+ },
838
+ "guide:pull": {
839
+ "aliases": [],
840
+ "args": {
841
+ "guideKey": {
842
+ "name": "guideKey",
843
+ "required": false
844
+ }
845
+ },
846
+ "flags": {
847
+ "service-token": {
848
+ "env": "KNOCK_SERVICE_TOKEN",
849
+ "name": "service-token",
850
+ "required": true,
851
+ "summary": "The service token to authenticate with.",
852
+ "hasDynamicHelp": false,
853
+ "multiple": false,
854
+ "type": "option"
855
+ },
856
+ "api-origin": {
857
+ "hidden": true,
858
+ "name": "api-origin",
859
+ "required": false,
860
+ "hasDynamicHelp": false,
861
+ "multiple": false,
862
+ "type": "option"
863
+ },
864
+ "environment": {
865
+ "name": "environment",
866
+ "summary": "The environment to use.",
867
+ "default": "development",
868
+ "hasDynamicHelp": false,
869
+ "multiple": false,
870
+ "type": "option"
871
+ },
872
+ "all": {
873
+ "name": "all",
874
+ "summary": "Whether to pull all guides from the specified environment.",
875
+ "allowNo": false,
876
+ "type": "boolean"
877
+ },
878
+ "guides-dir": {
879
+ "dependsOn": [
880
+ "all"
881
+ ],
882
+ "name": "guides-dir",
883
+ "summary": "The target directory path to pull all guides into.",
884
+ "hasDynamicHelp": false,
885
+ "multiple": false,
886
+ "type": "option"
887
+ },
888
+ "hide-uncommitted-changes": {
889
+ "name": "hide-uncommitted-changes",
890
+ "summary": "Hide any uncommitted changes.",
891
+ "allowNo": false,
892
+ "type": "boolean"
893
+ },
894
+ "force": {
895
+ "name": "force",
896
+ "summary": "Remove the confirmation prompt.",
897
+ "allowNo": false,
898
+ "type": "boolean"
899
+ }
900
+ },
901
+ "hasDynamicHelp": false,
902
+ "hidden": true,
903
+ "hiddenAliases": [],
904
+ "id": "guide:pull",
905
+ "pluginAlias": "@knocklabs/cli",
906
+ "pluginName": "@knocklabs/cli",
907
+ "pluginType": "core",
908
+ "strict": true,
909
+ "summary": "Pull one or more guides from an environment into a local file system.",
910
+ "enableJsonFlag": false,
911
+ "isESM": false,
912
+ "relativePath": [
913
+ "dist",
914
+ "commands",
915
+ "guide",
916
+ "pull.js"
917
+ ]
918
+ },
919
+ "guide:push": {
920
+ "aliases": [],
921
+ "args": {
922
+ "guideKey": {
923
+ "name": "guideKey",
924
+ "required": false
925
+ }
926
+ },
927
+ "flags": {
250
928
  "service-token": {
251
929
  "env": "KNOCK_SERVICE_TOKEN",
252
930
  "name": "service-token",
@@ -266,60 +944,75 @@
266
944
  },
267
945
  "environment": {
268
946
  "name": "environment",
269
- "summary": "The environment to use.",
947
+ "summary": "Pushing a guide is only allowed in the development environment",
270
948
  "default": "development",
271
949
  "hasDynamicHelp": false,
272
950
  "multiple": false,
951
+ "options": [
952
+ "development"
953
+ ],
273
954
  "type": "option"
274
955
  },
275
- "promoted": {
276
- "name": "promoted",
277
- "summary": "Show only promoted or unpromoted changes between the given environment and the subsequent environment.",
278
- "allowNo": true,
956
+ "all": {
957
+ "name": "all",
958
+ "summary": "Whether to push all guides from the target directory.",
959
+ "allowNo": false,
279
960
  "type": "boolean"
280
961
  },
281
- "after": {
282
- "name": "after",
283
- "summary": "The cursor after which to fetch the next page.",
962
+ "guides-dir": {
963
+ "dependsOn": [
964
+ "all"
965
+ ],
966
+ "name": "guides-dir",
967
+ "summary": "The target directory path to find all guides to push.",
284
968
  "hasDynamicHelp": false,
285
969
  "multiple": false,
286
970
  "type": "option"
287
971
  },
288
- "before": {
289
- "name": "before",
290
- "summary": "The cursor before which to fetch the previous page.",
291
- "hasDynamicHelp": false,
292
- "multiple": false,
293
- "type": "option"
972
+ "commit": {
973
+ "name": "commit",
974
+ "summary": "Push and commit the guide(s) at the same time",
975
+ "allowNo": false,
976
+ "type": "boolean"
294
977
  },
295
- "limit": {
296
- "name": "limit",
297
- "summary": "The total number of entries to fetch per page.",
978
+ "commit-message": {
979
+ "char": "m",
980
+ "dependsOn": [
981
+ "commit"
982
+ ],
983
+ "name": "commit-message",
984
+ "summary": "Use the given value as the commit message",
298
985
  "hasDynamicHelp": false,
299
986
  "multiple": false,
300
987
  "type": "option"
301
988
  }
302
989
  },
303
990
  "hasDynamicHelp": false,
991
+ "hidden": true,
304
992
  "hiddenAliases": [],
305
- "id": "commit:list",
993
+ "id": "guide:push",
306
994
  "pluginAlias": "@knocklabs/cli",
307
995
  "pluginName": "@knocklabs/cli",
308
996
  "pluginType": "core",
309
997
  "strict": true,
310
- "summary": "Display all commits in an environment",
311
- "enableJsonFlag": true,
998
+ "summary": "Push one or more guides from a local file system to Knock.",
999
+ "enableJsonFlag": false,
312
1000
  "isESM": false,
313
1001
  "relativePath": [
314
1002
  "dist",
315
1003
  "commands",
316
- "commit",
317
- "list.js"
1004
+ "guide",
1005
+ "push.js"
318
1006
  ]
319
1007
  },
320
- "commit:promote": {
1008
+ "guide:validate": {
321
1009
  "aliases": [],
322
- "args": {},
1010
+ "args": {
1011
+ "guideKey": {
1012
+ "name": "guideKey",
1013
+ "required": false
1014
+ }
1015
+ },
323
1016
  "flags": {
324
1017
  "service-token": {
325
1018
  "env": "KNOCK_SERVICE_TOKEN",
@@ -338,49 +1031,57 @@
338
1031
  "multiple": false,
339
1032
  "type": "option"
340
1033
  },
341
- "to": {
342
- "name": "to",
343
- "summary": "The destination environment to promote all changes from the preceding environment.",
1034
+ "environment": {
1035
+ "name": "environment",
1036
+ "summary": "Validating a guide is only done in the development environment",
1037
+ "default": "development",
344
1038
  "hasDynamicHelp": false,
345
1039
  "multiple": false,
1040
+ "options": [
1041
+ "development"
1042
+ ],
346
1043
  "type": "option"
347
1044
  },
348
- "force": {
349
- "name": "force",
350
- "summary": "Remove the confirmation prompt.",
1045
+ "all": {
1046
+ "name": "all",
1047
+ "summary": "Whether to validate all guides from the target directory.",
351
1048
  "allowNo": false,
352
1049
  "type": "boolean"
353
1050
  },
354
- "only": {
355
- "name": "only",
356
- "summary": "The target commit id to promote to the subsequent environment",
1051
+ "guides-dir": {
1052
+ "dependsOn": [
1053
+ "all"
1054
+ ],
1055
+ "name": "guides-dir",
1056
+ "summary": "The target directory path to find all guides to validate.",
357
1057
  "hasDynamicHelp": false,
358
1058
  "multiple": false,
359
1059
  "type": "option"
360
1060
  }
361
1061
  },
362
1062
  "hasDynamicHelp": false,
1063
+ "hidden": true,
363
1064
  "hiddenAliases": [],
364
- "id": "commit:promote",
1065
+ "id": "guide:validate",
365
1066
  "pluginAlias": "@knocklabs/cli",
366
1067
  "pluginName": "@knocklabs/cli",
367
1068
  "pluginType": "core",
368
1069
  "strict": true,
369
- "summary": "Promote one or all commits to the subsequent environment.",
1070
+ "summary": "Validate one or more guides from a local file system.",
370
1071
  "enableJsonFlag": false,
371
1072
  "isESM": false,
372
1073
  "relativePath": [
373
1074
  "dist",
374
1075
  "commands",
375
- "commit",
376
- "promote.js"
1076
+ "guide",
1077
+ "validate.js"
377
1078
  ]
378
1079
  },
379
- "layout:get": {
1080
+ "message-type:get": {
380
1081
  "aliases": [],
381
1082
  "args": {
382
- "emailLayoutKey": {
383
- "name": "emailLayoutKey",
1083
+ "messageTypeKey": {
1084
+ "name": "messageTypeKey",
384
1085
  "required": true
385
1086
  }
386
1087
  },
@@ -425,23 +1126,24 @@
425
1126
  }
426
1127
  },
427
1128
  "hasDynamicHelp": false,
1129
+ "hidden": true,
428
1130
  "hiddenAliases": [],
429
- "id": "layout:get",
1131
+ "id": "message-type:get",
430
1132
  "pluginAlias": "@knocklabs/cli",
431
1133
  "pluginName": "@knocklabs/cli",
432
1134
  "pluginType": "core",
433
1135
  "strict": true,
434
- "summary": "Display a single email layout from an environment.",
1136
+ "summary": "Display a single in-app message type from an environment.",
435
1137
  "enableJsonFlag": true,
436
1138
  "isESM": false,
437
1139
  "relativePath": [
438
1140
  "dist",
439
1141
  "commands",
440
- "layout",
1142
+ "message-type",
441
1143
  "get.js"
442
1144
  ]
443
1145
  },
444
- "layout:list": {
1146
+ "message-type:list": {
445
1147
  "aliases": [],
446
1148
  "args": {},
447
1149
  "flags": {
@@ -506,27 +1208,28 @@
506
1208
  }
507
1209
  },
508
1210
  "hasDynamicHelp": false,
1211
+ "hidden": true,
509
1212
  "hiddenAliases": [],
510
- "id": "layout:list",
1213
+ "id": "message-type:list",
511
1214
  "pluginAlias": "@knocklabs/cli",
512
1215
  "pluginName": "@knocklabs/cli",
513
1216
  "pluginType": "core",
514
1217
  "strict": true,
515
- "summary": "Display all email layouts for an environment.",
1218
+ "summary": "Display all in-app message types for an environment.",
516
1219
  "enableJsonFlag": true,
517
1220
  "isESM": false,
518
1221
  "relativePath": [
519
1222
  "dist",
520
1223
  "commands",
521
- "layout",
1224
+ "message-type",
522
1225
  "list.js"
523
1226
  ]
524
1227
  },
525
- "layout:pull": {
1228
+ "message-type:pull": {
526
1229
  "aliases": [],
527
1230
  "args": {
528
- "emailLayoutKey": {
529
- "name": "emailLayoutKey",
1231
+ "messageTypeKey": {
1232
+ "name": "messageTypeKey",
530
1233
  "required": false
531
1234
  }
532
1235
  },
@@ -558,19 +1261,16 @@
558
1261
  },
559
1262
  "all": {
560
1263
  "name": "all",
561
- "summary": "Whether to pull all email layouts from the specified environment.",
1264
+ "summary": "Whether to pull all in-app message types from the specified environment.",
562
1265
  "allowNo": false,
563
1266
  "type": "boolean"
564
1267
  },
565
- "layouts-dir": {
566
- "aliases": [
567
- "email-layouts-dir"
568
- ],
1268
+ "message-types-dir": {
569
1269
  "dependsOn": [
570
1270
  "all"
571
1271
  ],
572
- "name": "layouts-dir",
573
- "summary": "The target directory path to pull all email layouts into.",
1272
+ "name": "message-types-dir",
1273
+ "summary": "The target directory path to pull all in-app message types into.",
574
1274
  "hasDynamicHelp": false,
575
1275
  "multiple": false,
576
1276
  "type": "option"
@@ -589,27 +1289,28 @@
589
1289
  }
590
1290
  },
591
1291
  "hasDynamicHelp": false,
1292
+ "hidden": true,
592
1293
  "hiddenAliases": [],
593
- "id": "layout:pull",
1294
+ "id": "message-type:pull",
594
1295
  "pluginAlias": "@knocklabs/cli",
595
1296
  "pluginName": "@knocklabs/cli",
596
1297
  "pluginType": "core",
597
1298
  "strict": true,
598
- "summary": "Pull one or more email layouts from an environment into a local file system.",
1299
+ "summary": "Pull one or more in-app message types from an environment into a local file system.",
599
1300
  "enableJsonFlag": false,
600
1301
  "isESM": false,
601
1302
  "relativePath": [
602
1303
  "dist",
603
1304
  "commands",
604
- "layout",
1305
+ "message-type",
605
1306
  "pull.js"
606
1307
  ]
607
1308
  },
608
- "layout:push": {
1309
+ "message-type:push": {
609
1310
  "aliases": [],
610
1311
  "args": {
611
- "emailLayoutKey": {
612
- "name": "emailLayoutKey",
1312
+ "messageTypeKey": {
1313
+ "name": "messageTypeKey",
613
1314
  "required": false
614
1315
  }
615
1316
  },
@@ -633,7 +1334,7 @@
633
1334
  },
634
1335
  "environment": {
635
1336
  "name": "environment",
636
- "summary": "Pushing an email layout is only allowed in the development environment",
1337
+ "summary": "Pushing a message type is only allowed in the development environment",
637
1338
  "default": "development",
638
1339
  "hasDynamicHelp": false,
639
1340
  "multiple": false,
@@ -644,26 +1345,23 @@
644
1345
  },
645
1346
  "all": {
646
1347
  "name": "all",
647
- "summary": "Whether to push all layouts from the target directory.",
1348
+ "summary": "Whether to push all message types from the target directory.",
648
1349
  "allowNo": false,
649
1350
  "type": "boolean"
650
1351
  },
651
- "layouts-dir": {
652
- "aliases": [
653
- "email-layouts-dir"
654
- ],
1352
+ "message-types-dir": {
655
1353
  "dependsOn": [
656
1354
  "all"
657
1355
  ],
658
- "name": "layouts-dir",
659
- "summary": "The target directory path to find all layouts to push.",
1356
+ "name": "message-types-dir",
1357
+ "summary": "The target directory path to find all message types to push.",
660
1358
  "hasDynamicHelp": false,
661
1359
  "multiple": false,
662
1360
  "type": "option"
663
1361
  },
664
1362
  "commit": {
665
1363
  "name": "commit",
666
- "summary": "Push and commit the layout(s) at the same time",
1364
+ "summary": "Push and commit the message type(s) at the same time",
667
1365
  "allowNo": false,
668
1366
  "type": "boolean"
669
1367
  },
@@ -680,27 +1378,28 @@
680
1378
  }
681
1379
  },
682
1380
  "hasDynamicHelp": false,
1381
+ "hidden": true,
683
1382
  "hiddenAliases": [],
684
- "id": "layout:push",
1383
+ "id": "message-type:push",
685
1384
  "pluginAlias": "@knocklabs/cli",
686
1385
  "pluginName": "@knocklabs/cli",
687
1386
  "pluginType": "core",
688
1387
  "strict": true,
689
- "summary": "Push one or more email layouts from a local file system to Knock.",
1388
+ "summary": "Push one or more message types from a local file system to Knock.",
690
1389
  "enableJsonFlag": false,
691
1390
  "isESM": false,
692
1391
  "relativePath": [
693
1392
  "dist",
694
1393
  "commands",
695
- "layout",
1394
+ "message-type",
696
1395
  "push.js"
697
1396
  ]
698
1397
  },
699
- "layout:validate": {
1398
+ "message-type:validate": {
700
1399
  "aliases": [],
701
1400
  "args": {
702
- "emailLayoutKey": {
703
- "name": "emailLayoutKey",
1401
+ "messageTypeKey": {
1402
+ "name": "messageTypeKey",
704
1403
  "required": false
705
1404
  }
706
1405
  },
@@ -724,7 +1423,7 @@
724
1423
  },
725
1424
  "environment": {
726
1425
  "name": "environment",
727
- "summary": "Validating a layout is only done in the development environment",
1426
+ "summary": "Validating a message type is only done in the development environment",
728
1427
  "default": "development",
729
1428
  "hasDynamicHelp": false,
730
1429
  "multiple": false,
@@ -735,46 +1434,44 @@
735
1434
  },
736
1435
  "all": {
737
1436
  "name": "all",
738
- "summary": "Whether to validate all layouts from the target directory.",
1437
+ "summary": "Whether to validate all message types from the target directory.",
739
1438
  "allowNo": false,
740
1439
  "type": "boolean"
741
1440
  },
742
- "layouts-dir": {
743
- "aliases": [
744
- "email-layouts-dir"
745
- ],
1441
+ "message-types-dir": {
746
1442
  "dependsOn": [
747
1443
  "all"
748
1444
  ],
749
- "name": "layouts-dir",
750
- "summary": "The target directory path to find all layouts to validate.",
1445
+ "name": "message-types-dir",
1446
+ "summary": "The target directory path to find all message types to validate.",
751
1447
  "hasDynamicHelp": false,
752
1448
  "multiple": false,
753
1449
  "type": "option"
754
1450
  }
755
1451
  },
756
1452
  "hasDynamicHelp": false,
1453
+ "hidden": true,
757
1454
  "hiddenAliases": [],
758
- "id": "layout:validate",
1455
+ "id": "message-type:validate",
759
1456
  "pluginAlias": "@knocklabs/cli",
760
1457
  "pluginName": "@knocklabs/cli",
761
1458
  "pluginType": "core",
762
1459
  "strict": true,
763
- "summary": "Validate one or more layouts from a local file system.",
1460
+ "summary": "Validate one or more message types from a local file system.",
764
1461
  "enableJsonFlag": false,
765
1462
  "isESM": false,
766
1463
  "relativePath": [
767
1464
  "dist",
768
1465
  "commands",
769
- "layout",
1466
+ "message-type",
770
1467
  "validate.js"
771
1468
  ]
772
1469
  },
773
- "partial:get": {
1470
+ "layout:get": {
774
1471
  "aliases": [],
775
1472
  "args": {
776
- "partialKey": {
777
- "name": "partialKey",
1473
+ "emailLayoutKey": {
1474
+ "name": "emailLayoutKey",
778
1475
  "required": true
779
1476
  }
780
1477
  },
@@ -820,22 +1517,22 @@
820
1517
  },
821
1518
  "hasDynamicHelp": false,
822
1519
  "hiddenAliases": [],
823
- "id": "partial:get",
1520
+ "id": "layout:get",
824
1521
  "pluginAlias": "@knocklabs/cli",
825
1522
  "pluginName": "@knocklabs/cli",
826
1523
  "pluginType": "core",
827
1524
  "strict": true,
828
- "summary": "Display a single partial from an environment.",
1525
+ "summary": "Display a single email layout from an environment.",
829
1526
  "enableJsonFlag": true,
830
1527
  "isESM": false,
831
1528
  "relativePath": [
832
1529
  "dist",
833
1530
  "commands",
834
- "partial",
1531
+ "layout",
835
1532
  "get.js"
836
1533
  ]
837
1534
  },
838
- "partial:list": {
1535
+ "layout:list": {
839
1536
  "aliases": [],
840
1537
  "args": {},
841
1538
  "flags": {
@@ -901,26 +1598,26 @@
901
1598
  },
902
1599
  "hasDynamicHelp": false,
903
1600
  "hiddenAliases": [],
904
- "id": "partial:list",
1601
+ "id": "layout:list",
905
1602
  "pluginAlias": "@knocklabs/cli",
906
1603
  "pluginName": "@knocklabs/cli",
907
1604
  "pluginType": "core",
908
1605
  "strict": true,
909
- "summary": "Display all partials for an environment.",
1606
+ "summary": "Display all email layouts for an environment.",
910
1607
  "enableJsonFlag": true,
911
1608
  "isESM": false,
912
1609
  "relativePath": [
913
1610
  "dist",
914
1611
  "commands",
915
- "partial",
1612
+ "layout",
916
1613
  "list.js"
917
1614
  ]
918
1615
  },
919
- "partial:pull": {
1616
+ "layout:pull": {
920
1617
  "aliases": [],
921
1618
  "args": {
922
- "partialKey": {
923
- "name": "partialKey",
1619
+ "emailLayoutKey": {
1620
+ "name": "emailLayoutKey",
924
1621
  "required": false
925
1622
  }
926
1623
  },
@@ -952,16 +1649,19 @@
952
1649
  },
953
1650
  "all": {
954
1651
  "name": "all",
955
- "summary": "Whether to pull all partials from the specified environment.",
1652
+ "summary": "Whether to pull all email layouts from the specified environment.",
956
1653
  "allowNo": false,
957
1654
  "type": "boolean"
958
1655
  },
959
- "partials-dir": {
1656
+ "layouts-dir": {
1657
+ "aliases": [
1658
+ "email-layouts-dir"
1659
+ ],
960
1660
  "dependsOn": [
961
1661
  "all"
962
1662
  ],
963
- "name": "partials-dir",
964
- "summary": "The target directory path to pull all partials into.",
1663
+ "name": "layouts-dir",
1664
+ "summary": "The target directory path to pull all email layouts into.",
965
1665
  "hasDynamicHelp": false,
966
1666
  "multiple": false,
967
1667
  "type": "option"
@@ -981,26 +1681,26 @@
981
1681
  },
982
1682
  "hasDynamicHelp": false,
983
1683
  "hiddenAliases": [],
984
- "id": "partial:pull",
1684
+ "id": "layout:pull",
985
1685
  "pluginAlias": "@knocklabs/cli",
986
1686
  "pluginName": "@knocklabs/cli",
987
1687
  "pluginType": "core",
988
1688
  "strict": true,
989
- "summary": "Pull one or more partial from an environment into a local file system.",
1689
+ "summary": "Pull one or more email layouts from an environment into a local file system.",
990
1690
  "enableJsonFlag": false,
991
1691
  "isESM": false,
992
1692
  "relativePath": [
993
1693
  "dist",
994
1694
  "commands",
995
- "partial",
1695
+ "layout",
996
1696
  "pull.js"
997
1697
  ]
998
1698
  },
999
- "partial:push": {
1699
+ "layout:push": {
1000
1700
  "aliases": [],
1001
1701
  "args": {
1002
- "partialKey": {
1003
- "name": "partialKey",
1702
+ "emailLayoutKey": {
1703
+ "name": "emailLayoutKey",
1004
1704
  "required": false
1005
1705
  }
1006
1706
  },
@@ -1024,7 +1724,7 @@
1024
1724
  },
1025
1725
  "environment": {
1026
1726
  "name": "environment",
1027
- "summary": "Pushing a partial is only allowed in the development environment",
1727
+ "summary": "Pushing an email layout is only allowed in the development environment",
1028
1728
  "default": "development",
1029
1729
  "hasDynamicHelp": false,
1030
1730
  "multiple": false,
@@ -1035,23 +1735,26 @@
1035
1735
  },
1036
1736
  "all": {
1037
1737
  "name": "all",
1038
- "summary": "Whether to push all partials from the target directory.",
1738
+ "summary": "Whether to push all layouts from the target directory.",
1039
1739
  "allowNo": false,
1040
1740
  "type": "boolean"
1041
1741
  },
1042
- "partials-dir": {
1742
+ "layouts-dir": {
1743
+ "aliases": [
1744
+ "email-layouts-dir"
1745
+ ],
1043
1746
  "dependsOn": [
1044
1747
  "all"
1045
1748
  ],
1046
- "name": "partials-dir",
1047
- "summary": "The target directory path to find all partials to push.",
1749
+ "name": "layouts-dir",
1750
+ "summary": "The target directory path to find all layouts to push.",
1048
1751
  "hasDynamicHelp": false,
1049
1752
  "multiple": false,
1050
1753
  "type": "option"
1051
1754
  },
1052
1755
  "commit": {
1053
1756
  "name": "commit",
1054
- "summary": "Push and commit the partial(s) at the same time",
1757
+ "summary": "Push and commit the layout(s) at the same time",
1055
1758
  "allowNo": false,
1056
1759
  "type": "boolean"
1057
1760
  },
@@ -1069,26 +1772,26 @@
1069
1772
  },
1070
1773
  "hasDynamicHelp": false,
1071
1774
  "hiddenAliases": [],
1072
- "id": "partial:push",
1775
+ "id": "layout:push",
1073
1776
  "pluginAlias": "@knocklabs/cli",
1074
1777
  "pluginName": "@knocklabs/cli",
1075
1778
  "pluginType": "core",
1076
1779
  "strict": true,
1077
- "summary": "Push one or more partials from a local file system to Knock.",
1780
+ "summary": "Push one or more email layouts from a local file system to Knock.",
1078
1781
  "enableJsonFlag": false,
1079
1782
  "isESM": false,
1080
1783
  "relativePath": [
1081
1784
  "dist",
1082
1785
  "commands",
1083
- "partial",
1786
+ "layout",
1084
1787
  "push.js"
1085
1788
  ]
1086
1789
  },
1087
- "partial:validate": {
1790
+ "layout:validate": {
1088
1791
  "aliases": [],
1089
1792
  "args": {
1090
- "partialKey": {
1091
- "name": "partialKey",
1793
+ "emailLayoutKey": {
1794
+ "name": "emailLayoutKey",
1092
1795
  "required": false
1093
1796
  }
1094
1797
  },
@@ -1112,7 +1815,7 @@
1112
1815
  },
1113
1816
  "environment": {
1114
1817
  "name": "environment",
1115
- "summary": "Validating a partial is only done in the development environment",
1818
+ "summary": "Validating a layout is only done in the development environment",
1116
1819
  "default": "development",
1117
1820
  "hasDynamicHelp": false,
1118
1821
  "multiple": false,
@@ -1123,16 +1826,19 @@
1123
1826
  },
1124
1827
  "all": {
1125
1828
  "name": "all",
1126
- "summary": "Whether to validate all partials from the target directory.",
1829
+ "summary": "Whether to validate all layouts from the target directory.",
1127
1830
  "allowNo": false,
1128
1831
  "type": "boolean"
1129
1832
  },
1130
- "partials-dir": {
1833
+ "layouts-dir": {
1834
+ "aliases": [
1835
+ "email-layouts-dir"
1836
+ ],
1131
1837
  "dependsOn": [
1132
1838
  "all"
1133
1839
  ],
1134
- "name": "partials-dir",
1135
- "summary": "The target directory path to find all partials to validate.",
1840
+ "name": "layouts-dir",
1841
+ "summary": "The target directory path to find all layouts to validate.",
1136
1842
  "hasDynamicHelp": false,
1137
1843
  "multiple": false,
1138
1844
  "type": "option"
@@ -1140,27 +1846,26 @@
1140
1846
  },
1141
1847
  "hasDynamicHelp": false,
1142
1848
  "hiddenAliases": [],
1143
- "id": "partial:validate",
1849
+ "id": "layout:validate",
1144
1850
  "pluginAlias": "@knocklabs/cli",
1145
1851
  "pluginName": "@knocklabs/cli",
1146
1852
  "pluginType": "core",
1147
1853
  "strict": true,
1148
- "summary": "Validate one or more partials from a local file system.",
1854
+ "summary": "Validate one or more layouts from a local file system.",
1149
1855
  "enableJsonFlag": false,
1150
1856
  "isESM": false,
1151
1857
  "relativePath": [
1152
1858
  "dist",
1153
1859
  "commands",
1154
- "partial",
1860
+ "layout",
1155
1861
  "validate.js"
1156
1862
  ]
1157
1863
  },
1158
- "translation:get": {
1864
+ "partial:get": {
1159
1865
  "aliases": [],
1160
1866
  "args": {
1161
- "translationRef": {
1162
- "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
1163
- "name": "translationRef",
1867
+ "partialKey": {
1868
+ "name": "partialKey",
1164
1869
  "required": true
1165
1870
  }
1166
1871
  },
@@ -1202,38 +1907,26 @@
1202
1907
  "summary": "Hide any uncommitted changes.",
1203
1908
  "allowNo": false,
1204
1909
  "type": "boolean"
1205
- },
1206
- "format": {
1207
- "name": "format",
1208
- "summary": "Specify the output format of the returned translations.",
1209
- "default": "json",
1210
- "hasDynamicHelp": false,
1211
- "multiple": false,
1212
- "options": [
1213
- "json",
1214
- "po"
1215
- ],
1216
- "type": "option"
1217
1910
  }
1218
1911
  },
1219
1912
  "hasDynamicHelp": false,
1220
1913
  "hiddenAliases": [],
1221
- "id": "translation:get",
1914
+ "id": "partial:get",
1222
1915
  "pluginAlias": "@knocklabs/cli",
1223
1916
  "pluginName": "@knocklabs/cli",
1224
1917
  "pluginType": "core",
1225
1918
  "strict": true,
1226
- "summary": "Display a single translation from an environment.",
1919
+ "summary": "Display a single partial from an environment.",
1227
1920
  "enableJsonFlag": true,
1228
1921
  "isESM": false,
1229
1922
  "relativePath": [
1230
1923
  "dist",
1231
1924
  "commands",
1232
- "translation",
1925
+ "partial",
1233
1926
  "get.js"
1234
1927
  ]
1235
1928
  },
1236
- "translation:list": {
1929
+ "partial:list": {
1237
1930
  "aliases": [],
1238
1931
  "args": {},
1239
1932
  "flags": {
@@ -1299,27 +1992,26 @@
1299
1992
  },
1300
1993
  "hasDynamicHelp": false,
1301
1994
  "hiddenAliases": [],
1302
- "id": "translation:list",
1995
+ "id": "partial:list",
1303
1996
  "pluginAlias": "@knocklabs/cli",
1304
1997
  "pluginName": "@knocklabs/cli",
1305
1998
  "pluginType": "core",
1306
1999
  "strict": true,
1307
- "summary": "Display all translations for an environment.",
2000
+ "summary": "Display all partials for an environment.",
1308
2001
  "enableJsonFlag": true,
1309
2002
  "isESM": false,
1310
2003
  "relativePath": [
1311
2004
  "dist",
1312
2005
  "commands",
1313
- "translation",
2006
+ "partial",
1314
2007
  "list.js"
1315
2008
  ]
1316
2009
  },
1317
- "translation:pull": {
2010
+ "partial:pull": {
1318
2011
  "aliases": [],
1319
2012
  "args": {
1320
- "translationRef": {
1321
- "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
1322
- "name": "translationRef",
2013
+ "partialKey": {
2014
+ "name": "partialKey",
1323
2015
  "required": false
1324
2016
  }
1325
2017
  },
@@ -1351,16 +2043,16 @@
1351
2043
  },
1352
2044
  "all": {
1353
2045
  "name": "all",
1354
- "summary": "Whether to pull all translations from the specified environment.",
2046
+ "summary": "Whether to pull all partials from the specified environment.",
1355
2047
  "allowNo": false,
1356
2048
  "type": "boolean"
1357
2049
  },
1358
- "translations-dir": {
2050
+ "partials-dir": {
1359
2051
  "dependsOn": [
1360
2052
  "all"
1361
2053
  ],
1362
- "name": "translations-dir",
1363
- "summary": "The target directory path to pull all translations into.",
2054
+ "name": "partials-dir",
2055
+ "summary": "The target directory path to pull all partials into.",
1364
2056
  "hasDynamicHelp": false,
1365
2057
  "multiple": false,
1366
2058
  "type": "option"
@@ -1376,43 +2068,30 @@
1376
2068
  "summary": "Remove the confirmation prompt.",
1377
2069
  "allowNo": false,
1378
2070
  "type": "boolean"
1379
- },
1380
- "format": {
1381
- "name": "format",
1382
- "summary": "Specify the output format of the returned translations.",
1383
- "default": "json",
1384
- "hasDynamicHelp": false,
1385
- "multiple": false,
1386
- "options": [
1387
- "json",
1388
- "po"
1389
- ],
1390
- "type": "option"
1391
2071
  }
1392
2072
  },
1393
2073
  "hasDynamicHelp": false,
1394
2074
  "hiddenAliases": [],
1395
- "id": "translation:pull",
2075
+ "id": "partial:pull",
1396
2076
  "pluginAlias": "@knocklabs/cli",
1397
2077
  "pluginName": "@knocklabs/cli",
1398
2078
  "pluginType": "core",
1399
2079
  "strict": true,
1400
- "summary": "Pull one or more translations from an environment into a local file system.",
2080
+ "summary": "Pull one or more partial from an environment into a local file system.",
1401
2081
  "enableJsonFlag": false,
1402
2082
  "isESM": false,
1403
2083
  "relativePath": [
1404
2084
  "dist",
1405
2085
  "commands",
1406
- "translation",
2086
+ "partial",
1407
2087
  "pull.js"
1408
2088
  ]
1409
2089
  },
1410
- "translation:push": {
2090
+ "partial:push": {
1411
2091
  "aliases": [],
1412
2092
  "args": {
1413
- "translationRef": {
1414
- "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
1415
- "name": "translationRef",
2093
+ "partialKey": {
2094
+ "name": "partialKey",
1416
2095
  "required": false
1417
2096
  }
1418
2097
  },
@@ -1436,7 +2115,7 @@
1436
2115
  },
1437
2116
  "environment": {
1438
2117
  "name": "environment",
1439
- "summary": "Pushing a translation is only allowed in the development environment",
2118
+ "summary": "Pushing a partial is only allowed in the development environment",
1440
2119
  "default": "development",
1441
2120
  "hasDynamicHelp": false,
1442
2121
  "multiple": false,
@@ -1447,23 +2126,23 @@
1447
2126
  },
1448
2127
  "all": {
1449
2128
  "name": "all",
1450
- "summary": "Whether to push all translations from the target directory.",
2129
+ "summary": "Whether to push all partials from the target directory.",
1451
2130
  "allowNo": false,
1452
2131
  "type": "boolean"
1453
2132
  },
1454
- "translations-dir": {
2133
+ "partials-dir": {
1455
2134
  "dependsOn": [
1456
2135
  "all"
1457
2136
  ],
1458
- "name": "translations-dir",
1459
- "summary": "The target directory path to find all translations to push.",
2137
+ "name": "partials-dir",
2138
+ "summary": "The target directory path to find all partials to push.",
1460
2139
  "hasDynamicHelp": false,
1461
2140
  "multiple": false,
1462
2141
  "type": "option"
1463
2142
  },
1464
2143
  "commit": {
1465
2144
  "name": "commit",
1466
- "summary": "Push and commit the translation(s) at the same time",
2145
+ "summary": "Push and commit the partial(s) at the same time",
1467
2146
  "allowNo": false,
1468
2147
  "type": "boolean"
1469
2148
  },
@@ -1481,27 +2160,26 @@
1481
2160
  },
1482
2161
  "hasDynamicHelp": false,
1483
2162
  "hiddenAliases": [],
1484
- "id": "translation:push",
2163
+ "id": "partial:push",
1485
2164
  "pluginAlias": "@knocklabs/cli",
1486
2165
  "pluginName": "@knocklabs/cli",
1487
2166
  "pluginType": "core",
1488
2167
  "strict": true,
1489
- "summary": "Push one or more translations from a local file system to Knock.",
2168
+ "summary": "Push one or more partials from a local file system to Knock.",
1490
2169
  "enableJsonFlag": false,
1491
2170
  "isESM": false,
1492
2171
  "relativePath": [
1493
2172
  "dist",
1494
2173
  "commands",
1495
- "translation",
2174
+ "partial",
1496
2175
  "push.js"
1497
2176
  ]
1498
2177
  },
1499
- "translation:validate": {
2178
+ "partial:validate": {
1500
2179
  "aliases": [],
1501
2180
  "args": {
1502
- "translationRef": {
1503
- "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
1504
- "name": "translationRef",
2181
+ "partialKey": {
2182
+ "name": "partialKey",
1505
2183
  "required": false
1506
2184
  }
1507
2185
  },
@@ -1525,7 +2203,7 @@
1525
2203
  },
1526
2204
  "environment": {
1527
2205
  "name": "environment",
1528
- "summary": "Validating a translation is only done in the development environment",
2206
+ "summary": "Validating a partial is only done in the development environment",
1529
2207
  "default": "development",
1530
2208
  "hasDynamicHelp": false,
1531
2209
  "multiple": false,
@@ -1536,16 +2214,16 @@
1536
2214
  },
1537
2215
  "all": {
1538
2216
  "name": "all",
1539
- "summary": "Whether to validate all translations from the target directory.",
2217
+ "summary": "Whether to validate all partials from the target directory.",
1540
2218
  "allowNo": false,
1541
2219
  "type": "boolean"
1542
2220
  },
1543
- "translations-dir": {
2221
+ "partials-dir": {
1544
2222
  "dependsOn": [
1545
2223
  "all"
1546
2224
  ],
1547
- "name": "translations-dir",
1548
- "summary": "The target directory path to find all translations to validate.",
2225
+ "name": "partials-dir",
2226
+ "summary": "The target directory path to find all partials to validate.",
1549
2227
  "hasDynamicHelp": false,
1550
2228
  "multiple": false,
1551
2229
  "type": "option"
@@ -1553,26 +2231,27 @@
1553
2231
  },
1554
2232
  "hasDynamicHelp": false,
1555
2233
  "hiddenAliases": [],
1556
- "id": "translation:validate",
2234
+ "id": "partial:validate",
1557
2235
  "pluginAlias": "@knocklabs/cli",
1558
2236
  "pluginName": "@knocklabs/cli",
1559
2237
  "pluginType": "core",
1560
2238
  "strict": true,
1561
- "summary": "Validate one or more translations from a local file system.",
2239
+ "summary": "Validate one or more partials from a local file system.",
1562
2240
  "enableJsonFlag": false,
1563
2241
  "isESM": false,
1564
2242
  "relativePath": [
1565
2243
  "dist",
1566
2244
  "commands",
1567
- "translation",
2245
+ "partial",
1568
2246
  "validate.js"
1569
2247
  ]
1570
2248
  },
1571
- "message-type:get": {
2249
+ "translation:get": {
1572
2250
  "aliases": [],
1573
2251
  "args": {
1574
- "messageTypeKey": {
1575
- "name": "messageTypeKey",
2252
+ "translationRef": {
2253
+ "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
2254
+ "name": "translationRef",
1576
2255
  "required": true
1577
2256
  }
1578
2257
  },
@@ -1614,27 +2293,38 @@
1614
2293
  "summary": "Hide any uncommitted changes.",
1615
2294
  "allowNo": false,
1616
2295
  "type": "boolean"
2296
+ },
2297
+ "format": {
2298
+ "name": "format",
2299
+ "summary": "Specify the output format of the returned translations.",
2300
+ "default": "json",
2301
+ "hasDynamicHelp": false,
2302
+ "multiple": false,
2303
+ "options": [
2304
+ "json",
2305
+ "po"
2306
+ ],
2307
+ "type": "option"
1617
2308
  }
1618
2309
  },
1619
2310
  "hasDynamicHelp": false,
1620
- "hidden": true,
1621
2311
  "hiddenAliases": [],
1622
- "id": "message-type:get",
2312
+ "id": "translation:get",
1623
2313
  "pluginAlias": "@knocklabs/cli",
1624
2314
  "pluginName": "@knocklabs/cli",
1625
2315
  "pluginType": "core",
1626
2316
  "strict": true,
1627
- "summary": "Display a single in-app message type from an environment.",
2317
+ "summary": "Display a single translation from an environment.",
1628
2318
  "enableJsonFlag": true,
1629
2319
  "isESM": false,
1630
2320
  "relativePath": [
1631
2321
  "dist",
1632
2322
  "commands",
1633
- "message-type",
2323
+ "translation",
1634
2324
  "get.js"
1635
2325
  ]
1636
2326
  },
1637
- "message-type:list": {
2327
+ "translation:list": {
1638
2328
  "aliases": [],
1639
2329
  "args": {},
1640
2330
  "flags": {
@@ -1699,28 +2389,28 @@
1699
2389
  }
1700
2390
  },
1701
2391
  "hasDynamicHelp": false,
1702
- "hidden": true,
1703
2392
  "hiddenAliases": [],
1704
- "id": "message-type:list",
2393
+ "id": "translation:list",
1705
2394
  "pluginAlias": "@knocklabs/cli",
1706
2395
  "pluginName": "@knocklabs/cli",
1707
2396
  "pluginType": "core",
1708
2397
  "strict": true,
1709
- "summary": "Display all in-app message types for an environment.",
2398
+ "summary": "Display all translations for an environment.",
1710
2399
  "enableJsonFlag": true,
1711
2400
  "isESM": false,
1712
2401
  "relativePath": [
1713
2402
  "dist",
1714
2403
  "commands",
1715
- "message-type",
2404
+ "translation",
1716
2405
  "list.js"
1717
2406
  ]
1718
2407
  },
1719
- "message-type:pull": {
2408
+ "translation:pull": {
1720
2409
  "aliases": [],
1721
2410
  "args": {
1722
- "messageTypeKey": {
1723
- "name": "messageTypeKey",
2411
+ "translationRef": {
2412
+ "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
2413
+ "name": "translationRef",
1724
2414
  "required": false
1725
2415
  }
1726
2416
  },
@@ -1752,16 +2442,16 @@
1752
2442
  },
1753
2443
  "all": {
1754
2444
  "name": "all",
1755
- "summary": "Whether to pull all in-app message types from the specified environment.",
2445
+ "summary": "Whether to pull all translations from the specified environment.",
1756
2446
  "allowNo": false,
1757
2447
  "type": "boolean"
1758
2448
  },
1759
- "message-types-dir": {
2449
+ "translations-dir": {
1760
2450
  "dependsOn": [
1761
2451
  "all"
1762
2452
  ],
1763
- "name": "message-types-dir",
1764
- "summary": "The target directory path to pull all in-app message types into.",
2453
+ "name": "translations-dir",
2454
+ "summary": "The target directory path to pull all translations into.",
1765
2455
  "hasDynamicHelp": false,
1766
2456
  "multiple": false,
1767
2457
  "type": "option"
@@ -1777,31 +2467,43 @@
1777
2467
  "summary": "Remove the confirmation prompt.",
1778
2468
  "allowNo": false,
1779
2469
  "type": "boolean"
2470
+ },
2471
+ "format": {
2472
+ "name": "format",
2473
+ "summary": "Specify the output format of the returned translations.",
2474
+ "default": "json",
2475
+ "hasDynamicHelp": false,
2476
+ "multiple": false,
2477
+ "options": [
2478
+ "json",
2479
+ "po"
2480
+ ],
2481
+ "type": "option"
1780
2482
  }
1781
2483
  },
1782
2484
  "hasDynamicHelp": false,
1783
- "hidden": true,
1784
2485
  "hiddenAliases": [],
1785
- "id": "message-type:pull",
2486
+ "id": "translation:pull",
1786
2487
  "pluginAlias": "@knocklabs/cli",
1787
2488
  "pluginName": "@knocklabs/cli",
1788
2489
  "pluginType": "core",
1789
2490
  "strict": true,
1790
- "summary": "Pull one or more in-app message types from an environment into a local file system.",
2491
+ "summary": "Pull one or more translations from an environment into a local file system.",
1791
2492
  "enableJsonFlag": false,
1792
2493
  "isESM": false,
1793
2494
  "relativePath": [
1794
2495
  "dist",
1795
2496
  "commands",
1796
- "message-type",
2497
+ "translation",
1797
2498
  "pull.js"
1798
2499
  ]
1799
2500
  },
1800
- "message-type:push": {
2501
+ "translation:push": {
1801
2502
  "aliases": [],
1802
2503
  "args": {
1803
- "messageTypeKey": {
1804
- "name": "messageTypeKey",
2504
+ "translationRef": {
2505
+ "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
2506
+ "name": "translationRef",
1805
2507
  "required": false
1806
2508
  }
1807
2509
  },
@@ -1825,7 +2527,7 @@
1825
2527
  },
1826
2528
  "environment": {
1827
2529
  "name": "environment",
1828
- "summary": "Pushing a message type is only allowed in the development environment",
2530
+ "summary": "Pushing a translation is only allowed in the development environment",
1829
2531
  "default": "development",
1830
2532
  "hasDynamicHelp": false,
1831
2533
  "multiple": false,
@@ -1836,23 +2538,23 @@
1836
2538
  },
1837
2539
  "all": {
1838
2540
  "name": "all",
1839
- "summary": "Whether to push all message types from the target directory.",
2541
+ "summary": "Whether to push all translations from the target directory.",
1840
2542
  "allowNo": false,
1841
2543
  "type": "boolean"
1842
2544
  },
1843
- "message-types-dir": {
2545
+ "translations-dir": {
1844
2546
  "dependsOn": [
1845
2547
  "all"
1846
2548
  ],
1847
- "name": "message-types-dir",
1848
- "summary": "The target directory path to find all message types to push.",
2549
+ "name": "translations-dir",
2550
+ "summary": "The target directory path to find all translations to push.",
1849
2551
  "hasDynamicHelp": false,
1850
2552
  "multiple": false,
1851
2553
  "type": "option"
1852
2554
  },
1853
2555
  "commit": {
1854
2556
  "name": "commit",
1855
- "summary": "Push and commit the message type(s) at the same time",
2557
+ "summary": "Push and commit the translation(s) at the same time",
1856
2558
  "allowNo": false,
1857
2559
  "type": "boolean"
1858
2560
  },
@@ -1869,28 +2571,28 @@
1869
2571
  }
1870
2572
  },
1871
2573
  "hasDynamicHelp": false,
1872
- "hidden": true,
1873
2574
  "hiddenAliases": [],
1874
- "id": "message-type:push",
2575
+ "id": "translation:push",
1875
2576
  "pluginAlias": "@knocklabs/cli",
1876
2577
  "pluginName": "@knocklabs/cli",
1877
2578
  "pluginType": "core",
1878
2579
  "strict": true,
1879
- "summary": "Push one or more message types from a local file system to Knock.",
2580
+ "summary": "Push one or more translations from a local file system to Knock.",
1880
2581
  "enableJsonFlag": false,
1881
2582
  "isESM": false,
1882
2583
  "relativePath": [
1883
2584
  "dist",
1884
2585
  "commands",
1885
- "message-type",
2586
+ "translation",
1886
2587
  "push.js"
1887
2588
  ]
1888
2589
  },
1889
- "message-type:validate": {
2590
+ "translation:validate": {
1890
2591
  "aliases": [],
1891
2592
  "args": {
1892
- "messageTypeKey": {
1893
- "name": "messageTypeKey",
2593
+ "translationRef": {
2594
+ "description": "Translation ref is a identifier string that refers to a unique translation.\nIf a translation has no namespace, it is the same as the locale, e.g. `en`.\nIf namespaced, it is formatted as namespace.locale, e.g. `admin.en`.",
2595
+ "name": "translationRef",
1894
2596
  "required": false
1895
2597
  }
1896
2598
  },
@@ -1914,7 +2616,7 @@
1914
2616
  },
1915
2617
  "environment": {
1916
2618
  "name": "environment",
1917
- "summary": "Validating a message type is only done in the development environment",
2619
+ "summary": "Validating a translation is only done in the development environment",
1918
2620
  "default": "development",
1919
2621
  "hasDynamicHelp": false,
1920
2622
  "multiple": false,
@@ -1925,36 +2627,35 @@
1925
2627
  },
1926
2628
  "all": {
1927
2629
  "name": "all",
1928
- "summary": "Whether to validate all message types from the target directory.",
2630
+ "summary": "Whether to validate all translations from the target directory.",
1929
2631
  "allowNo": false,
1930
2632
  "type": "boolean"
1931
2633
  },
1932
- "message-types-dir": {
2634
+ "translations-dir": {
1933
2635
  "dependsOn": [
1934
2636
  "all"
1935
2637
  ],
1936
- "name": "message-types-dir",
1937
- "summary": "The target directory path to find all message types to validate.",
2638
+ "name": "translations-dir",
2639
+ "summary": "The target directory path to find all translations to validate.",
1938
2640
  "hasDynamicHelp": false,
1939
2641
  "multiple": false,
1940
2642
  "type": "option"
1941
2643
  }
1942
2644
  },
1943
2645
  "hasDynamicHelp": false,
1944
- "hidden": true,
1945
2646
  "hiddenAliases": [],
1946
- "id": "message-type:validate",
2647
+ "id": "translation:validate",
1947
2648
  "pluginAlias": "@knocklabs/cli",
1948
2649
  "pluginName": "@knocklabs/cli",
1949
2650
  "pluginType": "core",
1950
2651
  "strict": true,
1951
- "summary": "Validate one or more message types from a local file system.",
2652
+ "summary": "Validate one or more translations from a local file system.",
1952
2653
  "enableJsonFlag": false,
1953
2654
  "isESM": false,
1954
2655
  "relativePath": [
1955
2656
  "dist",
1956
2657
  "commands",
1957
- "message-type",
2658
+ "translation",
1958
2659
  "validate.js"
1959
2660
  ]
1960
2661
  },
@@ -2032,7 +2733,7 @@
2032
2733
  "workflow:generate-types": {
2033
2734
  "aliases": [],
2034
2735
  "args": {},
2035
- "description": "Generate types for all workflows in the development environment and write them to a file.",
2736
+ "description": "Generate types for all workflows in an environment and write them to a file.",
2036
2737
  "flags": {
2037
2738
  "service-token": {
2038
2739
  "env": "KNOCK_SERVICE_TOKEN",
@@ -2612,5 +3313,5 @@
2612
3313
  ]
2613
3314
  }
2614
3315
  },
2615
- "version": "0.1.21"
3316
+ "version": "0.1.23"
2616
3317
  }