@wix/auto_sdk_forms_submissions 1.0.47 → 1.0.48

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 (33) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-BQxE18i-.d.ts → forms-v4-submission-submissions.universal-C6qADutM.d.ts} +43 -7
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +2 -0
  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 +2 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +1 -1
  9. package/build/es/{forms-v4-submission-submissions.universal-BQxE18i-.d.mts → forms-v4-submission-submissions.universal-C6qADutM.d.mts} +43 -7
  10. package/build/es/index.d.mts +2 -2
  11. package/build/es/index.mjs +2 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs +2 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +1 -1
  17. package/build/internal/cjs/{forms-v4-submission-submissions.universal-DcchBxo2.d.ts → forms-v4-submission-submissions.universal-DYvuvm51.d.ts} +43 -7
  18. package/build/internal/cjs/index.d.ts +2 -2
  19. package/build/internal/cjs/index.js +2 -0
  20. package/build/internal/cjs/index.js.map +1 -1
  21. package/build/internal/cjs/index.typings.d.ts +2 -2
  22. package/build/internal/cjs/index.typings.js +2 -0
  23. package/build/internal/cjs/index.typings.js.map +1 -1
  24. package/build/internal/cjs/meta.d.ts +1 -1
  25. package/build/internal/es/{forms-v4-submission-submissions.universal-DcchBxo2.d.mts → forms-v4-submission-submissions.universal-DYvuvm51.d.mts} +43 -7
  26. package/build/internal/es/index.d.mts +2 -2
  27. package/build/internal/es/index.mjs +2 -0
  28. package/build/internal/es/index.mjs.map +1 -1
  29. package/build/internal/es/index.typings.d.mts +2 -2
  30. package/build/internal/es/index.typings.mjs +2 -0
  31. package/build/internal/es/index.typings.mjs.map +1 -1
  32. package/build/internal/es/meta.d.mts +1 -1
  33. package/package.json +2 -2
@@ -3136,11 +3136,11 @@ interface ServicesDropdown {
3136
3136
  * List of service options to select from
3137
3137
  * @maxSize 400
3138
3138
  */
3139
- options?: ServicesDropdownOption[];
3139
+ options?: ServiceOption[];
3140
3140
  /** Option which can be specified by UoU, enabled when this object is specified. */
3141
3141
  customOption?: CustomOption;
3142
3142
  }
