@wix/auto_sdk_blog_draft-posts 1.0.88 → 1.0.90

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 +649 -20
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +490 -227
  5. package/build/cjs/index.typings.js +556 -20
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +487 -229
  8. package/build/cjs/meta.js +556 -20
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +645 -20
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +490 -227
  14. package/build/es/index.typings.mjs +552 -20
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +487 -229
  17. package/build/es/meta.mjs +552 -20
  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 +649 -20
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +490 -227
  23. package/build/internal/cjs/index.typings.js +556 -20
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +487 -229
  26. package/build/internal/cjs/meta.js +556 -20
  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 +645 -20
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +490 -227
  32. package/build/internal/es/index.typings.mjs +552 -20
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +487 -229
  35. package/build/internal/es/meta.mjs +552 -20
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -445,6 +445,8 @@ interface ButtonData {
445
445
  text?: string | null;
446
446
  /** Button link details. */
447
447
  link?: Link;
448
+ /** Node animation. */
449
+ animation?: Animation;
448
450
  }
449
451
  /** Background type */
450
452
  declare enum BackgroundType {
@@ -721,9 +723,144 @@ interface Rel {
721
723
  /** Indicates that this link protect referral information from being passed to the target website. */
722
724
  noreferrer?: boolean | null;
723
725
  }
726
+ interface Animation {
727
+ /** Animation kind. */
728
+ type?: AnimationTypeWithLiterals;
729
+ /** Entrance animation, played once when the node first enters the viewport. */
730
+ entrance?: EntranceAnimation;
731
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
732
+ loop?: LoopAnimation;
733
+ }
734
+ declare enum AnimationType {
735
+ /** Animations that play while the node is in view. */
736
+ VIEW = "VIEW"
737
+ }
738
+ /** @enumType */
739
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW';
740
+ interface EntranceAnimation {
741
+ /** The entrance effect to play. */
742
+ effect?: EntranceEffect;
743
+ /** Effect duration in milliseconds. Each effect has its own default. */
744
+ duration?: number | null;
745
+ /** Delay before the effect starts, in milliseconds. */
746
+ delay?: number | null;
747
+ }
748
+ interface EntranceEffect {
749
+ /** The entrance effect type. */
750
+ type?: EntranceEffectTypeWithLiterals;
751
+ /**
752
+ * Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
753
+ * @maxLength 20
754
+ */
755
+ direction?: string | null;
756
+ /**
757
+ * Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
758
+ * @maxLength 12
759
+ */
760
+ shape?: string | null;
761
+ /**
762
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
763
+ * @maxLength 100
764
+ */
765
+ easing?: string | null;
766
+ }
767
+ declare enum EntranceEffectType {
768
+ /** Fades in from fully transparent to fully opaque. */
769
+ FADE = "FADE",
770
+ /** Enters along a 3D arc path. */
771
+ ARC = "ARC",
772
+ /** Transitions from blurred to sharp. */
773
+ BLUR = "BLUR",
774
+ /** Bounces into place with an elastic curve. */
775
+ BOUNCE = "BOUNCE",
776
+ /** Shrinks down from a larger size. */
777
+ DROP = "DROP",
778
+ /** Expands from a point, scaling to full size. */
779
+ EXPAND = "EXPAND",
780
+ /** Flips into view with a 3D rotation. */
781
+ FLIP = "FLIP",
782
+ /** Drifts gently into place. */
783
+ FLOAT = "FLOAT",
784
+ /** Unfolds from an edge as if hinged. */
785
+ FOLD = "FOLD",
786
+ /** Glides in smoothly from off-screen. */
787
+ GLIDE = "GLIDE",
788
+ /** Progressively revealed by an expanding clip-path. */
789
+ REVEAL = "REVEAL",
790
+ /** Appears through an expanding geometric clip-path shape. */
791
+ SHAPE = "SHAPE",
792
+ /** Revealed through shutter-like strips. */
793
+ SHUTTERS = "SHUTTERS",
794
+ /** Slides in from one side. */
795
+ SLIDE = "SLIDE",
796
+ /** Spins into view while scaling up. */
797
+ SPIN = "SPIN",
798
+ /** Tilts in from the side with 3D rotation. */
799
+ TILT = "TILT",
800
+ /** Rotates into view around a corner pivot. */
801
+ TURN = "TURN",
802
+ /** Expands from its horizontal or vertical center. */
803
+ WINK = "WINK"
804
+ }
805
+ /** @enumType */
806
+ type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
807
+ interface LoopAnimation {
808
+ /** The looping effect to repeat. */
809
+ effect?: LoopEffect;
810
+ /** Duration of a single iteration in milliseconds. Each effect has its own default. */
811
+ duration?: number | null;
812
+ /** Pause between iterations in milliseconds. */
813
+ iterationDelay?: number | null;
814
+ }
815
+ interface LoopEffect {
816
+ /** The looping effect type. */
817
+ type?: LoopEffectTypeWithLiterals;
818
+ /**
819
+ * Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
820
+ * @maxLength 20
821
+ */
822
+ direction?: string | null;
823
+ /**
824
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
825
+ * @maxLength 100
826
+ */
827
+ easing?: string | null;
828
+ }
829
+ declare enum LoopEffectType {
830
+ /** Bounces up and down in place. */
831
+ BOUNCE = "BOUNCE",
832
+ /** Scales gently in and out along an axis. */
833
+ BREATHE = "BREATHE",
834
+ /** Drifts toward one side, then re-enters from the opposite side. */
835
+ CROSS = "CROSS",
836
+ /** Fades out to fully transparent and back in. */
837
+ FLASH = "FLASH",
838
+ /** Rotates a full turn around its horizontal or vertical axis. */
839
+ FLIP = "FLIP",
840
+ /** Folds back and forth around a hinged edge. */
841
+ FOLD = "FOLD",
842
+ /** Wobbles with a jelly-like skew. */
843
+ JELLO = "JELLO",
844
+ /** Nudges repeatedly toward a direction. */
845
+ POKE = "POKE",
846
+ /** Scales up and back down rhythmically. */
847
+ PULSE = "PULSE",
848
+ /** Stretches and squashes like a rubber band. */
849
+ RUBBER = "RUBBER",
850
+ /** Rotates continuously around its center. */
851
+ SPIN = "SPIN",
852
+ /** Swings back and forth around an edge pivot. */
853
+ SWING = "SWING",
854
+ /** Rocks side to side with an accumulating rotation. */
855
+ WIGGLE = "WIGGLE"
856
+ }
857
+ /** @enumType */
858
+ type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
724
859
  interface CodeBlockData {
725
860
  /** Styling for the code block's text. */
726
861
  textStyle?: TextStyle;
862
+ /** Node animation. */
863
+ animation?: Animation;
727
864
  }
728
865
  interface TextStyle {
729
866
  /** Text alignment. Defaults to `AUTO`. */
@@ -754,7 +891,19 @@ interface DividerData {
754
891
  width?: WidthWithLiterals;
755
892
  /** Divider alignment. */
756
893
  alignment?: DividerDataAlignmentWithLiterals;
894
+ /** Visual styling for the divider lines. */
895
+ styles?: DividerDataStyles;
896
+ /** Node animation. */
897
+ animation?: Animation;
757
898
  }
899
+ declare enum LineCap {
900
+ /** Square line endings. */
901
+ SQUARE = "SQUARE",
902
+ /** Rounded line endings. */
903
+ ROUND = "ROUND"
904
+ }
905
+ /** @enumType */
906
+ type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
758
907
  declare enum LineStyle {
759
908
  /** Single Line */
760
909
  SINGLE = "SINGLE",
@@ -787,6 +936,26 @@ declare enum DividerDataAlignment {
787
936
  }
788
937
  /** @enumType */
789
938
  type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
939
+ interface DividerDataStyles {
940
+ /**
941
+ * Divider color as a hexadecimal value. An alpha channel controls opacity.
942
+ * @maxLength 19
943
+ */
944
+ color?: string | null;
945
+ /** Divider line ending shape. */
946
+ lineCap?: LineCapWithLiterals;
947
+ /**
948
+ * Line thicknesses in pixels, ordered from first line to last line.
949
+ * @maxSize 10
950
+ */
951
+ lineThickness?: number[];
952
+ /** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
953
+ dashLength?: number | null;
954
+ /** Visible gap between dashes or dots, in pixels. */
955
+ dashGap?: number | null;
956
+ /** Gap between divider lines in pixels. */
957
+ lineGap?: number | null;
958
+ }
790
959
  interface FileData {
791
960
  /** Styling for the file's container. */
792
961
  containerData?: PluginContainerData;
@@ -809,6 +978,8 @@ interface FileData {
809
978
  path?: string | null;
810
979
  /** File size in KB. */
811
980
  sizeInKb?: string | null;
981
+ /** Node animation. */
982
+ animation?: Animation;
812
983
  }
813
984
  declare enum ViewMode {
814
985
  /** No PDF view */
@@ -869,6 +1040,8 @@ interface GalleryData {
869
1040
  disableExpand?: boolean | null;
870
1041
  /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
871
1042
  disableDownload?: boolean | null;
1043
+ /** Node animation. */
1044
+ animation?: Animation;
872
1045
  }
873
1046
  interface V1Media {
874
1047
  /** The source for the media's data. */
@@ -1012,6 +1185,8 @@ interface GIFData {
1012
1185
  width?: number;
1013
1186
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
1014
1187
  gifType?: GIFTypeWithLiterals;
1188
+ /** Node animation. */
1189
+ animation?: Animation;
1015
1190
  }
1016
1191
  interface GIF {
1017
1192
  /**
@@ -1045,6 +1220,8 @@ interface HeadingData {
1045
1220
  indentation?: number | null;
1046
1221
  /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
1047
1222
  renderedLevel?: number | null;
1223
+ /** Node animation. */
1224
+ animation?: Animation;
1048
1225
  }
1049
1226
  interface HTMLData extends HTMLDataDataOneOf {
1050
1227
  /** The URL for the HTML code for the node. */
@@ -1064,6 +1241,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1064
1241
  source?: SourceWithLiterals;
1065
1242
  /** If container height is aligned with its content height. Defaults to `true`. */
1066
1243
  autoHeight?: boolean | null;
1244
+ /** Node animation. */
1245
+ animation?: Animation;
1067
1246
  }
1068
1247
  /** @oneof */
1069
1248
  interface HTMLDataDataOneOf {
@@ -1109,6 +1288,12 @@ interface ImageData {
1109
1288
  decorative?: boolean | null;
1110
1289
  /** Styling for the image. */
1111
1290
  styles?: ImageDataStyles;
1291
+ /** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
1292
+ crop?: ImageDataCrop;
1293
+ /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
1294
+ cropShape?: string | null;
1295
+ /** Node animation. */
1296
+ animation?: Animation;
1112
1297
  }
1113
1298
  interface StylesBorder {
1114
1299
  /** Border width in pixels. */
@@ -1125,6 +1310,16 @@ interface ImageDataStyles {
1125
1310
  /** Border attributes. */
1126
1311
  border?: StylesBorder;
1127
1312
  }
1313
+ interface ImageDataCrop {
1314
+ /** Left edge of the crop, as a fraction (0-1) of the original image width. */
1315
+ x?: number | null;
1316
+ /** Top edge of the crop, as a fraction (0-1) of the original image height. */
1317
+ y?: number | null;
1318
+ /** Visible width of the crop, as a fraction (0-1) of the original image width. */
1319
+ width?: number | null;
1320
+ /** Visible height of the crop, as a fraction (0-1) of the original image height. */
1321
+ height?: number | null;
1322
+ }
1128
1323
  interface LinkPreviewData {
1129
1324
  /** Styling for the link preview's container. */
1130
1325
  containerData?: PluginContainerData;
@@ -1140,6 +1335,8 @@ interface LinkPreviewData {
1140
1335
  html?: string | null;
1141
1336
  /** Styling for the link preview. */
1142
1337
  styles?: LinkPreviewDataStyles;
1338
+ /** Node animation. */
1339
+ animation?: Animation;
1143
1340
  }
1144
1341
  declare enum StylesPosition {
1145
1342
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
@@ -1235,6 +1432,8 @@ interface ParagraphData {
1235
1432
  indentation?: number | null;
1236
1433
  /** Paragraph level */
1237
1434
  level?: number | null;
1435
+ /** Node animation. */
1436
+ animation?: Animation;
1238
1437
  }
1239
1438
  interface PollData {
1240
1439
  /** Styling for the poll's container. */
@@ -1245,6 +1444,8 @@ interface PollData {
1245
1444
  layout?: PollDataLayout;
1246
1445
  /** Styling for the poll and voting options. */
1247
1446
  design?: Design;
1447
+ /** Node animation. */
1448
+ animation?: Animation;
1248
1449
  }
1249
1450
  declare enum ViewRole {
1250
1451
  /** Only Poll creator can view the results */
@@ -1511,6 +1712,8 @@ interface MentionData {
1511
1712
  slug?: string;
1512
1713
  /** Mentioned user's ID. */
1513
1714
  id?: string | null;
1715
+ /** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
1716
+ type?: string | null;
1514
1717
  }
1515
1718
  interface FontSizeData {
1516
1719
  /** The units used for the font size. */
@@ -1603,6 +1806,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1603
1806
  containerData?: PluginContainerData;
1604
1807
  /** Pricing data for embedded Wix App content. */
1605
1808
  pricingData?: PricingData;
1809
+ /** Node animation. */
1810
+ animation?: Animation;
1606
1811
  }
1607
1812
  /** @oneof */
1608
1813
  interface AppEmbedDataAppDataOneOf {
@@ -1844,6 +2049,8 @@ interface VideoData {
1844
2049
  title?: string | null;
1845
2050
  /** Video options. */
1846
2051
  options?: PlaybackOptions;
2052
+ /** Node animation. */
2053
+ animation?: Animation;
1847
2054
  }
1848
2055
  interface PlaybackOptions {
1849
2056
  /** Sets whether the media will automatically start playing. */
@@ -1860,6 +2067,8 @@ interface EmbedData {
1860
2067
  oembed?: Oembed;
1861
2068
  /** Origin asset source. */
1862
2069
  src?: string | null;
2070
+ /** Node animation. */
2071
+ animation?: Animation;
1863
2072
  }
1864
2073
  interface Oembed {
1865
2074
  /** The resource type. */
@@ -1904,6 +2113,8 @@ interface CollapsibleListData {
1904
2113
  direction?: DirectionWithLiterals;
1905
2114
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
1906
2115
  isQapageData?: boolean | null;
2116
+ /** Node animation. */
2117
+ animation?: Animation;
1907
2118
  }
1908
2119
  declare enum InitialExpandedItems {
1909
2120
  /** First item will be expended initally */
@@ -1946,6 +2157,8 @@ interface TableData {
1946
2157
  cellPadding?: number[];
1947
2158
  /** Table's alternative text. */
1948
2159
  altText?: string | null;
2160
+ /** Node animation. */
2161
+ animation?: Animation;
1949
2162
  }
1950
2163
  interface Dimensions {
1951
2164
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2054,6 +2267,8 @@ interface AudioData {
2054
2267
  authorName?: string | null;
2055
2268
  /** An HTML version of the audio node. */
2056
2269
  html?: string | null;
2270
+ /** Node animation. */
2271
+ animation?: Animation;
2057
2272
  }
2058
2273
  interface OrderedListData {
2059
2274
  /** Indentation level from 0-4. */
@@ -2062,16 +2277,22 @@ interface OrderedListData {
2062
2277
  offset?: number | null;
2063
2278
  /** List start number. */
2064
2279
  start?: number | null;
2280
+ /** Node animation. */
2281
+ animation?: Animation;
2065
2282
  }
2066
2283
  interface BulletedListData {
2067
2284
  /** Indentation level from 0-4. */
2068
2285
  indentation?: number;
2069
2286
  /** Offset level from 0-4. */
2070
2287
  offset?: number | null;
2288
+ /** Node animation. */
2289
+ animation?: Animation;
2071
2290
  }
2072
2291
  interface BlockquoteData {
2073
2292
  /** Indentation level from 1-4. */
2074
2293
  indentation?: number;
2294
+ /** Node animation. */
2295
+ animation?: Animation;
2075
2296
  }
2076
2297
  interface CaptionData {
2077
2298
  textStyle?: TextStyle;
@@ -2129,6 +2350,8 @@ interface LayoutData {
2129
2350
  background?: LayoutDataBackground;
2130
2351
  /** Backdrop styling (color or gradient). */
2131
2352
  backdrop?: Backdrop;
2353
+ /** Node animation. */
2354
+ animation?: Animation;
2132
2355
  }
2133
2356
  declare enum ImageScalingScaling {
2134
2357
  /** Auto image scaling */
@@ -2162,6 +2385,27 @@ declare enum ImagePosition {
2162
2385
  }
2163
2386
  /** @enumType */
2164
2387
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2388
+ /** Background styling (color or gradient) */
2389
+ interface LayoutDataBackground {
2390
+ /** Background type. */
2391
+ type?: LayoutDataBackgroundTypeWithLiterals;
2392
+ /**
2393
+ * Background color as a hexadecimal value.
2394
+ * @maxLength 19
2395
+ */
2396
+ color?: string | null;
2397
+ /** Gradient configuration. */
2398
+ gradient?: Gradient;
2399
+ }
2400
+ /** Background type */
2401
+ declare enum LayoutDataBackgroundType {
2402
+ /** Solid color background */
2403
+ COLOR = "COLOR",
2404
+ /** Gradient background */
2405
+ GRADIENT = "GRADIENT"
2406
+ }
2407
+ /** @enumType */
2408
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2165
2409
  declare enum BannerOrigin {
2166
2410
  /** Banner originated from an image */
2167
2411
  IMAGE = "IMAGE",
@@ -2178,15 +2422,6 @@ declare enum BannerPosition {
2178
2422
  }
2179
2423
  /** @enumType */
2180
2424
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2181
- /** Background type */
2182
- declare enum LayoutDataBackgroundType {
2183
- /** Solid color background */
2184
- COLOR = "COLOR",
2185
- /** Gradient background */
2186
- GRADIENT = "GRADIENT"
2187
- }
2188
- /** @enumType */
2189
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2190
2425
  /** Backdrop type */
2191
2426
  declare enum BackdropType {
2192
2427
  /** Solid color backdrop */
@@ -2199,12 +2434,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2199
2434
  interface LayoutDataBackgroundImage {
2200
2435
  /** Background image. */
2201
2436
  media?: V1Media;
2202
- /** Background image opacity. */
2437
+ /**
2438
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
2439
+ * @deprecated
2440
+ */
2203
2441
  opacity?: number | null;
2204
2442
  /** Background image scaling. */
2205
2443
  scaling?: ImageScalingScalingWithLiterals;
2206
2444
  /** Position of background. Defaults to `CENTER`. */
2207
2445
  position?: ImagePositionWithLiterals;
2446
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2447
+ blur?: number | null;
2448
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
2449
+ overlay?: LayoutDataBackground;
2208
2450
  }
2209
2451
  declare enum VerticalAlignmentAlignment {
2210
2452
  /** Top alignment */
@@ -2238,18 +2480,6 @@ interface Banner {
2238
2480
  /** Position of the banner */
2239
2481
  position?: BannerPositionWithLiterals;
2240
2482
  }
2241
- /** Background styling (color or gradient) */
2242
- interface LayoutDataBackground {
2243
- /** Background type. */
2244
- type?: LayoutDataBackgroundTypeWithLiterals;
2245
- /**
2246
- * Background color as a hexadecimal value.
2247
- * @maxLength 19
2248
- */
2249
- color?: string | null;
2250
- /** Gradient configuration. */
2251
- gradient?: Gradient;
2252
- }
2253
2483
  /** Backdrop styling (color or gradient) */
2254
2484
  interface Backdrop {
2255
2485
  /** Backdrop type. */
@@ -2273,6 +2503,8 @@ interface ShapeData {
2273
2503
  shape?: V1Media;
2274
2504
  /** Styling for the shape. */
2275
2505
  styles?: ShapeDataStyles;
2506
+ /** Node animation. */
2507
+ animation?: Animation;
2276
2508
  }
2277
2509
  interface ShapeDataStyles {
2278
2510
  /**
@@ -2321,15 +2553,6 @@ declare enum ImagePositionPosition {
2321
2553
  }
2322
2554
  /** @enumType */
2323
2555
  type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2324
- /** Background type */
2325
- declare enum CardDataBackgroundType {
2326
- /** Solid color background */
2327
- COLOR = "COLOR",
2328
- /** Gradient background */
2329
- GRADIENT = "GRADIENT"
2330
- }
2331
- /** @enumType */
2332
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2333
2556
  /** Background styling (color or gradient) */
2334
2557
  interface CardDataBackground {
2335
2558
  /** Background type. */
@@ -2342,15 +2565,31 @@ interface CardDataBackground {
2342
2565
  /** Gradient configuration. */
2343
2566
  gradient?: Gradient;
2344
2567
  }
2568
+ /** Background type */
2569
+ declare enum CardDataBackgroundType {
2570
+ /** Solid color background */
2571
+ COLOR = "COLOR",
2572
+ /** Gradient background */
2573
+ GRADIENT = "GRADIENT"
2574
+ }
2575
+ /** @enumType */
2576
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2345
2577
  interface BackgroundImage {
2346
2578
  /** Background image. */
2347
2579
  media?: V1Media;
2348
- /** Background image opacity. */
2580
+ /**
2581
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
2582
+ * @deprecated
2583
+ */
2349
2584
  opacity?: number | null;
2350
2585
  /** Background image scaling. */
2351
2586
  scaling?: ScalingWithLiterals;
2352
2587
  /** Position of background. Defaults to `CENTER`. */
2353
2588
  position?: ImagePositionPositionWithLiterals;
2589
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
2590
+ overlay?: CardDataBackground;
2591
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2592
+ blur?: number | null;
2354
2593
  }
2355
2594
  interface TocData {
2356
2595
  /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
@@ -2368,6 +2607,8 @@ interface TocData {
2368
2607
  color?: string | null;
2369
2608
  /** Indentation style. Default: NESTED. */
2370
2609
  indentation?: IndentationWithLiterals;
2610
+ /** Node animation. */
2611
+ animation?: Animation;
2371
2612
  }
2372
2613
  /** List style. */
2373
2614
  declare enum ListStyle {
@@ -2414,6 +2655,8 @@ interface SmartBlockData {
2414
2655
  borderWidth?: number | null;
2415
2656
  /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2416
2657
  borderRadius?: number | null;
2658
+ /** Node animation. */
2659
+ animation?: Animation;
2417
2660
  }
2418
2661
  /** Layout type of the smart block */
2419
2662
  declare enum SmartBlockDataType {
@@ -2517,10 +2760,14 @@ interface CheckboxListData {
2517
2760
  indentation?: number;
2518
2761
  /** Offset level from 0-4. */
2519
2762
  offset?: number | null;
2763
+ /** Node animation. */
2764
+ animation?: Animation;
2520
2765
  }
2521
2766
  interface ListItemNodeData {
2522
2767
  /** Checkbox list item state. Defaults to `false`. */
2523
2768
  checked?: boolean | null;
2769
+ /** Node animation. */
2770
+ animation?: Animation;
2524
2771
  }
2525
2772
  interface Metadata {
2526
2773
  /** Schema version. */
@@ -2755,6 +3002,10 @@ interface DraftPostTranslation {
2755
3002
  /** Post URL. */
2756
3003
  url?: string;
2757
3004
  }
3005
+ interface InitialDraftPostsCopied {
3006
+ /** Number of draft posts copied. */
3007
+ count?: number;
3008
+ }
2758
3009
  interface DraftCategoriesUpdated {
2759
3010
  /**
2760
3011
  * Draft post ID.
@@ -2793,200 +3044,6 @@ interface DraftTagsUpdated {
2793
3044
  */
2794
3045
  previousTags?: string[];
2795
3046
  }
2796
- interface GetDraftPostTotalsRequest {
2797
- /**
2798
- * Group results by fields (defaults to grouping by status).
2799
- * If, for example, grouping by language is passed, language values in response will be filled.
2800
- * If, for example, grouping by language is not passed, null values will be filled in language field in response.
2801
- * @maxSize 10
2802
- */
2803
- groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
2804
- /**
2805
- * Optional language filter by provided language code. Useful in multilingual context.
2806
- * @format LANGUAGE_TAG
2807
- */
2808
- language?: string | null;
2809
- }
2810
- declare enum TotalDraftPostsGroupingField {
2811
- /** Groups results by status. */
2812
- STATUS = "STATUS",
2813
- /** Groups results by language. */
2814
- LANGUAGE = "LANGUAGE"
2815
- }
2816
- /** @enumType */
2817
- type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
2818
- interface GetDraftPostTotalsResponse {
2819
- /** Draft post totals. */
2820
- totalDraftPosts?: TotalDraftPosts[];
2821
- }
2822
- interface TotalDraftPosts {
2823
- /** Draft post totals in that group. */
2824
- total?: number;
2825
- /** Draft post status (only has value when grouping by status, otherwise null). */
2826
- status?: StatusWithLiterals;
2827
- /**
2828
- * Draft post language code (only has value when grouping by language, otherwise null).
2829
- * @format LANGUAGE_TAG
2830
- */
2831
- language?: string | null;
2832
- }
2833
- interface DomainEvent extends DomainEventBodyOneOf {
2834
- createdEvent?: EntityCreatedEvent;
2835
- updatedEvent?: EntityUpdatedEvent;
2836
- deletedEvent?: EntityDeletedEvent;
2837
- actionEvent?: ActionEvent;
2838
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2839
- _id?: string;
2840
- /**
2841
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2842
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2843
- */
2844
- entityFqdn?: string;
2845
- /**
2846
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
2847
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2848
- */
2849
- slug?: string;
2850
- /** ID of the entity associated with the event. */
2851
- entityId?: string;
2852
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2853
- eventTime?: Date | null;
2854
- /**
2855
- * Whether the event was triggered as a result of a privacy regulation application
2856
- * (for example, GDPR).
2857
- */
2858
- triggeredByAnonymizeRequest?: boolean | null;
2859
- /** If present, indicates the action that triggered the event. */
2860
- originatedFrom?: string | null;
2861
- /**
2862
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
2863
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2864
- */
2865
- entityEventSequence?: string | null;
2866
- }
2867
- /** @oneof */
2868
- interface DomainEventBodyOneOf {
2869
- createdEvent?: EntityCreatedEvent;
2870
- updatedEvent?: EntityUpdatedEvent;
2871
- deletedEvent?: EntityDeletedEvent;
2872
- actionEvent?: ActionEvent;
2873
- }
2874
- interface EntityCreatedEvent {
2875
- entity?: string;
2876
- }
2877
- interface RestoreInfo {
2878
- deletedDate?: Date | null;
2879
- }
2880
- interface EntityUpdatedEvent {
2881
- /**
2882
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2883
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2884
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2885
- */
2886
- currentEntity?: string;
2887
- }
2888
- interface EntityDeletedEvent {
2889
- /** Entity that was deleted. */
2890
- deletedEntity?: string | null;
2891
- }
2892
- interface ActionEvent {
2893
- body?: string;
2894
- }
2895
- interface MessageEnvelope {
2896
- /**
2897
- * App instance ID.
2898
- * @format GUID
2899
- */
2900
- instanceId?: string | null;
2901
- /**
2902
- * Event type.
2903
- * @maxLength 150
2904
- */
2905
- eventType?: string;
2906
- /** The identification type and identity data. */
2907
- identity?: IdentificationData;
2908
- /** Stringify payload. */
2909
- data?: string;
2910
- /** Details related to the account */
2911
- accountInfo?: AccountInfo;
2912
- }
2913
- interface IdentificationData extends IdentificationDataIdOneOf {
2914
- /**
2915
- * ID of a site visitor that has not logged in to the site.
2916
- * @format GUID
2917
- */
2918
- anonymousVisitorId?: string;
2919
- /**
2920
- * ID of a site visitor that has logged in to the site.
2921
- * @format GUID
2922
- */
2923
- memberId?: string;
2924
- /**
2925
- * ID of a Wix user (site owner, contributor, etc.).
2926
- * @format GUID
2927
- */
2928
- wixUserId?: string;
2929
- /**
2930
- * ID of an app.
2931
- * @format GUID
2932
- */
2933
- appId?: string;
2934
- /** @readonly */
2935
- identityType?: WebhookIdentityTypeWithLiterals;
2936
- }
2937
- /** @oneof */
2938
- interface IdentificationDataIdOneOf {
2939
- /**
2940
- * ID of a site visitor that has not logged in to the site.
2941
- * @format GUID
2942
- */
2943
- anonymousVisitorId?: string;
2944
- /**
2945
- * ID of a site visitor that has logged in to the site.
2946
- * @format GUID
2947
- */
2948
- memberId?: string;
2949
- /**
2950
- * ID of a Wix user (site owner, contributor, etc.).
2951
- * @format GUID
2952
- */
2953
- wixUserId?: string;
2954
- /**
2955
- * ID of an app.
2956
- * @format GUID
2957
- */
2958
- appId?: string;
2959
- }
2960
- declare enum WebhookIdentityType {
2961
- UNKNOWN = "UNKNOWN",
2962
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2963
- MEMBER = "MEMBER",
2964
- WIX_USER = "WIX_USER",
2965
- APP = "APP"
2966
- }
2967
- /** @enumType */
2968
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2969
- interface AccountInfo {
2970
- /**
2971
- * ID of the Wix account associated with the event.
2972
- * @format GUID
2973
- */
2974
- accountId?: string | null;
2975
- /**
2976
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
2977
- * @format GUID
2978
- */
2979
- parentAccountId?: string | null;
2980
- /**
2981
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
2982
- * @format GUID
2983
- */
2984
- siteId?: string | null;
2985
- }
2986
- interface InitialDraftPostsCopied {
2987
- /** Number of draft posts copied. */
2988
- count?: number;
2989
- }
2990
3047
  interface CreateDraftPostRequest {
2991
3048
  /** Draft post to create. */
2992
3049
  draftPost: DraftPost;
@@ -3466,6 +3523,11 @@ interface Sorting {
3466
3523
  fieldName?: string;
3467
3524
  /** Sort order. */
3468
3525
  order?: SortOrderWithLiterals;
3526
+ /**
3527
+ * Origin point for geo-distance sorting on a GEO field
3528
+ * results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
3529
+ */
3530
+ origin?: AddressLocation;
3469
3531
  }
3470
3532
  declare enum SortOrder {
3471
3533
  ASC = "ASC",
@@ -3473,6 +3535,12 @@ declare enum SortOrder {
3473
3535
  }
3474
3536
  /** @enumType */
3475
3537
  type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
3538
+ interface AddressLocation {
3539
+ /** Address latitude. */
3540
+ latitude?: number | null;
3541
+ /** Address longitude. */
3542
+ longitude?: number | null;
3543
+ }
3476
3544
  interface Paging {
3477
3545
  /**
3478
3546
  * Number of items to load.
@@ -3556,6 +3624,196 @@ interface DraftPostCount {
3556
3624
  /** Number of posts. */
3557
3625
  postCount?: number;
3558
3626
  }
3627
+ interface DomainEvent extends DomainEventBodyOneOf {
3628
+ createdEvent?: EntityCreatedEvent;
3629
+ updatedEvent?: EntityUpdatedEvent;
3630
+ deletedEvent?: EntityDeletedEvent;
3631
+ actionEvent?: ActionEvent;
3632
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3633
+ _id?: string;
3634
+ /**
3635
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3636
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3637
+ */
3638
+ entityFqdn?: string;
3639
+ /**
3640
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
3641
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3642
+ */
3643
+ slug?: string;
3644
+ /** ID of the entity associated with the event. */
3645
+ entityId?: string;
3646
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3647
+ eventTime?: Date | null;
3648
+ /**
3649
+ * Whether the event was triggered as a result of a privacy regulation application
3650
+ * (for example, GDPR).
3651
+ */
3652
+ triggeredByAnonymizeRequest?: boolean | null;
3653
+ /** If present, indicates the action that triggered the event. */
3654
+ originatedFrom?: string | null;
3655
+ /**
3656
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
3657
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
3658
+ */
3659
+ entityEventSequence?: string | null;
3660
+ }
3661
+ /** @oneof */
3662
+ interface DomainEventBodyOneOf {
3663
+ createdEvent?: EntityCreatedEvent;
3664
+ updatedEvent?: EntityUpdatedEvent;
3665
+ deletedEvent?: EntityDeletedEvent;
3666
+ actionEvent?: ActionEvent;
3667
+ }
3668
+ interface EntityCreatedEvent {
3669
+ entity?: string;
3670
+ }
3671
+ interface RestoreInfo {
3672
+ deletedDate?: Date | null;
3673
+ }
3674
+ interface EntityUpdatedEvent {
3675
+ /**
3676
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3677
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3678
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3679
+ */
3680
+ currentEntity?: string;
3681
+ }
3682
+ interface EntityDeletedEvent {
3683
+ /** Entity that was deleted. */
3684
+ deletedEntity?: string | null;
3685
+ }
3686
+ interface ActionEvent {
3687
+ body?: string;
3688
+ }
3689
+ interface MessageEnvelope {
3690
+ /**
3691
+ * App instance ID.
3692
+ * @format GUID
3693
+ */
3694
+ instanceId?: string | null;
3695
+ /**
3696
+ * Event type.
3697
+ * @maxLength 150
3698
+ */
3699
+ eventType?: string;
3700
+ /** The identification type and identity data. */
3701
+ identity?: IdentificationData;
3702
+ /** Stringify payload. */
3703
+ data?: string;
3704
+ /** Details related to the account */
3705
+ accountInfo?: AccountInfo;
3706
+ }
3707
+ interface IdentificationData extends IdentificationDataIdOneOf {
3708
+ /**
3709
+ * ID of a site visitor that has not logged in to the site.
3710
+ * @format GUID
3711
+ */
3712
+ anonymousVisitorId?: string;
3713
+ /**
3714
+ * ID of a site visitor that has logged in to the site.
3715
+ * @format GUID
3716
+ */
3717
+ memberId?: string;
3718
+ /**
3719
+ * ID of a Wix user (site owner, contributor, etc.).
3720
+ * @format GUID
3721
+ */
3722
+ wixUserId?: string;
3723
+ /**
3724
+ * ID of an app.
3725
+ * @format GUID
3726
+ */
3727
+ appId?: string;
3728
+ /** @readonly */
3729
+ identityType?: WebhookIdentityTypeWithLiterals;
3730
+ }
3731
+ /** @oneof */
3732
+ interface IdentificationDataIdOneOf {
3733
+ /**
3734
+ * ID of a site visitor that has not logged in to the site.
3735
+ * @format GUID
3736
+ */
3737
+ anonymousVisitorId?: string;
3738
+ /**
3739
+ * ID of a site visitor that has logged in to the site.
3740
+ * @format GUID
3741
+ */
3742
+ memberId?: string;
3743
+ /**
3744
+ * ID of a Wix user (site owner, contributor, etc.).
3745
+ * @format GUID
3746
+ */
3747
+ wixUserId?: string;
3748
+ /**
3749
+ * ID of an app.
3750
+ * @format GUID
3751
+ */
3752
+ appId?: string;
3753
+ }
3754
+ declare enum WebhookIdentityType {
3755
+ UNKNOWN = "UNKNOWN",
3756
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3757
+ MEMBER = "MEMBER",
3758
+ WIX_USER = "WIX_USER",
3759
+ APP = "APP"
3760
+ }
3761
+ /** @enumType */
3762
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3763
+ interface AccountInfo {
3764
+ /**
3765
+ * ID of the Wix account associated with the event.
3766
+ * @format GUID
3767
+ */
3768
+ accountId?: string | null;
3769
+ /**
3770
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
3771
+ * @format GUID
3772
+ */
3773
+ parentAccountId?: string | null;
3774
+ /**
3775
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3776
+ * @format GUID
3777
+ */
3778
+ siteId?: string | null;
3779
+ }
3780
+ interface GetDraftPostTotalsRequest {
3781
+ /**
3782
+ * Group results by fields (defaults to grouping by status).
3783
+ * If, for example, grouping by language is passed, language values in response will be filled.
3784
+ * If, for example, grouping by language is not passed, null values will be filled in language field in response.
3785
+ * @maxSize 10
3786
+ */
3787
+ groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
3788
+ /**
3789
+ * Optional language filter by provided language code. Useful in multilingual context.
3790
+ * @format LANGUAGE_TAG
3791
+ */
3792
+ language?: string | null;
3793
+ }
3794
+ declare enum TotalDraftPostsGroupingField {
3795
+ /** Groups results by status. */
3796
+ STATUS = "STATUS",
3797
+ /** Groups results by language. */
3798
+ LANGUAGE = "LANGUAGE"
3799
+ }
3800
+ /** @enumType */
3801
+ type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
3802
+ interface GetDraftPostTotalsResponse {
3803
+ /** Draft post totals. */
3804
+ totalDraftPosts?: TotalDraftPosts[];
3805
+ }
3806
+ interface TotalDraftPosts {
3807
+ /** Draft post totals in that group. */
3808
+ total?: number;
3809
+ /** Draft post status (only has value when grouping by status, otherwise null). */
3810
+ status?: StatusWithLiterals;
3811
+ /**
3812
+ * Draft post language code (only has value when grouping by language, otherwise null).
3813
+ * @format LANGUAGE_TAG
3814
+ */
3815
+ language?: string | null;
3816
+ }
3559
3817
  interface TranslateDraftRequest {
3560
3818
  /**
3561
3819
  * Source post or draft ID
@@ -4511,6 +4769,11 @@ type DraftPostQuery = {
4511
4769
  Sort order.
4512
4770
  */
4513
4771
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
4772
+ /**
4773
+ Origin point for geo-distance sorting on a GEO field
4774
+ results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
4775
+ */
4776
+ origin?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['origin'];
4514
4777
  }[];
4515
4778
  };
4516
4779
  declare const utils: {
@@ -4535,4 +4798,4 @@ declare const utils: {
4535
4798
  */
4536
4799
  declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
4537
4800
 
4538
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
4801
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };