@wix/auto_sdk_events_forms 1.0.101 → 1.0.103
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 +47 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +192 -3
- package/build/cjs/index.typings.js +47 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +192 -3
- package/build/cjs/meta.js +47 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +44 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +192 -3
- package/build/es/index.typings.mjs +44 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +192 -3
- package/build/es/meta.mjs +44 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +47 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +192 -3
- package/build/internal/cjs/index.typings.js +47 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +192 -3
- package/build/internal/cjs/meta.js +47 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +44 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +192 -3
- package/build/internal/es/index.typings.mjs +44 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +192 -3
- package/build/internal/es/meta.mjs +44 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1740,6 +1740,8 @@ interface ButtonData {
|
|
|
1740
1740
|
text?: string | null;
|
|
1741
1741
|
/** Button link details. */
|
|
1742
1742
|
link?: Link;
|
|
1743
|
+
/** Node animation. */
|
|
1744
|
+
animation?: Animation;
|
|
1743
1745
|
}
|
|
1744
1746
|
/** Background type */
|
|
1745
1747
|
declare enum BackgroundType {
|
|
@@ -2016,9 +2018,144 @@ interface Rel {
|
|
|
2016
2018
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
2017
2019
|
noreferrer?: boolean | null;
|
|
2018
2020
|
}
|
|
2021
|
+
interface Animation {
|
|
2022
|
+
/** Animation kind. */
|
|
2023
|
+
type?: AnimationTypeWithLiterals;
|
|
2024
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
2025
|
+
entrance?: EntranceAnimation;
|
|
2026
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
2027
|
+
loop?: LoopAnimation;
|
|
2028
|
+
}
|
|
2029
|
+
declare enum AnimationType {
|
|
2030
|
+
/** Animations that play while the node is in view. */
|
|
2031
|
+
VIEW = "VIEW"
|
|
2032
|
+
}
|
|
2033
|
+
/** @enumType */
|
|
2034
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
2035
|
+
interface EntranceAnimation {
|
|
2036
|
+
/** The entrance effect to play. */
|
|
2037
|
+
effect?: EntranceEffect;
|
|
2038
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
2039
|
+
duration?: number | null;
|
|
2040
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
2041
|
+
delay?: number | null;
|
|
2042
|
+
}
|
|
2043
|
+
interface EntranceEffect {
|
|
2044
|
+
/** The entrance effect type. */
|
|
2045
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
2046
|
+
/**
|
|
2047
|
+
* 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).
|
|
2048
|
+
* @maxLength 20
|
|
2049
|
+
*/
|
|
2050
|
+
direction?: string | null;
|
|
2051
|
+
/**
|
|
2052
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
2053
|
+
* @maxLength 12
|
|
2054
|
+
*/
|
|
2055
|
+
shape?: string | null;
|
|
2056
|
+
/**
|
|
2057
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
2058
|
+
* @maxLength 100
|
|
2059
|
+
*/
|
|
2060
|
+
easing?: string | null;
|
|
2061
|
+
}
|
|
2062
|
+
declare enum EntranceEffectType {
|
|
2063
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
2064
|
+
FADE = "FADE",
|
|
2065
|
+
/** Enters along a 3D arc path. */
|
|
2066
|
+
ARC = "ARC",
|
|
2067
|
+
/** Transitions from blurred to sharp. */
|
|
2068
|
+
BLUR = "BLUR",
|
|
2069
|
+
/** Bounces into place with an elastic curve. */
|
|
2070
|
+
BOUNCE = "BOUNCE",
|
|
2071
|
+
/** Shrinks down from a larger size. */
|
|
2072
|
+
DROP = "DROP",
|
|
2073
|
+
/** Expands from a point, scaling to full size. */
|
|
2074
|
+
EXPAND = "EXPAND",
|
|
2075
|
+
/** Flips into view with a 3D rotation. */
|
|
2076
|
+
FLIP = "FLIP",
|
|
2077
|
+
/** Drifts gently into place. */
|
|
2078
|
+
FLOAT = "FLOAT",
|
|
2079
|
+
/** Unfolds from an edge as if hinged. */
|
|
2080
|
+
FOLD = "FOLD",
|
|
2081
|
+
/** Glides in smoothly from off-screen. */
|
|
2082
|
+
GLIDE = "GLIDE",
|
|
2083
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
2084
|
+
REVEAL = "REVEAL",
|
|
2085
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
2086
|
+
SHAPE = "SHAPE",
|
|
2087
|
+
/** Revealed through shutter-like strips. */
|
|
2088
|
+
SHUTTERS = "SHUTTERS",
|
|
2089
|
+
/** Slides in from one side. */
|
|
2090
|
+
SLIDE = "SLIDE",
|
|
2091
|
+
/** Spins into view while scaling up. */
|
|
2092
|
+
SPIN = "SPIN",
|
|
2093
|
+
/** Tilts in from the side with 3D rotation. */
|
|
2094
|
+
TILT = "TILT",
|
|
2095
|
+
/** Rotates into view around a corner pivot. */
|
|
2096
|
+
TURN = "TURN",
|
|
2097
|
+
/** Expands from its horizontal or vertical center. */
|
|
2098
|
+
WINK = "WINK"
|
|
2099
|
+
}
|
|
2100
|
+
/** @enumType */
|
|
2101
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
2102
|
+
interface LoopAnimation {
|
|
2103
|
+
/** The looping effect to repeat. */
|
|
2104
|
+
effect?: LoopEffect;
|
|
2105
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
2106
|
+
duration?: number | null;
|
|
2107
|
+
/** Pause between iterations in milliseconds. */
|
|
2108
|
+
iterationDelay?: number | null;
|
|
2109
|
+
}
|
|
2110
|
+
interface LoopEffect {
|
|
2111
|
+
/** The looping effect type. */
|
|
2112
|
+
type?: LoopEffectTypeWithLiterals;
|
|
2113
|
+
/**
|
|
2114
|
+
* 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).
|
|
2115
|
+
* @maxLength 20
|
|
2116
|
+
*/
|
|
2117
|
+
direction?: string | null;
|
|
2118
|
+
/**
|
|
2119
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
2120
|
+
* @maxLength 100
|
|
2121
|
+
*/
|
|
2122
|
+
easing?: string | null;
|
|
2123
|
+
}
|
|
2124
|
+
declare enum LoopEffectType {
|
|
2125
|
+
/** Bounces up and down in place. */
|
|
2126
|
+
BOUNCE = "BOUNCE",
|
|
2127
|
+
/** Scales gently in and out along an axis. */
|
|
2128
|
+
BREATHE = "BREATHE",
|
|
2129
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
2130
|
+
CROSS = "CROSS",
|
|
2131
|
+
/** Fades out to fully transparent and back in. */
|
|
2132
|
+
FLASH = "FLASH",
|
|
2133
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
2134
|
+
FLIP = "FLIP",
|
|
2135
|
+
/** Folds back and forth around a hinged edge. */
|
|
2136
|
+
FOLD = "FOLD",
|
|
2137
|
+
/** Wobbles with a jelly-like skew. */
|
|
2138
|
+
JELLO = "JELLO",
|
|
2139
|
+
/** Nudges repeatedly toward a direction. */
|
|
2140
|
+
POKE = "POKE",
|
|
2141
|
+
/** Scales up and back down rhythmically. */
|
|
2142
|
+
PULSE = "PULSE",
|
|
2143
|
+
/** Stretches and squashes like a rubber band. */
|
|
2144
|
+
RUBBER = "RUBBER",
|
|
2145
|
+
/** Rotates continuously around its center. */
|
|
2146
|
+
SPIN = "SPIN",
|
|
2147
|
+
/** Swings back and forth around an edge pivot. */
|
|
2148
|
+
SWING = "SWING",
|
|
2149
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
2150
|
+
WIGGLE = "WIGGLE"
|
|
2151
|
+
}
|
|
2152
|
+
/** @enumType */
|
|
2153
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
2019
2154
|
interface CodeBlockData {
|
|
2020
2155
|
/** Styling for the code block's text. */
|
|
2021
2156
|
textStyle?: TextStyle;
|
|
2157
|
+
/** Node animation. */
|
|
2158
|
+
animation?: Animation;
|
|
2022
2159
|
}
|
|
2023
2160
|
interface TextStyle {
|
|
2024
2161
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -2051,6 +2188,8 @@ interface DividerData {
|
|
|
2051
2188
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
2052
2189
|
/** Visual styling for the divider lines. */
|
|
2053
2190
|
styles?: DividerDataStyles;
|
|
2191
|
+
/** Node animation. */
|
|
2192
|
+
animation?: Animation;
|
|
2054
2193
|
}
|
|
2055
2194
|
declare enum LineCap {
|
|
2056
2195
|
/** Square line endings. */
|
|
@@ -2105,9 +2244,9 @@ interface DividerDataStyles {
|
|
|
2105
2244
|
* @maxSize 10
|
|
2106
2245
|
*/
|
|
2107
2246
|
lineThickness?: number[];
|
|
2108
|
-
/**
|
|
2247
|
+
/** 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. */
|
|
2109
2248
|
dashLength?: number | null;
|
|
2110
|
-
/**
|
|
2249
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
2111
2250
|
dashGap?: number | null;
|
|
2112
2251
|
/** Gap between divider lines in pixels. */
|
|
2113
2252
|
lineGap?: number | null;
|
|
@@ -2134,6 +2273,8 @@ interface FileData {
|
|
|
2134
2273
|
path?: string | null;
|
|
2135
2274
|
/** File size in KB. */
|
|
2136
2275
|
sizeInKb?: string | null;
|
|
2276
|
+
/** Node animation. */
|
|
2277
|
+
animation?: Animation;
|
|
2137
2278
|
}
|
|
2138
2279
|
declare enum ViewMode {
|
|
2139
2280
|
/** No PDF view */
|
|
@@ -2194,6 +2335,8 @@ interface GalleryData {
|
|
|
2194
2335
|
disableExpand?: boolean | null;
|
|
2195
2336
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
2196
2337
|
disableDownload?: boolean | null;
|
|
2338
|
+
/** Node animation. */
|
|
2339
|
+
animation?: Animation;
|
|
2197
2340
|
}
|
|
2198
2341
|
interface Media {
|
|
2199
2342
|
/** The source for the media's data. */
|
|
@@ -2337,6 +2480,8 @@ interface GIFData {
|
|
|
2337
2480
|
width?: number;
|
|
2338
2481
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
2339
2482
|
gifType?: GIFTypeWithLiterals;
|
|
2483
|
+
/** Node animation. */
|
|
2484
|
+
animation?: Animation;
|
|
2340
2485
|
}
|
|
2341
2486
|
interface GIF {
|
|
2342
2487
|
/**
|
|
@@ -2370,6 +2515,8 @@ interface HeadingData {
|
|
|
2370
2515
|
indentation?: number | null;
|
|
2371
2516
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2372
2517
|
renderedLevel?: number | null;
|
|
2518
|
+
/** Node animation. */
|
|
2519
|
+
animation?: Animation;
|
|
2373
2520
|
}
|
|
2374
2521
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2375
2522
|
/** The URL for the HTML code for the node. */
|
|
@@ -2389,6 +2536,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
2389
2536
|
source?: SourceWithLiterals;
|
|
2390
2537
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
2391
2538
|
autoHeight?: boolean | null;
|
|
2539
|
+
/** Node animation. */
|
|
2540
|
+
animation?: Animation;
|
|
2392
2541
|
}
|
|
2393
2542
|
/** @oneof */
|
|
2394
2543
|
interface HTMLDataDataOneOf {
|
|
@@ -2438,6 +2587,8 @@ interface ImageData {
|
|
|
2438
2587
|
crop?: ImageDataCrop;
|
|
2439
2588
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
2440
2589
|
cropShape?: string | null;
|
|
2590
|
+
/** Node animation. */
|
|
2591
|
+
animation?: Animation;
|
|
2441
2592
|
}
|
|
2442
2593
|
interface StylesBorder {
|
|
2443
2594
|
/** Border width in pixels. */
|
|
@@ -2479,6 +2630,8 @@ interface LinkPreviewData {
|
|
|
2479
2630
|
html?: string | null;
|
|
2480
2631
|
/** Styling for the link preview. */
|
|
2481
2632
|
styles?: LinkPreviewDataStyles;
|
|
2633
|
+
/** Node animation. */
|
|
2634
|
+
animation?: Animation;
|
|
2482
2635
|
}
|
|
2483
2636
|
declare enum StylesPosition {
|
|
2484
2637
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -2574,6 +2727,8 @@ interface ParagraphData {
|
|
|
2574
2727
|
indentation?: number | null;
|
|
2575
2728
|
/** Paragraph level */
|
|
2576
2729
|
level?: number | null;
|
|
2730
|
+
/** Node animation. */
|
|
2731
|
+
animation?: Animation;
|
|
2577
2732
|
}
|
|
2578
2733
|
interface PollData {
|
|
2579
2734
|
/** Styling for the poll's container. */
|
|
@@ -2584,6 +2739,8 @@ interface PollData {
|
|
|
2584
2739
|
layout?: PollDataLayout;
|
|
2585
2740
|
/** Styling for the poll and voting options. */
|
|
2586
2741
|
design?: Design;
|
|
2742
|
+
/** Node animation. */
|
|
2743
|
+
animation?: Animation;
|
|
2587
2744
|
}
|
|
2588
2745
|
declare enum ViewRole {
|
|
2589
2746
|
/** Only Poll creator can view the results */
|
|
@@ -2850,6 +3007,8 @@ interface MentionData {
|
|
|
2850
3007
|
slug?: string;
|
|
2851
3008
|
/** Mentioned user's ID. */
|
|
2852
3009
|
id?: string | null;
|
|
3010
|
+
/** 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. */
|
|
3011
|
+
type?: string | null;
|
|
2853
3012
|
}
|
|
2854
3013
|
interface FontSizeData {
|
|
2855
3014
|
/** The units used for the font size. */
|
|
@@ -2942,6 +3101,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2942
3101
|
containerData?: PluginContainerData;
|
|
2943
3102
|
/** Pricing data for embedded Wix App content. */
|
|
2944
3103
|
pricingData?: PricingData;
|
|
3104
|
+
/** Node animation. */
|
|
3105
|
+
animation?: Animation;
|
|
2945
3106
|
}
|
|
2946
3107
|
/** @oneof */
|
|
2947
3108
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -3183,6 +3344,8 @@ interface VideoData {
|
|
|
3183
3344
|
title?: string | null;
|
|
3184
3345
|
/** Video options. */
|
|
3185
3346
|
options?: PlaybackOptions;
|
|
3347
|
+
/** Node animation. */
|
|
3348
|
+
animation?: Animation;
|
|
3186
3349
|
}
|
|
3187
3350
|
interface PlaybackOptions {
|
|
3188
3351
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -3199,6 +3362,8 @@ interface EmbedData {
|
|
|
3199
3362
|
oembed?: Oembed;
|
|
3200
3363
|
/** Origin asset source. */
|
|
3201
3364
|
src?: string | null;
|
|
3365
|
+
/** Node animation. */
|
|
3366
|
+
animation?: Animation;
|
|
3202
3367
|
}
|
|
3203
3368
|
interface Oembed {
|
|
3204
3369
|
/** The resource type. */
|
|
@@ -3243,6 +3408,8 @@ interface CollapsibleListData {
|
|
|
3243
3408
|
direction?: DirectionWithLiterals;
|
|
3244
3409
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
3245
3410
|
isQapageData?: boolean | null;
|
|
3411
|
+
/** Node animation. */
|
|
3412
|
+
animation?: Animation;
|
|
3246
3413
|
}
|
|
3247
3414
|
declare enum InitialExpandedItems {
|
|
3248
3415
|
/** First item will be expended initally */
|
|
@@ -3285,6 +3452,8 @@ interface TableData {
|
|
|
3285
3452
|
cellPadding?: number[];
|
|
3286
3453
|
/** Table's alternative text. */
|
|
3287
3454
|
altText?: string | null;
|
|
3455
|
+
/** Node animation. */
|
|
3456
|
+
animation?: Animation;
|
|
3288
3457
|
}
|
|
3289
3458
|
interface Dimensions {
|
|
3290
3459
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3393,6 +3562,8 @@ interface AudioData {
|
|
|
3393
3562
|
authorName?: string | null;
|
|
3394
3563
|
/** An HTML version of the audio node. */
|
|
3395
3564
|
html?: string | null;
|
|
3565
|
+
/** Node animation. */
|
|
3566
|
+
animation?: Animation;
|
|
3396
3567
|
}
|
|
3397
3568
|
interface OrderedListData {
|
|
3398
3569
|
/** Indentation level from 0-4. */
|
|
@@ -3401,16 +3572,22 @@ interface OrderedListData {
|
|
|
3401
3572
|
offset?: number | null;
|
|
3402
3573
|
/** List start number. */
|
|
3403
3574
|
start?: number | null;
|
|
3575
|
+
/** Node animation. */
|
|
3576
|
+
animation?: Animation;
|
|
3404
3577
|
}
|
|
3405
3578
|
interface BulletedListData {
|
|
3406
3579
|
/** Indentation level from 0-4. */
|
|
3407
3580
|
indentation?: number;
|
|
3408
3581
|
/** Offset level from 0-4. */
|
|
3409
3582
|
offset?: number | null;
|
|
3583
|
+
/** Node animation. */
|
|
3584
|
+
animation?: Animation;
|
|
3410
3585
|
}
|
|
3411
3586
|
interface BlockquoteData {
|
|
3412
3587
|
/** Indentation level from 1-4. */
|
|
3413
3588
|
indentation?: number;
|
|
3589
|
+
/** Node animation. */
|
|
3590
|
+
animation?: Animation;
|
|
3414
3591
|
}
|
|
3415
3592
|
interface CaptionData {
|
|
3416
3593
|
textStyle?: TextStyle;
|
|
@@ -3468,6 +3645,8 @@ interface LayoutData {
|
|
|
3468
3645
|
background?: LayoutDataBackground;
|
|
3469
3646
|
/** Backdrop styling (color or gradient). */
|
|
3470
3647
|
backdrop?: Backdrop;
|
|
3648
|
+
/** Node animation. */
|
|
3649
|
+
animation?: Animation;
|
|
3471
3650
|
}
|
|
3472
3651
|
declare enum ImageScalingScaling {
|
|
3473
3652
|
/** Auto image scaling */
|
|
@@ -3619,6 +3798,8 @@ interface ShapeData {
|
|
|
3619
3798
|
shape?: Media;
|
|
3620
3799
|
/** Styling for the shape. */
|
|
3621
3800
|
styles?: ShapeDataStyles;
|
|
3801
|
+
/** Node animation. */
|
|
3802
|
+
animation?: Animation;
|
|
3622
3803
|
}
|
|
3623
3804
|
interface ShapeDataStyles {
|
|
3624
3805
|
/**
|
|
@@ -3721,6 +3902,8 @@ interface TocData {
|
|
|
3721
3902
|
color?: string | null;
|
|
3722
3903
|
/** Indentation style. Default: NESTED. */
|
|
3723
3904
|
indentation?: IndentationWithLiterals;
|
|
3905
|
+
/** Node animation. */
|
|
3906
|
+
animation?: Animation;
|
|
3724
3907
|
}
|
|
3725
3908
|
/** List style. */
|
|
3726
3909
|
declare enum ListStyle {
|
|
@@ -3767,6 +3950,8 @@ interface SmartBlockData {
|
|
|
3767
3950
|
borderWidth?: number | null;
|
|
3768
3951
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3769
3952
|
borderRadius?: number | null;
|
|
3953
|
+
/** Node animation. */
|
|
3954
|
+
animation?: Animation;
|
|
3770
3955
|
}
|
|
3771
3956
|
/** Layout type of the smart block */
|
|
3772
3957
|
declare enum SmartBlockDataType {
|
|
@@ -3870,10 +4055,14 @@ interface CheckboxListData {
|
|
|
3870
4055
|
indentation?: number;
|
|
3871
4056
|
/** Offset level from 0-4. */
|
|
3872
4057
|
offset?: number | null;
|
|
4058
|
+
/** Node animation. */
|
|
4059
|
+
animation?: Animation;
|
|
3873
4060
|
}
|
|
3874
4061
|
interface ListItemNodeData {
|
|
3875
4062
|
/** Checkbox list item state. Defaults to `false`. */
|
|
3876
4063
|
checked?: boolean | null;
|
|
4064
|
+
/** Node animation. */
|
|
4065
|
+
animation?: Animation;
|
|
3877
4066
|
}
|
|
3878
4067
|
interface Metadata {
|
|
3879
4068
|
/** Schema version. */
|
|
@@ -4418,4 +4607,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4418
4607
|
*/
|
|
4419
4608
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4420
4609
|
|
|
4421
|
-
export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, 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, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, 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 ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, 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 Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
|
|
4610
|
+
export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, 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, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, 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 ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, 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 Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
|
|
@@ -21,6 +21,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
var index_typings_exports = {};
|
|
22
22
|
__export(index_typings_exports, {
|
|
23
23
|
Alignment: () => Alignment,
|
|
24
|
+
AnimationType: () => AnimationType,
|
|
24
25
|
AppType: () => AppType,
|
|
25
26
|
AspectRatio: () => AspectRatio,
|
|
26
27
|
BackdropType: () => BackdropType,
|
|
@@ -38,6 +39,7 @@ __export(index_typings_exports, {
|
|
|
38
39
|
DesignTarget: () => DesignTarget,
|
|
39
40
|
Direction: () => Direction,
|
|
40
41
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
42
|
+
EntranceEffectType: () => EntranceEffectType,
|
|
41
43
|
EventStatus: () => EventStatus,
|
|
42
44
|
EventType: () => EventType,
|
|
43
45
|
FontType: () => FontType,
|
|
@@ -56,6 +58,7 @@ __export(index_typings_exports, {
|
|
|
56
58
|
LineStyle: () => LineStyle,
|
|
57
59
|
ListStyle: () => ListStyle,
|
|
58
60
|
LocationType: () => LocationType,
|
|
61
|
+
LoopEffectType: () => LoopEffectType,
|
|
59
62
|
MapType: () => MapType,
|
|
60
63
|
NodeType: () => NodeType,
|
|
61
64
|
NullValue: () => NullValue,
|
|
@@ -913,6 +916,47 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
913
916
|
Target2["TOP"] = "TOP";
|
|
914
917
|
return Target2;
|
|
915
918
|
})(Target || {});
|
|
919
|
+
var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
|
|
920
|
+
AnimationType2["VIEW"] = "VIEW";
|
|
921
|
+
return AnimationType2;
|
|
922
|
+
})(AnimationType || {});
|
|
923
|
+
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
924
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
925
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
926
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
927
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
928
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
929
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
930
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
931
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
932
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
933
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
934
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
935
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
936
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
937
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
938
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
939
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
940
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
941
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
942
|
+
return EntranceEffectType2;
|
|
943
|
+
})(EntranceEffectType || {});
|
|
944
|
+
var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
945
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
946
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
947
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
948
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
949
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
950
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
951
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
952
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
953
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
954
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
955
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
956
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
957
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
958
|
+
return LoopEffectType2;
|
|
959
|
+
})(LoopEffectType || {});
|
|
916
960
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
917
961
|
TextAlignment2["AUTO"] = "AUTO";
|
|
918
962
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1489,6 +1533,7 @@ async function discardDraft2(eventId) {
|
|
|
1489
1533
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1490
1534
|
0 && (module.exports = {
|
|
1491
1535
|
Alignment,
|
|
1536
|
+
AnimationType,
|
|
1492
1537
|
AppType,
|
|
1493
1538
|
AspectRatio,
|
|
1494
1539
|
BackdropType,
|
|
@@ -1506,6 +1551,7 @@ async function discardDraft2(eventId) {
|
|
|
1506
1551
|
DesignTarget,
|
|
1507
1552
|
Direction,
|
|
1508
1553
|
DividerDataAlignment,
|
|
1554
|
+
EntranceEffectType,
|
|
1509
1555
|
EventStatus,
|
|
1510
1556
|
EventType,
|
|
1511
1557
|
FontType,
|
|
@@ -1524,6 +1570,7 @@ async function discardDraft2(eventId) {
|
|
|
1524
1570
|
LineStyle,
|
|
1525
1571
|
ListStyle,
|
|
1526
1572
|
LocationType,
|
|
1573
|
+
LoopEffectType,
|
|
1527
1574
|
MapType,
|
|
1528
1575
|
NodeType,
|
|
1529
1576
|
NullValue,
|