@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.
- package/build/cjs/index.d.ts +11 -5
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{events-v1-form-forms.universal-Dmp4nCQH.d.ts → index.typings.d.ts} +181 -3
- package/build/cjs/index.typings.js +1332 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +2 -1
- package/build/es/index.d.mts +11 -5
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/{events-v1-form-forms.universal-Dmp4nCQH.d.mts → index.typings.d.mts} +181 -3
- package/build/es/index.typings.mjs +1256 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +2 -1
- package/build/internal/cjs/index.d.ts +11 -5
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{events-v1-form-forms.universal-Dmp4nCQH.d.ts → index.typings.d.ts} +181 -3
- package/build/internal/cjs/index.typings.js +1332 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +2 -1
- package/build/internal/es/index.d.mts +11 -5
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{events-v1-form-forms.universal-Dmp4nCQH.d.mts → index.typings.d.mts} +181 -3
- package/build/internal/es/index.typings.mjs +1256 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +2 -1
- package/package.json +3 -3
package/build/internal/es/{events-v1-form-forms.universal-Dmp4nCQH.d.mts → index.typings.d.mts}
RENAMED
|
@@ -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 {
|
|
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 };
|