@wix/auto_sdk_events_forms 1.0.34 → 1.0.36

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.
@@ -1,3 +1,5 @@
1
+ import { NonNullablePaths } from '@wix/sdk-types';
2
+
1
3
  /**
2
4
  * The form defines which elements are displayed to a site visitor during the registration process (RSVP or checkout).
3
5
  * It also contains customizable messages and labels.
@@ -287,6 +289,8 @@ declare enum RequestedFields {
287
289
  /** Include soft deleted input controls in the response. */
288
290
  DELETED = "DELETED"
289
291
  }
292
+ /** @enumType */
293
+ type RequestedFieldsWithLiterals = RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'DELETED';
290
294
  interface GetFormResponse {
291
295
  /**
292
296
  * Currently published event form.
@@ -779,6 +783,8 @@ declare enum SubdivisionType {
779
783
  /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
780
784
  COUNTRY = "COUNTRY"
781
785
  }
786
+ /** @enumType */
787
+ type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
782
788
  interface ScheduleConfig {
783
789
  /**
784
790
  * Defines event as TBD (To Be Determined) schedule.
@@ -2492,6 +2498,10 @@ interface Decoration extends DecorationDataOneOf {
2492
2498
  spoilerData?: SpoilerData;
2493
2499
  /** Data for a strikethrough decoration. Defaults to `true`. */
2494
2500
  strikethroughData?: boolean | null;
2501
+ /** Data for a superscript decoration. Defaults to `true`. */
2502
+ superscriptData?: boolean | null;
2503
+ /** Data for a subscript decoration. Defaults to `true`. */
2504
+ subscriptData?: boolean | null;
2495
2505
  /** The type of decoration to apply. */
2496
2506
  type?: DecorationTypeWithLiterals;
2497
2507
  }
@@ -2517,6 +2527,10 @@ interface DecorationDataOneOf {
2517
2527
  spoilerData?: SpoilerData;
2518
2528
  /** Data for a strikethrough decoration. Defaults to `true`. */
2519
2529
  strikethroughData?: boolean | null;
2530
+ /** Data for a superscript decoration. Defaults to `true`. */
2531
+ superscriptData?: boolean | null;
2532
+ /** Data for a subscript decoration. Defaults to `true`. */
2533
+ subscriptData?: boolean | null;
2520
2534
  }
2521
2535
  declare enum DecorationType {
2522
2536
  BOLD = "BOLD",
@@ -2529,10 +2543,12 @@ declare enum DecorationType {
2529
2543
  COLOR = "COLOR",
2530
2544
  FONT_SIZE = "FONT_SIZE",
2531
2545
  EXTERNAL = "EXTERNAL",
2532
- STRIKETHROUGH = "STRIKETHROUGH"
2546
+ STRIKETHROUGH = "STRIKETHROUGH",
2547
+ SUPERSCRIPT = "SUPERSCRIPT",
2548
+ SUBSCRIPT = "SUBSCRIPT"
2533
2549
  }
2534
2550
  /** @enumType */
2535
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
2551
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
2536
2552
  interface AnchorData {
2537
2553
  /** The target node's ID. */
2538
2554
  anchor?: string;
@@ -2788,6 +2804,8 @@ declare enum NullValue {
2788
2804
  /** Null value. */
2789
2805
  NULL_VALUE = "NULL_VALUE"
2790
2806
  }
2807
+ /** @enumType */
2808
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
2791
2809
  /**
2792
2810
  * `ListValue` is a wrapper around a repeated field of values.
2793
2811
  *
@@ -3047,6 +3065,25 @@ declare enum WebhookIdentityType {
3047
3065
  }
3048
3066
  /** @enumType */
3049
3067
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3068
+ type AddControlApplicationErrors = {
3069
+ code?: 'INVALID_EVENT_CONFIGURATION';
3070
+ description?: string;
3071
+ data?: Record<string, any>;
3072
+ };
3073
+ type UpdateControlApplicationErrors = {
3074
+ code?: 'INVALID_EVENT_CONFIGURATION';
3075
+ description?: string;
3076
+ data?: Record<string, any>;
3077
+ } | {
3078
+ code?: 'CONTROL_NOT_FOUND';
3079
+ description?: string;
3080
+ data?: Record<string, any>;
3081
+ };
3082
+ type DeleteControlApplicationErrors = {
3083
+ code?: 'CONTROL_NOT_FOUND';
3084
+ description?: string;
3085
+ data?: Record<string, any>;
3086
+ };
3050
3087
  interface BaseEventMetadata {
3051
3088
  /**
3052
3089
  * App instance ID.
@@ -3065,6 +3102,77 @@ interface FormEventUpdatedEnvelope {
3065
3102
  data: EventUpdated;
3066
3103
  metadata: BaseEventMetadata;
3067
3104
  }
3105
+ /**
3106
+ * Triggered when a form is updated or published.
3107
+ * @permissionScope Manage Stores
3108
+ * @permissionScopeId SCOPE.STORES.MANAGE-STORES
3109
+ * @permissionScope Read Events - all read permissions
3110
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.READ-EVENTS
3111
+ * @permissionScope Manage Bookings Services and Settings
3112
+ * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
3113
+ * @permissionScope Manage Events - all permissions
3114
+ * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
3115
+ * @permissionScope Manage Events
3116
+ * @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
3117
+ * @permissionScope Read Events
3118
+ * @permissionScopeId SCOPE.DC-EVENTS.READ-EVENTS
3119
+ * @permissionScope Manage Challenges
3120
+ * @permissionScopeId SCOPE.CHALLENGES.MANAGE
3121
+ * @permissionScope Manage Portfolio
3122
+ * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
3123
+ * @permissionScope Manage Blog
3124
+ * @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
3125
+ * @permissionScope Access Verticals by Automations
3126
+ * @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
3127
+ * @permissionScope Manage Restaurants - all permissions
3128
+ * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
3129
+ * @permissionScope Set Up Automations
3130
+ * @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
3131
+ * @permissionScope Manage Guest List
3132
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-GUEST-LIST
3133
+ * @permissionScope Manage Events
3134
+ * @permissionScopeId SCOPE.DC-EVENTS.MANAGE-EVENTS
3135
+ * @permissionId WIX_EVENTS.READ_EVENTS
3136
+ * @webhook
3137
+ * @eventType wix.events.events.EventUpdated
3138
+ * @serviceIdentifier wix.events.form.FormBuilder
3139
+ * @slug event_updated
3140
+ */
3141
+ declare function onFormEventUpdated(handler: (event: FormEventUpdatedEnvelope) => void | Promise<void>): void;
3142
+ type FormNonNullablePaths = `controls` | `controls.${number}.type` | `controls.${number}.system` | `controls.${number}.name` | `controls.${number}.label` | `controls.${number}.orderIndex` | `controls.${number}._id` | `messages.rsvp.rsvpYesOption` | `messages.rsvp.rsvpNoOption` | `messages.rsvp.positiveMessages.title` | `messages.rsvp.positiveMessages.confirmation.title` | `messages.rsvp.positiveMessages.confirmation.message` | `messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `messages.rsvp.negativeMessages.title` | `messages.rsvp.negativeMessages.confirmation.title` | `messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `messages.rsvp.submitActionLabel` | `messages.checkout.title` | `messages.checkout.submitActionLabel` | `messages.checkout.confirmation.title` | `messages.checkout.confirmation.message` | `messages.checkout.confirmation.downloadTicketsLabel` | `messages.checkout.confirmation.addToCalendarLabel` | `messages.checkout.confirmation.shareEventLabel` | `messages.registrationClosed.message` | `messages.registrationClosed.exploreEventsActionLabel` | `messages.ticketsUnavailable.message` | `messages.ticketsUnavailable.exploreEventsActionLabel`;
3143
+ /**
3144
+ * Retrieves an event registration form.
3145
+ *
3146
+ * Retrieves both the draft and published versions.
3147
+ * @param eventId - Event ID to which the form belongs.
3148
+ * @public
3149
+ * @requiredField eventId
3150
+ * @param options - Optional fields.
3151
+ * @permissionId WIX_EVENTS.READ_EVENTS
3152
+ * @applicableIdentity APP
3153
+ * @applicableIdentity VISITOR
3154
+ * @returns Currently published event form.
3155
+ * Published form is visible to site visitors.
3156
+ * @fqn wix.events.form.FormBuilder.GetForm
3157
+ */
3158
+ declare function getForm(eventId: string): Promise<NonNullablePaths<Form, FormNonNullablePaths>>;
3159
+ /**
3160
+ * Adds an input control to the draft form.
3161
+ * @param eventId - Event ID to which the form belongs.
3162
+ * @public
3163
+ * @requiredField eventId
3164
+ * @requiredField options
3165
+ * @requiredField options.control
3166
+ * @param options - Optional fields.
3167
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3168
+ * @applicableIdentity APP
3169
+ * @fqn wix.events.form.FormBuilder.AddControl
3170
+ */
3171
+ declare function addControl(eventId: string, options: AddControlOptions): Promise<NonNullablePaths<AddControlResponse, `_id` | {
3172
+ [P in FormNonNullablePaths]: `form.${P}`;
3173
+ }[FormNonNullablePaths]> & {
3174
+ __applicationErrorsType?: AddControlApplicationErrors;
3175
+ }>;
3068
3176
  interface AddControlOptions extends AddControlOptionsControlOneOf {
3069
3177
  /** Phone number input control. */
3070
3178
  phone?: PhoneControl;
@@ -3102,6 +3210,24 @@ interface AddControlOptionsControlOneOf {
3102
3210
  /** Single-choice radio button style input control. */
3103
3211
  radioButton?: RadioButtonControl;
3104
3212
  }
3213
+ /**
3214
+ * Updates an existing input control in the draft form.
3215
+ * @public
3216
+ * @requiredField identifiers
3217
+ * @requiredField identifiers._id
3218
+ * @requiredField identifiers.eventId
3219
+ * @requiredField options.control
3220
+ * @param options - Optional fields.
3221
+ * @param identifiers - Identifies what form to update.
3222
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3223
+ * @applicableIdentity APP
3224
+ * @fqn wix.events.form.FormBuilder.UpdateControl
3225
+ */
3226
+ declare function updateControl(identifiers: NonNullablePaths<UpdateControlIdentifiers, `_id` | `eventId`>, options?: UpdateControlOptions): Promise<NonNullablePaths<UpdateControlResponse, {
3227
+ [P in FormNonNullablePaths]: `form.${P}`;
3228
+ }[FormNonNullablePaths]> & {
3229
+ __applicationErrorsType?: UpdateControlApplicationErrors;
3230
+ }>;
3105
3231
  interface UpdateControlIdentifiers extends UpdateControlIdentifiersControlOneOf {
3106
3232
  /**
3107
3233
  * Event ID to which the form belongs.
@@ -3181,6 +3307,22 @@ interface UpdateControlOptionsControlOneOf {
3181
3307
  /** Single-choice radio style input control. */
3182
3308
  radioButton?: RadioButtonControl;
3183
3309
  }
3310
+ /**
3311
+ * Deletes an input control from the draft form.
3312
+ * @public
3313
+ * @requiredField identifiers
3314
+ * @requiredField identifiers._id
3315
+ * @requiredField identifiers.eventId
3316
+ * @param identifiers - Identifies what form to delete.
3317
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3318
+ * @applicableIdentity APP
3319
+ * @fqn wix.events.form.FormBuilder.DeleteControl
3320
+ */
3321
+ declare function deleteControl(identifiers: NonNullablePaths<DeleteControlIdentifiers, `_id` | `eventId`>): Promise<NonNullablePaths<DeleteControlResponse, {
3322
+ [P in FormNonNullablePaths]: `form.${P}`;
3323
+ }[FormNonNullablePaths]> & {
3324
+ __applicationErrorsType?: DeleteControlApplicationErrors;
3325
+ }>;
3184
3326
  interface DeleteControlIdentifiers {
3185
3327
  /**
3186
3328
  * Event ID to which the form belongs.
@@ -3193,6 +3335,20 @@ interface DeleteControlIdentifiers {
3193
3335
  */
3194
3336
  _id: string;
3195
3337
  }
3338
+ /**
3339
+ * Updates a set of defined form messages that are displayed to a site visitor before, during, and after the registration flow.
3340
+ * Includes the configuration of form titles, response labels, "thank you" messages, and call-to-action texts.
3341
+ * @param eventId - Event ID to which the form belongs.
3342
+ * @public
3343
+ * @requiredField eventId
3344
+ * @param options - Optional fields.
3345
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3346
+ * @applicableIdentity APP
3347
+ * @fqn wix.events.form.FormBuilder.UpdateMessages
3348
+ */
3349
+ declare function updateMessages(eventId: string, options?: UpdateMessagesOptions): Promise<NonNullablePaths<UpdateMessagesResponse, {
3350
+ [P in FormNonNullablePaths]: `form.${P}`;
3351
+ }[FormNonNullablePaths]>>;
3196
3352
  interface UpdateMessagesOptions {
3197
3353
  /**
3198
3354
  * Set of field paths, specifying which parts of this resource to update.
@@ -3203,5 +3359,27 @@ interface UpdateMessagesOptions {
3203
3359
  /** Set of configured form messages to update. */
3204
3360
  messages?: FormMessages;
3205
3361
  }
3362
+ /**
3363
+ * Publishes the draft form.
3364
+ * @param eventId - Event ID to which the form belongs.
3365
+ * @public
3366
+ * @requiredField eventId
3367
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3368
+ * @applicableIdentity APP
3369
+ * @fqn wix.events.form.FormBuilder.PublishDraft
3370
+ */
3371
+ declare function publishDraft(eventId: string): Promise<NonNullablePaths<PublishDraftResponse, {
3372
+ [P in FormNonNullablePaths]: `form.${P}`;
3373
+ }[FormNonNullablePaths]>>;
3374
+ /**
3375
+ * Clears all changes to the draft form.
3376
+ * @param eventId - Event ID to which the form belongs.
3377
+ * @public
3378
+ * @requiredField eventId
3379
+ * @permissionId WIX_EVENTS.MANAGE_EVENTS
3380
+ * @applicableIdentity APP
3381
+ * @fqn wix.events.form.FormBuilder.DiscardDraft
3382
+ */
3383
+ declare function discardDraft(eventId: string): Promise<void>;
3206
3384
 
3207
- export { Direction as $, type AddControlOptions as A, ButtonDataType as B, ConferenceType as C, type DeleteControlIdentifiers as D, EventStatus as E, type Form as F, GIFType as G, VoteRole as H, InputControlType as I, PollLayoutType as J, PollLayoutDirection as K, LocationType as L, MapType as M, NodeType as N, Orientation as O, type PublishDraftResponse as P, BackgroundType as Q, RequestedFields as R, SubdivisionType as S, TaxType as T, type UpdateControlIdentifiers as U, ValueType as V, WidthType as W, DecorationType as X, FontType as Y, AppType as Z, InitialExpandedItems as _, type AddControlResponse as a, type Money as a$, VerticalAlignment as a0, NullValue as a1, Type as a2, WebhookIdentityType as a3, type InputControl as a4, type Input as a5, type OptionSelection as a6, type OptionSelectionSelectedOptionOneOf as a7, type Label as a8, type FormMessages as a9, type UpdateControlRequest as aA, type UpdateControlRequestControlOneOf as aB, type NameControl as aC, type NameControlLabels as aD, type EmailControl as aE, type DeleteControlRequest as aF, type UpdateMessagesRequest as aG, type PublishDraftRequest as aH, type EventUpdated as aI, type Location as aJ, type MapCoordinates as aK, type Address as aL, type AddressStreetOneOf as aM, type StreetAddress as aN, type AddressLocation as aO, type Subdivision as aP, type ScheduleConfig as aQ, type Recurrences as aR, type Occurrence as aS, type Event as aT, type Scheduling as aU, type Registration as aV, type RsvpCollection as aW, type RsvpCollectionConfig as aX, type Ticketing as aY, type TicketingConfig as aZ, type TaxConfig as a_, type RsvpFormMessages as aa, type PositiveResponseConfirmation as ab, type NegativeResponseConfirmation as ac, type Positive as ad, type Negative as ae, type CheckoutFormMessages as af, type ResponseConfirmation as ag, type RegistrationClosedMessages as ah, type TicketsUnavailableMessages as ai, type FormInputControlAdded as aj, type FormInputControlUpdated as ak, type FormInputControlDeleted as al, type GetFormRequest as am, type GetFormResponse as an, type AddControlRequest as ao, type AddControlRequestControlOneOf as ap, type PhoneControl as aq, type AddressControl as ar, type AddressControlLabels as as, type DateControl as at, type AdditionalGuestsControl as au, type Labels as av, type DropdownControl as aw, type RadioButtonControl as ax, type CheckboxControl as ay, type TextControl as az, type UpdateControlOptions as b, type LinkPreviewDataStyles as b$, type ExternalEvent as b0, type CalendarLinks as b1, type SiteUrl as b2, type Dashboard as b3, type RsvpSummary as b4, type TicketingSummary as b5, type GuestListConfig as b6, type Feed as b7, type OnlineConferencing as b8, type OnlineConferencingConfig as b9, type Rel as bA, type CodeBlockData as bB, type TextStyle as bC, type DividerData as bD, type FileData as bE, type FileSource as bF, type FileSourceDataOneOf as bG, type PDFSettings as bH, type GalleryData as bI, type Media as bJ, type Image as bK, type Video as bL, type Item as bM, type ItemDataOneOf as bN, type GalleryOptions as bO, type Layout as bP, type ItemStyle as bQ, type Thumbnails as bR, type GIFData as bS, type GIF as bT, type HeadingData as bU, type HTMLData as bV, type HTMLDataDataOneOf as bW, type ImageData as bX, type StylesBorder as bY, type ImageDataStyles as bZ, type LinkPreviewData as b_, type OnlineConferencingSession as ba, type SeoSettings as bb, type SeoSchema as bc, type Keyword as bd, type Tag as be, type Settings as bf, type Agenda as bg, type Category as bh, type CategoryCounts as bi, type EventDisplaySettings as bj, type LabellingSettings as bk, type RichContent as bl, type Node as bm, type NodeDataOneOf as bn, type NodeStyle as bo, type ButtonData as bp, type Border as bq, type Colors as br, type PluginContainerData as bs, type PluginContainerDataWidth as bt, type PluginContainerDataWidthDataOneOf as bu, type Spoiler as bv, type Height as bw, type Styles as bx, type Link as by, type LinkDataOneOf as bz, type UpdateControlResponse as c, type BaseEventMetadata as c$, type MapData as c0, type MapSettings as c1, type ParagraphData as c2, type PollData as c3, type Permissions as c4, type Option as c5, type PollSettings as c6, type PollLayout as c7, type OptionLayout as c8, type Gradient as c9, type Dimensions as cA, type TableCellData as cB, type CellStyle as cC, type BorderColors as cD, type ListValue as cE, type AudioData as cF, type OrderedListData as cG, type BulletedListData as cH, type BlockquoteData as cI, type CaptionData as cJ, type LayoutCellData as cK, type Metadata as cL, type DocumentStyle as cM, type TextNodeStyle as cN, type Badge as cO, type DiscardDraftRequest as cP, type DiscardDraftResponse as cQ, type DomainEvent as cR, type DomainEventBodyOneOf as cS, type EntityCreatedEvent as cT, type RestoreInfo as cU, type EntityUpdatedEvent as cV, type EntityDeletedEvent as cW, type ActionEvent as cX, type MessageEnvelope as cY, type IdentificationData as cZ, type IdentificationDataIdOneOf as c_, type Background as ca, type BackgroundBackgroundOneOf as cb, type PollDesign as cc, type OptionDesign as cd, type Poll as ce, type PollDataLayout as cf, type Design as cg, type TextData as ch, type Decoration as ci, type DecorationDataOneOf as cj, type AnchorData as ck, type ColorData as cl, type LinkData as cm, type MentionData as cn, type FontSizeData as co, type SpoilerData as cp, type AppEmbedData as cq, type AppEmbedDataAppDataOneOf as cr, type BookingData as cs, type EventData as ct, type VideoData as cu, type PlaybackOptions as cv, type EmbedData as cw, type Oembed as cx, type CollapsibleListData as cy, type TableData as cz, type DeleteControlResponse as d, type AddControlOptionsControlOneOf as d0, type UpdateControlIdentifiersControlOneOf as d1, type UpdateControlOptionsControlOneOf as d2, type UpdateMessagesOptions as e, type UpdateMessagesResponse as f, type FormEventUpdatedEnvelope as g, Status as h, EventType as i, RegistrationStatus as j, RsvpStatusOptions as k, VisitorType as l, State as m, PluginContainerDataAlignment as n, Target as o, TextAlignment as p, LineStyle as q, Width as r, Alignment as s, ViewMode as t, LayoutType as u, Crop as v, ThumbnailsAlignment as w, Source as x, Position as y, ViewRole as z };
3385
+ export { 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, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, 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 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 GetFormRequest, type GetFormResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, 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 TicketsUnavailableMessages, 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, VerticalAlignment, 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 };