@superdoc-dev/sdk 1.15.0-next.19 → 1.15.0-next.20

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.
@@ -3243,6 +3243,8 @@ export interface DocSectionsSetPageNumberingParams {
3243
3243
  };
3244
3244
  start?: number;
3245
3245
  format?: string;
3246
+ chapterStyle?: number;
3247
+ chapterSeparator?: string;
3246
3248
  }
3247
3249
  export interface DocSectionsSetTitlePageParams {
3248
3250
  doc?: string;
@@ -18782,6 +18784,8 @@ export type DocSectionsListResult = {
18782
18784
  pageNumbering?: {
18783
18785
  start?: number;
18784
18786
  format?: "decimal" | "lowerLetter" | "upperLetter" | "lowerRoman" | "upperRoman" | "numberInDash";
18787
+ chapterStyle?: number;
18788
+ chapterSeparator?: "hyphen" | "period" | "colon" | "emDash" | "enDash";
18785
18789
  };
18786
18790
  titlePage?: boolean;
18787
18791
  oddEvenHeadersFooters?: boolean;
@@ -18848,6 +18852,8 @@ export type DocSectionsGetResult = {
18848
18852
  pageNumbering?: {
18849
18853
  start?: number;
18850
18854
  format?: "decimal" | "lowerLetter" | "upperLetter" | "lowerRoman" | "upperRoman" | "numberInDash";
18855
+ chapterStyle?: number;
18856
+ chapterSeparator?: "hyphen" | "period" | "colon" | "emDash" | "enDash";
18851
18857
  };
18852
18858
  titlePage?: boolean;
18853
18859
  oddEvenHeadersFooters?: boolean;
@@ -30801,6 +30807,8 @@ export interface DocSectionsSetPageNumberingBoundParams {
30801
30807
  };
30802
30808
  start?: number;
30803
30809
  format?: string;
30810
+ chapterStyle?: number;
30811
+ chapterSeparator?: string;
30804
30812
  }
30805
30813
  export interface DocSectionsSetTitlePageBoundParams {
30806
30814
  out?: string;