czg 1.11.1-beta.1 → 1.11.1

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/lib/index.d.ts CHANGED
@@ -604,7 +604,7 @@ interface CommitizenGitOptions {
604
604
  /**
605
605
  * pin type item the top of the types list (match item value)
606
606
  */
607
- defaultType?: string;
607
+ defaultType?: string | undefined;
608
608
  /**
609
609
  * Whether to use display default value in custom scope
610
610
  *
@@ -613,35 +613,35 @@ interface CommitizenGitOptions {
613
613
  * 2. `string[]` for checkbox mode will default-select the options whose values match those within the `scopes` range list.
614
614
  * @usage When you want to use default, just keyboard `Enter` it
615
615
  */
616
- defaultScope?: string | string[];
616
+ defaultScope?: string | string[] | undefined;
617
617
  /**
618
618
  * default value show subject template prompt
619
619
  *
620
620
  * @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
621
621
  * @usage If you want to use default, just keyboard `Enter` it
622
622
  */
623
- defaultSubject?: string;
623
+ defaultSubject?: string | undefined;
624
624
  /**
625
625
  * default value show body and BREAKINGCHANGES template prompt
626
626
  *
627
627
  * @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
628
628
  * @usage When you want to use default, just keyboard `Enter` it
629
629
  */
630
- defaultBody?: string;
630
+ defaultBody?: string | undefined;
631
631
  /**
632
632
  * default value show issuePrefixes custom template prompt
633
633
  *
634
634
  * @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
635
635
  * @usage When you want to use default, just keyboard `Enter` it
636
636
  */
637
- defaultFooterPrefix?: string;
637
+ defaultFooterPrefix?: string | undefined;
638
638
  /**
639
639
  * default value show issue foot template prompt
640
640
  *
641
641
  * @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
642
642
  * @usage When you want to use default, just keyboard `Enter` it
643
643
  */
644
- defaultIssues?: string;
644
+ defaultIssues?: string | undefined;
645
645
  /**
646
646
  * Whether to use GPG sign commit message (git commit -S -m)
647
647
  * @note the options only support `czg` cz-git cli and no support git hooks mode