@wix/auto_sdk_blog_draft-posts 1.0.89 → 1.0.91
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 +63 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +463 -274
- package/build/cjs/index.typings.js +63 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +465 -276
- package/build/cjs/meta.js +63 -13
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +60 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +463 -274
- package/build/es/index.typings.mjs +60 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +465 -276
- package/build/es/meta.mjs +60 -13
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +63 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +905 -395
- package/build/internal/cjs/index.typings.js +63 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +879 -334
- package/build/internal/cjs/meta.js +63 -13
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +60 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +905 -395
- package/build/internal/es/index.typings.mjs +60 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +879 -334
- package/build/internal/es/meta.mjs +60 -13
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
package/build/cjs/meta.d.ts
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`. */
|
|
@@ -779,6 +916,8 @@ interface DividerData {
|
|
|
779
916
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
780
917
|
/** Visual styling for the divider lines. */
|
|
781
918
|
styles?: DividerDataStyles;
|
|
919
|
+
/** Node animation. */
|
|
920
|
+
animation?: Animation;
|
|
782
921
|
}
|
|
783
922
|
declare enum LineCap {
|
|
784
923
|
/** Square line endings. */
|
|
@@ -833,9 +972,9 @@ interface DividerDataStyles {
|
|
|
833
972
|
* @maxSize 10
|
|
834
973
|
*/
|
|
835
974
|
lineThickness?: number[];
|
|
836
|
-
/**
|
|
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. */
|
|
837
976
|
dashLength?: number | null;
|
|
838
|
-
/**
|
|
977
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
839
978
|
dashGap?: number | null;
|
|
840
979
|
/** Gap between divider lines in pixels. */
|
|
841
980
|
lineGap?: number | null;
|
|
@@ -862,6 +1001,8 @@ interface FileData {
|
|
|
862
1001
|
path?: string | null;
|
|
863
1002
|
/** File size in KB. */
|
|
864
1003
|
sizeInKb?: string | null;
|
|
1004
|
+
/** Node animation. */
|
|
1005
|
+
animation?: Animation;
|
|
865
1006
|
}
|
|
866
1007
|
declare enum ViewMode {
|
|
867
1008
|
/** No PDF view */
|
|
@@ -922,6 +1063,8 @@ interface GalleryData {
|
|
|
922
1063
|
disableExpand?: boolean | null;
|
|
923
1064
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
924
1065
|
disableDownload?: boolean | null;
|
|
1066
|
+
/** Node animation. */
|
|
1067
|
+
animation?: Animation;
|
|
925
1068
|
}
|
|
926
1069
|
interface V1Media {
|
|
927
1070
|
/** The source for the media's data. */
|
|
@@ -1065,6 +1208,8 @@ interface GIFData {
|
|
|
1065
1208
|
width?: number;
|
|
1066
1209
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1067
1210
|
gifType?: GIFTypeWithLiterals;
|
|
1211
|
+
/** Node animation. */
|
|
1212
|
+
animation?: Animation;
|
|
1068
1213
|
}
|
|
1069
1214
|
interface GIF {
|
|
1070
1215
|
/**
|
|
@@ -1098,6 +1243,8 @@ interface HeadingData {
|
|
|
1098
1243
|
indentation?: number | null;
|
|
1099
1244
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1100
1245
|
renderedLevel?: number | null;
|
|
1246
|
+
/** Node animation. */
|
|
1247
|
+
animation?: Animation;
|
|
1101
1248
|
}
|
|
1102
1249
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1103
1250
|
/** The URL for the HTML code for the node. */
|
|
@@ -1117,6 +1264,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1117
1264
|
source?: SourceWithLiterals;
|
|
1118
1265
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1119
1266
|
autoHeight?: boolean | null;
|
|
1267
|
+
/** Node animation. */
|
|
1268
|
+
animation?: Animation;
|
|
1120
1269
|
}
|
|
1121
1270
|
/** @oneof */
|
|
1122
1271
|
interface HTMLDataDataOneOf {
|
|
@@ -1166,6 +1315,8 @@ interface ImageData {
|
|
|
1166
1315
|
crop?: ImageDataCrop;
|
|
1167
1316
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1168
1317
|
cropShape?: string | null;
|
|
1318
|
+
/** Node animation. */
|
|
1319
|
+
animation?: Animation;
|
|
1169
1320
|
}
|
|
1170
1321
|
interface StylesBorder {
|
|
1171
1322
|
/** Border width in pixels. */
|
|
@@ -1207,6 +1358,8 @@ interface LinkPreviewData {
|
|
|
1207
1358
|
html?: string | null;
|
|
1208
1359
|
/** Styling for the link preview. */
|
|
1209
1360
|
styles?: LinkPreviewDataStyles;
|
|
1361
|
+
/** Node animation. */
|
|
1362
|
+
animation?: Animation;
|
|
1210
1363
|
}
|
|
1211
1364
|
declare enum StylesPosition {
|
|
1212
1365
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1302,6 +1455,8 @@ interface ParagraphData {
|
|
|
1302
1455
|
indentation?: number | null;
|
|
1303
1456
|
/** Paragraph level */
|
|
1304
1457
|
level?: number | null;
|
|
1458
|
+
/** Node animation. */
|
|
1459
|
+
animation?: Animation;
|
|
1305
1460
|
}
|
|
1306
1461
|
interface PollData {
|
|
1307
1462
|
/** Styling for the poll's container. */
|
|
@@ -1312,6 +1467,8 @@ interface PollData {
|
|
|
1312
1467
|
layout?: PollDataLayout;
|
|
1313
1468
|
/** Styling for the poll and voting options. */
|
|
1314
1469
|
design?: Design;
|
|
1470
|
+
/** Node animation. */
|
|
1471
|
+
animation?: Animation;
|
|
1315
1472
|
}
|
|
1316
1473
|
declare enum ViewRole {
|
|
1317
1474
|
/** Only Poll creator can view the results */
|
|
@@ -1578,6 +1735,8 @@ interface MentionData {
|
|
|
1578
1735
|
slug?: string;
|
|
1579
1736
|
/** Mentioned user's ID. */
|
|
1580
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;
|
|
1581
1740
|
}
|
|
1582
1741
|
interface FontSizeData {
|
|
1583
1742
|
/** The units used for the font size. */
|
|
@@ -1670,6 +1829,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1670
1829
|
containerData?: PluginContainerData;
|
|
1671
1830
|
/** Pricing data for embedded Wix App content. */
|
|
1672
1831
|
pricingData?: PricingData;
|
|
1832
|
+
/** Node animation. */
|
|
1833
|
+
animation?: Animation;
|
|
1673
1834
|
}
|
|
1674
1835
|
/** @oneof */
|
|
1675
1836
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1911,6 +2072,8 @@ interface VideoData {
|
|
|
1911
2072
|
title?: string | null;
|
|
1912
2073
|
/** Video options. */
|
|
1913
2074
|
options?: PlaybackOptions;
|
|
2075
|
+
/** Node animation. */
|
|
2076
|
+
animation?: Animation;
|
|
1914
2077
|
}
|
|
1915
2078
|
interface PlaybackOptions {
|
|
1916
2079
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1927,6 +2090,8 @@ interface EmbedData {
|
|
|
1927
2090
|
oembed?: Oembed;
|
|
1928
2091
|
/** Origin asset source. */
|
|
1929
2092
|
src?: string | null;
|
|
2093
|
+
/** Node animation. */
|
|
2094
|
+
animation?: Animation;
|
|
1930
2095
|
}
|
|
1931
2096
|
interface Oembed {
|
|
1932
2097
|
/** The resource type. */
|
|
@@ -1971,6 +2136,8 @@ interface CollapsibleListData {
|
|
|
1971
2136
|
direction?: DirectionWithLiterals;
|
|
1972
2137
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1973
2138
|
isQapageData?: boolean | null;
|
|
2139
|
+
/** Node animation. */
|
|
2140
|
+
animation?: Animation;
|
|
1974
2141
|
}
|
|
1975
2142
|
declare enum InitialExpandedItems {
|
|
1976
2143
|
/** First item will be expended initally */
|
|
@@ -2013,6 +2180,8 @@ interface TableData {
|
|
|
2013
2180
|
cellPadding?: number[];
|
|
2014
2181
|
/** Table's alternative text. */
|
|
2015
2182
|
altText?: string | null;
|
|
2183
|
+
/** Node animation. */
|
|
2184
|
+
animation?: Animation;
|
|
2016
2185
|
}
|
|
2017
2186
|
interface Dimensions {
|
|
2018
2187
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2121,6 +2290,8 @@ interface AudioData {
|
|
|
2121
2290
|
authorName?: string | null;
|
|
2122
2291
|
/** An HTML version of the audio node. */
|
|
2123
2292
|
html?: string | null;
|
|
2293
|
+
/** Node animation. */
|
|
2294
|
+
animation?: Animation;
|
|
2124
2295
|
}
|
|
2125
2296
|
interface OrderedListData {
|
|
2126
2297
|
/** Indentation level from 0-4. */
|
|
@@ -2129,16 +2300,22 @@ interface OrderedListData {
|
|
|
2129
2300
|
offset?: number | null;
|
|
2130
2301
|
/** List start number. */
|
|
2131
2302
|
start?: number | null;
|
|
2303
|
+
/** Node animation. */
|
|
2304
|
+
animation?: Animation;
|
|
2132
2305
|
}
|
|
2133
2306
|
interface BulletedListData {
|
|
2134
2307
|
/** Indentation level from 0-4. */
|
|
2135
2308
|
indentation?: number;
|
|
2136
2309
|
/** Offset level from 0-4. */
|
|
2137
2310
|
offset?: number | null;
|
|
2311
|
+
/** Node animation. */
|
|
2312
|
+
animation?: Animation;
|
|
2138
2313
|
}
|
|
2139
2314
|
interface BlockquoteData {
|
|
2140
2315
|
/** Indentation level from 1-4. */
|
|
2141
2316
|
indentation?: number;
|
|
2317
|
+
/** Node animation. */
|
|
2318
|
+
animation?: Animation;
|
|
2142
2319
|
}
|
|
2143
2320
|
interface CaptionData {
|
|
2144
2321
|
textStyle?: TextStyle;
|
|
@@ -2196,6 +2373,8 @@ interface LayoutData {
|
|
|
2196
2373
|
background?: LayoutDataBackground;
|
|
2197
2374
|
/** Backdrop styling (color or gradient). */
|
|
2198
2375
|
backdrop?: Backdrop;
|
|
2376
|
+
/** Node animation. */
|
|
2377
|
+
animation?: Animation;
|
|
2199
2378
|
}
|
|
2200
2379
|
declare enum ImageScalingScaling {
|
|
2201
2380
|
/** Auto image scaling */
|
|
@@ -2347,6 +2526,8 @@ interface ShapeData {
|
|
|
2347
2526
|
shape?: V1Media;
|
|
2348
2527
|
/** Styling for the shape. */
|
|
2349
2528
|
styles?: ShapeDataStyles;
|
|
2529
|
+
/** Node animation. */
|
|
2530
|
+
animation?: Animation;
|
|
2350
2531
|
}
|
|
2351
2532
|
interface ShapeDataStyles {
|
|
2352
2533
|
/**
|
|
@@ -2449,6 +2630,8 @@ interface TocData {
|
|
|
2449
2630
|
color?: string | null;
|
|
2450
2631
|
/** Indentation style. Default: NESTED. */
|
|
2451
2632
|
indentation?: IndentationWithLiterals;
|
|
2633
|
+
/** Node animation. */
|
|
2634
|
+
animation?: Animation;
|
|
2452
2635
|
}
|
|
2453
2636
|
/** List style. */
|
|
2454
2637
|
declare enum ListStyle {
|
|
@@ -2495,6 +2678,8 @@ interface SmartBlockData {
|
|
|
2495
2678
|
borderWidth?: number | null;
|
|
2496
2679
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2497
2680
|
borderRadius?: number | null;
|
|
2681
|
+
/** Node animation. */
|
|
2682
|
+
animation?: Animation;
|
|
2498
2683
|
}
|
|
2499
2684
|
/** Layout type of the smart block */
|
|
2500
2685
|
declare enum SmartBlockDataType {
|
|
@@ -2598,10 +2783,14 @@ interface CheckboxListData {
|
|
|
2598
2783
|
indentation?: number;
|
|
2599
2784
|
/** Offset level from 0-4. */
|
|
2600
2785
|
offset?: number | null;
|
|
2786
|
+
/** Node animation. */
|
|
2787
|
+
animation?: Animation;
|
|
2601
2788
|
}
|
|
2602
2789
|
interface ListItemNodeData {
|
|
2603
2790
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2604
2791
|
checked?: boolean | null;
|
|
2792
|
+
/** Node animation. */
|
|
2793
|
+
animation?: Animation;
|
|
2605
2794
|
}
|
|
2606
2795
|
interface Metadata {
|
|
2607
2796
|
/** Schema version. */
|
|
@@ -2857,6 +3046,10 @@ interface DraftPostTranslation {
|
|
|
2857
3046
|
/** Post URL. */
|
|
2858
3047
|
url?: PageUrl;
|
|
2859
3048
|
}
|
|
3049
|
+
interface InitialDraftPostsCopied {
|
|
3050
|
+
/** Number of draft posts copied. */
|
|
3051
|
+
count?: number;
|
|
3052
|
+
}
|
|
2860
3053
|
interface DraftCategoriesUpdated {
|
|
2861
3054
|
/**
|
|
2862
3055
|
* Draft post ID.
|
|
@@ -2895,202 +3088,6 @@ interface DraftTagsUpdated {
|
|
|
2895
3088
|
*/
|
|
2896
3089
|
previousTags?: string[];
|
|
2897
3090
|
}
|
|
2898
|
-
interface GetDraftPostTotalsRequest {
|
|
2899
|
-
/**
|
|
2900
|
-
* Group results by fields (defaults to grouping by status).
|
|
2901
|
-
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
2902
|
-
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
2903
|
-
* @maxSize 10
|
|
2904
|
-
*/
|
|
2905
|
-
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
2906
|
-
/**
|
|
2907
|
-
* Optional language filter by provided language code. Useful in multilingual context.
|
|
2908
|
-
* @format LANGUAGE_TAG
|
|
2909
|
-
*/
|
|
2910
|
-
language?: string | null;
|
|
2911
|
-
}
|
|
2912
|
-
declare enum TotalDraftPostsGroupingField {
|
|
2913
|
-
/** Groups results by status. */
|
|
2914
|
-
STATUS = "STATUS",
|
|
2915
|
-
/** Groups results by language. */
|
|
2916
|
-
LANGUAGE = "LANGUAGE"
|
|
2917
|
-
}
|
|
2918
|
-
/** @enumType */
|
|
2919
|
-
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
2920
|
-
interface GetDraftPostTotalsResponse {
|
|
2921
|
-
/** Draft post totals. */
|
|
2922
|
-
totalDraftPosts?: TotalDraftPosts[];
|
|
2923
|
-
}
|
|
2924
|
-
interface TotalDraftPosts {
|
|
2925
|
-
/** Draft post totals in that group. */
|
|
2926
|
-
total?: number;
|
|
2927
|
-
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
2928
|
-
status?: StatusWithLiterals;
|
|
2929
|
-
/**
|
|
2930
|
-
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
2931
|
-
* @format LANGUAGE_TAG
|
|
2932
|
-
*/
|
|
2933
|
-
language?: string | null;
|
|
2934
|
-
}
|
|
2935
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2936
|
-
createdEvent?: EntityCreatedEvent;
|
|
2937
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2938
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2939
|
-
actionEvent?: ActionEvent;
|
|
2940
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2941
|
-
id?: string;
|
|
2942
|
-
/**
|
|
2943
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2944
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2945
|
-
*/
|
|
2946
|
-
entityFqdn?: string;
|
|
2947
|
-
/**
|
|
2948
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2949
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2950
|
-
*/
|
|
2951
|
-
slug?: string;
|
|
2952
|
-
/** ID of the entity associated with the event. */
|
|
2953
|
-
entityId?: string;
|
|
2954
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2955
|
-
eventTime?: Date | null;
|
|
2956
|
-
/**
|
|
2957
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2958
|
-
* (for example, GDPR).
|
|
2959
|
-
*/
|
|
2960
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2961
|
-
/** If present, indicates the action that triggered the event. */
|
|
2962
|
-
originatedFrom?: string | null;
|
|
2963
|
-
/**
|
|
2964
|
-
* 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.
|
|
2965
|
-
* 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.
|
|
2966
|
-
*/
|
|
2967
|
-
entityEventSequence?: string | null;
|
|
2968
|
-
}
|
|
2969
|
-
/** @oneof */
|
|
2970
|
-
interface DomainEventBodyOneOf {
|
|
2971
|
-
createdEvent?: EntityCreatedEvent;
|
|
2972
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2973
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2974
|
-
actionEvent?: ActionEvent;
|
|
2975
|
-
}
|
|
2976
|
-
interface EntityCreatedEvent {
|
|
2977
|
-
entityAsJson?: string;
|
|
2978
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2979
|
-
restoreInfo?: RestoreInfo;
|
|
2980
|
-
}
|
|
2981
|
-
interface RestoreInfo {
|
|
2982
|
-
deletedDate?: Date | null;
|
|
2983
|
-
}
|
|
2984
|
-
interface EntityUpdatedEvent {
|
|
2985
|
-
/**
|
|
2986
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2987
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2988
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2989
|
-
*/
|
|
2990
|
-
currentEntityAsJson?: string;
|
|
2991
|
-
}
|
|
2992
|
-
interface EntityDeletedEvent {
|
|
2993
|
-
/** Entity that was deleted. */
|
|
2994
|
-
deletedEntityAsJson?: string | null;
|
|
2995
|
-
}
|
|
2996
|
-
interface ActionEvent {
|
|
2997
|
-
bodyAsJson?: string;
|
|
2998
|
-
}
|
|
2999
|
-
interface MessageEnvelope {
|
|
3000
|
-
/**
|
|
3001
|
-
* App instance ID.
|
|
3002
|
-
* @format GUID
|
|
3003
|
-
*/
|
|
3004
|
-
instanceId?: string | null;
|
|
3005
|
-
/**
|
|
3006
|
-
* Event type.
|
|
3007
|
-
* @maxLength 150
|
|
3008
|
-
*/
|
|
3009
|
-
eventType?: string;
|
|
3010
|
-
/** The identification type and identity data. */
|
|
3011
|
-
identity?: IdentificationData;
|
|
3012
|
-
/** Stringify payload. */
|
|
3013
|
-
data?: string;
|
|
3014
|
-
/** Details related to the account */
|
|
3015
|
-
accountInfo?: AccountInfo;
|
|
3016
|
-
}
|
|
3017
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3018
|
-
/**
|
|
3019
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3020
|
-
* @format GUID
|
|
3021
|
-
*/
|
|
3022
|
-
anonymousVisitorId?: string;
|
|
3023
|
-
/**
|
|
3024
|
-
* ID of a site visitor that has logged in to the site.
|
|
3025
|
-
* @format GUID
|
|
3026
|
-
*/
|
|
3027
|
-
memberId?: string;
|
|
3028
|
-
/**
|
|
3029
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3030
|
-
* @format GUID
|
|
3031
|
-
*/
|
|
3032
|
-
wixUserId?: string;
|
|
3033
|
-
/**
|
|
3034
|
-
* ID of an app.
|
|
3035
|
-
* @format GUID
|
|
3036
|
-
*/
|
|
3037
|
-
appId?: string;
|
|
3038
|
-
/** @readonly */
|
|
3039
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3040
|
-
}
|
|
3041
|
-
/** @oneof */
|
|
3042
|
-
interface IdentificationDataIdOneOf {
|
|
3043
|
-
/**
|
|
3044
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3045
|
-
* @format GUID
|
|
3046
|
-
*/
|
|
3047
|
-
anonymousVisitorId?: string;
|
|
3048
|
-
/**
|
|
3049
|
-
* ID of a site visitor that has logged in to the site.
|
|
3050
|
-
* @format GUID
|
|
3051
|
-
*/
|
|
3052
|
-
memberId?: string;
|
|
3053
|
-
/**
|
|
3054
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3055
|
-
* @format GUID
|
|
3056
|
-
*/
|
|
3057
|
-
wixUserId?: string;
|
|
3058
|
-
/**
|
|
3059
|
-
* ID of an app.
|
|
3060
|
-
* @format GUID
|
|
3061
|
-
*/
|
|
3062
|
-
appId?: string;
|
|
3063
|
-
}
|
|
3064
|
-
declare enum WebhookIdentityType {
|
|
3065
|
-
UNKNOWN = "UNKNOWN",
|
|
3066
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3067
|
-
MEMBER = "MEMBER",
|
|
3068
|
-
WIX_USER = "WIX_USER",
|
|
3069
|
-
APP = "APP"
|
|
3070
|
-
}
|
|
3071
|
-
/** @enumType */
|
|
3072
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3073
|
-
interface AccountInfo {
|
|
3074
|
-
/**
|
|
3075
|
-
* ID of the Wix account associated with the event.
|
|
3076
|
-
* @format GUID
|
|
3077
|
-
*/
|
|
3078
|
-
accountId?: string | null;
|
|
3079
|
-
/**
|
|
3080
|
-
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3081
|
-
* @format GUID
|
|
3082
|
-
*/
|
|
3083
|
-
parentAccountId?: string | null;
|
|
3084
|
-
/**
|
|
3085
|
-
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3086
|
-
* @format GUID
|
|
3087
|
-
*/
|
|
3088
|
-
siteId?: string | null;
|
|
3089
|
-
}
|
|
3090
|
-
interface InitialDraftPostsCopied {
|
|
3091
|
-
/** Number of draft posts copied. */
|
|
3092
|
-
count?: number;
|
|
3093
|
-
}
|
|
3094
3091
|
interface CreateDraftPostRequest {
|
|
3095
3092
|
/** Draft post to create. */
|
|
3096
3093
|
draftPost: DraftPost;
|
|
@@ -3671,116 +3668,197 @@ interface DraftPostCount {
|
|
|
3671
3668
|
/** Number of posts. */
|
|
3672
3669
|
postCount?: number;
|
|
3673
3670
|
}
|
|
3674
|
-
interface
|
|
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;
|
|
3675
3678
|
/**
|
|
3676
|
-
*
|
|
3677
|
-
*
|
|
3678
|
-
* @maxSize 100
|
|
3679
|
-
* @format GUID
|
|
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`.
|
|
3680
3681
|
*/
|
|
3681
|
-
|
|
3682
|
-
/** Should full draft post be returned. */
|
|
3683
|
-
returnFullEntity?: boolean;
|
|
3684
|
-
}
|
|
3685
|
-
interface BulkRevertToUnpublishedResponse {
|
|
3686
|
-
/** Bulk action results. */
|
|
3687
|
-
results?: BulkDraftPostResult[];
|
|
3688
|
-
/** Bulk action metadata. */
|
|
3689
|
-
bulkActionMetadata?: BulkActionMetadata;
|
|
3690
|
-
}
|
|
3691
|
-
interface BulkRejectDraftPostRequest {
|
|
3682
|
+
entityFqdn?: string;
|
|
3692
3683
|
/**
|
|
3693
|
-
*
|
|
3694
|
-
*
|
|
3695
|
-
* @maxSize 100
|
|
3696
|
-
* @format GUID
|
|
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`.
|
|
3697
3686
|
*/
|
|
3698
|
-
|
|
3699
|
-
/**
|
|
3700
|
-
|
|
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;
|
|
3701
3704
|
}
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3705
|
+
/** @oneof */
|
|
3706
|
+
interface DomainEventBodyOneOf {
|
|
3707
|
+
createdEvent?: EntityCreatedEvent;
|
|
3708
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3709
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3710
|
+
actionEvent?: ActionEvent;
|
|
3707
3711
|
}
|
|
3708
|
-
interface
|
|
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 {
|
|
3709
3721
|
/**
|
|
3710
|
-
*
|
|
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.
|
|
3711
3738
|
* @format GUID
|
|
3712
3739
|
*/
|
|
3713
|
-
|
|
3740
|
+
instanceId?: string | null;
|
|
3714
3741
|
/**
|
|
3715
|
-
*
|
|
3716
|
-
*
|
|
3717
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3718
|
-
* @maxSize 10
|
|
3742
|
+
* Event type.
|
|
3743
|
+
* @maxLength 150
|
|
3719
3744
|
*/
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
/**
|
|
3724
|
-
|
|
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;
|
|
3725
3752
|
}
|
|
3726
|
-
interface
|
|
3753
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3727
3754
|
/**
|
|
3728
|
-
*
|
|
3755
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3729
3756
|
* @format GUID
|
|
3730
3757
|
*/
|
|
3731
|
-
|
|
3758
|
+
anonymousVisitorId?: string;
|
|
3732
3759
|
/**
|
|
3733
|
-
*
|
|
3734
|
-
*
|
|
3735
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3736
|
-
* @maxSize 10
|
|
3760
|
+
* ID of a site visitor that has logged in to the site.
|
|
3761
|
+
* @format GUID
|
|
3737
3762
|
*/
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
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;
|
|
3743
3776
|
}
|
|
3744
|
-
|
|
3777
|
+
/** @oneof */
|
|
3778
|
+
interface IdentificationDataIdOneOf {
|
|
3745
3779
|
/**
|
|
3746
|
-
*
|
|
3780
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3747
3781
|
* @format GUID
|
|
3748
3782
|
*/
|
|
3749
|
-
|
|
3783
|
+
anonymousVisitorId?: string;
|
|
3750
3784
|
/**
|
|
3751
|
-
*
|
|
3752
|
-
* @
|
|
3785
|
+
* ID of a site visitor that has logged in to the site.
|
|
3786
|
+
* @format GUID
|
|
3753
3787
|
*/
|
|
3754
|
-
|
|
3788
|
+
memberId?: string;
|
|
3755
3789
|
/**
|
|
3756
|
-
*
|
|
3757
|
-
*
|
|
3758
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3759
|
-
* @maxSize 10
|
|
3790
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3791
|
+
* @format GUID
|
|
3760
3792
|
*/
|
|
3761
|
-
|
|
3793
|
+
wixUserId?: string;
|
|
3794
|
+
/**
|
|
3795
|
+
* ID of an app.
|
|
3796
|
+
* @format GUID
|
|
3797
|
+
*/
|
|
3798
|
+
appId?: string;
|
|
3762
3799
|
}
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3800
|
+
declare enum WebhookIdentityType {
|
|
3801
|
+
UNKNOWN = "UNKNOWN",
|
|
3802
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3803
|
+
MEMBER = "MEMBER",
|
|
3804
|
+
WIX_USER = "WIX_USER",
|
|
3805
|
+
APP = "APP"
|
|
3766
3806
|
}
|
|
3767
|
-
|
|
3807
|
+
/** @enumType */
|
|
3808
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3809
|
+
interface AccountInfo {
|
|
3768
3810
|
/**
|
|
3769
|
-
*
|
|
3770
|
-
* @
|
|
3811
|
+
* ID of the Wix account associated with the event.
|
|
3812
|
+
* @format GUID
|
|
3771
3813
|
*/
|
|
3772
|
-
|
|
3814
|
+
accountId?: string | null;
|
|
3773
3815
|
/**
|
|
3774
|
-
*
|
|
3775
|
-
*
|
|
3776
|
-
|
|
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.
|
|
3777
3831
|
* @maxSize 10
|
|
3778
3832
|
*/
|
|
3779
|
-
|
|
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;
|
|
3780
3839
|
}
|
|
3781
|
-
|
|
3782
|
-
/**
|
|
3783
|
-
|
|
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;
|
|
3784
3862
|
}
|
|
3785
3863
|
interface TranslateDraftRequest {
|
|
3786
3864
|
/**
|
|
@@ -3855,6 +3933,117 @@ interface UpdateDraftPostLanguageResponse {
|
|
|
3855
3933
|
/** Draft post */
|
|
3856
3934
|
draftPost?: DraftPost;
|
|
3857
3935
|
}
|
|
3936
|
+
interface BulkRevertToUnpublishedRequest {
|
|
3937
|
+
/**
|
|
3938
|
+
* Source post IDs.
|
|
3939
|
+
* @minSize 1
|
|
3940
|
+
* @maxSize 100
|
|
3941
|
+
* @format GUID
|
|
3942
|
+
*/
|
|
3943
|
+
postIds?: string[];
|
|
3944
|
+
/** Should full draft post be returned. */
|
|
3945
|
+
returnFullEntity?: boolean;
|
|
3946
|
+
}
|
|
3947
|
+
interface BulkRevertToUnpublishedResponse {
|
|
3948
|
+
/** Bulk action results. */
|
|
3949
|
+
results?: BulkDraftPostResult[];
|
|
3950
|
+
/** Bulk action metadata. */
|
|
3951
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3952
|
+
}
|
|
3953
|
+
interface BulkRejectDraftPostRequest {
|
|
3954
|
+
/**
|
|
3955
|
+
* Source post IDs.
|
|
3956
|
+
* @minSize 1
|
|
3957
|
+
* @maxSize 100
|
|
3958
|
+
* @format GUID
|
|
3959
|
+
*/
|
|
3960
|
+
postIds?: string[];
|
|
3961
|
+
/** Should full draft post be returned. */
|
|
3962
|
+
returnFullEntity?: boolean;
|
|
3963
|
+
}
|
|
3964
|
+
interface BulkRejectDraftPostResponse {
|
|
3965
|
+
/** Bulk action results. */
|
|
3966
|
+
results?: BulkDraftPostResult[];
|
|
3967
|
+
/** Bulk action metadata. */
|
|
3968
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3969
|
+
}
|
|
3970
|
+
interface RevertToUnpublishedRequest {
|
|
3971
|
+
/**
|
|
3972
|
+
* Source post ID.
|
|
3973
|
+
* @format GUID
|
|
3974
|
+
*/
|
|
3975
|
+
postId?: string;
|
|
3976
|
+
/**
|
|
3977
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3978
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3979
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3980
|
+
* @maxSize 10
|
|
3981
|
+
*/
|
|
3982
|
+
fieldsets?: FieldWithLiterals[];
|
|
3983
|
+
}
|
|
3984
|
+
interface RevertToUnpublishedResponse {
|
|
3985
|
+
/** Updated post draft. */
|
|
3986
|
+
draftPost?: DraftPost;
|
|
3987
|
+
}
|
|
3988
|
+
interface RejectDraftPostRequest {
|
|
3989
|
+
/**
|
|
3990
|
+
* Source post ID.
|
|
3991
|
+
* @format GUID
|
|
3992
|
+
*/
|
|
3993
|
+
postId?: string;
|
|
3994
|
+
/**
|
|
3995
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3996
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3997
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3998
|
+
* @maxSize 10
|
|
3999
|
+
*/
|
|
4000
|
+
fieldsets?: FieldWithLiterals[];
|
|
4001
|
+
}
|
|
4002
|
+
interface RejectDraftPostResponse {
|
|
4003
|
+
/** Draft post. */
|
|
4004
|
+
draftPost?: DraftPost;
|
|
4005
|
+
}
|
|
4006
|
+
interface ApproveDraftPostRequest {
|
|
4007
|
+
/**
|
|
4008
|
+
* Source post ID.
|
|
4009
|
+
* @format GUID
|
|
4010
|
+
*/
|
|
4011
|
+
postId?: string;
|
|
4012
|
+
/**
|
|
4013
|
+
* Scheduled publish date if should be not immediately published.
|
|
4014
|
+
* @maxLength 24
|
|
4015
|
+
*/
|
|
4016
|
+
scheduledPublishDate?: string | null;
|
|
4017
|
+
/**
|
|
4018
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
4019
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
4020
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4021
|
+
* @maxSize 10
|
|
4022
|
+
*/
|
|
4023
|
+
fieldsets?: FieldWithLiterals[];
|
|
4024
|
+
}
|
|
4025
|
+
interface ApproveDraftPostResponse {
|
|
4026
|
+
/** Updated post draft. */
|
|
4027
|
+
draftPost?: DraftPost;
|
|
4028
|
+
}
|
|
4029
|
+
interface MarkPostAsInModerationRequest {
|
|
4030
|
+
/**
|
|
4031
|
+
* Source post ID.
|
|
4032
|
+
* @maxLength 38
|
|
4033
|
+
*/
|
|
4034
|
+
postId?: string;
|
|
4035
|
+
/**
|
|
4036
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
4037
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
4038
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4039
|
+
* @maxSize 10
|
|
4040
|
+
*/
|
|
4041
|
+
fieldsets?: FieldWithLiterals[];
|
|
4042
|
+
}
|
|
4043
|
+
interface MarkPostAsInModerationResponse {
|
|
4044
|
+
/** Updated post draft. */
|
|
4045
|
+
draftPost?: DraftPost;
|
|
4046
|
+
}
|
|
3858
4047
|
|
|
3859
4048
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
3860
4049
|
getUrl: (context: any) => string;
|
|
@@ -3895,4 +4084,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
3895
4084
|
draftPostId: string;
|
|
3896
4085
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
3897
4086
|
|
|
3898
|
-
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 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 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 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 };
|