@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +649 -20
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +490 -227
- package/build/cjs/index.typings.js +556 -20
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +487 -229
- package/build/cjs/meta.js +556 -20
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +645 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +490 -227
- package/build/es/index.typings.mjs +552 -20
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +487 -229
- package/build/es/meta.mjs +552 -20
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +649 -20
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +490 -227
- package/build/internal/cjs/index.typings.js +556 -20
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +487 -229
- package/build/internal/cjs/meta.js +556 -20
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +645 -20
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +490 -227
- package/build/internal/es/index.typings.mjs +552 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +487 -229
- package/build/internal/es/meta.mjs +552 -20
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -468,6 +468,8 @@ interface ButtonData {
|
|
|
468
468
|
text?: string | null;
|
|
469
469
|
/** Button link details. */
|
|
470
470
|
link?: Link;
|
|
471
|
+
/** Node animation. */
|
|
472
|
+
animation?: Animation;
|
|
471
473
|
}
|
|
472
474
|
/** Background type */
|
|
473
475
|
declare enum BackgroundType {
|
|
@@ -744,9 +746,144 @@ interface Rel {
|
|
|
744
746
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
745
747
|
noreferrer?: boolean | null;
|
|
746
748
|
}
|
|
749
|
+
interface Animation {
|
|
750
|
+
/** Animation kind. */
|
|
751
|
+
type?: AnimationTypeWithLiterals;
|
|
752
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
753
|
+
entrance?: EntranceAnimation;
|
|
754
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
755
|
+
loop?: LoopAnimation;
|
|
756
|
+
}
|
|
757
|
+
declare enum AnimationType {
|
|
758
|
+
/** Animations that play while the node is in view. */
|
|
759
|
+
VIEW = "VIEW"
|
|
760
|
+
}
|
|
761
|
+
/** @enumType */
|
|
762
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
763
|
+
interface EntranceAnimation {
|
|
764
|
+
/** The entrance effect to play. */
|
|
765
|
+
effect?: EntranceEffect;
|
|
766
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
767
|
+
duration?: number | null;
|
|
768
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
769
|
+
delay?: number | null;
|
|
770
|
+
}
|
|
771
|
+
interface EntranceEffect {
|
|
772
|
+
/** The entrance effect type. */
|
|
773
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
774
|
+
/**
|
|
775
|
+
* 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).
|
|
776
|
+
* @maxLength 20
|
|
777
|
+
*/
|
|
778
|
+
direction?: string | null;
|
|
779
|
+
/**
|
|
780
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
781
|
+
* @maxLength 12
|
|
782
|
+
*/
|
|
783
|
+
shape?: string | null;
|
|
784
|
+
/**
|
|
785
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
786
|
+
* @maxLength 100
|
|
787
|
+
*/
|
|
788
|
+
easing?: string | null;
|
|
789
|
+
}
|
|
790
|
+
declare enum EntranceEffectType {
|
|
791
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
792
|
+
FADE = "FADE",
|
|
793
|
+
/** Enters along a 3D arc path. */
|
|
794
|
+
ARC = "ARC",
|
|
795
|
+
/** Transitions from blurred to sharp. */
|
|
796
|
+
BLUR = "BLUR",
|
|
797
|
+
/** Bounces into place with an elastic curve. */
|
|
798
|
+
BOUNCE = "BOUNCE",
|
|
799
|
+
/** Shrinks down from a larger size. */
|
|
800
|
+
DROP = "DROP",
|
|
801
|
+
/** Expands from a point, scaling to full size. */
|
|
802
|
+
EXPAND = "EXPAND",
|
|
803
|
+
/** Flips into view with a 3D rotation. */
|
|
804
|
+
FLIP = "FLIP",
|
|
805
|
+
/** Drifts gently into place. */
|
|
806
|
+
FLOAT = "FLOAT",
|
|
807
|
+
/** Unfolds from an edge as if hinged. */
|
|
808
|
+
FOLD = "FOLD",
|
|
809
|
+
/** Glides in smoothly from off-screen. */
|
|
810
|
+
GLIDE = "GLIDE",
|
|
811
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
812
|
+
REVEAL = "REVEAL",
|
|
813
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
814
|
+
SHAPE = "SHAPE",
|
|
815
|
+
/** Revealed through shutter-like strips. */
|
|
816
|
+
SHUTTERS = "SHUTTERS",
|
|
817
|
+
/** Slides in from one side. */
|
|
818
|
+
SLIDE = "SLIDE",
|
|
819
|
+
/** Spins into view while scaling up. */
|
|
820
|
+
SPIN = "SPIN",
|
|
821
|
+
/** Tilts in from the side with 3D rotation. */
|
|
822
|
+
TILT = "TILT",
|
|
823
|
+
/** Rotates into view around a corner pivot. */
|
|
824
|
+
TURN = "TURN",
|
|
825
|
+
/** Expands from its horizontal or vertical center. */
|
|
826
|
+
WINK = "WINK"
|
|
827
|
+
}
|
|
828
|
+
/** @enumType */
|
|
829
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
830
|
+
interface LoopAnimation {
|
|
831
|
+
/** The looping effect to repeat. */
|
|
832
|
+
effect?: LoopEffect;
|
|
833
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
834
|
+
duration?: number | null;
|
|
835
|
+
/** Pause between iterations in milliseconds. */
|
|
836
|
+
iterationDelay?: number | null;
|
|
837
|
+
}
|
|
838
|
+
interface LoopEffect {
|
|
839
|
+
/** The looping effect type. */
|
|
840
|
+
type?: LoopEffectTypeWithLiterals;
|
|
841
|
+
/**
|
|
842
|
+
* 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).
|
|
843
|
+
* @maxLength 20
|
|
844
|
+
*/
|
|
845
|
+
direction?: string | null;
|
|
846
|
+
/**
|
|
847
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
848
|
+
* @maxLength 100
|
|
849
|
+
*/
|
|
850
|
+
easing?: string | null;
|
|
851
|
+
}
|
|
852
|
+
declare enum LoopEffectType {
|
|
853
|
+
/** Bounces up and down in place. */
|
|
854
|
+
BOUNCE = "BOUNCE",
|
|
855
|
+
/** Scales gently in and out along an axis. */
|
|
856
|
+
BREATHE = "BREATHE",
|
|
857
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
858
|
+
CROSS = "CROSS",
|
|
859
|
+
/** Fades out to fully transparent and back in. */
|
|
860
|
+
FLASH = "FLASH",
|
|
861
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
862
|
+
FLIP = "FLIP",
|
|
863
|
+
/** Folds back and forth around a hinged edge. */
|
|
864
|
+
FOLD = "FOLD",
|
|
865
|
+
/** Wobbles with a jelly-like skew. */
|
|
866
|
+
JELLO = "JELLO",
|
|
867
|
+
/** Nudges repeatedly toward a direction. */
|
|
868
|
+
POKE = "POKE",
|
|
869
|
+
/** Scales up and back down rhythmically. */
|
|
870
|
+
PULSE = "PULSE",
|
|
871
|
+
/** Stretches and squashes like a rubber band. */
|
|
872
|
+
RUBBER = "RUBBER",
|
|
873
|
+
/** Rotates continuously around its center. */
|
|
874
|
+
SPIN = "SPIN",
|
|
875
|
+
/** Swings back and forth around an edge pivot. */
|
|
876
|
+
SWING = "SWING",
|
|
877
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
878
|
+
WIGGLE = "WIGGLE"
|
|
879
|
+
}
|
|
880
|
+
/** @enumType */
|
|
881
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
747
882
|
interface CodeBlockData {
|
|
748
883
|
/** Styling for the code block's text. */
|
|
749
884
|
textStyle?: TextStyle;
|
|
885
|
+
/** Node animation. */
|
|
886
|
+
animation?: Animation;
|
|
750
887
|
}
|
|
751
888
|
interface TextStyle {
|
|
752
889
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -777,7 +914,19 @@ interface DividerData {
|
|
|
777
914
|
width?: WidthWithLiterals;
|
|
778
915
|
/** Divider alignment. */
|
|
779
916
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
917
|
+
/** Visual styling for the divider lines. */
|
|
918
|
+
styles?: DividerDataStyles;
|
|
919
|
+
/** Node animation. */
|
|
920
|
+
animation?: Animation;
|
|
780
921
|
}
|
|
922
|
+
declare enum LineCap {
|
|
923
|
+
/** Square line endings. */
|
|
924
|
+
SQUARE = "SQUARE",
|
|
925
|
+
/** Rounded line endings. */
|
|
926
|
+
ROUND = "ROUND"
|
|
927
|
+
}
|
|
928
|
+
/** @enumType */
|
|
929
|
+
type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
|
|
781
930
|
declare enum LineStyle {
|
|
782
931
|
/** Single Line */
|
|
783
932
|
SINGLE = "SINGLE",
|
|
@@ -810,6 +959,26 @@ declare enum DividerDataAlignment {
|
|
|
810
959
|
}
|
|
811
960
|
/** @enumType */
|
|
812
961
|
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
962
|
+
interface DividerDataStyles {
|
|
963
|
+
/**
|
|
964
|
+
* Divider color as a hexadecimal value. An alpha channel controls opacity.
|
|
965
|
+
* @maxLength 19
|
|
966
|
+
*/
|
|
967
|
+
color?: string | null;
|
|
968
|
+
/** Divider line ending shape. */
|
|
969
|
+
lineCap?: LineCapWithLiterals;
|
|
970
|
+
/**
|
|
971
|
+
* Line thicknesses in pixels, ordered from first line to last line.
|
|
972
|
+
* @maxSize 10
|
|
973
|
+
*/
|
|
974
|
+
lineThickness?: number[];
|
|
975
|
+
/** 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. */
|
|
976
|
+
dashLength?: number | null;
|
|
977
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
978
|
+
dashGap?: number | null;
|
|
979
|
+
/** Gap between divider lines in pixels. */
|
|
980
|
+
lineGap?: number | null;
|
|
981
|
+
}
|
|
813
982
|
interface FileData {
|
|
814
983
|
/** Styling for the file's container. */
|
|
815
984
|
containerData?: PluginContainerData;
|
|
@@ -832,6 +1001,8 @@ interface FileData {
|
|
|
832
1001
|
path?: string | null;
|
|
833
1002
|
/** File size in KB. */
|
|
834
1003
|
sizeInKb?: string | null;
|
|
1004
|
+
/** Node animation. */
|
|
1005
|
+
animation?: Animation;
|
|
835
1006
|
}
|
|
836
1007
|
declare enum ViewMode {
|
|
837
1008
|
/** No PDF view */
|
|
@@ -892,6 +1063,8 @@ interface GalleryData {
|
|
|
892
1063
|
disableExpand?: boolean | null;
|
|
893
1064
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
894
1065
|
disableDownload?: boolean | null;
|
|
1066
|
+
/** Node animation. */
|
|
1067
|
+
animation?: Animation;
|
|
895
1068
|
}
|
|
896
1069
|
interface V1Media {
|
|
897
1070
|
/** The source for the media's data. */
|
|
@@ -1035,6 +1208,8 @@ interface GIFData {
|
|
|
1035
1208
|
width?: number;
|
|
1036
1209
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1037
1210
|
gifType?: GIFTypeWithLiterals;
|
|
1211
|
+
/** Node animation. */
|
|
1212
|
+
animation?: Animation;
|
|
1038
1213
|
}
|
|
1039
1214
|
interface GIF {
|
|
1040
1215
|
/**
|
|
@@ -1068,6 +1243,8 @@ interface HeadingData {
|
|
|
1068
1243
|
indentation?: number | null;
|
|
1069
1244
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1070
1245
|
renderedLevel?: number | null;
|
|
1246
|
+
/** Node animation. */
|
|
1247
|
+
animation?: Animation;
|
|
1071
1248
|
}
|
|
1072
1249
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1073
1250
|
/** The URL for the HTML code for the node. */
|
|
@@ -1087,6 +1264,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1087
1264
|
source?: SourceWithLiterals;
|
|
1088
1265
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1089
1266
|
autoHeight?: boolean | null;
|
|
1267
|
+
/** Node animation. */
|
|
1268
|
+
animation?: Animation;
|
|
1090
1269
|
}
|
|
1091
1270
|
/** @oneof */
|
|
1092
1271
|
interface HTMLDataDataOneOf {
|
|
@@ -1132,6 +1311,12 @@ interface ImageData {
|
|
|
1132
1311
|
decorative?: boolean | null;
|
|
1133
1312
|
/** Styling for the image. */
|
|
1134
1313
|
styles?: ImageDataStyles;
|
|
1314
|
+
/** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
|
|
1315
|
+
crop?: ImageDataCrop;
|
|
1316
|
+
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1317
|
+
cropShape?: string | null;
|
|
1318
|
+
/** Node animation. */
|
|
1319
|
+
animation?: Animation;
|
|
1135
1320
|
}
|
|
1136
1321
|
interface StylesBorder {
|
|
1137
1322
|
/** Border width in pixels. */
|
|
@@ -1148,6 +1333,16 @@ interface ImageDataStyles {
|
|
|
1148
1333
|
/** Border attributes. */
|
|
1149
1334
|
border?: StylesBorder;
|
|
1150
1335
|
}
|
|
1336
|
+
interface ImageDataCrop {
|
|
1337
|
+
/** Left edge of the crop, as a fraction (0-1) of the original image width. */
|
|
1338
|
+
x?: number | null;
|
|
1339
|
+
/** Top edge of the crop, as a fraction (0-1) of the original image height. */
|
|
1340
|
+
y?: number | null;
|
|
1341
|
+
/** Visible width of the crop, as a fraction (0-1) of the original image width. */
|
|
1342
|
+
width?: number | null;
|
|
1343
|
+
/** Visible height of the crop, as a fraction (0-1) of the original image height. */
|
|
1344
|
+
height?: number | null;
|
|
1345
|
+
}
|
|
1151
1346
|
interface LinkPreviewData {
|
|
1152
1347
|
/** Styling for the link preview's container. */
|
|
1153
1348
|
containerData?: PluginContainerData;
|
|
@@ -1163,6 +1358,8 @@ interface LinkPreviewData {
|
|
|
1163
1358
|
html?: string | null;
|
|
1164
1359
|
/** Styling for the link preview. */
|
|
1165
1360
|
styles?: LinkPreviewDataStyles;
|
|
1361
|
+
/** Node animation. */
|
|
1362
|
+
animation?: Animation;
|
|
1166
1363
|
}
|
|
1167
1364
|
declare enum StylesPosition {
|
|
1168
1365
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1258,6 +1455,8 @@ interface ParagraphData {
|
|
|
1258
1455
|
indentation?: number | null;
|
|
1259
1456
|
/** Paragraph level */
|
|
1260
1457
|
level?: number | null;
|
|
1458
|
+
/** Node animation. */
|
|
1459
|
+
animation?: Animation;
|
|
1261
1460
|
}
|
|
1262
1461
|
interface PollData {
|
|
1263
1462
|
/** Styling for the poll's container. */
|
|
@@ -1268,6 +1467,8 @@ interface PollData {
|
|
|
1268
1467
|
layout?: PollDataLayout;
|
|
1269
1468
|
/** Styling for the poll and voting options. */
|
|
1270
1469
|
design?: Design;
|
|
1470
|
+
/** Node animation. */
|
|
1471
|
+
animation?: Animation;
|
|
1271
1472
|
}
|
|
1272
1473
|
declare enum ViewRole {
|
|
1273
1474
|
/** Only Poll creator can view the results */
|
|
@@ -1534,6 +1735,8 @@ interface MentionData {
|
|
|
1534
1735
|
slug?: string;
|
|
1535
1736
|
/** Mentioned user's ID. */
|
|
1536
1737
|
id?: string | null;
|
|
1738
|
+
/** 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. */
|
|
1739
|
+
type?: string | null;
|
|
1537
1740
|
}
|
|
1538
1741
|
interface FontSizeData {
|
|
1539
1742
|
/** The units used for the font size. */
|
|
@@ -1626,6 +1829,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1626
1829
|
containerData?: PluginContainerData;
|
|
1627
1830
|
/** Pricing data for embedded Wix App content. */
|
|
1628
1831
|
pricingData?: PricingData;
|
|
1832
|
+
/** Node animation. */
|
|
1833
|
+
animation?: Animation;
|
|
1629
1834
|
}
|
|
1630
1835
|
/** @oneof */
|
|
1631
1836
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1867,6 +2072,8 @@ interface VideoData {
|
|
|
1867
2072
|
title?: string | null;
|
|
1868
2073
|
/** Video options. */
|
|
1869
2074
|
options?: PlaybackOptions;
|
|
2075
|
+
/** Node animation. */
|
|
2076
|
+
animation?: Animation;
|
|
1870
2077
|
}
|
|
1871
2078
|
interface PlaybackOptions {
|
|
1872
2079
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1883,6 +2090,8 @@ interface EmbedData {
|
|
|
1883
2090
|
oembed?: Oembed;
|
|
1884
2091
|
/** Origin asset source. */
|
|
1885
2092
|
src?: string | null;
|
|
2093
|
+
/** Node animation. */
|
|
2094
|
+
animation?: Animation;
|
|
1886
2095
|
}
|
|
1887
2096
|
interface Oembed {
|
|
1888
2097
|
/** The resource type. */
|
|
@@ -1927,6 +2136,8 @@ interface CollapsibleListData {
|
|
|
1927
2136
|
direction?: DirectionWithLiterals;
|
|
1928
2137
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1929
2138
|
isQapageData?: boolean | null;
|
|
2139
|
+
/** Node animation. */
|
|
2140
|
+
animation?: Animation;
|
|
1930
2141
|
}
|
|
1931
2142
|
declare enum InitialExpandedItems {
|
|
1932
2143
|
/** First item will be expended initally */
|
|
@@ -1969,6 +2180,8 @@ interface TableData {
|
|
|
1969
2180
|
cellPadding?: number[];
|
|
1970
2181
|
/** Table's alternative text. */
|
|
1971
2182
|
altText?: string | null;
|
|
2183
|
+
/** Node animation. */
|
|
2184
|
+
animation?: Animation;
|
|
1972
2185
|
}
|
|
1973
2186
|
interface Dimensions {
|
|
1974
2187
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2077,6 +2290,8 @@ interface AudioData {
|
|
|
2077
2290
|
authorName?: string | null;
|
|
2078
2291
|
/** An HTML version of the audio node. */
|
|
2079
2292
|
html?: string | null;
|
|
2293
|
+
/** Node animation. */
|
|
2294
|
+
animation?: Animation;
|
|
2080
2295
|
}
|
|
2081
2296
|
interface OrderedListData {
|
|
2082
2297
|
/** Indentation level from 0-4. */
|
|
@@ -2085,16 +2300,22 @@ interface OrderedListData {
|
|
|
2085
2300
|
offset?: number | null;
|
|
2086
2301
|
/** List start number. */
|
|
2087
2302
|
start?: number | null;
|
|
2303
|
+
/** Node animation. */
|
|
2304
|
+
animation?: Animation;
|
|
2088
2305
|
}
|
|
2089
2306
|
interface BulletedListData {
|
|
2090
2307
|
/** Indentation level from 0-4. */
|
|
2091
2308
|
indentation?: number;
|
|
2092
2309
|
/** Offset level from 0-4. */
|
|
2093
2310
|
offset?: number | null;
|
|
2311
|
+
/** Node animation. */
|
|
2312
|
+
animation?: Animation;
|
|
2094
2313
|
}
|
|
2095
2314
|
interface BlockquoteData {
|
|
2096
2315
|
/** Indentation level from 1-4. */
|
|
2097
2316
|
indentation?: number;
|
|
2317
|
+
/** Node animation. */
|
|
2318
|
+
animation?: Animation;
|
|
2098
2319
|
}
|
|
2099
2320
|
interface CaptionData {
|
|
2100
2321
|
textStyle?: TextStyle;
|
|
@@ -2152,6 +2373,8 @@ interface LayoutData {
|
|
|
2152
2373
|
background?: LayoutDataBackground;
|
|
2153
2374
|
/** Backdrop styling (color or gradient). */
|
|
2154
2375
|
backdrop?: Backdrop;
|
|
2376
|
+
/** Node animation. */
|
|
2377
|
+
animation?: Animation;
|
|
2155
2378
|
}
|
|
2156
2379
|
declare enum ImageScalingScaling {
|
|
2157
2380
|
/** Auto image scaling */
|
|
@@ -2185,6 +2408,27 @@ declare enum ImagePosition {
|
|
|
2185
2408
|
}
|
|
2186
2409
|
/** @enumType */
|
|
2187
2410
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2411
|
+
/** Background styling (color or gradient) */
|
|
2412
|
+
interface LayoutDataBackground {
|
|
2413
|
+
/** Background type. */
|
|
2414
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2415
|
+
/**
|
|
2416
|
+
* Background color as a hexadecimal value.
|
|
2417
|
+
* @maxLength 19
|
|
2418
|
+
*/
|
|
2419
|
+
color?: string | null;
|
|
2420
|
+
/** Gradient configuration. */
|
|
2421
|
+
gradient?: Gradient;
|
|
2422
|
+
}
|
|
2423
|
+
/** Background type */
|
|
2424
|
+
declare enum LayoutDataBackgroundType {
|
|
2425
|
+
/** Solid color background */
|
|
2426
|
+
COLOR = "COLOR",
|
|
2427
|
+
/** Gradient background */
|
|
2428
|
+
GRADIENT = "GRADIENT"
|
|
2429
|
+
}
|
|
2430
|
+
/** @enumType */
|
|
2431
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2188
2432
|
declare enum BannerOrigin {
|
|
2189
2433
|
/** Banner originated from an image */
|
|
2190
2434
|
IMAGE = "IMAGE",
|
|
@@ -2201,15 +2445,6 @@ declare enum BannerPosition {
|
|
|
2201
2445
|
}
|
|
2202
2446
|
/** @enumType */
|
|
2203
2447
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2204
|
-
/** Background type */
|
|
2205
|
-
declare enum LayoutDataBackgroundType {
|
|
2206
|
-
/** Solid color background */
|
|
2207
|
-
COLOR = "COLOR",
|
|
2208
|
-
/** Gradient background */
|
|
2209
|
-
GRADIENT = "GRADIENT"
|
|
2210
|
-
}
|
|
2211
|
-
/** @enumType */
|
|
2212
|
-
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2213
2448
|
/** Backdrop type */
|
|
2214
2449
|
declare enum BackdropType {
|
|
2215
2450
|
/** Solid color backdrop */
|
|
@@ -2222,12 +2457,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
|
2222
2457
|
interface LayoutDataBackgroundImage {
|
|
2223
2458
|
/** Background image. */
|
|
2224
2459
|
media?: V1Media;
|
|
2225
|
-
/**
|
|
2460
|
+
/**
|
|
2461
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
|
|
2462
|
+
* @deprecated
|
|
2463
|
+
*/
|
|
2226
2464
|
opacity?: number | null;
|
|
2227
2465
|
/** Background image scaling. */
|
|
2228
2466
|
scaling?: ImageScalingScalingWithLiterals;
|
|
2229
2467
|
/** Position of background. Defaults to `CENTER`. */
|
|
2230
2468
|
position?: ImagePositionWithLiterals;
|
|
2469
|
+
/** 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. */
|
|
2470
|
+
blur?: number | null;
|
|
2471
|
+
/** 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`). */
|
|
2472
|
+
overlay?: LayoutDataBackground;
|
|
2231
2473
|
}
|
|
2232
2474
|
declare enum VerticalAlignmentAlignment {
|
|
2233
2475
|
/** Top alignment */
|
|
@@ -2261,18 +2503,6 @@ interface Banner {
|
|
|
2261
2503
|
/** Position of the banner */
|
|
2262
2504
|
position?: BannerPositionWithLiterals;
|
|
2263
2505
|
}
|
|
2264
|
-
/** Background styling (color or gradient) */
|
|
2265
|
-
interface LayoutDataBackground {
|
|
2266
|
-
/** Background type. */
|
|
2267
|
-
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2268
|
-
/**
|
|
2269
|
-
* Background color as a hexadecimal value.
|
|
2270
|
-
* @maxLength 19
|
|
2271
|
-
*/
|
|
2272
|
-
color?: string | null;
|
|
2273
|
-
/** Gradient configuration. */
|
|
2274
|
-
gradient?: Gradient;
|
|
2275
|
-
}
|
|
2276
2506
|
/** Backdrop styling (color or gradient) */
|
|
2277
2507
|
interface Backdrop {
|
|
2278
2508
|
/** Backdrop type. */
|
|
@@ -2296,6 +2526,8 @@ interface ShapeData {
|
|
|
2296
2526
|
shape?: V1Media;
|
|
2297
2527
|
/** Styling for the shape. */
|
|
2298
2528
|
styles?: ShapeDataStyles;
|
|
2529
|
+
/** Node animation. */
|
|
2530
|
+
animation?: Animation;
|
|
2299
2531
|
}
|
|
2300
2532
|
interface ShapeDataStyles {
|
|
2301
2533
|
/**
|
|
@@ -2344,15 +2576,6 @@ declare enum ImagePositionPosition {
|
|
|
2344
2576
|
}
|
|
2345
2577
|
/** @enumType */
|
|
2346
2578
|
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2347
|
-
/** Background type */
|
|
2348
|
-
declare enum CardDataBackgroundType {
|
|
2349
|
-
/** Solid color background */
|
|
2350
|
-
COLOR = "COLOR",
|
|
2351
|
-
/** Gradient background */
|
|
2352
|
-
GRADIENT = "GRADIENT"
|
|
2353
|
-
}
|
|
2354
|
-
/** @enumType */
|
|
2355
|
-
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2356
2579
|
/** Background styling (color or gradient) */
|
|
2357
2580
|
interface CardDataBackground {
|
|
2358
2581
|
/** Background type. */
|
|
@@ -2365,15 +2588,31 @@ interface CardDataBackground {
|
|
|
2365
2588
|
/** Gradient configuration. */
|
|
2366
2589
|
gradient?: Gradient;
|
|
2367
2590
|
}
|
|
2591
|
+
/** Background type */
|
|
2592
|
+
declare enum CardDataBackgroundType {
|
|
2593
|
+
/** Solid color background */
|
|
2594
|
+
COLOR = "COLOR",
|
|
2595
|
+
/** Gradient background */
|
|
2596
|
+
GRADIENT = "GRADIENT"
|
|
2597
|
+
}
|
|
2598
|
+
/** @enumType */
|
|
2599
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2368
2600
|
interface BackgroundImage {
|
|
2369
2601
|
/** Background image. */
|
|
2370
2602
|
media?: V1Media;
|
|
2371
|
-
/**
|
|
2603
|
+
/**
|
|
2604
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
|
|
2605
|
+
* @deprecated
|
|
2606
|
+
*/
|
|
2372
2607
|
opacity?: number | null;
|
|
2373
2608
|
/** Background image scaling. */
|
|
2374
2609
|
scaling?: ScalingWithLiterals;
|
|
2375
2610
|
/** Position of background. Defaults to `CENTER`. */
|
|
2376
2611
|
position?: ImagePositionPositionWithLiterals;
|
|
2612
|
+
/** 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`). */
|
|
2613
|
+
overlay?: CardDataBackground;
|
|
2614
|
+
/** 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. */
|
|
2615
|
+
blur?: number | null;
|
|
2377
2616
|
}
|
|
2378
2617
|
interface TocData {
|
|
2379
2618
|
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
@@ -2391,6 +2630,8 @@ interface TocData {
|
|
|
2391
2630
|
color?: string | null;
|
|
2392
2631
|
/** Indentation style. Default: NESTED. */
|
|
2393
2632
|
indentation?: IndentationWithLiterals;
|
|
2633
|
+
/** Node animation. */
|
|
2634
|
+
animation?: Animation;
|
|
2394
2635
|
}
|
|
2395
2636
|
/** List style. */
|
|
2396
2637
|
declare enum ListStyle {
|
|
@@ -2437,6 +2678,8 @@ interface SmartBlockData {
|
|
|
2437
2678
|
borderWidth?: number | null;
|
|
2438
2679
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2439
2680
|
borderRadius?: number | null;
|
|
2681
|
+
/** Node animation. */
|
|
2682
|
+
animation?: Animation;
|
|
2440
2683
|
}
|
|
2441
2684
|
/** Layout type of the smart block */
|
|
2442
2685
|
declare enum SmartBlockDataType {
|
|
@@ -2540,10 +2783,14 @@ interface CheckboxListData {
|
|
|
2540
2783
|
indentation?: number;
|
|
2541
2784
|
/** Offset level from 0-4. */
|
|
2542
2785
|
offset?: number | null;
|
|
2786
|
+
/** Node animation. */
|
|
2787
|
+
animation?: Animation;
|
|
2543
2788
|
}
|
|
2544
2789
|
interface ListItemNodeData {
|
|
2545
2790
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2546
2791
|
checked?: boolean | null;
|
|
2792
|
+
/** Node animation. */
|
|
2793
|
+
animation?: Animation;
|
|
2547
2794
|
}
|
|
2548
2795
|
interface Metadata {
|
|
2549
2796
|
/** Schema version. */
|
|
@@ -2799,6 +3046,10 @@ interface DraftPostTranslation {
|
|
|
2799
3046
|
/** Post URL. */
|
|
2800
3047
|
url?: PageUrl;
|
|
2801
3048
|
}
|
|
3049
|
+
interface InitialDraftPostsCopied {
|
|
3050
|
+
/** Number of draft posts copied. */
|
|
3051
|
+
count?: number;
|
|
3052
|
+
}
|
|
2802
3053
|
interface DraftCategoriesUpdated {
|
|
2803
3054
|
/**
|
|
2804
3055
|
* Draft post ID.
|
|
@@ -2837,202 +3088,6 @@ interface DraftTagsUpdated {
|
|
|
2837
3088
|
*/
|
|
2838
3089
|
previousTags?: string[];
|
|
2839
3090
|
}
|
|
2840
|
-
interface GetDraftPostTotalsRequest {
|
|
2841
|
-
/**
|
|
2842
|
-
* Group results by fields (defaults to grouping by status).
|
|
2843
|
-
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
2844
|
-
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
2845
|
-
* @maxSize 10
|
|
2846
|
-
*/
|
|
2847
|
-
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
2848
|
-
/**
|
|
2849
|
-
* Optional language filter by provided language code. Useful in multilingual context.
|
|
2850
|
-
* @format LANGUAGE_TAG
|
|
2851
|
-
*/
|
|
2852
|
-
language?: string | null;
|
|
2853
|
-
}
|
|
2854
|
-
declare enum TotalDraftPostsGroupingField {
|
|
2855
|
-
/** Groups results by status. */
|
|
2856
|
-
STATUS = "STATUS",
|
|
2857
|
-
/** Groups results by language. */
|
|
2858
|
-
LANGUAGE = "LANGUAGE"
|
|
2859
|
-
}
|
|
2860
|
-
/** @enumType */
|
|
2861
|
-
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
2862
|
-
interface GetDraftPostTotalsResponse {
|
|
2863
|
-
/** Draft post totals. */
|
|
2864
|
-
totalDraftPosts?: TotalDraftPosts[];
|
|
2865
|
-
}
|
|
2866
|
-
interface TotalDraftPosts {
|
|
2867
|
-
/** Draft post totals in that group. */
|
|
2868
|
-
total?: number;
|
|
2869
|
-
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
2870
|
-
status?: StatusWithLiterals;
|
|
2871
|
-
/**
|
|
2872
|
-
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
2873
|
-
* @format LANGUAGE_TAG
|
|
2874
|
-
*/
|
|
2875
|
-
language?: string | null;
|
|
2876
|
-
}
|
|
2877
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2878
|
-
createdEvent?: EntityCreatedEvent;
|
|
2879
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2880
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2881
|
-
actionEvent?: ActionEvent;
|
|
2882
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2883
|
-
id?: string;
|
|
2884
|
-
/**
|
|
2885
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2886
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2887
|
-
*/
|
|
2888
|
-
entityFqdn?: string;
|
|
2889
|
-
/**
|
|
2890
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2891
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2892
|
-
*/
|
|
2893
|
-
slug?: string;
|
|
2894
|
-
/** ID of the entity associated with the event. */
|
|
2895
|
-
entityId?: string;
|
|
2896
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2897
|
-
eventTime?: Date | null;
|
|
2898
|
-
/**
|
|
2899
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2900
|
-
* (for example, GDPR).
|
|
2901
|
-
*/
|
|
2902
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2903
|
-
/** If present, indicates the action that triggered the event. */
|
|
2904
|
-
originatedFrom?: string | null;
|
|
2905
|
-
/**
|
|
2906
|
-
* 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.
|
|
2907
|
-
* 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.
|
|
2908
|
-
*/
|
|
2909
|
-
entityEventSequence?: string | null;
|
|
2910
|
-
}
|
|
2911
|
-
/** @oneof */
|
|
2912
|
-
interface DomainEventBodyOneOf {
|
|
2913
|
-
createdEvent?: EntityCreatedEvent;
|
|
2914
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2915
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2916
|
-
actionEvent?: ActionEvent;
|
|
2917
|
-
}
|
|
2918
|
-
interface EntityCreatedEvent {
|
|
2919
|
-
entityAsJson?: string;
|
|
2920
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2921
|
-
restoreInfo?: RestoreInfo;
|
|
2922
|
-
}
|
|
2923
|
-
interface RestoreInfo {
|
|
2924
|
-
deletedDate?: Date | null;
|
|
2925
|
-
}
|
|
2926
|
-
interface EntityUpdatedEvent {
|
|
2927
|
-
/**
|
|
2928
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2929
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2930
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2931
|
-
*/
|
|
2932
|
-
currentEntityAsJson?: string;
|
|
2933
|
-
}
|
|
2934
|
-
interface EntityDeletedEvent {
|
|
2935
|
-
/** Entity that was deleted. */
|
|
2936
|
-
deletedEntityAsJson?: string | null;
|
|
2937
|
-
}
|
|
2938
|
-
interface ActionEvent {
|
|
2939
|
-
bodyAsJson?: string;
|
|
2940
|
-
}
|
|
2941
|
-
interface MessageEnvelope {
|
|
2942
|
-
/**
|
|
2943
|
-
* App instance ID.
|
|
2944
|
-
* @format GUID
|
|
2945
|
-
*/
|
|
2946
|
-
instanceId?: string | null;
|
|
2947
|
-
/**
|
|
2948
|
-
* Event type.
|
|
2949
|
-
* @maxLength 150
|
|
2950
|
-
*/
|
|
2951
|
-
eventType?: string;
|
|
2952
|
-
/** The identification type and identity data. */
|
|
2953
|
-
identity?: IdentificationData;
|
|
2954
|
-
/** Stringify payload. */
|
|
2955
|
-
data?: string;
|
|
2956
|
-
/** Details related to the account */
|
|
2957
|
-
accountInfo?: AccountInfo;
|
|
2958
|
-
}
|
|
2959
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2960
|
-
/**
|
|
2961
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2962
|
-
* @format GUID
|
|
2963
|
-
*/
|
|
2964
|
-
anonymousVisitorId?: string;
|
|
2965
|
-
/**
|
|
2966
|
-
* ID of a site visitor that has logged in to the site.
|
|
2967
|
-
* @format GUID
|
|
2968
|
-
*/
|
|
2969
|
-
memberId?: string;
|
|
2970
|
-
/**
|
|
2971
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2972
|
-
* @format GUID
|
|
2973
|
-
*/
|
|
2974
|
-
wixUserId?: string;
|
|
2975
|
-
/**
|
|
2976
|
-
* ID of an app.
|
|
2977
|
-
* @format GUID
|
|
2978
|
-
*/
|
|
2979
|
-
appId?: string;
|
|
2980
|
-
/** @readonly */
|
|
2981
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2982
|
-
}
|
|
2983
|
-
/** @oneof */
|
|
2984
|
-
interface IdentificationDataIdOneOf {
|
|
2985
|
-
/**
|
|
2986
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2987
|
-
* @format GUID
|
|
2988
|
-
*/
|
|
2989
|
-
anonymousVisitorId?: string;
|
|
2990
|
-
/**
|
|
2991
|
-
* ID of a site visitor that has logged in to the site.
|
|
2992
|
-
* @format GUID
|
|
2993
|
-
*/
|
|
2994
|
-
memberId?: string;
|
|
2995
|
-
/**
|
|
2996
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2997
|
-
* @format GUID
|
|
2998
|
-
*/
|
|
2999
|
-
wixUserId?: string;
|
|
3000
|
-
/**
|
|
3001
|
-
* ID of an app.
|
|
3002
|
-
* @format GUID
|
|
3003
|
-
*/
|
|
3004
|
-
appId?: string;
|
|
3005
|
-
}
|
|
3006
|
-
declare enum WebhookIdentityType {
|
|
3007
|
-
UNKNOWN = "UNKNOWN",
|
|
3008
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3009
|
-
MEMBER = "MEMBER",
|
|
3010
|
-
WIX_USER = "WIX_USER",
|
|
3011
|
-
APP = "APP"
|
|
3012
|
-
}
|
|
3013
|
-
/** @enumType */
|
|
3014
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3015
|
-
interface AccountInfo {
|
|
3016
|
-
/**
|
|
3017
|
-
* ID of the Wix account associated with the event.
|
|
3018
|
-
* @format GUID
|
|
3019
|
-
*/
|
|
3020
|
-
accountId?: string | null;
|
|
3021
|
-
/**
|
|
3022
|
-
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3023
|
-
* @format GUID
|
|
3024
|
-
*/
|
|
3025
|
-
parentAccountId?: string | null;
|
|
3026
|
-
/**
|
|
3027
|
-
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3028
|
-
* @format GUID
|
|
3029
|
-
*/
|
|
3030
|
-
siteId?: string | null;
|
|
3031
|
-
}
|
|
3032
|
-
interface InitialDraftPostsCopied {
|
|
3033
|
-
/** Number of draft posts copied. */
|
|
3034
|
-
count?: number;
|
|
3035
|
-
}
|
|
3036
3091
|
interface CreateDraftPostRequest {
|
|
3037
3092
|
/** Draft post to create. */
|
|
3038
3093
|
draftPost: DraftPost;
|
|
@@ -3512,6 +3567,11 @@ interface Sorting {
|
|
|
3512
3567
|
fieldName?: string;
|
|
3513
3568
|
/** Sort order. */
|
|
3514
3569
|
order?: SortOrderWithLiterals;
|
|
3570
|
+
/**
|
|
3571
|
+
* Origin point for geo-distance sorting on a GEO field
|
|
3572
|
+
* results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
|
|
3573
|
+
*/
|
|
3574
|
+
origin?: AddressLocation;
|
|
3515
3575
|
}
|
|
3516
3576
|
declare enum SortOrder {
|
|
3517
3577
|
ASC = "ASC",
|
|
@@ -3519,6 +3579,12 @@ declare enum SortOrder {
|
|
|
3519
3579
|
}
|
|
3520
3580
|
/** @enumType */
|
|
3521
3581
|
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
3582
|
+
interface AddressLocation {
|
|
3583
|
+
/** Address latitude. */
|
|
3584
|
+
latitude?: number | null;
|
|
3585
|
+
/** Address longitude. */
|
|
3586
|
+
longitude?: number | null;
|
|
3587
|
+
}
|
|
3522
3588
|
interface Paging {
|
|
3523
3589
|
/**
|
|
3524
3590
|
* Number of items to load.
|
|
@@ -3602,6 +3668,198 @@ interface DraftPostCount {
|
|
|
3602
3668
|
/** Number of posts. */
|
|
3603
3669
|
postCount?: number;
|
|
3604
3670
|
}
|
|
3671
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3672
|
+
createdEvent?: EntityCreatedEvent;
|
|
3673
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3674
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3675
|
+
actionEvent?: ActionEvent;
|
|
3676
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3677
|
+
id?: string;
|
|
3678
|
+
/**
|
|
3679
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3680
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3681
|
+
*/
|
|
3682
|
+
entityFqdn?: string;
|
|
3683
|
+
/**
|
|
3684
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3685
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3686
|
+
*/
|
|
3687
|
+
slug?: string;
|
|
3688
|
+
/** ID of the entity associated with the event. */
|
|
3689
|
+
entityId?: string;
|
|
3690
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3691
|
+
eventTime?: Date | null;
|
|
3692
|
+
/**
|
|
3693
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3694
|
+
* (for example, GDPR).
|
|
3695
|
+
*/
|
|
3696
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3697
|
+
/** If present, indicates the action that triggered the event. */
|
|
3698
|
+
originatedFrom?: string | null;
|
|
3699
|
+
/**
|
|
3700
|
+
* 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.
|
|
3701
|
+
* 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.
|
|
3702
|
+
*/
|
|
3703
|
+
entityEventSequence?: string | null;
|
|
3704
|
+
}
|
|
3705
|
+
/** @oneof */
|
|
3706
|
+
interface DomainEventBodyOneOf {
|
|
3707
|
+
createdEvent?: EntityCreatedEvent;
|
|
3708
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3709
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3710
|
+
actionEvent?: ActionEvent;
|
|
3711
|
+
}
|
|
3712
|
+
interface EntityCreatedEvent {
|
|
3713
|
+
entityAsJson?: string;
|
|
3714
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3715
|
+
restoreInfo?: RestoreInfo;
|
|
3716
|
+
}
|
|
3717
|
+
interface RestoreInfo {
|
|
3718
|
+
deletedDate?: Date | null;
|
|
3719
|
+
}
|
|
3720
|
+
interface EntityUpdatedEvent {
|
|
3721
|
+
/**
|
|
3722
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3723
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3724
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3725
|
+
*/
|
|
3726
|
+
currentEntityAsJson?: string;
|
|
3727
|
+
}
|
|
3728
|
+
interface EntityDeletedEvent {
|
|
3729
|
+
/** Entity that was deleted. */
|
|
3730
|
+
deletedEntityAsJson?: string | null;
|
|
3731
|
+
}
|
|
3732
|
+
interface ActionEvent {
|
|
3733
|
+
bodyAsJson?: string;
|
|
3734
|
+
}
|
|
3735
|
+
interface MessageEnvelope {
|
|
3736
|
+
/**
|
|
3737
|
+
* App instance ID.
|
|
3738
|
+
* @format GUID
|
|
3739
|
+
*/
|
|
3740
|
+
instanceId?: string | null;
|
|
3741
|
+
/**
|
|
3742
|
+
* Event type.
|
|
3743
|
+
* @maxLength 150
|
|
3744
|
+
*/
|
|
3745
|
+
eventType?: string;
|
|
3746
|
+
/** The identification type and identity data. */
|
|
3747
|
+
identity?: IdentificationData;
|
|
3748
|
+
/** Stringify payload. */
|
|
3749
|
+
data?: string;
|
|
3750
|
+
/** Details related to the account */
|
|
3751
|
+
accountInfo?: AccountInfo;
|
|
3752
|
+
}
|
|
3753
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3754
|
+
/**
|
|
3755
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3756
|
+
* @format GUID
|
|
3757
|
+
*/
|
|
3758
|
+
anonymousVisitorId?: string;
|
|
3759
|
+
/**
|
|
3760
|
+
* ID of a site visitor that has logged in to the site.
|
|
3761
|
+
* @format GUID
|
|
3762
|
+
*/
|
|
3763
|
+
memberId?: string;
|
|
3764
|
+
/**
|
|
3765
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3766
|
+
* @format GUID
|
|
3767
|
+
*/
|
|
3768
|
+
wixUserId?: string;
|
|
3769
|
+
/**
|
|
3770
|
+
* ID of an app.
|
|
3771
|
+
* @format GUID
|
|
3772
|
+
*/
|
|
3773
|
+
appId?: string;
|
|
3774
|
+
/** @readonly */
|
|
3775
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3776
|
+
}
|
|
3777
|
+
/** @oneof */
|
|
3778
|
+
interface IdentificationDataIdOneOf {
|
|
3779
|
+
/**
|
|
3780
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3781
|
+
* @format GUID
|
|
3782
|
+
*/
|
|
3783
|
+
anonymousVisitorId?: string;
|
|
3784
|
+
/**
|
|
3785
|
+
* ID of a site visitor that has logged in to the site.
|
|
3786
|
+
* @format GUID
|
|
3787
|
+
*/
|
|
3788
|
+
memberId?: string;
|
|
3789
|
+
/**
|
|
3790
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3791
|
+
* @format GUID
|
|
3792
|
+
*/
|
|
3793
|
+
wixUserId?: string;
|
|
3794
|
+
/**
|
|
3795
|
+
* ID of an app.
|
|
3796
|
+
* @format GUID
|
|
3797
|
+
*/
|
|
3798
|
+
appId?: string;
|
|
3799
|
+
}
|
|
3800
|
+
declare enum WebhookIdentityType {
|
|
3801
|
+
UNKNOWN = "UNKNOWN",
|
|
3802
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3803
|
+
MEMBER = "MEMBER",
|
|
3804
|
+
WIX_USER = "WIX_USER",
|
|
3805
|
+
APP = "APP"
|
|
3806
|
+
}
|
|
3807
|
+
/** @enumType */
|
|
3808
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3809
|
+
interface AccountInfo {
|
|
3810
|
+
/**
|
|
3811
|
+
* ID of the Wix account associated with the event.
|
|
3812
|
+
* @format GUID
|
|
3813
|
+
*/
|
|
3814
|
+
accountId?: string | null;
|
|
3815
|
+
/**
|
|
3816
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3817
|
+
* @format GUID
|
|
3818
|
+
*/
|
|
3819
|
+
parentAccountId?: string | null;
|
|
3820
|
+
/**
|
|
3821
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3822
|
+
* @format GUID
|
|
3823
|
+
*/
|
|
3824
|
+
siteId?: string | null;
|
|
3825
|
+
}
|
|
3826
|
+
interface GetDraftPostTotalsRequest {
|
|
3827
|
+
/**
|
|
3828
|
+
* Group results by fields (defaults to grouping by status).
|
|
3829
|
+
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
3830
|
+
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
3831
|
+
* @maxSize 10
|
|
3832
|
+
*/
|
|
3833
|
+
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
3834
|
+
/**
|
|
3835
|
+
* Optional language filter by provided language code. Useful in multilingual context.
|
|
3836
|
+
* @format LANGUAGE_TAG
|
|
3837
|
+
*/
|
|
3838
|
+
language?: string | null;
|
|
3839
|
+
}
|
|
3840
|
+
declare enum TotalDraftPostsGroupingField {
|
|
3841
|
+
/** Groups results by status. */
|
|
3842
|
+
STATUS = "STATUS",
|
|
3843
|
+
/** Groups results by language. */
|
|
3844
|
+
LANGUAGE = "LANGUAGE"
|
|
3845
|
+
}
|
|
3846
|
+
/** @enumType */
|
|
3847
|
+
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
3848
|
+
interface GetDraftPostTotalsResponse {
|
|
3849
|
+
/** Draft post totals. */
|
|
3850
|
+
totalDraftPosts?: TotalDraftPosts[];
|
|
3851
|
+
}
|
|
3852
|
+
interface TotalDraftPosts {
|
|
3853
|
+
/** Draft post totals in that group. */
|
|
3854
|
+
total?: number;
|
|
3855
|
+
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
3856
|
+
status?: StatusWithLiterals;
|
|
3857
|
+
/**
|
|
3858
|
+
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
3859
|
+
* @format LANGUAGE_TAG
|
|
3860
|
+
*/
|
|
3861
|
+
language?: string | null;
|
|
3862
|
+
}
|
|
3605
3863
|
interface TranslateDraftRequest {
|
|
3606
3864
|
/**
|
|
3607
3865
|
* Source post or draft ID
|
|
@@ -3826,4 +4084,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
3826
4084
|
draftPostId: string;
|
|
3827
4085
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
3828
4086
|
|
|
3829
|
-
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, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, 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, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, 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 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, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, 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 ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, 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, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, 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, type Tag as TagOriginal, 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 TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, 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, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|
|
4087
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, type AddressLocation as AddressLocationOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type Animation as AnimationOriginal, AnimationType as AnimationTypeOriginal, type AnimationTypeWithLiterals as AnimationTypeWithLiteralsOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, 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, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DividerDataStyles as DividerDataStylesOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EntranceAnimation as EntranceAnimationOriginal, type EntranceEffect as EntranceEffectOriginal, EntranceEffectType as EntranceEffectTypeOriginal, type EntranceEffectTypeWithLiterals as EntranceEffectTypeWithLiteralsOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, 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 IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageDataCrop as ImageDataCropOriginal, 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, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, 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, LineCap as LineCapOriginal, type LineCapWithLiterals as LineCapWithLiteralsOriginal, 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 ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type LoopAnimation as LoopAnimationOriginal, type LoopEffect as LoopEffectOriginal, LoopEffectType as LoopEffectTypeOriginal, type LoopEffectTypeWithLiterals as LoopEffectTypeWithLiteralsOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, 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, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, 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, type Tag as TagOriginal, 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 TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, 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, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|