@wix/auto_sdk_forms_submissions 1.0.81 → 1.0.83

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.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-COlDPub4.d.ts → forms-v4-submission-submissions.universal-DrtZOQ3-.d.ts} +152 -135
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +8 -8
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +8 -8
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +155 -138
  9. package/build/cjs/meta.js +8 -8
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-COlDPub4.d.mts → forms-v4-submission-submissions.universal-DrtZOQ3-.d.mts} +152 -135
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +8 -8
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +8 -8
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +155 -138
  19. package/build/es/meta.mjs +8 -8
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-Dow4WbIU.d.ts → forms-v4-submission-submissions.universal-C4-PnlP-.d.ts} +152 -135
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +8 -8
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +8 -8
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +155 -138
  29. package/build/internal/cjs/meta.js +8 -8
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-Dow4WbIU.d.mts → forms-v4-submission-submissions.universal-C4-PnlP-.d.mts} +152 -135
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +8 -8
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +8 -8
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +155 -138
  39. package/build/internal/es/meta.mjs +8 -8
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -259,6 +259,140 @@ interface SubmissionContactMappingSkipped {
259
259
  */
260
260
  contactId?: string | null;
261
261
  }
262
+ interface DomainEvent extends DomainEventBodyOneOf {
263
+ createdEvent?: EntityCreatedEvent;
264
+ updatedEvent?: EntityUpdatedEvent;
265
+ deletedEvent?: EntityDeletedEvent;
266
+ actionEvent?: ActionEvent;
267
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
268
+ _id?: string;
269
+ /**
270
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
271
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
272
+ */
273
+ entityFqdn?: string;
274
+ /**
275
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
276
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
277
+ */
278
+ slug?: string;
279
+ /** ID of the entity associated with the event. */
280
+ entityId?: string;
281
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
282
+ eventTime?: Date | null;
283
+ /**
284
+ * Whether the event was triggered as a result of a privacy regulation application
285
+ * (for example, GDPR).
286
+ */
287
+ triggeredByAnonymizeRequest?: boolean | null;
288
+ /** If present, indicates the action that triggered the event. */
289
+ originatedFrom?: string | null;
290
+ /**
291
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
292
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
293
+ */
294
+ entityEventSequence?: string | null;
295
+ }
296
+ /** @oneof */
297
+ interface DomainEventBodyOneOf {
298
+ createdEvent?: EntityCreatedEvent;
299
+ updatedEvent?: EntityUpdatedEvent;
300
+ deletedEvent?: EntityDeletedEvent;
301
+ actionEvent?: ActionEvent;
302
+ }
303
+ interface EntityCreatedEvent {
304
+ entity?: string;
305
+ }
306
+ interface RestoreInfo {
307
+ deletedDate?: Date | null;
308
+ }
309
+ interface EntityUpdatedEvent {
310
+ /**
311
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
312
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
313
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
314
+ */
315
+ currentEntity?: string;
316
+ }
317
+ interface EntityDeletedEvent {
318
+ /** Entity that was deleted. */
319
+ deletedEntity?: string | null;
320
+ }
321
+ interface ActionEvent {
322
+ body?: string;
323
+ }
324
+ interface MessageEnvelope {
325
+ /**
326
+ * App instance ID.
327
+ * @format GUID
328
+ */
329
+ instanceId?: string | null;
330
+ /**
331
+ * Event type.
332
+ * @maxLength 150
333
+ */
334
+ eventType?: string;
335
+ /** The identification type and identity data. */
336
+ identity?: IdentificationData;
337
+ /** Stringify payload. */
338
+ data?: string;
339
+ }
340
+ interface IdentificationData extends IdentificationDataIdOneOf {
341
+ /**
342
+ * ID of a site visitor that has not logged in to the site.
343
+ * @format GUID
344
+ */
345
+ anonymousVisitorId?: string;
346
+ /**
347
+ * ID of a site visitor that has logged in to the site.
348
+ * @format GUID
349
+ */
350
+ memberId?: string;
351
+ /**
352
+ * ID of a Wix user (site owner, contributor, etc.).
353
+ * @format GUID
354
+ */
355
+ wixUserId?: string;
356
+ /**
357
+ * ID of an app.
358
+ * @format GUID
359
+ */
360
+ appId?: string;
361
+ /** @readonly */
362
+ identityType?: WebhookIdentityTypeWithLiterals;
363
+ }
364
+ /** @oneof */
365
+ interface IdentificationDataIdOneOf {
366
+ /**
367
+ * ID of a site visitor that has not logged in to the site.
368
+ * @format GUID
369
+ */
370
+ anonymousVisitorId?: string;
371
+ /**
372
+ * ID of a site visitor that has logged in to the site.
373
+ * @format GUID
374
+ */
375
+ memberId?: string;
376
+ /**
377
+ * ID of a Wix user (site owner, contributor, etc.).
378
+ * @format GUID
379
+ */
380
+ wixUserId?: string;
381
+ /**
382
+ * ID of an app.
383
+ * @format GUID
384
+ */
385
+ appId?: string;
386
+ }
387
+ declare enum WebhookIdentityType {
388
+ UNKNOWN = "UNKNOWN",
389
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
390
+ MEMBER = "MEMBER",
391
+ WIX_USER = "WIX_USER",
392
+ APP = "APP"
393
+ }
394
+ /** @enumType */
395
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
262
396
  interface CreateCheckoutFromSubmissionRequest extends CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf {
263
397
  /** Submission's form. */
264
398
  form?: Form;
@@ -5438,142 +5572,8 @@ interface IsFormSubmittableRequest {
5438
5572
  }
5439
5573
  interface IsFormSubmittableResponse {
5440
5574
  }
5441
- interface DomainEvent extends DomainEventBodyOneOf {
5442
- createdEvent?: EntityCreatedEvent;
5443
- updatedEvent?: EntityUpdatedEvent;
5444
- deletedEvent?: EntityDeletedEvent;
5445
- actionEvent?: ActionEvent;
5446
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
5447
- _id?: string;
5448
- /**
5449
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
5450
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
5451
- */
5452
- entityFqdn?: string;
5453
- /**
5454
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
5455
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
5456
- */
5457
- slug?: string;
5458
- /** ID of the entity associated with the event. */
5459
- entityId?: string;
5460
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
5461
- eventTime?: Date | null;
5462
- /**
5463
- * Whether the event was triggered as a result of a privacy regulation application
5464
- * (for example, GDPR).
5465
- */
5466
- triggeredByAnonymizeRequest?: boolean | null;
5467
- /** If present, indicates the action that triggered the event. */
5468
- originatedFrom?: string | null;
5469
- /**
5470
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
5471
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
5472
- */
5473
- entityEventSequence?: string | null;
5474
- }
5475
- /** @oneof */
5476
- interface DomainEventBodyOneOf {
5477
- createdEvent?: EntityCreatedEvent;
5478
- updatedEvent?: EntityUpdatedEvent;
5479
- deletedEvent?: EntityDeletedEvent;
5480
- actionEvent?: ActionEvent;
5481
- }
5482
- interface EntityCreatedEvent {
5483
- entity?: string;
5484
- }
5485
- interface RestoreInfo {
5486
- deletedDate?: Date | null;
5487
- }
5488
- interface EntityUpdatedEvent {
5489
- /**
5490
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
5491
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
5492
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
5493
- */
5494
- currentEntity?: string;
5495
- }
5496
- interface EntityDeletedEvent {
5497
- /** Entity that was deleted. */
5498
- deletedEntity?: string | null;
5499
- }
5500
- interface ActionEvent {
5501
- body?: string;
5502
- }
5503
5575
  interface Empty {
5504
5576
  }
5505
- interface MessageEnvelope {
5506
- /**
5507
- * App instance ID.
5508
- * @format GUID
5509
- */
5510
- instanceId?: string | null;
5511
- /**
5512
- * Event type.
5513
- * @maxLength 150
5514
- */
5515
- eventType?: string;
5516
- /** The identification type and identity data. */
5517
- identity?: IdentificationData;
5518
- /** Stringify payload. */
5519
- data?: string;
5520
- }
5521
- interface IdentificationData extends IdentificationDataIdOneOf {
5522
- /**
5523
- * ID of a site visitor that has not logged in to the site.
5524
- * @format GUID
5525
- */
5526
- anonymousVisitorId?: string;
5527
- /**
5528
- * ID of a site visitor that has logged in to the site.
5529
- * @format GUID
5530
- */
5531
- memberId?: string;
5532
- /**
5533
- * ID of a Wix user (site owner, contributor, etc.).
5534
- * @format GUID
5535
- */
5536
- wixUserId?: string;
5537
- /**
5538
- * ID of an app.
5539
- * @format GUID
5540
- */
5541
- appId?: string;
5542
- /** @readonly */
5543
- identityType?: WebhookIdentityTypeWithLiterals;
5544
- }
5545
- /** @oneof */
5546
- interface IdentificationDataIdOneOf {
5547
- /**
5548
- * ID of a site visitor that has not logged in to the site.
5549
- * @format GUID
5550
- */
5551
- anonymousVisitorId?: string;
5552
- /**
5553
- * ID of a site visitor that has logged in to the site.
5554
- * @format GUID
5555
- */
5556
- memberId?: string;
5557
- /**
5558
- * ID of a Wix user (site owner, contributor, etc.).
5559
- * @format GUID
5560
- */
5561
- wixUserId?: string;
5562
- /**
5563
- * ID of an app.
5564
- * @format GUID
5565
- */
5566
- appId?: string;
5567
- }
5568
- declare enum WebhookIdentityType {
5569
- UNKNOWN = "UNKNOWN",
5570
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
5571
- MEMBER = "MEMBER",
5572
- WIX_USER = "WIX_USER",
5573
- APP = "APP"
5574
- }
5575
- /** @enumType */
5576
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
5577
5577
  interface UpsertContactFromSubmissionRequest {
5578
5578
  /**
5579
5579
  * Submission from which contact needs to be upserted.
@@ -6661,6 +6661,23 @@ declare enum SubmissionErrorType {
6661
6661
  }
6662
6662
  /** @enumType */
6663
6663
  type SubmissionErrorTypeWithLiterals = SubmissionErrorType | 'UNKNOWN_ERROR' | 'TYPE_ERROR' | 'REQUIRED_VALUE_ERROR' | 'UNKNOWN_VALUE_ERROR' | 'MAX_LENGTH_ERROR' | 'MIN_LENGTH_ERROR' | 'PATTERN_ERROR' | 'FORMAT_ERROR' | 'MAX_VALUE_ERROR' | 'MIN_VALUE_ERROR' | 'MULTIPLE_OF_VALUE_ERROR' | 'MIN_ITEMS_ERROR' | 'MAX_ITEMS_ERROR' | 'NOT_ALLOWED_VALUE_ERROR' | 'DISABLED_FORM_ERROR';
6664
+ interface AccountDetails {
6665
+ /**
6666
+ * ID of the account.
6667
+ * @format GUID
6668
+ */
6669
+ accountId?: string | null;
6670
+ /**
6671
+ * ID of the parent account.
6672
+ * @format GUID
6673
+ */
6674
+ parentAccountId?: string | null;
6675
+ /**
6676
+ * ID of the site, if applicable.
6677
+ * @format GUID
6678
+ */
6679
+ siteId?: string | null;
6680
+ }
6664
6681
  /** @docsIgnore */
6665
6682
  type CreateSubmissionApplicationErrors = {
6666
6683
  code?: 'INVALID_CAPTCHA';
@@ -7676,4 +7693,4 @@ interface ValidateFormSubmissionOptions {
7676
7693
  fieldsToValidate?: string[];
7677
7694
  }
7678
7695
 
7679
- export { ProductType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, StringTypeFormatEnumFormat as Z, ValidationFormat as _, type UpsertContactFromSubmissionResponse as a, Format as a$, PriceType as a0, FieldType as a1, FormatEnumFormat as a2, StringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, Scaling as aF, LayoutDataImagePosition as aG, VerticalAlignmentAlignment as aH, ResponsivenessBehaviour as aI, DesignTarget as aJ, ImagePosition as aK, Alignment as aL, ImageFit as aM, NumberOfColumns as aN, FirstDayOfWeek as aO, NumberComponentType as aP, BooleanComponentType as aQ, ItemType as aR, PropertiesTypeEnum as aS, ArrayComponentType as aT, WixFileComponentType as aU, UploadFileFormat as aV, PaymentComponentType as aW, ComponentType as aX, Type as aY, ObjectArrayComponentType as aZ, SchedulingComponentType as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type PredefinedValidation as b$, InputType as b0, EmailInfoTag as b1, PhoneInfoTag as b2, Tag as b3, ConfirmationLevel as b4, ContactField as b5, DisplayFieldType as b6, OverrideEntityType as b7, Kind as b8, FormFieldContactInfoEmailInfoTag as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type CreateCheckoutFromSubmissionRequest as bE, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bF, type Form as bG, type FormField as bH, type FormFieldStringType as bI, type FormFieldStringTypeFormatOptionsOneOf as bJ, type StringErrorMessages as bK, type StringTypeDateTimeConstraints as bL, type StringTypePhoneConstraints as bM, type StringTypeValidationMessages as bN, type FormFieldNumberType as bO, type NumberErrorMessages as bP, type IntegerType as bQ, type FormFieldBooleanType as bR, type BooleanErrorMessages as bS, type FormFieldArrayType as bT, type FormFieldObjectType as bU, type ObjectTypePropertiesType as bV, type ObjectTypePropertiesTypePropertiesTypeOneOf as bW, type ObjectErrorMessages as bX, type ArrayTypeArrayItems as bY, type ArrayTypeArrayItemsItemsOneOf as bZ, type ArrayErrorMessages as b_, FormFieldContactInfoPhoneInfoTag as ba, AddressInfoTag as bb, SubscriptionInfoOptInLevel as bc, FormFieldContactInfoContactField as bd, SpamFilterProtectionLevel as be, RequiredIndicator as bf, RequiredIndicatorPlacement as bg, Target as bh, SubmitSuccessAction as bi, ChangeableProperty as bj, OverrideEntityTypeEnumOverrideEntityType as bk, Operator as bl, WebhookIdentityType as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type HTMLDataDataOneOf as c$, type PredefinedValidationFormatOptionsOneOf as c0, type PaymentType as c1, type QuantityLimit as c2, type FixedPriceOptions as c3, type DynamicPriceOptions as c4, type Product as c5, type ProductPriceOptionsOneOf as c6, type MultilineAddressValidation as c7, type FieldOverrides as c8, type FieldsOverrides as c9, type Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ObjectArrayType as ca, type NestedFormFieldOverrides as cb, type Validation as cc, type ValidationValidationOneOf as cd, type DataExtensionsDetails as ce, type NestedFormOverrides as cf, type Field as cg, type FieldFieldTypeOptionsOneOf as ch, type InputField as ci, type InputFieldInputTypeOptionsOneOf as cj, type StringType as ck, type StringTypeFormatOptionsOneOf as cl, type DateTimeConstraints as cm, type PhoneConstraints as cn, type ValidationMessages as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type DocumentStyle as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type EventData as dA, type ButtonStyles as dB, type ImageStyles as dC, type RibbonStyles as dD, type CardStyles as dE, type PricingData as dF, type VideoData as dG, type PlaybackOptions as dH, type EmbedData as dI, type Oembed as dJ, type CollapsibleListData as dK, type TableData as dL, type Dimensions as dM, type TableCellData as dN, type CellStyle as dO, type BorderColors as dP, type BorderWidths as dQ, type ListValue as dR, type AudioData as dS, type OrderedListData as dT, type BulletedListData as dU, type BlockquoteData as dV, type CaptionData as dW, type LayoutData as dX, type BackgroundImage as dY, type LayoutCellData as dZ, type Metadata as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type FontFamilyData as dw, type AppEmbedData as dx, type AppEmbedDataAppDataOneOf as dy, type BookingData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoAdditionalInfoOneOf as e$, type TextNodeStyle as e0, type MediaItem as e1, type MediaItemMediaOneOf as e2, type MediaSettings as e3, type RadioGroup as e4, type RadioGroupOption as e5, type CustomOption as e6, type Dropdown as e7, type DropdownOption as e8, type DateTimeInput as e9, type ProductCheckboxGroup as eA, type ProductCheckboxGroupOption as eB, type DonationInput as eC, type DonationInputOption as eD, type PaymentInput as eE, type FixedPayment as eF, type MultilineAddress as eG, type AddressLine2 as eH, type DefaultCountryConfig as eI, type DefaultCountryConfigOptionsOneOf as eJ, type FieldsSettings as eK, type Repeater as eL, type FormLayout as eM, type BreakPoint as eN, type ItemLayout as eO, type ItemLayoutItemOneOf as eP, type Group as eQ, type Margin as eR, type Section as eS, type Appointment as eT, type AppointmentFormatInfoOneOf as eU, type Location as eV, type LocationLocationInfoOneOf as eW, type InPersonOptions as eX, type VideoConferenceOptions as eY, type PhoneOptions as eZ, type FormFieldContactInfo as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServiceOption as ef, type Password as eg, type NumberType as eh, type NumberInput as ei, type RatingInput as ej, type BooleanType as ek, type Checkbox as el, type ArrayType as em, type ObjectType as en, type PropertiesType as eo, type PropertiesTypePropertiesTypeOptionsOneOf as ep, type ArrayItems as eq, type ArrayItemsItemTypeOptionsOneOf as er, type CheckboxGroup as es, type Option as et, type ComponentsTags as eu, type TagsOption as ev, type ServicesCheckboxGroup as ew, type FileType as ex, type FileUpload as ey, type Signature as ez, type ConfirmSubmissionResponse as f, type TagsTagList as f$, type EmailInfo as f0, type PhoneInfo as f1, type AddressInfo as f2, type CustomFieldInfo as f3, type SubscriptionInfo as f4, type _String as f5, type _StringComponentTypeOptionsOneOf as f6, type _Number as f7, type _NumberComponentTypeOptionsOneOf as f8, type _Boolean as f9, type FormFieldContactInfoEmailInfo as fA, type FormFieldContactInfoPhoneInfo as fB, type FormFieldContactInfoAddressInfo as fC, type FormFieldContactInfoCustomFieldInfo as fD, type FormFieldContactInfoSubscriptionInfo as fE, type NestedForm as fF, type LimitationRule as fG, type RequiredIndicatorProperties as fH, type SubmitSettings as fI, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fJ, type ThankYouMessageOptions as fK, type RedirectOptions as fL, type FieldGroup as fM, type Rule as fN, type RequiredOptions as fO, type HiddenOptions as fP, type AllowedValuesOptions as fQ, type FieldOverride as fR, type FieldOverridePropertyTypeOptionsOneOf as fS, type ConditionNode as fT, type ConditionNodeNodeOneOf as fU, type AndCondition as fV, type OrCondition as fW, type Condition as fX, type RuleFormOverride as fY, type RuleFormOverrideEntityTypeOptionsOneOf as fZ, type Tags as f_, type _BooleanComponentTypeOptionsOneOf as fa, type _Array as fb, type _ArrayComponentTypeOptionsOneOf as fc, type _Object as fd, type WixFile as fe, type WixFileComponentTypeOptionsOneOf as ff, type Payment as fg, type PaymentComponentTypeOptionsOneOf as fh, type Scheduling as fi, type SchedulingComponentTypeOptionsOneOf as fj, type Address as fk, type AddressComponentTypeOptionsOneOf as fl, type ObjectArray as fm, type ObjectArrayComponentTypeOptionsOneOf as fn, type DisplayField as fo, type DisplayFieldDisplayFieldTypeOptionsOneOf as fp, type RichContentOptions as fq, type PageNavigationOptions as fr, type Step as fs, type FormRule as ft, type FormOverride as fu, type FormProperties as fv, type PostSubmissionTriggers as fw, type UpsertContact as fx, type V4FormFieldContactInfo as fy, type V4FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceForExportResponse as g$, type CreateCheckoutFromSubmissionResponse as g0, type Checkout as g1, type IsFormSubmittableRequest as g2, type IsFormSubmittableResponse as g3, type DomainEvent as g4, type DomainEventBodyOneOf as g5, type EntityCreatedEvent as g6, type RestoreInfo as g7, type EntityUpdatedEvent as g8, type EntityDeletedEvent as g9, type GetSubmissionByCheckoutIdRequest as gA, type GetSubmissionByCheckoutIdResponse as gB, type UpdateSubmissionRequest as gC, type UpdateSubmissionResponse as gD, type ConfirmSubmissionRequest as gE, type DeleteSubmissionRequest as gF, type DeleteSubmissionResponse as gG, type BulkDeleteSubmissionRequest as gH, type BulkDeleteSubmissionResult as gI, type RestoreSubmissionFromTrashBinRequest as gJ, type RemoveSubmissionFromTrashBinRequest as gK, type RemoveSubmissionFromTrashBinResponse as gL, type BulkRemoveSubmissionFromTrashBinRequest as gM, type BulkRemoveSubmissionFromTrashBinResult as gN, type ListDeletedSubmissionsRequest as gO, type CursorPaging as gP, type CursorPagingMetadata as gQ, type Cursors as gR, type GetDeletedSubmissionRequest as gS, type QuerySubmissionRequest as gT, type CursorQueryPagingMethodOneOf as gU, type Sorting as gV, type SearchSubmissionsByNamespaceRequest as gW, type CursorSearch as gX, type CursorSearchPagingMethodOneOf as gY, type SearchDetails as gZ, type SearchSubmissionsByNamespaceForExportRequest as g_, type ActionEvent as ga, type Empty as gb, type MessageEnvelope as gc, type IdentificationData as gd, type IdentificationDataIdOneOf as ge, type UpsertContactFromSubmissionRequest as gf, type SubmitContactResponse as gg, type CreateSubmissionRequest as gh, type CreateSubmissionResponse as gi, type SubmissionValidationErrorsDetails as gj, type ValidationError as gk, type CreateSubmissionForMigrationRequest as gl, type CreateSubmissionForMigrationResponse as gm, type BulkCreateSubmissionsForMigrationRequest as gn, type BulkCreateSubmissionsForMigrationResponse as go, type BulkSubmissionResult as gp, type ItemMetadata as gq, type ApplicationError as gr, type BulkActionMetadata as gs, type CreateSubmissionBySubmitterRequest as gt, type CreateSubmissionBySubmitterResponse as gu, type BulkCreateSubmissionBySubmitterRequest as gv, type BulkCreateSubmissionBySubmitterData as gw, type BulkCreateSubmissionBySubmitterResponse as gx, type GetSubmissionRequest as gy, type GetSubmissionResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type QuerySubmissionsByNamespaceRequest as h0, type QuerySubmissionsByNamespaceResponse as h1, type QuerySubmissionsByNamespaceForExportRequest as h2, type QuerySubmissionsByNamespaceForExportResponse as h3, type CountSubmissionsByFilterRequest as h4, type FormSubmissionsCount as h5, type CountSubmissionsRequest as h6, type CountDeletedSubmissionsRequest as h7, type FormDeletedSubmissionsCount as h8, type GetMediaUploadURLRequest as h9, type FormSubmissionSearchSpec as hA, type SubmissionsQueryResult as hB, type FormSubmissionQuerySpec as hC, type BulkUpdateFormSubmissionTagsOptions as hD, type BulkUpdateFormSubmissionTagsByFilterOptions as hE, type SubmissionStatusWithLiterals as hF, type OptInLevelWithLiterals as hG, type StringTypeFormatEnumFormatWithLiterals as hH, type ValidationFormatWithLiterals as hI, type ProductTypeWithLiterals as hJ, type PriceTypeWithLiterals as hK, type FieldTypeWithLiterals as hL, type FormatEnumFormatWithLiterals as hM, type StringComponentTypeWithLiterals as hN, type NodeTypeWithLiterals as hO, type WidthTypeWithLiterals as hP, type PluginContainerDataAlignmentWithLiterals as hQ, type ButtonDataTypeWithLiterals as hR, type LinkTargetWithLiterals as hS, type TextAlignmentWithLiterals as hT, type LineStyleWithLiterals as hU, type WidthWithLiterals as hV, type DividerDataAlignmentWithLiterals as hW, type ViewModeWithLiterals as hX, type LayoutTypeWithLiterals as hY, type OrientationWithLiterals as hZ, type CropWithLiterals as h_, type BulkMarkSubmissionsAsSeenRequest as ha, type GetSubmissionDownloadUrlRequest as hb, type SubmissionDocument as hc, type SubmissionDocumentDocumentOneOf as hd, type DocumentReady as he, type DownloadSubmissionRequest as hf, type HeadersEntry as hg, type GetFormattedSubmissionRequest as hh, type FormattedSubmission as hi, type ListFormattedSubmissionsRequest as hj, type ListFormattedSubmissionsResponse as hk, type FormattedFormSubmission as hl, type UpdateExtendedFieldsRequest as hm, type BulkUpdateFormSubmissionTagsRequest as hn, type BulkUpdateFormSubmissionTagsResponse as ho, type BulkUpdateFormSubmissionTagsResult as hp, type BulkUpdateFormSubmissionTagsByFilterRequest as hq, type BulkUpdateFormSubmissionTagsByFilterResponse as hr, type ValidateFormSubmissionRequest as hs, type FieldViolation as ht, type FieldViolationErrorDataOneOf as hu, type SubmissionValidationErrors as hv, type SubmissionValidationError as hw, type SubmissionValidationErrorErrorMessageOneOf as hx, type BaseEventMetadata as hy, type EventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type RequiredIndicatorWithLiterals as i$, type GIFTypeWithLiterals as i0, type SourceWithLiterals as i1, type StylesPositionWithLiterals as i2, type MapTypeWithLiterals as i3, type ViewRoleWithLiterals as i4, type VoteRoleWithLiterals as i5, type PollLayoutTypeWithLiterals as i6, type PollLayoutDirectionWithLiterals as i7, type BackgroundTypeWithLiterals as i8, type DecorationTypeWithLiterals as i9, type BooleanComponentTypeWithLiterals as iA, type ItemTypeWithLiterals as iB, type PropertiesTypeEnumWithLiterals as iC, type ArrayComponentTypeWithLiterals as iD, type WixFileComponentTypeWithLiterals as iE, type UploadFileFormatWithLiterals as iF, type PaymentComponentTypeWithLiterals as iG, type ComponentTypeWithLiterals as iH, type TypeWithLiterals as iI, type ObjectArrayComponentTypeWithLiterals as iJ, type SchedulingComponentTypeWithLiterals as iK, type FormatWithLiterals as iL, type InputTypeWithLiterals as iM, type EmailInfoTagWithLiterals as iN, type PhoneInfoTagWithLiterals as iO, type TagWithLiterals as iP, type ConfirmationLevelWithLiterals as iQ, type ContactFieldWithLiterals as iR, type DisplayFieldTypeWithLiterals as iS, type OverrideEntityTypeWithLiterals as iT, type KindWithLiterals as iU, type FormFieldContactInfoEmailInfoTagWithLiterals as iV, type FormFieldContactInfoPhoneInfoTagWithLiterals as iW, type AddressInfoTagWithLiterals as iX, type SubscriptionInfoOptInLevelWithLiterals as iY, type FormFieldContactInfoContactFieldWithLiterals as iZ, type SpamFilterProtectionLevelWithLiterals as i_, type FontTypeWithLiterals as ia, type PositionWithLiterals as ib, type AspectRatioWithLiterals as ic, type ResizingWithLiterals as id, type PlacementWithLiterals as ie, type CardStylesTypeWithLiterals as ig, type CardStylesAlignmentWithLiterals as ih, type LayoutWithLiterals as ii, type AppTypeWithLiterals as ij, type InitialExpandedItemsWithLiterals as ik, type DirectionWithLiterals as il, type VerticalAlignmentWithLiterals as im, type NullValueWithLiterals as io, type ScalingWithLiterals as ip, type LayoutDataImagePositionWithLiterals as iq, type VerticalAlignmentAlignmentWithLiterals as ir, type ResponsivenessBehaviourWithLiterals as is, type DesignTargetWithLiterals as it, type ImagePositionWithLiterals as iu, type AlignmentWithLiterals as iv, type ImageFitWithLiterals as iw, type NumberOfColumnsWithLiterals as ix, type FirstDayOfWeekWithLiterals as iy, type NumberComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorPlacementWithLiterals as j0, type TargetWithLiterals as j1, type SubmitSuccessActionWithLiterals as j2, type ChangeablePropertyWithLiterals as j3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j4, type OperatorWithLiterals as j5, type WebhookIdentityTypeWithLiterals as j6, type IdentityTypeWithLiterals as j7, type ErrorTypeWithLiterals as j8, type SortOrderWithLiterals as j9, countSubmissionsByFilter as jA, countSubmissions as jB, countDeletedSubmissions as jC, getMediaUploadUrl as jD, bulkMarkSubmissionsAsSeen as jE, getSubmissionDownloadUrl as jF, downloadSubmission as jG, getFormattedSubmission as jH, updateExtendedFields as jI, validateFormSubmission as jJ, type ModeWithLiterals as ja, type StatusWithLiterals as jb, type SubmissionErrorTypeWithLiterals as jc, type CommonSearchWithEntityContext as jd, type CommonQueryWithEntityContext as je, onSubmissionCreated as jf, onSubmissionDeleted as jg, onSubmissionRemovedSubmissionFromTrash as jh, onSubmissionStatusUpdated as ji, onSubmissionContactMapped as jj, onSubmissionContactMappingSkipped as jk, onSubmissionUpdated as jl, upsertContactFromSubmission as jm, createSubmission as jn, getSubmission as jo, updateSubmission as jp, confirmSubmission as jq, deleteSubmission as jr, bulkDeleteSubmission as js, restoreSubmissionFromTrashBin as jt, removeSubmissionFromTrashBin as ju, bulkRemoveSubmissionFromTrashBin as jv, listDeletedSubmissions as jw, getDeletedSubmission as jx, querySubmission as jy, querySubmissionsByNamespace as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7696
+ export { ValidationFormat as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type FormFieldBooleanType as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type CreateCheckoutFromSubmissionRequest as bO, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bP, type Form as bQ, type FormField as bR, type FormFieldStringType as bS, type FormFieldStringTypeFormatOptionsOneOf as bT, type StringErrorMessages as bU, type StringTypeDateTimeConstraints as bV, type StringTypePhoneConstraints as bW, type StringTypeValidationMessages as bX, type FormFieldNumberType as bY, type NumberErrorMessages as bZ, type IntegerType as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type Item as c$, type BooleanErrorMessages as c0, type FormFieldArrayType as c1, type FormFieldObjectType as c2, type ObjectTypePropertiesType as c3, type ObjectTypePropertiesTypePropertiesTypeOneOf as c4, type ObjectErrorMessages as c5, type ArrayTypeArrayItems as c6, type ArrayTypeArrayItemsItemsOneOf as c7, type ArrayErrorMessages as c8, type PredefinedValidation as c9, type RichContent as cA, type Node as cB, type NodeDataOneOf as cC, type NodeStyle as cD, type ButtonData as cE, type Border as cF, type Colors as cG, type PluginContainerData as cH, type PluginContainerDataWidth as cI, type PluginContainerDataWidthDataOneOf as cJ, type Spoiler as cK, type Height as cL, type Styles as cM, type Link as cN, type LinkDataOneOf as cO, type Rel as cP, type CodeBlockData as cQ, type TextStyle as cR, type DividerData as cS, type FileData as cT, type FileSource as cU, type FileSourceDataOneOf as cV, type PDFSettings as cW, type GalleryData as cX, type Media as cY, type Image as cZ, type Video as c_, type PredefinedValidationFormatOptionsOneOf as ca, type PaymentType as cb, type QuantityLimit as cc, type FixedPriceOptions as cd, type DynamicPriceOptions as ce, type Product as cf, type ProductPriceOptionsOneOf as cg, type MultilineAddressValidation as ch, type FieldOverrides as ci, type FieldsOverrides as cj, type ObjectArrayType as ck, type NestedFormFieldOverrides as cl, type Validation as cm, type ValidationValidationOneOf as cn, type DataExtensionsDetails as co, type NestedFormOverrides as cp, type Field as cq, type FieldFieldTypeOptionsOneOf as cr, type InputField as cs, type InputFieldInputTypeOptionsOneOf as ct, type StringType as cu, type StringTypeFormatOptionsOneOf as cv, type DateTimeConstraints as cw, type PhoneConstraints as cx, type ValidationMessages as cy, type TextInput as cz, type UpdateSubmission as d, type ListValue as d$, type ItemDataOneOf as d0, type GalleryOptions as d1, type GalleryOptionsLayout as d2, type ItemStyle as d3, type Thumbnails as d4, type GIFData as d5, type GIF as d6, type HeadingData as d7, type HTMLData as d8, type HTMLDataDataOneOf as d9, type AnchorData as dA, type ColorData as dB, type LinkData as dC, type MentionData as dD, type FontSizeData as dE, type SpoilerData as dF, type FontFamilyData as dG, type AppEmbedData as dH, type AppEmbedDataAppDataOneOf as dI, type BookingData as dJ, type EventData as dK, type ButtonStyles as dL, type ImageStyles as dM, type RibbonStyles as dN, type CardStyles as dO, type PricingData as dP, type VideoData as dQ, type PlaybackOptions as dR, type EmbedData as dS, type Oembed as dT, type CollapsibleListData as dU, type TableData as dV, type Dimensions as dW, type TableCellData as dX, type CellStyle as dY, type BorderColors as dZ, type BorderWidths as d_, type ImageData as da, type StylesBorder as db, type ImageDataStyles as dc, type LinkPreviewData as dd, type LinkPreviewDataStyles as de, type MapData as df, type MapSettings as dg, type ParagraphData as dh, type PollData as di, type Permissions as dj, type PollOption as dk, type Settings as dl, type PollLayout as dm, type OptionLayout as dn, type Gradient as dp, type Background as dq, type BackgroundBackgroundOneOf as dr, type PollDesign as ds, type OptionDesign as dt, type Poll as du, type PollDataLayout as dv, type Design as dw, type TextData as dx, type Decoration as dy, type DecorationDataOneOf as dz, type UpdateSubmissionValidationErrors as e, type Margin as e$, type AudioData as e0, type OrderedListData as e1, type BulletedListData as e2, type BlockquoteData as e3, type CaptionData as e4, type LayoutData as e5, type BackgroundImage as e6, type LayoutCellData as e7, type Metadata as e8, type DocumentStyle as e9, type ArrayItems as eA, type ArrayItemsItemTypeOptionsOneOf as eB, type CheckboxGroup as eC, type Option as eD, type ComponentsTags as eE, type TagsOption as eF, type ServicesCheckboxGroup as eG, type FileType as eH, type FileUpload as eI, type Signature as eJ, type ProductCheckboxGroup as eK, type ProductCheckboxGroupOption as eL, type DonationInput as eM, type DonationInputOption as eN, type PaymentInput as eO, type FixedPayment as eP, type MultilineAddress as eQ, type AddressLine2 as eR, type DefaultCountryConfig as eS, type DefaultCountryConfigOptionsOneOf as eT, type FieldsSettings as eU, type Repeater as eV, type FormLayout as eW, type BreakPoint as eX, type ItemLayout as eY, type ItemLayoutItemOneOf as eZ, type Group as e_, type TextNodeStyle as ea, type MediaItem as eb, type MediaItemMediaOneOf as ec, type MediaSettings as ed, type RadioGroup as ee, type RadioGroupOption as ef, type CustomOption as eg, type Dropdown as eh, type DropdownOption as ei, type DateTimeInput as ej, type PhoneInput as ek, type DateInput as el, type TimeInput as em, type DatePicker as en, type ServicesDropdown as eo, type ServiceOption as ep, type Password as eq, type NumberType as er, type NumberInput as es, type RatingInput as et, type BooleanType as eu, type Checkbox as ev, type ArrayType as ew, type ObjectType as ex, type PropertiesType as ey, type PropertiesTypePropertiesTypeOptionsOneOf as ez, type ConfirmSubmissionResponse as f, type FieldOverride as f$, type Section as f0, type Appointment as f1, type AppointmentFormatInfoOneOf as f2, type Location as f3, type LocationLocationInfoOneOf as f4, type InPersonOptions as f5, type VideoConferenceOptions as f6, type PhoneOptions as f7, type FormFieldContactInfo as f8, type FormFieldContactInfoAdditionalInfoOneOf as f9, type RichContentOptions as fA, type PageNavigationOptions as fB, type Step as fC, type FormRule as fD, type FormOverride as fE, type FormProperties as fF, type PostSubmissionTriggers as fG, type UpsertContact as fH, type V4FormFieldContactInfo as fI, type V4FormFieldContactInfoAdditionalInfoOneOf as fJ, type FormFieldContactInfoEmailInfo as fK, type FormFieldContactInfoPhoneInfo as fL, type FormFieldContactInfoAddressInfo as fM, type FormFieldContactInfoCustomFieldInfo as fN, type FormFieldContactInfoSubscriptionInfo as fO, type NestedForm as fP, type LimitationRule as fQ, type RequiredIndicatorProperties as fR, type SubmitSettings as fS, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fT, type ThankYouMessageOptions as fU, type RedirectOptions as fV, type FieldGroup as fW, type Rule as fX, type RequiredOptions as fY, type HiddenOptions as fZ, type AllowedValuesOptions as f_, type EmailInfo as fa, type PhoneInfo as fb, type AddressInfo as fc, type CustomFieldInfo as fd, type SubscriptionInfo as fe, type _String as ff, type _StringComponentTypeOptionsOneOf as fg, type _Number as fh, type _NumberComponentTypeOptionsOneOf as fi, type _Boolean as fj, type _BooleanComponentTypeOptionsOneOf as fk, type _Array as fl, type _ArrayComponentTypeOptionsOneOf as fm, type _Object as fn, type WixFile as fo, type WixFileComponentTypeOptionsOneOf as fp, type Payment as fq, type PaymentComponentTypeOptionsOneOf as fr, type Scheduling as fs, type SchedulingComponentTypeOptionsOneOf as ft, type Address as fu, type AddressComponentTypeOptionsOneOf as fv, type ObjectArray as fw, type ObjectArrayComponentTypeOptionsOneOf as fx, type DisplayField as fy, type DisplayFieldDisplayFieldTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceForExportResponse as g$, type FieldOverridePropertyTypeOptionsOneOf as g0, type ConditionNode as g1, type ConditionNodeNodeOneOf as g2, type AndCondition as g3, type OrCondition as g4, type Condition as g5, type RuleFormOverride as g6, type RuleFormOverrideEntityTypeOptionsOneOf as g7, type Tags as g8, type TagsTagList as g9, type GetSubmissionByCheckoutIdRequest as gA, type GetSubmissionByCheckoutIdResponse as gB, type UpdateSubmissionRequest as gC, type UpdateSubmissionResponse as gD, type ConfirmSubmissionRequest as gE, type DeleteSubmissionRequest as gF, type DeleteSubmissionResponse as gG, type BulkDeleteSubmissionRequest as gH, type BulkDeleteSubmissionResult as gI, type RestoreSubmissionFromTrashBinRequest as gJ, type RemoveSubmissionFromTrashBinRequest as gK, type RemoveSubmissionFromTrashBinResponse as gL, type BulkRemoveSubmissionFromTrashBinRequest as gM, type BulkRemoveSubmissionFromTrashBinResult as gN, type ListDeletedSubmissionsRequest as gO, type CursorPaging as gP, type CursorPagingMetadata as gQ, type Cursors as gR, type GetDeletedSubmissionRequest as gS, type QuerySubmissionRequest as gT, type CursorQueryPagingMethodOneOf as gU, type Sorting as gV, type SearchSubmissionsByNamespaceRequest as gW, type CursorSearch as gX, type CursorSearchPagingMethodOneOf as gY, type SearchDetails as gZ, type SearchSubmissionsByNamespaceForExportRequest as g_, type CreateCheckoutFromSubmissionResponse as ga, type Checkout as gb, type IsFormSubmittableRequest as gc, type IsFormSubmittableResponse as gd, type Empty as ge, type UpsertContactFromSubmissionRequest as gf, type SubmitContactResponse as gg, type CreateSubmissionRequest as gh, type CreateSubmissionResponse as gi, type SubmissionValidationErrorsDetails as gj, type ValidationError as gk, type CreateSubmissionForMigrationRequest as gl, type CreateSubmissionForMigrationResponse as gm, type BulkCreateSubmissionsForMigrationRequest as gn, type BulkCreateSubmissionsForMigrationResponse as go, type BulkSubmissionResult as gp, type ItemMetadata as gq, type ApplicationError as gr, type BulkActionMetadata as gs, type CreateSubmissionBySubmitterRequest as gt, type CreateSubmissionBySubmitterResponse as gu, type BulkCreateSubmissionBySubmitterRequest as gv, type BulkCreateSubmissionBySubmitterData as gw, type BulkCreateSubmissionBySubmitterResponse as gx, type GetSubmissionRequest as gy, type GetSubmissionResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type OrientationWithLiterals as h$, type QuerySubmissionsByNamespaceRequest as h0, type QuerySubmissionsByNamespaceResponse as h1, type QuerySubmissionsByNamespaceForExportRequest as h2, type QuerySubmissionsByNamespaceForExportResponse as h3, type CountSubmissionsByFilterRequest as h4, type FormSubmissionsCount as h5, type CountSubmissionsRequest as h6, type CountDeletedSubmissionsRequest as h7, type FormDeletedSubmissionsCount as h8, type GetMediaUploadURLRequest as h9, type EventMetadata as hA, type FormSubmissionSearchSpec as hB, type SubmissionsQueryResult as hC, type FormSubmissionQuerySpec as hD, type BulkUpdateFormSubmissionTagsOptions as hE, type BulkUpdateFormSubmissionTagsByFilterOptions as hF, type SubmissionStatusWithLiterals as hG, type OptInLevelWithLiterals as hH, type WebhookIdentityTypeWithLiterals as hI, type StringTypeFormatEnumFormatWithLiterals as hJ, type ValidationFormatWithLiterals as hK, type ProductTypeWithLiterals as hL, type PriceTypeWithLiterals as hM, type FieldTypeWithLiterals as hN, type FormatEnumFormatWithLiterals as hO, type StringComponentTypeWithLiterals as hP, type NodeTypeWithLiterals as hQ, type WidthTypeWithLiterals as hR, type PluginContainerDataAlignmentWithLiterals as hS, type ButtonDataTypeWithLiterals as hT, type LinkTargetWithLiterals as hU, type TextAlignmentWithLiterals as hV, type LineStyleWithLiterals as hW, type WidthWithLiterals as hX, type DividerDataAlignmentWithLiterals as hY, type ViewModeWithLiterals as hZ, type LayoutTypeWithLiterals as h_, type BulkMarkSubmissionsAsSeenRequest as ha, type GetSubmissionDownloadUrlRequest as hb, type SubmissionDocument as hc, type SubmissionDocumentDocumentOneOf as hd, type DocumentReady as he, type DownloadSubmissionRequest as hf, type HeadersEntry as hg, type GetFormattedSubmissionRequest as hh, type FormattedSubmission as hi, type ListFormattedSubmissionsRequest as hj, type ListFormattedSubmissionsResponse as hk, type FormattedFormSubmission as hl, type UpdateExtendedFieldsRequest as hm, type BulkUpdateFormSubmissionTagsRequest as hn, type BulkUpdateFormSubmissionTagsResponse as ho, type BulkUpdateFormSubmissionTagsResult as hp, type BulkUpdateFormSubmissionTagsByFilterRequest as hq, type BulkUpdateFormSubmissionTagsByFilterResponse as hr, type ValidateFormSubmissionRequest as hs, type FieldViolation as ht, type FieldViolationErrorDataOneOf as hu, type SubmissionValidationErrors as hv, type SubmissionValidationError as hw, type SubmissionValidationErrorErrorMessageOneOf as hx, type AccountDetails as hy, type BaseEventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FormFieldContactInfoContactFieldWithLiterals as i$, type CropWithLiterals as i0, type ThumbnailsAlignmentWithLiterals as i1, type GIFTypeWithLiterals as i2, type SourceWithLiterals as i3, type StylesPositionWithLiterals as i4, type MapTypeWithLiterals as i5, type ViewRoleWithLiterals as i6, type VoteRoleWithLiterals as i7, type PollLayoutTypeWithLiterals as i8, type PollLayoutDirectionWithLiterals as i9, type FirstDayOfWeekWithLiterals as iA, type NumberComponentTypeWithLiterals as iB, type BooleanComponentTypeWithLiterals as iC, type ItemTypeWithLiterals as iD, type PropertiesTypeEnumWithLiterals as iE, type ArrayComponentTypeWithLiterals as iF, type WixFileComponentTypeWithLiterals as iG, type UploadFileFormatWithLiterals as iH, type PaymentComponentTypeWithLiterals as iI, type ComponentTypeWithLiterals as iJ, type TypeWithLiterals as iK, type ObjectArrayComponentTypeWithLiterals as iL, type SchedulingComponentTypeWithLiterals as iM, type FormatWithLiterals as iN, type InputTypeWithLiterals as iO, type EmailInfoTagWithLiterals as iP, type PhoneInfoTagWithLiterals as iQ, type TagWithLiterals as iR, type ConfirmationLevelWithLiterals as iS, type ContactFieldWithLiterals as iT, type DisplayFieldTypeWithLiterals as iU, type OverrideEntityTypeWithLiterals as iV, type KindWithLiterals as iW, type FormFieldContactInfoEmailInfoTagWithLiterals as iX, type FormFieldContactInfoPhoneInfoTagWithLiterals as iY, type AddressInfoTagWithLiterals as iZ, type SubscriptionInfoOptInLevelWithLiterals as i_, type BackgroundTypeWithLiterals as ia, type DecorationTypeWithLiterals as ib, type FontTypeWithLiterals as ic, type PositionWithLiterals as id, type AspectRatioWithLiterals as ie, type ResizingWithLiterals as ig, type PlacementWithLiterals as ih, type CardStylesTypeWithLiterals as ii, type CardStylesAlignmentWithLiterals as ij, type LayoutWithLiterals as ik, type AppTypeWithLiterals as il, type InitialExpandedItemsWithLiterals as im, type DirectionWithLiterals as io, type VerticalAlignmentWithLiterals as ip, type NullValueWithLiterals as iq, type ScalingWithLiterals as ir, type LayoutDataImagePositionWithLiterals as is, type VerticalAlignmentAlignmentWithLiterals as it, type ResponsivenessBehaviourWithLiterals as iu, type DesignTargetWithLiterals as iv, type ImagePositionWithLiterals as iw, type AlignmentWithLiterals as ix, type ImageFitWithLiterals as iy, type NumberOfColumnsWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SpamFilterProtectionLevelWithLiterals as j0, type RequiredIndicatorWithLiterals as j1, type RequiredIndicatorPlacementWithLiterals as j2, type TargetWithLiterals as j3, type SubmitSuccessActionWithLiterals as j4, type ChangeablePropertyWithLiterals as j5, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j6, type OperatorWithLiterals as j7, type IdentityTypeWithLiterals as j8, type ErrorTypeWithLiterals as j9, querySubmissionsByNamespace as jA, countSubmissionsByFilter as jB, countSubmissions as jC, countDeletedSubmissions as jD, getMediaUploadUrl as jE, bulkMarkSubmissionsAsSeen as jF, getSubmissionDownloadUrl as jG, downloadSubmission as jH, getFormattedSubmission as jI, updateExtendedFields as jJ, validateFormSubmission as jK, type SortOrderWithLiterals as ja, type ModeWithLiterals as jb, type StatusWithLiterals as jc, type SubmissionErrorTypeWithLiterals as jd, type CommonSearchWithEntityContext as je, type CommonQueryWithEntityContext as jf, onSubmissionCreated as jg, onSubmissionDeleted as jh, onSubmissionRemovedSubmissionFromTrash as ji, onSubmissionStatusUpdated as jj, onSubmissionContactMapped as jk, onSubmissionContactMappingSkipped as jl, onSubmissionUpdated as jm, upsertContactFromSubmission as jn, createSubmission as jo, getSubmission as jp, updateSubmission as jq, confirmSubmission as jr, deleteSubmission as js, bulkDeleteSubmission as jt, restoreSubmissionFromTrashBin as ju, removeSubmissionFromTrashBin as jv, bulkRemoveSubmissionFromTrashBin as jw, listDeletedSubmissions as jx, getDeletedSubmission as jy, querySubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-COlDPub4.mjs';
3
- export { ga as ActionEvent, fk as Address, fl as AddressComponentTypeOptionsOneOf, f2 as AddressInfo, bb as AddressInfoTag, iX as AddressInfoTagWithLiterals, eH as AddressLine2, aL as Alignment, iv as AlignmentWithLiterals, fQ as AllowedValuesOptions, dq as AnchorData, fV as AndCondition, dx as AppEmbedData, dy as AppEmbedDataAppDataOneOf, aA as AppType, ij as AppTypeWithLiterals, gr as ApplicationError, eT as Appointment, eU as AppointmentFormatInfoOneOf, aT as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, b_ as ArrayErrorMessages, eq as ArrayItems, er as ArrayItemsItemTypeOptionsOneOf, em as ArrayType, bY as ArrayTypeArrayItems, bZ as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, ic as AspectRatioWithLiterals, dS as AudioData, df as Background, dg as BackgroundBackgroundOneOf, dY as BackgroundImage, aq as BackgroundType, i8 as BackgroundTypeWithLiterals, hy as BaseEventMetadata, dV as BlockquoteData, dz as BookingData, aQ as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, bS as BooleanErrorMessages, ek as BooleanType, cv as Border, dP as BorderColors, dQ as BorderWidths, eN as BreakPoint, gs as BulkActionMetadata, gw as BulkCreateSubmissionBySubmitterData, gv as BulkCreateSubmissionBySubmitterRequest, gx as BulkCreateSubmissionBySubmitterResponse, gn as BulkCreateSubmissionsForMigrationRequest, go as BulkCreateSubmissionsForMigrationResponse, gH as BulkDeleteSubmissionRequest, gI as BulkDeleteSubmissionResult, ha as BulkMarkSubmissionsAsSeenRequest, gM as BulkRemoveSubmissionFromTrashBinRequest, gN as BulkRemoveSubmissionFromTrashBinResult, gp as BulkSubmissionResult, hE as BulkUpdateFormSubmissionTagsByFilterOptions, hq as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsByFilterResponse, hD as BulkUpdateFormSubmissionTagsOptions, hn as BulkUpdateFormSubmissionTagsRequest, ho as BulkUpdateFormSubmissionTagsResponse, hp as BulkUpdateFormSubmissionTagsResult, dU as BulletedListData, cu as ButtonData, a7 as ButtonDataType, hR as ButtonDataTypeWithLiterals, dB as ButtonStyles, dW as CaptionData, dE as CardStyles, ay as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, ax as CardStylesType, ig as CardStylesTypeWithLiterals, dO as CellStyle, bj as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, el as Checkbox, es as CheckboxGroup, g1 as Checkout, cG as CodeBlockData, dK as CollapsibleListData, dr as ColorData, cw as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, aX as ComponentType, iH as ComponentTypeWithLiterals, eu as ComponentsTags, fX as Condition, fT as ConditionNode, fU as ConditionNodeNodeOneOf, gE as ConfirmSubmissionRequest, b4 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, b5 as ContactField, iR as ContactFieldWithLiterals, h7 as CountDeletedSubmissionsRequest, h4 as CountSubmissionsByFilterRequest, h6 as CountSubmissionsRequest, bE as CreateCheckoutFromSubmissionRequest, bF as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g0 as CreateCheckoutFromSubmissionResponse, gt as CreateSubmissionBySubmitterRequest, gu as CreateSubmissionBySubmitterResponse, gl as CreateSubmissionForMigrationRequest, gm as CreateSubmissionForMigrationResponse, gh as CreateSubmissionRequest, gi as CreateSubmissionResponse, ag as Crop, h_ as CropWithLiterals, gP as CursorPaging, gQ as CursorPagingMetadata, gU as CursorQueryPagingMethodOneOf, gX as CursorSearch, gY as CursorSearchPagingMethodOneOf, gR as Cursors, f3 as CustomFieldInfo, e6 as CustomOption, ce as DataExtensionsDetails, eb as DateInput, ed as DatePicker, cm as DateTimeConstraints, e9 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, ar as DecorationType, i9 as DecorationTypeWithLiterals, eI as DefaultCountryConfig, eJ as DefaultCountryConfigOptionsOneOf, gF as DeleteSubmissionRequest, gG as DeleteSubmissionResponse, dl as Design, aJ as DesignTarget, it as DesignTargetWithLiterals, dM as Dimensions, aC as Direction, il as DirectionWithLiterals, fo as DisplayField, fp as DisplayFieldDisplayFieldTypeOptionsOneOf, b6 as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cI as DividerData, ac as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, he as DocumentReady, d$ as DocumentStyle, g4 as DomainEvent, g5 as DomainEventBodyOneOf, eC as DonationInput, eD as DonationInputOption, hf as DownloadSubmissionRequest, e7 as Dropdown, e8 as DropdownOption, c4 as DynamicPriceOptions, f0 as EmailInfo, b1 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dI as EmbedData, gb as Empty, g6 as EntityCreatedEvent, g9 as EntityDeletedEvent, g8 as EntityUpdatedEvent, bo as ErrorType, j8 as ErrorTypeWithLiterals, dA as EventData, hz as EventMetadata, bv as ExtendedFields, cg as Field, ch as FieldFieldTypeOptionsOneOf, fM as FieldGroup, fR as FieldOverride, fS as FieldOverridePropertyTypeOptionsOneOf, c8 as FieldOverrides, a1 as FieldType, hL as FieldTypeWithLiterals, ht as FieldViolation, hu as FieldViolationErrorDataOneOf, c9 as FieldsOverrides, eK as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, ex as FileType, ey as FileUpload, aO as FirstDayOfWeek, iy as FirstDayOfWeekWithLiterals, eF as FixedPayment, c3 as FixedPriceOptions, dw as FontFamilyData, du as FontSizeData, as as FontType, ia as FontTypeWithLiterals, bG as Form, h8 as FormDeletedSubmissionsCount, bH as FormField, bT as FormFieldArrayType, bR as FormFieldBooleanType, e_ as FormFieldContactInfo, e$ as FormFieldContactInfoAdditionalInfoOneOf, fC as FormFieldContactInfoAddressInfo, bd as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fD as FormFieldContactInfoCustomFieldInfo, fA as FormFieldContactInfoEmailInfo, b9 as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fB as FormFieldContactInfoPhoneInfo, ba as FormFieldContactInfoPhoneInfoTag, iW as FormFieldContactInfoPhoneInfoTagWithLiterals, fE as FormFieldContactInfoSubscriptionInfo, bO as FormFieldNumberType, bU as FormFieldObjectType, bI as FormFieldStringType, bJ as FormFieldStringTypeFormatOptionsOneOf, eM as FormLayout, fu as FormOverride, fv as FormProperties, ft as FormRule, hC as FormSubmissionQuerySpec, hA as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h5 as FormSubmissionsCount, a$ as Format, a2 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, hl as FormattedFormSubmission, hi as FormattedSubmission, cY as GIF, cX as GIFData, ai as GIFType, i0 as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, gS as GetDeletedSubmissionRequest, hh as GetFormattedSubmissionRequest, h9 as GetMediaUploadURLRequest, gA as GetSubmissionByCheckoutIdRequest, gB as GetSubmissionByCheckoutIdResponse, hb as GetSubmissionDownloadUrlRequest, gy as GetSubmissionRequest, gz as GetSubmissionResponse, de as Gradient, eQ as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hg as HeadersEntry, cZ as HeadingData, cB as Height, fP as HiddenOptions, gd as IdentificationData, ge as IdentificationDataIdOneOf, bn as IdentityType, j7 as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aM as ImageFit, iw as ImageFitWithLiterals, aK as ImagePosition, iu as ImagePositionWithLiterals, dC as ImageStyles, eX as InPersonOptions, aB as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, ci as InputField, cj as InputFieldInputTypeOptionsOneOf, b0 as InputType, iM as InputTypeWithLiterals, bQ as IntegerType, g2 as IsFormSubmittableRequest, g3 as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, eO as ItemLayout, eP as ItemLayoutItemOneOf, gq as ItemMetadata, cV as ItemStyle, aR as ItemType, iB as ItemTypeWithLiterals, b8 as Kind, iU as KindWithLiterals, az as Layout, dZ as LayoutCellData, dX as LayoutData, aG as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, ae as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fG as LimitationRule, aa as LineStyle, hU as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a8 as LinkTarget, hS as LinkTargetWithLiterals, gO as ListDeletedSubmissionsRequest, hj as ListFormattedSubmissionsRequest, hk as ListFormattedSubmissionsResponse, dR as ListValue, eV as Location, eW as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, al as MapType, i3 as MapTypeWithLiterals, eR as Margin, bC as MarketingSubscriptionDetails, cO as Media, e1 as MediaItem, e2 as MediaItemMediaOneOf, e3 as MediaSettings, dt as MentionData, gc as MessageEnvelope, d_ as Metadata, bq as Mode, ja as ModeWithLiterals, eG as MultilineAddress, c7 as MultilineAddressValidation, fF as NestedForm, cb as NestedFormFieldOverrides, cf as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, a4 as NodeType, hO as NodeTypeWithLiterals, aE as NullValue, io as NullValueWithLiterals, aP as NumberComponentType, iz as NumberComponentTypeWithLiterals, bP as NumberErrorMessages, ei as NumberInput, aN as NumberOfColumns, ix as NumberOfColumnsWithLiterals, eh as NumberType, fm as ObjectArray, aZ as ObjectArrayComponentType, fn as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, ca as ObjectArrayType, bX as ObjectErrorMessages, en as ObjectType, bV as ObjectTypePropertiesType, bW as ObjectTypePropertiesTypePropertiesTypeOneOf, dJ as Oembed, bl as Operator, j5 as OperatorWithLiterals, Y as OptInLevel, hG as OptInLevelWithLiterals, et as Option, di as OptionDesign, dd as OptionLayout, fW as OrCondition, bw as OrderDetails, dT as OrderedListData, af as Orientation, hZ as OrientationWithLiterals, b7 as OverrideEntityType, bk as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, cM as PDFSettings, fr as PageNavigationOptions, d7 as ParagraphData, eg as Password, fg as Payment, aW as PaymentComponentType, fh as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eE as PaymentInput, c1 as PaymentType, d9 as Permissions, cn as PhoneConstraints, f1 as PhoneInfo, b2 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ea as PhoneInput, eZ as PhoneOptions, aw as Placement, ie as PlacementWithLiterals, dH as PlaybackOptions, cx as PluginContainerData, a6 as PluginContainerDataAlignment, hQ as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ap as PollLayoutDirection, i7 as PollLayoutDirectionWithLiterals, ao as PollLayoutType, i6 as PollLayoutTypeWithLiterals, da as PollOption, at as Position, ib as PositionWithLiterals, fw as PostSubmissionTriggers, b$ as PredefinedValidation, c0 as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, hK as PriceTypeWithLiterals, dF as PricingData, c5 as Product, eA as ProductCheckboxGroup, eB as ProductCheckboxGroupOption, c6 as ProductPriceOptionsOneOf, $ as ProductType, hJ as ProductTypeWithLiterals, eo as PropertiesType, aS as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, ep as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, c2 as QuantityLimit, gT as QuerySubmissionRequest, h2 as QuerySubmissionsByNamespaceForExportRequest, h3 as QuerySubmissionsByNamespaceForExportResponse, h0 as QuerySubmissionsByNamespaceRequest, h1 as QuerySubmissionsByNamespaceResponse, e4 as RadioGroup, e5 as RadioGroupOption, ej as RatingInput, fL as RedirectOptions, cF as Rel, gK as RemoveSubmissionFromTrashBinRequest, gL as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, eL as Repeater, bf as RequiredIndicator, bg as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fH as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, fO as RequiredOptions, av as Resizing, id as ResizingWithLiterals, aI as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, g7 as RestoreInfo, gJ as RestoreSubmissionFromTrashBinRequest, dD as RibbonStyles, cq as RichContent, fq as RichContentOptions, fN as Rule, fY as RuleFormOverride, fZ as RuleFormOverrideEntityTypeOptionsOneOf, aF as Scaling, ip as ScalingWithLiterals, fi as Scheduling, a_ as SchedulingComponentType, fj as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, gZ as SearchDetails, g_ as SearchSubmissionsByNamespaceForExportRequest, g$ as SearchSubmissionsByNamespaceForExportResponse, gW as SearchSubmissionsByNamespaceRequest, eS as Section, ef as ServiceOption, ew as ServicesCheckboxGroup, ee as ServicesDropdown, db as Settings, ez as Signature, bp as SortOrder, j9 as SortOrderWithLiterals, gV as Sorting, aj as Source, i1 as SourceWithLiterals, be as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, br as Status, jb as StatusWithLiterals, fs as Step, a3 as StringComponentType, hN as StringComponentTypeWithLiterals, bK as StringErrorMessages, ck as StringType, bL as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cl as StringTypeFormatOptionsOneOf, bM as StringTypePhoneConstraints, bN as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, ak as StylesPosition, i2 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hc as SubmissionDocument, hd as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hF as SubmissionStatusWithLiterals, hw as SubmissionValidationError, hx as SubmissionValidationErrorErrorMessageOneOf, hv as SubmissionValidationErrors, gj as SubmissionValidationErrorsDetails, hB as SubmissionsQueryResult, gg as SubmitContactResponse, fI as SubmitSettings, fJ as SubmitSettingsSubmitSuccessActionOptionsOneOf, bi as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, f4 as SubscriptionInfo, bc as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, dN as TableCellData, dL as TableData, b3 as Tag, by as TagList, iP as TagWithLiterals, f_ as Tags, ev as TagsOption, f$ as TagsTagList, bh as Target, j1 as TargetWithLiterals, a9 as TextAlignment, hT as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, e0 as TextNodeStyle, cH as TextStyle, fK as ThankYouMessageOptions, cW as Thumbnails, ah as ThumbnailsAlignment, h$ as ThumbnailsAlignmentWithLiterals, ec as TimeInput, aY as Type, iI as TypeWithLiterals, hm as UpdateExtendedFieldsRequest, gC as UpdateSubmissionRequest, gD as UpdateSubmissionResponse, aV as UploadFileFormat, iF as UploadFileFormatWithLiterals, fx as UpsertContact, gf as UpsertContactFromSubmissionRequest, fy as V4FormFieldContactInfo, fz as V4FormFieldContactInfoAdditionalInfoOneOf, hs as ValidateFormSubmissionRequest, cc as Validation, gk as ValidationError, _ as ValidationFormat, hI as ValidationFormatWithLiterals, co as ValidationMessages, cd as ValidationValidationOneOf, aD as VerticalAlignment, aH as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, cQ as Video, eY as VideoConferenceOptions, dG as VideoData, ad as ViewMode, hX as ViewModeWithLiterals, am as ViewRole, i4 as ViewRoleWithLiterals, an as VoteRole, i5 as VoteRoleWithLiterals, bm as WebhookIdentityType, j6 as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, fe as WixFile, aU as WixFileComponentType, ff as WixFileComponentTypeOptionsOneOf, iE as WixFileComponentTypeWithLiterals, fb as _Array, fc as _ArrayComponentTypeOptionsOneOf, f9 as _Boolean, fa as _BooleanComponentTypeOptionsOneOf, f7 as _Number, f8 as _NumberComponentTypeOptionsOneOf, fd as _Object, f5 as _String, f6 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-COlDPub4.mjs';
2
+ import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DrtZOQ3-.mjs';
3
+ export { hy as AccountDetails, bK as ActionEvent, fu as Address, fv as AddressComponentTypeOptionsOneOf, fc as AddressInfo, bc as AddressInfoTag, iZ as AddressInfoTagWithLiterals, eR as AddressLine2, aM as Alignment, ix as AlignmentWithLiterals, f_ as AllowedValuesOptions, dA as AnchorData, g3 as AndCondition, dH as AppEmbedData, dI as AppEmbedDataAppDataOneOf, aB as AppType, il as AppTypeWithLiterals, gr as ApplicationError, f1 as Appointment, f2 as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iF as ArrayComponentTypeWithLiterals, c8 as ArrayErrorMessages, eA as ArrayItems, eB as ArrayItemsItemTypeOptionsOneOf, ew as ArrayType, c6 as ArrayTypeArrayItems, c7 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ie as AspectRatioWithLiterals, e0 as AudioData, dq as Background, dr as BackgroundBackgroundOneOf, e6 as BackgroundImage, ar as BackgroundType, ia as BackgroundTypeWithLiterals, hz as BaseEventMetadata, e3 as BlockquoteData, dJ as BookingData, aR as BooleanComponentType, iC as BooleanComponentTypeWithLiterals, c0 as BooleanErrorMessages, eu as BooleanType, cF as Border, dZ as BorderColors, d_ as BorderWidths, eX as BreakPoint, gs as BulkActionMetadata, gw as BulkCreateSubmissionBySubmitterData, gv as BulkCreateSubmissionBySubmitterRequest, gx as BulkCreateSubmissionBySubmitterResponse, gn as BulkCreateSubmissionsForMigrationRequest, go as BulkCreateSubmissionsForMigrationResponse, gH as BulkDeleteSubmissionRequest, gI as BulkDeleteSubmissionResult, ha as BulkMarkSubmissionsAsSeenRequest, gM as BulkRemoveSubmissionFromTrashBinRequest, gN as BulkRemoveSubmissionFromTrashBinResult, gp as BulkSubmissionResult, hF as BulkUpdateFormSubmissionTagsByFilterOptions, hq as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsByFilterResponse, hE as BulkUpdateFormSubmissionTagsOptions, hn as BulkUpdateFormSubmissionTagsRequest, ho as BulkUpdateFormSubmissionTagsResponse, hp as BulkUpdateFormSubmissionTagsResult, e2 as BulletedListData, cE as ButtonData, a8 as ButtonDataType, hT as ButtonDataTypeWithLiterals, dL as ButtonStyles, e4 as CaptionData, dO as CardStyles, az as CardStylesAlignment, ij as CardStylesAlignmentWithLiterals, ay as CardStylesType, ii as CardStylesTypeWithLiterals, dY as CellStyle, bk as ChangeableProperty, j5 as ChangeablePropertyWithLiterals, ev as Checkbox, eC as CheckboxGroup, gb as Checkout, cQ as CodeBlockData, dU as CollapsibleListData, dB as ColorData, cG as Colors, jf as CommonQueryWithEntityContext, je as CommonSearchWithEntityContext, aY as ComponentType, iJ as ComponentTypeWithLiterals, eE as ComponentsTags, g5 as Condition, g1 as ConditionNode, g2 as ConditionNodeNodeOneOf, gE as ConfirmSubmissionRequest, b5 as ConfirmationLevel, iS as ConfirmationLevelWithLiterals, b6 as ContactField, iT as ContactFieldWithLiterals, h7 as CountDeletedSubmissionsRequest, h4 as CountSubmissionsByFilterRequest, h6 as CountSubmissionsRequest, bO as CreateCheckoutFromSubmissionRequest, bP as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, ga as CreateCheckoutFromSubmissionResponse, gt as CreateSubmissionBySubmitterRequest, gu as CreateSubmissionBySubmitterResponse, gl as CreateSubmissionForMigrationRequest, gm as CreateSubmissionForMigrationResponse, gh as CreateSubmissionRequest, gi as CreateSubmissionResponse, ah as Crop, i0 as CropWithLiterals, gP as CursorPaging, gQ as CursorPagingMetadata, gU as CursorQueryPagingMethodOneOf, gX as CursorSearch, gY as CursorSearchPagingMethodOneOf, gR as Cursors, fd as CustomFieldInfo, eg as CustomOption, co as DataExtensionsDetails, el as DateInput, en as DatePicker, cw as DateTimeConstraints, ej as DateTimeInput, dy as Decoration, dz as DecorationDataOneOf, as as DecorationType, ib as DecorationTypeWithLiterals, eS as DefaultCountryConfig, eT as DefaultCountryConfigOptionsOneOf, gF as DeleteSubmissionRequest, gG as DeleteSubmissionResponse, dw as Design, aK as DesignTarget, iv as DesignTargetWithLiterals, dW as Dimensions, aD as Direction, io as DirectionWithLiterals, fy as DisplayField, fz as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, iU as DisplayFieldTypeWithLiterals, cS as DividerData, ad as DividerDataAlignment, hY as DividerDataAlignmentWithLiterals, he as DocumentReady, e9 as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eM as DonationInput, eN as DonationInputOption, hf as DownloadSubmissionRequest, eh as Dropdown, ei as DropdownOption, ce as DynamicPriceOptions, fa as EmailInfo, b2 as EmailInfoTag, iP as EmailInfoTagWithLiterals, dS as EmbedData, ge as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, j9 as ErrorTypeWithLiterals, dK as EventData, hA as EventMetadata, bv as ExtendedFields, cq as Field, cr as FieldFieldTypeOptionsOneOf, fW as FieldGroup, f$ as FieldOverride, g0 as FieldOverridePropertyTypeOptionsOneOf, ci as FieldOverrides, a2 as FieldType, hN as FieldTypeWithLiterals, ht as FieldViolation, hu as FieldViolationErrorDataOneOf, cj as FieldsOverrides, eU as FieldsSettings, cT as FileData, cU as FileSource, cV as FileSourceDataOneOf, eH as FileType, eI as FileUpload, aP as FirstDayOfWeek, iA as FirstDayOfWeekWithLiterals, eP as FixedPayment, cd as FixedPriceOptions, dG as FontFamilyData, dE as FontSizeData, at as FontType, ic as FontTypeWithLiterals, bQ as Form, h8 as FormDeletedSubmissionsCount, bR as FormField, c1 as FormFieldArrayType, b$ as FormFieldBooleanType, f8 as FormFieldContactInfo, f9 as FormFieldContactInfoAdditionalInfoOneOf, fM as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, i$ as FormFieldContactInfoContactFieldWithLiterals, fN as FormFieldContactInfoCustomFieldInfo, fK as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, iX as FormFieldContactInfoEmailInfoTagWithLiterals, fL as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, iY as FormFieldContactInfoPhoneInfoTagWithLiterals, fO as FormFieldContactInfoSubscriptionInfo, bY as FormFieldNumberType, c2 as FormFieldObjectType, bS as FormFieldStringType, bT as FormFieldStringTypeFormatOptionsOneOf, eW as FormLayout, fE as FormOverride, fF as FormProperties, fD as FormRule, hD as FormSubmissionQuerySpec, hB as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h5 as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hO as FormatEnumFormatWithLiterals, iN as FormatWithLiterals, hl as FormattedFormSubmission, hi as FormattedSubmission, d6 as GIF, d5 as GIFData, aj as GIFType, i2 as GIFTypeWithLiterals, cX as GalleryData, d1 as GalleryOptions, d2 as GalleryOptionsLayout, gS as GetDeletedSubmissionRequest, hh as GetFormattedSubmissionRequest, h9 as GetMediaUploadURLRequest, gA as GetSubmissionByCheckoutIdRequest, gB as GetSubmissionByCheckoutIdResponse, hb as GetSubmissionDownloadUrlRequest, gy as GetSubmissionRequest, gz as GetSubmissionResponse, dp as Gradient, e_ as Group, d8 as HTMLData, d9 as HTMLDataDataOneOf, hg as HeadersEntry, d7 as HeadingData, cL as Height, fZ as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, j8 as IdentityTypeWithLiterals, cZ as Image, da as ImageData, dc as ImageDataStyles, aN as ImageFit, iy as ImageFitWithLiterals, aL as ImagePosition, iw as ImagePositionWithLiterals, dM as ImageStyles, f5 as InPersonOptions, aC as InitialExpandedItems, im as InitialExpandedItemsWithLiterals, cs as InputField, ct as InputFieldInputTypeOptionsOneOf, b1 as InputType, iO as InputTypeWithLiterals, b_ as IntegerType, gc as IsFormSubmittableRequest, gd as IsFormSubmittableResponse, c$ as Item, d0 as ItemDataOneOf, eY as ItemLayout, eZ as ItemLayoutItemOneOf, gq as ItemMetadata, d3 as ItemStyle, aS as ItemType, iD as ItemTypeWithLiterals, b9 as Kind, iW as KindWithLiterals, aA as Layout, e7 as LayoutCellData, e5 as LayoutData, aH as LayoutDataImagePosition, is as LayoutDataImagePositionWithLiterals, af as LayoutType, h_ as LayoutTypeWithLiterals, ik as LayoutWithLiterals, fQ as LimitationRule, ab as LineStyle, hW as LineStyleWithLiterals, cN as Link, dC as LinkData, cO as LinkDataOneOf, dd as LinkPreviewData, de as LinkPreviewDataStyles, a9 as LinkTarget, hU as LinkTargetWithLiterals, gO as ListDeletedSubmissionsRequest, hj as ListFormattedSubmissionsRequest, hk as ListFormattedSubmissionsResponse, d$ as ListValue, f3 as Location, f4 as LocationLocationInfoOneOf, df as MapData, dg as MapSettings, am as MapType, i5 as MapTypeWithLiterals, e$ as Margin, bC as MarketingSubscriptionDetails, cY as Media, eb as MediaItem, ec as MediaItemMediaOneOf, ed as MediaSettings, dD as MentionData, bL as MessageEnvelope, e8 as Metadata, bq as Mode, jb as ModeWithLiterals, eQ as MultilineAddress, ch as MultilineAddressValidation, fP as NestedForm, cl as NestedFormFieldOverrides, cp as NestedFormOverrides, cB as Node, cC as NodeDataOneOf, cD as NodeStyle, a5 as NodeType, hQ as NodeTypeWithLiterals, aF as NullValue, iq as NullValueWithLiterals, aQ as NumberComponentType, iB as NumberComponentTypeWithLiterals, bZ as NumberErrorMessages, es as NumberInput, aO as NumberOfColumns, iz as NumberOfColumnsWithLiterals, er as NumberType, fw as ObjectArray, a_ as ObjectArrayComponentType, fx as ObjectArrayComponentTypeOptionsOneOf, iL as ObjectArrayComponentTypeWithLiterals, ck as ObjectArrayType, c5 as ObjectErrorMessages, ex as ObjectType, c3 as ObjectTypePropertiesType, c4 as ObjectTypePropertiesTypePropertiesTypeOneOf, dT as Oembed, bm as Operator, j7 as OperatorWithLiterals, Y as OptInLevel, hH as OptInLevelWithLiterals, eD as Option, dt as OptionDesign, dn as OptionLayout, g4 as OrCondition, bw as OrderDetails, e1 as OrderedListData, ag as Orientation, h$ as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, j6 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iV as OverrideEntityTypeWithLiterals, cW as PDFSettings, fB as PageNavigationOptions, dh as ParagraphData, eq as Password, fq as Payment, aX as PaymentComponentType, fr as PaymentComponentTypeOptionsOneOf, iI as PaymentComponentTypeWithLiterals, eO as PaymentInput, cb as PaymentType, dj as Permissions, cx as PhoneConstraints, fb as PhoneInfo, b3 as PhoneInfoTag, iQ as PhoneInfoTagWithLiterals, ek as PhoneInput, f7 as PhoneOptions, ax as Placement, ih as PlacementWithLiterals, dR as PlaybackOptions, cH as PluginContainerData, a7 as PluginContainerDataAlignment, hS as PluginContainerDataAlignmentWithLiterals, cI as PluginContainerDataWidth, cJ as PluginContainerDataWidthDataOneOf, du as Poll, di as PollData, dv as PollDataLayout, ds as PollDesign, dm as PollLayout, aq as PollLayoutDirection, i9 as PollLayoutDirectionWithLiterals, ap as PollLayoutType, i8 as PollLayoutTypeWithLiterals, dk as PollOption, au as Position, id as PositionWithLiterals, fG as PostSubmissionTriggers, c9 as PredefinedValidation, ca as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hM as PriceTypeWithLiterals, dP as PricingData, cf as Product, eK as ProductCheckboxGroup, eL as ProductCheckboxGroupOption, cg as ProductPriceOptionsOneOf, a0 as ProductType, hL as ProductTypeWithLiterals, ey as PropertiesType, aT as PropertiesTypeEnum, iE as PropertiesTypeEnumWithLiterals, ez as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cc as QuantityLimit, gT as QuerySubmissionRequest, h2 as QuerySubmissionsByNamespaceForExportRequest, h3 as QuerySubmissionsByNamespaceForExportResponse, h0 as QuerySubmissionsByNamespaceRequest, h1 as QuerySubmissionsByNamespaceResponse, ee as RadioGroup, ef as RadioGroupOption, et as RatingInput, fV as RedirectOptions, cP as Rel, gK as RemoveSubmissionFromTrashBinRequest, gL as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, eV as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, j2 as RequiredIndicatorPlacementWithLiterals, fR as RequiredIndicatorProperties, j1 as RequiredIndicatorWithLiterals, fY as RequiredOptions, aw as Resizing, ig as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iu as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gJ as RestoreSubmissionFromTrashBinRequest, dN as RibbonStyles, cA as RichContent, fA as RichContentOptions, fX as Rule, g6 as RuleFormOverride, g7 as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, ir as ScalingWithLiterals, fs as Scheduling, a$ as SchedulingComponentType, ft as SchedulingComponentTypeOptionsOneOf, iM as SchedulingComponentTypeWithLiterals, gZ as SearchDetails, g_ as SearchSubmissionsByNamespaceForExportRequest, g$ as SearchSubmissionsByNamespaceForExportResponse, gW as SearchSubmissionsByNamespaceRequest, f0 as Section, ep as ServiceOption, eG as ServicesCheckboxGroup, eo as ServicesDropdown, dl as Settings, eJ as Signature, bp as SortOrder, ja as SortOrderWithLiterals, gV as Sorting, ak as Source, i3 as SourceWithLiterals, bf as SpamFilterProtectionLevel, j0 as SpamFilterProtectionLevelWithLiterals, cK as Spoiler, dF as SpoilerData, br as Status, jc as StatusWithLiterals, fC as Step, a4 as StringComponentType, hP as StringComponentTypeWithLiterals, bU as StringErrorMessages, cu as StringType, bV as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hJ as StringTypeFormatEnumFormatWithLiterals, cv as StringTypeFormatOptionsOneOf, bW as StringTypePhoneConstraints, bX as StringTypeValidationMessages, cM as Styles, db as StylesBorder, al as StylesPosition, i4 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hc as SubmissionDocument, hd as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jd as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hG as SubmissionStatusWithLiterals, hw as SubmissionValidationError, hx as SubmissionValidationErrorErrorMessageOneOf, hv as SubmissionValidationErrors, gj as SubmissionValidationErrorsDetails, hC as SubmissionsQueryResult, gg as SubmitContactResponse, fS as SubmitSettings, fT as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, j4 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, fe as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, i_ as SubscriptionInfoOptInLevelWithLiterals, dX as TableCellData, dV as TableData, b4 as Tag, by as TagList, iR as TagWithLiterals, g8 as Tags, eF as TagsOption, g9 as TagsTagList, bi as Target, j3 as TargetWithLiterals, aa as TextAlignment, hV as TextAlignmentWithLiterals, dx as TextData, cz as TextInput, ea as TextNodeStyle, cR as TextStyle, fU as ThankYouMessageOptions, d4 as Thumbnails, ai as ThumbnailsAlignment, i1 as ThumbnailsAlignmentWithLiterals, em as TimeInput, aZ as Type, iK as TypeWithLiterals, hm as UpdateExtendedFieldsRequest, gC as UpdateSubmissionRequest, gD as UpdateSubmissionResponse, aW as UploadFileFormat, iH as UploadFileFormatWithLiterals, fH as UpsertContact, gf as UpsertContactFromSubmissionRequest, fI as V4FormFieldContactInfo, fJ as V4FormFieldContactInfoAdditionalInfoOneOf, hs as ValidateFormSubmissionRequest, cm as Validation, gk as ValidationError, $ as ValidationFormat, hK as ValidationFormatWithLiterals, cy as ValidationMessages, cn as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, it as VerticalAlignmentAlignmentWithLiterals, ip as VerticalAlignmentWithLiterals, c_ as Video, f6 as VideoConferenceOptions, dQ as VideoData, ae as ViewMode, hZ as ViewModeWithLiterals, an as ViewRole, i6 as ViewRoleWithLiterals, ao as VoteRole, i7 as VoteRoleWithLiterals, Z as WebhookIdentityType, hI as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hR as WidthTypeWithLiterals, hX as WidthWithLiterals, fo as WixFile, aV as WixFileComponentType, fp as WixFileComponentTypeOptionsOneOf, iG as WixFileComponentTypeWithLiterals, fl as _Array, fm as _ArrayComponentTypeOptionsOneOf, fj as _Boolean, fk as _BooleanComponentTypeOptionsOneOf, fh as _Number, fi as _NumberComponentTypeOptionsOneOf, fn as _Object, ff as _String, fg as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-DrtZOQ3-.mjs';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -861,6 +861,14 @@ var OptInLevel = /* @__PURE__ */ ((OptInLevel2) => {
861
861
  OptInLevel2["DOUBLE_CONFIRMATION"] = "DOUBLE_CONFIRMATION";
862
862
  return OptInLevel2;
863
863
  })(OptInLevel || {});
864
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
865
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
866
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
867
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
868
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
869
+ WebhookIdentityType2["APP"] = "APP";
870
+ return WebhookIdentityType2;
871
+ })(WebhookIdentityType || {});
864
872
  var StringTypeFormatEnumFormat = /* @__PURE__ */ ((StringTypeFormatEnumFormat2) => {
865
873
  StringTypeFormatEnumFormat2["UNDEFINED"] = "UNDEFINED";
866
874
  StringTypeFormatEnumFormat2["DATE"] = "DATE";
@@ -1526,14 +1534,6 @@ var Operator = /* @__PURE__ */ ((Operator2) => {
1526
1534
  Operator2["IS_DATE_NEWER_THAN_OR_EQUAL"] = "IS_DATE_NEWER_THAN_OR_EQUAL";
1527
1535
  return Operator2;
1528
1536
  })(Operator || {});
1529
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1530
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
1531
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
1532
- WebhookIdentityType2["MEMBER"] = "MEMBER";
1533
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
1534
- WebhookIdentityType2["APP"] = "APP";
1535
- return WebhookIdentityType2;
1536
- })(WebhookIdentityType || {});
1537
1537
  var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
1538
1538
  IdentityType2["UNKNOWN"] = "UNKNOWN";
1539
1539
  IdentityType2["CONTACT"] = "CONTACT";