@wix/auto_sdk_forms_submissions 1.0.81 → 1.0.82

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-CcAOUlgw.d.ts} +135 -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 +137 -137
  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-CcAOUlgw.d.mts} +135 -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 +137 -137
  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-z81WPKXR.d.ts} +135 -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 +137 -137
  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-z81WPKXR.d.mts} +135 -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 +137 -137
  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.
@@ -7698,4 +7698,4 @@ interface ValidateFormSubmissionOptions {
7698
7698
  fieldsToValidate?: string[];
7699
7699
  }
7700
7700
 
7701
- export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, ComponentType as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, ImagePosition as aO, Alignment as aP, ImageFit as aQ, NumberOfColumns as aR, FirstDayOfWeek as aS, NumberComponentType as aT, BooleanComponentType as aU, ItemType as aV, PropertiesTypeEnum as aW, ArrayComponentType as aX, WixFileComponentType as aY, UploadFileFormat as aZ, PaymentComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, Type as b0, ObjectArrayComponentType as b1, SchedulingComponentType as b2, Format as b3, InputType as b4, EmailInfoTag as b5, PhoneInfoTag as b6, Tag as b7, ConfirmationLevel as b8, ContactField as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type StringTypeValidationMessages as bR, type FormFieldNumberType as bS, type NumberErrorMessages as bT, type IntegerType as bU, type FormFieldBooleanType as bV, type BooleanErrorMessages as bW, type FormFieldArrayType as bX, type FormFieldObjectType as bY, type ObjectTypePropertiesType as bZ, type ObjectTypePropertiesTypePropertiesTypeOneOf as b_, DisplayFieldType as ba, OverrideEntityType as bb, Kind as bc, FormFieldContactInfoEmailInfoTag as bd, FormFieldContactInfoPhoneInfoTag as be, AddressInfoTag as bf, SubscriptionInfoOptInLevel as bg, FormFieldContactInfoContactField as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type GIFData as c$, type ArrayTypeArrayItems as c0, type ArrayTypeArrayItemsItemsOneOf as c1, type ArrayErrorMessages as c2, type PredefinedValidation as c3, type PredefinedValidationFormatOptionsOneOf as c4, type PaymentType as c5, type QuantityLimit as c6, type FixedPriceOptions as c7, type DynamicPriceOptions as c8, type Product as c9, type Colors as cA, type PluginContainerData as cB, type PluginContainerDataWidth as cC, type PluginContainerDataWidthDataOneOf as cD, type Spoiler as cE, type Height as cF, type Styles as cG, type Link as cH, type LinkDataOneOf as cI, type Rel as cJ, type CodeBlockData as cK, type TextStyle as cL, type DividerData as cM, type FileData as cN, type FileSource as cO, type FileSourceDataOneOf as cP, type PDFSettings as cQ, type GalleryData as cR, type Media as cS, type Image as cT, type Video as cU, type Item as cV, type ItemDataOneOf as cW, type GalleryOptions as cX, type GalleryOptionsLayout as cY, type ItemStyle as cZ, type Thumbnails as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type ObjectArrayType as ce, type NestedFormFieldOverrides as cf, type Validation as cg, type ValidationValidationOneOf as ch, type DataExtensionsDetails as ci, type NestedFormOverrides as cj, type Field as ck, type FieldFieldTypeOptionsOneOf as cl, type InputField as cm, type InputFieldInputTypeOptionsOneOf as cn, type StringType as co, type StringTypeFormatOptionsOneOf as cp, type DateTimeConstraints as cq, type PhoneConstraints as cr, type ValidationMessages as cs, type TextInput as ct, type RichContent as cu, type Node as cv, type NodeDataOneOf as cw, type NodeStyle as cx, type ButtonData as cy, type Border as cz, type UpdateSubmission as d, type LayoutData as d$, type GIF as d0, type HeadingData as d1, type HTMLData as d2, type HTMLDataDataOneOf as d3, type ImageData as d4, type StylesBorder as d5, type ImageDataStyles as d6, type LinkPreviewData as d7, type LinkPreviewDataStyles as d8, type MapData as d9, type FontFamilyData as dA, type AppEmbedData as dB, type AppEmbedDataAppDataOneOf as dC, type BookingData as dD, type EventData as dE, type ButtonStyles as dF, type ImageStyles as dG, type RibbonStyles as dH, type CardStyles as dI, type PricingData as dJ, type VideoData as dK, type PlaybackOptions as dL, type EmbedData as dM, type Oembed as dN, type CollapsibleListData as dO, type TableData as dP, type Dimensions as dQ, type TableCellData as dR, type CellStyle as dS, type BorderColors as dT, type BorderWidths as dU, type ListValue as dV, type AudioData as dW, type OrderedListData as dX, type BulletedListData as dY, type BlockquoteData as dZ, type CaptionData as d_, type MapSettings as da, type ParagraphData as db, type PollData as dc, type Permissions as dd, type PollOption as de, type Settings as df, type PollLayout as dg, type OptionLayout as dh, type Gradient as di, type Background as dj, type BackgroundBackgroundOneOf as dk, type PollDesign as dl, type OptionDesign as dm, type Poll as dn, type PollDataLayout as dp, type Design as dq, type TextData as dr, type Decoration as ds, type DecorationDataOneOf as dt, type AnchorData as du, type ColorData as dv, type LinkData as dw, type MentionData as dx, type FontSizeData as dy, type SpoilerData as dz, type UpdateSubmissionValidationErrors as e, type InPersonOptions as e$, type BackgroundImage as e0, type LayoutCellData as e1, type Metadata as e2, type DocumentStyle as e3, type TextNodeStyle as e4, type MediaItem as e5, type MediaItemMediaOneOf as e6, type MediaSettings as e7, type RadioGroup as e8, type RadioGroupOption as e9, type ServicesCheckboxGroup as eA, type FileType as eB, type FileUpload as eC, type Signature as eD, type ProductCheckboxGroup as eE, type ProductCheckboxGroupOption as eF, type DonationInput as eG, type DonationInputOption as eH, type PaymentInput as eI, type FixedPayment as eJ, type MultilineAddress as eK, type AddressLine2 as eL, type DefaultCountryConfig as eM, type DefaultCountryConfigOptionsOneOf as eN, type FieldsSettings as eO, type Repeater as eP, type FormLayout as eQ, type BreakPoint as eR, type ItemLayout as eS, type ItemLayoutItemOneOf as eT, type Group as eU, type Margin as eV, type Section as eW, type Appointment as eX, type AppointmentFormatInfoOneOf as eY, type Location as eZ, type LocationLocationInfoOneOf as e_, type CustomOption as ea, type Dropdown as eb, type DropdownOption as ec, type DateTimeInput as ed, type PhoneInput as ee, type DateInput as ef, type TimeInput as eg, type DatePicker as eh, type ServicesDropdown as ei, type ServiceOption as ej, type Password as ek, type NumberType as el, type NumberInput as em, type RatingInput as en, type BooleanType as eo, type Checkbox as ep, type ArrayType as eq, type ObjectType as er, type PropertiesType as es, type PropertiesTypePropertiesTypeOptionsOneOf as et, type ArrayItems as eu, type ArrayItemsItemTypeOptionsOneOf as ev, type CheckboxGroup as ew, type Option as ex, type ComponentsTags as ey, type TagsOption as ez, type ConfirmSubmissionResponse as f, type Condition as f$, type VideoConferenceOptions as f0, type PhoneOptions as f1, type FormFieldContactInfo as f2, type FormFieldContactInfoAdditionalInfoOneOf as f3, type EmailInfo as f4, type PhoneInfo as f5, type AddressInfo as f6, type CustomFieldInfo as f7, type SubscriptionInfo as f8, type _String as f9, type PostSubmissionTriggers as fA, type UpsertContact as fB, type V4FormFieldContactInfo as fC, type V4FormFieldContactInfoAdditionalInfoOneOf as fD, type FormFieldContactInfoEmailInfo as fE, type FormFieldContactInfoPhoneInfo as fF, type FormFieldContactInfoAddressInfo as fG, type FormFieldContactInfoCustomFieldInfo as fH, type FormFieldContactInfoSubscriptionInfo as fI, type NestedForm as fJ, type LimitationRule as fK, type RequiredIndicatorProperties as fL, type SubmitSettings as fM, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fN, type ThankYouMessageOptions as fO, type RedirectOptions as fP, type FieldGroup as fQ, type Rule as fR, type RequiredOptions as fS, type HiddenOptions as fT, type AllowedValuesOptions as fU, type FieldOverride as fV, type FieldOverridePropertyTypeOptionsOneOf as fW, type ConditionNode as fX, type ConditionNodeNodeOneOf as fY, type AndCondition as fZ, type OrCondition as f_, type _StringComponentTypeOptionsOneOf as fa, type _Number as fb, type _NumberComponentTypeOptionsOneOf as fc, type _Boolean as fd, type _BooleanComponentTypeOptionsOneOf as fe, type _Array as ff, type _ArrayComponentTypeOptionsOneOf as fg, type _Object as fh, type WixFile as fi, type WixFileComponentTypeOptionsOneOf as fj, type Payment as fk, type PaymentComponentTypeOptionsOneOf as fl, type Scheduling as fm, type SchedulingComponentTypeOptionsOneOf as fn, type Address as fo, type AddressComponentTypeOptionsOneOf as fp, type ObjectArray as fq, type ObjectArrayComponentTypeOptionsOneOf as fr, type DisplayField as fs, type DisplayFieldDisplayFieldTypeOptionsOneOf as ft, type RichContentOptions as fu, type PageNavigationOptions as fv, type Step as fw, type FormRule as fx, type FormOverride as fy, type FormProperties as fz, type BulkDeleteSubmissionResponse as g, type CursorSearch as g$, type RuleFormOverride as g0, type RuleFormOverrideEntityTypeOptionsOneOf as g1, type Tags as g2, type TagsTagList as g3, type CreateCheckoutFromSubmissionResponse as g4, type Checkout as g5, type IsFormSubmittableRequest as g6, type IsFormSubmittableResponse as g7, type DomainEvent as g8, type DomainEventBodyOneOf as g9, type BulkCreateSubmissionBySubmitterData as gA, type BulkCreateSubmissionBySubmitterResponse as gB, type GetSubmissionRequest as gC, type GetSubmissionResponse as gD, type GetSubmissionByCheckoutIdRequest as gE, type GetSubmissionByCheckoutIdResponse as gF, type UpdateSubmissionRequest as gG, type UpdateSubmissionResponse as gH, type ConfirmSubmissionRequest as gI, type DeleteSubmissionRequest as gJ, type DeleteSubmissionResponse as gK, type BulkDeleteSubmissionRequest as gL, type BulkDeleteSubmissionResult as gM, type RestoreSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinResponse as gP, type BulkRemoveSubmissionFromTrashBinRequest as gQ, type BulkRemoveSubmissionFromTrashBinResult as gR, type ListDeletedSubmissionsRequest as gS, type CursorPaging as gT, type CursorPagingMetadata as gU, type Cursors as gV, type GetDeletedSubmissionRequest as gW, type QuerySubmissionRequest as gX, type CursorQueryPagingMethodOneOf as gY, type Sorting as gZ, type SearchSubmissionsByNamespaceRequest as g_, type EntityCreatedEvent as ga, type RestoreInfo as gb, type EntityUpdatedEvent as gc, type EntityDeletedEvent as gd, type ActionEvent as ge, type Empty as gf, type MessageEnvelope as gg, type IdentificationData as gh, type IdentificationDataIdOneOf as gi, type UpsertContactFromSubmissionRequest as gj, type SubmitContactResponse as gk, type CreateSubmissionRequest as gl, type CreateSubmissionResponse as gm, type SubmissionValidationErrorsDetails as gn, type ValidationError as go, type CreateSubmissionForMigrationRequest as gp, type CreateSubmissionForMigrationResponse as gq, type BulkCreateSubmissionsForMigrationRequest as gr, type BulkCreateSubmissionsForMigrationResponse as gs, type BulkSubmissionResult as gt, type ItemMetadata as gu, type ApplicationError as gv, type BulkActionMetadata as gw, type CreateSubmissionBySubmitterRequest as gx, type CreateSubmissionBySubmitterResponse as gy, type BulkCreateSubmissionBySubmitterRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type CursorSearchPagingMethodOneOf as h0, type SearchDetails as h1, type SearchSubmissionsByNamespaceForExportRequest as h2, type SearchSubmissionsByNamespaceForExportResponse as h3, type QuerySubmissionsByNamespaceRequest as h4, type QuerySubmissionsByNamespaceResponse as h5, type QuerySubmissionsByNamespaceForExportRequest as h6, type QuerySubmissionsByNamespaceForExportResponse as h7, type CountSubmissionsByFilterRequest as h8, type FormSubmissionsCount as h9, type BaseEventMetadata as hA, type EventMetadata as hB, type FormSubmissionSearchSpec as hC, type SubmissionsQueryResult as hD, type FormSubmissionQuerySpec 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 CountSubmissionsRequest as ha, type CountDeletedSubmissionsRequest as hb, type FormDeletedSubmissionsCount as hc, type GetMediaUploadURLRequest as hd, type BulkMarkSubmissionsAsSeenRequest as he, type GetSubmissionDownloadUrlRequest as hf, type SubmissionDocument as hg, type SubmissionDocumentDocumentOneOf as hh, type DocumentReady as hi, type DownloadSubmissionRequest as hj, type HeadersEntry as hk, type GetFormattedSubmissionRequest as hl, type FormattedSubmission as hm, type ListFormattedSubmissionsRequest as hn, type ListFormattedSubmissionsResponse as ho, type FormattedFormSubmission as hp, type UpdateExtendedFieldsRequest as hq, type BulkUpdateFormSubmissionTagsRequest as hr, type BulkUpdateFormSubmissionTagsResult as hs, type BulkUpdateFormSubmissionTagsByFilterRequest as ht, type ValidateFormSubmissionRequest as hu, type FieldViolation as hv, type FieldViolationErrorDataOneOf as hw, type SubmissionValidationErrors as hx, type SubmissionValidationError as hy, type SubmissionValidationErrorErrorMessageOneOf 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, bulkUpdateFormSubmissionTags as jJ, bulkUpdateFormSubmissionTagsByFilter as jK, validateFormSubmission as jL, 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 };
7701
+ export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypeValidationMessages as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type CreateCheckoutFromSubmissionRequest as bS, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bT, type Form as bU, type FormField as bV, type FormFieldStringType as bW, type FormFieldStringTypeFormatOptionsOneOf as bX, type StringErrorMessages as bY, type StringTypeDateTimeConstraints as bZ, type StringTypePhoneConstraints as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type GalleryData as c$, type FormFieldNumberType as c0, type NumberErrorMessages as c1, type IntegerType as c2, type FormFieldBooleanType as c3, type BooleanErrorMessages as c4, type FormFieldArrayType as c5, type FormFieldObjectType as c6, type ObjectTypePropertiesType as c7, type ObjectTypePropertiesTypePropertiesTypeOneOf as c8, type ObjectErrorMessages as c9, type DateTimeConstraints as cA, type PhoneConstraints as cB, type ValidationMessages as cC, type TextInput as cD, type RichContent as cE, type Node as cF, type NodeDataOneOf as cG, type NodeStyle as cH, type ButtonData as cI, type Border as cJ, type Colors as cK, type PluginContainerData as cL, type PluginContainerDataWidth as cM, type PluginContainerDataWidthDataOneOf as cN, type Spoiler as cO, type Height as cP, type Styles as cQ, type Link as cR, type LinkDataOneOf as cS, type Rel as cT, type CodeBlockData as cU, type TextStyle as cV, type DividerData as cW, type FileData as cX, type FileSource as cY, type FileSourceDataOneOf as cZ, type PDFSettings as c_, type ArrayTypeArrayItems as ca, type ArrayTypeArrayItemsItemsOneOf as cb, type ArrayErrorMessages as cc, type PredefinedValidation as cd, type PredefinedValidationFormatOptionsOneOf as ce, type PaymentType as cf, type QuantityLimit as cg, type FixedPriceOptions as ch, type DynamicPriceOptions as ci, type Product as cj, type ProductPriceOptionsOneOf as ck, type MultilineAddressValidation as cl, type FieldOverrides as cm, type FieldsOverrides as cn, type ObjectArrayType as co, type NestedFormFieldOverrides as cp, type Validation as cq, type ValidationValidationOneOf as cr, type DataExtensionsDetails as cs, type NestedFormOverrides as ct, type Field as cu, type FieldFieldTypeOptionsOneOf as cv, type InputField as cw, type InputFieldInputTypeOptionsOneOf as cx, type StringType as cy, type StringTypeFormatOptionsOneOf as cz, type UpdateSubmission as d, type TableCellData as d$, type Media as d0, type Image as d1, type Video as d2, type Item as d3, type ItemDataOneOf as d4, type GalleryOptions as d5, type GalleryOptionsLayout as d6, type ItemStyle as d7, type Thumbnails as d8, type GIFData as d9, type Design as dA, type TextData as dB, type Decoration as dC, type DecorationDataOneOf as dD, type AnchorData as dE, type ColorData as dF, type LinkData as dG, type MentionData as dH, type FontSizeData as dI, type SpoilerData as dJ, type FontFamilyData as dK, type AppEmbedData as dL, type AppEmbedDataAppDataOneOf as dM, type BookingData as dN, type EventData as dO, type ButtonStyles as dP, type ImageStyles as dQ, type RibbonStyles as dR, type CardStyles as dS, type PricingData as dT, type VideoData as dU, type PlaybackOptions as dV, type EmbedData as dW, type Oembed as dX, type CollapsibleListData as dY, type TableData as dZ, type Dimensions as d_, type GIF as da, type HeadingData as db, type HTMLData as dc, type HTMLDataDataOneOf as dd, type ImageData as de, type StylesBorder as df, type ImageDataStyles as dg, type LinkPreviewData as dh, type LinkPreviewDataStyles as di, type MapData as dj, type MapSettings as dk, type ParagraphData as dl, type PollData as dm, type Permissions as dn, type PollOption as dp, type Settings as dq, type PollLayout as dr, type OptionLayout as ds, type Gradient as dt, type Background as du, type BackgroundBackgroundOneOf as dv, type PollDesign as dw, type OptionDesign as dx, type Poll as dy, type PollDataLayout as dz, type UpdateSubmissionValidationErrors as e, type BreakPoint as e$, type CellStyle as e0, type BorderColors as e1, type BorderWidths as e2, type ListValue as e3, type AudioData as e4, type OrderedListData as e5, type BulletedListData as e6, type BlockquoteData as e7, type CaptionData as e8, type LayoutData as e9, type ArrayType as eA, type ObjectType as eB, type PropertiesType as eC, type PropertiesTypePropertiesTypeOptionsOneOf as eD, type ArrayItems as eE, type ArrayItemsItemTypeOptionsOneOf as eF, type CheckboxGroup as eG, type Option as eH, type ComponentsTags as eI, type TagsOption as eJ, type ServicesCheckboxGroup as eK, type FileType as eL, type FileUpload as eM, type Signature as eN, type ProductCheckboxGroup as eO, type ProductCheckboxGroupOption as eP, type DonationInput as eQ, type DonationInputOption as eR, type PaymentInput as eS, type FixedPayment as eT, type MultilineAddress as eU, type AddressLine2 as eV, type DefaultCountryConfig as eW, type DefaultCountryConfigOptionsOneOf as eX, type FieldsSettings as eY, type Repeater as eZ, type FormLayout as e_, type BackgroundImage as ea, type LayoutCellData as eb, type Metadata as ec, type DocumentStyle as ed, type TextNodeStyle as ee, type MediaItem as ef, type MediaItemMediaOneOf as eg, type MediaSettings as eh, type RadioGroup as ei, type RadioGroupOption as ej, type CustomOption as ek, type Dropdown as el, type DropdownOption as em, type DateTimeInput as en, type PhoneInput as eo, type DateInput as ep, type TimeInput as eq, type DatePicker as er, type ServicesDropdown as es, type ServiceOption as et, type Password as eu, type NumberType as ev, type NumberInput as ew, type RatingInput as ex, type BooleanType as ey, type Checkbox as ez, type ConfirmSubmissionResponse as f, type Rule as f$, type ItemLayout as f0, type ItemLayoutItemOneOf as f1, type Group as f2, type Margin as f3, type Section as f4, type Appointment as f5, type AppointmentFormatInfoOneOf as f6, type Location as f7, type LocationLocationInfoOneOf as f8, type InPersonOptions as f9, type ObjectArray as fA, type ObjectArrayComponentTypeOptionsOneOf as fB, type DisplayField as fC, type DisplayFieldDisplayFieldTypeOptionsOneOf as fD, type RichContentOptions as fE, type PageNavigationOptions as fF, type Step as fG, type FormRule as fH, type FormOverride as fI, type FormProperties as fJ, type PostSubmissionTriggers as fK, type UpsertContact as fL, type V4FormFieldContactInfo as fM, type V4FormFieldContactInfoAdditionalInfoOneOf as fN, type FormFieldContactInfoEmailInfo as fO, type FormFieldContactInfoPhoneInfo as fP, type FormFieldContactInfoAddressInfo as fQ, type FormFieldContactInfoCustomFieldInfo as fR, type FormFieldContactInfoSubscriptionInfo as fS, type NestedForm as fT, type LimitationRule as fU, type RequiredIndicatorProperties as fV, type SubmitSettings as fW, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fX, type ThankYouMessageOptions as fY, type RedirectOptions as fZ, type FieldGroup as f_, type VideoConferenceOptions as fa, type PhoneOptions as fb, type FormFieldContactInfo as fc, type FormFieldContactInfoAdditionalInfoOneOf as fd, type EmailInfo as fe, type PhoneInfo as ff, type AddressInfo as fg, type CustomFieldInfo as fh, type SubscriptionInfo as fi, type _String as fj, type _StringComponentTypeOptionsOneOf as fk, type _Number as fl, type _NumberComponentTypeOptionsOneOf as fm, type _Boolean as fn, type _BooleanComponentTypeOptionsOneOf as fo, type _Array as fp, type _ArrayComponentTypeOptionsOneOf as fq, type _Object as fr, type WixFile as fs, type WixFileComponentTypeOptionsOneOf as ft, type Payment as fu, type PaymentComponentTypeOptionsOneOf as fv, type Scheduling as fw, type SchedulingComponentTypeOptionsOneOf as fx, type Address as fy, type AddressComponentTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type CursorSearch as g$, type RequiredOptions as g0, type HiddenOptions as g1, type AllowedValuesOptions as g2, type FieldOverride as g3, type FieldOverridePropertyTypeOptionsOneOf as g4, type ConditionNode as g5, type ConditionNodeNodeOneOf as g6, type AndCondition as g7, type OrCondition as g8, type Condition as g9, type BulkCreateSubmissionBySubmitterData as gA, type BulkCreateSubmissionBySubmitterResponse as gB, type GetSubmissionRequest as gC, type GetSubmissionResponse as gD, type GetSubmissionByCheckoutIdRequest as gE, type GetSubmissionByCheckoutIdResponse as gF, type UpdateSubmissionRequest as gG, type UpdateSubmissionResponse as gH, type ConfirmSubmissionRequest as gI, type DeleteSubmissionRequest as gJ, type DeleteSubmissionResponse as gK, type BulkDeleteSubmissionRequest as gL, type BulkDeleteSubmissionResult as gM, type RestoreSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinResponse as gP, type BulkRemoveSubmissionFromTrashBinRequest as gQ, type BulkRemoveSubmissionFromTrashBinResult as gR, type ListDeletedSubmissionsRequest as gS, type CursorPaging as gT, type CursorPagingMetadata as gU, type Cursors as gV, type GetDeletedSubmissionRequest as gW, type QuerySubmissionRequest as gX, type CursorQueryPagingMethodOneOf as gY, type Sorting as gZ, type SearchSubmissionsByNamespaceRequest as g_, type RuleFormOverride as ga, type RuleFormOverrideEntityTypeOptionsOneOf as gb, type Tags as gc, type TagsTagList as gd, type CreateCheckoutFromSubmissionResponse as ge, type Checkout as gf, type IsFormSubmittableRequest as gg, type IsFormSubmittableResponse as gh, type Empty as gi, type UpsertContactFromSubmissionRequest as gj, type SubmitContactResponse as gk, type CreateSubmissionRequest as gl, type CreateSubmissionResponse as gm, type SubmissionValidationErrorsDetails as gn, type ValidationError as go, type CreateSubmissionForMigrationRequest as gp, type CreateSubmissionForMigrationResponse as gq, type BulkCreateSubmissionsForMigrationRequest as gr, type BulkCreateSubmissionsForMigrationResponse as gs, type BulkSubmissionResult as gt, type ItemMetadata as gu, type ApplicationError as gv, type BulkActionMetadata as gw, type CreateSubmissionBySubmitterRequest as gx, type CreateSubmissionBySubmitterResponse as gy, type BulkCreateSubmissionBySubmitterRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type CropWithLiterals as h$, type CursorSearchPagingMethodOneOf as h0, type SearchDetails as h1, type SearchSubmissionsByNamespaceForExportRequest as h2, type SearchSubmissionsByNamespaceForExportResponse as h3, type QuerySubmissionsByNamespaceRequest as h4, type QuerySubmissionsByNamespaceResponse as h5, type QuerySubmissionsByNamespaceForExportRequest as h6, type QuerySubmissionsByNamespaceForExportResponse as h7, type CountSubmissionsByFilterRequest as h8, type FormSubmissionsCount as h9, type BaseEventMetadata as hA, type EventMetadata as hB, type FormSubmissionSearchSpec as hC, type SubmissionsQueryResult as hD, type FormSubmissionQuerySpec as hE, type SubmissionStatusWithLiterals as hF, type OptInLevelWithLiterals as hG, type WebhookIdentityTypeWithLiterals as hH, type StringTypeFormatEnumFormatWithLiterals as hI, type ValidationFormatWithLiterals as hJ, type ProductTypeWithLiterals as hK, type PriceTypeWithLiterals as hL, type FieldTypeWithLiterals as hM, type FormatEnumFormatWithLiterals as hN, type StringComponentTypeWithLiterals as hO, type NodeTypeWithLiterals as hP, type WidthTypeWithLiterals as hQ, type PluginContainerDataAlignmentWithLiterals as hR, type ButtonDataTypeWithLiterals as hS, type LinkTargetWithLiterals as hT, type TextAlignmentWithLiterals as hU, type LineStyleWithLiterals as hV, type WidthWithLiterals as hW, type DividerDataAlignmentWithLiterals as hX, type ViewModeWithLiterals as hY, type LayoutTypeWithLiterals as hZ, type OrientationWithLiterals as h_, type CountSubmissionsRequest as ha, type CountDeletedSubmissionsRequest as hb, type FormDeletedSubmissionsCount as hc, type GetMediaUploadURLRequest as hd, type BulkMarkSubmissionsAsSeenRequest as he, type GetSubmissionDownloadUrlRequest as hf, type SubmissionDocument as hg, type SubmissionDocumentDocumentOneOf as hh, type DocumentReady as hi, type DownloadSubmissionRequest as hj, type HeadersEntry as hk, type GetFormattedSubmissionRequest as hl, type FormattedSubmission as hm, type ListFormattedSubmissionsRequest as hn, type ListFormattedSubmissionsResponse as ho, type FormattedFormSubmission as hp, type UpdateExtendedFieldsRequest as hq, type BulkUpdateFormSubmissionTagsRequest as hr, type BulkUpdateFormSubmissionTagsResult as hs, type BulkUpdateFormSubmissionTagsByFilterRequest as ht, type ValidateFormSubmissionRequest as hu, type FieldViolation as hv, type FieldViolationErrorDataOneOf as hw, type SubmissionValidationErrors as hx, type SubmissionValidationError as hy, type SubmissionValidationErrorErrorMessageOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type SpamFilterProtectionLevelWithLiterals as i$, type ThumbnailsAlignmentWithLiterals as i0, type GIFTypeWithLiterals as i1, type SourceWithLiterals as i2, type StylesPositionWithLiterals as i3, type MapTypeWithLiterals as i4, type ViewRoleWithLiterals as i5, type VoteRoleWithLiterals as i6, type PollLayoutTypeWithLiterals as i7, type PollLayoutDirectionWithLiterals as i8, type BackgroundTypeWithLiterals as i9, type NumberComponentTypeWithLiterals as iA, type BooleanComponentTypeWithLiterals as iB, type ItemTypeWithLiterals as iC, type PropertiesTypeEnumWithLiterals as iD, type ArrayComponentTypeWithLiterals as iE, type WixFileComponentTypeWithLiterals as iF, type UploadFileFormatWithLiterals as iG, type PaymentComponentTypeWithLiterals as iH, type ComponentTypeWithLiterals as iI, type TypeWithLiterals as iJ, type ObjectArrayComponentTypeWithLiterals as iK, type SchedulingComponentTypeWithLiterals as iL, type FormatWithLiterals as iM, type InputTypeWithLiterals as iN, type EmailInfoTagWithLiterals as iO, type PhoneInfoTagWithLiterals as iP, type TagWithLiterals as iQ, type ConfirmationLevelWithLiterals as iR, type ContactFieldWithLiterals as iS, type DisplayFieldTypeWithLiterals as iT, type OverrideEntityTypeWithLiterals as iU, type KindWithLiterals as iV, type FormFieldContactInfoEmailInfoTagWithLiterals as iW, type FormFieldContactInfoPhoneInfoTagWithLiterals as iX, type AddressInfoTagWithLiterals as iY, type SubscriptionInfoOptInLevelWithLiterals as iZ, type FormFieldContactInfoContactFieldWithLiterals as i_, type DecorationTypeWithLiterals as ia, type FontTypeWithLiterals as ib, type PositionWithLiterals as ic, type AspectRatioWithLiterals as id, type ResizingWithLiterals as ie, type PlacementWithLiterals as ig, type CardStylesTypeWithLiterals as ih, type CardStylesAlignmentWithLiterals as ii, type LayoutWithLiterals as ij, type AppTypeWithLiterals as ik, type InitialExpandedItemsWithLiterals as il, type DirectionWithLiterals as im, type VerticalAlignmentWithLiterals as io, type NullValueWithLiterals as ip, type ScalingWithLiterals as iq, type LayoutDataImagePositionWithLiterals as ir, type VerticalAlignmentAlignmentWithLiterals as is, type ResponsivenessBehaviourWithLiterals as it, type DesignTargetWithLiterals as iu, type ImagePositionWithLiterals as iv, type AlignmentWithLiterals as iw, type ImageFitWithLiterals as ix, type NumberOfColumnsWithLiterals as iy, type FirstDayOfWeekWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorWithLiterals as j0, type RequiredIndicatorPlacementWithLiterals as j1, type TargetWithLiterals as j2, type SubmitSuccessActionWithLiterals as j3, type ChangeablePropertyWithLiterals as j4, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j5, type OperatorWithLiterals 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, bulkUpdateFormSubmissionTags as jJ, bulkUpdateFormSubmissionTagsByFilter as jK, validateFormSubmission as jL, 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 };
@@ -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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-Dow4WbIU.mjs';
3
- export { ge as ActionEvent, fo as Address, fp as AddressComponentTypeOptionsOneOf, f6 as AddressInfo, bf as AddressInfoTag, iX as AddressInfoTagWithLiterals, eL as AddressLine2, aP as Alignment, iv as AlignmentWithLiterals, fU as AllowedValuesOptions, du as AnchorData, fZ as AndCondition, dB as AppEmbedData, dC as AppEmbedDataAppDataOneOf, aE as AppType, ij as AppTypeWithLiterals, gv as ApplicationError, eX as Appointment, eY as AppointmentFormatInfoOneOf, aX as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, eu as ArrayItems, ev as ArrayItemsItemTypeOptionsOneOf, eq as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ic as AspectRatioWithLiterals, dW as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, e0 as BackgroundImage, au as BackgroundType, i8 as BackgroundTypeWithLiterals, hA as BaseEventMetadata, dZ as BlockquoteData, dD as BookingData, aU as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, eo as BooleanType, cz as Border, dT as BorderColors, dU as BorderWidths, eR as BreakPoint, gw as BulkActionMetadata, gA as BulkCreateSubmissionBySubmitterData, gz as BulkCreateSubmissionBySubmitterRequest, gB as BulkCreateSubmissionBySubmitterResponse, gr as BulkCreateSubmissionsForMigrationRequest, gs as BulkCreateSubmissionsForMigrationResponse, gL as BulkDeleteSubmissionRequest, gM as BulkDeleteSubmissionResult, he as BulkMarkSubmissionsAsSeenRequest, gQ as BulkRemoveSubmissionFromTrashBinRequest, gR as BulkRemoveSubmissionFromTrashBinResult, gt as BulkSubmissionResult, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsRequest, hs as BulkUpdateFormSubmissionTagsResult, dY as BulletedListData, cy as ButtonData, ab as ButtonDataType, hR as ButtonDataTypeWithLiterals, dF as ButtonStyles, d_ as CaptionData, dI as CardStyles, aC as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, aB as CardStylesType, ig as CardStylesTypeWithLiterals, dS as CellStyle, bn as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, ep as Checkbox, ew as CheckboxGroup, g5 as Checkout, cK as CodeBlockData, dO as CollapsibleListData, dv as ColorData, cA as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, a$ as ComponentType, iH as ComponentTypeWithLiterals, ey as ComponentsTags, f$ as Condition, fX as ConditionNode, fY as ConditionNodeNodeOneOf, gI as ConfirmSubmissionRequest, b8 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, b9 as ContactField, iR as ContactFieldWithLiterals, hb as CountDeletedSubmissionsRequest, h8 as CountSubmissionsByFilterRequest, ha as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g4 as CreateCheckoutFromSubmissionResponse, gx as CreateSubmissionBySubmitterRequest, gy as CreateSubmissionBySubmitterResponse, gp as CreateSubmissionForMigrationRequest, gq as CreateSubmissionForMigrationResponse, gl as CreateSubmissionRequest, gm as CreateSubmissionResponse, ak as Crop, h_ as CropWithLiterals, gT as CursorPaging, gU as CursorPagingMetadata, gY as CursorQueryPagingMethodOneOf, g$ as CursorSearch, h0 as CursorSearchPagingMethodOneOf, gV as Cursors, f7 as CustomFieldInfo, ea as CustomOption, ci as DataExtensionsDetails, ef as DateInput, eh as DatePicker, cq as DateTimeConstraints, ed as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, av as DecorationType, i9 as DecorationTypeWithLiterals, eM as DefaultCountryConfig, eN as DefaultCountryConfigOptionsOneOf, gJ as DeleteSubmissionRequest, gK as DeleteSubmissionResponse, dq as Design, aN as DesignTarget, it as DesignTargetWithLiterals, dQ as Dimensions, aG as Direction, il as DirectionWithLiterals, fs as DisplayField, ft as DisplayFieldDisplayFieldTypeOptionsOneOf, ba as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cM as DividerData, ag as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, hi as DocumentReady, e3 as DocumentStyle, g8 as DomainEvent, g9 as DomainEventBodyOneOf, eG as DonationInput, eH as DonationInputOption, hj as DownloadSubmissionRequest, eb as Dropdown, ec as DropdownOption, c8 as DynamicPriceOptions, f4 as EmailInfo, b5 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dM as EmbedData, gf as Empty, ga as EntityCreatedEvent, gd as EntityDeletedEvent, gc as EntityUpdatedEvent, bs as ErrorType, j8 as ErrorTypeWithLiterals, dE as EventData, hB as EventMetadata, bz as ExtendedFields, ck as Field, cl as FieldFieldTypeOptionsOneOf, fQ as FieldGroup, fV as FieldOverride, fW as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, a5 as FieldType, hL as FieldTypeWithLiterals, hv as FieldViolation, hw as FieldViolationErrorDataOneOf, cd as FieldsOverrides, eO as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, eB as FileType, eC as FileUpload, aS as FirstDayOfWeek, iy as FirstDayOfWeekWithLiterals, eJ as FixedPayment, c7 as FixedPriceOptions, dA as FontFamilyData, dy as FontSizeData, aw as FontType, ia as FontTypeWithLiterals, bK as Form, hc as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, f2 as FormFieldContactInfo, f3 as FormFieldContactInfoAdditionalInfoOneOf, fG as FormFieldContactInfoAddressInfo, bh as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fH as FormFieldContactInfoCustomFieldInfo, fE as FormFieldContactInfoEmailInfo, bd as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fF as FormFieldContactInfoPhoneInfo, be as FormFieldContactInfoPhoneInfoTag, iW as FormFieldContactInfoPhoneInfoTagWithLiterals, fI as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, eQ as FormLayout, fy as FormOverride, fz as FormProperties, fx as FormRule, hE as FormSubmissionQuerySpec, hC as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, h9 as FormSubmissionsCount, b3 as Format, a6 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, hp as FormattedFormSubmission, hm as FormattedSubmission, d0 as GIF, c$ as GIFData, am as GIFType, i0 as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, gW as GetDeletedSubmissionRequest, hl as GetFormattedSubmissionRequest, hd as GetMediaUploadURLRequest, gE as GetSubmissionByCheckoutIdRequest, gF as GetSubmissionByCheckoutIdResponse, hf as GetSubmissionDownloadUrlRequest, gC as GetSubmissionRequest, gD as GetSubmissionResponse, di as Gradient, eU as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hk as HeadersEntry, d1 as HeadingData, cF as Height, fT as HiddenOptions, gh as IdentificationData, gi as IdentificationDataIdOneOf, br as IdentityType, j7 as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aQ as ImageFit, iw as ImageFitWithLiterals, aO as ImagePosition, iu as ImagePositionWithLiterals, dG as ImageStyles, e$ as InPersonOptions, aF as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, cm as InputField, cn as InputFieldInputTypeOptionsOneOf, b4 as InputType, iM as InputTypeWithLiterals, bU as IntegerType, g6 as IsFormSubmittableRequest, g7 as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, eS as ItemLayout, eT as ItemLayoutItemOneOf, gu as ItemMetadata, cZ as ItemStyle, aV as ItemType, iB as ItemTypeWithLiterals, bc as Kind, iU as KindWithLiterals, aD as Layout, e1 as LayoutCellData, d$ as LayoutData, aK as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, ai as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fK as LimitationRule, ae as LineStyle, hU as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, ac as LinkTarget, hS as LinkTargetWithLiterals, gS as ListDeletedSubmissionsRequest, hn as ListFormattedSubmissionsRequest, ho as ListFormattedSubmissionsResponse, dV as ListValue, eZ as Location, e_ as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, ap as MapType, i3 as MapTypeWithLiterals, eV as Margin, bG as MarketingSubscriptionDetails, cS as Media, e5 as MediaItem, e6 as MediaItemMediaOneOf, e7 as MediaSettings, dx as MentionData, gg as MessageEnvelope, e2 as Metadata, bu as Mode, ja as ModeWithLiterals, eK as MultilineAddress, cb as MultilineAddressValidation, fJ as NestedForm, cf as NestedFormFieldOverrides, cj as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a8 as NodeType, hO as NodeTypeWithLiterals, aI as NullValue, io as NullValueWithLiterals, aT as NumberComponentType, iz as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, em as NumberInput, aR as NumberOfColumns, ix as NumberOfColumnsWithLiterals, el as NumberType, fq as ObjectArray, b1 as ObjectArrayComponentType, fr as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, ce as ObjectArrayType, b$ as ObjectErrorMessages, er as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dN as Oembed, bp as Operator, j5 as OperatorWithLiterals, a0 as OptInLevel, hG as OptInLevelWithLiterals, ex as Option, dm as OptionDesign, dh as OptionLayout, f_ as OrCondition, bA as OrderDetails, dX as OrderedListData, aj as Orientation, hZ as OrientationWithLiterals, bb as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, cQ as PDFSettings, fv as PageNavigationOptions, db as ParagraphData, ek as Password, fk as Payment, a_ as PaymentComponentType, fl as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eI as PaymentInput, c5 as PaymentType, dd as Permissions, cr as PhoneConstraints, f5 as PhoneInfo, b6 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ee as PhoneInput, f1 as PhoneOptions, aA as Placement, ie as PlacementWithLiterals, dL as PlaybackOptions, cB as PluginContainerData, aa as PluginContainerDataAlignment, hQ as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, at as PollLayoutDirection, i7 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i6 as PollLayoutTypeWithLiterals, de as PollOption, ax as Position, ib as PositionWithLiterals, fA as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hK as PriceTypeWithLiterals, dJ as PricingData, c9 as Product, eE as ProductCheckboxGroup, eF as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, a3 as ProductType, hJ as ProductTypeWithLiterals, es as PropertiesType, aW as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, et as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, gX as QuerySubmissionRequest, h6 as QuerySubmissionsByNamespaceForExportRequest, h7 as QuerySubmissionsByNamespaceForExportResponse, h4 as QuerySubmissionsByNamespaceRequest, h5 as QuerySubmissionsByNamespaceResponse, e8 as RadioGroup, e9 as RadioGroupOption, en as RatingInput, fP as RedirectOptions, cJ as Rel, gO as RemoveSubmissionFromTrashBinRequest, gP as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, eP as Repeater, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fL as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, fS as RequiredOptions, az as Resizing, id as ResizingWithLiterals, aM as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, gb as RestoreInfo, gN as RestoreSubmissionFromTrashBinRequest, dH as RibbonStyles, cu as RichContent, fu as RichContentOptions, fR as Rule, g0 as RuleFormOverride, g1 as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, ip as ScalingWithLiterals, fm as Scheduling, b2 as SchedulingComponentType, fn as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, h1 as SearchDetails, h2 as SearchSubmissionsByNamespaceForExportRequest, h3 as SearchSubmissionsByNamespaceForExportResponse, g_ as SearchSubmissionsByNamespaceRequest, eW as Section, ej as ServiceOption, eA as ServicesCheckboxGroup, ei as ServicesDropdown, df as Settings, eD as Signature, bt as SortOrder, j9 as SortOrderWithLiterals, gZ as Sorting, an as Source, i1 as SourceWithLiterals, bi as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bv as Status, jb as StatusWithLiterals, fw as Step, a7 as StringComponentType, hN as StringComponentTypeWithLiterals, bO as StringErrorMessages, co as StringType, bP as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cp as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cG as Styles, d5 as StylesBorder, ao as StylesPosition, i2 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hg as SubmissionDocument, hh as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hF as SubmissionStatusWithLiterals, hy as SubmissionValidationError, hz as SubmissionValidationErrorErrorMessageOneOf, hx as SubmissionValidationErrors, gn as SubmissionValidationErrorsDetails, hD as SubmissionsQueryResult, gk as SubmitContactResponse, fM as SubmitSettings, fN as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, f8 as SubscriptionInfo, bg as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, dR as TableCellData, dP as TableData, b7 as Tag, bC as TagList, iP as TagWithLiterals, g2 as Tags, ez as TagsOption, g3 as TagsTagList, bl as Target, j1 as TargetWithLiterals, ad as TextAlignment, hT as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e4 as TextNodeStyle, cL as TextStyle, fO as ThankYouMessageOptions, c_ as Thumbnails, al as ThumbnailsAlignment, h$ as ThumbnailsAlignmentWithLiterals, eg as TimeInput, b0 as Type, iI as TypeWithLiterals, hq as UpdateExtendedFieldsRequest, gG as UpdateSubmissionRequest, gH as UpdateSubmissionResponse, aZ as UploadFileFormat, iF as UploadFileFormatWithLiterals, fB as UpsertContact, gj as UpsertContactFromSubmissionRequest, fC as V4FormFieldContactInfo, fD as V4FormFieldContactInfoAdditionalInfoOneOf, hu as ValidateFormSubmissionRequest, cg as Validation, go as ValidationError, a2 as ValidationFormat, hI as ValidationFormatWithLiterals, cs as ValidationMessages, ch as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, cU as Video, f0 as VideoConferenceOptions, dK as VideoData, ah as ViewMode, hX as ViewModeWithLiterals, aq as ViewRole, i4 as ViewRoleWithLiterals, ar as VoteRole, i5 as VoteRoleWithLiterals, bq as WebhookIdentityType, j6 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, fi as WixFile, aY as WixFileComponentType, fj as WixFileComponentTypeOptionsOneOf, iE as WixFileComponentTypeWithLiterals, ff as _Array, fg as _ArrayComponentTypeOptionsOneOf, fd as _Boolean, fe as _BooleanComponentTypeOptionsOneOf, fb as _Number, fc as _NumberComponentTypeOptionsOneOf, fh as _Object, f9 as _String, fa as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-Dow4WbIU.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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-z81WPKXR.mjs';
3
+ export { bO as ActionEvent, fy as Address, fz as AddressComponentTypeOptionsOneOf, fg as AddressInfo, bg as AddressInfoTag, iY as AddressInfoTagWithLiterals, eV as AddressLine2, aQ as Alignment, iw as AlignmentWithLiterals, g2 as AllowedValuesOptions, dE as AnchorData, g7 as AndCondition, dL as AppEmbedData, dM as AppEmbedDataAppDataOneOf, aF as AppType, ik as AppTypeWithLiterals, gv as ApplicationError, f5 as Appointment, f6 as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iE as ArrayComponentTypeWithLiterals, cc as ArrayErrorMessages, eE as ArrayItems, eF as ArrayItemsItemTypeOptionsOneOf, eA as ArrayType, ca as ArrayTypeArrayItems, cb as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, id as AspectRatioWithLiterals, e4 as AudioData, du as Background, dv as BackgroundBackgroundOneOf, ea as BackgroundImage, av as BackgroundType, i9 as BackgroundTypeWithLiterals, hA as BaseEventMetadata, e7 as BlockquoteData, dN as BookingData, aV as BooleanComponentType, iB as BooleanComponentTypeWithLiterals, c4 as BooleanErrorMessages, ey as BooleanType, cJ as Border, e1 as BorderColors, e2 as BorderWidths, e$ as BreakPoint, gw as BulkActionMetadata, gA as BulkCreateSubmissionBySubmitterData, gz as BulkCreateSubmissionBySubmitterRequest, gB as BulkCreateSubmissionBySubmitterResponse, gr as BulkCreateSubmissionsForMigrationRequest, gs as BulkCreateSubmissionsForMigrationResponse, gL as BulkDeleteSubmissionRequest, gM as BulkDeleteSubmissionResult, he as BulkMarkSubmissionsAsSeenRequest, gQ as BulkRemoveSubmissionFromTrashBinRequest, gR as BulkRemoveSubmissionFromTrashBinResult, gt as BulkSubmissionResult, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsRequest, hs as BulkUpdateFormSubmissionTagsResult, e6 as BulletedListData, cI as ButtonData, ac as ButtonDataType, hS as ButtonDataTypeWithLiterals, dP as ButtonStyles, e8 as CaptionData, dS as CardStyles, aD as CardStylesAlignment, ii as CardStylesAlignmentWithLiterals, aC as CardStylesType, ih as CardStylesTypeWithLiterals, e0 as CellStyle, bo as ChangeableProperty, j4 as ChangeablePropertyWithLiterals, ez as Checkbox, eG as CheckboxGroup, gf as Checkout, cU as CodeBlockData, dY as CollapsibleListData, dF as ColorData, cK as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, b0 as ComponentType, iI as ComponentTypeWithLiterals, eI as ComponentsTags, g9 as Condition, g5 as ConditionNode, g6 as ConditionNodeNodeOneOf, gI as ConfirmSubmissionRequest, b9 as ConfirmationLevel, iR as ConfirmationLevelWithLiterals, ba as ContactField, iS as ContactFieldWithLiterals, hb as CountDeletedSubmissionsRequest, h8 as CountSubmissionsByFilterRequest, ha as CountSubmissionsRequest, bS as CreateCheckoutFromSubmissionRequest, bT as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, ge as CreateCheckoutFromSubmissionResponse, gx as CreateSubmissionBySubmitterRequest, gy as CreateSubmissionBySubmitterResponse, gp as CreateSubmissionForMigrationRequest, gq as CreateSubmissionForMigrationResponse, gl as CreateSubmissionRequest, gm as CreateSubmissionResponse, al as Crop, h$ as CropWithLiterals, gT as CursorPaging, gU as CursorPagingMetadata, gY as CursorQueryPagingMethodOneOf, g$ as CursorSearch, h0 as CursorSearchPagingMethodOneOf, gV as Cursors, fh as CustomFieldInfo, ek as CustomOption, cs as DataExtensionsDetails, ep as DateInput, er as DatePicker, cA as DateTimeConstraints, en as DateTimeInput, dC as Decoration, dD as DecorationDataOneOf, aw as DecorationType, ia as DecorationTypeWithLiterals, eW as DefaultCountryConfig, eX as DefaultCountryConfigOptionsOneOf, gJ as DeleteSubmissionRequest, gK as DeleteSubmissionResponse, dA as Design, aO as DesignTarget, iu as DesignTargetWithLiterals, d_ as Dimensions, aH as Direction, im as DirectionWithLiterals, fC as DisplayField, fD as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, iT as DisplayFieldTypeWithLiterals, cW as DividerData, ah as DividerDataAlignment, hX as DividerDataAlignmentWithLiterals, hi as DocumentReady, ed as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eQ as DonationInput, eR as DonationInputOption, hj as DownloadSubmissionRequest, el as Dropdown, em as DropdownOption, ci as DynamicPriceOptions, fe as EmailInfo, b6 as EmailInfoTag, iO as EmailInfoTagWithLiterals, dW as EmbedData, gi as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, j8 as ErrorTypeWithLiterals, dO as EventData, hB as EventMetadata, bz as ExtendedFields, cu as Field, cv as FieldFieldTypeOptionsOneOf, f_ as FieldGroup, g3 as FieldOverride, g4 as FieldOverridePropertyTypeOptionsOneOf, cm as FieldOverrides, a6 as FieldType, hM as FieldTypeWithLiterals, hv as FieldViolation, hw as FieldViolationErrorDataOneOf, cn as FieldsOverrides, eY as FieldsSettings, cX as FileData, cY as FileSource, cZ as FileSourceDataOneOf, eL as FileType, eM as FileUpload, aT as FirstDayOfWeek, iz as FirstDayOfWeekWithLiterals, eT as FixedPayment, ch as FixedPriceOptions, dK as FontFamilyData, dI as FontSizeData, ax as FontType, ib as FontTypeWithLiterals, bU as Form, hc as FormDeletedSubmissionsCount, bV as FormField, c5 as FormFieldArrayType, c3 as FormFieldBooleanType, fc as FormFieldContactInfo, fd as FormFieldContactInfoAdditionalInfoOneOf, fQ as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, i_ as FormFieldContactInfoContactFieldWithLiterals, fR as FormFieldContactInfoCustomFieldInfo, fO as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, iW as FormFieldContactInfoEmailInfoTagWithLiterals, fP as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, iX as FormFieldContactInfoPhoneInfoTagWithLiterals, fS as FormFieldContactInfoSubscriptionInfo, c0 as FormFieldNumberType, c6 as FormFieldObjectType, bW as FormFieldStringType, bX as FormFieldStringTypeFormatOptionsOneOf, e_ as FormLayout, fI as FormOverride, fJ as FormProperties, fH as FormRule, hE as FormSubmissionQuerySpec, hC as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, h9 as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hN as FormatEnumFormatWithLiterals, iM as FormatWithLiterals, hp as FormattedFormSubmission, hm as FormattedSubmission, da as GIF, d9 as GIFData, an as GIFType, i1 as GIFTypeWithLiterals, c$ as GalleryData, d5 as GalleryOptions, d6 as GalleryOptionsLayout, gW as GetDeletedSubmissionRequest, hl as GetFormattedSubmissionRequest, hd as GetMediaUploadURLRequest, gE as GetSubmissionByCheckoutIdRequest, gF as GetSubmissionByCheckoutIdResponse, hf as GetSubmissionDownloadUrlRequest, gC as GetSubmissionRequest, gD as GetSubmissionResponse, dt as Gradient, f2 as Group, dc as HTMLData, dd as HTMLDataDataOneOf, hk as HeadersEntry, db as HeadingData, cP as Height, g1 as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, j7 as IdentityTypeWithLiterals, d1 as Image, de as ImageData, dg as ImageDataStyles, aR as ImageFit, ix as ImageFitWithLiterals, aP as ImagePosition, iv as ImagePositionWithLiterals, dQ as ImageStyles, f9 as InPersonOptions, aG as InitialExpandedItems, il as InitialExpandedItemsWithLiterals, cw as InputField, cx as InputFieldInputTypeOptionsOneOf, b5 as InputType, iN as InputTypeWithLiterals, c2 as IntegerType, gg as IsFormSubmittableRequest, gh as IsFormSubmittableResponse, d3 as Item, d4 as ItemDataOneOf, f0 as ItemLayout, f1 as ItemLayoutItemOneOf, gu as ItemMetadata, d7 as ItemStyle, aW as ItemType, iC as ItemTypeWithLiterals, bd as Kind, iV as KindWithLiterals, aE as Layout, eb as LayoutCellData, e9 as LayoutData, aL as LayoutDataImagePosition, ir as LayoutDataImagePositionWithLiterals, aj as LayoutType, hZ as LayoutTypeWithLiterals, ij as LayoutWithLiterals, fU as LimitationRule, af as LineStyle, hV as LineStyleWithLiterals, cR as Link, dG as LinkData, cS as LinkDataOneOf, dh as LinkPreviewData, di as LinkPreviewDataStyles, ad as LinkTarget, hT as LinkTargetWithLiterals, gS as ListDeletedSubmissionsRequest, hn as ListFormattedSubmissionsRequest, ho as ListFormattedSubmissionsResponse, e3 as ListValue, f7 as Location, f8 as LocationLocationInfoOneOf, dj as MapData, dk as MapSettings, aq as MapType, i4 as MapTypeWithLiterals, f3 as Margin, bG as MarketingSubscriptionDetails, d0 as Media, ef as MediaItem, eg as MediaItemMediaOneOf, eh as MediaSettings, dH as MentionData, bP as MessageEnvelope, ec as Metadata, bu as Mode, ja as ModeWithLiterals, eU as MultilineAddress, cl as MultilineAddressValidation, fT as NestedForm, cp as NestedFormFieldOverrides, ct as NestedFormOverrides, cF as Node, cG as NodeDataOneOf, cH as NodeStyle, a9 as NodeType, hP as NodeTypeWithLiterals, aJ as NullValue, ip as NullValueWithLiterals, aU as NumberComponentType, iA as NumberComponentTypeWithLiterals, c1 as NumberErrorMessages, ew as NumberInput, aS as NumberOfColumns, iy as NumberOfColumnsWithLiterals, ev as NumberType, fA as ObjectArray, b2 as ObjectArrayComponentType, fB as ObjectArrayComponentTypeOptionsOneOf, iK as ObjectArrayComponentTypeWithLiterals, co as ObjectArrayType, c9 as ObjectErrorMessages, eB as ObjectType, c7 as ObjectTypePropertiesType, c8 as ObjectTypePropertiesTypePropertiesTypeOneOf, dX as Oembed, bq as Operator, j6 as OperatorWithLiterals, a0 as OptInLevel, hG as OptInLevelWithLiterals, eH as Option, dx as OptionDesign, ds as OptionLayout, g8 as OrCondition, bA as OrderDetails, e5 as OrderedListData, ak as Orientation, h_ as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, j5 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iU as OverrideEntityTypeWithLiterals, c_ as PDFSettings, fF as PageNavigationOptions, dl as ParagraphData, eu as Password, fu as Payment, a$ as PaymentComponentType, fv as PaymentComponentTypeOptionsOneOf, iH as PaymentComponentTypeWithLiterals, eS as PaymentInput, cf as PaymentType, dn as Permissions, cB as PhoneConstraints, ff as PhoneInfo, b7 as PhoneInfoTag, iP as PhoneInfoTagWithLiterals, eo as PhoneInput, fb as PhoneOptions, aB as Placement, ig as PlacementWithLiterals, dV as PlaybackOptions, cL as PluginContainerData, ab as PluginContainerDataAlignment, hR as PluginContainerDataAlignmentWithLiterals, cM as PluginContainerDataWidth, cN as PluginContainerDataWidthDataOneOf, dy as Poll, dm as PollData, dz as PollDataLayout, dw as PollDesign, dr as PollLayout, au as PollLayoutDirection, i8 as PollLayoutDirectionWithLiterals, at as PollLayoutType, i7 as PollLayoutTypeWithLiterals, dp as PollOption, ay as Position, ic as PositionWithLiterals, fK as PostSubmissionTriggers, cd as PredefinedValidation, ce as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hL as PriceTypeWithLiterals, dT as PricingData, cj as Product, eO as ProductCheckboxGroup, eP as ProductCheckboxGroupOption, ck as ProductPriceOptionsOneOf, a4 as ProductType, hK as ProductTypeWithLiterals, eC as PropertiesType, aX as PropertiesTypeEnum, iD as PropertiesTypeEnumWithLiterals, eD as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, cg as QuantityLimit, gX as QuerySubmissionRequest, h6 as QuerySubmissionsByNamespaceForExportRequest, h7 as QuerySubmissionsByNamespaceForExportResponse, h4 as QuerySubmissionsByNamespaceRequest, h5 as QuerySubmissionsByNamespaceResponse, ei as RadioGroup, ej as RadioGroupOption, ex as RatingInput, fZ as RedirectOptions, cT as Rel, gO as RemoveSubmissionFromTrashBinRequest, gP as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, eZ as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, j1 as RequiredIndicatorPlacementWithLiterals, fV as RequiredIndicatorProperties, j0 as RequiredIndicatorWithLiterals, g0 as RequiredOptions, aA as Resizing, ie as ResizingWithLiterals, aN as ResponsivenessBehaviour, it as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gN as RestoreSubmissionFromTrashBinRequest, dR as RibbonStyles, cE as RichContent, fE as RichContentOptions, f$ as Rule, ga as RuleFormOverride, gb as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, iq as ScalingWithLiterals, fw as Scheduling, b3 as SchedulingComponentType, fx as SchedulingComponentTypeOptionsOneOf, iL as SchedulingComponentTypeWithLiterals, h1 as SearchDetails, h2 as SearchSubmissionsByNamespaceForExportRequest, h3 as SearchSubmissionsByNamespaceForExportResponse, g_ as SearchSubmissionsByNamespaceRequest, f4 as Section, et as ServiceOption, eK as ServicesCheckboxGroup, es as ServicesDropdown, dq as Settings, eN as Signature, bt as SortOrder, j9 as SortOrderWithLiterals, gZ as Sorting, ao as Source, i2 as SourceWithLiterals, bj as SpamFilterProtectionLevel, i$ as SpamFilterProtectionLevelWithLiterals, cO as Spoiler, dJ as SpoilerData, bv as Status, jb as StatusWithLiterals, fG as Step, a8 as StringComponentType, hO as StringComponentTypeWithLiterals, bY as StringErrorMessages, cy as StringType, bZ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hI as StringTypeFormatEnumFormatWithLiterals, cz as StringTypeFormatOptionsOneOf, b_ as StringTypePhoneConstraints, b$ as StringTypeValidationMessages, cQ as Styles, df as StylesBorder, ap as StylesPosition, i3 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hg as SubmissionDocument, hh as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hF as SubmissionStatusWithLiterals, hy as SubmissionValidationError, hz as SubmissionValidationErrorErrorMessageOneOf, hx as SubmissionValidationErrors, gn as SubmissionValidationErrorsDetails, hD as SubmissionsQueryResult, gk as SubmitContactResponse, fW as SubmitSettings, fX as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, j3 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fi as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, iZ as SubscriptionInfoOptInLevelWithLiterals, d$ as TableCellData, dZ as TableData, b8 as Tag, bC as TagList, iQ as TagWithLiterals, gc as Tags, eJ as TagsOption, gd as TagsTagList, bm as Target, j2 as TargetWithLiterals, ae as TextAlignment, hU as TextAlignmentWithLiterals, dB as TextData, cD as TextInput, ee as TextNodeStyle, cV as TextStyle, fY as ThankYouMessageOptions, d8 as Thumbnails, am as ThumbnailsAlignment, i0 as ThumbnailsAlignmentWithLiterals, eq as TimeInput, b1 as Type, iJ as TypeWithLiterals, hq as UpdateExtendedFieldsRequest, gG as UpdateSubmissionRequest, gH as UpdateSubmissionResponse, a_ as UploadFileFormat, iG as UploadFileFormatWithLiterals, fL as UpsertContact, gj as UpsertContactFromSubmissionRequest, fM as V4FormFieldContactInfo, fN as V4FormFieldContactInfoAdditionalInfoOneOf, hu as ValidateFormSubmissionRequest, cq as Validation, go as ValidationError, a3 as ValidationFormat, hJ as ValidationFormatWithLiterals, cC as ValidationMessages, cr as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, is as VerticalAlignmentAlignmentWithLiterals, io as VerticalAlignmentWithLiterals, d2 as Video, fa as VideoConferenceOptions, dU as VideoData, ai as ViewMode, hY as ViewModeWithLiterals, ar as ViewRole, i5 as ViewRoleWithLiterals, as as VoteRole, i6 as VoteRoleWithLiterals, a1 as WebhookIdentityType, hH as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hQ as WidthTypeWithLiterals, hW as WidthWithLiterals, fs as WixFile, aZ as WixFileComponentType, ft as WixFileComponentTypeOptionsOneOf, iF as WixFileComponentTypeWithLiterals, fp as _Array, fq as _ArrayComponentTypeOptionsOneOf, fn as _Boolean, fo as _BooleanComponentTypeOptionsOneOf, fl as _Number, fm as _NumberComponentTypeOptionsOneOf, fr as _Object, fj as _String, fk as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-z81WPKXR.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";