@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
|
@@ -445,6 +445,8 @@ interface ButtonData {
|
|
|
445
445
|
text?: string | null;
|
|
446
446
|
/** Button link details. */
|
|
447
447
|
link?: Link;
|
|
448
|
+
/** Node animation. */
|
|
449
|
+
animation?: Animation;
|
|
448
450
|
}
|
|
449
451
|
/** Background type */
|
|
450
452
|
declare enum BackgroundType {
|
|
@@ -721,9 +723,144 @@ interface Rel {
|
|
|
721
723
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
722
724
|
noreferrer?: boolean | null;
|
|
723
725
|
}
|
|
726
|
+
interface Animation {
|
|
727
|
+
/** Animation kind. */
|
|
728
|
+
type?: AnimationTypeWithLiterals;
|
|
729
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
730
|
+
entrance?: EntranceAnimation;
|
|
731
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
732
|
+
loop?: LoopAnimation;
|
|
733
|
+
}
|
|
734
|
+
declare enum AnimationType {
|
|
735
|
+
/** Animations that play while the node is in view. */
|
|
736
|
+
VIEW = "VIEW"
|
|
737
|
+
}
|
|
738
|
+
/** @enumType */
|
|
739
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
740
|
+
interface EntranceAnimation {
|
|
741
|
+
/** The entrance effect to play. */
|
|
742
|
+
effect?: EntranceEffect;
|
|
743
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
744
|
+
duration?: number | null;
|
|
745
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
746
|
+
delay?: number | null;
|
|
747
|
+
}
|
|
748
|
+
interface EntranceEffect {
|
|
749
|
+
/** The entrance effect type. */
|
|
750
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
751
|
+
/**
|
|
752
|
+
* Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
753
|
+
* @maxLength 20
|
|
754
|
+
*/
|
|
755
|
+
direction?: string | null;
|
|
756
|
+
/**
|
|
757
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
758
|
+
* @maxLength 12
|
|
759
|
+
*/
|
|
760
|
+
shape?: string | null;
|
|
761
|
+
/**
|
|
762
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
763
|
+
* @maxLength 100
|
|
764
|
+
*/
|
|
765
|
+
easing?: string | null;
|
|
766
|
+
}
|
|
767
|
+
declare enum EntranceEffectType {
|
|
768
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
769
|
+
FADE = "FADE",
|
|
770
|
+
/** Enters along a 3D arc path. */
|
|
771
|
+
ARC = "ARC",
|
|
772
|
+
/** Transitions from blurred to sharp. */
|
|
773
|
+
BLUR = "BLUR",
|
|
774
|
+
/** Bounces into place with an elastic curve. */
|
|
775
|
+
BOUNCE = "BOUNCE",
|
|
776
|
+
/** Shrinks down from a larger size. */
|
|
777
|
+
DROP = "DROP",
|
|
778
|
+
/** Expands from a point, scaling to full size. */
|
|
779
|
+
EXPAND = "EXPAND",
|
|
780
|
+
/** Flips into view with a 3D rotation. */
|
|
781
|
+
FLIP = "FLIP",
|
|
782
|
+
/** Drifts gently into place. */
|
|
783
|
+
FLOAT = "FLOAT",
|
|
784
|
+
/** Unfolds from an edge as if hinged. */
|
|
785
|
+
FOLD = "FOLD",
|
|
786
|
+
/** Glides in smoothly from off-screen. */
|
|
787
|
+
GLIDE = "GLIDE",
|
|
788
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
789
|
+
REVEAL = "REVEAL",
|
|
790
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
791
|
+
SHAPE = "SHAPE",
|
|
792
|
+
/** Revealed through shutter-like strips. */
|
|
793
|
+
SHUTTERS = "SHUTTERS",
|
|
794
|
+
/** Slides in from one side. */
|
|
795
|
+
SLIDE = "SLIDE",
|
|
796
|
+
/** Spins into view while scaling up. */
|
|
797
|
+
SPIN = "SPIN",
|
|
798
|
+
/** Tilts in from the side with 3D rotation. */
|
|
799
|
+
TILT = "TILT",
|
|
800
|
+
/** Rotates into view around a corner pivot. */
|
|
801
|
+
TURN = "TURN",
|
|
802
|
+
/** Expands from its horizontal or vertical center. */
|
|
803
|
+
WINK = "WINK"
|
|
804
|
+
}
|
|
805
|
+
/** @enumType */
|
|
806
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
807
|
+
interface LoopAnimation {
|
|
808
|
+
/** The looping effect to repeat. */
|
|
809
|
+
effect?: LoopEffect;
|
|
810
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
811
|
+
duration?: number | null;
|
|
812
|
+
/** Pause between iterations in milliseconds. */
|
|
813
|
+
iterationDelay?: number | null;
|
|
814
|
+
}
|
|
815
|
+
interface LoopEffect {
|
|
816
|
+
/** The looping effect type. */
|
|
817
|
+
type?: LoopEffectTypeWithLiterals;
|
|
818
|
+
/**
|
|
819
|
+
* Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
820
|
+
* @maxLength 20
|
|
821
|
+
*/
|
|
822
|
+
direction?: string | null;
|
|
823
|
+
/**
|
|
824
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
825
|
+
* @maxLength 100
|
|
826
|
+
*/
|
|
827
|
+
easing?: string | null;
|
|
828
|
+
}
|
|
829
|
+
declare enum LoopEffectType {
|
|
830
|
+
/** Bounces up and down in place. */
|
|
831
|
+
BOUNCE = "BOUNCE",
|
|
832
|
+
/** Scales gently in and out along an axis. */
|
|
833
|
+
BREATHE = "BREATHE",
|
|
834
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
835
|
+
CROSS = "CROSS",
|
|
836
|
+
/** Fades out to fully transparent and back in. */
|
|
837
|
+
FLASH = "FLASH",
|
|
838
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
839
|
+
FLIP = "FLIP",
|
|
840
|
+
/** Folds back and forth around a hinged edge. */
|
|
841
|
+
FOLD = "FOLD",
|
|
842
|
+
/** Wobbles with a jelly-like skew. */
|
|
843
|
+
JELLO = "JELLO",
|
|
844
|
+
/** Nudges repeatedly toward a direction. */
|
|
845
|
+
POKE = "POKE",
|
|
846
|
+
/** Scales up and back down rhythmically. */
|
|
847
|
+
PULSE = "PULSE",
|
|
848
|
+
/** Stretches and squashes like a rubber band. */
|
|
849
|
+
RUBBER = "RUBBER",
|
|
850
|
+
/** Rotates continuously around its center. */
|
|
851
|
+
SPIN = "SPIN",
|
|
852
|
+
/** Swings back and forth around an edge pivot. */
|
|
853
|
+
SWING = "SWING",
|
|
854
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
855
|
+
WIGGLE = "WIGGLE"
|
|
856
|
+
}
|
|
857
|
+
/** @enumType */
|
|
858
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
724
859
|
interface CodeBlockData {
|
|
725
860
|
/** Styling for the code block's text. */
|
|
726
861
|
textStyle?: TextStyle;
|
|
862
|
+
/** Node animation. */
|
|
863
|
+
animation?: Animation;
|
|
727
864
|
}
|
|
728
865
|
interface TextStyle {
|
|
729
866
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -756,6 +893,8 @@ interface DividerData {
|
|
|
756
893
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
757
894
|
/** Visual styling for the divider lines. */
|
|
758
895
|
styles?: DividerDataStyles;
|
|
896
|
+
/** Node animation. */
|
|
897
|
+
animation?: Animation;
|
|
759
898
|
}
|
|
760
899
|
declare enum LineCap {
|
|
761
900
|
/** Square line endings. */
|
|
@@ -810,9 +949,9 @@ interface DividerDataStyles {
|
|
|
810
949
|
* @maxSize 10
|
|
811
950
|
*/
|
|
812
951
|
lineThickness?: number[];
|
|
813
|
-
/**
|
|
952
|
+
/** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
|
|
814
953
|
dashLength?: number | null;
|
|
815
|
-
/**
|
|
954
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
816
955
|
dashGap?: number | null;
|
|
817
956
|
/** Gap between divider lines in pixels. */
|
|
818
957
|
lineGap?: number | null;
|
|
@@ -839,6 +978,8 @@ interface FileData {
|
|
|
839
978
|
path?: string | null;
|
|
840
979
|
/** File size in KB. */
|
|
841
980
|
sizeInKb?: string | null;
|
|
981
|
+
/** Node animation. */
|
|
982
|
+
animation?: Animation;
|
|
842
983
|
}
|
|
843
984
|
declare enum ViewMode {
|
|
844
985
|
/** No PDF view */
|
|
@@ -899,6 +1040,8 @@ interface GalleryData {
|
|
|
899
1040
|
disableExpand?: boolean | null;
|
|
900
1041
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
901
1042
|
disableDownload?: boolean | null;
|
|
1043
|
+
/** Node animation. */
|
|
1044
|
+
animation?: Animation;
|
|
902
1045
|
}
|
|
903
1046
|
interface V1Media {
|
|
904
1047
|
/** The source for the media's data. */
|
|
@@ -1042,6 +1185,8 @@ interface GIFData {
|
|
|
1042
1185
|
width?: number;
|
|
1043
1186
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
1044
1187
|
gifType?: GIFTypeWithLiterals;
|
|
1188
|
+
/** Node animation. */
|
|
1189
|
+
animation?: Animation;
|
|
1045
1190
|
}
|
|
1046
1191
|
interface GIF {
|
|
1047
1192
|
/**
|
|
@@ -1075,6 +1220,8 @@ interface HeadingData {
|
|
|
1075
1220
|
indentation?: number | null;
|
|
1076
1221
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1077
1222
|
renderedLevel?: number | null;
|
|
1223
|
+
/** Node animation. */
|
|
1224
|
+
animation?: Animation;
|
|
1078
1225
|
}
|
|
1079
1226
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1080
1227
|
/** The URL for the HTML code for the node. */
|
|
@@ -1094,6 +1241,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
1094
1241
|
source?: SourceWithLiterals;
|
|
1095
1242
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
1096
1243
|
autoHeight?: boolean | null;
|
|
1244
|
+
/** Node animation. */
|
|
1245
|
+
animation?: Animation;
|
|
1097
1246
|
}
|
|
1098
1247
|
/** @oneof */
|
|
1099
1248
|
interface HTMLDataDataOneOf {
|
|
@@ -1143,6 +1292,8 @@ interface ImageData {
|
|
|
1143
1292
|
crop?: ImageDataCrop;
|
|
1144
1293
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
1145
1294
|
cropShape?: string | null;
|
|
1295
|
+
/** Node animation. */
|
|
1296
|
+
animation?: Animation;
|
|
1146
1297
|
}
|
|
1147
1298
|
interface StylesBorder {
|
|
1148
1299
|
/** Border width in pixels. */
|
|
@@ -1184,6 +1335,8 @@ interface LinkPreviewData {
|
|
|
1184
1335
|
html?: string | null;
|
|
1185
1336
|
/** Styling for the link preview. */
|
|
1186
1337
|
styles?: LinkPreviewDataStyles;
|
|
1338
|
+
/** Node animation. */
|
|
1339
|
+
animation?: Animation;
|
|
1187
1340
|
}
|
|
1188
1341
|
declare enum StylesPosition {
|
|
1189
1342
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1279,6 +1432,8 @@ interface ParagraphData {
|
|
|
1279
1432
|
indentation?: number | null;
|
|
1280
1433
|
/** Paragraph level */
|
|
1281
1434
|
level?: number | null;
|
|
1435
|
+
/** Node animation. */
|
|
1436
|
+
animation?: Animation;
|
|
1282
1437
|
}
|
|
1283
1438
|
interface PollData {
|
|
1284
1439
|
/** Styling for the poll's container. */
|
|
@@ -1289,6 +1444,8 @@ interface PollData {
|
|
|
1289
1444
|
layout?: PollDataLayout;
|
|
1290
1445
|
/** Styling for the poll and voting options. */
|
|
1291
1446
|
design?: Design;
|
|
1447
|
+
/** Node animation. */
|
|
1448
|
+
animation?: Animation;
|
|
1292
1449
|
}
|
|
1293
1450
|
declare enum ViewRole {
|
|
1294
1451
|
/** Only Poll creator can view the results */
|
|
@@ -1555,6 +1712,8 @@ interface MentionData {
|
|
|
1555
1712
|
slug?: string;
|
|
1556
1713
|
/** Mentioned user's ID. */
|
|
1557
1714
|
id?: string | null;
|
|
1715
|
+
/** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
|
|
1716
|
+
type?: string | null;
|
|
1558
1717
|
}
|
|
1559
1718
|
interface FontSizeData {
|
|
1560
1719
|
/** The units used for the font size. */
|
|
@@ -1647,6 +1806,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1647
1806
|
containerData?: PluginContainerData;
|
|
1648
1807
|
/** Pricing data for embedded Wix App content. */
|
|
1649
1808
|
pricingData?: PricingData;
|
|
1809
|
+
/** Node animation. */
|
|
1810
|
+
animation?: Animation;
|
|
1650
1811
|
}
|
|
1651
1812
|
/** @oneof */
|
|
1652
1813
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1888,6 +2049,8 @@ interface VideoData {
|
|
|
1888
2049
|
title?: string | null;
|
|
1889
2050
|
/** Video options. */
|
|
1890
2051
|
options?: PlaybackOptions;
|
|
2052
|
+
/** Node animation. */
|
|
2053
|
+
animation?: Animation;
|
|
1891
2054
|
}
|
|
1892
2055
|
interface PlaybackOptions {
|
|
1893
2056
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1904,6 +2067,8 @@ interface EmbedData {
|
|
|
1904
2067
|
oembed?: Oembed;
|
|
1905
2068
|
/** Origin asset source. */
|
|
1906
2069
|
src?: string | null;
|
|
2070
|
+
/** Node animation. */
|
|
2071
|
+
animation?: Animation;
|
|
1907
2072
|
}
|
|
1908
2073
|
interface Oembed {
|
|
1909
2074
|
/** The resource type. */
|
|
@@ -1948,6 +2113,8 @@ interface CollapsibleListData {
|
|
|
1948
2113
|
direction?: DirectionWithLiterals;
|
|
1949
2114
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1950
2115
|
isQapageData?: boolean | null;
|
|
2116
|
+
/** Node animation. */
|
|
2117
|
+
animation?: Animation;
|
|
1951
2118
|
}
|
|
1952
2119
|
declare enum InitialExpandedItems {
|
|
1953
2120
|
/** First item will be expended initally */
|
|
@@ -1990,6 +2157,8 @@ interface TableData {
|
|
|
1990
2157
|
cellPadding?: number[];
|
|
1991
2158
|
/** Table's alternative text. */
|
|
1992
2159
|
altText?: string | null;
|
|
2160
|
+
/** Node animation. */
|
|
2161
|
+
animation?: Animation;
|
|
1993
2162
|
}
|
|
1994
2163
|
interface Dimensions {
|
|
1995
2164
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2098,6 +2267,8 @@ interface AudioData {
|
|
|
2098
2267
|
authorName?: string | null;
|
|
2099
2268
|
/** An HTML version of the audio node. */
|
|
2100
2269
|
html?: string | null;
|
|
2270
|
+
/** Node animation. */
|
|
2271
|
+
animation?: Animation;
|
|
2101
2272
|
}
|
|
2102
2273
|
interface OrderedListData {
|
|
2103
2274
|
/** Indentation level from 0-4. */
|
|
@@ -2106,16 +2277,22 @@ interface OrderedListData {
|
|
|
2106
2277
|
offset?: number | null;
|
|
2107
2278
|
/** List start number. */
|
|
2108
2279
|
start?: number | null;
|
|
2280
|
+
/** Node animation. */
|
|
2281
|
+
animation?: Animation;
|
|
2109
2282
|
}
|
|
2110
2283
|
interface BulletedListData {
|
|
2111
2284
|
/** Indentation level from 0-4. */
|
|
2112
2285
|
indentation?: number;
|
|
2113
2286
|
/** Offset level from 0-4. */
|
|
2114
2287
|
offset?: number | null;
|
|
2288
|
+
/** Node animation. */
|
|
2289
|
+
animation?: Animation;
|
|
2115
2290
|
}
|
|
2116
2291
|
interface BlockquoteData {
|
|
2117
2292
|
/** Indentation level from 1-4. */
|
|
2118
2293
|
indentation?: number;
|
|
2294
|
+
/** Node animation. */
|
|
2295
|
+
animation?: Animation;
|
|
2119
2296
|
}
|
|
2120
2297
|
interface CaptionData {
|
|
2121
2298
|
textStyle?: TextStyle;
|
|
@@ -2173,6 +2350,8 @@ interface LayoutData {
|
|
|
2173
2350
|
background?: LayoutDataBackground;
|
|
2174
2351
|
/** Backdrop styling (color or gradient). */
|
|
2175
2352
|
backdrop?: Backdrop;
|
|
2353
|
+
/** Node animation. */
|
|
2354
|
+
animation?: Animation;
|
|
2176
2355
|
}
|
|
2177
2356
|
declare enum ImageScalingScaling {
|
|
2178
2357
|
/** Auto image scaling */
|
|
@@ -2324,6 +2503,8 @@ interface ShapeData {
|
|
|
2324
2503
|
shape?: V1Media;
|
|
2325
2504
|
/** Styling for the shape. */
|
|
2326
2505
|
styles?: ShapeDataStyles;
|
|
2506
|
+
/** Node animation. */
|
|
2507
|
+
animation?: Animation;
|
|
2327
2508
|
}
|
|
2328
2509
|
interface ShapeDataStyles {
|
|
2329
2510
|
/**
|
|
@@ -2426,6 +2607,8 @@ interface TocData {
|
|
|
2426
2607
|
color?: string | null;
|
|
2427
2608
|
/** Indentation style. Default: NESTED. */
|
|
2428
2609
|
indentation?: IndentationWithLiterals;
|
|
2610
|
+
/** Node animation. */
|
|
2611
|
+
animation?: Animation;
|
|
2429
2612
|
}
|
|
2430
2613
|
/** List style. */
|
|
2431
2614
|
declare enum ListStyle {
|
|
@@ -2472,6 +2655,8 @@ interface SmartBlockData {
|
|
|
2472
2655
|
borderWidth?: number | null;
|
|
2473
2656
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2474
2657
|
borderRadius?: number | null;
|
|
2658
|
+
/** Node animation. */
|
|
2659
|
+
animation?: Animation;
|
|
2475
2660
|
}
|
|
2476
2661
|
/** Layout type of the smart block */
|
|
2477
2662
|
declare enum SmartBlockDataType {
|
|
@@ -2575,10 +2760,14 @@ interface CheckboxListData {
|
|
|
2575
2760
|
indentation?: number;
|
|
2576
2761
|
/** Offset level from 0-4. */
|
|
2577
2762
|
offset?: number | null;
|
|
2763
|
+
/** Node animation. */
|
|
2764
|
+
animation?: Animation;
|
|
2578
2765
|
}
|
|
2579
2766
|
interface ListItemNodeData {
|
|
2580
2767
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2581
2768
|
checked?: boolean | null;
|
|
2769
|
+
/** Node animation. */
|
|
2770
|
+
animation?: Animation;
|
|
2582
2771
|
}
|
|
2583
2772
|
interface Metadata {
|
|
2584
2773
|
/** Schema version. */
|
|
@@ -2813,6 +3002,10 @@ interface DraftPostTranslation {
|
|
|
2813
3002
|
/** Post URL. */
|
|
2814
3003
|
url?: string;
|
|
2815
3004
|
}
|
|
3005
|
+
interface InitialDraftPostsCopied {
|
|
3006
|
+
/** Number of draft posts copied. */
|
|
3007
|
+
count?: number;
|
|
3008
|
+
}
|
|
2816
3009
|
interface DraftCategoriesUpdated {
|
|
2817
3010
|
/**
|
|
2818
3011
|
* Draft post ID.
|
|
@@ -2851,200 +3044,6 @@ interface DraftTagsUpdated {
|
|
|
2851
3044
|
*/
|
|
2852
3045
|
previousTags?: string[];
|
|
2853
3046
|
}
|
|
2854
|
-
interface GetDraftPostTotalsRequest {
|
|
2855
|
-
/**
|
|
2856
|
-
* Group results by fields (defaults to grouping by status).
|
|
2857
|
-
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
2858
|
-
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
2859
|
-
* @maxSize 10
|
|
2860
|
-
*/
|
|
2861
|
-
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
2862
|
-
/**
|
|
2863
|
-
* Optional language filter by provided language code. Useful in multilingual context.
|
|
2864
|
-
* @format LANGUAGE_TAG
|
|
2865
|
-
*/
|
|
2866
|
-
language?: string | null;
|
|
2867
|
-
}
|
|
2868
|
-
declare enum TotalDraftPostsGroupingField {
|
|
2869
|
-
/** Groups results by status. */
|
|
2870
|
-
STATUS = "STATUS",
|
|
2871
|
-
/** Groups results by language. */
|
|
2872
|
-
LANGUAGE = "LANGUAGE"
|
|
2873
|
-
}
|
|
2874
|
-
/** @enumType */
|
|
2875
|
-
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
2876
|
-
interface GetDraftPostTotalsResponse {
|
|
2877
|
-
/** Draft post totals. */
|
|
2878
|
-
totalDraftPosts?: TotalDraftPosts[];
|
|
2879
|
-
}
|
|
2880
|
-
interface TotalDraftPosts {
|
|
2881
|
-
/** Draft post totals in that group. */
|
|
2882
|
-
total?: number;
|
|
2883
|
-
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
2884
|
-
status?: StatusWithLiterals;
|
|
2885
|
-
/**
|
|
2886
|
-
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
2887
|
-
* @format LANGUAGE_TAG
|
|
2888
|
-
*/
|
|
2889
|
-
language?: string | null;
|
|
2890
|
-
}
|
|
2891
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2892
|
-
createdEvent?: EntityCreatedEvent;
|
|
2893
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2894
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2895
|
-
actionEvent?: ActionEvent;
|
|
2896
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2897
|
-
_id?: string;
|
|
2898
|
-
/**
|
|
2899
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2900
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2901
|
-
*/
|
|
2902
|
-
entityFqdn?: string;
|
|
2903
|
-
/**
|
|
2904
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2905
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2906
|
-
*/
|
|
2907
|
-
slug?: string;
|
|
2908
|
-
/** ID of the entity associated with the event. */
|
|
2909
|
-
entityId?: string;
|
|
2910
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2911
|
-
eventTime?: Date | null;
|
|
2912
|
-
/**
|
|
2913
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2914
|
-
* (for example, GDPR).
|
|
2915
|
-
*/
|
|
2916
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2917
|
-
/** If present, indicates the action that triggered the event. */
|
|
2918
|
-
originatedFrom?: string | null;
|
|
2919
|
-
/**
|
|
2920
|
-
* 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.
|
|
2921
|
-
* 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.
|
|
2922
|
-
*/
|
|
2923
|
-
entityEventSequence?: string | null;
|
|
2924
|
-
}
|
|
2925
|
-
/** @oneof */
|
|
2926
|
-
interface DomainEventBodyOneOf {
|
|
2927
|
-
createdEvent?: EntityCreatedEvent;
|
|
2928
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2929
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2930
|
-
actionEvent?: ActionEvent;
|
|
2931
|
-
}
|
|
2932
|
-
interface EntityCreatedEvent {
|
|
2933
|
-
entity?: string;
|
|
2934
|
-
}
|
|
2935
|
-
interface RestoreInfo {
|
|
2936
|
-
deletedDate?: Date | null;
|
|
2937
|
-
}
|
|
2938
|
-
interface EntityUpdatedEvent {
|
|
2939
|
-
/**
|
|
2940
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2941
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2942
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2943
|
-
*/
|
|
2944
|
-
currentEntity?: string;
|
|
2945
|
-
}
|
|
2946
|
-
interface EntityDeletedEvent {
|
|
2947
|
-
/** Entity that was deleted. */
|
|
2948
|
-
deletedEntity?: string | null;
|
|
2949
|
-
}
|
|
2950
|
-
interface ActionEvent {
|
|
2951
|
-
body?: string;
|
|
2952
|
-
}
|
|
2953
|
-
interface MessageEnvelope {
|
|
2954
|
-
/**
|
|
2955
|
-
* App instance ID.
|
|
2956
|
-
* @format GUID
|
|
2957
|
-
*/
|
|
2958
|
-
instanceId?: string | null;
|
|
2959
|
-
/**
|
|
2960
|
-
* Event type.
|
|
2961
|
-
* @maxLength 150
|
|
2962
|
-
*/
|
|
2963
|
-
eventType?: string;
|
|
2964
|
-
/** The identification type and identity data. */
|
|
2965
|
-
identity?: IdentificationData;
|
|
2966
|
-
/** Stringify payload. */
|
|
2967
|
-
data?: string;
|
|
2968
|
-
/** Details related to the account */
|
|
2969
|
-
accountInfo?: AccountInfo;
|
|
2970
|
-
}
|
|
2971
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2972
|
-
/**
|
|
2973
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2974
|
-
* @format GUID
|
|
2975
|
-
*/
|
|
2976
|
-
anonymousVisitorId?: string;
|
|
2977
|
-
/**
|
|
2978
|
-
* ID of a site visitor that has logged in to the site.
|
|
2979
|
-
* @format GUID
|
|
2980
|
-
*/
|
|
2981
|
-
memberId?: string;
|
|
2982
|
-
/**
|
|
2983
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2984
|
-
* @format GUID
|
|
2985
|
-
*/
|
|
2986
|
-
wixUserId?: string;
|
|
2987
|
-
/**
|
|
2988
|
-
* ID of an app.
|
|
2989
|
-
* @format GUID
|
|
2990
|
-
*/
|
|
2991
|
-
appId?: string;
|
|
2992
|
-
/** @readonly */
|
|
2993
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2994
|
-
}
|
|
2995
|
-
/** @oneof */
|
|
2996
|
-
interface IdentificationDataIdOneOf {
|
|
2997
|
-
/**
|
|
2998
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2999
|
-
* @format GUID
|
|
3000
|
-
*/
|
|
3001
|
-
anonymousVisitorId?: string;
|
|
3002
|
-
/**
|
|
3003
|
-
* ID of a site visitor that has logged in to the site.
|
|
3004
|
-
* @format GUID
|
|
3005
|
-
*/
|
|
3006
|
-
memberId?: string;
|
|
3007
|
-
/**
|
|
3008
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3009
|
-
* @format GUID
|
|
3010
|
-
*/
|
|
3011
|
-
wixUserId?: string;
|
|
3012
|
-
/**
|
|
3013
|
-
* ID of an app.
|
|
3014
|
-
* @format GUID
|
|
3015
|
-
*/
|
|
3016
|
-
appId?: string;
|
|
3017
|
-
}
|
|
3018
|
-
declare enum WebhookIdentityType {
|
|
3019
|
-
UNKNOWN = "UNKNOWN",
|
|
3020
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3021
|
-
MEMBER = "MEMBER",
|
|
3022
|
-
WIX_USER = "WIX_USER",
|
|
3023
|
-
APP = "APP"
|
|
3024
|
-
}
|
|
3025
|
-
/** @enumType */
|
|
3026
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3027
|
-
interface AccountInfo {
|
|
3028
|
-
/**
|
|
3029
|
-
* ID of the Wix account associated with the event.
|
|
3030
|
-
* @format GUID
|
|
3031
|
-
*/
|
|
3032
|
-
accountId?: string | null;
|
|
3033
|
-
/**
|
|
3034
|
-
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3035
|
-
* @format GUID
|
|
3036
|
-
*/
|
|
3037
|
-
parentAccountId?: string | null;
|
|
3038
|
-
/**
|
|
3039
|
-
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3040
|
-
* @format GUID
|
|
3041
|
-
*/
|
|
3042
|
-
siteId?: string | null;
|
|
3043
|
-
}
|
|
3044
|
-
interface InitialDraftPostsCopied {
|
|
3045
|
-
/** Number of draft posts copied. */
|
|
3046
|
-
count?: number;
|
|
3047
|
-
}
|
|
3048
3047
|
interface CreateDraftPostRequest {
|
|
3049
3048
|
/** Draft post to create. */
|
|
3050
3049
|
draftPost: DraftPost;
|
|
@@ -3625,116 +3624,195 @@ interface DraftPostCount {
|
|
|
3625
3624
|
/** Number of posts. */
|
|
3626
3625
|
postCount?: number;
|
|
3627
3626
|
}
|
|
3628
|
-
interface
|
|
3627
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3628
|
+
createdEvent?: EntityCreatedEvent;
|
|
3629
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3630
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3631
|
+
actionEvent?: ActionEvent;
|
|
3632
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3633
|
+
_id?: string;
|
|
3629
3634
|
/**
|
|
3630
|
-
*
|
|
3631
|
-
*
|
|
3632
|
-
* @maxSize 100
|
|
3633
|
-
* @format GUID
|
|
3635
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3636
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3634
3637
|
*/
|
|
3635
|
-
|
|
3636
|
-
/** Should full draft post be returned. */
|
|
3637
|
-
returnFullEntity?: boolean;
|
|
3638
|
-
}
|
|
3639
|
-
interface BulkRevertToUnpublishedResponse {
|
|
3640
|
-
/** Bulk action results. */
|
|
3641
|
-
results?: BulkDraftPostResult[];
|
|
3642
|
-
/** Bulk action metadata. */
|
|
3643
|
-
bulkActionMetadata?: BulkActionMetadata;
|
|
3644
|
-
}
|
|
3645
|
-
interface BulkRejectDraftPostRequest {
|
|
3638
|
+
entityFqdn?: string;
|
|
3646
3639
|
/**
|
|
3647
|
-
*
|
|
3648
|
-
*
|
|
3649
|
-
* @maxSize 100
|
|
3650
|
-
* @format GUID
|
|
3640
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3641
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3651
3642
|
*/
|
|
3652
|
-
|
|
3653
|
-
/**
|
|
3654
|
-
|
|
3643
|
+
slug?: string;
|
|
3644
|
+
/** ID of the entity associated with the event. */
|
|
3645
|
+
entityId?: string;
|
|
3646
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3647
|
+
eventTime?: Date | null;
|
|
3648
|
+
/**
|
|
3649
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3650
|
+
* (for example, GDPR).
|
|
3651
|
+
*/
|
|
3652
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3653
|
+
/** If present, indicates the action that triggered the event. */
|
|
3654
|
+
originatedFrom?: string | null;
|
|
3655
|
+
/**
|
|
3656
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
3657
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3658
|
+
*/
|
|
3659
|
+
entityEventSequence?: string | null;
|
|
3655
3660
|
}
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
+
/** @oneof */
|
|
3662
|
+
interface DomainEventBodyOneOf {
|
|
3663
|
+
createdEvent?: EntityCreatedEvent;
|
|
3664
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3665
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3666
|
+
actionEvent?: ActionEvent;
|
|
3661
3667
|
}
|
|
3662
|
-
interface
|
|
3668
|
+
interface EntityCreatedEvent {
|
|
3669
|
+
entity?: string;
|
|
3670
|
+
}
|
|
3671
|
+
interface RestoreInfo {
|
|
3672
|
+
deletedDate?: Date | null;
|
|
3673
|
+
}
|
|
3674
|
+
interface EntityUpdatedEvent {
|
|
3663
3675
|
/**
|
|
3664
|
-
*
|
|
3676
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3677
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3678
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3679
|
+
*/
|
|
3680
|
+
currentEntity?: string;
|
|
3681
|
+
}
|
|
3682
|
+
interface EntityDeletedEvent {
|
|
3683
|
+
/** Entity that was deleted. */
|
|
3684
|
+
deletedEntity?: string | null;
|
|
3685
|
+
}
|
|
3686
|
+
interface ActionEvent {
|
|
3687
|
+
body?: string;
|
|
3688
|
+
}
|
|
3689
|
+
interface MessageEnvelope {
|
|
3690
|
+
/**
|
|
3691
|
+
* App instance ID.
|
|
3665
3692
|
* @format GUID
|
|
3666
3693
|
*/
|
|
3667
|
-
|
|
3694
|
+
instanceId?: string | null;
|
|
3668
3695
|
/**
|
|
3669
|
-
*
|
|
3670
|
-
*
|
|
3671
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3672
|
-
* @maxSize 10
|
|
3696
|
+
* Event type.
|
|
3697
|
+
* @maxLength 150
|
|
3673
3698
|
*/
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
/**
|
|
3678
|
-
|
|
3699
|
+
eventType?: string;
|
|
3700
|
+
/** The identification type and identity data. */
|
|
3701
|
+
identity?: IdentificationData;
|
|
3702
|
+
/** Stringify payload. */
|
|
3703
|
+
data?: string;
|
|
3704
|
+
/** Details related to the account */
|
|
3705
|
+
accountInfo?: AccountInfo;
|
|
3679
3706
|
}
|
|
3680
|
-
interface
|
|
3707
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3681
3708
|
/**
|
|
3682
|
-
*
|
|
3709
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3683
3710
|
* @format GUID
|
|
3684
3711
|
*/
|
|
3685
|
-
|
|
3712
|
+
anonymousVisitorId?: string;
|
|
3686
3713
|
/**
|
|
3687
|
-
*
|
|
3688
|
-
*
|
|
3689
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3690
|
-
* @maxSize 10
|
|
3714
|
+
* ID of a site visitor that has logged in to the site.
|
|
3715
|
+
* @format GUID
|
|
3691
3716
|
*/
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3717
|
+
memberId?: string;
|
|
3718
|
+
/**
|
|
3719
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3720
|
+
* @format GUID
|
|
3721
|
+
*/
|
|
3722
|
+
wixUserId?: string;
|
|
3723
|
+
/**
|
|
3724
|
+
* ID of an app.
|
|
3725
|
+
* @format GUID
|
|
3726
|
+
*/
|
|
3727
|
+
appId?: string;
|
|
3728
|
+
/** @readonly */
|
|
3729
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3697
3730
|
}
|
|
3698
|
-
|
|
3731
|
+
/** @oneof */
|
|
3732
|
+
interface IdentificationDataIdOneOf {
|
|
3699
3733
|
/**
|
|
3700
|
-
*
|
|
3734
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3701
3735
|
* @format GUID
|
|
3702
3736
|
*/
|
|
3703
|
-
|
|
3737
|
+
anonymousVisitorId?: string;
|
|
3704
3738
|
/**
|
|
3705
|
-
*
|
|
3706
|
-
* @
|
|
3739
|
+
* ID of a site visitor that has logged in to the site.
|
|
3740
|
+
* @format GUID
|
|
3707
3741
|
*/
|
|
3708
|
-
|
|
3742
|
+
memberId?: string;
|
|
3709
3743
|
/**
|
|
3710
|
-
*
|
|
3711
|
-
*
|
|
3712
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3713
|
-
* @maxSize 10
|
|
3744
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3745
|
+
* @format GUID
|
|
3714
3746
|
*/
|
|
3715
|
-
|
|
3747
|
+
wixUserId?: string;
|
|
3748
|
+
/**
|
|
3749
|
+
* ID of an app.
|
|
3750
|
+
* @format GUID
|
|
3751
|
+
*/
|
|
3752
|
+
appId?: string;
|
|
3716
3753
|
}
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3754
|
+
declare enum WebhookIdentityType {
|
|
3755
|
+
UNKNOWN = "UNKNOWN",
|
|
3756
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3757
|
+
MEMBER = "MEMBER",
|
|
3758
|
+
WIX_USER = "WIX_USER",
|
|
3759
|
+
APP = "APP"
|
|
3720
3760
|
}
|
|
3721
|
-
|
|
3761
|
+
/** @enumType */
|
|
3762
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3763
|
+
interface AccountInfo {
|
|
3722
3764
|
/**
|
|
3723
|
-
*
|
|
3724
|
-
* @
|
|
3765
|
+
* ID of the Wix account associated with the event.
|
|
3766
|
+
* @format GUID
|
|
3725
3767
|
*/
|
|
3726
|
-
|
|
3768
|
+
accountId?: string | null;
|
|
3727
3769
|
/**
|
|
3728
|
-
*
|
|
3729
|
-
*
|
|
3730
|
-
|
|
3770
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3771
|
+
* @format GUID
|
|
3772
|
+
*/
|
|
3773
|
+
parentAccountId?: string | null;
|
|
3774
|
+
/**
|
|
3775
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3776
|
+
* @format GUID
|
|
3777
|
+
*/
|
|
3778
|
+
siteId?: string | null;
|
|
3779
|
+
}
|
|
3780
|
+
interface GetDraftPostTotalsRequest {
|
|
3781
|
+
/**
|
|
3782
|
+
* Group results by fields (defaults to grouping by status).
|
|
3783
|
+
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
3784
|
+
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
3731
3785
|
* @maxSize 10
|
|
3732
3786
|
*/
|
|
3733
|
-
|
|
3787
|
+
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
3788
|
+
/**
|
|
3789
|
+
* Optional language filter by provided language code. Useful in multilingual context.
|
|
3790
|
+
* @format LANGUAGE_TAG
|
|
3791
|
+
*/
|
|
3792
|
+
language?: string | null;
|
|
3734
3793
|
}
|
|
3735
|
-
|
|
3736
|
-
/**
|
|
3737
|
-
|
|
3794
|
+
declare enum TotalDraftPostsGroupingField {
|
|
3795
|
+
/** Groups results by status. */
|
|
3796
|
+
STATUS = "STATUS",
|
|
3797
|
+
/** Groups results by language. */
|
|
3798
|
+
LANGUAGE = "LANGUAGE"
|
|
3799
|
+
}
|
|
3800
|
+
/** @enumType */
|
|
3801
|
+
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
3802
|
+
interface GetDraftPostTotalsResponse {
|
|
3803
|
+
/** Draft post totals. */
|
|
3804
|
+
totalDraftPosts?: TotalDraftPosts[];
|
|
3805
|
+
}
|
|
3806
|
+
interface TotalDraftPosts {
|
|
3807
|
+
/** Draft post totals in that group. */
|
|
3808
|
+
total?: number;
|
|
3809
|
+
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
3810
|
+
status?: StatusWithLiterals;
|
|
3811
|
+
/**
|
|
3812
|
+
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
3813
|
+
* @format LANGUAGE_TAG
|
|
3814
|
+
*/
|
|
3815
|
+
language?: string | null;
|
|
3738
3816
|
}
|
|
3739
3817
|
interface TranslateDraftRequest {
|
|
3740
3818
|
/**
|
|
@@ -3809,6 +3887,117 @@ interface UpdateDraftPostLanguageResponse {
|
|
|
3809
3887
|
/** Draft post */
|
|
3810
3888
|
draftPost?: DraftPost;
|
|
3811
3889
|
}
|
|
3890
|
+
interface BulkRevertToUnpublishedRequest {
|
|
3891
|
+
/**
|
|
3892
|
+
* Source post IDs.
|
|
3893
|
+
* @minSize 1
|
|
3894
|
+
* @maxSize 100
|
|
3895
|
+
* @format GUID
|
|
3896
|
+
*/
|
|
3897
|
+
postIds?: string[];
|
|
3898
|
+
/** Should full draft post be returned. */
|
|
3899
|
+
returnFullEntity?: boolean;
|
|
3900
|
+
}
|
|
3901
|
+
interface BulkRevertToUnpublishedResponse {
|
|
3902
|
+
/** Bulk action results. */
|
|
3903
|
+
results?: BulkDraftPostResult[];
|
|
3904
|
+
/** Bulk action metadata. */
|
|
3905
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3906
|
+
}
|
|
3907
|
+
interface BulkRejectDraftPostRequest {
|
|
3908
|
+
/**
|
|
3909
|
+
* Source post IDs.
|
|
3910
|
+
* @minSize 1
|
|
3911
|
+
* @maxSize 100
|
|
3912
|
+
* @format GUID
|
|
3913
|
+
*/
|
|
3914
|
+
postIds?: string[];
|
|
3915
|
+
/** Should full draft post be returned. */
|
|
3916
|
+
returnFullEntity?: boolean;
|
|
3917
|
+
}
|
|
3918
|
+
interface BulkRejectDraftPostResponse {
|
|
3919
|
+
/** Bulk action results. */
|
|
3920
|
+
results?: BulkDraftPostResult[];
|
|
3921
|
+
/** Bulk action metadata. */
|
|
3922
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3923
|
+
}
|
|
3924
|
+
interface RevertToUnpublishedRequest {
|
|
3925
|
+
/**
|
|
3926
|
+
* Source post ID.
|
|
3927
|
+
* @format GUID
|
|
3928
|
+
*/
|
|
3929
|
+
postId?: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3932
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3933
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3934
|
+
* @maxSize 10
|
|
3935
|
+
*/
|
|
3936
|
+
fieldsets?: FieldWithLiterals[];
|
|
3937
|
+
}
|
|
3938
|
+
interface RevertToUnpublishedResponse {
|
|
3939
|
+
/** Updated post draft. */
|
|
3940
|
+
draftPost?: DraftPost;
|
|
3941
|
+
}
|
|
3942
|
+
interface RejectDraftPostRequest {
|
|
3943
|
+
/**
|
|
3944
|
+
* Source post ID.
|
|
3945
|
+
* @format GUID
|
|
3946
|
+
*/
|
|
3947
|
+
postId?: string;
|
|
3948
|
+
/**
|
|
3949
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3950
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3951
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3952
|
+
* @maxSize 10
|
|
3953
|
+
*/
|
|
3954
|
+
fieldsets?: FieldWithLiterals[];
|
|
3955
|
+
}
|
|
3956
|
+
interface RejectDraftPostResponse {
|
|
3957
|
+
/** Draft post. */
|
|
3958
|
+
draftPost?: DraftPost;
|
|
3959
|
+
}
|
|
3960
|
+
interface ApproveDraftPostRequest {
|
|
3961
|
+
/**
|
|
3962
|
+
* Source post ID.
|
|
3963
|
+
* @format GUID
|
|
3964
|
+
*/
|
|
3965
|
+
postId?: string;
|
|
3966
|
+
/**
|
|
3967
|
+
* Scheduled publish date if should be not immediately published.
|
|
3968
|
+
* @maxLength 24
|
|
3969
|
+
*/
|
|
3970
|
+
scheduledPublishDate?: string | null;
|
|
3971
|
+
/**
|
|
3972
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3973
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3974
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3975
|
+
* @maxSize 10
|
|
3976
|
+
*/
|
|
3977
|
+
fieldsets?: FieldWithLiterals[];
|
|
3978
|
+
}
|
|
3979
|
+
interface ApproveDraftPostResponse {
|
|
3980
|
+
/** Updated post draft. */
|
|
3981
|
+
draftPost?: DraftPost;
|
|
3982
|
+
}
|
|
3983
|
+
interface MarkPostAsInModerationRequest {
|
|
3984
|
+
/**
|
|
3985
|
+
* Source post ID.
|
|
3986
|
+
* @maxLength 38
|
|
3987
|
+
*/
|
|
3988
|
+
postId?: string;
|
|
3989
|
+
/**
|
|
3990
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3991
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3992
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3993
|
+
* @maxSize 10
|
|
3994
|
+
*/
|
|
3995
|
+
fieldsets?: FieldWithLiterals[];
|
|
3996
|
+
}
|
|
3997
|
+
interface MarkPostAsInModerationResponse {
|
|
3998
|
+
/** Updated post draft. */
|
|
3999
|
+
draftPost?: DraftPost;
|
|
4000
|
+
}
|
|
3812
4001
|
interface BaseEventMetadata {
|
|
3813
4002
|
/**
|
|
3814
4003
|
* App instance ID.
|
|
@@ -4609,4 +4798,4 @@ declare const utils: {
|
|
|
4609
4798
|
*/
|
|
4610
4799
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
4611
4800
|
|
|
4612
|
-
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
4801
|
+
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|