3143
- interface ServicesDropdownOption {
3143
+ interface ServiceOption {
3144
3144
  /**
3145
3145
  * Service name/label
3146
3146
  * @maxLength 400
@@ -3366,10 +3366,11 @@ interface InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf {
3366
3366
  declare enum InputFieldArrayComponentType {
3367
3367
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3368
3368
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
3369
- TAGS = "TAGS"
3369
+ TAGS = "TAGS",
3370
+ SERVICES_CHECKBOX_GROUP = "SERVICES_CHECKBOX_GROUP"
3370
3371
  }
3371
3372
  /** @enumType */
3372
- type InputFieldArrayComponentTypeWithLiterals = InputFieldArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
3373
+ type InputFieldArrayComponentTypeWithLiterals = InputFieldArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
3373
3374
  interface CheckboxGroup {
3374
3375
  /**
3375
3376
  * Label of the field
@@ -3468,6 +3469,32 @@ interface TagsOption {
3468
3469
  /** Media item. Media, associated with option, like image. */
3469
3470
  media?: MediaItem;
3470
3471
  }
3472
+ interface ServicesCheckboxGroup {
3473
+ /**
3474
+ * Label of the field
3475
+ * @maxLength 350
3476
+ */
3477
+ label?: string | null;
3478
+ /** Description of the field */
3479
+ description?: RichContent;
3480
+ /**
3481
+ * List of options to select from
3482
+ * @maxSize 100
3483
+ */
3484
+ options?: ServiceOption[];
3485
+ /**
3486
+ * Flag identifying to hide or not label
3487
+ * Default: true
3488
+ */
3489
+ showLabel?: boolean | null;
3490
+ /** Option which can be specified by UoU, enabled when this object is specified. */
3491
+ customOption?: CustomOption;
3492
+ /**
3493
+ * Specifies the number of columns used to display the selections within the component.
3494
+ * Default: ONE
3495
+ */
3496
+ numberOfColumns?: NumberOfColumnsWithLiterals;
3497
+ }
3471
3498
  declare enum InputFieldWixFileComponentType {
3472
3499
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
3473
3500
  FILE_UPLOAD = "FILE_UPLOAD",
@@ -4068,6 +4095,8 @@ interface InputField_Array extends InputField_ArrayComponentTypeOptionsOneOf {
4068
4095
  checkboxGroupOptions?: CheckboxGroup;
4069
4096
  /** Tags input field */
4070
4097
  tagsOptions?: Tags;
4098
+ /** Services checkbox group input field */
4099
+ servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4071
4100
  /** Validation of array type. */
4072
4101
  validation?: InputFieldArrayType;
4073
4102
  /**
@@ -4082,6 +4111,8 @@ interface InputField_ArrayComponentTypeOptionsOneOf {
4082
4111
  checkboxGroupOptions?: CheckboxGroup;
4083
4112
  /** Tags input field */
4084
4113
  tagsOptions?: Tags;
4114
+ /** Services checkbox group input field */
4115
+ servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4085
4116
  }
4086
4117
  interface InputField_Object extends InputField_ObjectValidationOneOf {
4087
4118
  /** Validation of object type. */
@@ -4645,10 +4676,11 @@ interface ArrayItemsItemTypeOptionsOneOf {
4645
4676
  declare enum ArrayComponentType {
4646
4677
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4647
4678
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
4648
- TAGS = "TAGS"
4679
+ TAGS = "TAGS",
4680
+ SERVICES_CHECKBOX_GROUP = "SERVICES_CHECKBOX_GROUP"
4649
4681
  }
4650
4682
  /** @enumType */
4651
- type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
4683
+ type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
4652
4684
  declare enum WixFileComponentType {
4653
4685
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4654
4686
  FILE_UPLOAD = "FILE_UPLOAD",
@@ -4875,6 +4907,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
4875
4907
  checkboxGroupOptions?: CheckboxGroup;
4876
4908
  /** Tags input field */
4877
4909
  tagsOptions?: Tags;
4910
+ /** Services checkbox group input field */
4911
+ servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4878
4912
  /** Validation of array type. */
4879
4913
  validation?: ArrayType;
4880
4914
  /**
@@ -4889,6 +4923,8 @@ interface _ArrayComponentTypeOptionsOneOf {
4889
4923
  checkboxGroupOptions?: CheckboxGroup;
4890
4924
  /** Tags input field */
4891
4925
  tagsOptions?: Tags;
4926
+ /** Services checkbox group input field */
4927
+ servicesCheckboxGroupOptions?: ServicesCheckboxGroup;
4892
4928
  }
4893
4929
  interface _Object {
4894
4930
  /** Validation of object type. */
@@ -7599,4 +7635,4 @@ interface ValidateFormSubmissionOptions {
7599
7635
  fieldsToValidate?: string[];
7600
7636
  }
7601
7637
 
7602
- export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType 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_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind 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 HTMLDataDataOneOf 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 Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type FormFieldV2 as cj, type FormFieldV2FieldTypeOptionsOneOf as ck, type InputFieldStringType as cl, type InputFieldStringTypeFormatOptionsOneOf as cm, type InputFieldStringTypeDateTimeConstraints as cn, type InputFieldStringTypePhoneConstraints as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type ButtonStyles as dA, type ImageStyles as dB, type RibbonStyles as dC, type CardStyles as dD, type PricingData as dE, type VideoData as dF, type PlaybackOptions as dG, type EmbedData as dH, type Oembed as dI, type CollapsibleListData as dJ, type TableData as dK, type Dimensions as dL, type TableCellData as dM, type CellStyle as dN, type BorderColors as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type AppEmbedData as dw, type AppEmbedDataAppDataOneOf as dx, type BookingData as dy, type EventData as dz, type UpdateSubmissionValidationErrors as e, type InputField_ArrayComponentTypeOptionsOneOf as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type FixedPayment as eA, type Appointment as eB, type AppointmentFormatInfoOneOf as eC, type Location as eD, type LocationLocationInfoOneOf as eE, type InPersonOptions as eF, type VideoConferenceOptions as eG, type PhoneOptions as eH, type MultilineAddress as eI, type AddressLine2 as eJ, type DefaultCountryConfig as eK, type DefaultCountryConfigOptionsOneOf as eL, type FieldsSettings as eM, type V4FormFieldContactInfo as eN, type V4FormFieldContactInfoAdditionalInfoOneOf as eO, type FormFieldContactInfoEmailInfo as eP, type FormFieldContactInfoPhoneInfo as eQ, type FormFieldContactInfoAddressInfo as eR, type FormFieldContactInfoCustomFieldInfo as eS, type FormFieldContactInfoSubscriptionInfo as eT, type InputField_String as eU, type InputField_StringComponentTypeOptionsOneOf as eV, type InputField_Number as eW, type InputField_NumberComponentTypeOptionsOneOf as eX, type InputField_Boolean as eY, type InputField_BooleanComponentTypeOptionsOneOf as eZ, type InputField_Array as e_, type ServicesDropdown as ea, type ServicesDropdownOption as eb, type InputFieldNumberType as ec, type NumberInput as ed, type RatingInput as ee, type InputFieldBooleanType as ef, type Checkbox as eg, type InputFieldArrayType as eh, type InputFieldIntegerType as ei, type InputFieldObjectType as ej, type InputFieldObjectTypePropertiesType as ek, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as el, type InputFieldArrayTypeArrayItems as em, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as en, type CheckboxGroup as eo, type Option as ep, type Tags as eq, type TagsOption as er, type FileType as es, type FileUpload as et, type Signature as eu, type ProductCheckboxGroup as ev, type ProductCheckboxGroupOption as ew, type DonationInput as ex, type DonationInputOption as ey, type PaymentInput as ez, type ConfirmSubmissionResponse as f, type BreakPoint as f$, type InputField_Object as f0, type InputField_ObjectValidationOneOf as f1, type InputFieldWixFile as f2, type InputFieldWixFileComponentTypeOptionsOneOf as f3, type InputFieldPayment as f4, type InputFieldPaymentComponentTypeOptionsOneOf as f5, type InputFieldMultilineAddress as f6, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f7, type InputFieldScheduling as f8, type InputFieldSchedulingComponentTypeOptionsOneOf as f9, type PhoneInfo as fA, type AddressInfo as fB, type CustomFieldInfo as fC, type SubscriptionInfo as fD, type _String as fE, type _StringComponentTypeOptionsOneOf as fF, type _Number as fG, type _NumberComponentTypeOptionsOneOf as fH, type _Boolean as fI, type _BooleanComponentTypeOptionsOneOf as fJ, type _Array as fK, type _ArrayComponentTypeOptionsOneOf as fL, type _Object as fM, type WixFile as fN, type WixFileComponentTypeOptionsOneOf as fO, type Payment as fP, type PaymentComponentTypeOptionsOneOf as fQ, type Scheduling as fR, type SchedulingComponentTypeOptionsOneOf as fS, type Address as fT, type AddressComponentTypeOptionsOneOf as fU, type FieldsDisplayField as fV, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fW, type RichContentOptions as fX, type PageNavigationOptions as fY, type Step as fZ, type FormLayout as f_, type FormFieldV2InputField as fa, type FormFieldV2InputFieldInputTypeOptionsOneOf as fb, type DisplayField as fc, type DisplayFieldDisplayFieldTypeOptionsOneOf as fd, type V4RichContentOptions as fe, type V4PageNavigationOptions as ff, type Field as fg, type FieldFieldTypeOptionsOneOf as fh, type InputField as fi, type InputFieldInputTypeOptionsOneOf as fj, type StringType as fk, type StringTypeFormatOptionsOneOf as fl, type DateTimeConstraints as fm, type PhoneConstraints as fn, type ValidationMessages as fo, type NumberType as fp, type BooleanType as fq, type ArrayType as fr, type ObjectType as fs, type PropertiesType as ft, type PropertiesTypePropertiesTypeOptionsOneOf as fu, type ArrayItems as fv, type ArrayItemsItemTypeOptionsOneOf as fw, type FormFieldContactInfo as fx, type FormFieldContactInfoAdditionalInfoOneOf as fy, type EmailInfo as fz, type BulkDeleteSubmissionResponse as g, type GetSubmissionRequest as g$, type ItemLayout as g0, type ItemLayoutItemOneOf as g1, type Group as g2, type Margin as g3, type Section as g4, type FormRule as g5, type FormOverride as g6, type FormProperties as g7, type PostSubmissionTriggers as g8, type UpsertContact as g9, type DomainEventBodyOneOf as gA, type EntityCreatedEvent as gB, type RestoreInfo as gC, type EntityUpdatedEvent as gD, type EntityDeletedEvent as gE, type ActionEvent as gF, type Empty as gG, type MessageEnvelope as gH, type IdentificationData as gI, type IdentificationDataIdOneOf as gJ, type UpsertContactFromSubmissionRequest as gK, type SubmitContactResponse as gL, type CreateSubmissionRequest as gM, type CreateSubmissionResponse as gN, type SubmissionValidationErrorsDetails as gO, type ValidationError as gP, type CreateSubmissionForMigrationRequest as gQ, type CreateSubmissionForMigrationResponse as gR, type CreateSubmissionBySubmitterRequest as gS, type CreateSubmissionBySubmitterResponse as gT, type BulkCreateSubmissionBySubmitterRequest as gU, type BulkCreateSubmissionBySubmitterData as gV, type BulkCreateSubmissionBySubmitterResponse as gW, type BulkSubmissionResult as gX, type ItemMetadata as gY, type ApplicationError as gZ, type BulkActionMetadata as g_, type NestedForm as ga, type LimitationRule as gb, type RequiredIndicatorProperties as gc, type SubmitSettings as gd, type SubmitSettingsSubmitSuccessActionOptionsOneOf as ge, type ThankYouMessageOptions as gf, type RedirectOptions as gg, type FieldGroup as gh, type Rule as gi, type RequiredOptions as gj, type HiddenOptions as gk, type AllowedValuesOptions as gl, type FieldOverride as gm, type FieldOverridePropertyTypeOptionsOneOf as gn, type ConditionNode as go, type ConditionNodeNodeOneOf as gp, type AndCondition as gq, type OrCondition as gr, type Condition as gs, type RuleFormOverride as gt, type RuleFormOverrideEntityTypeOptionsOneOf as gu, type CreateCheckoutFromSubmissionResponse as gv, type Checkout as gw, type IsFormSubmittableRequest as gx, type IsFormSubmittableResponse as gy, type DomainEvent as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationError as h$, type GetSubmissionResponse as h0, type GetSubmissionByCheckoutIdRequest as h1, type GetSubmissionByCheckoutIdResponse as h2, type UpdateSubmissionRequest as h3, type UpdateSubmissionResponse as h4, type ConfirmSubmissionRequest as h5, type DeleteSubmissionRequest as h6, type DeleteSubmissionResponse as h7, type BulkDeleteSubmissionRequest as h8, type BulkDeleteSubmissionResult as h9, type CountDeletedSubmissionsRequest as hA, type FormDeletedSubmissionsCount as hB, type GetMediaUploadURLRequest as hC, type BulkMarkSubmissionsAsSeenRequest as hD, type BulkMarkSubmissionsAsSeenResponse as hE, type GetSubmissionDownloadUrlRequest as hF, type SubmissionDocument as hG, type SubmissionDocumentDocumentOneOf as hH, type DocumentReady as hI, type DownloadSubmissionRequest as hJ, type RawHttpResponse as hK, type HeadersEntry as hL, type GetFormattedSubmissionRequest as hM, type FormattedSubmission as hN, type ListFormattedSubmissionsRequest as hO, type ListFormattedSubmissionsResponse as hP, type FormattedFormSubmission as hQ, type UpdateExtendedFieldsRequest as hR, type BulkUpdateFormSubmissionTagsRequest as hS, type BulkUpdateFormSubmissionTagsResponse as hT, type BulkUpdateFormSubmissionTagsResult as hU, type BulkUpdateFormSubmissionTagsByFilterRequest as hV, type BulkUpdateFormSubmissionTagsByFilterResponse as hW, type ValidateFormSubmissionRequest as hX, type FieldViolation as hY, type FieldViolationErrorDataOneOf as hZ, type SubmissionValidationErrors as h_, type RestoreSubmissionFromTrashBinRequest as ha, type RemoveSubmissionFromTrashBinRequest as hb, type RemoveSubmissionFromTrashBinResponse as hc, type BulkRemoveSubmissionFromTrashBinRequest as hd, type BulkRemoveSubmissionFromTrashBinResult as he, type ListDeletedSubmissionsRequest as hf, type CursorPaging as hg, type CursorPagingMetadata as hh, type Cursors as hi, type GetDeletedSubmissionRequest as hj, type QuerySubmissionRequest as hk, type CursorQueryPagingMethodOneOf as hl, type Sorting as hm, type SearchSubmissionsByNamespaceRequest as hn, type CursorSearch as ho, type CursorSearchPagingMethodOneOf as hp, type SearchDetails as hq, type SearchSubmissionsByNamespaceForExportRequest as hr, type SearchSubmissionsByNamespaceForExportResponse as hs, type QuerySubmissionsByNamespaceRequest as ht, type QuerySubmissionsByNamespaceResponse as hu, type QuerySubmissionsByNamespaceForExportRequest as hv, type QuerySubmissionsByNamespaceForExportResponse as hw, type CountSubmissionsByFilterRequest as hx, type FormSubmissionsCount as hy, type CountSubmissionsRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InputFieldArrayComponentTypeWithLiterals as i$, type SubmissionValidationErrorErrorMessageOneOf as i0, type BaseEventMetadata as i1, type EventMetadata as i2, type FormSubmissionSearchSpec as i3, type SubmissionsQueryResult as i4, type BulkUpdateFormSubmissionTagsOptions as i5, type BulkUpdateFormSubmissionTagsByFilterOptions as i6, type SubmissionStatusWithLiterals as i7, type OptInLevelWithLiterals as i8, type StringTypeFormatEnumFormatWithLiterals as i9, type VoteRoleWithLiterals as iA, type PollLayoutTypeWithLiterals as iB, type PollLayoutDirectionWithLiterals as iC, type BackgroundTypeWithLiterals as iD, type DecorationTypeWithLiterals as iE, type FontTypeWithLiterals as iF, type PositionWithLiterals as iG, type AspectRatioWithLiterals as iH, type ResizingWithLiterals as iI, type PlacementWithLiterals as iJ, type CardStylesTypeWithLiterals as iK, type CardStylesAlignmentWithLiterals as iL, type LayoutWithLiterals as iM, type AppTypeWithLiterals as iN, type InitialExpandedItemsWithLiterals as iO, type DirectionWithLiterals as iP, type VerticalAlignmentWithLiterals as iQ, type NullValueWithLiterals as iR, type ImagePositionWithLiterals as iS, type AlignmentWithLiterals as iT, type ImageFitWithLiterals as iU, type NumberOfColumnsWithLiterals as iV, type FirstDayOfWeekWithLiterals as iW, type InputFieldNumberComponentTypeWithLiterals as iX, type InputFieldBooleanComponentTypeWithLiterals as iY, type ArrayItemsItemTypeWithLiterals as iZ, type PropertiesTypePropertiesTypeEnumWithLiterals as i_, type ValidationFormatWithLiterals as ia, type ProductTypeWithLiterals as ib, type PriceTypeWithLiterals as ic, type InputFieldStringTypeFormatEnumFormatWithLiterals as id, type InputFieldStringComponentTypeWithLiterals as ie, type NodeTypeWithLiterals as ig, type WidthTypeWithLiterals as ih, type PluginContainerDataAlignmentWithLiterals as ii, type ButtonDataTypeWithLiterals as ij, type LinkTargetWithLiterals as ik, type TextAlignmentWithLiterals as il, type LineStyleWithLiterals as im, type WidthWithLiterals as io, type DividerDataAlignmentWithLiterals as ip, type ViewModeWithLiterals as iq, type LayoutTypeWithLiterals as ir, type OrientationWithLiterals as is, type CropWithLiterals as it, type ThumbnailsAlignmentWithLiterals as iu, type GIFTypeWithLiterals as iv, type SourceWithLiterals as iw, type StylesPositionWithLiterals as ix, type MapTypeWithLiterals as iy, type ViewRoleWithLiterals as iz, type ListDeletedSubmissionsResponse as j, confirmSubmission as j$, type InputFieldWixFileComponentTypeWithLiterals as j0, type UploadFileFormatWithLiterals as j1, type InputFieldPaymentComponentTypeWithLiterals as j2, type InputFieldSchedulingComponentTypeWithLiterals as j3, type FormatWithLiterals as j4, type MultilineAddressComponentTypeWithLiterals as j5, type TypeWithLiterals as j6, type InputFieldInputTypeWithLiterals as j7, type FormFieldContactInfoEmailInfoTagWithLiterals as j8, type FormFieldContactInfoPhoneInfoTagWithLiterals as j9, type SpamFilterProtectionLevelWithLiterals as jA, type RequiredIndicatorWithLiterals as jB, type RequiredIndicatorPlacementWithLiterals as jC, type TargetWithLiterals as jD, type SubmitSuccessActionWithLiterals as jE, type ChangeablePropertyWithLiterals as jF, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jG, type OperatorWithLiterals as jH, type WebhookIdentityTypeWithLiterals as jI, type IdentityTypeWithLiterals as jJ, type ErrorTypeWithLiterals as jK, type SortOrderWithLiterals as jL, type ModeWithLiterals as jM, type StatusWithLiterals as jN, type SubmissionErrorTypeWithLiterals as jO, type CommonSearchWithEntityContext as jP, onSubmissionCreated as jQ, onSubmissionDeleted as jR, onSubmissionRemovedSubmissionFromTrash as jS, onSubmissionStatusUpdated as jT, onSubmissionContactMapped as jU, onSubmissionContactMappingSkipped as jV, onSubmissionUpdated as jW, upsertContactFromSubmission as jX, createSubmission as jY, getSubmission as jZ, updateSubmission as j_, type AddressInfoTagWithLiterals as ja, type SubscriptionInfoOptInLevelWithLiterals as jb, type FormFieldContactInfoContactFieldWithLiterals as jc, type FormFieldV2FieldTypeWithLiterals as jd, type DisplayFieldTypeWithLiterals as je, type FieldTypeWithLiterals as jf, type FormatEnumFormatWithLiterals as jg, type StringComponentTypeWithLiterals as jh, type NumberComponentTypeWithLiterals as ji, type BooleanComponentTypeWithLiterals as jj, type ItemTypeWithLiterals as jk, type PropertiesTypeEnumWithLiterals as jl, type ArrayComponentTypeWithLiterals as jm, type WixFileComponentTypeWithLiterals as jn, type PaymentComponentTypeWithLiterals as jo, type ComponentTypeWithLiterals as jp, type SchedulingComponentTypeWithLiterals as jq, type InputTypeWithLiterals as jr, type EmailInfoTagWithLiterals as js, type PhoneInfoTagWithLiterals as jt, type TagWithLiterals as ju, type ConfirmationLevelWithLiterals as jv, type ContactFieldWithLiterals as jw, type DisplayFieldDisplayFieldTypeWithLiterals as jx, type OverrideEntityTypeWithLiterals as jy, type KindWithLiterals as jz, type CursorQuery as k, deleteSubmission as k0, bulkDeleteSubmission as k1, restoreSubmissionFromTrashBin as k2, removeSubmissionFromTrashBin as k3, bulkRemoveSubmissionFromTrashBin as k4, listDeletedSubmissions as k5, getDeletedSubmission as k6, querySubmission as k7, querySubmissionsByNamespace as k8, countSubmissionsByFilter as k9, countSubmissions as ka, countDeletedSubmissions as kb, getMediaUploadUrl as kc, bulkMarkSubmissionsAsSeen as kd, getSubmissionDownloadUrl as ke, getFormattedSubmission as kf, updateExtendedFields as kg, validateFormSubmission as kh, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7638
+ export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType 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_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind 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 HTMLDataDataOneOf 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 Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type FormFieldV2 as cj, type FormFieldV2FieldTypeOptionsOneOf as ck, type InputFieldStringType as cl, type InputFieldStringTypeFormatOptionsOneOf as cm, type InputFieldStringTypeDateTimeConstraints as cn, type InputFieldStringTypePhoneConstraints as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type ButtonStyles as dA, type ImageStyles as dB, type RibbonStyles as dC, type CardStyles as dD, type PricingData as dE, type VideoData as dF, type PlaybackOptions as dG, type EmbedData as dH, type Oembed as dI, type CollapsibleListData as dJ, type TableData as dK, type Dimensions as dL, type TableCellData as dM, type CellStyle as dN, type BorderColors as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type AppEmbedData as dw, type AppEmbedDataAppDataOneOf as dx, type BookingData as dy, type EventData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Array as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type PaymentInput as eA, type FixedPayment as eB, type Appointment as eC, type AppointmentFormatInfoOneOf as eD, type Location as eE, type LocationLocationInfoOneOf as eF, type InPersonOptions as eG, type VideoConferenceOptions as eH, type PhoneOptions as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type V4FormFieldContactInfo as eO, type V4FormFieldContactInfoAdditionalInfoOneOf as eP, type FormFieldContactInfoEmailInfo as eQ, type FormFieldContactInfoPhoneInfo as eR, type FormFieldContactInfoAddressInfo as eS, type FormFieldContactInfoCustomFieldInfo as eT, type FormFieldContactInfoSubscriptionInfo as eU, type InputField_String as eV, type InputField_StringComponentTypeOptionsOneOf as eW, type InputField_Number as eX, type InputField_NumberComponentTypeOptionsOneOf as eY, type InputField_Boolean as eZ, type InputField_BooleanComponentTypeOptionsOneOf as e_, type ServicesDropdown as ea, type ServiceOption as eb, type InputFieldNumberType as ec, type NumberInput as ed, type RatingInput as ee, type InputFieldBooleanType as ef, type Checkbox as eg, type InputFieldArrayType as eh, type InputFieldIntegerType as ei, type InputFieldObjectType as ej, type InputFieldObjectTypePropertiesType as ek, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as el, type InputFieldArrayTypeArrayItems as em, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as en, type CheckboxGroup as eo, type Option as ep, type Tags as eq, type TagsOption as er, type ServicesCheckboxGroup as es, type FileType as et, type FileUpload as eu, type Signature as ev, type ProductCheckboxGroup as ew, type ProductCheckboxGroupOption as ex, type DonationInput as ey, type DonationInputOption as ez, type ConfirmSubmissionResponse as f, type FormLayout as f$, type InputField_ArrayComponentTypeOptionsOneOf as f0, type InputField_Object as f1, type InputField_ObjectValidationOneOf as f2, type InputFieldWixFile as f3, type InputFieldWixFileComponentTypeOptionsOneOf as f4, type InputFieldPayment as f5, type InputFieldPaymentComponentTypeOptionsOneOf as f6, type InputFieldMultilineAddress as f7, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f8, type InputFieldScheduling as f9, type EmailInfo as fA, type PhoneInfo as fB, type AddressInfo as fC, type CustomFieldInfo as fD, type SubscriptionInfo as fE, type _String as fF, type _StringComponentTypeOptionsOneOf as fG, type _Number as fH, type _NumberComponentTypeOptionsOneOf as fI, type _Boolean as fJ, type _BooleanComponentTypeOptionsOneOf as fK, type _Array as fL, type _ArrayComponentTypeOptionsOneOf as fM, type _Object as fN, type WixFile as fO, type WixFileComponentTypeOptionsOneOf as fP, type Payment as fQ, type PaymentComponentTypeOptionsOneOf as fR, type Scheduling as fS, type SchedulingComponentTypeOptionsOneOf as fT, type Address as fU, type AddressComponentTypeOptionsOneOf as fV, type FieldsDisplayField as fW, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fX, type RichContentOptions as fY, type PageNavigationOptions as fZ, type Step as f_, type InputFieldSchedulingComponentTypeOptionsOneOf as fa, type FormFieldV2InputField as fb, type FormFieldV2InputFieldInputTypeOptionsOneOf as fc, type DisplayField as fd, type DisplayFieldDisplayFieldTypeOptionsOneOf as fe, type V4RichContentOptions as ff, type V4PageNavigationOptions as fg, type Field as fh, type FieldFieldTypeOptionsOneOf as fi, type InputField as fj, type InputFieldInputTypeOptionsOneOf as fk, type StringType as fl, type StringTypeFormatOptionsOneOf as fm, type DateTimeConstraints as fn, type PhoneConstraints as fo, type ValidationMessages as fp, type NumberType as fq, type BooleanType as fr, type ArrayType as fs, type ObjectType as ft, type PropertiesType as fu, type PropertiesTypePropertiesTypeOptionsOneOf as fv, type ArrayItems as fw, type ArrayItemsItemTypeOptionsOneOf as fx, type FormFieldContactInfo as fy, type FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkActionMetadata as g$, type BreakPoint as g0, type ItemLayout as g1, type ItemLayoutItemOneOf as g2, type Group as g3, type Margin as g4, type Section as g5, type FormRule as g6, type FormOverride as g7, type FormProperties as g8, type PostSubmissionTriggers as g9, type DomainEvent as gA, type DomainEventBodyOneOf as gB, type EntityCreatedEvent as gC, type RestoreInfo as gD, type EntityUpdatedEvent as gE, type EntityDeletedEvent as gF, type ActionEvent as gG, type Empty as gH, type MessageEnvelope as gI, type IdentificationData as gJ, type IdentificationDataIdOneOf as gK, type UpsertContactFromSubmissionRequest as gL, type SubmitContactResponse as gM, type CreateSubmissionRequest as gN, type CreateSubmissionResponse as gO, type SubmissionValidationErrorsDetails as gP, type ValidationError as gQ, type CreateSubmissionForMigrationRequest as gR, type CreateSubmissionForMigrationResponse as gS, type CreateSubmissionBySubmitterRequest as gT, type CreateSubmissionBySubmitterResponse as gU, type BulkCreateSubmissionBySubmitterRequest as gV, type BulkCreateSubmissionBySubmitterData as gW, type BulkCreateSubmissionBySubmitterResponse as gX, type BulkSubmissionResult as gY, type ItemMetadata as gZ, type ApplicationError as g_, type UpsertContact as ga, type NestedForm as gb, type LimitationRule as gc, type RequiredIndicatorProperties as gd, type SubmitSettings as ge, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gf, type ThankYouMessageOptions as gg, type RedirectOptions as gh, type FieldGroup as gi, type Rule as gj, type RequiredOptions as gk, type HiddenOptions as gl, type AllowedValuesOptions as gm, type FieldOverride as gn, type FieldOverridePropertyTypeOptionsOneOf as go, type ConditionNode as gp, type ConditionNodeNodeOneOf as gq, type AndCondition as gr, type OrCondition as gs, type Condition as gt, type RuleFormOverride as gu, type RuleFormOverrideEntityTypeOptionsOneOf as gv, type CreateCheckoutFromSubmissionResponse as gw, type Checkout as gx, type IsFormSubmittableRequest as gy, type IsFormSubmittableResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationErrors as h$, type GetSubmissionRequest as h0, type GetSubmissionResponse as h1, type GetSubmissionByCheckoutIdRequest as h2, type GetSubmissionByCheckoutIdResponse as h3, type UpdateSubmissionRequest as h4, type UpdateSubmissionResponse as h5, type ConfirmSubmissionRequest as h6, type DeleteSubmissionRequest as h7, type DeleteSubmissionResponse as h8, type BulkDeleteSubmissionRequest as h9, type CountSubmissionsRequest as hA, type CountDeletedSubmissionsRequest as hB, type FormDeletedSubmissionsCount as hC, type GetMediaUploadURLRequest as hD, type BulkMarkSubmissionsAsSeenRequest as hE, type BulkMarkSubmissionsAsSeenResponse as hF, type GetSubmissionDownloadUrlRequest as hG, type SubmissionDocument as hH, type SubmissionDocumentDocumentOneOf as hI, type DocumentReady as hJ, type DownloadSubmissionRequest as hK, type RawHttpResponse as hL, type HeadersEntry as hM, type GetFormattedSubmissionRequest as hN, type FormattedSubmission as hO, type ListFormattedSubmissionsRequest as hP, type ListFormattedSubmissionsResponse as hQ, type FormattedFormSubmission as hR, type UpdateExtendedFieldsRequest as hS, type BulkUpdateFormSubmissionTagsRequest as hT, type BulkUpdateFormSubmissionTagsResponse as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type BulkUpdateFormSubmissionTagsByFilterResponse as hX, type ValidateFormSubmissionRequest as hY, type FieldViolation as hZ, type FieldViolationErrorDataOneOf as h_, type BulkDeleteSubmissionResult as ha, type RestoreSubmissionFromTrashBinRequest as hb, type RemoveSubmissionFromTrashBinRequest as hc, type RemoveSubmissionFromTrashBinResponse as hd, type BulkRemoveSubmissionFromTrashBinRequest as he, type BulkRemoveSubmissionFromTrashBinResult as hf, type ListDeletedSubmissionsRequest as hg, type CursorPaging as hh, type CursorPagingMetadata as hi, type Cursors as hj, type GetDeletedSubmissionRequest as hk, type QuerySubmissionRequest as hl, type CursorQueryPagingMethodOneOf as hm, type Sorting as hn, type SearchSubmissionsByNamespaceRequest as ho, type CursorSearch as hp, type CursorSearchPagingMethodOneOf as hq, type SearchDetails as hr, type SearchSubmissionsByNamespaceForExportRequest as hs, type SearchSubmissionsByNamespaceForExportResponse as ht, type QuerySubmissionsByNamespaceRequest as hu, type QuerySubmissionsByNamespaceResponse as hv, type QuerySubmissionsByNamespaceForExportRequest as hw, type QuerySubmissionsByNamespaceForExportResponse as hx, type CountSubmissionsByFilterRequest as hy, type FormSubmissionsCount as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type SubmissionValidationError as i0, type SubmissionValidationErrorErrorMessageOneOf as i1, type BaseEventMetadata as i2, type EventMetadata as i3, type FormSubmissionSearchSpec as i4, type SubmissionsQueryResult as i5, type BulkUpdateFormSubmissionTagsOptions as i6, type BulkUpdateFormSubmissionTagsByFilterOptions as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, getFormattedSubmission as kg, updateExtendedFields as kh, validateFormSubmission as ki, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse 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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-BQxE18i-.js';
3
- export { gF as ActionEvent, fT as Address, fU as AddressComponentTypeOptionsOneOf, fB as AddressInfo, aU as AddressInfoTag, ja as AddressInfoTagWithLiterals, eJ as AddressLine2, aB as Alignment, iT as AlignmentWithLiterals, gl as AllowedValuesOptions, dq as AnchorData, gq as AndCondition, dw as AppEmbedData, dx as AppEmbedDataAppDataOneOf, av as AppType, iN as AppTypeWithLiterals, gZ as ApplicationError, eB as Appointment, eC as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jm as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, fv as ArrayItems, aH as ArrayItemsItemType, fw as ArrayItemsItemTypeOptionsOneOf, iZ as ArrayItemsItemTypeWithLiterals, fr as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iH as AspectRatioWithLiterals, dQ as AudioData, df as Background, dg as BackgroundBackgroundOneOf, al as BackgroundType, iD as BackgroundTypeWithLiterals, i1 as BaseEventMetadata, dT as BlockquoteData, dy as BookingData, b1 as BooleanComponentType, jj as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, fq as BooleanType, cv as Border, dO as BorderColors, f$ as BreakPoint, g_ as BulkActionMetadata, gV as BulkCreateSubmissionBySubmitterData, gU as BulkCreateSubmissionBySubmitterRequest, gW as BulkCreateSubmissionBySubmitterResponse, h8 as BulkDeleteSubmissionRequest, h9 as BulkDeleteSubmissionResult, hD as BulkMarkSubmissionsAsSeenRequest, hE as BulkMarkSubmissionsAsSeenResponse, hd as BulkRemoveSubmissionFromTrashBinRequest, he as BulkRemoveSubmissionFromTrashBinResult, gX as BulkSubmissionResult, i6 as BulkUpdateFormSubmissionTagsByFilterOptions, hV as BulkUpdateFormSubmissionTagsByFilterRequest, hW as BulkUpdateFormSubmissionTagsByFilterResponse, i5 as BulkUpdateFormSubmissionTagsOptions, hS as BulkUpdateFormSubmissionTagsRequest, hT as BulkUpdateFormSubmissionTagsResponse, hU as BulkUpdateFormSubmissionTagsResult, dS as BulletedListData, cu as ButtonData, a2 as ButtonDataType, ij as ButtonDataTypeWithLiterals, dA as ButtonStyles, dU as CaptionData, dD as CardStyles, at as CardStylesAlignment, iL as CardStylesAlignmentWithLiterals, as as CardStylesType, iK as CardStylesTypeWithLiterals, dN as CellStyle, bn as ChangeableProperty, jF as ChangeablePropertyWithLiterals, eg as Checkbox, eo as CheckboxGroup, gw as Checkout, cG as CodeBlockData, dJ as CollapsibleListData, dr as ColorData, cw as Colors, jP as CommonSearchWithEntityContext, b7 as ComponentType, jp as ComponentTypeWithLiterals, gs as Condition, go as ConditionNode, gp as ConditionNodeNodeOneOf, h5 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jv as ConfirmationLevelWithLiterals, be as ContactField, jw as ContactFieldWithLiterals, hA as CountDeletedSubmissionsRequest, hx as CountSubmissionsByFilterRequest, hz as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gv as CreateCheckoutFromSubmissionResponse, gS as CreateSubmissionBySubmitterRequest, gT as CreateSubmissionBySubmitterResponse, gQ as CreateSubmissionForMigrationRequest, gR as CreateSubmissionForMigrationResponse, gM as CreateSubmissionRequest, gN as CreateSubmissionResponse, ab as Crop, it as CropWithLiterals, hg as CursorPaging, hh as CursorPagingMetadata, hl as CursorQueryPagingMethodOneOf, ho as CursorSearch, hp as CursorSearchPagingMethodOneOf, hi as Cursors, fC as CustomFieldInfo, e2 as CustomOption, ch as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, fm as DateTimeConstraints, e5 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, am as DecorationType, iE as DecorationTypeWithLiterals, eK as DefaultCountryConfig, eL as DefaultCountryConfigOptionsOneOf, h6 as DeleteSubmissionRequest, h7 as DeleteSubmissionResponse, dl as Design, dL as Dimensions, ax as Direction, iP as DirectionWithLiterals, fc as DisplayField, bf as DisplayFieldDisplayFieldType, fd as DisplayFieldDisplayFieldTypeOptionsOneOf, jx as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, je as DisplayFieldTypeWithLiterals, cI as DividerData, a7 as DividerDataAlignment, ip as DividerDataAlignmentWithLiterals, hI as DocumentReady, dX as DocumentStyle, gz as DomainEvent, gA as DomainEventBodyOneOf, ex as DonationInput, ey as DonationInputOption, hJ as DownloadSubmissionRequest, e3 as Dropdown, e4 as DropdownOption, c8 as DynamicPriceOptions, fz as EmailInfo, ba as EmailInfoTag, js as EmailInfoTagWithLiterals, dH as EmbedData, gG as Empty, gB as EntityCreatedEvent, gE as EntityDeletedEvent, gD as EntityUpdatedEvent, bs as ErrorType, jK as ErrorTypeWithLiterals, dz as EventData, i2 as EventMetadata, bz as ExtendedFields, fg as Field, fh as FieldFieldTypeOptionsOneOf, gh as FieldGroup, gm as FieldOverride, gn as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, aZ as FieldType, jf as FieldTypeWithLiterals, hY as FieldViolation, hZ as FieldViolationErrorDataOneOf, fV as FieldsDisplayField, fW as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cd as FieldsOverrides, eM as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, es as FileType, et as FileUpload, aE as FirstDayOfWeek, iW as FirstDayOfWeekWithLiterals, eA as FixedPayment, c7 as FixedPriceOptions, du as FontSizeData, an as FontType, iF as FontTypeWithLiterals, bK as Form, hB as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, fx as FormFieldContactInfo, fy as FormFieldContactInfoAdditionalInfoOneOf, eR as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, jc as FormFieldContactInfoContactFieldWithLiterals, eS as FormFieldContactInfoCustomFieldInfo, eP as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j8 as FormFieldContactInfoEmailInfoTagWithLiterals, eQ as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, j9 as FormFieldContactInfoPhoneInfoTagWithLiterals, eT as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, cj as FormFieldV2, aX as FormFieldV2FieldType, ck as FormFieldV2FieldTypeOptionsOneOf, jd as FormFieldV2FieldTypeWithLiterals, fa as FormFieldV2InputField, fb as FormFieldV2InputFieldInputTypeOptionsOneOf, f_ as FormLayout, g6 as FormOverride, g7 as FormProperties, g5 as FormRule, i3 as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hy as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, jg as FormatEnumFormatWithLiterals, j4 as FormatWithLiterals, hQ as FormattedFormSubmission, hN as FormattedSubmission, cY as GIF, cX as GIFData, ad as GIFType, iv as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, hj as GetDeletedSubmissionRequest, hM as GetFormattedSubmissionRequest, hC as GetMediaUploadURLRequest, h1 as GetSubmissionByCheckoutIdRequest, h2 as GetSubmissionByCheckoutIdResponse, hF as GetSubmissionDownloadUrlRequest, g$ as GetSubmissionRequest, h0 as GetSubmissionResponse, de as Gradient, g2 as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hL as HeadersEntry, cZ as HeadingData, cB as Height, gk as HiddenOptions, gI as IdentificationData, gJ as IdentificationDataIdOneOf, br as IdentityType, jJ as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aC as ImageFit, iU as ImageFitWithLiterals, aA as ImagePosition, iS as ImagePositionWithLiterals, dB as ImageStyles, eF as InPersonOptions, aw as InitialExpandedItems, iO as InitialExpandedItemsWithLiterals, fi as InputField, aJ as InputFieldArrayComponentType, i$ as InputFieldArrayComponentTypeWithLiterals, eh as InputFieldArrayType, em as InputFieldArrayTypeArrayItems, en as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iY as InputFieldBooleanComponentTypeWithLiterals, ef as InputFieldBooleanType, aR as InputFieldInputType, fj as InputFieldInputTypeOptionsOneOf, j7 as InputFieldInputTypeWithLiterals, ei as InputFieldIntegerType, f6 as InputFieldMultilineAddress, f7 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iX as InputFieldNumberComponentTypeWithLiterals, ec as InputFieldNumberType, ej as InputFieldObjectType, ek as InputFieldObjectTypePropertiesType, el as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f4 as InputFieldPayment, aM as InputFieldPaymentComponentType, f5 as InputFieldPaymentComponentTypeOptionsOneOf, j2 as InputFieldPaymentComponentTypeWithLiterals, f8 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, f9 as InputFieldSchedulingComponentTypeOptionsOneOf, j3 as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, ie as InputFieldStringComponentTypeWithLiterals, cl as InputFieldStringType, cn as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, id as InputFieldStringTypeFormatEnumFormatWithLiterals, cm as InputFieldStringTypeFormatOptionsOneOf, co as InputFieldStringTypePhoneConstraints, f2 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f3 as InputFieldWixFileComponentTypeOptionsOneOf, j0 as InputFieldWixFileComponentTypeWithLiterals, e_ as InputField_Array, e$ as InputField_ArrayComponentTypeOptionsOneOf, eY as InputField_Boolean, eZ as InputField_BooleanComponentTypeOptionsOneOf, eW as InputField_Number, eX as InputField_NumberComponentTypeOptionsOneOf, f0 as InputField_Object, f1 as InputField_ObjectValidationOneOf, eU as InputField_String, eV as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, jr as InputTypeWithLiterals, bU as IntegerType, gx as IsFormSubmittableRequest, gy as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, g0 as ItemLayout, g1 as ItemLayoutItemOneOf, gY as ItemMetadata, cV as ItemStyle, b2 as ItemType, jk as ItemTypeWithLiterals, bh as Kind, jz as KindWithLiterals, au as Layout, dV as LayoutCellData, a9 as LayoutType, ir as LayoutTypeWithLiterals, iM as LayoutWithLiterals, gb as LimitationRule, a5 as LineStyle, im as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a3 as LinkTarget, ik as LinkTargetWithLiterals, hf as ListDeletedSubmissionsRequest, hO as ListFormattedSubmissionsRequest, hP as ListFormattedSubmissionsResponse, dP as ListValue, eD as Location, eE as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, ag as MapType, iy as MapTypeWithLiterals, g3 as Margin, bG as MarketingSubscriptionDetails, cO as Media, dZ as MediaItem, d_ as MediaItemMediaOneOf, d$ as MediaSettings, dt as MentionData, gH as MessageEnvelope, dW as Metadata, bu as Mode, jM as ModeWithLiterals, eI as MultilineAddress, aP as MultilineAddressComponentType, j5 as MultilineAddressComponentTypeWithLiterals, cb as MultilineAddressValidation, ga as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, $ as NodeType, ig as NodeTypeWithLiterals, az as NullValue, iR as NullValueWithLiterals, b0 as NumberComponentType, ji as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, ed as NumberInput, aD as NumberOfColumns, iV as NumberOfColumnsWithLiterals, fp as NumberType, b$ as ObjectErrorMessages, fs as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dI as Oembed, bp as Operator, jH as OperatorWithLiterals, P as OptInLevel, i8 as OptInLevelWithLiterals, ep as Option, di as OptionDesign, dd as OptionLayout, gr as OrCondition, bA as OrderDetails, dR as OrderedListData, aa as Orientation, is as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jG as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jy as OverrideEntityTypeWithLiterals, cM as PDFSettings, fY as PageNavigationOptions, d7 as ParagraphData, fP as Payment, b6 as PaymentComponentType, fQ as PaymentComponentTypeOptionsOneOf, jo as PaymentComponentTypeWithLiterals, ez as PaymentInput, c5 as PaymentType, d9 as Permissions, fn as PhoneConstraints, fA as PhoneInfo, bb as PhoneInfoTag, jt as PhoneInfoTagWithLiterals, e6 as PhoneInput, eH as PhoneOptions, ar as Placement, iJ as PlacementWithLiterals, dG as PlaybackOptions, cx as PluginContainerData, a1 as PluginContainerDataAlignment, ii as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ak as PollLayoutDirection, iC as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iB as PollLayoutTypeWithLiterals, da as PollOption, ao as Position, iG as PositionWithLiterals, g8 as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, ic as PriceTypeWithLiterals, dE as PricingData, c9 as Product, ev as ProductCheckboxGroup, ew as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, X as ProductType, ib as ProductTypeWithLiterals, ft as PropertiesType, b3 as PropertiesTypeEnum, jl as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, i_ as PropertiesTypePropertiesTypeEnumWithLiterals, fu as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, hk as QuerySubmissionRequest, hv as QuerySubmissionsByNamespaceForExportRequest, hw as QuerySubmissionsByNamespaceForExportResponse, ht as QuerySubmissionsByNamespaceRequest, hu as QuerySubmissionsByNamespaceResponse, e0 as RadioGroup, e1 as RadioGroupOption, ee as RatingInput, hK as RawHttpResponse, gg as RedirectOptions, cF as Rel, hb as RemoveSubmissionFromTrashBinRequest, hc as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jC as RequiredIndicatorPlacementWithLiterals, gc as RequiredIndicatorProperties, jB as RequiredIndicatorWithLiterals, gj as RequiredOptions, aq as Resizing, iI as ResizingWithLiterals, gC as RestoreInfo, ha as RestoreSubmissionFromTrashBinRequest, dC as RibbonStyles, cq as RichContent, fX as RichContentOptions, gi as Rule, gt as RuleFormOverride, gu as RuleFormOverrideEntityTypeOptionsOneOf, fR as Scheduling, b8 as SchedulingComponentType, fS as SchedulingComponentTypeOptionsOneOf, jq as SchedulingComponentTypeWithLiterals, hq as SearchDetails, hr as SearchSubmissionsByNamespaceForExportRequest, hs as SearchSubmissionsByNamespaceForExportResponse, hn as SearchSubmissionsByNamespaceRequest, g4 as Section, ea as ServicesDropdown, eb as ServicesDropdownOption, db as Settings, eu as Signature, bt as SortOrder, jL as SortOrderWithLiterals, hm as Sorting, ae as Source, iw as SourceWithLiterals, bi as SpamFilterProtectionLevel, jA as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, bv as Status, jN as StatusWithLiterals, fZ as Step, a$ as StringComponentType, jh as StringComponentTypeWithLiterals, bO as StringErrorMessages, fk as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, i9 as StringTypeFormatEnumFormatWithLiterals, fl as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, af as StylesPosition, ix as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hG as SubmissionDocument, hH as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jO as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i7 as SubmissionStatusWithLiterals, h$ as SubmissionValidationError, i0 as SubmissionValidationErrorErrorMessageOneOf, h_ as SubmissionValidationErrors, gO as SubmissionValidationErrorsDetails, i4 as SubmissionsQueryResult, gL as SubmitContactResponse, gd as SubmitSettings, ge as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jE as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fD as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, jb as SubscriptionInfoOptInLevelWithLiterals, dM as TableCellData, dK as TableData, bc as Tag, bC as TagList, ju as TagWithLiterals, eq as Tags, er as TagsOption, bl as Target, jD as TargetWithLiterals, a4 as TextAlignment, il as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, dY as TextNodeStyle, cH as TextStyle, gf as ThankYouMessageOptions, cW as Thumbnails, ac as ThumbnailsAlignment, iu as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aQ as Type, j6 as TypeWithLiterals, hR as UpdateExtendedFieldsRequest, h3 as UpdateSubmissionRequest, h4 as UpdateSubmissionResponse, aL as UploadFileFormat, j1 as UploadFileFormatWithLiterals, g9 as UpsertContact, gK as UpsertContactFromSubmissionRequest, eN as V4FormFieldContactInfo, eO as V4FormFieldContactInfoAdditionalInfoOneOf, ff as V4PageNavigationOptions, fe as V4RichContentOptions, hX as ValidateFormSubmissionRequest, cf as Validation, gP as ValidationError, W as ValidationFormat, ia as ValidationFormatWithLiterals, fo as ValidationMessages, cg as ValidationValidationOneOf, ay as VerticalAlignment, iQ as VerticalAlignmentWithLiterals, cQ as Video, eG as VideoConferenceOptions, dF as VideoData, a8 as ViewMode, iq as ViewModeWithLiterals, ah as ViewRole, iz as ViewRoleWithLiterals, ai as VoteRole, iA as VoteRoleWithLiterals, bq as WebhookIdentityType, jI as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ih as WidthTypeWithLiterals, io as WidthWithLiterals, fN as WixFile, b5 as WixFileComponentType, fO as WixFileComponentTypeOptionsOneOf, jn as WixFileComponentTypeWithLiterals, fK as _Array, fL as _ArrayComponentTypeOptionsOneOf, fI as _Boolean, fJ as _BooleanComponentTypeOptionsOneOf, fG as _Number, fH as _NumberComponentTypeOptionsOneOf, fM as _Object, fE as _String, fF as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BQxE18i-.js';
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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-C6qADutM.js';
3
+ export { gG as ActionEvent, fU as Address, fV as AddressComponentTypeOptionsOneOf, fC as AddressInfo, aU as AddressInfoTag, jb as AddressInfoTagWithLiterals, eK as AddressLine2, aB as Alignment, iU as AlignmentWithLiterals, gm as AllowedValuesOptions, dq as AnchorData, gr as AndCondition, dw as AppEmbedData, dx as AppEmbedDataAppDataOneOf, av as AppType, iO as AppTypeWithLiterals, g_ as ApplicationError, eC as Appointment, eD as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, fw as ArrayItems, aH as ArrayItemsItemType, fx as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fs as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iI as AspectRatioWithLiterals, dQ as AudioData, df as Background, dg as BackgroundBackgroundOneOf, al as BackgroundType, iE as BackgroundTypeWithLiterals, i2 as BaseEventMetadata, dT as BlockquoteData, dy as BookingData, b1 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, fr as BooleanType, cv as Border, dO as BorderColors, g0 as BreakPoint, g$ as BulkActionMetadata, gW as BulkCreateSubmissionBySubmitterData, gV as BulkCreateSubmissionBySubmitterRequest, gX as BulkCreateSubmissionBySubmitterResponse, h9 as BulkDeleteSubmissionRequest, ha as BulkDeleteSubmissionResult, hE as BulkMarkSubmissionsAsSeenRequest, hF as BulkMarkSubmissionsAsSeenResponse, he as BulkRemoveSubmissionFromTrashBinRequest, hf as BulkRemoveSubmissionFromTrashBinResult, gY as BulkSubmissionResult, i7 as BulkUpdateFormSubmissionTagsByFilterOptions, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsByFilterResponse, i6 as BulkUpdateFormSubmissionTagsOptions, hT as BulkUpdateFormSubmissionTagsRequest, hU as BulkUpdateFormSubmissionTagsResponse, hV as BulkUpdateFormSubmissionTagsResult, dS as BulletedListData, cu as ButtonData, a2 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dA as ButtonStyles, dU as CaptionData, dD as CardStyles, at as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, as as CardStylesType, iL as CardStylesTypeWithLiterals, dN as CellStyle, bn as ChangeableProperty, jG as ChangeablePropertyWithLiterals, eg as Checkbox, eo as CheckboxGroup, gx as Checkout, cG as CodeBlockData, dJ as CollapsibleListData, dr as ColorData, cw as Colors, jQ as CommonSearchWithEntityContext, b7 as ComponentType, jq as ComponentTypeWithLiterals, gt as Condition, gp as ConditionNode, gq as ConditionNodeNodeOneOf, h6 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, be as ContactField, jx as ContactFieldWithLiterals, hB as CountDeletedSubmissionsRequest, hy as CountSubmissionsByFilterRequest, hA as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gw as CreateCheckoutFromSubmissionResponse, gT as CreateSubmissionBySubmitterRequest, gU as CreateSubmissionBySubmitterResponse, gR as CreateSubmissionForMigrationRequest, gS as CreateSubmissionForMigrationResponse, gN as CreateSubmissionRequest, gO as CreateSubmissionResponse, ab as Crop, iu as CropWithLiterals, hh as CursorPaging, hi as CursorPagingMetadata, hm as CursorQueryPagingMethodOneOf, hp as CursorSearch, hq as CursorSearchPagingMethodOneOf, hj as Cursors, fD as CustomFieldInfo, e2 as CustomOption, ch as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, fn as DateTimeConstraints, e5 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, am as DecorationType, iF as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, h7 as DeleteSubmissionRequest, h8 as DeleteSubmissionResponse, dl as Design, dL as Dimensions, ax as Direction, iQ as DirectionWithLiterals, fd as DisplayField, bf as DisplayFieldDisplayFieldType, fe as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cI as DividerData, a7 as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hJ as DocumentReady, dX as DocumentStyle, gA as DomainEvent, gB as DomainEventBodyOneOf, ey as DonationInput, ez as DonationInputOption, hK as DownloadSubmissionRequest, e3 as Dropdown, e4 as DropdownOption, c8 as DynamicPriceOptions, fA as EmailInfo, ba as EmailInfoTag, jt as EmailInfoTagWithLiterals, dH as EmbedData, gH as Empty, gC as EntityCreatedEvent, gF as EntityDeletedEvent, gE as EntityUpdatedEvent, bs as ErrorType, jL as ErrorTypeWithLiterals, dz as EventData, i3 as EventMetadata, bz as ExtendedFields, fh as Field, fi as FieldFieldTypeOptionsOneOf, gi as FieldGroup, gn as FieldOverride, go as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, aZ as FieldType, jg as FieldTypeWithLiterals, hZ as FieldViolation, h_ as FieldViolationErrorDataOneOf, fW as FieldsDisplayField, fX as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cd as FieldsOverrides, eN as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, et as FileType, eu as FileUpload, aE as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eB as FixedPayment, c7 as FixedPriceOptions, du as FontSizeData, an as FontType, iG as FontTypeWithLiterals, bK as Form, hC as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, fy as FormFieldContactInfo, fz as FormFieldContactInfoAdditionalInfoOneOf, eS as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eT as FormFieldContactInfoCustomFieldInfo, eQ as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eR as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eU as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, cj as FormFieldV2, aX as FormFieldV2FieldType, ck as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fb as FormFieldV2InputField, fc as FormFieldV2InputFieldInputTypeOptionsOneOf, f$ as FormLayout, g7 as FormOverride, g8 as FormProperties, g6 as FormRule, i4 as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hz as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hR as FormattedFormSubmission, hO as FormattedSubmission, cY as GIF, cX as GIFData, ad as GIFType, iw as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, hk as GetDeletedSubmissionRequest, hN as GetFormattedSubmissionRequest, hD as GetMediaUploadURLRequest, h2 as GetSubmissionByCheckoutIdRequest, h3 as GetSubmissionByCheckoutIdResponse, hG as GetSubmissionDownloadUrlRequest, h0 as GetSubmissionRequest, h1 as GetSubmissionResponse, de as Gradient, g3 as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hM as HeadersEntry, cZ as HeadingData, cB as Height, gl as HiddenOptions, gJ as IdentificationData, gK as IdentificationDataIdOneOf, br as IdentityType, jK as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aC as ImageFit, iV as ImageFitWithLiterals, aA as ImagePosition, iT as ImagePositionWithLiterals, dB as ImageStyles, eG as InPersonOptions, aw as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fj as InputField, aJ as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, eh as InputFieldArrayType, em as InputFieldArrayTypeArrayItems, en as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ef as InputFieldBooleanType, aR as InputFieldInputType, fk as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, ei as InputFieldIntegerType, f7 as InputFieldMultilineAddress, f8 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, ec as InputFieldNumberType, ej as InputFieldObjectType, ek as InputFieldObjectTypePropertiesType, el as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f5 as InputFieldPayment, aM as InputFieldPaymentComponentType, f6 as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, f9 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, fa as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cl as InputFieldStringType, cn as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cm as InputFieldStringTypeFormatOptionsOneOf, co as InputFieldStringTypePhoneConstraints, f3 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f4 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, e$ as InputField_Array, f0 as InputField_ArrayComponentTypeOptionsOneOf, eZ as InputField_Boolean, e_ as InputField_BooleanComponentTypeOptionsOneOf, eX as InputField_Number, eY as InputField_NumberComponentTypeOptionsOneOf, f1 as InputField_Object, f2 as InputField_ObjectValidationOneOf, eV as InputField_String, eW as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, js as InputTypeWithLiterals, bU as IntegerType, gy as IsFormSubmittableRequest, gz as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, g1 as ItemLayout, g2 as ItemLayoutItemOneOf, gZ as ItemMetadata, cV as ItemStyle, b2 as ItemType, jl as ItemTypeWithLiterals, bh as Kind, jA as KindWithLiterals, au as Layout, dV as LayoutCellData, a9 as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gc as LimitationRule, a5 as LineStyle, io as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a3 as LinkTarget, il as LinkTargetWithLiterals, hg as ListDeletedSubmissionsRequest, hP as ListFormattedSubmissionsRequest, hQ as ListFormattedSubmissionsResponse, dP as ListValue, eE as Location, eF as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, ag as MapType, iz as MapTypeWithLiterals, g4 as Margin, bG as MarketingSubscriptionDetails, cO as Media, dZ as MediaItem, d_ as MediaItemMediaOneOf, d$ as MediaSettings, dt as MentionData, gI as MessageEnvelope, dW as Metadata, bu as Mode, jN as ModeWithLiterals, eJ as MultilineAddress, aP as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cb as MultilineAddressValidation, gb as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, $ as NodeType, ih as NodeTypeWithLiterals, az as NullValue, iS as NullValueWithLiterals, b0 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, ed as NumberInput, aD as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fq as NumberType, b$ as ObjectErrorMessages, ft as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dI as Oembed, bp as Operator, jI as OperatorWithLiterals, P as OptInLevel, i9 as OptInLevelWithLiterals, ep as Option, di as OptionDesign, dd as OptionLayout, gs as OrCondition, bA as OrderDetails, dR as OrderedListData, aa as Orientation, it as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cM as PDFSettings, fZ as PageNavigationOptions, d7 as ParagraphData, fQ as Payment, b6 as PaymentComponentType, fR as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eA as PaymentInput, c5 as PaymentType, d9 as Permissions, fo as PhoneConstraints, fB as PhoneInfo, bb as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, e6 as PhoneInput, eI as PhoneOptions, ar as Placement, iK as PlacementWithLiterals, dG as PlaybackOptions, cx as PluginContainerData, a1 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ak as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iC as PollLayoutTypeWithLiterals, da as PollOption, ao as Position, iH as PositionWithLiterals, g9 as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, id as PriceTypeWithLiterals, dE as PricingData, c9 as Product, ew as ProductCheckboxGroup, ex as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, X as ProductType, ic as ProductTypeWithLiterals, fu as PropertiesType, b3 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fv as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, hl as QuerySubmissionRequest, hw as QuerySubmissionsByNamespaceForExportRequest, hx as QuerySubmissionsByNamespaceForExportResponse, hu as QuerySubmissionsByNamespaceRequest, hv as QuerySubmissionsByNamespaceResponse, e0 as RadioGroup, e1 as RadioGroupOption, ee as RatingInput, hL as RawHttpResponse, gh as RedirectOptions, cF as Rel, hc as RemoveSubmissionFromTrashBinRequest, hd as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gd as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gk as RequiredOptions, aq as Resizing, iJ as ResizingWithLiterals, gD as RestoreInfo, hb as RestoreSubmissionFromTrashBinRequest, dC as RibbonStyles, cq as RichContent, fY as RichContentOptions, gj as Rule, gu as RuleFormOverride, gv as RuleFormOverrideEntityTypeOptionsOneOf, fS as Scheduling, b8 as SchedulingComponentType, fT as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hr as SearchDetails, hs as SearchSubmissionsByNamespaceForExportRequest, ht as SearchSubmissionsByNamespaceForExportResponse, ho as SearchSubmissionsByNamespaceRequest, g5 as Section, eb as ServiceOption, es as ServicesCheckboxGroup, ea as ServicesDropdown, db as Settings, ev as Signature, bt as SortOrder, jM as SortOrderWithLiterals, hn as Sorting, ae as Source, ix as SourceWithLiterals, bi as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, bv as Status, jO as StatusWithLiterals, f_ as Step, a$ as StringComponentType, ji as StringComponentTypeWithLiterals, bO as StringErrorMessages, fl as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fm as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, af as StylesPosition, iy as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hH as SubmissionDocument, hI as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i0 as SubmissionValidationError, i1 as SubmissionValidationErrorErrorMessageOneOf, h$ as SubmissionValidationErrors, gP as SubmissionValidationErrorsDetails, i5 as SubmissionsQueryResult, gM as SubmitContactResponse, ge as SubmitSettings, gf as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fE as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dM as TableCellData, dK as TableData, bc as Tag, bC as TagList, jv as TagWithLiterals, eq as Tags, er as TagsOption, bl as Target, jE as TargetWithLiterals, a4 as TextAlignment, im as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, dY as TextNodeStyle, cH as TextStyle, gg as ThankYouMessageOptions, cW as Thumbnails, ac as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aQ as Type, j7 as TypeWithLiterals, hS as UpdateExtendedFieldsRequest, h4 as UpdateSubmissionRequest, h5 as UpdateSubmissionResponse, aL as UploadFileFormat, j2 as UploadFileFormatWithLiterals, ga as UpsertContact, gL as UpsertContactFromSubmissionRequest, eO as V4FormFieldContactInfo, eP as V4FormFieldContactInfoAdditionalInfoOneOf, fg as V4PageNavigationOptions, ff as V4RichContentOptions, hY as ValidateFormSubmissionRequest, cf as Validation, gQ as ValidationError, W as ValidationFormat, ib as ValidationFormatWithLiterals, fp as ValidationMessages, cg as ValidationValidationOneOf, ay as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cQ as Video, eH as VideoConferenceOptions, dF as VideoData, a8 as ViewMode, ir as ViewModeWithLiterals, ah as ViewRole, iA as ViewRoleWithLiterals, ai as VoteRole, iB as VoteRoleWithLiterals, bq as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fO as WixFile, b5 as WixFileComponentType, fP as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fL as _Array, fM as _ArrayComponentTypeOptionsOneOf, fJ as _Boolean, fK as _BooleanComponentTypeOptionsOneOf, fH as _Number, fI as _NumberComponentTypeOptionsOneOf, fN as _Object, fF as _String, fG as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-C6qADutM.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -1309,6 +1309,7 @@ var InputFieldArrayComponentType = /* @__PURE__ */ ((InputFieldArrayComponentTyp
1309
1309
  InputFieldArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
1310
1310
  InputFieldArrayComponentType2["CHECKBOX_GROUP"] = "CHECKBOX_GROUP";
1311
1311
  InputFieldArrayComponentType2["TAGS"] = "TAGS";
1312
+ InputFieldArrayComponentType2["SERVICES_CHECKBOX_GROUP"] = "SERVICES_CHECKBOX_GROUP";
1312
1313
  return InputFieldArrayComponentType2;
1313
1314
  })(InputFieldArrayComponentType || {});
1314
1315
  var InputFieldWixFileComponentType = /* @__PURE__ */ ((InputFieldWixFileComponentType2) => {
@@ -1485,6 +1486,7 @@ var ArrayComponentType = /* @__PURE__ */ ((ArrayComponentType2) => {
1485
1486
  ArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
1486
1487
  ArrayComponentType2["CHECKBOX_GROUP"] = "CHECKBOX_GROUP";
1487
1488
  ArrayComponentType2["TAGS"] = "TAGS";
1489
+ ArrayComponentType2["SERVICES_CHECKBOX_GROUP"] = "SERVICES_CHECKBOX_GROUP";
1488
1490
  return ArrayComponentType2;
1489
1491
  })(ArrayComponentType || {});
1490
1492
  var WixFileComponentType = /* @__PURE__ */ ((WixFileComponentType2) => {