@wix/auto_sdk_forms_submissions 1.0.105 → 1.0.106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-DEPmv7zz.d.ts → forms-v4-submission-submissions.universal-C9YTfunB.d.ts} +68 -7
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +21 -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 +21 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +67 -6
  9. package/build/cjs/meta.js +21 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-DEPmv7zz.d.mts → forms-v4-submission-submissions.universal-C9YTfunB.d.mts} +68 -7
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +19 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +19 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +67 -6
  19. package/build/es/meta.mjs +19 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-CUHR1GHh.d.ts → forms-v4-submission-submissions.universal-b7sTOaUs.d.ts} +68 -7
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +21 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +21 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +67 -6
  29. package/build/internal/cjs/meta.js +21 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-CUHR1GHh.d.mts → forms-v4-submission-submissions.universal-b7sTOaUs.d.mts} +68 -7
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +19 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +19 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +67 -6
  39. package/build/internal/es/meta.mjs +19 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +4 -4
@@ -192,6 +192,12 @@ interface AppointmentDetails {
192
192
  * @format GUID
193
193
  */
194
194
  staffMemberId?: string | null;
195
+ /**
196
+ * Name of the staff member assigned to the appointment.
197
+ * @minLength 1
198
+ * @maxLength 40
199
+ */
200
+ staffMemberName?: string | null;
195
201
  }
