@wix/auto_sdk_events_forms 1.0.101 → 1.0.102
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 +29 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +136 -3
- package/build/cjs/index.typings.js +29 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +136 -3
- package/build/cjs/meta.js +29 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +27 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +136 -3
- package/build/es/index.typings.mjs +27 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +136 -3
- package/build/es/meta.mjs +27 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +29 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +136 -3
- package/build/internal/cjs/index.typings.js +29 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +136 -3
- package/build/internal/cjs/meta.js +29 -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 +27 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +136 -3
- package/build/internal/es/index.typings.mjs +27 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +136 -3
- package/build/internal/es/meta.mjs +27 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1746,6 +1746,8 @@ interface ButtonData {
|
|
|
1746
1746
|
text?: string | null;
|
|
1747
1747
|
/** Button link details. */
|
|
1748
1748
|
link?: Link;
|
|
1749
|
+
/** Node animation. */
|
|
1750
|
+
animation?: Animation;
|
|
1749
1751
|
}
|
|
1750
1752
|
/** Background type */
|
|
1751
1753
|
declare enum BackgroundType {
|
|
@@ -2022,9 +2024,90 @@ interface Rel {
|
|
|
2022
2024
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
2023
2025
|
noreferrer?: boolean | null;
|
|
2024
2026
|
}
|
|
2027
|
+
interface Animation {
|
|
2028
|
+
/** Animation kind. */
|
|
2029
|
+
type?: AnimationTypeWithLiterals;
|
|
2030
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
2031
|
+
entrance?: EntranceAnimation;
|
|
2032
|
+
}
|
|
2033
|
+
declare enum AnimationType {
|
|
2034
|
+
/** Animations that play while the node is in view. */
|
|
2035
|
+
VIEW = "VIEW"
|
|
2036
|
+
}
|
|
2037
|
+
/** @enumType */
|
|
2038
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
2039
|
+
interface EntranceAnimation {
|
|
2040
|
+
/** The entrance effect to play. */
|
|
2041
|
+
effect?: EntranceEffect;
|
|
2042
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
2043
|
+
duration?: number | null;
|
|
2044
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
2045
|
+
delay?: number | null;
|
|
2046
|
+
}
|
|
2047
|
+
interface EntranceEffect {
|
|
2048
|
+
/** The entrance effect type. */
|
|
2049
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
2050
|
+
/**
|
|
2051
|
+
* 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).
|
|
2052
|
+
* @maxLength 20
|
|
2053
|
+
*/
|
|
2054
|
+
direction?: string | null;
|
|
2055
|
+
/**
|
|
2056
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
2057
|
+
* @maxLength 12
|
|
2058
|
+
*/
|
|
2059
|
+
shape?: string | null;
|
|
2060
|
+
/**
|
|
2061
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
2062
|
+
* @maxLength 100
|
|
2063
|
+
*/
|
|
2064
|
+
easing?: string | null;
|
|
2065
|
+
}
|
|
2066
|
+
declare enum EntranceEffectType {
|
|
2067
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
2068
|
+
FADE = "FADE",
|
|
2069
|
+
/** Enters along a 3D arc path. */
|
|
2070
|
+
ARC = "ARC",
|
|
2071
|
+
/** Transitions from blurred to sharp. */
|
|
2072
|
+
BLUR = "BLUR",
|
|
2073
|
+
/** Bounces into place with an elastic curve. */
|
|
2074
|
+
BOUNCE = "BOUNCE",
|
|
2075
|
+
/** Shrinks down from a larger size. */
|
|
2076
|
+
DROP = "DROP",
|
|
2077
|
+
/** Expands from a point, scaling to full size. */
|
|
2078
|
+
EXPAND = "EXPAND",
|
|
2079
|
+
/** Flips into view with a 3D rotation. */
|
|
2080
|
+
FLIP = "FLIP",
|
|
2081
|
+
/** Drifts gently into place. */
|
|
2082
|
+
FLOAT = "FLOAT",
|
|
2083
|
+
/** Unfolds from an edge as if hinged. */
|
|
2084
|
+
FOLD = "FOLD",
|
|
2085
|
+
/** Glides in smoothly from off-screen. */
|
|
2086
|
+
GLIDE = "GLIDE",
|
|
2087
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
2088
|
+
REVEAL = "REVEAL",
|
|
2089
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
2090
|
+
SHAPE = "SHAPE",
|
|
2091
|
+
/** Revealed through shutter-like strips. */
|
|
2092
|
+
SHUTTERS = "SHUTTERS",
|
|
2093
|
+
/** Slides in from one side. */
|
|
2094
|
+
SLIDE = "SLIDE",
|
|
2095
|
+
/** Spins into view while scaling up. */
|
|
2096
|
+
SPIN = "SPIN",
|
|
2097
|
+
/** Tilts in from the side with 3D rotation. */
|
|
2098
|
+
TILT = "TILT",
|
|
2099
|
+
/** Rotates into view around a corner pivot. */
|
|
2100
|
+
TURN = "TURN",
|
|
2101
|
+
/** Expands from its horizontal or vertical center. */
|
|
2102
|
+
WINK = "WINK"
|
|
2103
|
+
}
|
|
2104
|
+
/** @enumType */
|
|
2105
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
2025
2106
|
interface CodeBlockData {
|
|
2026
2107
|
/** Styling for the code block's text. */
|
|
2027
2108
|
textStyle?: TextStyle;
|
|
2109
|
+
/** Node animation. */
|
|
2110
|
+
animation?: Animation;
|
|
2028
2111
|
}
|
|
2029
2112
|
interface TextStyle {
|
|
2030
2113
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -2057,6 +2140,8 @@ interface DividerData {
|
|
|
2057
2140
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
2058
2141
|
/** Visual styling for the divider lines. */
|
|
2059
2142
|
styles?: DividerDataStyles;
|
|
2143
|
+
/** Node animation. */
|
|
2144
|
+
animation?: Animation;
|
|
2060
2145
|
}
|
|
2061
2146
|
declare enum LineCap {
|
|
2062
2147
|
/** Square line endings. */
|
|
@@ -2111,9 +2196,9 @@ interface DividerDataStyles {
|
|
|
2111
2196
|
* @maxSize 10
|
|
2112
2197
|
*/
|
|
2113
2198
|
lineThickness?: number[];
|
|
2114
|
-
/**
|
|
2199
|
+
/** 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. */
|
|
2115
2200
|
dashLength?: number | null;
|
|
2116
|
-
/**
|
|
2201
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
2117
2202
|
dashGap?: number | null;
|
|
2118
2203
|
/** Gap between divider lines in pixels. */
|
|
2119
2204
|
lineGap?: number | null;
|
|
@@ -2140,6 +2225,8 @@ interface FileData {
|
|
|
2140
2225
|
path?: string | null;
|
|
2141
2226
|
/** File size in KB. */
|
|
2142
2227
|
sizeInKb?: string | null;
|
|
2228
|
+
/** Node animation. */
|
|
2229
|
+
animation?: Animation;
|
|
2143
2230
|
}
|
|
2144
2231
|
declare enum ViewMode {
|
|
2145
2232
|
/** No PDF view */
|
|
@@ -2200,6 +2287,8 @@ interface GalleryData {
|
|
|
2200
2287
|
disableExpand?: boolean | null;
|
|
2201
2288
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
2202
2289
|
disableDownload?: boolean | null;
|
|
2290
|
+
/** Node animation. */
|
|
2291
|
+
animation?: Animation;
|
|
2203
2292
|
}
|
|
2204
2293
|
interface Media {
|
|
2205
2294
|
/** The source for the media's data. */
|
|
@@ -2343,6 +2432,8 @@ interface GIFData {
|
|
|
2343
2432
|
width?: number;
|
|
2344
2433
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
2345
2434
|
gifType?: GIFTypeWithLiterals;
|
|
2435
|
+
/** Node animation. */
|
|
2436
|
+
animation?: Animation;
|
|
2346
2437
|
}
|
|
2347
2438
|
interface GIF {
|
|
2348
2439
|
/**
|
|
@@ -2376,6 +2467,8 @@ interface HeadingData {
|
|
|
2376
2467
|
indentation?: number | null;
|
|
2377
2468
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2378
2469
|
renderedLevel?: number | null;
|
|
2470
|
+
/** Node animation. */
|
|
2471
|
+
animation?: Animation;
|
|
2379
2472
|
}
|
|
2380
2473
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2381
2474
|
/** The URL for the HTML code for the node. */
|
|
@@ -2395,6 +2488,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
2395
2488
|
source?: SourceWithLiterals;
|
|
2396
2489
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
2397
2490
|
autoHeight?: boolean | null;
|
|
2491
|
+
/** Node animation. */
|
|
2492
|
+
animation?: Animation;
|
|
2398
2493
|
}
|
|
2399
2494
|
/** @oneof */
|
|
2400
2495
|
interface HTMLDataDataOneOf {
|
|
@@ -2444,6 +2539,8 @@ interface ImageData {
|
|
|
2444
2539
|
crop?: ImageDataCrop;
|
|
2445
2540
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
2446
2541
|
cropShape?: string | null;
|
|
2542
|
+
/** Node animation. */
|
|
2543
|
+
animation?: Animation;
|
|
2447
2544
|
}
|
|
2448
2545
|
interface StylesBorder {
|
|
2449
2546
|
/** Border width in pixels. */
|
|
@@ -2485,6 +2582,8 @@ interface LinkPreviewData {
|
|
|
2485
2582
|
html?: string | null;
|
|
2486
2583
|
/** Styling for the link preview. */
|
|
2487
2584
|
styles?: LinkPreviewDataStyles;
|
|
2585
|
+
/** Node animation. */
|
|
2586
|
+
animation?: Animation;
|
|
2488
2587
|
}
|
|
2489
2588
|
declare enum StylesPosition {
|
|
2490
2589
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -2580,6 +2679,8 @@ interface ParagraphData {
|
|
|
2580
2679
|
indentation?: number | null;
|
|
2581
2680
|
/** Paragraph level */
|
|
2582
2681
|
level?: number | null;
|
|
2682
|
+
/** Node animation. */
|
|
2683
|
+
animation?: Animation;
|
|
2583
2684
|
}
|
|
2584
2685
|
interface PollData {
|
|
2585
2686
|
/** Styling for the poll's container. */
|
|
@@ -2590,6 +2691,8 @@ interface PollData {
|
|
|
2590
2691
|
layout?: PollDataLayout;
|
|
2591
2692
|
/** Styling for the poll and voting options. */
|
|
2592
2693
|
design?: Design;
|
|
2694
|
+
/** Node animation. */
|
|
2695
|
+
animation?: Animation;
|
|
2593
2696
|
}
|
|
2594
2697
|
declare enum ViewRole {
|
|
2595
2698
|
/** Only Poll creator can view the results */
|
|
@@ -2948,6 +3051,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2948
3051
|
containerData?: PluginContainerData;
|
|
2949
3052
|
/** Pricing data for embedded Wix App content. */
|
|
2950
3053
|
pricingData?: PricingData;
|
|
3054
|
+
/** Node animation. */
|
|
3055
|
+
animation?: Animation;
|
|
2951
3056
|
}
|
|
2952
3057
|
/** @oneof */
|
|
2953
3058
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -3189,6 +3294,8 @@ interface VideoData {
|
|
|
3189
3294
|
title?: string | null;
|
|
3190
3295
|
/** Video options. */
|
|
3191
3296
|
options?: PlaybackOptions;
|
|
3297
|
+
/** Node animation. */
|
|
3298
|
+
animation?: Animation;
|
|
3192
3299
|
}
|
|
3193
3300
|
interface PlaybackOptions {
|
|
3194
3301
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -3205,6 +3312,8 @@ interface EmbedData {
|
|
|
3205
3312
|
oembed?: Oembed;
|
|
3206
3313
|
/** Origin asset source. */
|
|
3207
3314
|
src?: string | null;
|
|
3315
|
+
/** Node animation. */
|
|
3316
|
+
animation?: Animation;
|
|
3208
3317
|
}
|
|
3209
3318
|
interface Oembed {
|
|
3210
3319
|
/** The resource type. */
|
|
@@ -3249,6 +3358,8 @@ interface CollapsibleListData {
|
|
|
3249
3358
|
direction?: DirectionWithLiterals;
|
|
3250
3359
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
3251
3360
|
isQapageData?: boolean | null;
|
|
3361
|
+
/** Node animation. */
|
|
3362
|
+
animation?: Animation;
|
|
3252
3363
|
}
|
|
3253
3364
|
declare enum InitialExpandedItems {
|
|
3254
3365
|
/** First item will be expended initally */
|
|
@@ -3291,6 +3402,8 @@ interface TableData {
|
|
|
3291
3402
|
cellPadding?: number[];
|
|
3292
3403
|
/** Table's alternative text. */
|
|
3293
3404
|
altText?: string | null;
|
|
3405
|
+
/** Node animation. */
|
|
3406
|
+
animation?: Animation;
|
|
3294
3407
|
}
|
|
3295
3408
|
interface Dimensions {
|
|
3296
3409
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3399,6 +3512,8 @@ interface AudioData {
|
|
|
3399
3512
|
authorName?: string | null;
|
|
3400
3513
|
/** An HTML version of the audio node. */
|
|
3401
3514
|
html?: string | null;
|
|
3515
|
+
/** Node animation. */
|
|
3516
|
+
animation?: Animation;
|
|
3402
3517
|
}
|
|
3403
3518
|
interface OrderedListData {
|
|
3404
3519
|
/** Indentation level from 0-4. */
|
|
@@ -3407,16 +3522,22 @@ interface OrderedListData {
|
|
|
3407
3522
|
offset?: number | null;
|
|
3408
3523
|
/** List start number. */
|
|
3409
3524
|
start?: number | null;
|
|
3525
|
+
/** Node animation. */
|
|
3526
|
+
animation?: Animation;
|
|
3410
3527
|
}
|
|
3411
3528
|
interface BulletedListData {
|
|
3412
3529
|
/** Indentation level from 0-4. */
|
|
3413
3530
|
indentation?: number;
|
|
3414
3531
|
/** Offset level from 0-4. */
|
|
3415
3532
|
offset?: number | null;
|
|
3533
|
+
/** Node animation. */
|
|
3534
|
+
animation?: Animation;
|
|
3416
3535
|
}
|
|
3417
3536
|
interface BlockquoteData {
|
|
3418
3537
|
/** Indentation level from 1-4. */
|
|
3419
3538
|
indentation?: number;
|
|
3539
|
+
/** Node animation. */
|
|
3540
|
+
animation?: Animation;
|
|
3420
3541
|
}
|
|
3421
3542
|
interface CaptionData {
|
|
3422
3543
|
textStyle?: TextStyle;
|
|
@@ -3474,6 +3595,8 @@ interface LayoutData {
|
|
|
3474
3595
|
background?: LayoutDataBackground;
|
|
3475
3596
|
/** Backdrop styling (color or gradient). */
|
|
3476
3597
|
backdrop?: Backdrop;
|
|
3598
|
+
/** Node animation. */
|
|
3599
|
+
animation?: Animation;
|
|
3477
3600
|
}
|
|
3478
3601
|
declare enum ImageScalingScaling {
|
|
3479
3602
|
/** Auto image scaling */
|
|
@@ -3625,6 +3748,8 @@ interface ShapeData {
|
|
|
3625
3748
|
shape?: Media;
|
|
3626
3749
|
/** Styling for the shape. */
|
|
3627
3750
|
styles?: ShapeDataStyles;
|
|
3751
|
+
/** Node animation. */
|
|
3752
|
+
animation?: Animation;
|
|
3628
3753
|
}
|
|
3629
3754
|
interface ShapeDataStyles {
|
|
3630
3755
|
/**
|
|
@@ -3727,6 +3852,8 @@ interface TocData {
|
|
|
3727
3852
|
color?: string | null;
|
|
3728
3853
|
/** Indentation style. Default: NESTED. */
|
|
3729
3854
|
indentation?: IndentationWithLiterals;
|
|
3855
|
+
/** Node animation. */
|
|
3856
|
+
animation?: Animation;
|
|
3730
3857
|
}
|
|
3731
3858
|
/** List style. */
|
|
3732
3859
|
declare enum ListStyle {
|
|
@@ -3773,6 +3900,8 @@ interface SmartBlockData {
|
|
|
3773
3900
|
borderWidth?: number | null;
|
|
3774
3901
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3775
3902
|
borderRadius?: number | null;
|
|
3903
|
+
/** Node animation. */
|
|
3904
|
+
animation?: Animation;
|
|
3776
3905
|
}
|
|
3777
3906
|
/** Layout type of the smart block */
|
|
3778
3907
|
declare enum SmartBlockDataType {
|
|
@@ -3876,10 +4005,14 @@ interface CheckboxListData {
|
|
|
3876
4005
|
indentation?: number;
|
|
3877
4006
|
/** Offset level from 0-4. */
|
|
3878
4007
|
offset?: number | null;
|
|
4008
|
+
/** Node animation. */
|
|
4009
|
+
animation?: Animation;
|
|
3879
4010
|
}
|
|
3880
4011
|
interface ListItemNodeData {
|
|
3881
4012
|
/** Checkbox list item state. Defaults to `false`. */
|
|
3882
4013
|
checked?: boolean | null;
|
|
4014
|
+
/** Node animation. */
|
|
4015
|
+
animation?: Animation;
|
|
3883
4016
|
}
|
|
3884
4017
|
interface Metadata {
|
|
3885
4018
|
/** Schema version. */
|
|
@@ -4424,4 +4557,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4424
4557
|
*/
|
|
4425
4558
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4426
4559
|
|
|
4427
|
-
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 };
|
|
4560
|
+
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 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 };
|
|
@@ -809,6 +809,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
809
809
|
Target2["TOP"] = "TOP";
|
|
810
810
|
return Target2;
|
|
811
811
|
})(Target || {});
|
|
812
|
+
var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
|
|
813
|
+
AnimationType2["VIEW"] = "VIEW";
|
|
814
|
+
return AnimationType2;
|
|
815
|
+
})(AnimationType || {});
|
|
816
|
+
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
817
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
818
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
819
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
820
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
821
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
822
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
823
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
824
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
825
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
826
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
827
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
828
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
829
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
830
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
831
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
832
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
833
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
834
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
835
|
+
return EntranceEffectType2;
|
|
836
|
+
})(EntranceEffectType || {});
|
|
812
837
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
813
838
|
TextAlignment2["AUTO"] = "AUTO";
|
|
814
839
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1384,6 +1409,7 @@ async function discardDraft2(eventId) {
|
|
|
1384
1409
|
}
|
|
1385
1410
|
export {
|
|
1386
1411
|
Alignment,
|
|
1412
|
+
AnimationType,
|
|
1387
1413
|
AppType,
|
|
1388
1414
|
AspectRatio,
|
|
1389
1415
|
BackdropType,
|
|
@@ -1401,6 +1427,7 @@ export {
|
|
|
1401
1427
|
DesignTarget,
|
|
1402
1428
|
Direction,
|
|
1403
1429
|
DividerDataAlignment,
|
|
1430
|
+
EntranceEffectType,
|
|
1404
1431
|
EventStatus,
|
|
1405
1432
|
EventType,
|
|
1406
1433
|
FontType,
|