@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
|
@@ -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,90 @@ 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
|
+
}
|
|
2027
|
+
declare enum AnimationType {
|
|
2028
|
+
/** Animations that play while the node is in view. */
|
|
2029
|
+
VIEW = "VIEW"
|
|
2030
|
+
}
|
|
2031
|
+
/** @enumType */
|
|
2032
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
2033
|
+
interface EntranceAnimation {
|
|
2034
|
+
/** The entrance effect to play. */
|
|
2035
|
+
effect?: EntranceEffect;
|
|
2036
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
2037
|
+
duration?: number | null;
|
|
2038
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
2039
|
+
delay?: number | null;
|
|
2040
|
+
}
|
|
2041
|
+
interface EntranceEffect {
|
|
2042
|
+
/** The entrance effect type. */
|
|
2043
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
2044
|
+
/**
|
|
2045
|
+
* 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).
|
|
2046
|
+
* @maxLength 20
|
|
2047
|
+
*/
|
|
2048
|
+
direction?: string | null;
|
|
2049
|
+
/**
|
|
2050
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
2051
|
+
* @maxLength 12
|
|
2052
|
+
*/
|
|
2053
|
+
shape?: string | null;
|
|
2054
|
+
/**
|
|
2055
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
2056
|
+
* @maxLength 100
|
|
2057
|
+
*/
|
|
2058
|
+
easing?: string | null;
|
|
2059
|
+
}
|
|
2060
|
+
declare enum EntranceEffectType {
|
|
2061
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
2062
|
+
FADE = "FADE",
|
|
2063
|
+
/** Enters along a 3D arc path. */
|
|
2064
|
+
ARC = "ARC",
|
|
2065
|
+
/** Transitions from blurred to sharp. */
|
|
2066
|
+
BLUR = "BLUR",
|
|
2067
|
+
/** Bounces into place with an elastic curve. */
|
|
2068
|
+
BOUNCE = "BOUNCE",
|
|
2069
|
+
/** Shrinks down from a larger size. */
|
|
2070
|
+
DROP = "DROP",
|
|
2071
|
+
/** Expands from a point, scaling to full size. */
|
|
2072
|
+
EXPAND = "EXPAND",
|
|
2073
|
+
/** Flips into view with a 3D rotation. */
|
|
2074
|
+
FLIP = "FLIP",
|
|
2075
|
+
/** Drifts gently into place. */
|
|
2076
|
+
FLOAT = "FLOAT",
|
|
2077
|
+
/** Unfolds from an edge as if hinged. */
|
|
2078
|
+
FOLD = "FOLD",
|
|
2079
|
+
/** Glides in smoothly from off-screen. */
|
|
2080
|
+
GLIDE = "GLIDE",
|
|
2081
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
2082
|
+
REVEAL = "REVEAL",
|
|
2083
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
2084
|
+
SHAPE = "SHAPE",
|
|
2085
|
+
/** Revealed through shutter-like strips. */
|
|
2086
|
+
SHUTTERS = "SHUTTERS",
|
|
2087
|
+
/** Slides in from one side. */
|
|
2088
|
+
SLIDE = "SLIDE",
|
|
2089
|
+
/** Spins into view while scaling up. */
|
|
2090
|
+
SPIN = "SPIN",
|
|
2091
|
+
/** Tilts in from the side with 3D rotation. */
|
|
2092
|
+
TILT = "TILT",
|
|
2093
|
+
/** Rotates into view around a corner pivot. */
|
|
2094
|
+
TURN = "TURN",
|
|
2095
|
+
/** Expands from its horizontal or vertical center. */
|
|
2096
|
+
WINK = "WINK"
|
|
2097
|
+
}
|
|
2098
|
+
/** @enumType */
|
|
2099
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
2019
2100
|
interface CodeBlockData {
|
|
2020
2101
|
/** Styling for the code block's text. */
|
|
2021
2102
|
textStyle?: TextStyle;
|
|
2103
|
+
/** Node animation. */
|
|
2104
|
+
animation?: Animation;
|
|
2022
2105
|
}
|
|
2023
2106
|
interface TextStyle {
|
|
2024
2107
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -2051,6 +2134,8 @@ interface DividerData {
|
|
|
2051
2134
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
2052
2135
|
/** Visual styling for the divider lines. */
|
|
2053
2136
|
styles?: DividerDataStyles;
|
|
2137
|
+
/** Node animation. */
|
|
2138
|
+
animation?: Animation;
|
|
2054
2139
|
}
|
|
2055
2140
|
declare enum LineCap {
|
|
2056
2141
|
/** Square line endings. */
|
|
@@ -2105,9 +2190,9 @@ interface DividerDataStyles {
|
|
|
2105
2190
|
* @maxSize 10
|
|
2106
2191
|
*/
|
|
2107
2192
|
lineThickness?: number[];
|
|
2108
|
-
/**
|
|
2193
|
+
/** 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
2194
|
dashLength?: number | null;
|
|
2110
|
-
/**
|
|
2195
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
2111
2196
|
dashGap?: number | null;
|
|
2112
2197
|
/** Gap between divider lines in pixels. */
|
|
2113
2198
|
lineGap?: number | null;
|
|
@@ -2134,6 +2219,8 @@ interface FileData {
|
|
|
2134
2219
|
path?: string | null;
|
|
2135
2220
|
/** File size in KB. */
|
|
2136
2221
|
sizeInKb?: string | null;
|
|
2222
|
+
/** Node animation. */
|
|
2223
|
+
animation?: Animation;
|
|
2137
2224
|
}
|
|
2138
2225
|
declare enum ViewMode {
|
|
2139
2226
|
/** No PDF view */
|
|
@@ -2194,6 +2281,8 @@ interface GalleryData {
|
|
|
2194
2281
|
disableExpand?: boolean | null;
|
|
2195
2282
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
2196
2283
|
disableDownload?: boolean | null;
|
|
2284
|
+
/** Node animation. */
|
|
2285
|
+
animation?: Animation;
|
|
2197
2286
|
}
|
|
2198
2287
|
interface Media {
|
|
2199
2288
|
/** The source for the media's data. */
|
|
@@ -2337,6 +2426,8 @@ interface GIFData {
|
|
|
2337
2426
|
width?: number;
|
|
2338
2427
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
2339
2428
|
gifType?: GIFTypeWithLiterals;
|
|
2429
|
+
/** Node animation. */
|
|
2430
|
+
animation?: Animation;
|
|
2340
2431
|
}
|
|
2341
2432
|
interface GIF {
|
|
2342
2433
|
/**
|
|
@@ -2370,6 +2461,8 @@ interface HeadingData {
|
|
|
2370
2461
|
indentation?: number | null;
|
|
2371
2462
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2372
2463
|
renderedLevel?: number | null;
|
|
2464
|
+
/** Node animation. */
|
|
2465
|
+
animation?: Animation;
|
|
2373
2466
|
}
|
|
2374
2467
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2375
2468
|
/** The URL for the HTML code for the node. */
|
|
@@ -2389,6 +2482,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
2389
2482
|
source?: SourceWithLiterals;
|
|
2390
2483
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
2391
2484
|
autoHeight?: boolean | null;
|
|
2485
|
+
/** Node animation. */
|
|
2486
|
+
animation?: Animation;
|
|
2392
2487
|
}
|
|
2393
2488
|
/** @oneof */
|
|
2394
2489
|
interface HTMLDataDataOneOf {
|
|
@@ -2438,6 +2533,8 @@ interface ImageData {
|
|
|
2438
2533
|
crop?: ImageDataCrop;
|
|
2439
2534
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
2440
2535
|
cropShape?: string | null;
|
|
2536
|
+
/** Node animation. */
|
|
2537
|
+
animation?: Animation;
|
|
2441
2538
|
}
|
|
2442
2539
|
interface StylesBorder {
|
|
2443
2540
|
/** Border width in pixels. */
|
|
@@ -2479,6 +2576,8 @@ interface LinkPreviewData {
|
|
|
2479
2576
|
html?: string | null;
|
|
2480
2577
|
/** Styling for the link preview. */
|
|
2481
2578
|
styles?: LinkPreviewDataStyles;
|
|
2579
|
+
/** Node animation. */
|
|
2580
|
+
animation?: Animation;
|
|
2482
2581
|
}
|
|
2483
2582
|
declare enum StylesPosition {
|
|
2484
2583
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -2574,6 +2673,8 @@ interface ParagraphData {
|
|
|
2574
2673
|
indentation?: number | null;
|
|
2575
2674
|
/** Paragraph level */
|
|
2576
2675
|
level?: number | null;
|
|
2676
|
+
/** Node animation. */
|
|
2677
|
+
animation?: Animation;
|
|
2577
2678
|
}
|
|
2578
2679
|
interface PollData {
|
|
2579
2680
|
/** Styling for the poll's container. */
|
|
@@ -2584,6 +2685,8 @@ interface PollData {
|
|
|
2584
2685
|
layout?: PollDataLayout;
|
|
2585
2686
|
/** Styling for the poll and voting options. */
|
|
2586
2687
|
design?: Design;
|
|
2688
|
+
/** Node animation. */
|
|
2689
|
+
animation?: Animation;
|
|
2587
2690
|
}
|
|
2588
2691
|
declare enum ViewRole {
|
|
2589
2692
|
/** Only Poll creator can view the results */
|
|
@@ -2942,6 +3045,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2942
3045
|
containerData?: PluginContainerData;
|
|
2943
3046
|
/** Pricing data for embedded Wix App content. */
|
|
2944
3047
|
pricingData?: PricingData;
|
|
3048
|
+
/** Node animation. */
|
|
3049
|
+
animation?: Animation;
|
|
2945
3050
|
}
|
|
2946
3051
|
/** @oneof */
|
|
2947
3052
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -3183,6 +3288,8 @@ interface VideoData {
|
|
|
3183
3288
|
title?: string | null;
|
|
3184
3289
|
/** Video options. */
|
|
3185
3290
|
options?: PlaybackOptions;
|
|
3291
|
+
/** Node animation. */
|
|
3292
|
+
animation?: Animation;
|
|
3186
3293
|
}
|
|
3187
3294
|
interface PlaybackOptions {
|
|
3188
3295
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -3199,6 +3306,8 @@ interface EmbedData {
|
|
|
3199
3306
|
oembed?: Oembed;
|
|
3200
3307
|
/** Origin asset source. */
|
|
3201
3308
|
src?: string | null;
|
|
3309
|
+
/** Node animation. */
|
|
3310
|
+
animation?: Animation;
|
|
3202
3311
|
}
|
|
3203
3312
|
interface Oembed {
|
|
3204
3313
|
/** The resource type. */
|
|
@@ -3243,6 +3352,8 @@ interface CollapsibleListData {
|
|
|
3243
3352
|
direction?: DirectionWithLiterals;
|
|
3244
3353
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
3245
3354
|
isQapageData?: boolean | null;
|
|
3355
|
+
/** Node animation. */
|
|
3356
|
+
animation?: Animation;
|
|
3246
3357
|
}
|
|
3247
3358
|
declare enum InitialExpandedItems {
|
|
3248
3359
|
/** First item will be expended initally */
|
|
@@ -3285,6 +3396,8 @@ interface TableData {
|
|
|
3285
3396
|
cellPadding?: number[];
|
|
3286
3397
|
/** Table's alternative text. */
|
|
3287
3398
|
altText?: string | null;
|
|
3399
|
+
/** Node animation. */
|
|
3400
|
+
animation?: Animation;
|
|
3288
3401
|
}
|
|
3289
3402
|
interface Dimensions {
|
|
3290
3403
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3393,6 +3506,8 @@ interface AudioData {
|
|
|
3393
3506
|
authorName?: string | null;
|
|
3394
3507
|
/** An HTML version of the audio node. */
|
|
3395
3508
|
html?: string | null;
|
|
3509
|
+
/** Node animation. */
|
|
3510
|
+
animation?: Animation;
|
|
3396
3511
|
}
|
|
3397
3512
|
interface OrderedListData {
|
|
3398
3513
|
/** Indentation level from 0-4. */
|
|
@@ -3401,16 +3516,22 @@ interface OrderedListData {
|
|
|
3401
3516
|
offset?: number | null;
|
|
3402
3517
|
/** List start number. */
|
|
3403
3518
|
start?: number | null;
|
|
3519
|
+
/** Node animation. */
|
|
3520
|
+
animation?: Animation;
|
|
3404
3521
|
}
|
|
3405
3522
|
interface BulletedListData {
|
|
3406
3523
|
/** Indentation level from 0-4. */
|
|
3407
3524
|
indentation?: number;
|
|
3408
3525
|
/** Offset level from 0-4. */
|
|
3409
3526
|
offset?: number | null;
|
|
3527
|
+
/** Node animation. */
|
|
3528
|
+
animation?: Animation;
|
|
3410
3529
|
}
|
|
3411
3530
|
interface BlockquoteData {
|
|
3412
3531
|
/** Indentation level from 1-4. */
|
|
3413
3532
|
indentation?: number;
|
|
3533
|
+
/** Node animation. */
|
|
3534
|
+
animation?: Animation;
|
|
3414
3535
|
}
|
|
3415
3536
|
interface CaptionData {
|
|
3416
3537
|
textStyle?: TextStyle;
|
|
@@ -3468,6 +3589,8 @@ interface LayoutData {
|
|
|
3468
3589
|
background?: LayoutDataBackground;
|
|
3469
3590
|
/** Backdrop styling (color or gradient). */
|
|
3470
3591
|
backdrop?: Backdrop;
|
|
3592
|
+
/** Node animation. */
|
|
3593
|
+
animation?: Animation;
|
|
3471
3594
|
}
|
|
3472
3595
|
declare enum ImageScalingScaling {
|
|
3473
3596
|
/** Auto image scaling */
|
|
@@ -3619,6 +3742,8 @@ interface ShapeData {
|
|
|
3619
3742
|
shape?: Media;
|
|
3620
3743
|
/** Styling for the shape. */
|
|
3621
3744
|
styles?: ShapeDataStyles;
|
|
3745
|
+
/** Node animation. */
|
|
3746
|
+
animation?: Animation;
|
|
3622
3747
|
}
|
|
3623
3748
|
interface ShapeDataStyles {
|
|
3624
3749
|
/**
|
|
@@ -3721,6 +3846,8 @@ interface TocData {
|
|
|
3721
3846
|
color?: string | null;
|
|
3722
3847
|
/** Indentation style. Default: NESTED. */
|
|
3723
3848
|
indentation?: IndentationWithLiterals;
|
|
3849
|
+
/** Node animation. */
|
|
3850
|
+
animation?: Animation;
|
|
3724
3851
|
}
|
|
3725
3852
|
/** List style. */
|
|
3726
3853
|
declare enum ListStyle {
|
|
@@ -3767,6 +3894,8 @@ interface SmartBlockData {
|
|
|
3767
3894
|
borderWidth?: number | null;
|
|
3768
3895
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3769
3896
|
borderRadius?: number | null;
|
|
3897
|
+
/** Node animation. */
|
|
3898
|
+
animation?: Animation;
|
|
3770
3899
|
}
|
|
3771
3900
|
/** Layout type of the smart block */
|
|
3772
3901
|
declare enum SmartBlockDataType {
|
|
@@ -3870,10 +3999,14 @@ interface CheckboxListData {
|
|
|
3870
3999
|
indentation?: number;
|
|
3871
4000
|
/** Offset level from 0-4. */
|
|
3872
4001
|
offset?: number | null;
|
|
4002
|
+
/** Node animation. */
|
|
4003
|
+
animation?: Animation;
|
|
3873
4004
|
}
|
|
3874
4005
|
interface ListItemNodeData {
|
|
3875
4006
|
/** Checkbox list item state. Defaults to `false`. */
|
|
3876
4007
|
checked?: boolean | null;
|
|
4008
|
+
/** Node animation. */
|
|
4009
|
+
animation?: Animation;
|
|
3877
4010
|
}
|
|
3878
4011
|
interface Metadata {
|
|
3879
4012
|
/** Schema version. */
|
|
@@ -4418,4 +4551,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4418
4551
|
*/
|
|
4419
4552
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4420
4553
|
|
|
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 };
|
|
4554
|
+
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 };
|
|
@@ -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,
|
|
@@ -913,6 +915,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
913
915
|
Target2["TOP"] = "TOP";
|
|
914
916
|
return Target2;
|
|
915
917
|
})(Target || {});
|
|
918
|
+
var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
|
|
919
|
+
AnimationType2["VIEW"] = "VIEW";
|
|
920
|
+
return AnimationType2;
|
|
921
|
+
})(AnimationType || {});
|
|
922
|
+
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
923
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
924
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
925
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
926
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
927
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
928
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
929
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
930
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
931
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
932
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
933
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
934
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
935
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
936
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
937
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
938
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
939
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
940
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
941
|
+
return EntranceEffectType2;
|
|
942
|
+
})(EntranceEffectType || {});
|
|
916
943
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
917
944
|
TextAlignment2["AUTO"] = "AUTO";
|
|
918
945
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1489,6 +1516,7 @@ async function discardDraft2(eventId) {
|
|
|
1489
1516
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1490
1517
|
0 && (module.exports = {
|
|
1491
1518
|
Alignment,
|
|
1519
|
+
AnimationType,
|
|
1492
1520
|
AppType,
|
|
1493
1521
|
AspectRatio,
|
|
1494
1522
|
BackdropType,
|
|
@@ -1506,6 +1534,7 @@ async function discardDraft2(eventId) {
|
|
|
1506
1534
|
DesignTarget,
|
|
1507
1535
|
Direction,
|
|
1508
1536
|
DividerDataAlignment,
|
|
1537
|
+
EntranceEffectType,
|
|
1509
1538
|
EventStatus,
|
|
1510
1539
|
EventType,
|
|
1511
1540
|
FontType,
|