196
202
  interface FormSubmissionStatusUpdatedEvent {
197
203
  /** Updated submission. */
@@ -1524,6 +1530,8 @@ interface Node extends NodeDataOneOf {
1524
1530
  shapeData?: ShapeData;
1525
1531
  /** Data for a card node. */
1526
1532
  cardData?: CardData;
1533
+ /** Data for a table of contents node. */
1534
+ tocData?: TocData;
1527
1535
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
1528
1536
  type?: NodeTypeWithLiterals;
1529
1537
  /** Node ID. */
@@ -1595,6 +1603,8 @@ interface NodeDataOneOf {
1595
1603
  shapeData?: ShapeData;
1596
1604
  /** Data for a card node. */
1597
1605
  cardData?: CardData;
1606
+ /** Data for a table of contents node. */
1607
+ tocData?: TocData;
1598
1608
  }
1599
1609
  declare enum NodeType {
1600
1610
  PARAGRAPH = "PARAGRAPH",
@@ -1632,10 +1642,11 @@ declare enum NodeType {
1632
1642
  LAYOUT = "LAYOUT",
1633
1643
  LAYOUT_CELL = "LAYOUT_CELL",
1634
1644
  SHAPE = "SHAPE",
1635
- CARD = "CARD"
1645
+ CARD = "CARD",
1646
+ TOC = "TOC"
1636
1647
  }
1637
1648
  /** @enumType */
1638
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
1649
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
1639
1650
  interface NodeStyle {
1640
1651
  /** The top padding value in pixels. */
1641
1652
  paddingTop?: string | null;
@@ -2264,6 +2275,8 @@ interface HTMLData extends HTMLDataDataOneOf {
2264
2275
  * @deprecated
2265
2276
  */
2266
2277
  isAdsense?: boolean | null;
2278
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
2279
+ widgetId?: string;
2267
2280
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
2268
2281
  containerData?: PluginContainerData;
2269
2282
  /** The type of HTML code. */
@@ -2282,14 +2295,17 @@ interface HTMLDataDataOneOf {
2282
2295
  * @deprecated
2283
2296
  */
2284
2297
  isAdsense?: boolean | null;
2298
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
2299
+ widgetId?: string;
2285
2300
  }
2286
2301
  declare enum Source {
2287
2302
  HTML = "HTML",
2288
2303
  ADSENSE = "ADSENSE",
2289
- AI = "AI"
2304
+ AI = "AI",
2305
+ AI_WIDGET = "AI_WIDGET"
2290
2306
  }
2291
2307
  /** @enumType */
2292
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
2308
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
2293
2309
  interface ImageData {
2294
2310
  /** Styling for the image's container. */
2295
2311
  containerData?: PluginContainerData;
@@ -3517,6 +3533,51 @@ interface BackgroundImage {
3517
3533
  /** Position of background. Defaults to `CENTER`. */
3518
3534
  position?: ImagePositionPositionWithLiterals;
3519
3535
  }
3536
+ interface TocData {
3537
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
3538
+ includedHeadings?: number[];
3539
+ /** List style. Default: PLAIN. */
3540
+ listStyle?: ListStyleWithLiterals;
3541
+ /** Optional override for the font size in pixels. */
3542
+ fontSize?: number | null;
3543
+ /** Optional override for the vertical spacing between items in pixels. */
3544
+ itemSpacing?: number | null;
3545
+ /**
3546
+ * Optional override for the text color.
3547
+ * @format COLOR_HEX
3548
+ */
3549
+ color?: string | null;
3550
+ /** Indentation style. Default: NESTED. */
3551
+ indentation?: IndentationWithLiterals;
3552
+ }
3553
+ /** List style. */
3554
+ declare enum ListStyle {
3555
+ /** No markers (default) */
3556
+ PLAIN = "PLAIN",
3557
+ /** Numbered list */
3558
+ NUMBERED = "NUMBERED",
3559
+ /** Alphabetic letters */
3560
+ LETTERS = "LETTERS",
3561
+ /** Roman numerals */
3562
+ ROMAN = "ROMAN",
3563
+ /** Bulleted list */
3564
+ BULLETED = "BULLETED",
3565
+ /** Alphabetical index */
3566
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
3567
+ /** Alphabetical index (compact top-row only) */
3568
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
3569
+ }
3570
+ /** @enumType */
3571
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
3572
+ /** Indentation style. */
3573
+ declare enum Indentation {
3574
+ /** Sub-headings indented under parents (default) */
3575
+ NESTED = "NESTED",
3576
+ /** All items at the same level */
3577
+ FLAT = "FLAT"
3578
+ }
3579
+ /** @enumType */
3580
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
3520
3581
  interface Metadata {
3521
3582
  /** Schema version. */
3522
3583
  version?: number;
@@ -7757,9 +7818,9 @@ declare const utils: {
7757
7818
  Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
7758
7819
  };
7759
7820
  query: {
7760
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
7821
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>; /** @deprecated */
7761
7822
  Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
7762
- Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
7823
+ Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>; /** Data for a text node. Used to apply decorations to text. */
7763
7824
  };
7764
7825
  };
7765
7826
  /**
@@ -8133,4 +8194,4 @@ interface ValidateFormSubmissionOptions {
8133
8194
  fieldsToValidate?: string[];
8134
8195
  }
8135
8196
 
8136
- export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, ItemType as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ImagePosition as aU, Alignment as aV, ImageFit as aW, NumberOfColumns as aX, FirstDayOfWeek as aY, NumberComponentType as aZ, BooleanComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type IdentificationData as b$, PropertiesTypeEnum as b0, ArrayComponentType as b1, WixFileComponentType as b2, UploadFileFormat as b3, PaymentComponentType as b4, ComponentType as b5, Type as b6, ObjectArrayComponentType as b7, SchedulingComponentType as b8, Format as b9, ContactAutofill as bA, IdentityType as bB, ErrorType as bC, SortOrder as bD, Mode as bE, Status as bF, SubmissionErrorType as bG, type Submitter as bH, type SubmitterSubmitterOneOf as bI, type ExtendedFields as bJ, type OrderDetails as bK, type PublicTags as bL, type TagList as bM, type AppointmentDetails as bN, type FormSubmissionStatusUpdatedEvent as bO, type RemovedSubmissionFromTrash as bP, type SubmissionContactMapped as bQ, type MarketingSubscriptionDetails as bR, type SubmissionContactMappingSkipped as bS, type DomainEvent as bT, type DomainEventBodyOneOf as bU, type EntityCreatedEvent as bV, type RestoreInfo as bW, type EntityUpdatedEvent as bX, type EntityDeletedEvent as bY, type ActionEvent as bZ, type MessageEnvelope as b_, MeetingType as ba, StaffStrategySelection as bb, InputType as bc, EmailInfoTag as bd, PhoneInfoTag as be, Tag as bf, ConfirmationLevel as bg, SubscriptionChannel as bh, ContactField as bi, DisplayFieldType as bj, OverrideEntityType as bk, Kind as bl, FormFieldContactInfoEmailInfoTag as bm, FormFieldContactInfoPhoneInfoTag as bn, AddressInfoTag as bo, SubscriptionInfoOptInLevel as bp, FormFieldContactInfoContactField as bq, SpamFilterProtectionLevel as br, RequiredIndicator as bs, RequiredIndicatorPlacement as bt, Target as bu, SubmitSuccessAction as bv, ChangeableProperty as bw, OverrideEntityTypeEnumOverrideEntityType as bx, Operator as by, ResultsDisplay as bz, type CreateSubmissionValidationErrors as c, type Stop as c$, type IdentificationDataIdOneOf as c0, type AccountInfo as c1, type CreateCheckoutFromSubmissionRequest as c2, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c3, type Form as c4, type FormField as c5, type FormFieldStringType as c6, type FormFieldStringTypeFormatOptionsOneOf as c7, type StringErrorMessages as c8, type StringTypeDateTimeConstraints as c9, type MultilineAddressValidation as cA, type FieldOverrides as cB, type FieldsOverrides as cC, type ObjectArrayType as cD, type NestedFormFieldOverrides as cE, type Validation as cF, type ValidationValidationOneOf as cG, type DataExtensionsDetails as cH, type NestedFormOverrides as cI, type Field as cJ, type FieldFieldTypeOptionsOneOf as cK, type InputField as cL, type InputFieldInputTypeOptionsOneOf as cM, type StringCorrectAnswersList as cN, type StringType as cO, type StringTypeFormatOptionsOneOf as cP, type DateTimeConstraints as cQ, type PhoneConstraints as cR, type ValidationMessages as cS, type StringQuizFieldSettings as cT, type TextInput as cU, type RichContent as cV, type Node as cW, type NodeDataOneOf as cX, type NodeStyle as cY, type ButtonData as cZ, type Gradient as c_, type DateTimeAdvancedConstraints as ca, type Availability as cb, type DateRange as cc, type StringTypePhoneConstraints as cd, type StringTypeValidationMessages as ce, type FormFieldNumberType as cf, type NumberErrorMessages as cg, type IntegerType as ch, type FormFieldBooleanType as ci, type BooleanErrorMessages as cj, type FormFieldArrayType as ck, type FormFieldObjectType as cl, type ObjectTypePropertiesType as cm, type ObjectTypePropertiesTypePropertiesTypeOneOf as cn, type ObjectErrorMessages as co, type ArrayTypeArrayItems as cp, type ArrayTypeArrayItemsItemsOneOf as cq, type ArrayErrorMessages as cr, type PredefinedValidation as cs, type PredefinedValidationFormatOptionsOneOf as ct, type PaymentType as cu, type QuantityLimit as cv, type FixedPriceOptions as cw, type DynamicPriceOptions as cx, type Product as cy, type ProductPriceOptionsOneOf as cz, type UpdateSubmission as d, type MentionData as d$, type Border as d0, type Colors as d1, type Background as d2, type PluginContainerData as d3, type PluginContainerDataWidth as d4, type PluginContainerDataWidthDataOneOf as d5, type Spoiler as d6, type Height as d7, type Styles as d8, type Link as d9, type StylesBorder as dA, type ImageDataStyles as dB, type LinkPreviewData as dC, type LinkPreviewDataStyles as dD, type MapData as dE, type MapSettings as dF, type ParagraphData as dG, type PollData as dH, type Permissions as dI, type PollOption as dJ, type Settings as dK, type PollLayout as dL, type OptionLayout as dM, type BackgroundGradient as dN, type PollDesignBackground as dO, type PollDesignBackgroundBackgroundOneOf as dP, type PollDesign as dQ, type OptionDesign as dR, type Poll as dS, type PollDataLayout as dT, type Design as dU, type TextData as dV, type Decoration as dW, type DecorationDataOneOf as dX, type AnchorData as dY, type ColorData as dZ, type LinkData as d_, type LinkDataOneOf as da, type Rel as db, type CodeBlockData as dc, type TextStyle as dd, type DividerData as de, type FileData as df, type FileSource as dg, type FileSourceDataOneOf as dh, type PDFSettings as di, type GalleryData as dj, type Media as dk, type Image as dl, type Video as dm, type Item as dn, type ItemDataOneOf as dp, type GalleryOptions as dq, type GalleryOptionsLayout as dr, type ItemStyle as ds, type Thumbnails as dt, type GIFData as du, type GIF as dv, type HeadingData as dw, type HTMLData as dx, type HTMLDataDataOneOf as dy, type ImageData as dz, type UpdateSubmissionValidationErrors as e, type RatingInput as e$, type FontSizeData as e0, type SpoilerData as e1, type FontFamilyData as e2, type AppEmbedData as e3, type AppEmbedDataAppDataOneOf as e4, type BookingData as e5, type EventData as e6, type ButtonStyles as e7, type ImageStyles as e8, type RibbonStyles as e9, type ShapeDataStyles as eA, type CardData as eB, type CardDataBackground as eC, type BackgroundImage as eD, type Metadata as eE, type DocumentStyle as eF, type TextNodeStyle as eG, type MediaItem as eH, type MediaItemMediaOneOf as eI, type MediaSettings as eJ, type RadioGroup as eK, type RadioGroupOption as eL, type CustomOption as eM, type Dropdown as eN, type DropdownOption as eO, type DateTimeInput as eP, type PhoneInput as eQ, type DateInput as eR, type TimeInput as eS, type DatePicker as eT, type ServicesDropdown as eU, type ServiceOption as eV, type Password as eW, type NumberCorrectAnswersList as eX, type NumberType as eY, type NumberQuizFieldSettings as eZ, type NumberInput as e_, type CardStyles as ea, type PricingData as eb, type VideoData as ec, type PlaybackOptions as ed, type EmbedData as ee, type Oembed as ef, type CollapsibleListData as eg, type TableData as eh, type Dimensions as ei, type TableCellData as ej, type CellStyle as ek, type BorderColors as el, type BorderWidths as em, type ListValue as en, type AudioData as eo, type OrderedListData as ep, type BulletedListData as eq, type BlockquoteData as er, type CaptionData as es, type LayoutData as et, type LayoutDataBackgroundImage as eu, type Banner as ev, type LayoutDataBackground as ew, type Backdrop as ex, type LayoutCellData as ey, type ShapeData as ez, type ConfirmSubmissionResponse as f, type PaymentComponentTypeOptionsOneOf as f$, type BooleanType as f0, type Checkbox as f1, type CorrectAnswersList as f2, type ArrayType as f3, type ObjectType as f4, type PropertiesType as f5, type PropertiesTypePropertiesTypeOptionsOneOf as f6, type ArrayItems as f7, type ArrayItemsItemTypeOptionsOneOf as f8, type QuizFieldSettings as f9, type Section as fA, type Appointment as fB, type AppointmentFormatInfoOneOf as fC, type Location as fD, type LocationLocationInfoOneOf as fE, type InPersonOptions as fF, type VideoConferenceOptions as fG, type PhoneOptions as fH, type FormFieldContactInfo as fI, type FormFieldContactInfoAdditionalInfoOneOf as fJ, type EmailInfo as fK, type PhoneInfo as fL, type AddressInfo as fM, type CustomFieldInfo as fN, type SubscriptionInfo as fO, type _String as fP, type _StringComponentTypeOptionsOneOf as fQ, type _Number as fR, type _NumberComponentTypeOptionsOneOf as fS, type _Boolean as fT, type _BooleanComponentTypeOptionsOneOf as fU, type _Array as fV, type _ArrayComponentTypeOptionsOneOf as fW, type _Object as fX, type WixFile as fY, type WixFileComponentTypeOptionsOneOf as fZ, type Payment as f_, type CheckboxGroup as fa, type Option as fb, type ComponentsTags as fc, type TagsOption as fd, type ServicesCheckboxGroup as fe, type FileType as ff, type FileUpload as fg, type Signature as fh, type ProductCheckboxGroup as fi, type ProductCheckboxGroupOption as fj, type DonationInput as fk, type DonationInputOption as fl, type PaymentInput as fm, type FixedPayment as fn, type MultilineAddress as fo, type AddressLine2 as fp, type DefaultCountryConfig as fq, type DefaultCountryConfigOptionsOneOf as fr, type FieldsSettings as fs, type Repeater as ft, type FormLayout as fu, type BreakPoint as fv, type ItemLayout as fw, type ItemLayoutItemOneOf as fx, type Group as fy, type Margin as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterRequest as g$, type Scheduling as g0, type SchedulingComponentTypeOptionsOneOf as g1, type Address as g2, type AddressComponentTypeOptionsOneOf as g3, type ObjectArray as g4, type ObjectArrayComponentTypeOptionsOneOf as g5, type DisplayField as g6, type DisplayFieldDisplayFieldTypeOptionsOneOf as g7, type RichContentOptions as g8, type PageNavigationOptions as g9, type FieldOverridePropertyTypeOptionsOneOf as gA, type ConditionNode as gB, type ConditionNodeNodeOneOf as gC, type AndCondition as gD, type OrCondition as gE, type Condition as gF, type RuleFormOverride as gG, type RuleFormOverrideEntityTypeOptionsOneOf as gH, type Tags as gI, type TagsTagList as gJ, type QuizSettings as gK, type QuizSettingsPassingCriteriaOneOf as gL, type QuizSettingsResultsDisplayOptionsOneOf as gM, type PassFailMessages as gN, type CreateCheckoutFromSubmissionResponse as gO, type Checkout as gP, type IsFormSubmittableRequest as gQ, type IsFormSubmittableResponse as gR, type Empty as gS, type UpsertContactFromSubmissionRequest as gT, type SubmitContactResponse as gU, type CreateSubmissionRequest as gV, type CreateSubmissionResponse as gW, type SubmissionValidationErrorsDetails as gX, type ValidationError as gY, type CreateSubmissionBySubmitterRequest as gZ, type CreateSubmissionBySubmitterResponse as g_, type Step as ga, type FormRule as gb, type FormOverride as gc, type FormProperties as gd, type PostSubmissionTriggers as ge, type UpsertContact as gf, type V4FormFieldContactInfo as gg, type V4FormFieldContactInfoAdditionalInfoOneOf as gh, type FormFieldContactInfoEmailInfo as gi, type FormFieldContactInfoPhoneInfo as gj, type FormFieldContactInfoAddressInfo as gk, type FormFieldContactInfoCustomFieldInfo as gl, type FormFieldContactInfoSubscriptionInfo as gm, type NestedForm as gn, type LimitationRule as go, type RequiredIndicatorProperties as gp, type SubmitSettings as gq, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gr, type ThankYouMessageOptions as gs, type RedirectOptions as gt, type FieldGroup as gu, type Rule as gv, type RequiredOptions as gw, type HiddenOptions as gx, type AllowedValuesOptions as gy, type FieldOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsByFilterResponse as h$, type BulkCreateSubmissionBySubmitterData as h0, type BulkCreateSubmissionBySubmitterResponse as h1, type BulkSubmissionResult as h2, type ItemMetadata as h3, type ApplicationError as h4, type BulkActionMetadata as h5, type GetSubmissionRequest as h6, type GetSubmissionResponse as h7, type GetSubmissionByCheckoutIdRequest as h8, type GetSubmissionByCheckoutIdResponse as h9, type QuerySubmissionsByNamespaceRequest as hA, type QuerySubmissionsByNamespaceResponse as hB, type QuerySubmissionsByNamespaceForExportRequest as hC, type QuerySubmissionsByNamespaceForExportResponse as hD, type CountSubmissionsByFilterRequest as hE, type FormSubmissionsCount as hF, type CountSubmissionsRequest as hG, type CountDeletedSubmissionsRequest as hH, type FormDeletedSubmissionsCount as hI, type GetMediaUploadURLRequest as hJ, type BulkMarkSubmissionsAsSeenRequest as hK, type GetSubmissionDownloadUrlRequest as hL, type SubmissionDocument as hM, type SubmissionDocumentDocumentOneOf as hN, type DocumentReady as hO, type DownloadSubmissionRequest as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResponse as hY, type BulkUpdateFormSubmissionTagsResult as hZ, type BulkUpdateFormSubmissionTagsByFilterRequest as h_, type UpdateSubmissionRequest as ha, type UpdateSubmissionResponse as hb, type ConfirmSubmissionRequest as hc, type DeleteSubmissionRequest as hd, type DeleteSubmissionResponse as he, type BulkDeleteSubmissionRequest as hf, type BulkDeleteSubmissionResult as hg, type RestoreSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinRequest as hi, type RemoveSubmissionFromTrashBinResponse as hj, type BulkRemoveSubmissionFromTrashBinRequest as hk, type BulkRemoveSubmissionFromTrashBinResult as hl, type ListDeletedSubmissionsRequest as hm, type CursorPaging as hn, type CursorPagingMetadata as ho, type Cursors as hp, type GetDeletedSubmissionRequest as hq, type QuerySubmissionRequest as hr, type CursorQueryPagingMethodOneOf as hs, type Sorting as ht, type SearchSubmissionsByNamespaceRequest as hu, type CursorSearch as hv, type CursorSearchPagingMethodOneOf as hw, type SearchDetails as hx, type SearchSubmissionsByNamespaceForExportRequest as hy, type SearchSubmissionsByNamespaceForExportResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type InitialExpandedItemsWithLiterals as i$, type ValidateFormSubmissionRequest as i0, type FieldViolation as i1, type FieldViolationErrorDataOneOf as i2, type SubmissionValidationErrors as i3, type SubmissionValidationError as i4, type SubmissionValidationErrorErrorMessageOneOf as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type AccountInfoMetadata as i8, type FormSubmissionSearchSpec as i9, type LineStyleWithLiterals as iA, type WidthWithLiterals as iB, type DividerDataAlignmentWithLiterals as iC, type ViewModeWithLiterals as iD, type LayoutTypeWithLiterals as iE, type OrientationWithLiterals as iF, type CropWithLiterals as iG, type ThumbnailsAlignmentWithLiterals as iH, type GIFTypeWithLiterals as iI, type SourceWithLiterals as iJ, type StylesPositionWithLiterals as iK, type MapTypeWithLiterals as iL, type ViewRoleWithLiterals as iM, type VoteRoleWithLiterals as iN, type PollLayoutTypeWithLiterals as iO, type PollLayoutDirectionWithLiterals as iP, type PollDesignBackgroundTypeWithLiterals as iQ, type DecorationTypeWithLiterals as iR, type FontTypeWithLiterals as iS, type PositionWithLiterals as iT, type AspectRatioWithLiterals as iU, type ResizingWithLiterals as iV, type PlacementWithLiterals as iW, type CardStylesTypeWithLiterals as iX, type CardStylesAlignmentWithLiterals as iY, type LayoutWithLiterals as iZ, type AppTypeWithLiterals as i_, type SubmissionsQueryResult as ia, type FormSubmissionQuerySpec as ib, type BulkUpdateFormSubmissionTagsOptions as ic, type BulkUpdateFormSubmissionTagsByFilterOptions as id, utils as ie, type SubmissionStatusWithLiterals as ig, type OptInLevelWithLiterals as ih, type WebhookIdentityTypeWithLiterals as ii, type StringTypeFormatEnumFormatWithLiterals as ij, type DayOfWeekWithLiterals as ik, type ValidationFormatWithLiterals as il, type ProductTypeWithLiterals as im, type PriceTypeWithLiterals as io, type FieldTypeWithLiterals as ip, type FormatEnumFormatWithLiterals as iq, type StringComponentTypeWithLiterals as ir, type NodeTypeWithLiterals as is, type BackgroundTypeWithLiterals as it, type GradientTypeWithLiterals as iu, type WidthTypeWithLiterals as iv, type PluginContainerDataAlignmentWithLiterals as iw, type ButtonDataTypeWithLiterals as ix, type LinkTargetWithLiterals as iy, type TextAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type StatusWithLiterals as j$, type DirectionWithLiterals as j0, type VerticalAlignmentWithLiterals as j1, type NullValueWithLiterals as j2, type ImageScalingScalingWithLiterals as j3, type LayoutDataImagePositionWithLiterals as j4, type OriginWithLiterals as j5, type LayoutDataBackgroundTypeWithLiterals as j6, type BackdropTypeWithLiterals as j7, type VerticalAlignmentAlignmentWithLiterals as j8, type ResponsivenessBehaviourWithLiterals as j9, type PhoneInfoTagWithLiterals as jA, type TagWithLiterals as jB, type ConfirmationLevelWithLiterals as jC, type SubscriptionChannelWithLiterals as jD, type ContactFieldWithLiterals as jE, type DisplayFieldTypeWithLiterals as jF, type OverrideEntityTypeWithLiterals as jG, type KindWithLiterals as jH, type FormFieldContactInfoEmailInfoTagWithLiterals as jI, type FormFieldContactInfoPhoneInfoTagWithLiterals as jJ, type AddressInfoTagWithLiterals as jK, type SubscriptionInfoOptInLevelWithLiterals as jL, type FormFieldContactInfoContactFieldWithLiterals as jM, type SpamFilterProtectionLevelWithLiterals as jN, type RequiredIndicatorWithLiterals as jO, type RequiredIndicatorPlacementWithLiterals as jP, type TargetWithLiterals as jQ, type SubmitSuccessActionWithLiterals as jR, type ChangeablePropertyWithLiterals as jS, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jT, type OperatorWithLiterals as jU, type ResultsDisplayWithLiterals as jV, type ContactAutofillWithLiterals as jW, type IdentityTypeWithLiterals as jX, type ErrorTypeWithLiterals as jY, type SortOrderWithLiterals as jZ, type ModeWithLiterals as j_, type DesignTargetWithLiterals as ja, type ScalingWithLiterals as jb, type ImagePositionPositionWithLiterals as jc, type CardDataBackgroundTypeWithLiterals as jd, type ImagePositionWithLiterals as je, type AlignmentWithLiterals as jf, type ImageFitWithLiterals as jg, type NumberOfColumnsWithLiterals as jh, type FirstDayOfWeekWithLiterals 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 UploadFileFormatWithLiterals as jp, type PaymentComponentTypeWithLiterals as jq, type ComponentTypeWithLiterals as jr, type TypeWithLiterals as js, type ObjectArrayComponentTypeWithLiterals as jt, type SchedulingComponentTypeWithLiterals as ju, type FormatWithLiterals as jv, type MeetingTypeWithLiterals as jw, type StaffStrategySelectionWithLiterals as jx, type InputTypeWithLiterals as jy, type EmailInfoTagWithLiterals as jz, type CursorQuery as k, type SubmissionErrorTypeWithLiterals as k0, type CommonSearchWithEntityContext as k1, type CommonQueryWithEntityContext as k2, onSubmissionCreated as k3, onSubmissionDeleted as k4, onSubmissionRemovedSubmissionFromTrash as k5, onSubmissionStatusUpdated as k6, onSubmissionContactMapped as k7, onSubmissionContactMappingSkipped as k8, onSubmissionUpdated as k9, upsertContactFromSubmission as ka, createSubmission as kb, getSubmission as kc, updateSubmission as kd, confirmSubmission as ke, deleteSubmission as kf, bulkDeleteSubmission as kg, restoreSubmissionFromTrashBin as kh, removeSubmissionFromTrashBin as ki, bulkRemoveSubmissionFromTrashBin as kj, listDeletedSubmissions as kk, getDeletedSubmission as kl, querySubmission as km, querySubmissionsByNamespace as kn, countSubmissionsByFilter as ko, countSubmissions as kp, countDeletedSubmissions as kq, getMediaUploadUrl as kr, bulkMarkSubmissionsAsSeen as ks, getSubmissionDownloadUrl as kt, downloadSubmission as ku, getFormattedSubmission as kv, updateExtendedFields as kw, validateFormSubmission as kx, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
8197
+ export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberComponentType as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, ImagePosition as aW, Alignment as aX, ImageFit as aY, NumberOfColumns as aZ, FirstDayOfWeek as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ActionEvent as b$, BooleanComponentType as b0, ItemType as b1, PropertiesTypeEnum as b2, ArrayComponentType as b3, WixFileComponentType as b4, UploadFileFormat as b5, PaymentComponentType as b6, ComponentType as b7, Type as b8, ObjectArrayComponentType as b9, Operator as bA, ResultsDisplay as bB, ContactAutofill as bC, IdentityType as bD, ErrorType as bE, SortOrder as bF, Mode as bG, Status as bH, SubmissionErrorType as bI, type Submitter as bJ, type SubmitterSubmitterOneOf as bK, type ExtendedFields as bL, type OrderDetails as bM, type PublicTags as bN, type TagList as bO, type AppointmentDetails as bP, type FormSubmissionStatusUpdatedEvent as bQ, type RemovedSubmissionFromTrash as bR, type SubmissionContactMapped as bS, type MarketingSubscriptionDetails as bT, type SubmissionContactMappingSkipped as bU, type DomainEvent as bV, type DomainEventBodyOneOf as bW, type EntityCreatedEvent as bX, type RestoreInfo as bY, type EntityUpdatedEvent as bZ, type EntityDeletedEvent as b_, SchedulingComponentType as ba, Format as bb, MeetingType as bc, StaffStrategySelection as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, SubscriptionChannel as bj, ContactField as bk, DisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, FormFieldContactInfoEmailInfoTag as bo, FormFieldContactInfoPhoneInfoTag as bp, AddressInfoTag as bq, SubscriptionInfoOptInLevel as br, FormFieldContactInfoContactField as bs, SpamFilterProtectionLevel as bt, RequiredIndicator as bu, RequiredIndicatorPlacement as bv, Target as bw, SubmitSuccessAction as bx, ChangeableProperty as by, OverrideEntityTypeEnumOverrideEntityType as bz, type CreateSubmissionValidationErrors as c, type ButtonData as c$, type MessageEnvelope as c0, type IdentificationData as c1, type IdentificationDataIdOneOf as c2, type AccountInfo as c3, type CreateCheckoutFromSubmissionRequest as c4, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c5, type Form as c6, type FormField as c7, type FormFieldStringType as c8, type FormFieldStringTypeFormatOptionsOneOf as c9, type Product as cA, type ProductPriceOptionsOneOf as cB, type MultilineAddressValidation as cC, type FieldOverrides as cD, type FieldsOverrides as cE, type ObjectArrayType as cF, type NestedFormFieldOverrides as cG, type Validation as cH, type ValidationValidationOneOf as cI, type DataExtensionsDetails as cJ, type NestedFormOverrides as cK, type Field as cL, type FieldFieldTypeOptionsOneOf as cM, type InputField as cN, type InputFieldInputTypeOptionsOneOf as cO, type StringCorrectAnswersList as cP, type StringType as cQ, type StringTypeFormatOptionsOneOf as cR, type DateTimeConstraints as cS, type PhoneConstraints as cT, type ValidationMessages as cU, type StringQuizFieldSettings as cV, type TextInput as cW, type RichContent as cX, type Node as cY, type NodeDataOneOf as cZ, type NodeStyle as c_, type StringErrorMessages as ca, type StringTypeDateTimeConstraints as cb, type DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypePhoneConstraints as cf, type StringTypeValidationMessages as cg, type FormFieldNumberType as ch, type NumberErrorMessages as ci, type IntegerType as cj, type FormFieldBooleanType as ck, type BooleanErrorMessages as cl, type FormFieldArrayType as cm, type FormFieldObjectType as cn, type ObjectTypePropertiesType as co, type ObjectTypePropertiesTypePropertiesTypeOneOf as cp, type ObjectErrorMessages as cq, type ArrayTypeArrayItems as cr, type ArrayTypeArrayItemsItemsOneOf as cs, type ArrayErrorMessages as ct, type PredefinedValidation as cu, type PredefinedValidationFormatOptionsOneOf as cv, type PaymentType as cw, type QuantityLimit as cx, type FixedPriceOptions as cy, type DynamicPriceOptions as cz, type UpdateSubmission as d, type ColorData as d$, type Gradient as d0, type Stop as d1, type Border as d2, type Colors as d3, type Background as d4, type PluginContainerData as d5, type PluginContainerDataWidth as d6, type PluginContainerDataWidthDataOneOf as d7, type Spoiler as d8, type Height as d9, type HTMLDataDataOneOf as dA, type ImageData as dB, type StylesBorder as dC, type ImageDataStyles as dD, type LinkPreviewData as dE, type LinkPreviewDataStyles as dF, type MapData as dG, type MapSettings as dH, type ParagraphData as dI, type PollData as dJ, type Permissions as dK, type PollOption as dL, type Settings as dM, type PollLayout as dN, type OptionLayout as dO, type BackgroundGradient as dP, type PollDesignBackground as dQ, type PollDesignBackgroundBackgroundOneOf as dR, type PollDesign as dS, type OptionDesign as dT, type Poll as dU, type PollDataLayout as dV, type Design as dW, type TextData as dX, type Decoration as dY, type DecorationDataOneOf as dZ, type AnchorData as d_, type Styles as da, type Link as db, type LinkDataOneOf as dc, type Rel as dd, type CodeBlockData as de, type TextStyle as df, type DividerData as dg, type FileData as dh, type FileSource as di, type FileSourceDataOneOf as dj, type PDFSettings as dk, type GalleryData as dl, type Media as dm, type Image as dn, type Video as dp, type Item as dq, type ItemDataOneOf as dr, type GalleryOptions as ds, type GalleryOptionsLayout as dt, type ItemStyle as du, type Thumbnails as dv, type GIFData as dw, type GIF as dx, type HeadingData as dy, type HTMLData as dz, type UpdateSubmissionValidationErrors as e, type NumberType as e$, type LinkData as e0, type MentionData as e1, type FontSizeData as e2, type SpoilerData as e3, type FontFamilyData as e4, type AppEmbedData as e5, type AppEmbedDataAppDataOneOf as e6, type BookingData as e7, type EventData as e8, type ButtonStyles as e9, type LayoutCellData as eA, type ShapeData as eB, type ShapeDataStyles as eC, type CardData as eD, type CardDataBackground as eE, type BackgroundImage as eF, type TocData as eG, type Metadata as eH, type DocumentStyle as eI, type TextNodeStyle as eJ, type MediaItem as eK, type MediaItemMediaOneOf as eL, type MediaSettings as eM, type RadioGroup as eN, type RadioGroupOption as eO, type CustomOption as eP, type Dropdown as eQ, type DropdownOption as eR, type DateTimeInput as eS, type PhoneInput as eT, type DateInput as eU, type TimeInput as eV, type DatePicker as eW, type ServicesDropdown as eX, type ServiceOption as eY, type Password as eZ, type NumberCorrectAnswersList as e_, type ImageStyles as ea, type RibbonStyles as eb, type CardStyles as ec, type PricingData as ed, type VideoData as ee, type PlaybackOptions as ef, type EmbedData as eg, type Oembed as eh, type CollapsibleListData as ei, type TableData as ej, type Dimensions as ek, type TableCellData as el, type CellStyle as em, type BorderColors as en, type BorderWidths as eo, type ListValue as ep, type AudioData as eq, type OrderedListData as er, type BulletedListData as es, type BlockquoteData as et, type CaptionData as eu, type LayoutData as ev, type LayoutDataBackgroundImage as ew, type Banner as ex, type LayoutDataBackground as ey, type Backdrop as ez, type ConfirmSubmissionResponse as f, type WixFile as f$, type NumberQuizFieldSettings as f0, type NumberInput as f1, type RatingInput as f2, type BooleanType as f3, type Checkbox as f4, type CorrectAnswersList as f5, type ArrayType as f6, type ObjectType as f7, type PropertiesType as f8, type PropertiesTypePropertiesTypeOptionsOneOf as f9, type ItemLayoutItemOneOf as fA, type Group as fB, type Margin as fC, type Section as fD, type Appointment as fE, type AppointmentFormatInfoOneOf as fF, type Location as fG, type LocationLocationInfoOneOf as fH, type InPersonOptions as fI, type VideoConferenceOptions as fJ, type PhoneOptions as fK, type FormFieldContactInfo as fL, type FormFieldContactInfoAdditionalInfoOneOf as fM, type EmailInfo as fN, type PhoneInfo as fO, type AddressInfo as fP, type CustomFieldInfo as fQ, type SubscriptionInfo as fR, type _String as fS, type _StringComponentTypeOptionsOneOf as fT, type _Number as fU, type _NumberComponentTypeOptionsOneOf as fV, type _Boolean as fW, type _BooleanComponentTypeOptionsOneOf as fX, type _Array as fY, type _ArrayComponentTypeOptionsOneOf as fZ, type _Object as f_, type ArrayItems as fa, type ArrayItemsItemTypeOptionsOneOf as fb, type QuizFieldSettings as fc, type CheckboxGroup as fd, type Option as fe, type ComponentsTags as ff, type TagsOption as fg, type ServicesCheckboxGroup as fh, type FileType as fi, type FileUpload as fj, type Signature as fk, type ProductCheckboxGroup as fl, type ProductCheckboxGroupOption as fm, type DonationInput as fn, type DonationInputOption as fo, type PaymentInput as fp, type FixedPayment as fq, type MultilineAddress as fr, type AddressLine2 as fs, type DefaultCountryConfig as ft, type DefaultCountryConfigOptionsOneOf as fu, type FieldsSettings as fv, type Repeater as fw, type FormLayout as fx, type BreakPoint as fy, type ItemLayout as fz, type BulkDeleteSubmissionResponse as g, type ValidationError as g$, type WixFileComponentTypeOptionsOneOf as g0, type Payment as g1, type PaymentComponentTypeOptionsOneOf as g2, type Scheduling as g3, type SchedulingComponentTypeOptionsOneOf as g4, type Address as g5, type AddressComponentTypeOptionsOneOf as g6, type ObjectArray as g7, type ObjectArrayComponentTypeOptionsOneOf as g8, type DisplayField as g9, type HiddenOptions as gA, type AllowedValuesOptions as gB, type FieldOverride as gC, type FieldOverridePropertyTypeOptionsOneOf as gD, type ConditionNode as gE, type ConditionNodeNodeOneOf as gF, type AndCondition as gG, type OrCondition as gH, type Condition as gI, type RuleFormOverride as gJ, type RuleFormOverrideEntityTypeOptionsOneOf as gK, type Tags as gL, type TagsTagList as gM, type QuizSettings as gN, type QuizSettingsPassingCriteriaOneOf as gO, type QuizSettingsResultsDisplayOptionsOneOf as gP, type PassFailMessages as gQ, type CreateCheckoutFromSubmissionResponse as gR, type Checkout as gS, type IsFormSubmittableRequest as gT, type IsFormSubmittableResponse as gU, type Empty as gV, type UpsertContactFromSubmissionRequest as gW, type SubmitContactResponse as gX, type CreateSubmissionRequest as gY, type CreateSubmissionResponse as gZ, type SubmissionValidationErrorsDetails as g_, type DisplayFieldDisplayFieldTypeOptionsOneOf as ga, type RichContentOptions as gb, type PageNavigationOptions as gc, type Step as gd, type FormRule as ge, type FormOverride as gf, type FormProperties as gg, type PostSubmissionTriggers as gh, type UpsertContact as gi, type V4FormFieldContactInfo as gj, type V4FormFieldContactInfoAdditionalInfoOneOf as gk, type FormFieldContactInfoEmailInfo as gl, type FormFieldContactInfoPhoneInfo as gm, type FormFieldContactInfoAddressInfo as gn, type FormFieldContactInfoCustomFieldInfo as go, type FormFieldContactInfoSubscriptionInfo as gp, type NestedForm as gq, type LimitationRule as gr, type RequiredIndicatorProperties as gs, type SubmitSettings as gt, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gu, type ThankYouMessageOptions as gv, type RedirectOptions as gw, type FieldGroup as gx, type Rule as gy, type RequiredOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsResponse as h$, type CreateSubmissionBySubmitterRequest as h0, type CreateSubmissionBySubmitterResponse as h1, type BulkCreateSubmissionBySubmitterRequest as h2, type BulkCreateSubmissionBySubmitterData as h3, type BulkCreateSubmissionBySubmitterResponse as h4, type BulkSubmissionResult as h5, type ItemMetadata as h6, type ApplicationError as h7, type BulkActionMetadata as h8, type GetSubmissionRequest as h9, type SearchDetails as hA, type SearchSubmissionsByNamespaceForExportRequest as hB, type SearchSubmissionsByNamespaceForExportResponse as hC, type QuerySubmissionsByNamespaceRequest as hD, type QuerySubmissionsByNamespaceResponse as hE, type QuerySubmissionsByNamespaceForExportRequest as hF, type QuerySubmissionsByNamespaceForExportResponse as hG, type CountSubmissionsByFilterRequest as hH, type FormSubmissionsCount as hI, type CountSubmissionsRequest as hJ, type CountDeletedSubmissionsRequest as hK, type FormDeletedSubmissionsCount as hL, type GetMediaUploadURLRequest as hM, type BulkMarkSubmissionsAsSeenRequest as hN, type GetSubmissionDownloadUrlRequest as hO, type SubmissionDocument as hP, type SubmissionDocumentDocumentOneOf as hQ, type DocumentReady as hR, type DownloadSubmissionRequest as hS, type HeadersEntry as hT, type GetFormattedSubmissionRequest as hU, type FormattedSubmission as hV, type ListFormattedSubmissionsRequest as hW, type ListFormattedSubmissionsResponse as hX, type FormattedFormSubmission as hY, type UpdateExtendedFieldsRequest as hZ, type BulkUpdateFormSubmissionTagsRequest as h_, type GetSubmissionResponse as ha, type GetSubmissionByCheckoutIdRequest as hb, type GetSubmissionByCheckoutIdResponse as hc, type UpdateSubmissionRequest as hd, type UpdateSubmissionResponse as he, type ConfirmSubmissionRequest as hf, type DeleteSubmissionRequest as hg, type DeleteSubmissionResponse as hh, type BulkDeleteSubmissionRequest as hi, type BulkDeleteSubmissionResult as hj, type RestoreSubmissionFromTrashBinRequest as hk, type RemoveSubmissionFromTrashBinRequest as hl, type RemoveSubmissionFromTrashBinResponse as hm, type BulkRemoveSubmissionFromTrashBinRequest as hn, type BulkRemoveSubmissionFromTrashBinResult as ho, type ListDeletedSubmissionsRequest as hp, type CursorPaging as hq, type CursorPagingMetadata as hr, type Cursors as hs, type GetDeletedSubmissionRequest as ht, type QuerySubmissionRequest as hu, type CursorQueryPagingMethodOneOf as hv, type Sorting as hw, type SearchSubmissionsByNamespaceRequest as hx, type CursorSearch as hy, type CursorSearchPagingMethodOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type CardStylesAlignmentWithLiterals as i$, type BulkUpdateFormSubmissionTagsResult as i0, type BulkUpdateFormSubmissionTagsByFilterRequest as i1, type BulkUpdateFormSubmissionTagsByFilterResponse as i2, type ValidateFormSubmissionRequest as i3, type FieldViolation as i4, type FieldViolationErrorDataOneOf as i5, type SubmissionValidationErrors as i6, type SubmissionValidationError as i7, type SubmissionValidationErrorErrorMessageOneOf as i8, type BaseEventMetadata as i9, type ButtonDataTypeWithLiterals as iA, type LinkTargetWithLiterals as iB, type TextAlignmentWithLiterals as iC, type LineStyleWithLiterals as iD, type WidthWithLiterals as iE, type DividerDataAlignmentWithLiterals as iF, type ViewModeWithLiterals as iG, type LayoutTypeWithLiterals as iH, type OrientationWithLiterals as iI, type CropWithLiterals as iJ, type ThumbnailsAlignmentWithLiterals as iK, type GIFTypeWithLiterals as iL, type SourceWithLiterals as iM, type StylesPositionWithLiterals as iN, type MapTypeWithLiterals as iO, type ViewRoleWithLiterals as iP, type VoteRoleWithLiterals as iQ, type PollLayoutTypeWithLiterals as iR, type PollLayoutDirectionWithLiterals as iS, type PollDesignBackgroundTypeWithLiterals as iT, type DecorationTypeWithLiterals as iU, type FontTypeWithLiterals as iV, type PositionWithLiterals as iW, type AspectRatioWithLiterals as iX, type ResizingWithLiterals as iY, type PlacementWithLiterals as iZ, type CardStylesTypeWithLiterals as i_, type EventMetadata as ia, type AccountInfoMetadata as ib, type FormSubmissionSearchSpec as ic, type SubmissionsQueryResult as id, type FormSubmissionQuerySpec as ie, type BulkUpdateFormSubmissionTagsOptions as ig, type BulkUpdateFormSubmissionTagsByFilterOptions as ih, utils as ii, type SubmissionStatusWithLiterals as ij, type OptInLevelWithLiterals as ik, type WebhookIdentityTypeWithLiterals as il, type StringTypeFormatEnumFormatWithLiterals as im, type DayOfWeekWithLiterals as io, type ValidationFormatWithLiterals as ip, type ProductTypeWithLiterals as iq, type PriceTypeWithLiterals as ir, type FieldTypeWithLiterals as is, type FormatEnumFormatWithLiterals as it, type StringComponentTypeWithLiterals as iu, type NodeTypeWithLiterals as iv, type BackgroundTypeWithLiterals as iw, type GradientTypeWithLiterals as ix, type WidthTypeWithLiterals as iy, type PluginContainerDataAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ContactAutofillWithLiterals as j$, type LayoutWithLiterals as j0, type AppTypeWithLiterals as j1, type InitialExpandedItemsWithLiterals as j2, type DirectionWithLiterals as j3, type VerticalAlignmentWithLiterals as j4, type NullValueWithLiterals as j5, type ImageScalingScalingWithLiterals as j6, type LayoutDataImagePositionWithLiterals as j7, type OriginWithLiterals as j8, type LayoutDataBackgroundTypeWithLiterals as j9, type FormatWithLiterals as jA, type MeetingTypeWithLiterals as jB, type StaffStrategySelectionWithLiterals as jC, type InputTypeWithLiterals as jD, type EmailInfoTagWithLiterals as jE, type PhoneInfoTagWithLiterals as jF, type TagWithLiterals as jG, type ConfirmationLevelWithLiterals as jH, type SubscriptionChannelWithLiterals as jI, type ContactFieldWithLiterals as jJ, type DisplayFieldTypeWithLiterals as jK, type OverrideEntityTypeWithLiterals as jL, type KindWithLiterals as jM, type FormFieldContactInfoEmailInfoTagWithLiterals as jN, type FormFieldContactInfoPhoneInfoTagWithLiterals as jO, type AddressInfoTagWithLiterals as jP, type SubscriptionInfoOptInLevelWithLiterals as jQ, type FormFieldContactInfoContactFieldWithLiterals as jR, type SpamFilterProtectionLevelWithLiterals as jS, type RequiredIndicatorWithLiterals as jT, type RequiredIndicatorPlacementWithLiterals as jU, type TargetWithLiterals as jV, type SubmitSuccessActionWithLiterals as jW, type ChangeablePropertyWithLiterals as jX, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jY, type OperatorWithLiterals as jZ, type ResultsDisplayWithLiterals as j_, type BackdropTypeWithLiterals as ja, type VerticalAlignmentAlignmentWithLiterals as jb, type ResponsivenessBehaviourWithLiterals as jc, type DesignTargetWithLiterals as jd, type ScalingWithLiterals as je, type ImagePositionPositionWithLiterals as jf, type CardDataBackgroundTypeWithLiterals as jg, type ListStyleWithLiterals as jh, type IndentationWithLiterals as ji, type ImagePositionWithLiterals as jj, type AlignmentWithLiterals as jk, type ImageFitWithLiterals as jl, type NumberOfColumnsWithLiterals as jm, type FirstDayOfWeekWithLiterals as jn, type NumberComponentTypeWithLiterals as jo, type BooleanComponentTypeWithLiterals as jp, type ItemTypeWithLiterals as jq, type PropertiesTypeEnumWithLiterals as jr, type ArrayComponentTypeWithLiterals as js, type WixFileComponentTypeWithLiterals as jt, type UploadFileFormatWithLiterals as ju, type PaymentComponentTypeWithLiterals as jv, type ComponentTypeWithLiterals as jw, type TypeWithLiterals as jx, type ObjectArrayComponentTypeWithLiterals as jy, type SchedulingComponentTypeWithLiterals as jz, type CursorQuery as k, type IdentityTypeWithLiterals as k0, type ErrorTypeWithLiterals as k1, type SortOrderWithLiterals as k2, type ModeWithLiterals as k3, type StatusWithLiterals as k4, type SubmissionErrorTypeWithLiterals as k5, type CommonSearchWithEntityContext as k6, type CommonQueryWithEntityContext as k7, onSubmissionCreated as k8, onSubmissionDeleted as k9, getFormattedSubmission as kA, updateExtendedFields as kB, validateFormSubmission as kC, onSubmissionRemovedSubmissionFromTrash as ka, onSubmissionStatusUpdated as kb, onSubmissionContactMapped as kc, onSubmissionContactMappingSkipped as kd, onSubmissionUpdated as ke, upsertContactFromSubmission as kf, createSubmission as kg, getSubmission as kh, updateSubmission as ki, confirmSubmission as kj, deleteSubmission as kk, bulkDeleteSubmission as kl, restoreSubmissionFromTrashBin as km, removeSubmissionFromTrashBin as kn, bulkRemoveSubmissionFromTrashBin as ko, listDeletedSubmissions as kp, getDeletedSubmission as kq, querySubmission as kr, querySubmissionsByNamespace as ks, countSubmissionsByFilter as kt, countSubmissions as ku, countDeletedSubmissions as kv, getMediaUploadUrl as kw, bulkMarkSubmissionsAsSeen as kx, getSubmissionDownloadUrl as ky, downloadSubmission as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DEPmv7zz.js';
3
- export { c1 as AccountInfo, i8 as AccountInfoMetadata, bZ as ActionEvent, g2 as Address, g3 as AddressComponentTypeOptionsOneOf, fM as AddressInfo, bo as AddressInfoTag, jK as AddressInfoTagWithLiterals, fp as AddressLine2, aV as Alignment, jf as AlignmentWithLiterals, gy as AllowedValuesOptions, dY as AnchorData, gD as AndCondition, e3 as AppEmbedData, e4 as AppEmbedDataAppDataOneOf, aE as AppType, i_ as AppTypeWithLiterals, h4 as ApplicationError, fB as Appointment, bN as AppointmentDetails, fC as AppointmentFormatInfoOneOf, b1 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, cr as ArrayErrorMessages, f7 as ArrayItems, f8 as ArrayItemsItemTypeOptionsOneOf, f3 as ArrayType, cp as ArrayTypeArrayItems, cq as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iU as AspectRatioWithLiterals, eo as AudioData, cb as Availability, ex as Backdrop, aN as BackdropType, j7 as BackdropTypeWithLiterals, d2 as Background, dN as BackgroundGradient, eD as BackgroundImage, a7 as BackgroundType, it as BackgroundTypeWithLiterals, ev as Banner, i6 as BaseEventMetadata, er as BlockquoteData, e5 as BookingData, a_ as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, cj as BooleanErrorMessages, f0 as BooleanType, d0 as Border, el as BorderColors, em as BorderWidths, fv as BreakPoint, h5 as BulkActionMetadata, h0 as BulkCreateSubmissionBySubmitterData, g$ as BulkCreateSubmissionBySubmitterRequest, h1 as BulkCreateSubmissionBySubmitterResponse, hf as BulkDeleteSubmissionRequest, hg as BulkDeleteSubmissionResult, hK as BulkMarkSubmissionsAsSeenRequest, hk as BulkRemoveSubmissionFromTrashBinRequest, hl as BulkRemoveSubmissionFromTrashBinResult, h2 as BulkSubmissionResult, id as BulkUpdateFormSubmissionTagsByFilterOptions, h_ as BulkUpdateFormSubmissionTagsByFilterRequest, h$ as BulkUpdateFormSubmissionTagsByFilterResponse, ic as BulkUpdateFormSubmissionTagsOptions, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResponse, hZ as BulkUpdateFormSubmissionTagsResult, eq as BulletedListData, cZ as ButtonData, ab as ButtonDataType, ix as ButtonDataTypeWithLiterals, e7 as ButtonStyles, es as CaptionData, eB as CardData, eC as CardDataBackground, aT as CardDataBackgroundType, jd as CardDataBackgroundTypeWithLiterals, ea as CardStyles, aC as CardStylesAlignment, iY as CardStylesAlignmentWithLiterals, aB as CardStylesType, iX as CardStylesTypeWithLiterals, ek as CellStyle, bw as ChangeableProperty, jS as ChangeablePropertyWithLiterals, f1 as Checkbox, fa as CheckboxGroup, gP as Checkout, dc as CodeBlockData, eg as CollapsibleListData, dZ as ColorData, d1 as Colors, k2 as CommonQueryWithEntityContext, k1 as CommonSearchWithEntityContext, b5 as ComponentType, jr as ComponentTypeWithLiterals, fc as ComponentsTags, gF as Condition, gB as ConditionNode, gC as ConditionNodeNodeOneOf, hc as ConfirmSubmissionRequest, bg as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bA as ContactAutofill, jW as ContactAutofillWithLiterals, bi as ContactField, jE as ContactFieldWithLiterals, f2 as CorrectAnswersList, hH as CountDeletedSubmissionsRequest, hE as CountSubmissionsByFilterRequest, hG as CountSubmissionsRequest, c2 as CreateCheckoutFromSubmissionRequest, c3 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gO as CreateCheckoutFromSubmissionResponse, gZ as CreateSubmissionBySubmitterRequest, g_ as CreateSubmissionBySubmitterResponse, gV as CreateSubmissionRequest, gW as CreateSubmissionResponse, ak as Crop, iG as CropWithLiterals, hn as CursorPaging, ho as CursorPagingMetadata, hs as CursorQueryPagingMethodOneOf, hv as CursorSearch, hw as CursorSearchPagingMethodOneOf, hp as Cursors, fN as CustomFieldInfo, eM as CustomOption, cH as DataExtensionsDetails, eR as DateInput, eT as DatePicker, cc as DateRange, ca as DateTimeAdvancedConstraints, cQ as DateTimeConstraints, eP as DateTimeInput, $ as DayOfWeek, ik as DayOfWeekWithLiterals, dW as Decoration, dX as DecorationDataOneOf, av as DecorationType, iR as DecorationTypeWithLiterals, fq as DefaultCountryConfig, fr as DefaultCountryConfigOptionsOneOf, hd as DeleteSubmissionRequest, he as DeleteSubmissionResponse, dU as Design, aQ as DesignTarget, ja as DesignTargetWithLiterals, ei as Dimensions, aG as Direction, j0 as DirectionWithLiterals, g6 as DisplayField, g7 as DisplayFieldDisplayFieldTypeOptionsOneOf, bj as DisplayFieldType, jF as DisplayFieldTypeWithLiterals, de as DividerData, ag as DividerDataAlignment, iC as DividerDataAlignmentWithLiterals, hO as DocumentReady, eF as DocumentStyle, bT as DomainEvent, bU as DomainEventBodyOneOf, fk as DonationInput, fl as DonationInputOption, hP as DownloadSubmissionRequest, eN as Dropdown, eO as DropdownOption, cx as DynamicPriceOptions, fK as EmailInfo, bd as EmailInfoTag, jz as EmailInfoTagWithLiterals, ee as EmbedData, gS as Empty, bV as EntityCreatedEvent, bY as EntityDeletedEvent, bX as EntityUpdatedEvent, bC as ErrorType, jY as ErrorTypeWithLiterals, e6 as EventData, i7 as EventMetadata, bJ as ExtendedFields, cJ as Field, cK as FieldFieldTypeOptionsOneOf, gu as FieldGroup, gz as FieldOverride, gA as FieldOverridePropertyTypeOptionsOneOf, cB as FieldOverrides, a3 as FieldType, ip as FieldTypeWithLiterals, i1 as FieldViolation, i2 as FieldViolationErrorDataOneOf, cC as FieldsOverrides, fs as FieldsSettings, df as FileData, dg as FileSource, dh as FileSourceDataOneOf, ff as FileType, fg as FileUpload, aY as FirstDayOfWeek, ji as FirstDayOfWeekWithLiterals, fn as FixedPayment, cw as FixedPriceOptions, e2 as FontFamilyData, e0 as FontSizeData, aw as FontType, iS as FontTypeWithLiterals, c4 as Form, hI as FormDeletedSubmissionsCount, c5 as FormField, ck as FormFieldArrayType, ci as FormFieldBooleanType, fI as FormFieldContactInfo, fJ as FormFieldContactInfoAdditionalInfoOneOf, gk as FormFieldContactInfoAddressInfo, bq as FormFieldContactInfoContactField, jM as FormFieldContactInfoContactFieldWithLiterals, gl as FormFieldContactInfoCustomFieldInfo, gi as FormFieldContactInfoEmailInfo, bm as FormFieldContactInfoEmailInfoTag, jI as FormFieldContactInfoEmailInfoTagWithLiterals, gj as FormFieldContactInfoPhoneInfo, bn as FormFieldContactInfoPhoneInfoTag, jJ as FormFieldContactInfoPhoneInfoTagWithLiterals, gm as FormFieldContactInfoSubscriptionInfo, cf as FormFieldNumberType, cl as FormFieldObjectType, c6 as FormFieldStringType, c7 as FormFieldStringTypeFormatOptionsOneOf, fu as FormLayout, gc as FormOverride, gd as FormProperties, gb as FormRule, ib as FormSubmissionQuerySpec, i9 as FormSubmissionSearchSpec, bO as FormSubmissionStatusUpdatedEvent, hF as FormSubmissionsCount, b9 as Format, a4 as FormatEnumFormat, iq as FormatEnumFormatWithLiterals, jv as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, dv as GIF, du as GIFData, am as GIFType, iI as GIFTypeWithLiterals, dj as GalleryData, dq as GalleryOptions, dr as GalleryOptionsLayout, hq as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hJ as GetMediaUploadURLRequest, h8 as GetSubmissionByCheckoutIdRequest, h9 as GetSubmissionByCheckoutIdResponse, hL as GetSubmissionDownloadUrlRequest, h6 as GetSubmissionRequest, h7 as GetSubmissionResponse, c_ as Gradient, a8 as GradientType, iu as GradientTypeWithLiterals, fy as Group, dx as HTMLData, dy as HTMLDataDataOneOf, hQ as HeadersEntry, dw as HeadingData, d7 as Height, gx as HiddenOptions, b$ as IdentificationData, c0 as IdentificationDataIdOneOf, bB as IdentityType, jX as IdentityTypeWithLiterals, dl as Image, dz as ImageData, dB as ImageDataStyles, aW as ImageFit, jg as ImageFitWithLiterals, aU as ImagePosition, aS as ImagePositionPosition, jc as ImagePositionPositionWithLiterals, je as ImagePositionWithLiterals, aJ as ImageScalingScaling, j3 as ImageScalingScalingWithLiterals, e8 as ImageStyles, fF as InPersonOptions, aF as InitialExpandedItems, i$ as InitialExpandedItemsWithLiterals, cL as InputField, cM as InputFieldInputTypeOptionsOneOf, bc as InputType, jy as InputTypeWithLiterals, ch as IntegerType, gQ as IsFormSubmittableRequest, gR as IsFormSubmittableResponse, dn as Item, dp as ItemDataOneOf, fw as ItemLayout, fx as ItemLayoutItemOneOf, h3 as ItemMetadata, ds as ItemStyle, a$ as ItemType, jl as ItemTypeWithLiterals, bl as Kind, jH as KindWithLiterals, aD as Layout, ey as LayoutCellData, et as LayoutData, ew as LayoutDataBackground, eu as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, j6 as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j4 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iE as LayoutTypeWithLiterals, iZ as LayoutWithLiterals, go as LimitationRule, ae as LineStyle, iA as LineStyleWithLiterals, d9 as Link, d_ as LinkData, da as LinkDataOneOf, dC as LinkPreviewData, dD as LinkPreviewDataStyles, ac as LinkTarget, iy as LinkTargetWithLiterals, hm as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, en as ListValue, fD as Location, fE as LocationLocationInfoOneOf, dE as MapData, dF as MapSettings, ap as MapType, iL as MapTypeWithLiterals, fz as Margin, bR as MarketingSubscriptionDetails, dk as Media, eH as MediaItem, eI as MediaItemMediaOneOf, eJ as MediaSettings, ba as MeetingType, jw as MeetingTypeWithLiterals, d$ as MentionData, b_ as MessageEnvelope, eE as Metadata, bE as Mode, j_ as ModeWithLiterals, fo as MultilineAddress, cA as MultilineAddressValidation, gn as NestedForm, cE as NestedFormFieldOverrides, cI as NestedFormOverrides, cW as Node, cX as NodeDataOneOf, cY as NodeStyle, a6 as NodeType, is as NodeTypeWithLiterals, aI as NullValue, j2 as NullValueWithLiterals, aZ as NumberComponentType, jj as NumberComponentTypeWithLiterals, eX as NumberCorrectAnswersList, cg as NumberErrorMessages, e_ as NumberInput, aX as NumberOfColumns, jh as NumberOfColumnsWithLiterals, eZ as NumberQuizFieldSettings, eY as NumberType, g4 as ObjectArray, b7 as ObjectArrayComponentType, g5 as ObjectArrayComponentTypeOptionsOneOf, jt as ObjectArrayComponentTypeWithLiterals, cD as ObjectArrayType, co as ObjectErrorMessages, f4 as ObjectType, cm as ObjectTypePropertiesType, cn as ObjectTypePropertiesTypePropertiesTypeOneOf, ef as Oembed, by as Operator, jU as OperatorWithLiterals, Y as OptInLevel, ih as OptInLevelWithLiterals, fb as Option, dR as OptionDesign, dM as OptionLayout, gE as OrCondition, bK as OrderDetails, ep as OrderedListData, aj as Orientation, iF as OrientationWithLiterals, aL as Origin, j5 as OriginWithLiterals, bk as OverrideEntityType, bx as OverrideEntityTypeEnumOverrideEntityType, jT as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jG as OverrideEntityTypeWithLiterals, di as PDFSettings, g9 as PageNavigationOptions, dG as ParagraphData, gN as PassFailMessages, eW as Password, f_ as Payment, b4 as PaymentComponentType, f$ as PaymentComponentTypeOptionsOneOf, jq as PaymentComponentTypeWithLiterals, fm as PaymentInput, cu as PaymentType, dI as Permissions, cR as PhoneConstraints, fL as PhoneInfo, be as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, eQ as PhoneInput, fH as PhoneOptions, aA as Placement, iW as PlacementWithLiterals, ed as PlaybackOptions, d3 as PluginContainerData, aa as PluginContainerDataAlignment, iw as PluginContainerDataAlignmentWithLiterals, d4 as PluginContainerDataWidth, d5 as PluginContainerDataWidthDataOneOf, dS as Poll, dH as PollData, dT as PollDataLayout, dQ as PollDesign, dO as PollDesignBackground, dP as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iQ as PollDesignBackgroundTypeWithLiterals, dL as PollLayout, at as PollLayoutDirection, iP as PollLayoutDirectionWithLiterals, as as PollLayoutType, iO as PollLayoutTypeWithLiterals, dJ as PollOption, ax as Position, iT as PositionWithLiterals, ge as PostSubmissionTriggers, cs as PredefinedValidation, ct as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, io as PriceTypeWithLiterals, eb as PricingData, cy as Product, fi as ProductCheckboxGroup, fj as ProductCheckboxGroupOption, cz as ProductPriceOptionsOneOf, a1 as ProductType, im as ProductTypeWithLiterals, f5 as PropertiesType, b0 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, f6 as PropertiesTypePropertiesTypeOptionsOneOf, bL as PublicTags, cv as QuantityLimit, hr as QuerySubmissionRequest, hC as QuerySubmissionsByNamespaceForExportRequest, hD as QuerySubmissionsByNamespaceForExportResponse, hA as QuerySubmissionsByNamespaceRequest, hB as QuerySubmissionsByNamespaceResponse, f9 as QuizFieldSettings, gK as QuizSettings, gL as QuizSettingsPassingCriteriaOneOf, gM as QuizSettingsResultsDisplayOptionsOneOf, eK as RadioGroup, eL as RadioGroupOption, e$ as RatingInput, gt as RedirectOptions, db as Rel, hi as RemoveSubmissionFromTrashBinRequest, hj as RemoveSubmissionFromTrashBinResponse, bP as RemovedSubmissionFromTrash, ft as Repeater, bs as RequiredIndicator, bt as RequiredIndicatorPlacement, jP as RequiredIndicatorPlacementWithLiterals, gp as RequiredIndicatorProperties, jO as RequiredIndicatorWithLiterals, gw as RequiredOptions, az as Resizing, iV as ResizingWithLiterals, aP as ResponsivenessBehaviour, j9 as ResponsivenessBehaviourWithLiterals, bW as RestoreInfo, hh as RestoreSubmissionFromTrashBinRequest, bz as ResultsDisplay, jV as ResultsDisplayWithLiterals, e9 as RibbonStyles, cV as RichContent, g8 as RichContentOptions, gv as Rule, gG as RuleFormOverride, gH as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jb as ScalingWithLiterals, g0 as Scheduling, b8 as SchedulingComponentType, g1 as SchedulingComponentTypeOptionsOneOf, ju as SchedulingComponentTypeWithLiterals, hx as SearchDetails, hy as SearchSubmissionsByNamespaceForExportRequest, hz as SearchSubmissionsByNamespaceForExportResponse, hu as SearchSubmissionsByNamespaceRequest, fA as Section, eV as ServiceOption, fe as ServicesCheckboxGroup, eU as ServicesDropdown, dK as Settings, ez as ShapeData, eA as ShapeDataStyles, fh as Signature, bD as SortOrder, jZ as SortOrderWithLiterals, ht as Sorting, an as Source, iJ as SourceWithLiterals, br as SpamFilterProtectionLevel, jN as SpamFilterProtectionLevelWithLiterals, d6 as Spoiler, e1 as SpoilerData, bb as StaffStrategySelection, jx as StaffStrategySelectionWithLiterals, bF as Status, j$ as StatusWithLiterals, ga as Step, c$ as Stop, a5 as StringComponentType, ir as StringComponentTypeWithLiterals, cN as StringCorrectAnswersList, c8 as StringErrorMessages, cT as StringQuizFieldSettings, cO as StringType, c9 as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ij as StringTypeFormatEnumFormatWithLiterals, cP as StringTypeFormatOptionsOneOf, cd as StringTypePhoneConstraints, ce as StringTypeValidationMessages, d8 as Styles, dA as StylesBorder, ao as StylesPosition, iK as StylesPositionWithLiterals, bQ as SubmissionContactMapped, bS as SubmissionContactMappingSkipped, hM as SubmissionDocument, hN as SubmissionDocumentDocumentOneOf, bG as SubmissionErrorType, k0 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, ig as SubmissionStatusWithLiterals, i4 as SubmissionValidationError, i5 as SubmissionValidationErrorErrorMessageOneOf, i3 as SubmissionValidationErrors, gX as SubmissionValidationErrorsDetails, ia as SubmissionsQueryResult, gU as SubmitContactResponse, gq as SubmitSettings, gr as SubmitSettingsSubmitSuccessActionOptionsOneOf, bv as SubmitSuccessAction, jR as SubmitSuccessActionWithLiterals, bH as Submitter, bI as SubmitterSubmitterOneOf, bh as SubscriptionChannel, jD as SubscriptionChannelWithLiterals, fO as SubscriptionInfo, bp as SubscriptionInfoOptInLevel, jL as SubscriptionInfoOptInLevelWithLiterals, ej as TableCellData, eh as TableData, bf as Tag, bM as TagList, jB as TagWithLiterals, gI as Tags, fd as TagsOption, gJ as TagsTagList, bu as Target, jQ as TargetWithLiterals, ad as TextAlignment, iz as TextAlignmentWithLiterals, dV as TextData, cU as TextInput, eG as TextNodeStyle, dd as TextStyle, gs as ThankYouMessageOptions, dt as Thumbnails, al as ThumbnailsAlignment, iH as ThumbnailsAlignmentWithLiterals, eS as TimeInput, b6 as Type, js as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, ha as UpdateSubmissionRequest, hb as UpdateSubmissionResponse, b3 as UploadFileFormat, jp as UploadFileFormatWithLiterals, gf as UpsertContact, gT as UpsertContactFromSubmissionRequest, gg as V4FormFieldContactInfo, gh as V4FormFieldContactInfoAdditionalInfoOneOf, i0 as ValidateFormSubmissionRequest, cF as Validation, gY as ValidationError, a0 as ValidationFormat, il as ValidationFormatWithLiterals, cS as ValidationMessages, cG as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, j8 as VerticalAlignmentAlignmentWithLiterals, j1 as VerticalAlignmentWithLiterals, dm as Video, fG as VideoConferenceOptions, ec as VideoData, ah as ViewMode, iD as ViewModeWithLiterals, aq as ViewRole, iM as ViewRoleWithLiterals, ar as VoteRole, iN as VoteRoleWithLiterals, Z as WebhookIdentityType, ii as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iv as WidthTypeWithLiterals, iB as WidthWithLiterals, fY as WixFile, b2 as WixFileComponentType, fZ as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fV as _Array, fW as _ArrayComponentTypeOptionsOneOf, fT as _Boolean, fU as _BooleanComponentTypeOptionsOneOf, fR as _Number, fS as _NumberComponentTypeOptionsOneOf, fX as _Object, fP as _String, fQ as _StringComponentTypeOptionsOneOf, ie as utils } from './forms-v4-submission-submissions.universal-DEPmv7zz.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 CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-C9YTfunB.js';
3
+ export { c3 as AccountInfo, ib as AccountInfoMetadata, b$ as ActionEvent, g5 as Address, g6 as AddressComponentTypeOptionsOneOf, fP as AddressInfo, bq as AddressInfoTag, jP as AddressInfoTagWithLiterals, fs as AddressLine2, aX as Alignment, jk as AlignmentWithLiterals, gB as AllowedValuesOptions, d_ as AnchorData, gG as AndCondition, e5 as AppEmbedData, e6 as AppEmbedDataAppDataOneOf, aE as AppType, j1 as AppTypeWithLiterals, h7 as ApplicationError, fE as Appointment, bP as AppointmentDetails, fF as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, ct as ArrayErrorMessages, fa as ArrayItems, fb as ArrayItemsItemTypeOptionsOneOf, f6 as ArrayType, cr as ArrayTypeArrayItems, cs as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iX as AspectRatioWithLiterals, eq as AudioData, cd as Availability, ez as Backdrop, aN as BackdropType, ja as BackdropTypeWithLiterals, d4 as Background, dP as BackgroundGradient, eF as BackgroundImage, a7 as BackgroundType, iw as BackgroundTypeWithLiterals, ex as Banner, i9 as BaseEventMetadata, et as BlockquoteData, e7 as BookingData, b0 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, cl as BooleanErrorMessages, f3 as BooleanType, d2 as Border, en as BorderColors, eo as BorderWidths, fy as BreakPoint, h8 as BulkActionMetadata, h3 as BulkCreateSubmissionBySubmitterData, h2 as BulkCreateSubmissionBySubmitterRequest, h4 as BulkCreateSubmissionBySubmitterResponse, hi as BulkDeleteSubmissionRequest, hj as BulkDeleteSubmissionResult, hN as BulkMarkSubmissionsAsSeenRequest, hn as BulkRemoveSubmissionFromTrashBinRequest, ho as BulkRemoveSubmissionFromTrashBinResult, h5 as BulkSubmissionResult, ih as BulkUpdateFormSubmissionTagsByFilterOptions, i1 as BulkUpdateFormSubmissionTagsByFilterRequest, i2 as BulkUpdateFormSubmissionTagsByFilterResponse, ig as BulkUpdateFormSubmissionTagsOptions, h_ as BulkUpdateFormSubmissionTagsRequest, h$ as BulkUpdateFormSubmissionTagsResponse, i0 as BulkUpdateFormSubmissionTagsResult, es as BulletedListData, c$ as ButtonData, ab as ButtonDataType, iA as ButtonDataTypeWithLiterals, e9 as ButtonStyles, eu as CaptionData, eD as CardData, eE as CardDataBackground, aT as CardDataBackgroundType, jg as CardDataBackgroundTypeWithLiterals, ec as CardStyles, aC as CardStylesAlignment, i$ as CardStylesAlignmentWithLiterals, aB as CardStylesType, i_ as CardStylesTypeWithLiterals, em as CellStyle, by as ChangeableProperty, jX as ChangeablePropertyWithLiterals, f4 as Checkbox, fd as CheckboxGroup, gS as Checkout, de as CodeBlockData, ei as CollapsibleListData, d$ as ColorData, d3 as Colors, k7 as CommonQueryWithEntityContext, k6 as CommonSearchWithEntityContext, b7 as ComponentType, jw as ComponentTypeWithLiterals, ff as ComponentsTags, gI as Condition, gE as ConditionNode, gF as ConditionNodeNodeOneOf, hf as ConfirmSubmissionRequest, bi as ConfirmationLevel, jH as ConfirmationLevelWithLiterals, bC as ContactAutofill, j$ as ContactAutofillWithLiterals, bk as ContactField, jJ as ContactFieldWithLiterals, f5 as CorrectAnswersList, hK as CountDeletedSubmissionsRequest, hH as CountSubmissionsByFilterRequest, hJ as CountSubmissionsRequest, c4 as CreateCheckoutFromSubmissionRequest, c5 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gR as CreateCheckoutFromSubmissionResponse, h0 as CreateSubmissionBySubmitterRequest, h1 as CreateSubmissionBySubmitterResponse, gY as CreateSubmissionRequest, gZ as CreateSubmissionResponse, ak as Crop, iJ as CropWithLiterals, hq as CursorPaging, hr as CursorPagingMetadata, hv as CursorQueryPagingMethodOneOf, hy as CursorSearch, hz as CursorSearchPagingMethodOneOf, hs as Cursors, fQ as CustomFieldInfo, eP as CustomOption, cJ as DataExtensionsDetails, eU as DateInput, eW as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cS as DateTimeConstraints, eS as DateTimeInput, $ as DayOfWeek, io as DayOfWeekWithLiterals, dY as Decoration, dZ as DecorationDataOneOf, av as DecorationType, iU as DecorationTypeWithLiterals, ft as DefaultCountryConfig, fu as DefaultCountryConfigOptionsOneOf, hg as DeleteSubmissionRequest, hh as DeleteSubmissionResponse, dW as Design, aQ as DesignTarget, jd as DesignTargetWithLiterals, ek as Dimensions, aG as Direction, j3 as DirectionWithLiterals, g9 as DisplayField, ga as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jK as DisplayFieldTypeWithLiterals, dg as DividerData, ag as DividerDataAlignment, iF as DividerDataAlignmentWithLiterals, hR as DocumentReady, eI as DocumentStyle, bV as DomainEvent, bW as DomainEventBodyOneOf, fn as DonationInput, fo as DonationInputOption, hS as DownloadSubmissionRequest, eQ as Dropdown, eR as DropdownOption, cz as DynamicPriceOptions, fN as EmailInfo, bf as EmailInfoTag, jE as EmailInfoTagWithLiterals, eg as EmbedData, gV as Empty, bX as EntityCreatedEvent, b_ as EntityDeletedEvent, bZ as EntityUpdatedEvent, bE as ErrorType, k1 as ErrorTypeWithLiterals, e8 as EventData, ia as EventMetadata, bL as ExtendedFields, cL as Field, cM as FieldFieldTypeOptionsOneOf, gx as FieldGroup, gC as FieldOverride, gD as FieldOverridePropertyTypeOptionsOneOf, cD as FieldOverrides, a3 as FieldType, is as FieldTypeWithLiterals, i4 as FieldViolation, i5 as FieldViolationErrorDataOneOf, cE as FieldsOverrides, fv as FieldsSettings, dh as FileData, di as FileSource, dj as FileSourceDataOneOf, fi as FileType, fj as FileUpload, a_ as FirstDayOfWeek, jn as FirstDayOfWeekWithLiterals, fq as FixedPayment, cy as FixedPriceOptions, e4 as FontFamilyData, e2 as FontSizeData, aw as FontType, iV as FontTypeWithLiterals, c6 as Form, hL as FormDeletedSubmissionsCount, c7 as FormField, cm as FormFieldArrayType, ck as FormFieldBooleanType, fL as FormFieldContactInfo, fM as FormFieldContactInfoAdditionalInfoOneOf, gn as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jR as FormFieldContactInfoContactFieldWithLiterals, go as FormFieldContactInfoCustomFieldInfo, gl as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jN as FormFieldContactInfoEmailInfoTagWithLiterals, gm as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jO as FormFieldContactInfoPhoneInfoTagWithLiterals, gp as FormFieldContactInfoSubscriptionInfo, ch as FormFieldNumberType, cn as FormFieldObjectType, c8 as FormFieldStringType, c9 as FormFieldStringTypeFormatOptionsOneOf, fx as FormLayout, gf as FormOverride, gg as FormProperties, ge as FormRule, ie as FormSubmissionQuerySpec, ic as FormSubmissionSearchSpec, bQ as FormSubmissionStatusUpdatedEvent, hI as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, it as FormatEnumFormatWithLiterals, jA as FormatWithLiterals, hY as FormattedFormSubmission, hV as FormattedSubmission, dx as GIF, dw as GIFData, am as GIFType, iL as GIFTypeWithLiterals, dl as GalleryData, ds as GalleryOptions, dt as GalleryOptionsLayout, ht as GetDeletedSubmissionRequest, hU as GetFormattedSubmissionRequest, hM as GetMediaUploadURLRequest, hb as GetSubmissionByCheckoutIdRequest, hc as GetSubmissionByCheckoutIdResponse, hO as GetSubmissionDownloadUrlRequest, h9 as GetSubmissionRequest, ha as GetSubmissionResponse, d0 as Gradient, a8 as GradientType, ix as GradientTypeWithLiterals, fB as Group, dz as HTMLData, dA as HTMLDataDataOneOf, hT as HeadersEntry, dy as HeadingData, d9 as Height, gA as HiddenOptions, c1 as IdentificationData, c2 as IdentificationDataIdOneOf, bD as IdentityType, k0 as IdentityTypeWithLiterals, dn as Image, dB as ImageData, dD as ImageDataStyles, aY as ImageFit, jl as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jf as ImagePositionPositionWithLiterals, jj as ImagePositionWithLiterals, aJ as ImageScalingScaling, j6 as ImageScalingScalingWithLiterals, ea as ImageStyles, fI as InPersonOptions, aV as Indentation, ji as IndentationWithLiterals, aF as InitialExpandedItems, j2 as InitialExpandedItemsWithLiterals, cN as InputField, cO as InputFieldInputTypeOptionsOneOf, be as InputType, jD as InputTypeWithLiterals, cj as IntegerType, gT as IsFormSubmittableRequest, gU as IsFormSubmittableResponse, dq as Item, dr as ItemDataOneOf, fz as ItemLayout, fA as ItemLayoutItemOneOf, h6 as ItemMetadata, du as ItemStyle, b1 as ItemType, jq as ItemTypeWithLiterals, bn as Kind, jM as KindWithLiterals, aD as Layout, eA as LayoutCellData, ev as LayoutData, ey as LayoutDataBackground, ew as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, j9 as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j7 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iH as LayoutTypeWithLiterals, j0 as LayoutWithLiterals, gr as LimitationRule, ae as LineStyle, iD as LineStyleWithLiterals, db as Link, e0 as LinkData, dc as LinkDataOneOf, dE as LinkPreviewData, dF as LinkPreviewDataStyles, ac as LinkTarget, iB as LinkTargetWithLiterals, hp as ListDeletedSubmissionsRequest, hW as ListFormattedSubmissionsRequest, hX as ListFormattedSubmissionsResponse, aU as ListStyle, jh as ListStyleWithLiterals, ep as ListValue, fG as Location, fH as LocationLocationInfoOneOf, dG as MapData, dH as MapSettings, ap as MapType, iO as MapTypeWithLiterals, fC as Margin, bT as MarketingSubscriptionDetails, dm as Media, eK as MediaItem, eL as MediaItemMediaOneOf, eM as MediaSettings, bc as MeetingType, jB as MeetingTypeWithLiterals, e1 as MentionData, c0 as MessageEnvelope, eH as Metadata, bG as Mode, k3 as ModeWithLiterals, fr as MultilineAddress, cC as MultilineAddressValidation, gq as NestedForm, cG as NestedFormFieldOverrides, cK as NestedFormOverrides, cY as Node, cZ as NodeDataOneOf, c_ as NodeStyle, a6 as NodeType, iv as NodeTypeWithLiterals, aI as NullValue, j5 as NullValueWithLiterals, a$ as NumberComponentType, jo as NumberComponentTypeWithLiterals, e_ as NumberCorrectAnswersList, ci as NumberErrorMessages, f1 as NumberInput, aZ as NumberOfColumns, jm as NumberOfColumnsWithLiterals, f0 as NumberQuizFieldSettings, e$ as NumberType, g7 as ObjectArray, b9 as ObjectArrayComponentType, g8 as ObjectArrayComponentTypeOptionsOneOf, jy as ObjectArrayComponentTypeWithLiterals, cF as ObjectArrayType, cq as ObjectErrorMessages, f7 as ObjectType, co as ObjectTypePropertiesType, cp as ObjectTypePropertiesTypePropertiesTypeOneOf, eh as Oembed, bA as Operator, jZ as OperatorWithLiterals, Y as OptInLevel, ik as OptInLevelWithLiterals, fe as Option, dT as OptionDesign, dO as OptionLayout, gH as OrCondition, bM as OrderDetails, er as OrderedListData, aj as Orientation, iI as OrientationWithLiterals, aL as Origin, j8 as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, jY as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jL as OverrideEntityTypeWithLiterals, dk as PDFSettings, gc as PageNavigationOptions, dI as ParagraphData, gQ as PassFailMessages, eZ as Password, g1 as Payment, b6 as PaymentComponentType, g2 as PaymentComponentTypeOptionsOneOf, jv as PaymentComponentTypeWithLiterals, fp as PaymentInput, cw as PaymentType, dK as Permissions, cT as PhoneConstraints, fO as PhoneInfo, bg as PhoneInfoTag, jF as PhoneInfoTagWithLiterals, eT as PhoneInput, fK as PhoneOptions, aA as Placement, iZ as PlacementWithLiterals, ef as PlaybackOptions, d5 as PluginContainerData, aa as PluginContainerDataAlignment, iz as PluginContainerDataAlignmentWithLiterals, d6 as PluginContainerDataWidth, d7 as PluginContainerDataWidthDataOneOf, dU as Poll, dJ as PollData, dV as PollDataLayout, dS as PollDesign, dQ as PollDesignBackground, dR as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iT as PollDesignBackgroundTypeWithLiterals, dN as PollLayout, at as PollLayoutDirection, iS as PollLayoutDirectionWithLiterals, as as PollLayoutType, iR as PollLayoutTypeWithLiterals, dL as PollOption, ax as Position, iW as PositionWithLiterals, gh as PostSubmissionTriggers, cu as PredefinedValidation, cv as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, ir as PriceTypeWithLiterals, ed as PricingData, cA as Product, fl as ProductCheckboxGroup, fm as ProductCheckboxGroupOption, cB as ProductPriceOptionsOneOf, a1 as ProductType, iq as ProductTypeWithLiterals, f8 as PropertiesType, b2 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, f9 as PropertiesTypePropertiesTypeOptionsOneOf, bN as PublicTags, cx as QuantityLimit, hu as QuerySubmissionRequest, hF as QuerySubmissionsByNamespaceForExportRequest, hG as QuerySubmissionsByNamespaceForExportResponse, hD as QuerySubmissionsByNamespaceRequest, hE as QuerySubmissionsByNamespaceResponse, fc as QuizFieldSettings, gN as QuizSettings, gO as QuizSettingsPassingCriteriaOneOf, gP as QuizSettingsResultsDisplayOptionsOneOf, eN as RadioGroup, eO as RadioGroupOption, f2 as RatingInput, gw as RedirectOptions, dd as Rel, hl as RemoveSubmissionFromTrashBinRequest, hm as RemoveSubmissionFromTrashBinResponse, bR as RemovedSubmissionFromTrash, fw as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jU as RequiredIndicatorPlacementWithLiterals, gs as RequiredIndicatorProperties, jT as RequiredIndicatorWithLiterals, gz as RequiredOptions, az as Resizing, iY as ResizingWithLiterals, aP as ResponsivenessBehaviour, jc as ResponsivenessBehaviourWithLiterals, bY as RestoreInfo, hk as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, j_ as ResultsDisplayWithLiterals, eb as RibbonStyles, cX as RichContent, gb as RichContentOptions, gy as Rule, gJ as RuleFormOverride, gK as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, je as ScalingWithLiterals, g3 as Scheduling, ba as SchedulingComponentType, g4 as SchedulingComponentTypeOptionsOneOf, jz as SchedulingComponentTypeWithLiterals, hA as SearchDetails, hB as SearchSubmissionsByNamespaceForExportRequest, hC as SearchSubmissionsByNamespaceForExportResponse, hx as SearchSubmissionsByNamespaceRequest, fD as Section, eY as ServiceOption, fh as ServicesCheckboxGroup, eX as ServicesDropdown, dM as Settings, eB as ShapeData, eC as ShapeDataStyles, fk as Signature, bF as SortOrder, k2 as SortOrderWithLiterals, hw as Sorting, an as Source, iM as SourceWithLiterals, bt as SpamFilterProtectionLevel, jS as SpamFilterProtectionLevelWithLiterals, d8 as Spoiler, e3 as SpoilerData, bd as StaffStrategySelection, jC as StaffStrategySelectionWithLiterals, bH as Status, k4 as StatusWithLiterals, gd as Step, d1 as Stop, a5 as StringComponentType, iu as StringComponentTypeWithLiterals, cP as StringCorrectAnswersList, ca as StringErrorMessages, cV as StringQuizFieldSettings, cQ as StringType, cb as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, cR as StringTypeFormatOptionsOneOf, cf as StringTypePhoneConstraints, cg as StringTypeValidationMessages, da as Styles, dC as StylesBorder, ao as StylesPosition, iN as StylesPositionWithLiterals, bS as SubmissionContactMapped, bU as SubmissionContactMappingSkipped, hP as SubmissionDocument, hQ as SubmissionDocumentDocumentOneOf, bI as SubmissionErrorType, k5 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, ij as SubmissionStatusWithLiterals, i7 as SubmissionValidationError, i8 as SubmissionValidationErrorErrorMessageOneOf, i6 as SubmissionValidationErrors, g_ as SubmissionValidationErrorsDetails, id as SubmissionsQueryResult, gX as SubmitContactResponse, gt as SubmitSettings, gu as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jW as SubmitSuccessActionWithLiterals, bJ as Submitter, bK as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jI as SubscriptionChannelWithLiterals, fR as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jQ as SubscriptionInfoOptInLevelWithLiterals, el as TableCellData, ej as TableData, bh as Tag, bO as TagList, jG as TagWithLiterals, gL as Tags, fg as TagsOption, gM as TagsTagList, bw as Target, jV as TargetWithLiterals, ad as TextAlignment, iC as TextAlignmentWithLiterals, dX as TextData, cW as TextInput, eJ as TextNodeStyle, df as TextStyle, gv as ThankYouMessageOptions, dv as Thumbnails, al as ThumbnailsAlignment, iK as ThumbnailsAlignmentWithLiterals, eV as TimeInput, eG as TocData, b8 as Type, jx as TypeWithLiterals, hZ as UpdateExtendedFieldsRequest, hd as UpdateSubmissionRequest, he as UpdateSubmissionResponse, b5 as UploadFileFormat, ju as UploadFileFormatWithLiterals, gi as UpsertContact, gW as UpsertContactFromSubmissionRequest, gj as V4FormFieldContactInfo, gk as V4FormFieldContactInfoAdditionalInfoOneOf, i3 as ValidateFormSubmissionRequest, cH as Validation, g$ as ValidationError, a0 as ValidationFormat, ip as ValidationFormatWithLiterals, cU as ValidationMessages, cI as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jb as VerticalAlignmentAlignmentWithLiterals, j4 as VerticalAlignmentWithLiterals, dp as Video, fJ as VideoConferenceOptions, ee as VideoData, ah as ViewMode, iG as ViewModeWithLiterals, aq as ViewRole, iP as ViewRoleWithLiterals, ar as VoteRole, iQ as VoteRoleWithLiterals, Z as WebhookIdentityType, il as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iy as WidthTypeWithLiterals, iE as WidthWithLiterals, f$ as WixFile, b4 as WixFileComponentType, g0 as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, fY as _Array, fZ as _ArrayComponentTypeOptionsOneOf, fW as _Boolean, fX as _BooleanComponentTypeOptionsOneOf, fU as _Number, fV as _NumberComponentTypeOptionsOneOf, f_ as _Object, fS as _String, fT as _StringComponentTypeOptionsOneOf, ii as utils } from './forms-v4-submission-submissions.universal-C9YTfunB.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -61,6 +61,7 @@ __export(index_exports, {
61
61
  ImagePosition: () => ImagePosition,
62
62
  ImagePositionPosition: () => ImagePositionPosition,
63
63
  ImageScalingScaling: () => ImageScalingScaling,
64
+ Indentation: () => Indentation,
64
65
  InitialExpandedItems: () => InitialExpandedItems,
65
66
  InputType: () => InputType,
66
67
  ItemType: () => ItemType,
@@ -71,6 +72,7 @@ __export(index_exports, {
71
72
  LayoutType: () => LayoutType,
72
73
  LineStyle: () => LineStyle,
73
74
  LinkTarget: () => LinkTarget,
75
+ ListStyle: () => ListStyle,
74
76
  MapType: () => MapType,
75
77
  MeetingType: () => MeetingType,
76
78
  Mode: () => Mode,
@@ -1170,6 +1172,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1170
1172
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
1171
1173
  NodeType2["SHAPE"] = "SHAPE";
1172
1174
  NodeType2["CARD"] = "CARD";
1175
+ NodeType2["TOC"] = "TOC";
1173
1176
  return NodeType2;
1174
1177
  })(NodeType || {});
1175
1178
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1280,6 +1283,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
1280
1283
  Source2["HTML"] = "HTML";
1281
1284
  Source2["ADSENSE"] = "ADSENSE";
1282
1285
  Source2["AI"] = "AI";
1286
+ Source2["AI_WIDGET"] = "AI_WIDGET";
1283
1287
  return Source2;
1284
1288
  })(Source || {});
1285
1289
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -1481,6 +1485,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
1481
1485
  CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
1482
1486
  return CardDataBackgroundType2;
1483
1487
  })(CardDataBackgroundType || {});
1488
+ var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
1489
+ ListStyle2["PLAIN"] = "PLAIN";
1490
+ ListStyle2["NUMBERED"] = "NUMBERED";
1491
+ ListStyle2["LETTERS"] = "LETTERS";
1492
+ ListStyle2["ROMAN"] = "ROMAN";
1493
+ ListStyle2["BULLETED"] = "BULLETED";
1494
+ ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
1495
+ ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
1496
+ return ListStyle2;
1497
+ })(ListStyle || {});
1498
+ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1499
+ Indentation2["NESTED"] = "NESTED";
1500
+ Indentation2["FLAT"] = "FLAT";
1501
+ return Indentation2;
1502
+ })(Indentation || {});
1484
1503
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1485
1504
  ImagePosition2["ABOVE"] = "ABOVE";
1486
1505
  ImagePosition2["BELOW"] = "BELOW";
@@ -3120,6 +3139,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
3120
3139
  ImagePosition,
3121
3140
  ImagePositionPosition,
3122
3141
  ImageScalingScaling,
3142
+ Indentation,
3123
3143
  InitialExpandedItems,
3124
3144
  InputType,
3125
3145
  ItemType,
@@ -3130,6 +3150,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
3130
3150
  LayoutType,
3131
3151
  LineStyle,
3132
3152
  LinkTarget,
3153
+ ListStyle,
3133
3154
  MapType,
3134
3155
  MeetingType,
3135
3156
  Mode,