@wix/auto_sdk_forms_submissions 1.0.90 → 1.0.92

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-BVlQbylv.d.ts → forms-v4-submission-submissions.universal-Bxnj1K2o.d.ts} +45 -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 +41 -7
  9. package/build/cjs/meta.js +13 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-BVlQbylv.d.mts → forms-v4-submission-submissions.universal-Bxnj1K2o.d.mts} +45 -7
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +18 -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 +18 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +41 -7
  19. package/build/es/meta.mjs +13 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-DYDfWYJ5.d.ts → forms-v4-submission-submissions.universal-D-Uxphls.d.ts} +45 -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 +41 -7
  29. package/build/internal/cjs/meta.js +13 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-DYDfWYJ5.d.mts → forms-v4-submission-submissions.universal-D-Uxphls.d.mts} +45 -7
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +18 -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 +18 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +41 -7
  39. package/build/internal/es/meta.mjs +13 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +4 -4
@@ -1,4 +1,5 @@
1
- import { SearchSpec, QuerySpec, Search, Query, NonNullablePaths } from '@wix/sdk-types';
1
+ import * as _wix_sdk_types from '@wix/sdk-types';
2
+ import { SearchSpec, QuerySpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
2
3
 
3
4
  /** Form submission that was created or retrieved. */
4
5
  interface FormSubmission {
@@ -1436,6 +1437,8 @@ interface Node extends NodeDataOneOf {
1436
1437
  layoutData?: LayoutData;
1437
1438
  /** Data for a cell node. */
1438
1439
  layoutCellData?: LayoutCellData;
1440
+ /** Data for a shape node. */
1441
+ shapeData?: ShapeData;
1439
1442
  /** 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. */
1440
1443
  type?: NodeTypeWithLiterals;
1441
1444
  /** Node ID. */
@@ -1503,6 +1506,8 @@ interface NodeDataOneOf {
1503
1506
  layoutData?: LayoutData;
1504
1507
  /** Data for a cell node. */
1505
1508
  layoutCellData?: LayoutCellData;
1509
+ /** Data for a shape node. */
1510
+ shapeData?: ShapeData;
1506
1511
  }
1507
1512
  declare enum NodeType {
1508
1513
  PARAGRAPH = "PARAGRAPH",
@@ -1538,10 +1543,11 @@ declare enum NodeType {
1538
1543
  AUDIO = "AUDIO",
1539
1544
  CAPTION = "CAPTION",
1540
1545
  LAYOUT = "LAYOUT",
1541
- LAYOUT_CELL = "LAYOUT_CELL"
1546
+ LAYOUT_CELL = "LAYOUT_CELL",
1547
+ SHAPE = "SHAPE"
1542
1548
  }
1543
1549
  /** @enumType */
1544
- 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';
1550
+ 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';
1545
1551
  interface NodeStyle {
1546
1552
  /** The top padding value in pixels. */
1547
1553
  paddingTop?: string | null;
@@ -3208,6 +3214,23 @@ interface LayoutCellData {
3208
3214
  /** Size of the cell in 12 columns grid. */
3209
3215
  colSpan?: number | null;
3210
3216
  }
3217
+ interface ShapeData {
3218
+ /** Styling for the shape's container. */
3219
+ containerData?: PluginContainerData;
3220
+ /** Shape file details. */
3221
+ shape?: Media;
3222
+ /** Styling for the shape. */
3223
+ styles?: ShapeDataStyles;
3224
+ }
3225
+ interface ShapeDataStyles {
3226
+ /**
3227
+ * Shape fill color as a hexadecimal value.
3228
+ * @format COLOR_HEX
3229
+ */
3230
+ color?: string | null;
3231
+ /** Map of original color keys to their new color values. */
3232
+ colors?: Record<string, string>;
3233
+ }
3211
3234
  interface Metadata {
3212
3235
  /** Schema version. */
3213
3236
  version?: number;
@@ -3700,7 +3723,7 @@ interface Password {
3700
3723
  /** Configuration for the media content. */
3701
3724
  mediaSettings?: MediaSettings;
3702
3725
  }
3703
- interface CorrectAnswersList {
3726
+ interface NumberCorrectAnswersList {
3704
3727
  /** @maxSize 50 */
3705
3728
  correctAnswers?: number[];
3706
3729
  }
@@ -3727,11 +3750,11 @@ declare enum NumberComponentType {
3727
3750
  }
3728
3751
  /** @enumType */
3729
3752
  type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
3730
- interface QuizFieldSettings {
3753
+ interface NumberQuizFieldSettings {
3731
3754
  /** Points awarded for correctly answering this quiz question. */
3732
3755
  score?: number;
3733
3756
  /** Correct answers for this quiz question. */
3734
- correctAnswersList?: CorrectAnswersList;
3757
+ correctAnswersList?: NumberCorrectAnswersList;
3735
3758
  }
3736
3759
  interface NumberInput {
3737
3760
  /**
@@ -3809,6 +3832,10 @@ interface Checkbox {
3809
3832
  */
3810
3833
  checked?: boolean;
3811
3834
  }
3835
+ interface CorrectAnswersList {
3836
+ /** @maxSize 50 */
3837
+ correctAnswers?: any[];
3838
+ }
3812
3839
  interface ArrayType {
3813
3840
  /**
3814
3841
  * Maximum number of elements allowed in the array.
@@ -3914,6 +3941,12 @@ declare enum ArrayComponentType {
3914
3941
  }
3915
3942
  /** @enumType */
3916
3943
  type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
3944
+ interface QuizFieldSettings {
3945
+ /** Points awarded for correctly answering this quiz question. */
3946
+ score?: number;
3947
+ /** Correct answers for this quiz question. */
3948
+ correctAnswersList?: CorrectAnswersList;
3949
+ }
3917
3950
  interface CheckboxGroup {
3918
3951
  /**
3919
3952
  * Field label.
@@ -4826,6 +4859,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
4826
4859
  * @readonly
4827
4860
  */
4828
4861
  componentType?: ArrayComponentTypeWithLiterals;
4862
+ /** Quiz-specific settings for the field. */
4863
+ quizFieldSettings?: QuizFieldSettings;
4829
4864
  }
4830
4865
  /** @oneof */
4831
4866
  interface _ArrayComponentTypeOptionsOneOf {
@@ -7512,6 +7547,9 @@ type FormSubmissionQuery = {
7512
7547
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
7513
7548
  }[];
7514
7549
  };
7550
+ declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
7551
+ declare const Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
7552
+ declare const Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
7515
7553
  /**
7516
7554
  * > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
7517
7555
  * <br>
@@ -7725,4 +7763,4 @@ interface ValidateFormSubmissionOptions {
7725
7763
  fieldsToValidate?: string[];
7726
7764
  }
7727
7765
 
7728
- export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypePhoneConstraints as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type AccountInfo as bS, type CreateCheckoutFromSubmissionRequest as bT, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bU, type Form as bV, type FormField as bW, type FormFieldStringType as bX, type FormFieldStringTypeFormatOptionsOneOf as bY, type StringErrorMessages as bZ, type StringTypeDateTimeConstraints as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type FileSource as c$, type StringTypeValidationMessages as c0, type FormFieldNumberType as c1, type NumberErrorMessages as c2, type IntegerType as c3, type FormFieldBooleanType as c4, type BooleanErrorMessages as c5, type FormFieldArrayType as c6, type FormFieldObjectType as c7, type ObjectTypePropertiesType as c8, type ObjectTypePropertiesTypePropertiesTypeOneOf as c9, type StringType as cA, type StringTypeFormatOptionsOneOf as cB, type DateTimeConstraints as cC, type PhoneConstraints as cD, type ValidationMessages as cE, type StringQuizFieldSettings as cF, type TextInput as cG, type RichContent as cH, type Node as cI, type NodeDataOneOf as cJ, type NodeStyle as cK, type ButtonData as cL, type Border as cM, type Colors as cN, type PluginContainerData as cO, type PluginContainerDataWidth as cP, type PluginContainerDataWidthDataOneOf as cQ, type Spoiler as cR, type Height as cS, type Styles as cT, type Link as cU, type LinkDataOneOf as cV, type Rel as cW, type CodeBlockData as cX, type TextStyle as cY, type DividerData as cZ, type FileData as c_, type ObjectErrorMessages as ca, type ArrayTypeArrayItems as cb, type ArrayTypeArrayItemsItemsOneOf as cc, type ArrayErrorMessages as cd, type PredefinedValidation as ce, type PredefinedValidationFormatOptionsOneOf as cf, type PaymentType as cg, type QuantityLimit as ch, type FixedPriceOptions as ci, type DynamicPriceOptions as cj, type Product as ck, type ProductPriceOptionsOneOf as cl, type MultilineAddressValidation as cm, type FieldOverrides as cn, type FieldsOverrides as co, type ObjectArrayType as cp, type NestedFormFieldOverrides as cq, type Validation as cr, type ValidationValidationOneOf as cs, type DataExtensionsDetails as ct, type NestedFormOverrides as cu, type Field as cv, type FieldFieldTypeOptionsOneOf as cw, type InputField as cx, type InputFieldInputTypeOptionsOneOf as cy, type StringCorrectAnswersList as cz, type UpdateSubmission as d, type CollapsibleListData as d$, type FileSourceDataOneOf as d0, type PDFSettings as d1, type GalleryData as d2, type Media as d3, type Image as d4, type Video as d5, type Item as d6, type ItemDataOneOf as d7, type GalleryOptions as d8, type GalleryOptionsLayout as d9, type OptionDesign as dA, type Poll as dB, type PollDataLayout as dC, type Design as dD, type TextData as dE, type Decoration as dF, type DecorationDataOneOf as dG, type AnchorData as dH, type ColorData as dI, type LinkData as dJ, type MentionData as dK, type FontSizeData as dL, type SpoilerData as dM, type FontFamilyData as dN, type AppEmbedData as dO, type AppEmbedDataAppDataOneOf as dP, type BookingData as dQ, type EventData as dR, type ButtonStyles as dS, type ImageStyles as dT, type RibbonStyles as dU, type CardStyles as dV, type PricingData as dW, type VideoData as dX, type PlaybackOptions as dY, type EmbedData as dZ, type Oembed as d_, type ItemStyle as da, type Thumbnails as db, type GIFData as dc, type GIF as dd, type HeadingData as de, type HTMLData as df, type HTMLDataDataOneOf as dg, type ImageData as dh, type StylesBorder as di, type ImageDataStyles as dj, type LinkPreviewData as dk, type LinkPreviewDataStyles as dl, type MapData as dm, type MapSettings as dn, type ParagraphData as dp, type PollData as dq, type Permissions as dr, type PollOption as ds, type Settings as dt, type PollLayout as du, type OptionLayout as dv, type Gradient as dw, type Background as dx, type BackgroundBackgroundOneOf as dy, type PollDesign as dz, type UpdateSubmissionValidationErrors as e, type DefaultCountryConfig as e$, type TableData as e0, type Dimensions as e1, type TableCellData as e2, type CellStyle as e3, type BorderColors as e4, type BorderWidths as e5, type ListValue as e6, type AudioData as e7, type OrderedListData as e8, type BulletedListData as e9, type QuizFieldSettings as eA, type NumberInput as eB, type RatingInput as eC, type BooleanType as eD, type Checkbox as eE, type ArrayType as eF, type ObjectType as eG, type PropertiesType as eH, type PropertiesTypePropertiesTypeOptionsOneOf as eI, type ArrayItems as eJ, type ArrayItemsItemTypeOptionsOneOf as eK, type CheckboxGroup as eL, type Option as eM, type ComponentsTags as eN, type TagsOption as eO, type ServicesCheckboxGroup as eP, type FileType as eQ, type FileUpload as eR, type Signature as eS, type ProductCheckboxGroup as eT, type ProductCheckboxGroupOption as eU, type DonationInput as eV, type DonationInputOption as eW, type PaymentInput as eX, type FixedPayment as eY, type MultilineAddress as eZ, type AddressLine2 as e_, type BlockquoteData as ea, type CaptionData as eb, type LayoutData as ec, type BackgroundImage as ed, type LayoutCellData as ee, type Metadata as ef, type DocumentStyle as eg, type TextNodeStyle as eh, type MediaItem as ei, type MediaItemMediaOneOf as ej, type MediaSettings as ek, type RadioGroup as el, type RadioGroupOption as em, type CustomOption as en, type Dropdown as eo, type DropdownOption as ep, type DateTimeInput as eq, type PhoneInput as er, type DateInput as es, type TimeInput as et, type DatePicker as eu, type ServicesDropdown as ev, type ServiceOption as ew, type Password as ex, type CorrectAnswersList as ey, type NumberType as ez, type ConfirmSubmissionResponse as f, type SubmitSettings as f$, type DefaultCountryConfigOptionsOneOf as f0, type FieldsSettings as f1, type Repeater as f2, type FormLayout as f3, type BreakPoint as f4, type ItemLayout as f5, type ItemLayoutItemOneOf as f6, type Group as f7, type Margin as f8, type Section as f9, type PaymentComponentTypeOptionsOneOf as fA, type Scheduling as fB, type SchedulingComponentTypeOptionsOneOf as fC, type Address as fD, type AddressComponentTypeOptionsOneOf as fE, type ObjectArray as fF, type ObjectArrayComponentTypeOptionsOneOf as fG, type DisplayField as fH, type DisplayFieldDisplayFieldTypeOptionsOneOf as fI, type RichContentOptions as fJ, type PageNavigationOptions as fK, type Step as fL, type FormRule as fM, type FormOverride as fN, type FormProperties as fO, type PostSubmissionTriggers as fP, type UpsertContact as fQ, type V4FormFieldContactInfo as fR, type V4FormFieldContactInfoAdditionalInfoOneOf as fS, type FormFieldContactInfoEmailInfo as fT, type FormFieldContactInfoPhoneInfo as fU, type FormFieldContactInfoAddressInfo as fV, type FormFieldContactInfoCustomFieldInfo as fW, type FormFieldContactInfoSubscriptionInfo as fX, type NestedForm as fY, type LimitationRule as fZ, type RequiredIndicatorProperties as f_, type Appointment as fa, type AppointmentFormatInfoOneOf as fb, type Location as fc, type LocationLocationInfoOneOf as fd, type InPersonOptions as fe, type VideoConferenceOptions as ff, type PhoneOptions as fg, type FormFieldContactInfo as fh, type FormFieldContactInfoAdditionalInfoOneOf as fi, type EmailInfo as fj, type PhoneInfo as fk, type AddressInfo as fl, type CustomFieldInfo as fm, type SubscriptionInfo as fn, type _String as fo, type _StringComponentTypeOptionsOneOf as fp, type _Number as fq, type _NumberComponentTypeOptionsOneOf as fr, type _Boolean as fs, type _BooleanComponentTypeOptionsOneOf as ft, type _Array as fu, type _ArrayComponentTypeOptionsOneOf as fv, type _Object as fw, type WixFile as fx, type WixFileComponentTypeOptionsOneOf as fy, type Payment as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceRequest as g$, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g0, type ThankYouMessageOptions as g1, type RedirectOptions as g2, type FieldGroup as g3, type Rule as g4, type RequiredOptions as g5, type HiddenOptions as g6, type AllowedValuesOptions as g7, type FieldOverride as g8, type FieldOverridePropertyTypeOptionsOneOf as g9, type ItemMetadata as gA, type ApplicationError as gB, type BulkActionMetadata as gC, type GetSubmissionRequest as gD, type GetSubmissionResponse as gE, type GetSubmissionByCheckoutIdRequest as gF, type GetSubmissionByCheckoutIdResponse as gG, type UpdateSubmissionRequest as gH, type UpdateSubmissionResponse as gI, type ConfirmSubmissionRequest as gJ, type DeleteSubmissionRequest as gK, type DeleteSubmissionResponse as gL, type BulkDeleteSubmissionRequest as gM, type BulkDeleteSubmissionResult as gN, type RestoreSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinRequest as gP, type RemoveSubmissionFromTrashBinResponse as gQ, type BulkRemoveSubmissionFromTrashBinRequest as gR, type BulkRemoveSubmissionFromTrashBinResult as gS, type ListDeletedSubmissionsRequest as gT, type CursorPaging as gU, type CursorPagingMetadata as gV, type Cursors as gW, type GetDeletedSubmissionRequest as gX, type QuerySubmissionRequest as gY, type CursorQueryPagingMethodOneOf as gZ, type Sorting as g_, type ConditionNode as ga, type ConditionNodeNodeOneOf as gb, type AndCondition as gc, type OrCondition as gd, type Condition as ge, type RuleFormOverride as gf, type RuleFormOverrideEntityTypeOptionsOneOf as gg, type Tags as gh, type TagsTagList as gi, type CreateCheckoutFromSubmissionResponse as gj, type Checkout as gk, type IsFormSubmittableRequest as gl, type IsFormSubmittableResponse as gm, type Empty as gn, type UpsertContactFromSubmissionRequest as go, type SubmitContactResponse as gp, type CreateSubmissionRequest as gq, type CreateSubmissionResponse as gr, type SubmissionValidationErrorsDetails as gs, type ValidationError as gt, type CreateSubmissionBySubmitterRequest as gu, type CreateSubmissionBySubmitterResponse as gv, type BulkCreateSubmissionBySubmitterRequest as gw, type BulkCreateSubmissionBySubmitterData as gx, type BulkCreateSubmissionBySubmitterResponse as gy, type BulkSubmissionResult as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type LayoutTypeWithLiterals as h$, type CursorSearch as h0, type CursorSearchPagingMethodOneOf as h1, type SearchDetails as h2, type SearchSubmissionsByNamespaceForExportRequest as h3, type SearchSubmissionsByNamespaceForExportResponse as h4, type QuerySubmissionsByNamespaceRequest as h5, type QuerySubmissionsByNamespaceResponse as h6, type QuerySubmissionsByNamespaceForExportRequest as h7, type QuerySubmissionsByNamespaceForExportResponse as h8, type CountSubmissionsByFilterRequest as h9, type SubmissionValidationErrorErrorMessageOneOf as hA, type BaseEventMetadata as hB, type EventMetadata as hC, type AccountInfoMetadata as hD, type FormSubmissionSearchSpec as hE, type SubmissionsQueryResult as hF, type FormSubmissionQuerySpec as hG, type SubmissionStatusWithLiterals as hH, type OptInLevelWithLiterals as hI, type WebhookIdentityTypeWithLiterals as hJ, type StringTypeFormatEnumFormatWithLiterals as hK, type ValidationFormatWithLiterals as hL, type ProductTypeWithLiterals as hM, type PriceTypeWithLiterals as hN, type FieldTypeWithLiterals as hO, type FormatEnumFormatWithLiterals as hP, type StringComponentTypeWithLiterals as hQ, type NodeTypeWithLiterals as hR, type WidthTypeWithLiterals as hS, type PluginContainerDataAlignmentWithLiterals as hT, type ButtonDataTypeWithLiterals as hU, type LinkTargetWithLiterals as hV, type TextAlignmentWithLiterals as hW, type LineStyleWithLiterals as hX, type WidthWithLiterals as hY, type DividerDataAlignmentWithLiterals as hZ, type ViewModeWithLiterals as h_, type FormSubmissionsCount as ha, type CountSubmissionsRequest as hb, type CountDeletedSubmissionsRequest as hc, type FormDeletedSubmissionsCount as hd, type GetMediaUploadURLRequest as he, type BulkMarkSubmissionsAsSeenRequest as hf, type GetSubmissionDownloadUrlRequest as hg, type SubmissionDocument as hh, type SubmissionDocumentDocumentOneOf as hi, type DocumentReady as hj, type DownloadSubmissionRequest as hk, type HeadersEntry as hl, type GetFormattedSubmissionRequest as hm, type FormattedSubmission as hn, type ListFormattedSubmissionsRequest as ho, type ListFormattedSubmissionsResponse as hp, type FormattedFormSubmission as hq, type UpdateExtendedFieldsRequest as hr, type BulkUpdateFormSubmissionTagsRequest as hs, type BulkUpdateFormSubmissionTagsResult as ht, type BulkUpdateFormSubmissionTagsByFilterRequest as hu, type ValidateFormSubmissionRequest as hv, type FieldViolation as hw, type FieldViolationErrorDataOneOf as hx, type SubmissionValidationErrors as hy, type SubmissionValidationError as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type SubscriptionInfoOptInLevelWithLiterals as i$, type OrientationWithLiterals as i0, type CropWithLiterals as i1, type ThumbnailsAlignmentWithLiterals as i2, type GIFTypeWithLiterals as i3, type SourceWithLiterals as i4, type StylesPositionWithLiterals as i5, type MapTypeWithLiterals as i6, type ViewRoleWithLiterals as i7, type VoteRoleWithLiterals as i8, type PollLayoutTypeWithLiterals as i9, type NumberOfColumnsWithLiterals as iA, type FirstDayOfWeekWithLiterals as iB, type NumberComponentTypeWithLiterals as iC, type BooleanComponentTypeWithLiterals as iD, type ItemTypeWithLiterals as iE, type PropertiesTypeEnumWithLiterals as iF, type ArrayComponentTypeWithLiterals as iG, type WixFileComponentTypeWithLiterals as iH, type UploadFileFormatWithLiterals as iI, type PaymentComponentTypeWithLiterals as iJ, type ComponentTypeWithLiterals as iK, type TypeWithLiterals as iL, type ObjectArrayComponentTypeWithLiterals as iM, type SchedulingComponentTypeWithLiterals as iN, type FormatWithLiterals as iO, type InputTypeWithLiterals as iP, type EmailInfoTagWithLiterals as iQ, type PhoneInfoTagWithLiterals as iR, type TagWithLiterals as iS, type ConfirmationLevelWithLiterals as iT, type ContactFieldWithLiterals as iU, type DisplayFieldTypeWithLiterals as iV, type OverrideEntityTypeWithLiterals as iW, type KindWithLiterals as iX, type FormFieldContactInfoEmailInfoTagWithLiterals as iY, type FormFieldContactInfoPhoneInfoTagWithLiterals as iZ, type AddressInfoTagWithLiterals as i_, type PollLayoutDirectionWithLiterals as ia, type BackgroundTypeWithLiterals as ib, type DecorationTypeWithLiterals as ic, type FontTypeWithLiterals as id, type PositionWithLiterals as ie, type AspectRatioWithLiterals as ig, type ResizingWithLiterals as ih, type PlacementWithLiterals as ii, type CardStylesTypeWithLiterals as ij, type CardStylesAlignmentWithLiterals as ik, type LayoutWithLiterals as il, type AppTypeWithLiterals as im, type InitialExpandedItemsWithLiterals as io, type DirectionWithLiterals as ip, type VerticalAlignmentWithLiterals as iq, type NullValueWithLiterals as ir, type ScalingWithLiterals as is, type LayoutDataImagePositionWithLiterals as it, type VerticalAlignmentAlignmentWithLiterals as iu, type ResponsivenessBehaviourWithLiterals as iv, type DesignTargetWithLiterals as iw, type ImagePositionWithLiterals as ix, type AlignmentWithLiterals as iy, type ImageFitWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type FormFieldContactInfoContactFieldWithLiterals as j0, type SpamFilterProtectionLevelWithLiterals as j1, type RequiredIndicatorWithLiterals as j2, type RequiredIndicatorPlacementWithLiterals as j3, type TargetWithLiterals as j4, type SubmitSuccessActionWithLiterals as j5, type ChangeablePropertyWithLiterals as j6, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j7, type OperatorWithLiterals as j8, type IdentityTypeWithLiterals as j9, querySubmission as jA, querySubmissionsByNamespace as jB, countSubmissionsByFilter as jC, countSubmissions as jD, countDeletedSubmissions as jE, getMediaUploadUrl as jF, bulkMarkSubmissionsAsSeen as jG, getSubmissionDownloadUrl as jH, downloadSubmission as jI, getFormattedSubmission as jJ, updateExtendedFields as jK, bulkUpdateFormSubmissionTags as jL, bulkUpdateFormSubmissionTagsByFilter as jM, validateFormSubmission as jN, type ErrorTypeWithLiterals as ja, type SortOrderWithLiterals as jb, type ModeWithLiterals as jc, type StatusWithLiterals as jd, type SubmissionErrorTypeWithLiterals as je, type CommonSearchWithEntityContext as jf, type CommonQueryWithEntityContext as jg, onSubmissionCreated as jh, onSubmissionDeleted as ji, onSubmissionRemovedSubmissionFromTrash as jj, onSubmissionStatusUpdated as jk, onSubmissionContactMapped as jl, onSubmissionContactMappingSkipped as jm, onSubmissionUpdated as jn, upsertContactFromSubmission as jo, createSubmission as jp, getSubmission as jq, updateSubmission as jr, confirmSubmission as js, deleteSubmission as jt, bulkDeleteSubmission as ju, restoreSubmissionFromTrashBin as jv, removeSubmissionFromTrashBin as jw, bulkRemoveSubmissionFromTrashBin as jx, listDeletedSubmissions as jy, getDeletedSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7766
+ export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypePhoneConstraints as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type AccountInfo as bS, type CreateCheckoutFromSubmissionRequest as bT, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bU, type Form as bV, type FormField as bW, type FormFieldStringType as bX, type FormFieldStringTypeFormatOptionsOneOf as bY, type StringErrorMessages as bZ, type StringTypeDateTimeConstraints as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type FileSource as c$, type StringTypeValidationMessages as c0, type FormFieldNumberType as c1, type NumberErrorMessages as c2, type IntegerType as c3, type FormFieldBooleanType as c4, type BooleanErrorMessages as c5, type FormFieldArrayType as c6, type FormFieldObjectType as c7, type ObjectTypePropertiesType as c8, type ObjectTypePropertiesTypePropertiesTypeOneOf as c9, type StringType as cA, type StringTypeFormatOptionsOneOf as cB, type DateTimeConstraints as cC, type PhoneConstraints as cD, type ValidationMessages as cE, type StringQuizFieldSettings as cF, type TextInput as cG, type RichContent as cH, type Node as cI, type NodeDataOneOf as cJ, type NodeStyle as cK, type ButtonData as cL, type Border as cM, type Colors as cN, type PluginContainerData as cO, type PluginContainerDataWidth as cP, type PluginContainerDataWidthDataOneOf as cQ, type Spoiler as cR, type Height as cS, type Styles as cT, type Link as cU, type LinkDataOneOf as cV, type Rel as cW, type CodeBlockData as cX, type TextStyle as cY, type DividerData as cZ, type FileData as c_, type ObjectErrorMessages as ca, type ArrayTypeArrayItems as cb, type ArrayTypeArrayItemsItemsOneOf as cc, type ArrayErrorMessages as cd, type PredefinedValidation as ce, type PredefinedValidationFormatOptionsOneOf as cf, type PaymentType as cg, type QuantityLimit as ch, type FixedPriceOptions as ci, type DynamicPriceOptions as cj, type Product as ck, type ProductPriceOptionsOneOf as cl, type MultilineAddressValidation as cm, type FieldOverrides as cn, type FieldsOverrides as co, type ObjectArrayType as cp, type NestedFormFieldOverrides as cq, type Validation as cr, type ValidationValidationOneOf as cs, type DataExtensionsDetails as ct, type NestedFormOverrides as cu, type Field as cv, type FieldFieldTypeOptionsOneOf as cw, type InputField as cx, type InputFieldInputTypeOptionsOneOf as cy, type StringCorrectAnswersList as cz, type UpdateSubmission as d, type CollapsibleListData as d$, type FileSourceDataOneOf as d0, type PDFSettings as d1, type GalleryData as d2, type Media as d3, type Image as d4, type Video as d5, type Item as d6, type ItemDataOneOf as d7, type GalleryOptions as d8, type GalleryOptionsLayout as d9, type OptionDesign as dA, type Poll as dB, type PollDataLayout as dC, type Design as dD, type TextData as dE, type Decoration as dF, type DecorationDataOneOf as dG, type AnchorData as dH, type ColorData as dI, type LinkData as dJ, type MentionData as dK, type FontSizeData as dL, type SpoilerData as dM, type FontFamilyData as dN, type AppEmbedData as dO, type AppEmbedDataAppDataOneOf as dP, type BookingData as dQ, type EventData as dR, type ButtonStyles as dS, type ImageStyles as dT, type RibbonStyles as dU, type CardStyles as dV, type PricingData as dW, type VideoData as dX, type PlaybackOptions as dY, type EmbedData as dZ, type Oembed as d_, type ItemStyle as da, type Thumbnails as db, type GIFData as dc, type GIF as dd, type HeadingData as de, type HTMLData as df, type HTMLDataDataOneOf as dg, type ImageData as dh, type StylesBorder as di, type ImageDataStyles as dj, type LinkPreviewData as dk, type LinkPreviewDataStyles as dl, type MapData as dm, type MapSettings as dn, type ParagraphData as dp, type PollData as dq, type Permissions as dr, type PollOption as ds, type Settings as dt, type PollLayout as du, type OptionLayout as dv, type Gradient as dw, type Background as dx, type BackgroundBackgroundOneOf as dy, type PollDesign as dz, type UpdateSubmissionValidationErrors as e, type PaymentInput as e$, type TableData as e0, type Dimensions as e1, type TableCellData as e2, type CellStyle as e3, type BorderColors as e4, type BorderWidths as e5, type ListValue as e6, type AudioData as e7, type OrderedListData as e8, type BulletedListData as e9, type NumberCorrectAnswersList as eA, type NumberType as eB, type NumberQuizFieldSettings as eC, type NumberInput as eD, type RatingInput as eE, type BooleanType as eF, type Checkbox as eG, type CorrectAnswersList as eH, type ArrayType as eI, type ObjectType as eJ, type PropertiesType as eK, type PropertiesTypePropertiesTypeOptionsOneOf as eL, type ArrayItems as eM, type ArrayItemsItemTypeOptionsOneOf as eN, type QuizFieldSettings as eO, type CheckboxGroup as eP, type Option as eQ, type ComponentsTags as eR, type TagsOption as eS, type ServicesCheckboxGroup as eT, type FileType as eU, type FileUpload as eV, type Signature as eW, type ProductCheckboxGroup as eX, type ProductCheckboxGroupOption as eY, type DonationInput as eZ, type DonationInputOption as e_, type BlockquoteData as ea, type CaptionData as eb, type LayoutData as ec, type BackgroundImage as ed, type LayoutCellData as ee, type ShapeData as ef, type ShapeDataStyles 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 ConfirmSubmissionResponse as f, type FormFieldContactInfoSubscriptionInfo as f$, type FixedPayment as f0, type MultilineAddress as f1, type AddressLine2 as f2, type DefaultCountryConfig as f3, type DefaultCountryConfigOptionsOneOf as f4, type FieldsSettings as f5, type Repeater as f6, type FormLayout as f7, type BreakPoint as f8, type ItemLayout as f9, type _Object as fA, type WixFile as fB, type WixFileComponentTypeOptionsOneOf as fC, type Payment as fD, type PaymentComponentTypeOptionsOneOf as fE, type Scheduling as fF, type SchedulingComponentTypeOptionsOneOf as fG, type Address as fH, type AddressComponentTypeOptionsOneOf as fI, type ObjectArray as fJ, type ObjectArrayComponentTypeOptionsOneOf as fK, type DisplayField as fL, type DisplayFieldDisplayFieldTypeOptionsOneOf as fM, type RichContentOptions as fN, type PageNavigationOptions as fO, type Step as fP, type FormRule as fQ, type FormOverride as fR, type FormProperties as fS, type PostSubmissionTriggers as fT, type UpsertContact as fU, type V4FormFieldContactInfo as fV, type V4FormFieldContactInfoAdditionalInfoOneOf as fW, type FormFieldContactInfoEmailInfo as fX, type FormFieldContactInfoPhoneInfo as fY, type FormFieldContactInfoAddressInfo as fZ, type FormFieldContactInfoCustomFieldInfo as f_, 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 BulkDeleteSubmissionResponse as g, type GetDeletedSubmissionRequest as g$, type NestedForm as g0, type LimitationRule as g1, type RequiredIndicatorProperties as g2, type SubmitSettings as g3, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g4, type ThankYouMessageOptions as g5, type RedirectOptions as g6, type FieldGroup as g7, type Rule as g8, type RequiredOptions as g9, type BulkCreateSubmissionBySubmitterRequest as gA, type BulkCreateSubmissionBySubmitterData as gB, type BulkCreateSubmissionBySubmitterResponse as gC, type BulkSubmissionResult as gD, type ItemMetadata as gE, type ApplicationError as gF, type BulkActionMetadata as gG, type GetSubmissionRequest as gH, type GetSubmissionResponse as gI, type GetSubmissionByCheckoutIdRequest as gJ, type GetSubmissionByCheckoutIdResponse as gK, type UpdateSubmissionRequest as gL, type UpdateSubmissionResponse as gM, type ConfirmSubmissionRequest as gN, type DeleteSubmissionRequest as gO, type DeleteSubmissionResponse as gP, type BulkDeleteSubmissionRequest as gQ, type BulkDeleteSubmissionResult as gR, type RestoreSubmissionFromTrashBinRequest as gS, type RemoveSubmissionFromTrashBinRequest as gT, type RemoveSubmissionFromTrashBinResponse as gU, type BulkRemoveSubmissionFromTrashBinRequest as gV, type BulkRemoveSubmissionFromTrashBinResult as gW, type ListDeletedSubmissionsRequest as gX, type CursorPaging as gY, type CursorPagingMetadata as gZ, type Cursors as g_, 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 CreateCheckoutFromSubmissionResponse as gn, type Checkout as go, type IsFormSubmittableRequest as gp, type IsFormSubmittableResponse as gq, type Empty as gr, type UpsertContactFromSubmissionRequest as gs, type SubmitContactResponse as gt, type CreateSubmissionRequest as gu, type CreateSubmissionResponse as gv, type SubmissionValidationErrorsDetails as gw, type ValidationError as gx, type CreateSubmissionBySubmitterRequest as gy, type CreateSubmissionBySubmitterResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ButtonDataTypeWithLiterals as h$, type QuerySubmissionRequest as h0, type CursorQueryPagingMethodOneOf as h1, type Sorting as h2, type SearchSubmissionsByNamespaceRequest as h3, type CursorSearch as h4, type CursorSearchPagingMethodOneOf as h5, type SearchDetails as h6, type SearchSubmissionsByNamespaceForExportRequest as h7, type SearchSubmissionsByNamespaceForExportResponse as h8, type QuerySubmissionsByNamespaceRequest as h9, type FieldViolation as hA, type FieldViolationErrorDataOneOf as hB, type SubmissionValidationErrors as hC, type SubmissionValidationError as hD, type SubmissionValidationErrorErrorMessageOneOf as hE, type BaseEventMetadata as hF, type EventMetadata as hG, type AccountInfoMetadata as hH, type FormSubmissionSearchSpec as hI, type SubmissionsQueryResult as hJ, type FormSubmissionQuerySpec as hK, QueryBuilder as hL, Filter as hM, Sort as hN, type SubmissionStatusWithLiterals as hO, type OptInLevelWithLiterals as hP, type WebhookIdentityTypeWithLiterals as hQ, type StringTypeFormatEnumFormatWithLiterals as hR, type ValidationFormatWithLiterals as hS, type ProductTypeWithLiterals as hT, type PriceTypeWithLiterals as hU, type FieldTypeWithLiterals as hV, type FormatEnumFormatWithLiterals as hW, type StringComponentTypeWithLiterals as hX, type NodeTypeWithLiterals as hY, type WidthTypeWithLiterals as hZ, type PluginContainerDataAlignmentWithLiterals as h_, type QuerySubmissionsByNamespaceResponse as ha, type QuerySubmissionsByNamespaceForExportRequest as hb, type QuerySubmissionsByNamespaceForExportResponse as hc, type CountSubmissionsByFilterRequest as hd, type FormSubmissionsCount as he, type CountSubmissionsRequest as hf, type CountDeletedSubmissionsRequest as hg, type FormDeletedSubmissionsCount as hh, type GetMediaUploadURLRequest as hi, type BulkMarkSubmissionsAsSeenRequest as hj, type GetSubmissionDownloadUrlRequest as hk, type SubmissionDocument as hl, type SubmissionDocumentDocumentOneOf as hm, type DocumentReady as hn, type DownloadSubmissionRequest as ho, type HeadersEntry as hp, type GetFormattedSubmissionRequest as hq, type FormattedSubmission as hr, type ListFormattedSubmissionsRequest as hs, type ListFormattedSubmissionsResponse as ht, type FormattedFormSubmission as hu, type UpdateExtendedFieldsRequest as hv, type BulkUpdateFormSubmissionTagsRequest as hw, type BulkUpdateFormSubmissionTagsResult as hx, type BulkUpdateFormSubmissionTagsByFilterRequest as hy, type ValidateFormSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ContactFieldWithLiterals as i$, type LinkTargetWithLiterals as i0, type TextAlignmentWithLiterals as i1, type LineStyleWithLiterals as i2, type WidthWithLiterals as i3, type DividerDataAlignmentWithLiterals as i4, type ViewModeWithLiterals as i5, type LayoutTypeWithLiterals as i6, type OrientationWithLiterals as i7, type CropWithLiterals as i8, type ThumbnailsAlignmentWithLiterals as i9, type LayoutDataImagePositionWithLiterals as iA, type VerticalAlignmentAlignmentWithLiterals as iB, type ResponsivenessBehaviourWithLiterals as iC, type DesignTargetWithLiterals as iD, type ImagePositionWithLiterals as iE, type AlignmentWithLiterals as iF, type ImageFitWithLiterals as iG, type NumberOfColumnsWithLiterals as iH, type FirstDayOfWeekWithLiterals as iI, type NumberComponentTypeWithLiterals as iJ, type BooleanComponentTypeWithLiterals as iK, type ItemTypeWithLiterals as iL, type PropertiesTypeEnumWithLiterals as iM, type ArrayComponentTypeWithLiterals as iN, type WixFileComponentTypeWithLiterals as iO, type UploadFileFormatWithLiterals as iP, type PaymentComponentTypeWithLiterals as iQ, type ComponentTypeWithLiterals as iR, type TypeWithLiterals as iS, type ObjectArrayComponentTypeWithLiterals as iT, type SchedulingComponentTypeWithLiterals as iU, type FormatWithLiterals as iV, type InputTypeWithLiterals as iW, type EmailInfoTagWithLiterals as iX, type PhoneInfoTagWithLiterals as iY, type TagWithLiterals as iZ, type ConfirmationLevelWithLiterals as i_, type GIFTypeWithLiterals as ia, type SourceWithLiterals as ib, type StylesPositionWithLiterals as ic, type MapTypeWithLiterals as id, type ViewRoleWithLiterals as ie, type VoteRoleWithLiterals as ig, type PollLayoutTypeWithLiterals as ih, type PollLayoutDirectionWithLiterals as ii, type BackgroundTypeWithLiterals as ij, type DecorationTypeWithLiterals as ik, type FontTypeWithLiterals as il, type PositionWithLiterals as im, type AspectRatioWithLiterals as io, type ResizingWithLiterals as ip, type PlacementWithLiterals as iq, type CardStylesTypeWithLiterals as ir, type CardStylesAlignmentWithLiterals as is, type LayoutWithLiterals as it, type AppTypeWithLiterals as iu, type InitialExpandedItemsWithLiterals as iv, type DirectionWithLiterals as iw, type VerticalAlignmentWithLiterals as ix, type NullValueWithLiterals as iy, type ScalingWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type DisplayFieldTypeWithLiterals as j0, type OverrideEntityTypeWithLiterals as j1, type KindWithLiterals as j2, type FormFieldContactInfoEmailInfoTagWithLiterals as j3, type FormFieldContactInfoPhoneInfoTagWithLiterals as j4, type AddressInfoTagWithLiterals as j5, type SubscriptionInfoOptInLevelWithLiterals as j6, type FormFieldContactInfoContactFieldWithLiterals as j7, type SpamFilterProtectionLevelWithLiterals as j8, type RequiredIndicatorWithLiterals as j9, deleteSubmission as jA, bulkDeleteSubmission as jB, restoreSubmissionFromTrashBin as jC, removeSubmissionFromTrashBin as jD, bulkRemoveSubmissionFromTrashBin as jE, listDeletedSubmissions as jF, getDeletedSubmission as jG, querySubmission as jH, querySubmissionsByNamespace as jI, countSubmissionsByFilter as jJ, countSubmissions as jK, countDeletedSubmissions as jL, getMediaUploadUrl as jM, bulkMarkSubmissionsAsSeen as jN, getSubmissionDownloadUrl as jO, downloadSubmission as jP, getFormattedSubmission as jQ, updateExtendedFields as jR, bulkUpdateFormSubmissionTags as jS, bulkUpdateFormSubmissionTagsByFilter as jT, validateFormSubmission as jU, type RequiredIndicatorPlacementWithLiterals as ja, type TargetWithLiterals as jb, type SubmitSuccessActionWithLiterals as jc, type ChangeablePropertyWithLiterals as jd, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as je, type OperatorWithLiterals as jf, type IdentityTypeWithLiterals as jg, type ErrorTypeWithLiterals as jh, type SortOrderWithLiterals as ji, type ModeWithLiterals as jj, type StatusWithLiterals as jk, type SubmissionErrorTypeWithLiterals as jl, type CommonSearchWithEntityContext as jm, type CommonQueryWithEntityContext as jn, onSubmissionCreated as jo, onSubmissionDeleted as jp, onSubmissionRemovedSubmissionFromTrash as jq, onSubmissionStatusUpdated as jr, onSubmissionContactMapped as js, onSubmissionContactMappingSkipped as jt, onSubmissionUpdated as ju, upsertContactFromSubmission as jv, createSubmission as jw, getSubmission as jx, updateSubmission as jy, confirmSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DYDfWYJ5.js';
3
- export { bS as AccountInfo, hD as AccountInfoMetadata, bO as ActionEvent, fD as Address, fE as AddressComponentTypeOptionsOneOf, fl as AddressInfo, bg as AddressInfoTag, i_ as AddressInfoTagWithLiterals, e_ as AddressLine2, aQ as Alignment, iy as AlignmentWithLiterals, g7 as AllowedValuesOptions, dH as AnchorData, gc as AndCondition, dO as AppEmbedData, dP as AppEmbedDataAppDataOneOf, aF as AppType, im as AppTypeWithLiterals, gB as ApplicationError, fa as Appointment, fb as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iG as ArrayComponentTypeWithLiterals, cd as ArrayErrorMessages, eJ as ArrayItems, eK as ArrayItemsItemTypeOptionsOneOf, eF as ArrayType, cb as ArrayTypeArrayItems, cc as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, ig as AspectRatioWithLiterals, e7 as AudioData, dx as Background, dy as BackgroundBackgroundOneOf, ed as BackgroundImage, av as BackgroundType, ib as BackgroundTypeWithLiterals, hB as BaseEventMetadata, ea as BlockquoteData, dQ as BookingData, aV as BooleanComponentType, iD as BooleanComponentTypeWithLiterals, c5 as BooleanErrorMessages, eD as BooleanType, cM as Border, e4 as BorderColors, e5 as BorderWidths, f4 as BreakPoint, gC as BulkActionMetadata, gx as BulkCreateSubmissionBySubmitterData, gw as BulkCreateSubmissionBySubmitterRequest, gy as BulkCreateSubmissionBySubmitterResponse, gM as BulkDeleteSubmissionRequest, gN as BulkDeleteSubmissionResult, hf as BulkMarkSubmissionsAsSeenRequest, gR as BulkRemoveSubmissionFromTrashBinRequest, gS as BulkRemoveSubmissionFromTrashBinResult, gz as BulkSubmissionResult, hu as BulkUpdateFormSubmissionTagsByFilterRequest, hs as BulkUpdateFormSubmissionTagsRequest, ht as BulkUpdateFormSubmissionTagsResult, e9 as BulletedListData, cL as ButtonData, ac as ButtonDataType, hU as ButtonDataTypeWithLiterals, dS as ButtonStyles, eb as CaptionData, dV as CardStyles, aD as CardStylesAlignment, ik as CardStylesAlignmentWithLiterals, aC as CardStylesType, ij as CardStylesTypeWithLiterals, e3 as CellStyle, bo as ChangeableProperty, j6 as ChangeablePropertyWithLiterals, eE as Checkbox, eL as CheckboxGroup, gk as Checkout, cX as CodeBlockData, d$ as CollapsibleListData, dI as ColorData, cN as Colors, jg as CommonQueryWithEntityContext, jf as CommonSearchWithEntityContext, b0 as ComponentType, iK as ComponentTypeWithLiterals, eN as ComponentsTags, ge as Condition, ga as ConditionNode, gb as ConditionNodeNodeOneOf, gJ as ConfirmSubmissionRequest, b9 as ConfirmationLevel, iT as ConfirmationLevelWithLiterals, ba as ContactField, iU as ContactFieldWithLiterals, ey as CorrectAnswersList, hc as CountDeletedSubmissionsRequest, h9 as CountSubmissionsByFilterRequest, hb as CountSubmissionsRequest, bT as CreateCheckoutFromSubmissionRequest, bU as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gj as CreateCheckoutFromSubmissionResponse, gu as CreateSubmissionBySubmitterRequest, gv as CreateSubmissionBySubmitterResponse, gq as CreateSubmissionRequest, gr as CreateSubmissionResponse, al as Crop, i1 as CropWithLiterals, gU as CursorPaging, gV as CursorPagingMetadata, gZ as CursorQueryPagingMethodOneOf, h0 as CursorSearch, h1 as CursorSearchPagingMethodOneOf, gW as Cursors, fm as CustomFieldInfo, en as CustomOption, ct as DataExtensionsDetails, es as DateInput, eu as DatePicker, cC as DateTimeConstraints, eq as DateTimeInput, dF as Decoration, dG as DecorationDataOneOf, aw as DecorationType, ic as DecorationTypeWithLiterals, e$ as DefaultCountryConfig, f0 as DefaultCountryConfigOptionsOneOf, gK as DeleteSubmissionRequest, gL as DeleteSubmissionResponse, dD as Design, aO as DesignTarget, iw as DesignTargetWithLiterals, e1 as Dimensions, aH as Direction, ip as DirectionWithLiterals, fH as DisplayField, fI as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, iV as DisplayFieldTypeWithLiterals, cZ as DividerData, ah as DividerDataAlignment, hZ as DividerDataAlignmentWithLiterals, hj as DocumentReady, eg as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eV as DonationInput, eW as DonationInputOption, hk as DownloadSubmissionRequest, eo as Dropdown, ep as DropdownOption, cj as DynamicPriceOptions, fj as EmailInfo, b6 as EmailInfoTag, iQ as EmailInfoTagWithLiterals, dZ as EmbedData, gn as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, ja as ErrorTypeWithLiterals, dR as EventData, hC as EventMetadata, bz as ExtendedFields, cv as Field, cw as FieldFieldTypeOptionsOneOf, g3 as FieldGroup, g8 as FieldOverride, g9 as FieldOverridePropertyTypeOptionsOneOf, cn as FieldOverrides, a6 as FieldType, hO as FieldTypeWithLiterals, hw as FieldViolation, hx as FieldViolationErrorDataOneOf, co as FieldsOverrides, f1 as FieldsSettings, c_ as FileData, c$ as FileSource, d0 as FileSourceDataOneOf, eQ as FileType, eR as FileUpload, aT as FirstDayOfWeek, iB as FirstDayOfWeekWithLiterals, eY as FixedPayment, ci as FixedPriceOptions, dN as FontFamilyData, dL as FontSizeData, ax as FontType, id as FontTypeWithLiterals, bV as Form, hd as FormDeletedSubmissionsCount, bW as FormField, c6 as FormFieldArrayType, c4 as FormFieldBooleanType, fh as FormFieldContactInfo, fi as FormFieldContactInfoAdditionalInfoOneOf, fV as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, j0 as FormFieldContactInfoContactFieldWithLiterals, fW as FormFieldContactInfoCustomFieldInfo, fT as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, iY as FormFieldContactInfoEmailInfoTagWithLiterals, fU as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, iZ as FormFieldContactInfoPhoneInfoTagWithLiterals, fX as FormFieldContactInfoSubscriptionInfo, c1 as FormFieldNumberType, c7 as FormFieldObjectType, bX as FormFieldStringType, bY as FormFieldStringTypeFormatOptionsOneOf, f3 as FormLayout, fN as FormOverride, fO as FormProperties, fM as FormRule, hG as FormSubmissionQuerySpec, hE as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, ha as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hP as FormatEnumFormatWithLiterals, iO as FormatWithLiterals, hq as FormattedFormSubmission, hn as FormattedSubmission, dd as GIF, dc as GIFData, an as GIFType, i3 as GIFTypeWithLiterals, d2 as GalleryData, d8 as GalleryOptions, d9 as GalleryOptionsLayout, gX as GetDeletedSubmissionRequest, hm as GetFormattedSubmissionRequest, he as GetMediaUploadURLRequest, gF as GetSubmissionByCheckoutIdRequest, gG as GetSubmissionByCheckoutIdResponse, hg as GetSubmissionDownloadUrlRequest, gD as GetSubmissionRequest, gE as GetSubmissionResponse, dw as Gradient, f7 as Group, df as HTMLData, dg as HTMLDataDataOneOf, hl as HeadersEntry, de as HeadingData, cS as Height, g6 as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, j9 as IdentityTypeWithLiterals, d4 as Image, dh as ImageData, dj as ImageDataStyles, aR as ImageFit, iz as ImageFitWithLiterals, aP as ImagePosition, ix as ImagePositionWithLiterals, dT as ImageStyles, fe as InPersonOptions, aG as InitialExpandedItems, io as InitialExpandedItemsWithLiterals, cx as InputField, cy as InputFieldInputTypeOptionsOneOf, b5 as InputType, iP as InputTypeWithLiterals, c3 as IntegerType, gl as IsFormSubmittableRequest, gm as IsFormSubmittableResponse, d6 as Item, d7 as ItemDataOneOf, f5 as ItemLayout, f6 as ItemLayoutItemOneOf, gA as ItemMetadata, da as ItemStyle, aW as ItemType, iE as ItemTypeWithLiterals, bd as Kind, iX as KindWithLiterals, aE as Layout, ee as LayoutCellData, ec as LayoutData, aL as LayoutDataImagePosition, it as LayoutDataImagePositionWithLiterals, aj as LayoutType, h$ as LayoutTypeWithLiterals, il as LayoutWithLiterals, fZ as LimitationRule, af as LineStyle, hX as LineStyleWithLiterals, cU as Link, dJ as LinkData, cV as LinkDataOneOf, dk as LinkPreviewData, dl as LinkPreviewDataStyles, ad as LinkTarget, hV as LinkTargetWithLiterals, gT as ListDeletedSubmissionsRequest, ho as ListFormattedSubmissionsRequest, hp as ListFormattedSubmissionsResponse, e6 as ListValue, fc as Location, fd as LocationLocationInfoOneOf, dm as MapData, dn as MapSettings, aq as MapType, i6 as MapTypeWithLiterals, f8 as Margin, bG as MarketingSubscriptionDetails, d3 as Media, ei as MediaItem, ej as MediaItemMediaOneOf, ek as MediaSettings, dK as MentionData, bP as MessageEnvelope, ef as Metadata, bu as Mode, jc as ModeWithLiterals, eZ as MultilineAddress, cm as MultilineAddressValidation, fY as NestedForm, cq as NestedFormFieldOverrides, cu as NestedFormOverrides, cI as Node, cJ as NodeDataOneOf, cK as NodeStyle, a9 as NodeType, hR as NodeTypeWithLiterals, aJ as NullValue, ir as NullValueWithLiterals, aU as NumberComponentType, iC as NumberComponentTypeWithLiterals, c2 as NumberErrorMessages, eB as NumberInput, aS as NumberOfColumns, iA as NumberOfColumnsWithLiterals, ez as NumberType, fF as ObjectArray, b2 as ObjectArrayComponentType, fG as ObjectArrayComponentTypeOptionsOneOf, iM as ObjectArrayComponentTypeWithLiterals, cp as ObjectArrayType, ca as ObjectErrorMessages, eG as ObjectType, c8 as ObjectTypePropertiesType, c9 as ObjectTypePropertiesTypePropertiesTypeOneOf, d_ as Oembed, bq as Operator, j8 as OperatorWithLiterals, a0 as OptInLevel, hI as OptInLevelWithLiterals, eM as Option, dA as OptionDesign, dv as OptionLayout, gd as OrCondition, bA as OrderDetails, e8 as OrderedListData, ak as Orientation, i0 as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, j7 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iW as OverrideEntityTypeWithLiterals, d1 as PDFSettings, fK as PageNavigationOptions, dp as ParagraphData, ex as Password, fz as Payment, a$ as PaymentComponentType, fA as PaymentComponentTypeOptionsOneOf, iJ as PaymentComponentTypeWithLiterals, eX as PaymentInput, cg as PaymentType, dr as Permissions, cD as PhoneConstraints, fk as PhoneInfo, b7 as PhoneInfoTag, iR as PhoneInfoTagWithLiterals, er as PhoneInput, fg as PhoneOptions, aB as Placement, ii as PlacementWithLiterals, dY as PlaybackOptions, cO as PluginContainerData, ab as PluginContainerDataAlignment, hT as PluginContainerDataAlignmentWithLiterals, cP as PluginContainerDataWidth, cQ as PluginContainerDataWidthDataOneOf, dB as Poll, dq as PollData, dC as PollDataLayout, dz as PollDesign, du as PollLayout, au as PollLayoutDirection, ia as PollLayoutDirectionWithLiterals, at as PollLayoutType, i9 as PollLayoutTypeWithLiterals, ds as PollOption, ay as Position, ie as PositionWithLiterals, fP as PostSubmissionTriggers, ce as PredefinedValidation, cf as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hN as PriceTypeWithLiterals, dW as PricingData, ck as Product, eT as ProductCheckboxGroup, eU as ProductCheckboxGroupOption, cl as ProductPriceOptionsOneOf, a4 as ProductType, hM as ProductTypeWithLiterals, eH as PropertiesType, aX as PropertiesTypeEnum, iF as PropertiesTypeEnumWithLiterals, eI as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, ch as QuantityLimit, gY as QuerySubmissionRequest, h7 as QuerySubmissionsByNamespaceForExportRequest, h8 as QuerySubmissionsByNamespaceForExportResponse, h5 as QuerySubmissionsByNamespaceRequest, h6 as QuerySubmissionsByNamespaceResponse, eA as QuizFieldSettings, el as RadioGroup, em as RadioGroupOption, eC as RatingInput, g2 as RedirectOptions, cW as Rel, gP as RemoveSubmissionFromTrashBinRequest, gQ as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, f2 as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, j3 as RequiredIndicatorPlacementWithLiterals, f_ as RequiredIndicatorProperties, j2 as RequiredIndicatorWithLiterals, g5 as RequiredOptions, aA as Resizing, ih as ResizingWithLiterals, aN as ResponsivenessBehaviour, iv as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gO as RestoreSubmissionFromTrashBinRequest, dU as RibbonStyles, cH as RichContent, fJ as RichContentOptions, g4 as Rule, gf as RuleFormOverride, gg as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, is as ScalingWithLiterals, fB as Scheduling, b3 as SchedulingComponentType, fC as SchedulingComponentTypeOptionsOneOf, iN as SchedulingComponentTypeWithLiterals, h2 as SearchDetails, h3 as SearchSubmissionsByNamespaceForExportRequest, h4 as SearchSubmissionsByNamespaceForExportResponse, g$ as SearchSubmissionsByNamespaceRequest, f9 as Section, ew as ServiceOption, eP as ServicesCheckboxGroup, ev as ServicesDropdown, dt as Settings, eS as Signature, bt as SortOrder, jb as SortOrderWithLiterals, g_ as Sorting, ao as Source, i4 as SourceWithLiterals, bj as SpamFilterProtectionLevel, j1 as SpamFilterProtectionLevelWithLiterals, cR as Spoiler, dM as SpoilerData, bv as Status, jd as StatusWithLiterals, fL as Step, a8 as StringComponentType, hQ as StringComponentTypeWithLiterals, cz as StringCorrectAnswersList, bZ as StringErrorMessages, cF as StringQuizFieldSettings, cA as StringType, b_ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hK as StringTypeFormatEnumFormatWithLiterals, cB as StringTypeFormatOptionsOneOf, b$ as StringTypePhoneConstraints, c0 as StringTypeValidationMessages, cT as Styles, di as StylesBorder, ap as StylesPosition, i5 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hh as SubmissionDocument, hi as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, je as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hH as SubmissionStatusWithLiterals, hz as SubmissionValidationError, hA as SubmissionValidationErrorErrorMessageOneOf, hy as SubmissionValidationErrors, gs as SubmissionValidationErrorsDetails, hF as SubmissionsQueryResult, gp as SubmitContactResponse, f$ as SubmitSettings, g0 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, j5 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fn as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, i$ as SubscriptionInfoOptInLevelWithLiterals, e2 as TableCellData, e0 as TableData, b8 as Tag, bC as TagList, iS as TagWithLiterals, gh as Tags, eO as TagsOption, gi as TagsTagList, bm as Target, j4 as TargetWithLiterals, ae as TextAlignment, hW as TextAlignmentWithLiterals, dE as TextData, cG as TextInput, eh as TextNodeStyle, cY as TextStyle, g1 as ThankYouMessageOptions, db as Thumbnails, am as ThumbnailsAlignment, i2 as ThumbnailsAlignmentWithLiterals, et as TimeInput, b1 as Type, iL as TypeWithLiterals, hr as UpdateExtendedFieldsRequest, gH as UpdateSubmissionRequest, gI as UpdateSubmissionResponse, a_ as UploadFileFormat, iI as UploadFileFormatWithLiterals, fQ as UpsertContact, go as UpsertContactFromSubmissionRequest, fR as V4FormFieldContactInfo, fS as V4FormFieldContactInfoAdditionalInfoOneOf, hv as ValidateFormSubmissionRequest, cr as Validation, gt as ValidationError, a3 as ValidationFormat, hL as ValidationFormatWithLiterals, cE as ValidationMessages, cs as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, iu as VerticalAlignmentAlignmentWithLiterals, iq as VerticalAlignmentWithLiterals, d5 as Video, ff as VideoConferenceOptions, dX as VideoData, ai as ViewMode, h_ as ViewModeWithLiterals, ar as ViewRole, i7 as ViewRoleWithLiterals, as as VoteRole, i8 as VoteRoleWithLiterals, a1 as WebhookIdentityType, hJ as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hS as WidthTypeWithLiterals, hY as WidthWithLiterals, fx as WixFile, aZ as WixFileComponentType, fy as WixFileComponentTypeOptionsOneOf, iH as WixFileComponentTypeWithLiterals, fu as _Array, fv as _ArrayComponentTypeOptionsOneOf, fs as _Boolean, ft as _BooleanComponentTypeOptionsOneOf, fq as _Number, fr as _NumberComponentTypeOptionsOneOf, fw as _Object, fo as _String, fp as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-DYDfWYJ5.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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-D-Uxphls.js';
3
+ export { bS as AccountInfo, hH as AccountInfoMetadata, bO as ActionEvent, fH as Address, fI as AddressComponentTypeOptionsOneOf, fp as AddressInfo, bg as AddressInfoTag, j5 as AddressInfoTagWithLiterals, f2 as AddressLine2, aQ as Alignment, iF as AlignmentWithLiterals, gb as AllowedValuesOptions, dH as AnchorData, gg as AndCondition, dO as AppEmbedData, dP as AppEmbedDataAppDataOneOf, aF as AppType, iu as AppTypeWithLiterals, gF as ApplicationError, fe as Appointment, ff as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iN as ArrayComponentTypeWithLiterals, cd as ArrayErrorMessages, eM as ArrayItems, eN as ArrayItemsItemTypeOptionsOneOf, eI as ArrayType, cb as ArrayTypeArrayItems, cc as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, io as AspectRatioWithLiterals, e7 as AudioData, dx as Background, dy as BackgroundBackgroundOneOf, ed as BackgroundImage, av as BackgroundType, ij as BackgroundTypeWithLiterals, hF as BaseEventMetadata, ea as BlockquoteData, dQ as BookingData, aV as BooleanComponentType, iK as BooleanComponentTypeWithLiterals, c5 as BooleanErrorMessages, eF as BooleanType, cM as Border, e4 as BorderColors, e5 as BorderWidths, f8 as BreakPoint, gG as BulkActionMetadata, gB as BulkCreateSubmissionBySubmitterData, gA as BulkCreateSubmissionBySubmitterRequest, gC as BulkCreateSubmissionBySubmitterResponse, gQ as BulkDeleteSubmissionRequest, gR as BulkDeleteSubmissionResult, hj as BulkMarkSubmissionsAsSeenRequest, gV as BulkRemoveSubmissionFromTrashBinRequest, gW as BulkRemoveSubmissionFromTrashBinResult, gD as BulkSubmissionResult, hy as BulkUpdateFormSubmissionTagsByFilterRequest, hw as BulkUpdateFormSubmissionTagsRequest, hx as BulkUpdateFormSubmissionTagsResult, e9 as BulletedListData, cL as ButtonData, ac as ButtonDataType, h$ as ButtonDataTypeWithLiterals, dS as ButtonStyles, eb as CaptionData, dV as CardStyles, aD as CardStylesAlignment, is as CardStylesAlignmentWithLiterals, aC as CardStylesType, ir as CardStylesTypeWithLiterals, e3 as CellStyle, bo as ChangeableProperty, jd as ChangeablePropertyWithLiterals, eG as Checkbox, eP as CheckboxGroup, go as Checkout, cX as CodeBlockData, d$ as CollapsibleListData, dI as ColorData, cN as Colors, jn as CommonQueryWithEntityContext, jm as CommonSearchWithEntityContext, b0 as ComponentType, iR as ComponentTypeWithLiterals, eR as ComponentsTags, gi as Condition, ge as ConditionNode, gf as ConditionNodeNodeOneOf, gN as ConfirmSubmissionRequest, b9 as ConfirmationLevel, i_ as ConfirmationLevelWithLiterals, ba as ContactField, i$ as ContactFieldWithLiterals, eH as CorrectAnswersList, hg as CountDeletedSubmissionsRequest, hd as CountSubmissionsByFilterRequest, hf as CountSubmissionsRequest, bT as CreateCheckoutFromSubmissionRequest, bU as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gn as CreateCheckoutFromSubmissionResponse, gy as CreateSubmissionBySubmitterRequest, gz as CreateSubmissionBySubmitterResponse, gu as CreateSubmissionRequest, gv as CreateSubmissionResponse, al as Crop, i8 as CropWithLiterals, gY as CursorPaging, gZ as CursorPagingMetadata, h1 as CursorQueryPagingMethodOneOf, h4 as CursorSearch, h5 as CursorSearchPagingMethodOneOf, g_ as Cursors, fq as CustomFieldInfo, ep as CustomOption, ct as DataExtensionsDetails, eu as DateInput, ew as DatePicker, cC as DateTimeConstraints, es as DateTimeInput, dF as Decoration, dG as DecorationDataOneOf, aw as DecorationType, ik as DecorationTypeWithLiterals, f3 as DefaultCountryConfig, f4 as DefaultCountryConfigOptionsOneOf, gO as DeleteSubmissionRequest, gP as DeleteSubmissionResponse, dD as Design, aO as DesignTarget, iD as DesignTargetWithLiterals, e1 as Dimensions, aH as Direction, iw as DirectionWithLiterals, fL as DisplayField, fM as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, j0 as DisplayFieldTypeWithLiterals, cZ as DividerData, ah as DividerDataAlignment, i4 as DividerDataAlignmentWithLiterals, hn as DocumentReady, ei as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eZ as DonationInput, e_ as DonationInputOption, ho as DownloadSubmissionRequest, eq as Dropdown, er as DropdownOption, cj as DynamicPriceOptions, fn as EmailInfo, b6 as EmailInfoTag, iX as EmailInfoTagWithLiterals, dZ as EmbedData, gr as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, jh as ErrorTypeWithLiterals, dR as EventData, hG as EventMetadata, bz as ExtendedFields, cv as Field, cw as FieldFieldTypeOptionsOneOf, g7 as FieldGroup, gc as FieldOverride, gd as FieldOverridePropertyTypeOptionsOneOf, cn as FieldOverrides, a6 as FieldType, hV as FieldTypeWithLiterals, hA as FieldViolation, hB as FieldViolationErrorDataOneOf, co as FieldsOverrides, f5 as FieldsSettings, c_ as FileData, c$ as FileSource, d0 as FileSourceDataOneOf, eU as FileType, eV as FileUpload, hM as Filter, aT as FirstDayOfWeek, iI as FirstDayOfWeekWithLiterals, f0 as FixedPayment, ci as FixedPriceOptions, dN as FontFamilyData, dL as FontSizeData, ax as FontType, il as FontTypeWithLiterals, bV as Form, hh as FormDeletedSubmissionsCount, bW as FormField, c6 as FormFieldArrayType, c4 as FormFieldBooleanType, fl as FormFieldContactInfo, fm as FormFieldContactInfoAdditionalInfoOneOf, fZ as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, j7 as FormFieldContactInfoContactFieldWithLiterals, f_ as FormFieldContactInfoCustomFieldInfo, fX as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, j3 as FormFieldContactInfoEmailInfoTagWithLiterals, fY as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, j4 as FormFieldContactInfoPhoneInfoTagWithLiterals, f$ as FormFieldContactInfoSubscriptionInfo, c1 as FormFieldNumberType, c7 as FormFieldObjectType, bX as FormFieldStringType, bY as FormFieldStringTypeFormatOptionsOneOf, f7 as FormLayout, fR as FormOverride, fS as FormProperties, fQ as FormRule, hK as FormSubmissionQuerySpec, hI as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, he as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hW as FormatEnumFormatWithLiterals, iV as FormatWithLiterals, hu as FormattedFormSubmission, hr as FormattedSubmission, dd as GIF, dc as GIFData, an as GIFType, ia as GIFTypeWithLiterals, d2 as GalleryData, d8 as GalleryOptions, d9 as GalleryOptionsLayout, g$ as GetDeletedSubmissionRequest, hq as GetFormattedSubmissionRequest, hi as GetMediaUploadURLRequest, gJ as GetSubmissionByCheckoutIdRequest, gK as GetSubmissionByCheckoutIdResponse, hk as GetSubmissionDownloadUrlRequest, gH as GetSubmissionRequest, gI as GetSubmissionResponse, dw as Gradient, fb as Group, df as HTMLData, dg as HTMLDataDataOneOf, hp as HeadersEntry, de as HeadingData, cS as Height, ga as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, jg as IdentityTypeWithLiterals, d4 as Image, dh as ImageData, dj as ImageDataStyles, aR as ImageFit, iG as ImageFitWithLiterals, aP as ImagePosition, iE as ImagePositionWithLiterals, dT as ImageStyles, fi as InPersonOptions, aG as InitialExpandedItems, iv as InitialExpandedItemsWithLiterals, cx as InputField, cy as InputFieldInputTypeOptionsOneOf, b5 as InputType, iW as InputTypeWithLiterals, c3 as IntegerType, gp as IsFormSubmittableRequest, gq as IsFormSubmittableResponse, d6 as Item, d7 as ItemDataOneOf, f9 as ItemLayout, fa as ItemLayoutItemOneOf, gE as ItemMetadata, da as ItemStyle, aW as ItemType, iL as ItemTypeWithLiterals, bd as Kind, j2 as KindWithLiterals, aE as Layout, ee as LayoutCellData, ec as LayoutData, aL as LayoutDataImagePosition, iA as LayoutDataImagePositionWithLiterals, aj as LayoutType, i6 as LayoutTypeWithLiterals, it as LayoutWithLiterals, g1 as LimitationRule, af as LineStyle, i2 as LineStyleWithLiterals, cU as Link, dJ as LinkData, cV as LinkDataOneOf, dk as LinkPreviewData, dl as LinkPreviewDataStyles, ad as LinkTarget, i0 as LinkTargetWithLiterals, gX as ListDeletedSubmissionsRequest, hs as ListFormattedSubmissionsRequest, ht as ListFormattedSubmissionsResponse, e6 as ListValue, fg as Location, fh as LocationLocationInfoOneOf, dm as MapData, dn as MapSettings, aq as MapType, id as MapTypeWithLiterals, fc as Margin, bG as MarketingSubscriptionDetails, d3 as Media, ek as MediaItem, el as MediaItemMediaOneOf, em as MediaSettings, dK as MentionData, bP as MessageEnvelope, eh as Metadata, bu as Mode, jj as ModeWithLiterals, f1 as MultilineAddress, cm as MultilineAddressValidation, g0 as NestedForm, cq as NestedFormFieldOverrides, cu as NestedFormOverrides, cI as Node, cJ as NodeDataOneOf, cK as NodeStyle, a9 as NodeType, hY as NodeTypeWithLiterals, aJ as NullValue, iy as NullValueWithLiterals, aU as NumberComponentType, iJ as NumberComponentTypeWithLiterals, eA as NumberCorrectAnswersList, c2 as NumberErrorMessages, eD as NumberInput, aS as NumberOfColumns, iH as NumberOfColumnsWithLiterals, eC as NumberQuizFieldSettings, eB as NumberType, fJ as ObjectArray, b2 as ObjectArrayComponentType, fK as ObjectArrayComponentTypeOptionsOneOf, iT as ObjectArrayComponentTypeWithLiterals, cp as ObjectArrayType, ca as ObjectErrorMessages, eJ as ObjectType, c8 as ObjectTypePropertiesType, c9 as ObjectTypePropertiesTypePropertiesTypeOneOf, d_ as Oembed, bq as Operator, jf as OperatorWithLiterals, a0 as OptInLevel, hP as OptInLevelWithLiterals, eQ as Option, dA as OptionDesign, dv as OptionLayout, gh as OrCondition, bA as OrderDetails, e8 as OrderedListData, ak as Orientation, i7 as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, je as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j1 as OverrideEntityTypeWithLiterals, d1 as PDFSettings, fO as PageNavigationOptions, dp as ParagraphData, ez as Password, fD as Payment, a$ as PaymentComponentType, fE as PaymentComponentTypeOptionsOneOf, iQ as PaymentComponentTypeWithLiterals, e$ as PaymentInput, cg as PaymentType, dr as Permissions, cD as PhoneConstraints, fo as PhoneInfo, b7 as PhoneInfoTag, iY as PhoneInfoTagWithLiterals, et as PhoneInput, fk as PhoneOptions, aB as Placement, iq as PlacementWithLiterals, dY as PlaybackOptions, cO as PluginContainerData, ab as PluginContainerDataAlignment, h_ as PluginContainerDataAlignmentWithLiterals, cP as PluginContainerDataWidth, cQ as PluginContainerDataWidthDataOneOf, dB as Poll, dq as PollData, dC as PollDataLayout, dz as PollDesign, du as PollLayout, au as PollLayoutDirection, ii as PollLayoutDirectionWithLiterals, at as PollLayoutType, ih as PollLayoutTypeWithLiterals, ds as PollOption, ay as Position, im as PositionWithLiterals, fT as PostSubmissionTriggers, ce as PredefinedValidation, cf as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hU as PriceTypeWithLiterals, dW as PricingData, ck as Product, eX as ProductCheckboxGroup, eY as ProductCheckboxGroupOption, cl as ProductPriceOptionsOneOf, a4 as ProductType, hT as ProductTypeWithLiterals, eK as PropertiesType, aX as PropertiesTypeEnum, iM as PropertiesTypeEnumWithLiterals, eL as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, ch as QuantityLimit, hL as QueryBuilder, h0 as QuerySubmissionRequest, hb as QuerySubmissionsByNamespaceForExportRequest, hc as QuerySubmissionsByNamespaceForExportResponse, h9 as QuerySubmissionsByNamespaceRequest, ha as QuerySubmissionsByNamespaceResponse, eO as QuizFieldSettings, en as RadioGroup, eo as RadioGroupOption, eE as RatingInput, g6 as RedirectOptions, cW as Rel, gT as RemoveSubmissionFromTrashBinRequest, gU as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, f6 as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, ja as RequiredIndicatorPlacementWithLiterals, g2 as RequiredIndicatorProperties, j9 as RequiredIndicatorWithLiterals, g9 as RequiredOptions, aA as Resizing, ip as ResizingWithLiterals, aN as ResponsivenessBehaviour, iC as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gS as RestoreSubmissionFromTrashBinRequest, dU as RibbonStyles, cH as RichContent, fN as RichContentOptions, g8 as Rule, gj as RuleFormOverride, gk as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, iz as ScalingWithLiterals, fF as Scheduling, b3 as SchedulingComponentType, fG as SchedulingComponentTypeOptionsOneOf, iU as SchedulingComponentTypeWithLiterals, h6 as SearchDetails, h7 as SearchSubmissionsByNamespaceForExportRequest, h8 as SearchSubmissionsByNamespaceForExportResponse, h3 as SearchSubmissionsByNamespaceRequest, fd as Section, ey as ServiceOption, eT as ServicesCheckboxGroup, ex as ServicesDropdown, dt as Settings, ef as ShapeData, eg as ShapeDataStyles, eW as Signature, hN as Sort, bt as SortOrder, ji as SortOrderWithLiterals, h2 as Sorting, ao as Source, ib as SourceWithLiterals, bj as SpamFilterProtectionLevel, j8 as SpamFilterProtectionLevelWithLiterals, cR as Spoiler, dM as SpoilerData, bv as Status, jk as StatusWithLiterals, fP as Step, a8 as StringComponentType, hX as StringComponentTypeWithLiterals, cz as StringCorrectAnswersList, bZ as StringErrorMessages, cF as StringQuizFieldSettings, cA as StringType, b_ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hR as StringTypeFormatEnumFormatWithLiterals, cB as StringTypeFormatOptionsOneOf, b$ as StringTypePhoneConstraints, c0 as StringTypeValidationMessages, cT as Styles, di as StylesBorder, ap as StylesPosition, ic as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hl as SubmissionDocument, hm as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jl as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hO as SubmissionStatusWithLiterals, hD as SubmissionValidationError, hE as SubmissionValidationErrorErrorMessageOneOf, hC as SubmissionValidationErrors, gw as SubmissionValidationErrorsDetails, hJ as SubmissionsQueryResult, gt as SubmitContactResponse, g3 as SubmitSettings, g4 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, jc as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fr as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, j6 as SubscriptionInfoOptInLevelWithLiterals, e2 as TableCellData, e0 as TableData, b8 as Tag, bC as TagList, iZ as TagWithLiterals, gl as Tags, eS as TagsOption, gm as TagsTagList, bm as Target, jb as TargetWithLiterals, ae as TextAlignment, i1 as TextAlignmentWithLiterals, dE as TextData, cG as TextInput, ej as TextNodeStyle, cY as TextStyle, g5 as ThankYouMessageOptions, db as Thumbnails, am as ThumbnailsAlignment, i9 as ThumbnailsAlignmentWithLiterals, ev as TimeInput, b1 as Type, iS as TypeWithLiterals, hv as UpdateExtendedFieldsRequest, gL as UpdateSubmissionRequest, gM as UpdateSubmissionResponse, a_ as UploadFileFormat, iP as UploadFileFormatWithLiterals, fU as UpsertContact, gs as UpsertContactFromSubmissionRequest, fV as V4FormFieldContactInfo, fW as V4FormFieldContactInfoAdditionalInfoOneOf, hz as ValidateFormSubmissionRequest, cr as Validation, gx as ValidationError, a3 as ValidationFormat, hS as ValidationFormatWithLiterals, cE as ValidationMessages, cs as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, iB as VerticalAlignmentAlignmentWithLiterals, ix as VerticalAlignmentWithLiterals, d5 as Video, fj as VideoConferenceOptions, dX as VideoData, ai as ViewMode, i5 as ViewModeWithLiterals, ar as ViewRole, ie as ViewRoleWithLiterals, as as VoteRole, ig as VoteRoleWithLiterals, a1 as WebhookIdentityType, hQ as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hZ as WidthTypeWithLiterals, i3 as WidthWithLiterals, fB as WixFile, aZ as WixFileComponentType, fC as WixFileComponentTypeOptionsOneOf, iO as WixFileComponentTypeWithLiterals, fy as _Array, fz as _ArrayComponentTypeOptionsOneOf, fw as _Boolean, fx as _BooleanComponentTypeOptionsOneOf, fu as _Number, fv as _NumberComponentTypeOptionsOneOf, fA as _Object, fs as _String, ft as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-D-Uxphls.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -43,6 +43,7 @@ __export(index_exports, {
43
43
  EmailInfoTag: () => EmailInfoTag,
44
44
  ErrorType: () => ErrorType,
45
45
  FieldType: () => FieldType,
46
+ Filter: () => Filter,
46
47
  FirstDayOfWeek: () => FirstDayOfWeek,
47
48
  FontType: () => FontType,
48
49
  FormFieldContactInfoContactField: () => FormFieldContactInfoContactField,
@@ -85,12 +86,14 @@ __export(index_exports, {
85
86
  PriceType: () => PriceType,
86
87
  ProductType: () => ProductType,
87
88
  PropertiesTypeEnum: () => PropertiesTypeEnum,
89
+ QueryBuilder: () => QueryBuilder,
88
90
  RequiredIndicator: () => RequiredIndicator,
89
91
  RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
90
92
  Resizing: () => Resizing,
91
93
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
92
94
  Scaling: () => Scaling,
93
95
  SchedulingComponentType: () => SchedulingComponentType,
96
+ Sort: () => Sort,
94
97
  SortOrder: () => SortOrder,
95
98
  Source: () => Source,
96
99
  SpamFilterProtectionLevel: () => SpamFilterProtectionLevel,
@@ -267,6 +270,18 @@ function resolveWixFormsV4FormSubmissionServiceUrl(opts) {
267
270
  srcPath: "/_api/form-submission-service",
268
271
  destPath: ""
269
272
  }
273
+ ],
274
+ "apps.wixel.com": [
275
+ {
276
+ srcPath: "/_api/form-submission-service",
277
+ destPath: ""
278
+ }
279
+ ],
280
+ "*.wixel.com": [
281
+ {
282
+ srcPath: "/_api/form-submission-service",
283
+ destPath: ""
284
+ }
270
285
  ]
271
286
  };
272
287
  return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
@@ -1002,6 +1017,7 @@ function validateFormSubmission(payload) {
1002
1017
 
1003
1018
  // src/forms-v4-submission-submissions.universal.ts
1004
1019
  var import_transform_paths2 = require("@wix/sdk-runtime/transformations/transform-paths");
1020
+ var import_query_builder_utils = require("@wix/sdk-runtime/query-builder-utils");
1005
1021
  var SubmissionStatus = /* @__PURE__ */ ((SubmissionStatus2) => {
1006
1022
  SubmissionStatus2["UNKNOWN_SUBMISSION_STATUS"] = "UNKNOWN_SUBMISSION_STATUS";
1007
1023
  SubmissionStatus2["PENDING"] = "PENDING";
@@ -1132,6 +1148,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1132
1148
  NodeType2["CAPTION"] = "CAPTION";
1133
1149
  NodeType2["LAYOUT"] = "LAYOUT";
1134
1150
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
1151
+ NodeType2["SHAPE"] = "SHAPE";
1135
1152
  return NodeType2;
1136
1153
  })(NodeType || {});
1137
1154
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
@@ -2229,6 +2246,7 @@ async function typedQuerySubmissionsByNamespace(query, options) {
2229
2246
  throw transformedError;
2230
2247
  }
2231
2248
  }
2249
+ var { QueryBuilder, Filter, Sort } = (0, import_query_builder_utils.createQueryUtils)();
2232
2250
  async function countSubmissionsByFilter2(filter, options) {
2233
2251
  const { httpClient, sideEffects } = arguments[2];
2234
2252
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
@@ -2995,6 +3013,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
2995
3013
  EmailInfoTag,
2996
3014
  ErrorType,
2997
3015
  FieldType,
3016
+ Filter,
2998
3017
  FirstDayOfWeek,
2999
3018
  FontType,
3000
3019
  FormFieldContactInfoContactField,
@@ -3037,12 +3056,14 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
3037
3056
  PriceType,
3038
3057
  ProductType,
3039
3058
  PropertiesTypeEnum,
3059
+ QueryBuilder,
3040
3060
  RequiredIndicator,
3041
3061
  RequiredIndicatorPlacement,
3042
3062
  Resizing,
3043
3063
  ResponsivenessBehaviour,
3044
3064
  Scaling,
3045
3065
  SchedulingComponentType,
3066
+ Sort,
3046
3067
  SortOrder,
3047
3068
  Source,
3048
3069
  SpamFilterProtectionLevel,