@wix/auto_sdk_comments_comments 1.0.51 → 1.0.53

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 (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +2494 -36
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +217 -24
  5. package/build/cjs/index.typings.js +1533 -35
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +215 -24
  8. package/build/cjs/meta.js +1533 -35
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +2487 -36
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +217 -24
  14. package/build/es/index.typings.mjs +1526 -35
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +215 -24
  17. package/build/es/meta.mjs +1526 -35
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +2494 -36
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +217 -24
  23. package/build/internal/cjs/index.typings.js +1533 -35
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +215 -24
  26. package/build/internal/cjs/meta.js +1533 -35
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +2487 -36
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +217 -24
  32. package/build/internal/es/index.typings.mjs +1526 -35
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +215 -24
  35. package/build/internal/es/meta.mjs +1526 -35
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -58,6 +58,8 @@ interface Comment {
58
58
  resourceId?: string | null;
59
59
  /** Published comment content. */
60
60
  content?: CommentContent;
61
+ /** Unpublished comment content. */
62
+ draftContent?: CommentContent;
61
63
  /**
62
64
  * Comment's author.
63
65
  * @immutable
@@ -199,6 +201,8 @@ interface Node extends NodeDataOneOf {
199
201
  layoutCellData?: LayoutCellData;
200
202
  /** Data for a shape node. */
201
203
  shapeData?: ShapeData;
204
+ /** Data for a card node. */
205
+ cardData?: CardData;
202
206
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
203
207
  type?: NodeTypeWithLiterals;
204
208
  /** Node ID. */
@@ -268,6 +272,8 @@ interface NodeDataOneOf {
268
272
  layoutCellData?: LayoutCellData;
269
273
  /** Data for a shape node. */
270
274
  shapeData?: ShapeData;
275
+ /** Data for a card node. */
276
+ cardData?: CardData;
271
277
  }
272
278
  declare enum NodeType {
273
279
  PARAGRAPH = "PARAGRAPH",
@@ -304,10 +310,11 @@ declare enum NodeType {
304
310
  CAPTION = "CAPTION",
305
311
  LAYOUT = "LAYOUT",
306
312
  LAYOUT_CELL = "LAYOUT_CELL",
307
- SHAPE = "SHAPE"
313
+ SHAPE = "SHAPE",
314
+ CARD = "CARD"
308
315
  }
309
316
  /** @enumType */
310
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
317
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
311
318
  interface NodeStyle {
312
319
  /** The top padding value in pixels. */
313
320
  paddingTop?: string | null;
@@ -477,17 +484,23 @@ interface Styles {
477
484
  */
478
485
  textColorHover?: string | null;
479
486
  /**
480
- * Background color as a hexadecimal value.
487
+ * Deprecated: Use `background` instead.
481
488
  * @format COLOR_HEX
489
+ * @deprecated
482
490
  */
483
491
  backgroundColor?: string | null;
484
492
  /**
485
- * Background color as a hexadecimal value (hover state).
493
+ * Deprecated: Use `backgroundHover` instead.
486
494
  * @format COLOR_HEX
495
+ * @deprecated
487
496
  */
488
497
  backgroundColorHover?: string | null;
489
498
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
490
499
  buttonSize?: string | null;
500
+ /** Background styling (color or gradient). */
501
+ background?: Background;
502
+ /** Background styling for hover state (color or gradient). */
503
+ backgroundHover?: Background;
491
504
  }
492
505
  interface Link extends LinkDataOneOf {
493
506
  /** The absolute URL for the linked document. */
@@ -1124,7 +1137,7 @@ interface OptionLayout {
1124
1137
  /** Sets whether to display option images. Defaults to `false`. */
1125
1138
  enableImage?: boolean | null;
1126
1139
  }
1127
- declare enum BackgroundType {
1140
+ declare enum PollDesignBackgroundType {
1128
1141
  /** Color background type */
1129
1142
  COLOR = "COLOR",
1130
1143
  /** Image background type */
@@ -1133,8 +1146,8 @@ declare enum BackgroundType {
1133
1146
  GRADIENT = "GRADIENT"
1134
1147
  }
1135
1148
  /** @enumType */
1136
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1137
- interface Gradient {
1149
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1150
+ interface BackgroundGradient {
1138
1151
  /** The gradient angle in degrees. */
1139
1152
  angle?: number | null;
1140
1153
  /**
@@ -1148,7 +1161,7 @@ interface Gradient {
1148
1161
  */
1149
1162
  lastColor?: string | null;
1150
1163
  }
1151
- interface Background extends BackgroundBackgroundOneOf {
1164
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1152
1165
  /**
1153
1166
  * The background color as a hexademical value.
1154
1167
  * @format COLOR_HEX
@@ -1157,12 +1170,12 @@ interface Background extends BackgroundBackgroundOneOf {
1157
1170
  /** An image to use for the background. */
1158
1171
  image?: Media;
1159
1172
  /** Details for a gradient background. */
1160
- gradient?: Gradient;
1173
+ gradient?: BackgroundGradient;
1161
1174
  /** Background type. For each option, include the relevant details. */
1162
- type?: BackgroundTypeWithLiterals;
1175
+ type?: PollDesignBackgroundTypeWithLiterals;
1163
1176
  }
1164
1177
  /** @oneof */
1165
- interface BackgroundBackgroundOneOf {
1178
+ interface PollDesignBackgroundBackgroundOneOf {
1166
1179
  /**
1167
1180
  * The background color as a hexademical value.
1168
1181
  * @format COLOR_HEX
@@ -1171,11 +1184,11 @@ interface BackgroundBackgroundOneOf {
1171
1184
  /** An image to use for the background. */
1172
1185
  image?: Media;
1173
1186
  /** Details for a gradient background. */
1174
- gradient?: Gradient;
1187
+ gradient?: BackgroundGradient;
1175
1188
  }
1176
1189
  interface PollDesign {
1177
1190
  /** Background styling. */
1178
- background?: Background;
1191
+ background?: PollDesignBackground;
1179
1192
  /** Border radius in pixels. */
1180
1193
  borderRadius?: number | null;
1181
1194
  }
@@ -1858,12 +1871,13 @@ interface CaptionData {
1858
1871
  }
1859
1872
  interface LayoutData {
1860
1873
  /**
1861
- * Background color as a hexadecimal value.
1874
+ * Deprecated: Use `background` instead.
1862
1875
  * @format COLOR_HEX
1876
+ * @deprecated
1863
1877
  */
1864
1878
  backgroundColor?: string | null;
1865
1879
  /** Background image. */
1866
- backgroundImage?: BackgroundImage;
1880
+ backgroundImage?: LayoutDataBackgroundImage;
1867
1881
  /**
1868
1882
  * Border color as a hexadecimal value.
1869
1883
  * @format COLOR_HEX
@@ -1871,15 +1885,16 @@ interface LayoutData {
1871
1885
  borderColor?: string | null;
1872
1886
  /** Border width in pixels. */
1873
1887
  borderWidth?: number | null;
1874
- /** Border */
1888
+ /** Border radius in pixels. */
1875
1889
  borderRadius?: number | null;
1876
1890
  /**
1877
- * Backdrop color as a hexadecimal value.
1891
+ * Deprecated: Use `backdrop` instead.
1878
1892
  * @format COLOR_HEX
1893
+ * @deprecated
1879
1894
  */
1880
1895
  backdropColor?: string | null;
1881
- /** Backdrop image.radius in pixels. */
1882
- backdropImage?: BackgroundImage;
1896
+ /** Backdrop image. */
1897
+ backdropImage?: LayoutDataBackgroundImage;
1883
1898
  /** Backdrop top padding. */
1884
1899
  backdropPaddingTop?: number | null;
1885
1900
  /** Backdrop bottom padding */
@@ -1903,8 +1918,12 @@ interface LayoutData {
1903
1918
  designTarget?: DesignTargetWithLiterals;
1904
1919
  /** Banner configuration. When present, this layout is displayed as a banner. */
1905
1920
  banner?: Banner;
1921
+ /** Background styling (color or gradient). */
1922
+ background?: LayoutDataBackground;
1923
+ /** Backdrop styling (color or gradient). */
1924
+ backdrop?: Backdrop;
1906
1925
  }
1907
- declare enum Scaling {
1926
+ declare enum ImageScalingScaling {
1908
1927
  /** Auto image scaling */
1909
1928
  AUTO = "AUTO",
1910
1929
  /** Contain image scaling */
@@ -1913,7 +1932,7 @@ declare enum Scaling {
1913
1932
  COVER = "COVER"
1914
1933
  }
1915
1934
  /** @enumType */
1916
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1935
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
1917
1936
  declare enum ImagePosition {
1918
1937
  /** Image positioned at the center */
1919
1938
  CENTER = "CENTER",
@@ -1944,13 +1963,13 @@ declare enum Origin {
1944
1963
  }
1945
1964
  /** @enumType */
1946
1965
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
1947
- interface BackgroundImage {
1966
+ interface LayoutDataBackgroundImage {
1948
1967
  /** Background image. */
1949
1968
  media?: Media;
1950
1969
  /** Background image opacity. */
1951
1970
  opacity?: number | null;
1952
1971
  /** Background image scaling. */
1953
- scaling?: ScalingWithLiterals;
1972
+ scaling?: ImageScalingScalingWithLiterals;
1954
1973
  /** Position of background. Defaults to `CENTER`. */
1955
1974
  position?: ImagePositionWithLiterals;
1956
1975
  }
@@ -2760,6 +2779,178 @@ interface AccountInfo {
2760
2779
  */
2761
2780
  siteId?: string | null;
2762
2781
  }
2782
+ /** Background type */
2783
+ declare enum BackgroundType {
2784
+ /** Solid color background */
2785
+ COLOR = "COLOR",
2786
+ /** Gradient background */
2787
+ GRADIENT = "GRADIENT"
2788
+ }
2789
+ /** @enumType */
2790
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
2791
+ interface Gradient {
2792
+ /** Gradient type. */
2793
+ type?: GradientTypeWithLiterals;
2794
+ /**
2795
+ * Color stops for the gradient.
2796
+ * @maxSize 1000
2797
+ */
2798
+ stops?: Stop[];
2799
+ /** Angle in degrees for linear gradient (0-360). */
2800
+ angle?: number | null;
2801
+ /**
2802
+ * Horizontal center position for radial gradient (0-100).
2803
+ * @max 100
2804
+ */
2805
+ centerX?: number | null;
2806
+ /**
2807
+ * Vertical center position for radial gradient (0-100).
2808
+ * @max 100
2809
+ */
2810
+ centerY?: number | null;
2811
+ }
2812
+ /** Gradient type. */
2813
+ declare enum GradientType {
2814
+ /** Linear gradient. */
2815
+ LINEAR = "LINEAR",
2816
+ /** Radial gradient. */
2817
+ RADIAL = "RADIAL"
2818
+ }
2819
+ /** @enumType */
2820
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
2821
+ /** A single color stop in the gradient. */
2822
+ interface Stop {
2823
+ /**
2824
+ * Stop color as hex value.
2825
+ * @format COLOR_HEX
2826
+ */
2827
+ color?: string | null;
2828
+ /** Stop position (0-1). */
2829
+ position?: number | null;
2830
+ }
2831
+ /** Background styling (color or gradient) */
2832
+ interface Background {
2833
+ /** Background type. */
2834
+ type?: BackgroundTypeWithLiterals;
2835
+ /**
2836
+ * Background color as a hexadecimal value.
2837
+ * @format COLOR_HEX
2838
+ */
2839
+ color?: string | null;
2840
+ /** Gradient configuration. */
2841
+ gradient?: Gradient;
2842
+ }
2843
+ /** Background type */
2844
+ declare enum LayoutDataBackgroundType {
2845
+ /** Solid color background */
2846
+ COLOR = "COLOR",
2847
+ /** Gradient background */
2848
+ GRADIENT = "GRADIENT"
2849
+ }
2850
+ /** @enumType */
2851
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2852
+ /** Backdrop type */
2853
+ declare enum BackdropType {
2854
+ /** Solid color backdrop */
2855
+ COLOR = "COLOR",
2856
+ /** Gradient backdrop */
2857
+ GRADIENT = "GRADIENT"
2858
+ }
2859
+ /** @enumType */
2860
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2861
+ /** Background styling (color or gradient) */
2862
+ interface LayoutDataBackground {
2863
+ /** Background type. */
2864
+ type?: LayoutDataBackgroundTypeWithLiterals;
2865
+ /**
2866
+ * Background color as a hexadecimal value.
2867
+ * @format COLOR_HEX
2868
+ */
2869
+ color?: string | null;
2870
+ /** Gradient configuration. */
2871
+ gradient?: Gradient;
2872
+ }
2873
+ /** Backdrop styling (color or gradient) */
2874
+ interface Backdrop {
2875
+ /** Backdrop type. */
2876
+ type?: BackdropTypeWithLiterals;
2877
+ /**
2878
+ * Backdrop color as a hexadecimal value.
2879
+ * @format COLOR_HEX
2880
+ */
2881
+ color?: string | null;
2882
+ /** Gradient configuration. */
2883
+ gradient?: Gradient;
2884
+ }
2885
+ interface CardData {
2886
+ /** Background styling (color or gradient). */
2887
+ background?: CardDataBackground;
2888
+ /** Background image. */
2889
+ backgroundImage?: BackgroundImage;
2890
+ }
2891
+ declare enum Scaling {
2892
+ /** Auto image scaling */
2893
+ AUTO = "AUTO",
2894
+ /** Contain image scaling */
2895
+ CONTAIN = "CONTAIN",
2896
+ /** Cover image scaling */
2897
+ COVER = "COVER"
2898
+ }
2899
+ /** @enumType */
2900
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2901
+ declare enum ImagePositionPosition {
2902
+ /** Image positioned at the center */
2903
+ CENTER = "CENTER",
2904
+ /** Image positioned on the left */
2905
+ CENTER_LEFT = "CENTER_LEFT",
2906
+ /** Image positioned on the right */
2907
+ CENTER_RIGHT = "CENTER_RIGHT",
2908
+ /** Image positioned at the center top */
2909
+ TOP = "TOP",
2910
+ /** Image positioned at the top left */
2911
+ TOP_LEFT = "TOP_LEFT",
2912
+ /** Image positioned at the top right */
2913
+ TOP_RIGHT = "TOP_RIGHT",
2914
+ /** Image positioned at the center bottom */
2915
+ BOTTOM = "BOTTOM",
2916
+ /** Image positioned at the bottom left */
2917
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2918
+ /** Image positioned at the bottom right */
2919
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2920
+ }
2921
+ /** @enumType */
2922
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2923
+ /** Background type */
2924
+ declare enum CardDataBackgroundType {
2925
+ /** Solid color background */
2926
+ COLOR = "COLOR",
2927
+ /** Gradient background */
2928
+ GRADIENT = "GRADIENT"
2929
+ }
2930
+ /** @enumType */
2931
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2932
+ /** Background styling (color or gradient) */
2933
+ interface CardDataBackground {
2934
+ /** Background type. */
2935
+ type?: CardDataBackgroundTypeWithLiterals;
2936
+ /**
2937
+ * Background color as a hexadecimal value.
2938
+ * @format COLOR_HEX
2939
+ */
2940
+ color?: string | null;
2941
+ /** Gradient configuration. */
2942
+ gradient?: Gradient;
2943
+ }
2944
+ interface BackgroundImage {
2945
+ /** Background image. */
2946
+ media?: Media;
2947
+ /** Background image opacity. */
2948
+ opacity?: number | null;
2949
+ /** Background image scaling. */
2950
+ scaling?: ScalingWithLiterals;
2951
+ /** Position of background. Defaults to `CENTER`. */
2952
+ position?: ImagePositionPositionWithLiterals;
2953
+ }
2763
2954
  interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
2764
2955
  /** insert/update documents */
2765
2956
  update?: InternalDocumentUpdateOperation;
@@ -3472,4 +3663,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
3472
3663
  declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
3473
3664
  declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
3474
3665
 
3475
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, type App as AppOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type Page as PageOriginal, type Pages as PagesOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type URIs as URIsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
3666
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, type App as AppOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type Page as PageOriginal, type Pages as PagesOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type URIs as URIsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };