@wix/auto_sdk_forms_submissions 1.0.53 → 1.0.55

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/{internal/cjs/forms-v4-submission-submissions.universal-Z3D2uyjn.d.ts → cjs/forms-v4-submission-submissions.universal-BW4xE-Oq.d.ts} +161 -122
  2. package/build/cjs/index.d.ts +13 -3
  3. package/build/cjs/index.js +69 -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 +60 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +26 -2
  9. package/build/cjs/meta.js +45 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/{internal/es/forms-v4-submission-submissions.universal-Z3D2uyjn.d.mts → es/forms-v4-submission-submissions.universal-BW4xE-Oq.d.mts} +161 -122
  12. package/build/es/index.d.mts +13 -3
  13. package/build/es/index.mjs +67 -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 +58 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +26 -2
  19. package/build/es/meta.mjs +44 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/{cjs/forms-v4-submission-submissions.universal-DPfbliR-.d.ts → internal/cjs/forms-v4-submission-submissions.universal-C2nk1vxO.d.ts} +193 -90
  22. package/build/internal/cjs/index.d.ts +13 -3
  23. package/build/internal/cjs/index.js +69 -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 +60 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +26 -2
  29. package/build/internal/cjs/meta.js +45 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/{es/forms-v4-submission-submissions.universal-DPfbliR-.d.mts → internal/es/forms-v4-submission-submissions.universal-C2nk1vxO.d.mts} +193 -90
  32. package/build/internal/es/index.d.mts +13 -3
  33. package/build/internal/es/index.mjs +67 -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 +58 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +26 -2
  39. package/build/internal/es/meta.mjs +44 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -4860,6 +4860,135 @@ declare enum ComponentType {
4860
4860
  }
4861
4861
  /** @enumType */
4862
4862
  type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
4863
+ declare enum ObjectArrayComponentType {
4864
+ /** Unknown component type. */
4865
+ UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
4866
+ /** Repeater component. */
4867
+ REPEATER = "REPEATER"
4868
+ }
4869
+ /** @enumType */
4870
+ type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER';
4871
+ interface ObjectArrayType {
4872
+ /**
4873
+ * Maximum number of elements allowed in the array.
4874
+ * @max 1000
4875
+ */
4876
+ maxItems?: number | null;
4877
+ /**
4878
+ * Minimum number of elements required in the array.
4879
+ * @max 1000
4880
+ */
4881
+ minItems?: number | null;
4882
+ }
4883
+ interface Repeater {
4884
+ /**
4885
+ * Field label.
4886
+ * @maxLength 350
4887
+ */
4888
+ label?: string | null;
4889
+ /** Additional description or instructions for the field. */
4890
+ description?: RichContent;
4891
+ /**
4892
+ * Whether to display the label.
4893
+ *
4894
+ * Default: `true`
4895
+ */
4896
+ showLabel?: boolean | null;
4897
+ /**
4898
+ * Form fields that define the input elements inside repeater.
4899
+ * @maxSize 10
4900
+ */
4901
+ fields?: Field[];
4902
+ /** Layout configuration that defines how form fields are arranged within this repeater. */
4903
+ layout?: FormLayout;
4904
+ }
4905
+ interface FormLayout {
4906
+ /** Layout configuration for large screen breakpoints (desktop). */
4907
+ large?: BreakPoint;
4908
+ /** Layout configuration for medium screen breakpoints (tablet). */
4909
+ medium?: BreakPoint;
4910
+ /** Layout configuration for small screen breakpoints (mobile). */
4911
+ small?: BreakPoint;
4912
+ }
4913
+ interface BreakPoint {
4914
+ /**
4915
+ * Configuration for the layout of items in the breakpoint.
4916
+ * @maxSize 500
4917
+ */
4918
+ items?: ItemLayout[];
4919
+ /** Number of columns in the layout grid. */
4920
+ columns?: number | null;
4921
+ /** Height of each row in the layout grid, measured in pixels. */
4922
+ rowHeight?: number | null;
4923
+ /** Margin spacing configuration for the form elements. */
4924
+ margin?: Margin;
4925
+ /** Padding spacing inside form elements in pixels. */
4926
+ padding?: Margin;
4927
+ }
4928
+ interface ItemLayout extends ItemLayoutItemOneOf {
4929
+ /**
4930
+ * ID of the form field to be positioned in the layout.
4931
+ * @format GUID
4932
+ */
4933
+ fieldId?: string;
4934
+ /** Group configuration for positioning multiple fields as a single layout unit. */
4935
+ group?: Group;
4936
+ /** Row position in the grid where this item is placed. */
4937
+ row?: number | null;
4938
+ /** Column position in the grid where this item is placed. */
4939
+ column?: number | null;
4940
+ /** Width of the item in grid units. */
4941
+ width?: number | null;
4942
+ /** Height of the item in grid units. */
4943
+ height?: number | null;
4944
+ }
4945
+ /** @oneof */
4946
+ interface ItemLayoutItemOneOf {
4947
+ /**
4948
+ * ID of the form field to be positioned in the layout.
4949
+ * @format GUID
4950
+ */
4951
+ fieldId?: string;
4952
+ /** Group configuration for positioning multiple fields as a single layout unit. */
4953
+ group?: Group;
4954
+ }
4955
+ interface Group {
4956
+ /**
4957
+ * ID of the field group.
4958
+ * @format GUID
4959
+ */
4960
+ groupId?: string;
4961
+ /**
4962
+ * Layout configuration for individual items within this group.
4963
+ * @minSize 1
4964
+ * @maxSize 500
4965
+ */
4966
+ items?: ItemLayout[];
4967
+ }
4968
+ interface Margin {
4969
+ /** Horizontal spacing in pixels. */
4970
+ horizontal?: number | null;
4971
+ /** Vertical spacing in pixels. */
4972
+ vertical?: number | null;
4973
+ }
4974
+ interface Section {
4975
+ /**
4976
+ * Section ID.
4977
+ * @format GUID
4978
+ * @minLength 1
4979
+ */
4980
+ _id?: string;
4981
+ /** Row position where this section is placed in the grid. */
4982
+ row?: number | null;
4983
+ /**
4984
+ * A list of field IDs that can be placed within the section.
4985
+ * The section only accepts fields with IDs specified in this list.
4986
+ * If the `$new` key is contained in this list, the section allows the inclusion of fields not explicitly listed, enabling dynamic addition of new fields.
4987
+ * @maxSize 100
4988
+ * @maxLength 100
4989
+ */
4990
+ allowedFieldIds?: string[];
4991
+ }
4863
4992
  declare enum SchedulingComponentType {
4864
4993
  /** Unknown component type. */
4865
4994
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
@@ -5197,6 +5326,22 @@ interface AddressComponentTypeOptionsOneOf {
5197
5326
  /** Multiline address component settings. */
5198
5327
  multilineAddressOptions?: MultilineAddress;
5199
5328
  }
5329
+ interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
5330
+ /** Repeater component settings. */
5331
+ repeaterOptions?: Repeater;
5332
+ /**
5333
+ * Component type of the object array input.
5334
+ * @readonly
5335
+ */
5336
+ componentType?: ObjectArrayComponentTypeWithLiterals;
5337
+ /** Validation configuration for the object array input. */
5338
+ validation?: ObjectArrayType;
5339
+ }
5340
+ /** @oneof */
5341
+ interface ObjectArrayComponentTypeOptionsOneOf {
5342
+ /** Repeater component settings. */
5343
+ repeaterOptions?: Repeater;
5344
+ }
5200
5345
  interface FieldsDisplayField extends FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
5201
5346
  /** Configuration for rich content display fields. */
5202
5347
  richContentOptions?: RichContentOptions;
@@ -5270,93 +5415,6 @@ interface Step {
5270
5415
  /** Layout configuration that defines how form fields are arranged within this step. */
5271
5416
  layout?: FormLayout;
5272
5417
  }
5273
- interface FormLayout {
5274
- /** Layout configuration for large screen breakpoints (desktop). */
5275
- large?: BreakPoint;
5276
- /** Layout configuration for medium screen breakpoints (tablet). */
5277
- medium?: BreakPoint;
5278
- /** Layout configuration for small screen breakpoints (mobile). */
5279
- small?: BreakPoint;
5280
- }
5281
- interface BreakPoint {
5282
- /**
5283
- * Configuration for the layout of items in the breakpoint.
5284
- * @maxSize 500
5285
- */
5286
- items?: ItemLayout[];
5287
- /** Number of columns in the layout grid. */
5288
- columns?: number | null;
5289
- /** Height of each row in the layout grid, measured in pixels. */
5290
- rowHeight?: number | null;
5291
- /** Margin spacing configuration for the form elements. */
5292
- margin?: Margin;
5293
- /** Padding spacing inside form elements in pixels. */
5294
- padding?: Margin;
5295
- }
5296
- interface ItemLayout extends ItemLayoutItemOneOf {
5297
- /**
5298
- * ID of the form field to be positioned in the layout.
5299
- * @format GUID
5300
- */
5301
- fieldId?: string;
5302
- /** Group configuration for positioning multiple fields as a single layout unit. */
5303
- group?: Group;
5304
- /** Row position in the grid where this item is placed. */
5305
- row?: number | null;
5306
- /** Column position in the grid where this item is placed. */
5307
- column?: number | null;
5308
- /** Width of the item in grid units. */
5309
- width?: number | null;
5310
- /** Height of the item in grid units. */
5311
- height?: number | null;
5312
- }
5313
- /** @oneof */
5314
- interface ItemLayoutItemOneOf {
5315
- /**
5316
- * ID of the form field to be positioned in the layout.
5317
- * @format GUID
5318
- */
5319
- fieldId?: string;
5320
- /** Group configuration for positioning multiple fields as a single layout unit. */
5321
- group?: Group;
5322
- }
5323
- interface Group {
5324
- /**
5325
- * ID of the field group.
5326
- * @format GUID
5327
- */
5328
- groupId?: string;
5329
- /**
5330
- * Layout configuration for individual items within this group.
5331
- * @minSize 1
5332
- * @maxSize 500
5333
- */
5334
- items?: ItemLayout[];
5335
- }
5336
- interface Margin {
5337
- /** Horizontal spacing in pixels. */
5338
- horizontal?: number | null;
5339
- /** Vertical spacing in pixels. */
5340
- vertical?: number | null;
5341
- }
5342
- interface Section {
5343
- /**
5344
- * Section ID.
5345
- * @format GUID
5346
- * @minLength 1
5347
- */
5348
- _id?: string;
5349
- /** Row position where this section is placed in the grid. */
5350
- row?: number | null;
5351
- /**
5352
- * A list of field IDs that can be placed within the section.
5353
- * The section only accepts fields with IDs specified in this list.
5354
- * If the `$new` key is contained in this list, the section allows the inclusion of fields not explicitly listed, enabling dynamic addition of new fields.
5355
- * @maxSize 100
5356
- * @maxLength 100
5357
- */
5358
- allowedFieldIds?: string[];
5359
- }
5360
5418
  interface FormRule {
5361
5419
  /**
5362
5420
  * Rule ID.
@@ -5999,11 +6057,6 @@ interface CreateSubmissionRequest {
5999
6057
  * @maxLength 3000
6000
6058
  */
6001
6059
  captchaToken?: string | null;
6002
- /**
6003
- * Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data.
6004
- * @internal
6005
- */
6006
- additionalMetadata?: Record<string, any> | null;
6007
6060
  }
6008
6061
  interface CreateSubmissionResponse {
6009
6062
  /** The created submission. */
@@ -6714,12 +6767,12 @@ interface DownloadSubmissionRequest {
6714
6767
  * Submission id for which the document is generated.
6715
6768
  * @format GUID
6716
6769
  */
6717
- submissionId?: string;
6770
+ submissionId: string;
6718
6771
  /**
6719
6772
  * Access token to download the document.
6720
6773
  * @maxLength 10000
6721
6774
  */
6722
- accessToken?: string;
6775
+ accessToken: string;
6723
6776
  }
6724
6777
  interface RawHttpResponse {
6725
6778
  body?: Uint8Array;
@@ -7277,11 +7330,6 @@ interface CreateSubmissionOptions {
7277
7330
  * @maxLength 3000
7278
7331
  */
7279
7332
  captchaToken?: string | null;
7280
- /**
7281
- * Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data.
7282
- * @internal
7283
- */
7284
- additionalMetadata?: Record<string, any> | null;
7285
7333
  }
7286
7334
  /**
7287
7335
  * Retrieves a submission by ID.
@@ -7822,6 +7870,19 @@ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promi
7822
7870
  * @fqn wix.forms.v4.FormSubmissionService.GetSubmissionDownloadUrl
7823
7871
  */
7824
7872
  declare function getSubmissionDownloadUrl(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
7873
+ /**
7874
+ * Download a submission document by redirecting to the document URL.
7875
+ * @param submissionId - Submission id for which the document is generated.
7876
+ * @param accessToken - Access token to download the document.
7877
+ * @public
7878
+ * @documentationMaturity preview
7879
+ * @requiredField accessToken
7880
+ * @requiredField submissionId
7881
+ * @permissionId WIX_FORMS.SUBMISSION_READ_ANY
7882
+ * @applicableIdentity APP
7883
+ * @fqn wix.forms.v4.FormSubmissionService.DownloadSubmission
7884
+ */
7885
+ declare function downloadSubmission(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
7825
7886
  /**
7826
7887
  * Retrieves a submission formatted by language
7827
7888
  * @param submissionId - Submission ID.
@@ -7852,34 +7913,12 @@ interface UpdateExtendedFieldsOptions {
7852
7913
  /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */
7853
7914
  namespaceData: Record<string, any> | null;
7854
7915
  }
7855
- /**
7856
- * Bulk update tags on form submissions.
7857
- * @param submissionIds - Submission IDs to update tags for.
7858
- * @internal
7859
- * @documentationMaturity preview
7860
- * @requiredField submissionIds
7861
- * @permissionId WIX_FORMS.SUBMISSION_UPDATE_ANY
7862
- * @applicableIdentity APP
7863
- * @fqn wix.forms.v4.FormSubmissionService.BulkUpdateFormSubmissionTags
7864
- */
7865
- declare function bulkUpdateFormSubmissionTags(submissionIds: string[], options?: BulkUpdateFormSubmissionTagsOptions): Promise<NonNullablePaths<BulkUpdateFormSubmissionTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
7866
7916
  interface BulkUpdateFormSubmissionTagsOptions {
7867
7917
  /** Tags to be added to submissions */
7868
7918
  assignTags?: PublicTags;
7869
7919
  /** Tags to be removed from submissions */
7870
7920
  unassignTags?: PublicTags;
7871
7921
  }
7872
- /**
7873
- * Bulk update tags on form submissions by filter.
7874
- * @param filter - Filter to select the submission to update
7875
- * @internal
7876
- * @documentationMaturity preview
7877
- * @requiredField filter
7878
- * @permissionId WIX_FORMS.SUBMISSION_UPDATE_ANY
7879
- * @applicableIdentity APP
7880
- * @fqn wix.forms.v4.FormSubmissionService.BulkUpdateFormSubmissionTagsByFilter
7881
- */
7882
- declare function bulkUpdateFormSubmissionTagsByFilter(filter: Record<string, any>, options?: BulkUpdateFormSubmissionTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateFormSubmissionTagsByFilterResponse, `jobId`, 2>>;
7883
7922
  interface BulkUpdateFormSubmissionTagsByFilterOptions {
7884
7923
  /** Tags to be added to submissions */
7885
7924
  assignTags?: PublicTags;
@@ -7907,4 +7946,4 @@ interface ValidateFormSubmissionOptions {
7907
7946
  fieldsToValidate?: string[];
7908
7947
  }
7909
7948
 
7910
- export { ProductType 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, SubmissionStatus as X, OptInLevel as Y, StringTypeFormatEnumFormat as Z, ValidationFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldV2FieldType as a$, PriceType as a0, InputFieldStringTypeFormatEnumFormat as a1, InputFieldStringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, ImagePosition as aE, Alignment as aF, ImageFit as aG, NumberOfColumns as aH, FirstDayOfWeek as aI, InputFieldNumberComponentType as aJ, InputFieldBooleanComponentType as aK, ArrayItemsItemType as aL, PropertiesTypePropertiesTypeEnum as aM, InputFieldArrayComponentType as aN, InputFieldWixFileComponentType as aO, UploadFileFormat as aP, InputFieldPaymentComponentType as aQ, InputFieldSchedulingComponentType as aR, Format as aS, MultilineAddressComponentType as aT, Type as aU, InputFieldInputType as aV, FormFieldContactInfoEmailInfoTag as aW, FormFieldContactInfoPhoneInfoTag as aX, AddressInfoTag as aY, SubscriptionInfoOptInLevel as aZ, FormFieldContactInfoContactField as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type FormFieldArrayType as b$, DisplayFieldType as b0, FieldType as b1, FormatEnumFormat as b2, StringComponentType as b3, NumberComponentType as b4, BooleanComponentType as b5, ItemType as b6, PropertiesTypeEnum as b7, ArrayComponentType as b8, WixFileComponentType as b9, SubmissionErrorType as bA, type Submitter as bB, type SubmitterSubmitterOneOf as bC, type ExtendedFields as bD, type OrderDetails as bE, type PublicTags as bF, type TagList as bG, type FormSubmissionStatusUpdatedEvent as bH, type RemovedSubmissionFromTrash as bI, type SubmissionContactMapped as bJ, type MarketingSubscriptionDetails as bK, type SubmissionContactMappingSkipped as bL, type CreateCheckoutFromSubmissionRequest as bM, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bN, type Form as bO, type FormField as bP, type FormFieldStringType as bQ, type FormFieldStringTypeFormatOptionsOneOf as bR, type StringErrorMessages as bS, type StringTypeDateTimeConstraints as bT, type StringTypePhoneConstraints as bU, type StringTypeValidationMessages as bV, type FormFieldNumberType as bW, type NumberErrorMessages as bX, type IntegerType as bY, type FormFieldBooleanType as bZ, type BooleanErrorMessages as b_, PaymentComponentType as ba, ComponentType as bb, SchedulingComponentType as bc, InputType as bd, EmailInfoTag as be, PhoneInfoTag as bf, Tag as bg, ConfirmationLevel as bh, ContactField as bi, DisplayFieldDisplayFieldType as bj, OverrideEntityType as bk, Kind as bl, SpamFilterProtectionLevel as bm, RequiredIndicator as bn, RequiredIndicatorPlacement as bo, Target as bp, SubmitSuccessAction as bq, ChangeableProperty as br, OverrideEntityTypeEnumOverrideEntityType as bs, Operator as bt, WebhookIdentityType as bu, IdentityType as bv, ErrorType as bw, SortOrder as bx, Mode as by, Status as bz, type CreateSubmissionValidationErrors as c, type GIFData as c$, type FormFieldObjectType as c0, type ObjectTypePropertiesType as c1, type ObjectTypePropertiesTypePropertiesTypeOneOf as c2, type ObjectErrorMessages as c3, type ArrayTypeArrayItems as c4, type ArrayTypeArrayItemsItemsOneOf as c5, type ArrayErrorMessages as c6, type PredefinedValidation as c7, type PredefinedValidationFormatOptionsOneOf as c8, type PaymentType as c9, type Colors as cA, type PluginContainerData as cB, type PluginContainerDataWidth as cC, type PluginContainerDataWidthDataOneOf as cD, type Spoiler as cE, type Height as cF, type Styles as cG, type Link as cH, type LinkDataOneOf as cI, type Rel as cJ, type CodeBlockData as cK, type TextStyle as cL, type DividerData as cM, type FileData as cN, type FileSource as cO, type FileSourceDataOneOf as cP, type PDFSettings as cQ, type GalleryData as cR, type Media as cS, type Image as cT, type Video as cU, type Item as cV, type ItemDataOneOf as cW, type GalleryOptions as cX, type GalleryOptionsLayout as cY, type ItemStyle as cZ, type Thumbnails as c_, type QuantityLimit as ca, type FixedPriceOptions as cb, type DynamicPriceOptions as cc, type Product as cd, type ProductPriceOptionsOneOf as ce, type MultilineAddressValidation as cf, type FieldOverrides as cg, type FieldsOverrides as ch, type NestedFormFieldOverrides as ci, type Validation as cj, type ValidationValidationOneOf as ck, type DataExtensionsDetails as cl, type NestedFormOverrides as cm, type FormFieldV2 as cn, type FormFieldV2FieldTypeOptionsOneOf as co, type InputFieldStringType as cp, type InputFieldStringTypeFormatOptionsOneOf as cq, type InputFieldStringTypeDateTimeConstraints as cr, type InputFieldStringTypePhoneConstraints as cs, type TextInput as ct, type RichContent as cu, type Node as cv, type NodeDataOneOf as cw, type NodeStyle as cx, type ButtonData as cy, type Border as cz, type UpdateSubmission as d, type DocumentStyle as d$, type GIF as d0, type HeadingData as d1, type HTMLData as d2, type HTMLDataDataOneOf as d3, type ImageData as d4, type StylesBorder as d5, type ImageDataStyles as d6, type LinkPreviewData as d7, type LinkPreviewDataStyles as d8, type MapData as d9, type AppEmbedData as dA, type AppEmbedDataAppDataOneOf as dB, type BookingData as dC, type EventData as dD, type ButtonStyles as dE, type ImageStyles as dF, type RibbonStyles as dG, type CardStyles as dH, type PricingData as dI, type VideoData as dJ, type PlaybackOptions as dK, type EmbedData as dL, type Oembed as dM, type CollapsibleListData as dN, type TableData as dO, type Dimensions as dP, type TableCellData as dQ, type CellStyle as dR, type BorderColors as dS, type ListValue as dT, type AudioData as dU, type OrderedListData as dV, type BulletedListData as dW, type BlockquoteData as dX, type CaptionData as dY, type LayoutCellData as dZ, type Metadata as d_, type MapSettings as da, type ParagraphData as db, type PollData as dc, type Permissions as dd, type PollOption as de, type Settings as df, type PollLayout as dg, type OptionLayout as dh, type Gradient as di, type Background as dj, type BackgroundBackgroundOneOf as dk, type PollDesign as dl, type OptionDesign as dm, type Poll as dn, type PollDataLayout as dp, type Design as dq, type TextData as dr, type Decoration as ds, type DecorationDataOneOf as dt, type AnchorData as du, type ColorData as dv, type LinkData as dw, type MentionData as dx, type FontSizeData as dy, type SpoilerData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Number as e$, type TextNodeStyle as e0, type MediaItem as e1, type MediaItemMediaOneOf as e2, type MediaSettings as e3, type RadioGroup as e4, type RadioGroupOption as e5, type CustomOption as e6, type Dropdown as e7, type DropdownOption as e8, type DateTimeInput as e9, type ProductCheckboxGroup as eA, type ProductCheckboxGroupOption as eB, type DonationInput as eC, type DonationInputOption as eD, type PaymentInput as eE, type FixedPayment as eF, type Appointment as eG, type AppointmentFormatInfoOneOf as eH, type Location as eI, type LocationLocationInfoOneOf as eJ, type InPersonOptions as eK, type VideoConferenceOptions as eL, type PhoneOptions as eM, type MultilineAddress as eN, type AddressLine2 as eO, type DefaultCountryConfig as eP, type DefaultCountryConfigOptionsOneOf as eQ, type FieldsSettings as eR, type V4FormFieldContactInfo as eS, type V4FormFieldContactInfoAdditionalInfoOneOf as eT, type FormFieldContactInfoEmailInfo as eU, type FormFieldContactInfoPhoneInfo as eV, type FormFieldContactInfoAddressInfo as eW, type FormFieldContactInfoCustomFieldInfo as eX, type FormFieldContactInfoSubscriptionInfo as eY, type InputField_String as eZ, type InputField_StringComponentTypeOptionsOneOf as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServiceOption as ef, type InputFieldNumberType as eg, type NumberInput as eh, type RatingInput as ei, type InputFieldBooleanType as ej, type Checkbox as ek, type InputFieldArrayType as el, type InputFieldIntegerType as em, type InputFieldObjectType as en, type InputFieldObjectTypePropertiesType as eo, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ep, type InputFieldArrayTypeArrayItems as eq, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as er, type CheckboxGroup as es, type Option as et, type Tags as eu, type TagsOption as ev, type ServicesCheckboxGroup as ew, type FileType as ex, type FileUpload as ey, type Signature as ez, type ConfirmSubmissionResponse as f, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as f$, type InputField_NumberComponentTypeOptionsOneOf as f0, type InputField_Boolean as f1, type InputField_BooleanComponentTypeOptionsOneOf as f2, type InputField_Array as f3, type InputField_ArrayComponentTypeOptionsOneOf as f4, type InputField_Object as f5, type InputField_ObjectValidationOneOf as f6, type InputFieldWixFile as f7, type InputFieldWixFileComponentTypeOptionsOneOf as f8, type InputFieldPayment as f9, type ArrayItems as fA, type ArrayItemsItemTypeOptionsOneOf as fB, type FormFieldContactInfo as fC, type FormFieldContactInfoAdditionalInfoOneOf as fD, type EmailInfo as fE, type PhoneInfo as fF, type AddressInfo as fG, type CustomFieldInfo as fH, type SubscriptionInfo as fI, type _String as fJ, type _StringComponentTypeOptionsOneOf as fK, type _Number as fL, type _NumberComponentTypeOptionsOneOf as fM, type _Boolean as fN, type _BooleanComponentTypeOptionsOneOf as fO, type _Array as fP, type _ArrayComponentTypeOptionsOneOf as fQ, type _Object as fR, type WixFile as fS, type WixFileComponentTypeOptionsOneOf as fT, type Payment as fU, type PaymentComponentTypeOptionsOneOf as fV, type Scheduling as fW, type SchedulingComponentTypeOptionsOneOf as fX, type Address as fY, type AddressComponentTypeOptionsOneOf as fZ, type FieldsDisplayField as f_, type InputFieldPaymentComponentTypeOptionsOneOf as fa, type InputFieldMultilineAddress as fb, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fc, type InputFieldScheduling as fd, type InputFieldSchedulingComponentTypeOptionsOneOf as fe, type FormFieldV2InputField as ff, type FormFieldV2InputFieldInputTypeOptionsOneOf as fg, type DisplayField as fh, type DisplayFieldDisplayFieldTypeOptionsOneOf as fi, type V4RichContentOptions as fj, type V4PageNavigationOptions as fk, type Field as fl, type FieldFieldTypeOptionsOneOf as fm, type InputField as fn, type InputFieldInputTypeOptionsOneOf as fo, type StringType as fp, type StringTypeFormatOptionsOneOf as fq, type DateTimeConstraints as fr, type PhoneConstraints as fs, type ValidationMessages as ft, type NumberType as fu, type BooleanType as fv, type ArrayType as fw, type ObjectType as fx, type PropertiesType as fy, type PropertiesTypePropertiesTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterResponse as g$, type RichContentOptions as g0, type PageNavigationOptions as g1, type Step as g2, type FormLayout as g3, type BreakPoint as g4, type ItemLayout as g5, type ItemLayoutItemOneOf as g6, type Group as g7, type Margin as g8, type Section as g9, type CreateCheckoutFromSubmissionResponse as gA, type Checkout as gB, type IsFormSubmittableRequest as gC, type IsFormSubmittableResponse as gD, type DomainEvent as gE, type DomainEventBodyOneOf as gF, type EntityCreatedEvent as gG, type RestoreInfo as gH, type EntityUpdatedEvent as gI, type EntityDeletedEvent as gJ, type ActionEvent as gK, type Empty as gL, type MessageEnvelope as gM, type IdentificationData as gN, type IdentificationDataIdOneOf as gO, type UpsertContactFromSubmissionRequest as gP, type SubmitContactResponse as gQ, type CreateSubmissionRequest as gR, type CreateSubmissionResponse as gS, type SubmissionValidationErrorsDetails as gT, type ValidationError as gU, type CreateSubmissionForMigrationRequest as gV, type CreateSubmissionForMigrationResponse as gW, type CreateSubmissionBySubmitterRequest as gX, type CreateSubmissionBySubmitterResponse as gY, type BulkCreateSubmissionBySubmitterRequest as gZ, type BulkCreateSubmissionBySubmitterData as g_, type FormRule as ga, type FormOverride as gb, type FormProperties as gc, type PostSubmissionTriggers as gd, type UpsertContact as ge, type NestedForm as gf, type LimitationRule as gg, type RequiredIndicatorProperties as gh, type SubmitSettings as gi, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gj, type ThankYouMessageOptions as gk, type RedirectOptions as gl, type FieldGroup as gm, type Rule as gn, type RequiredOptions as go, type HiddenOptions as gp, type AllowedValuesOptions as gq, type FieldOverride as gr, type FieldOverridePropertyTypeOptionsOneOf as gs, type ConditionNode as gt, type ConditionNodeNodeOneOf as gu, type AndCondition as gv, type OrCondition as gw, type Condition as gx, type RuleFormOverride as gy, type RuleFormOverrideEntityTypeOptionsOneOf as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FieldViolation as h$, type BulkSubmissionResult as h0, type ItemMetadata as h1, type ApplicationError as h2, type BulkActionMetadata as h3, type GetSubmissionRequest as h4, type GetSubmissionResponse as h5, type GetSubmissionByCheckoutIdRequest as h6, type GetSubmissionByCheckoutIdResponse as h7, type UpdateSubmissionRequest as h8, type UpdateSubmissionResponse as h9, type QuerySubmissionsByNamespaceForExportRequest as hA, type QuerySubmissionsByNamespaceForExportResponse as hB, type CountSubmissionsByFilterRequest as hC, type FormSubmissionsCount as hD, type CountSubmissionsRequest as hE, type CountDeletedSubmissionsRequest as hF, type FormDeletedSubmissionsCount as hG, type GetMediaUploadURLRequest as hH, type BulkMarkSubmissionsAsSeenRequest as hI, type BulkMarkSubmissionsAsSeenResponse as hJ, type GetSubmissionDownloadUrlRequest as hK, type SubmissionDocument as hL, type SubmissionDocumentDocumentOneOf as hM, type DocumentReady as hN, type DownloadSubmissionRequest as hO, type RawHttpResponse as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResult as hY, type BulkUpdateFormSubmissionTagsByFilterRequest as hZ, type ValidateFormSubmissionRequest as h_, type ConfirmSubmissionRequest as ha, type DeleteSubmissionRequest as hb, type DeleteSubmissionResponse as hc, type BulkDeleteSubmissionRequest as hd, type BulkDeleteSubmissionResult as he, type RestoreSubmissionFromTrashBinRequest as hf, type RemoveSubmissionFromTrashBinRequest as hg, type RemoveSubmissionFromTrashBinResponse as hh, type BulkRemoveSubmissionFromTrashBinRequest as hi, type BulkRemoveSubmissionFromTrashBinResult as hj, type ListDeletedSubmissionsRequest as hk, type CursorPaging as hl, type CursorPagingMetadata as hm, type Cursors as hn, type GetDeletedSubmissionRequest as ho, type QuerySubmissionRequest as hp, type CursorQueryPagingMethodOneOf as hq, type Sorting as hr, type SearchSubmissionsByNamespaceRequest as hs, type CursorSearch as ht, type CursorSearchPagingMethodOneOf as hu, type SearchDetails as hv, type SearchSubmissionsByNamespaceForExportRequest as hw, type SearchSubmissionsByNamespaceForExportResponse as hx, type QuerySubmissionsByNamespaceRequest as hy, type QuerySubmissionsByNamespaceResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type FieldViolationErrorDataOneOf as i0, type SubmissionValidationErrors as i1, type SubmissionValidationError as i2, type SubmissionValidationErrorErrorMessageOneOf as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type FormSubmissionSearchSpec as i6, type SubmissionsQueryResult as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, getFormattedSubmission as kg, updateExtendedFields as kh, bulkUpdateFormSubmissionTags as ki, bulkUpdateFormSubmissionTagsByFilter as kj, validateFormSubmission as kk, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7949
+ export { InputFieldStringComponentType as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type ValidateFormSubmissionResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionCreatedEnvelope as H, type SubmissionDeletedEnvelope as I, type SubmissionRemovedSubmissionFromTrashEnvelope as J, type SubmissionStatusUpdatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappedEnvelope as M, type SubmissionContactMappingSkippedEnvelope as N, type SubmissionUpdatedEnvelope as O, SubmissionStatus as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, OptInLevel as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, StringTypeFormatEnumFormat as W, ValidationFormat as X, ProductType as Y, PriceType as Z, InputFieldStringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormatEnumFormat as a$, NodeType as a0, WidthType as a1, PluginContainerDataAlignment as a2, ButtonDataType as a3, LinkTarget as a4, TextAlignment as a5, LineStyle as a6, Width as a7, DividerDataAlignment as a8, ViewMode as a9, NullValue as aA, ImagePosition as aB, Alignment as aC, ImageFit as aD, NumberOfColumns as aE, FirstDayOfWeek as aF, InputFieldNumberComponentType as aG, InputFieldBooleanComponentType as aH, ArrayItemsItemType as aI, PropertiesTypePropertiesTypeEnum as aJ, InputFieldArrayComponentType as aK, InputFieldWixFileComponentType as aL, UploadFileFormat as aM, InputFieldPaymentComponentType as aN, InputFieldSchedulingComponentType as aO, Format as aP, MultilineAddressComponentType as aQ, Type as aR, InputFieldInputType as aS, FormFieldContactInfoEmailInfoTag as aT, FormFieldContactInfoPhoneInfoTag as aU, AddressInfoTag as aV, SubscriptionInfoOptInLevel as aW, FormFieldContactInfoContactField as aX, FormFieldV2FieldType as aY, DisplayFieldType as aZ, FieldType as a_, LayoutType as aa, Orientation as ab, Crop as ac, ThumbnailsAlignment as ad, GIFType as ae, Source as af, StylesPosition as ag, MapType as ah, ViewRole as ai, VoteRole as aj, PollLayoutType as ak, PollLayoutDirection as al, BackgroundType as am, DecorationType as an, FontType as ao, Position as ap, AspectRatio as aq, Resizing as ar, Placement as as, CardStylesType as at, CardStylesAlignment as au, Layout as av, AppType as aw, InitialExpandedItems as ax, Direction as ay, VerticalAlignment as az, type CreateSubmissionApplicationErrors as b, type ObjectTypePropertiesType as b$, StringComponentType as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, PaymentComponentType as b7, ComponentType as b8, ObjectArrayComponentType as b9, type SubmitterSubmitterOneOf as bA, type ExtendedFields as bB, type OrderDetails as bC, type PublicTags as bD, type TagList as bE, type FormSubmissionStatusUpdatedEvent as bF, type RemovedSubmissionFromTrash as bG, type SubmissionContactMapped as bH, type MarketingSubscriptionDetails as bI, type SubmissionContactMappingSkipped as bJ, type CreateCheckoutFromSubmissionRequest as bK, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bL, type Form as bM, type FormField as bN, type FormFieldStringType as bO, type FormFieldStringTypeFormatOptionsOneOf as bP, type StringErrorMessages as bQ, type StringTypeDateTimeConstraints as bR, type StringTypePhoneConstraints as bS, type StringTypeValidationMessages as bT, type FormFieldNumberType as bU, type NumberErrorMessages as bV, type IntegerType as bW, type FormFieldBooleanType as bX, type BooleanErrorMessages as bY, type FormFieldArrayType as bZ, type FormFieldObjectType as b_, SchedulingComponentType as ba, InputType as bb, EmailInfoTag as bc, PhoneInfoTag as bd, Tag as be, ConfirmationLevel as bf, ContactField as bg, DisplayFieldDisplayFieldType as bh, OverrideEntityType as bi, Kind as bj, SpamFilterProtectionLevel as bk, RequiredIndicator as bl, RequiredIndicatorPlacement as bm, Target as bn, SubmitSuccessAction as bo, ChangeableProperty as bp, OverrideEntityTypeEnumOverrideEntityType as bq, Operator as br, WebhookIdentityType as bs, IdentityType as bt, ErrorType as bu, SortOrder as bv, Mode as bw, Status as bx, SubmissionErrorType as by, type Submitter as bz, type CreateSubmissionValidationErrors as c, type HeadingData as c$, type ObjectTypePropertiesTypePropertiesTypeOneOf as c0, type ObjectErrorMessages as c1, type ArrayTypeArrayItems as c2, type ArrayTypeArrayItemsItemsOneOf as c3, type ArrayErrorMessages as c4, type PredefinedValidation as c5, type PredefinedValidationFormatOptionsOneOf as c6, type PaymentType as c7, type QuantityLimit as c8, type FixedPriceOptions as c9, type PluginContainerDataWidth as cA, type PluginContainerDataWidthDataOneOf as cB, type Spoiler as cC, type Height as cD, type Styles as cE, type Link as cF, type LinkDataOneOf as cG, type Rel as cH, type CodeBlockData as cI, type TextStyle as cJ, type DividerData as cK, type FileData as cL, type FileSource as cM, type FileSourceDataOneOf as cN, type PDFSettings as cO, type GalleryData as cP, type Media as cQ, type Image as cR, type Video as cS, type Item as cT, type ItemDataOneOf as cU, type GalleryOptions as cV, type GalleryOptionsLayout as cW, type ItemStyle as cX, type Thumbnails as cY, type GIFData as cZ, type GIF as c_, type DynamicPriceOptions as ca, type Product as cb, type ProductPriceOptionsOneOf as cc, type MultilineAddressValidation as cd, type FieldOverrides as ce, type FieldsOverrides as cf, type NestedFormFieldOverrides as cg, type Validation as ch, type ValidationValidationOneOf as ci, type DataExtensionsDetails as cj, type NestedFormOverrides as ck, type FormFieldV2 as cl, type FormFieldV2FieldTypeOptionsOneOf as cm, type InputFieldStringType as cn, type InputFieldStringTypeFormatOptionsOneOf as co, type InputFieldStringTypeDateTimeConstraints as cp, type InputFieldStringTypePhoneConstraints as cq, type TextInput as cr, type RichContent as cs, type Node as ct, type NodeDataOneOf as cu, type NodeStyle as cv, type ButtonData as cw, type Border as cx, type Colors as cy, type PluginContainerData as cz, type UpdateSubmission as d, type MediaItem as d$, type HTMLData as d0, type HTMLDataDataOneOf as d1, type ImageData as d2, type StylesBorder as d3, type ImageDataStyles as d4, type LinkPreviewData as d5, type LinkPreviewDataStyles as d6, type MapData as d7, type MapSettings as d8, type ParagraphData as d9, type BookingData as dA, type EventData as dB, type ButtonStyles as dC, type ImageStyles as dD, type RibbonStyles as dE, type CardStyles as dF, type PricingData as dG, type VideoData as dH, type PlaybackOptions as dI, type EmbedData as dJ, type Oembed as dK, type CollapsibleListData as dL, type TableData as dM, type Dimensions as dN, type TableCellData as dO, type CellStyle as dP, type BorderColors as dQ, type ListValue as dR, type AudioData as dS, type OrderedListData as dT, type BulletedListData as dU, type BlockquoteData as dV, type CaptionData as dW, type LayoutCellData as dX, type Metadata as dY, type DocumentStyle as dZ, type TextNodeStyle as d_, type PollData as da, type Permissions as db, type PollOption as dc, type Settings as dd, type PollLayout as de, type OptionLayout as df, type Gradient as dg, type Background as dh, type BackgroundBackgroundOneOf as di, type PollDesign as dj, type OptionDesign as dk, type Poll as dl, type PollDataLayout as dm, type Design as dn, type TextData as dp, type Decoration as dq, type DecorationDataOneOf as dr, type AnchorData as ds, type ColorData as dt, type LinkData as du, type MentionData as dv, type FontSizeData as dw, type SpoilerData as dx, type AppEmbedData as dy, type AppEmbedDataAppDataOneOf as dz, type UpdateSubmissionValidationErrors as e, type InputField_Boolean as e$, type MediaItemMediaOneOf as e0, type MediaSettings as e1, type RadioGroup as e2, type RadioGroupOption as e3, type CustomOption as e4, type Dropdown as e5, type DropdownOption as e6, type DateTimeInput as e7, type PhoneInput as e8, type DateInput as e9, type DonationInput as eA, type DonationInputOption as eB, type PaymentInput as eC, type FixedPayment as eD, type Appointment as eE, type AppointmentFormatInfoOneOf as eF, type Location as eG, type LocationLocationInfoOneOf as eH, type InPersonOptions as eI, type VideoConferenceOptions as eJ, type PhoneOptions as eK, type MultilineAddress as eL, type AddressLine2 as eM, type DefaultCountryConfig as eN, type DefaultCountryConfigOptionsOneOf as eO, type FieldsSettings as eP, type V4FormFieldContactInfo as eQ, type V4FormFieldContactInfoAdditionalInfoOneOf as eR, type FormFieldContactInfoEmailInfo as eS, type FormFieldContactInfoPhoneInfo as eT, type FormFieldContactInfoAddressInfo as eU, type FormFieldContactInfoCustomFieldInfo as eV, type FormFieldContactInfoSubscriptionInfo as eW, type InputField_String as eX, type InputField_StringComponentTypeOptionsOneOf as eY, type InputField_Number as eZ, type InputField_NumberComponentTypeOptionsOneOf as e_, type TimeInput as ea, type DatePicker as eb, type ServicesDropdown as ec, type ServiceOption as ed, type InputFieldNumberType as ee, type NumberInput as ef, type RatingInput as eg, type InputFieldBooleanType as eh, type Checkbox as ei, type InputFieldArrayType as ej, type InputFieldIntegerType as ek, type InputFieldObjectType as el, type InputFieldObjectTypePropertiesType as em, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as en, type InputFieldArrayTypeArrayItems as eo, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ep, type CheckboxGroup as eq, type Option as er, type Tags as es, type TagsOption as et, type ServicesCheckboxGroup as eu, type FileType as ev, type FileUpload as ew, type Signature as ex, type ProductCheckboxGroup as ey, type ProductCheckboxGroupOption as ez, type ConfirmSubmissionResponse as f, type Payment as f$, type InputField_BooleanComponentTypeOptionsOneOf as f0, type InputField_Array as f1, type InputField_ArrayComponentTypeOptionsOneOf as f2, type InputField_Object as f3, type InputField_ObjectValidationOneOf as f4, type InputFieldWixFile as f5, type InputFieldWixFileComponentTypeOptionsOneOf as f6, type InputFieldPayment as f7, type InputFieldPaymentComponentTypeOptionsOneOf as f8, type InputFieldMultilineAddress as f9, type ObjectArrayType as fA, type Repeater as fB, type FormLayout as fC, type BreakPoint as fD, type ItemLayout as fE, type ItemLayoutItemOneOf as fF, type Group as fG, type Margin as fH, type Section as fI, type FormFieldContactInfo as fJ, type FormFieldContactInfoAdditionalInfoOneOf as fK, type EmailInfo as fL, type PhoneInfo as fM, type AddressInfo as fN, type CustomFieldInfo as fO, type SubscriptionInfo as fP, type _String as fQ, type _StringComponentTypeOptionsOneOf as fR, type _Number as fS, type _NumberComponentTypeOptionsOneOf as fT, type _Boolean as fU, type _BooleanComponentTypeOptionsOneOf as fV, type _Array as fW, type _ArrayComponentTypeOptionsOneOf as fX, type _Object as fY, type WixFile as fZ, type WixFileComponentTypeOptionsOneOf as f_, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fa, type InputFieldScheduling as fb, type InputFieldSchedulingComponentTypeOptionsOneOf as fc, type FormFieldV2InputField as fd, type FormFieldV2InputFieldInputTypeOptionsOneOf as fe, type DisplayField as ff, type DisplayFieldDisplayFieldTypeOptionsOneOf as fg, type V4RichContentOptions as fh, type V4PageNavigationOptions as fi, type Field as fj, type FieldFieldTypeOptionsOneOf as fk, type InputField as fl, type InputFieldInputTypeOptionsOneOf as fm, type StringType as fn, type StringTypeFormatOptionsOneOf as fo, type DateTimeConstraints as fp, type PhoneConstraints as fq, type ValidationMessages as fr, type NumberType as fs, type BooleanType as ft, type ArrayType as fu, type ObjectType as fv, type PropertiesType as fw, type PropertiesTypePropertiesTypeOptionsOneOf as fx, type ArrayItems as fy, type ArrayItemsItemTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterRequest as g$, type PaymentComponentTypeOptionsOneOf as g0, type Scheduling as g1, type SchedulingComponentTypeOptionsOneOf as g2, type Address as g3, type AddressComponentTypeOptionsOneOf as g4, type ObjectArray as g5, type ObjectArrayComponentTypeOptionsOneOf as g6, type FieldsDisplayField as g7, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as g8, type RichContentOptions as g9, type RuleFormOverride as gA, type RuleFormOverrideEntityTypeOptionsOneOf as gB, type CreateCheckoutFromSubmissionResponse as gC, type Checkout as gD, type IsFormSubmittableRequest as gE, type IsFormSubmittableResponse as gF, type DomainEvent as gG, type DomainEventBodyOneOf as gH, type EntityCreatedEvent as gI, type RestoreInfo as gJ, type EntityUpdatedEvent as gK, type EntityDeletedEvent as gL, type ActionEvent as gM, type Empty as gN, type MessageEnvelope as gO, type IdentificationData as gP, type IdentificationDataIdOneOf as gQ, type UpsertContactFromSubmissionRequest as gR, type SubmitContactResponse as gS, type CreateSubmissionRequest as gT, type CreateSubmissionResponse as gU, type SubmissionValidationErrorsDetails as gV, type ValidationError as gW, type CreateSubmissionForMigrationRequest as gX, type CreateSubmissionForMigrationResponse as gY, type CreateSubmissionBySubmitterRequest as gZ, type CreateSubmissionBySubmitterResponse as g_, type PageNavigationOptions as ga, type Step as gb, type FormRule as gc, type FormOverride as gd, type FormProperties as ge, type PostSubmissionTriggers as gf, type UpsertContact as gg, type NestedForm as gh, type LimitationRule as gi, type RequiredIndicatorProperties as gj, type SubmitSettings as gk, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gl, type ThankYouMessageOptions as gm, type RedirectOptions as gn, type FieldGroup as go, type Rule as gp, type RequiredOptions as gq, type HiddenOptions as gr, type AllowedValuesOptions as gs, type FieldOverride as gt, type FieldOverridePropertyTypeOptionsOneOf as gu, type ConditionNode as gv, type ConditionNodeNodeOneOf as gw, type AndCondition as gx, type OrCondition as gy, type Condition as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsByFilterRequest as h$, type BulkCreateSubmissionBySubmitterData as h0, type BulkCreateSubmissionBySubmitterResponse as h1, type BulkSubmissionResult as h2, type ItemMetadata as h3, type ApplicationError as h4, type BulkActionMetadata as h5, type GetSubmissionRequest as h6, type GetSubmissionResponse as h7, type GetSubmissionByCheckoutIdRequest as h8, type GetSubmissionByCheckoutIdResponse as h9, type QuerySubmissionsByNamespaceRequest as hA, type QuerySubmissionsByNamespaceResponse as hB, type QuerySubmissionsByNamespaceForExportRequest as hC, type QuerySubmissionsByNamespaceForExportResponse as hD, type CountSubmissionsByFilterRequest as hE, type FormSubmissionsCount as hF, type CountSubmissionsRequest as hG, type CountDeletedSubmissionsRequest as hH, type FormDeletedSubmissionsCount as hI, type GetMediaUploadURLRequest as hJ, type BulkMarkSubmissionsAsSeenRequest as hK, type BulkMarkSubmissionsAsSeenResponse as hL, type GetSubmissionDownloadUrlRequest as hM, type SubmissionDocument as hN, type SubmissionDocumentDocumentOneOf as hO, type DocumentReady as hP, type DownloadSubmissionRequest as hQ, type HeadersEntry as hR, type GetFormattedSubmissionRequest as hS, type FormattedSubmission as hT, type ListFormattedSubmissionsRequest as hU, type ListFormattedSubmissionsResponse as hV, type FormattedFormSubmission as hW, type UpdateExtendedFieldsRequest as hX, type BulkUpdateFormSubmissionTagsRequest as hY, type BulkUpdateFormSubmissionTagsResponse as hZ, type BulkUpdateFormSubmissionTagsResult as h_, type UpdateSubmissionRequest as ha, type UpdateSubmissionResponse as hb, type ConfirmSubmissionRequest as hc, type DeleteSubmissionRequest as hd, type DeleteSubmissionResponse as he, type BulkDeleteSubmissionRequest as hf, type BulkDeleteSubmissionResult as hg, type RestoreSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinRequest as hi, type RemoveSubmissionFromTrashBinResponse as hj, type BulkRemoveSubmissionFromTrashBinRequest as hk, type BulkRemoveSubmissionFromTrashBinResult as hl, type ListDeletedSubmissionsRequest as hm, type CursorPaging as hn, type CursorPagingMetadata as ho, type Cursors as hp, type GetDeletedSubmissionRequest as hq, type QuerySubmissionRequest as hr, type CursorQueryPagingMethodOneOf as hs, type Sorting as ht, type SearchSubmissionsByNamespaceRequest as hu, type CursorSearch as hv, type CursorSearchPagingMethodOneOf as hw, type SearchDetails as hx, type SearchSubmissionsByNamespaceForExportRequest as hy, type SearchSubmissionsByNamespaceForExportResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type NumberOfColumnsWithLiterals as i$, type BulkUpdateFormSubmissionTagsByFilterResponse as i0, type ValidateFormSubmissionRequest as i1, type FieldViolation as i2, type FieldViolationErrorDataOneOf as i3, type SubmissionValidationErrors as i4, type SubmissionValidationError as i5, type SubmissionValidationErrorErrorMessageOneOf as i6, type BaseEventMetadata as i7, type EventMetadata as i8, type FormSubmissionSearchSpec as i9, type ThumbnailsAlignmentWithLiterals as iA, type GIFTypeWithLiterals as iB, type SourceWithLiterals as iC, type StylesPositionWithLiterals as iD, type MapTypeWithLiterals as iE, type ViewRoleWithLiterals as iF, 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 iN, type ResizingWithLiterals as iO, type PlacementWithLiterals as iP, type CardStylesTypeWithLiterals as iQ, type CardStylesAlignmentWithLiterals as iR, type LayoutWithLiterals as iS, type AppTypeWithLiterals as iT, type InitialExpandedItemsWithLiterals as iU, type DirectionWithLiterals as iV, type VerticalAlignmentWithLiterals as iW, type NullValueWithLiterals as iX, type ImagePositionWithLiterals as iY, type AlignmentWithLiterals as iZ, type ImageFitWithLiterals as i_, type SubmissionsQueryResult as ia, type BulkUpdateFormSubmissionTagsOptions as ib, type BulkUpdateFormSubmissionTagsByFilterOptions as ic, type SubmissionStatusWithLiterals as id, type OptInLevelWithLiterals as ie, type StringTypeFormatEnumFormatWithLiterals as ig, type ValidationFormatWithLiterals as ih, type ProductTypeWithLiterals as ii, type PriceTypeWithLiterals as ij, type InputFieldStringTypeFormatEnumFormatWithLiterals as ik, type InputFieldStringComponentTypeWithLiterals as il, type NodeTypeWithLiterals as im, type WidthTypeWithLiterals as io, type PluginContainerDataAlignmentWithLiterals as ip, type ButtonDataTypeWithLiterals as iq, type LinkTargetWithLiterals as ir, type TextAlignmentWithLiterals as is, type LineStyleWithLiterals as it, type WidthWithLiterals as iu, type DividerDataAlignmentWithLiterals as iv, type ViewModeWithLiterals as iw, type LayoutTypeWithLiterals as ix, type OrientationWithLiterals as iy, type CropWithLiterals as iz, type ListDeletedSubmissionsResponse as j, onSubmissionContactMapped as j$, type FirstDayOfWeekWithLiterals as j0, type InputFieldNumberComponentTypeWithLiterals as j1, type InputFieldBooleanComponentTypeWithLiterals as j2, type ArrayItemsItemTypeWithLiterals as j3, type PropertiesTypePropertiesTypeEnumWithLiterals as j4, type InputFieldArrayComponentTypeWithLiterals as j5, type InputFieldWixFileComponentTypeWithLiterals as j6, type UploadFileFormatWithLiterals as j7, type InputFieldPaymentComponentTypeWithLiterals as j8, type InputFieldSchedulingComponentTypeWithLiterals as j9, type PhoneInfoTagWithLiterals as jA, type TagWithLiterals as jB, type ConfirmationLevelWithLiterals as jC, type ContactFieldWithLiterals as jD, type DisplayFieldDisplayFieldTypeWithLiterals as jE, type OverrideEntityTypeWithLiterals as jF, type KindWithLiterals as jG, type SpamFilterProtectionLevelWithLiterals as jH, type RequiredIndicatorWithLiterals as jI, type RequiredIndicatorPlacementWithLiterals as jJ, type TargetWithLiterals as jK, type SubmitSuccessActionWithLiterals as jL, type ChangeablePropertyWithLiterals as jM, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jN, type OperatorWithLiterals as jO, type WebhookIdentityTypeWithLiterals as jP, type IdentityTypeWithLiterals as jQ, type ErrorTypeWithLiterals as jR, type SortOrderWithLiterals as jS, type ModeWithLiterals as jT, type StatusWithLiterals as jU, type SubmissionErrorTypeWithLiterals as jV, type CommonSearchWithEntityContext as jW, onSubmissionCreated as jX, onSubmissionDeleted as jY, onSubmissionRemovedSubmissionFromTrash as jZ, onSubmissionStatusUpdated as j_, type FormatWithLiterals as ja, type MultilineAddressComponentTypeWithLiterals as jb, type TypeWithLiterals as jc, type InputFieldInputTypeWithLiterals as jd, type FormFieldContactInfoEmailInfoTagWithLiterals as je, type FormFieldContactInfoPhoneInfoTagWithLiterals as jf, type AddressInfoTagWithLiterals as jg, type SubscriptionInfoOptInLevelWithLiterals as jh, type FormFieldContactInfoContactFieldWithLiterals as ji, type FormFieldV2FieldTypeWithLiterals as jj, type DisplayFieldTypeWithLiterals as jk, type FieldTypeWithLiterals as jl, type FormatEnumFormatWithLiterals as jm, type StringComponentTypeWithLiterals as jn, type NumberComponentTypeWithLiterals as jo, type BooleanComponentTypeWithLiterals as jp, type ItemTypeWithLiterals as jq, type PropertiesTypeEnumWithLiterals as jr, type ArrayComponentTypeWithLiterals as js, type WixFileComponentTypeWithLiterals as jt, type PaymentComponentTypeWithLiterals as ju, type ComponentTypeWithLiterals as jv, type ObjectArrayComponentTypeWithLiterals as jw, type SchedulingComponentTypeWithLiterals as jx, type InputTypeWithLiterals as jy, type EmailInfoTagWithLiterals as jz, type CursorQuery as k, onSubmissionContactMappingSkipped as k0, onSubmissionUpdated as k1, upsertContactFromSubmission as k2, createSubmission as k3, getSubmission as k4, updateSubmission as k5, confirmSubmission as k6, deleteSubmission as k7, bulkDeleteSubmission as k8, restoreSubmissionFromTrashBin as k9, removeSubmissionFromTrashBin as ka, bulkRemoveSubmissionFromTrashBin as kb, listDeletedSubmissions as kc, getDeletedSubmission as kd, querySubmission as ke, querySubmissionsByNamespace as kf, countSubmissionsByFilter as kg, countSubmissions as kh, countDeletedSubmissions as ki, getMediaUploadUrl as kj, bulkMarkSubmissionsAsSeen as kk, getSubmissionDownloadUrl as kl, downloadSubmission as km, getFormattedSubmission as kn, updateExtendedFields as ko, validateFormSubmission as kp, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-DPfbliR-.mjs';
3
- export { gG as ActionEvent, fU as Address, fV as AddressComponentTypeOptionsOneOf, fC as AddressInfo, aU as AddressInfoTag, jb as AddressInfoTagWithLiterals, eK as AddressLine2, aB as Alignment, iU as AlignmentWithLiterals, gm as AllowedValuesOptions, dq as AnchorData, gr as AndCondition, dw as AppEmbedData, dx as AppEmbedDataAppDataOneOf, av as AppType, iO as AppTypeWithLiterals, g_ as ApplicationError, eC as Appointment, eD as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, fw as ArrayItems, aH as ArrayItemsItemType, fx as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fs as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ap as AspectRatio, iI as AspectRatioWithLiterals, dQ as AudioData, df as Background, dg as BackgroundBackgroundOneOf, al as BackgroundType, iE as BackgroundTypeWithLiterals, i2 as BaseEventMetadata, dT as BlockquoteData, dy as BookingData, b1 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, fr as BooleanType, cv as Border, dO as BorderColors, g0 as BreakPoint, g$ as BulkActionMetadata, gW as BulkCreateSubmissionBySubmitterData, gV as BulkCreateSubmissionBySubmitterRequest, gX as BulkCreateSubmissionBySubmitterResponse, h9 as BulkDeleteSubmissionRequest, ha as BulkDeleteSubmissionResult, hE as BulkMarkSubmissionsAsSeenRequest, hF as BulkMarkSubmissionsAsSeenResponse, he as BulkRemoveSubmissionFromTrashBinRequest, hf as BulkRemoveSubmissionFromTrashBinResult, gY as BulkSubmissionResult, i7 as BulkUpdateFormSubmissionTagsByFilterOptions, hW as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsByFilterResponse, i6 as BulkUpdateFormSubmissionTagsOptions, hT as BulkUpdateFormSubmissionTagsRequest, hU as BulkUpdateFormSubmissionTagsResponse, hV as BulkUpdateFormSubmissionTagsResult, dS as BulletedListData, cu as ButtonData, a2 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dA as ButtonStyles, dU as CaptionData, dD as CardStyles, at as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, as as CardStylesType, iL as CardStylesTypeWithLiterals, dN as CellStyle, bn as ChangeableProperty, jG as ChangeablePropertyWithLiterals, eg as Checkbox, eo as CheckboxGroup, gx as Checkout, cG as CodeBlockData, dJ as CollapsibleListData, dr as ColorData, cw as Colors, jQ as CommonSearchWithEntityContext, b7 as ComponentType, jq as ComponentTypeWithLiterals, gt as Condition, gp as ConditionNode, gq as ConditionNodeNodeOneOf, h6 as ConfirmSubmissionRequest, bd as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, be as ContactField, jx as ContactFieldWithLiterals, hB as CountDeletedSubmissionsRequest, hy as CountSubmissionsByFilterRequest, hA as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gw as CreateCheckoutFromSubmissionResponse, gT as CreateSubmissionBySubmitterRequest, gU as CreateSubmissionBySubmitterResponse, gR as CreateSubmissionForMigrationRequest, gS as CreateSubmissionForMigrationResponse, gN as CreateSubmissionRequest, gO as CreateSubmissionResponse, ab as Crop, iu as CropWithLiterals, hh as CursorPaging, hi as CursorPagingMetadata, hm as CursorQueryPagingMethodOneOf, hp as CursorSearch, hq as CursorSearchPagingMethodOneOf, hj as Cursors, fD as CustomFieldInfo, e2 as CustomOption, ch as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, fn as DateTimeConstraints, e5 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, am as DecorationType, iF as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, h7 as DeleteSubmissionRequest, h8 as DeleteSubmissionResponse, dl as Design, dL as Dimensions, ax as Direction, iQ as DirectionWithLiterals, fd as DisplayField, bf as DisplayFieldDisplayFieldType, fe as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, aY as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cI as DividerData, a7 as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hJ as DocumentReady, dX as DocumentStyle, gA as DomainEvent, gB as DomainEventBodyOneOf, ey as DonationInput, ez as DonationInputOption, hK as DownloadSubmissionRequest, e3 as Dropdown, e4 as DropdownOption, c8 as DynamicPriceOptions, fA as EmailInfo, ba as EmailInfoTag, jt as EmailInfoTagWithLiterals, dH as EmbedData, gH as Empty, gC as EntityCreatedEvent, gF as EntityDeletedEvent, gE as EntityUpdatedEvent, bs as ErrorType, jL as ErrorTypeWithLiterals, dz as EventData, i3 as EventMetadata, bz as ExtendedFields, fh as Field, fi as FieldFieldTypeOptionsOneOf, gi as FieldGroup, gn as FieldOverride, go as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, aZ as FieldType, jg as FieldTypeWithLiterals, hZ as FieldViolation, h_ as FieldViolationErrorDataOneOf, fW as FieldsDisplayField, fX as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cd as FieldsOverrides, eN as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, et as FileType, eu as FileUpload, aE as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eB as FixedPayment, c7 as FixedPriceOptions, du as FontSizeData, an as FontType, iG as FontTypeWithLiterals, bK as Form, hC as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, fy as FormFieldContactInfo, fz as FormFieldContactInfoAdditionalInfoOneOf, eS as FormFieldContactInfoAddressInfo, aW as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eT as FormFieldContactInfoCustomFieldInfo, eQ as FormFieldContactInfoEmailInfo, aS as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eR as FormFieldContactInfoPhoneInfo, aT as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eU as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, cj as FormFieldV2, aX as FormFieldV2FieldType, ck as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fb as FormFieldV2InputField, fc as FormFieldV2InputFieldInputTypeOptionsOneOf, f$ as FormLayout, g7 as FormOverride, g8 as FormProperties, g6 as FormRule, i4 as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hz as FormSubmissionsCount, aO as Format, a_ as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hR as FormattedFormSubmission, hO as FormattedSubmission, cY as GIF, cX as GIFData, ad as GIFType, iw as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, hk as GetDeletedSubmissionRequest, hN as GetFormattedSubmissionRequest, hD as GetMediaUploadURLRequest, h2 as GetSubmissionByCheckoutIdRequest, h3 as GetSubmissionByCheckoutIdResponse, hG as GetSubmissionDownloadUrlRequest, h0 as GetSubmissionRequest, h1 as GetSubmissionResponse, de as Gradient, g3 as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hM as HeadersEntry, cZ as HeadingData, cB as Height, gl as HiddenOptions, gJ as IdentificationData, gK as IdentificationDataIdOneOf, br as IdentityType, jK as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aC as ImageFit, iV as ImageFitWithLiterals, aA as ImagePosition, iT as ImagePositionWithLiterals, dB as ImageStyles, eG as InPersonOptions, aw as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fj as InputField, aJ as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, eh as InputFieldArrayType, em as InputFieldArrayTypeArrayItems, en as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aG as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ef as InputFieldBooleanType, aR as InputFieldInputType, fk as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, ei as InputFieldIntegerType, f7 as InputFieldMultilineAddress, f8 as InputFieldMultilineAddressComponentTypeOptionsOneOf, aF as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, ec as InputFieldNumberType, ej as InputFieldObjectType, ek as InputFieldObjectTypePropertiesType, el as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f5 as InputFieldPayment, aM as InputFieldPaymentComponentType, f6 as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, f9 as InputFieldScheduling, aN as InputFieldSchedulingComponentType, fa as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, _ as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cl as InputFieldStringType, cn as InputFieldStringTypeDateTimeConstraints, Z as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cm as InputFieldStringTypeFormatOptionsOneOf, co as InputFieldStringTypePhoneConstraints, f3 as InputFieldWixFile, aK as InputFieldWixFileComponentType, f4 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, e$ as InputField_Array, f0 as InputField_ArrayComponentTypeOptionsOneOf, eZ as InputField_Boolean, e_ as InputField_BooleanComponentTypeOptionsOneOf, eX as InputField_Number, eY as InputField_NumberComponentTypeOptionsOneOf, f1 as InputField_Object, f2 as InputField_ObjectValidationOneOf, eV as InputField_String, eW as InputField_StringComponentTypeOptionsOneOf, b9 as InputType, js as InputTypeWithLiterals, bU as IntegerType, gy as IsFormSubmittableRequest, gz as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, g1 as ItemLayout, g2 as ItemLayoutItemOneOf, gZ as ItemMetadata, cV as ItemStyle, b2 as ItemType, jl as ItemTypeWithLiterals, bh as Kind, jA as KindWithLiterals, au as Layout, dV as LayoutCellData, a9 as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gc as LimitationRule, a5 as LineStyle, io as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a3 as LinkTarget, il as LinkTargetWithLiterals, hg as ListDeletedSubmissionsRequest, hP as ListFormattedSubmissionsRequest, hQ as ListFormattedSubmissionsResponse, dP as ListValue, eE as Location, eF as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, ag as MapType, iz as MapTypeWithLiterals, g4 as Margin, bG as MarketingSubscriptionDetails, cO as Media, dZ as MediaItem, d_ as MediaItemMediaOneOf, d$ as MediaSettings, dt as MentionData, gI as MessageEnvelope, dW as Metadata, bu as Mode, jN as ModeWithLiterals, eJ as MultilineAddress, aP as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cb as MultilineAddressValidation, gb as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, $ as NodeType, ih as NodeTypeWithLiterals, az as NullValue, iS as NullValueWithLiterals, b0 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, ed as NumberInput, aD as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fq as NumberType, b$ as ObjectErrorMessages, ft as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dI as Oembed, bp as Operator, jI as OperatorWithLiterals, P as OptInLevel, i9 as OptInLevelWithLiterals, ep as Option, di as OptionDesign, dd as OptionLayout, gs as OrCondition, bA as OrderDetails, dR as OrderedListData, aa as Orientation, it as OrientationWithLiterals, bg as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cM as PDFSettings, fZ as PageNavigationOptions, d7 as ParagraphData, fQ as Payment, b6 as PaymentComponentType, fR as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eA as PaymentInput, c5 as PaymentType, d9 as Permissions, fo as PhoneConstraints, fB as PhoneInfo, bb as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, e6 as PhoneInput, eI as PhoneOptions, ar as Placement, iK as PlacementWithLiterals, dG as PlaybackOptions, cx as PluginContainerData, a1 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ak as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, aj as PollLayoutType, iC as PollLayoutTypeWithLiterals, da as PollOption, ao as Position, iH as PositionWithLiterals, g9 as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, Y as PriceType, id as PriceTypeWithLiterals, dE as PricingData, c9 as Product, ew as ProductCheckboxGroup, ex as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, X as ProductType, ic as ProductTypeWithLiterals, fu as PropertiesType, b3 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aI as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fv as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, hl as QuerySubmissionRequest, hw as QuerySubmissionsByNamespaceForExportRequest, hx as QuerySubmissionsByNamespaceForExportResponse, hu as QuerySubmissionsByNamespaceRequest, hv as QuerySubmissionsByNamespaceResponse, e0 as RadioGroup, e1 as RadioGroupOption, ee as RatingInput, hL as RawHttpResponse, gh as RedirectOptions, cF as Rel, hc as RemoveSubmissionFromTrashBinRequest, hd as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gd as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gk as RequiredOptions, aq as Resizing, iJ as ResizingWithLiterals, gD as RestoreInfo, hb as RestoreSubmissionFromTrashBinRequest, dC as RibbonStyles, cq as RichContent, fY as RichContentOptions, gj as Rule, gu as RuleFormOverride, gv as RuleFormOverrideEntityTypeOptionsOneOf, fS as Scheduling, b8 as SchedulingComponentType, fT as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hr as SearchDetails, hs as SearchSubmissionsByNamespaceForExportRequest, ht as SearchSubmissionsByNamespaceForExportResponse, ho as SearchSubmissionsByNamespaceRequest, g5 as Section, eb as ServiceOption, es as ServicesCheckboxGroup, ea as ServicesDropdown, db as Settings, ev as Signature, bt as SortOrder, jM as SortOrderWithLiterals, hn as Sorting, ae as Source, ix as SourceWithLiterals, bi as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, bv as Status, jO as StatusWithLiterals, f_ as Step, a$ as StringComponentType, ji as StringComponentTypeWithLiterals, bO as StringErrorMessages, fl as StringType, bP as StringTypeDateTimeConstraints, T as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fm as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, af as StylesPosition, iy as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hH as SubmissionDocument, hI as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, O as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i0 as SubmissionValidationError, i1 as SubmissionValidationErrorErrorMessageOneOf, h$ as SubmissionValidationErrors, gP as SubmissionValidationErrorsDetails, i5 as SubmissionsQueryResult, gM as SubmitContactResponse, ge as SubmitSettings, gf as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fE as SubscriptionInfo, aV as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dM as TableCellData, dK as TableData, bc as Tag, bC as TagList, jv as TagWithLiterals, eq as Tags, er as TagsOption, bl as Target, jE as TargetWithLiterals, a4 as TextAlignment, im as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, dY as TextNodeStyle, cH as TextStyle, gg as ThankYouMessageOptions, cW as Thumbnails, ac as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aQ as Type, j7 as TypeWithLiterals, hS as UpdateExtendedFieldsRequest, h4 as UpdateSubmissionRequest, h5 as UpdateSubmissionResponse, aL as UploadFileFormat, j2 as UploadFileFormatWithLiterals, ga as UpsertContact, gL as UpsertContactFromSubmissionRequest, eO as V4FormFieldContactInfo, eP as V4FormFieldContactInfoAdditionalInfoOneOf, fg as V4PageNavigationOptions, ff as V4RichContentOptions, hY as ValidateFormSubmissionRequest, cf as Validation, gQ as ValidationError, W as ValidationFormat, ib as ValidationFormatWithLiterals, fp as ValidationMessages, cg as ValidationValidationOneOf, ay as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cQ as Video, eH as VideoConferenceOptions, dF as VideoData, a8 as ViewMode, ir as ViewModeWithLiterals, ah as ViewRole, iA as ViewRoleWithLiterals, ai as VoteRole, iB as VoteRoleWithLiterals, bq as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, a6 as Width, a0 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fO as WixFile, b5 as WixFileComponentType, fP as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fL as _Array, fM as _ArrayComponentTypeOptionsOneOf, fJ as _Boolean, fK as _BooleanComponentTypeOptionsOneOf, fH as _Number, fI as _NumberComponentTypeOptionsOneOf, fN as _Object, fF as _String, fG as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-DPfbliR-.mjs';
2
+ import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, E as ValidateFormSubmissionResponse, H as SubmissionCreatedEnvelope, I as SubmissionDeletedEnvelope, J as SubmissionRemovedSubmissionFromTrashEnvelope, K as SubmissionStatusUpdatedEnvelope, M as SubmissionContactMappedEnvelope, N as SubmissionContactMappingSkippedEnvelope, O as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-BW4xE-Oq.mjs';
3
+ export { gM as ActionEvent, g3 as Address, g4 as AddressComponentTypeOptionsOneOf, fN as AddressInfo, aV as AddressInfoTag, jg as AddressInfoTagWithLiterals, eM as AddressLine2, aC as Alignment, iZ as AlignmentWithLiterals, gs as AllowedValuesOptions, ds as AnchorData, gx as AndCondition, dy as AppEmbedData, dz as AppEmbedDataAppDataOneOf, aw as AppType, iT as AppTypeWithLiterals, h4 as ApplicationError, eE as Appointment, eF as AppointmentFormatInfoOneOf, b5 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, c4 as ArrayErrorMessages, fy as ArrayItems, aI as ArrayItemsItemType, fz as ArrayItemsItemTypeOptionsOneOf, j3 as ArrayItemsItemTypeWithLiterals, fu as ArrayType, c2 as ArrayTypeArrayItems, c3 as ArrayTypeArrayItemsItemsOneOf, aq as AspectRatio, iN as AspectRatioWithLiterals, dS as AudioData, dh as Background, di as BackgroundBackgroundOneOf, am as BackgroundType, iJ as BackgroundTypeWithLiterals, i7 as BaseEventMetadata, dV as BlockquoteData, dA as BookingData, b2 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, bY as BooleanErrorMessages, ft as BooleanType, cx as Border, dQ as BorderColors, fD as BreakPoint, h5 as BulkActionMetadata, h0 as BulkCreateSubmissionBySubmitterData, g$ as BulkCreateSubmissionBySubmitterRequest, h1 as BulkCreateSubmissionBySubmitterResponse, hf as BulkDeleteSubmissionRequest, hg as BulkDeleteSubmissionResult, hK as BulkMarkSubmissionsAsSeenRequest, hL as BulkMarkSubmissionsAsSeenResponse, hk as BulkRemoveSubmissionFromTrashBinRequest, hl as BulkRemoveSubmissionFromTrashBinResult, h2 as BulkSubmissionResult, ic as BulkUpdateFormSubmissionTagsByFilterOptions, h$ as BulkUpdateFormSubmissionTagsByFilterRequest, i0 as BulkUpdateFormSubmissionTagsByFilterResponse, ib as BulkUpdateFormSubmissionTagsOptions, hY as BulkUpdateFormSubmissionTagsRequest, hZ as BulkUpdateFormSubmissionTagsResponse, h_ as BulkUpdateFormSubmissionTagsResult, dU as BulletedListData, cw as ButtonData, a3 as ButtonDataType, iq as ButtonDataTypeWithLiterals, dC as ButtonStyles, dW as CaptionData, dF as CardStyles, au as CardStylesAlignment, iR as CardStylesAlignmentWithLiterals, at as CardStylesType, iQ as CardStylesTypeWithLiterals, dP as CellStyle, bp as ChangeableProperty, jM as ChangeablePropertyWithLiterals, ei as Checkbox, eq as CheckboxGroup, gD as Checkout, cI as CodeBlockData, dL as CollapsibleListData, dt as ColorData, cy as Colors, jW as CommonSearchWithEntityContext, b8 as ComponentType, jv as ComponentTypeWithLiterals, gz as Condition, gv as ConditionNode, gw as ConditionNodeNodeOneOf, hc as ConfirmSubmissionRequest, bf as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bg as ContactField, jD as ContactFieldWithLiterals, hH as CountDeletedSubmissionsRequest, hE as CountSubmissionsByFilterRequest, hG as CountSubmissionsRequest, bK as CreateCheckoutFromSubmissionRequest, bL as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gC as CreateCheckoutFromSubmissionResponse, gZ as CreateSubmissionBySubmitterRequest, g_ as CreateSubmissionBySubmitterResponse, gX as CreateSubmissionForMigrationRequest, gY as CreateSubmissionForMigrationResponse, gT as CreateSubmissionRequest, gU as CreateSubmissionResponse, ac as Crop, iz as CropWithLiterals, hn as CursorPaging, ho as CursorPagingMetadata, hs as CursorQueryPagingMethodOneOf, hv as CursorSearch, hw as CursorSearchPagingMethodOneOf, hp as Cursors, fO as CustomFieldInfo, e4 as CustomOption, cj as DataExtensionsDetails, e9 as DateInput, eb as DatePicker, fp as DateTimeConstraints, e7 as DateTimeInput, dq as Decoration, dr as DecorationDataOneOf, an as DecorationType, iK as DecorationTypeWithLiterals, eN as DefaultCountryConfig, eO as DefaultCountryConfigOptionsOneOf, hd as DeleteSubmissionRequest, he as DeleteSubmissionResponse, dn as Design, dN as Dimensions, ay as Direction, iV as DirectionWithLiterals, ff as DisplayField, bh as DisplayFieldDisplayFieldType, fg as DisplayFieldDisplayFieldTypeOptionsOneOf, jE as DisplayFieldDisplayFieldTypeWithLiterals, aZ as DisplayFieldType, jk as DisplayFieldTypeWithLiterals, cK as DividerData, a8 as DividerDataAlignment, iv as DividerDataAlignmentWithLiterals, hP as DocumentReady, dZ as DocumentStyle, gG as DomainEvent, gH as DomainEventBodyOneOf, eA as DonationInput, eB as DonationInputOption, hQ as DownloadSubmissionRequest, e5 as Dropdown, e6 as DropdownOption, ca as DynamicPriceOptions, fL as EmailInfo, bc as EmailInfoTag, jz as EmailInfoTagWithLiterals, dJ as EmbedData, gN as Empty, gI as EntityCreatedEvent, gL as EntityDeletedEvent, gK as EntityUpdatedEvent, bu as ErrorType, jR as ErrorTypeWithLiterals, dB as EventData, i8 as EventMetadata, bB as ExtendedFields, fj as Field, fk as FieldFieldTypeOptionsOneOf, go as FieldGroup, gt as FieldOverride, gu as FieldOverridePropertyTypeOptionsOneOf, ce as FieldOverrides, a_ as FieldType, jl as FieldTypeWithLiterals, i2 as FieldViolation, i3 as FieldViolationErrorDataOneOf, g7 as FieldsDisplayField, g8 as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cf as FieldsOverrides, eP as FieldsSettings, cL as FileData, cM as FileSource, cN as FileSourceDataOneOf, ev as FileType, ew as FileUpload, aF as FirstDayOfWeek, j0 as FirstDayOfWeekWithLiterals, eD as FixedPayment, c9 as FixedPriceOptions, dw as FontSizeData, ao as FontType, iL as FontTypeWithLiterals, bM as Form, hI as FormDeletedSubmissionsCount, bN as FormField, bZ as FormFieldArrayType, bX as FormFieldBooleanType, fJ as FormFieldContactInfo, fK as FormFieldContactInfoAdditionalInfoOneOf, eU as FormFieldContactInfoAddressInfo, aX as FormFieldContactInfoContactField, ji as FormFieldContactInfoContactFieldWithLiterals, eV as FormFieldContactInfoCustomFieldInfo, eS as FormFieldContactInfoEmailInfo, aT as FormFieldContactInfoEmailInfoTag, je as FormFieldContactInfoEmailInfoTagWithLiterals, eT as FormFieldContactInfoPhoneInfo, aU as FormFieldContactInfoPhoneInfoTag, jf as FormFieldContactInfoPhoneInfoTagWithLiterals, eW as FormFieldContactInfoSubscriptionInfo, bU as FormFieldNumberType, b_ as FormFieldObjectType, bO as FormFieldStringType, bP as FormFieldStringTypeFormatOptionsOneOf, cl as FormFieldV2, aY as FormFieldV2FieldType, cm as FormFieldV2FieldTypeOptionsOneOf, jj as FormFieldV2FieldTypeWithLiterals, fd as FormFieldV2InputField, fe as FormFieldV2InputFieldInputTypeOptionsOneOf, fC as FormLayout, gd as FormOverride, ge as FormProperties, gc as FormRule, i9 as FormSubmissionSearchSpec, bF as FormSubmissionStatusUpdatedEvent, hF as FormSubmissionsCount, aP as Format, a$ as FormatEnumFormat, jm as FormatEnumFormatWithLiterals, ja as FormatWithLiterals, hW as FormattedFormSubmission, hT as FormattedSubmission, c_ as GIF, cZ as GIFData, ae as GIFType, iB as GIFTypeWithLiterals, cP as GalleryData, cV as GalleryOptions, cW as GalleryOptionsLayout, hq as GetDeletedSubmissionRequest, hS as GetFormattedSubmissionRequest, hJ as GetMediaUploadURLRequest, h8 as GetSubmissionByCheckoutIdRequest, h9 as GetSubmissionByCheckoutIdResponse, hM as GetSubmissionDownloadUrlRequest, h6 as GetSubmissionRequest, h7 as GetSubmissionResponse, dg as Gradient, fG as Group, d0 as HTMLData, d1 as HTMLDataDataOneOf, hR as HeadersEntry, c$ as HeadingData, cD as Height, gr as HiddenOptions, gP as IdentificationData, gQ as IdentificationDataIdOneOf, bt as IdentityType, jQ as IdentityTypeWithLiterals, cR as Image, d2 as ImageData, d4 as ImageDataStyles, aD as ImageFit, i_ as ImageFitWithLiterals, aB as ImagePosition, iY as ImagePositionWithLiterals, dD as ImageStyles, eI as InPersonOptions, ax as InitialExpandedItems, iU as InitialExpandedItemsWithLiterals, fl as InputField, aK as InputFieldArrayComponentType, j5 as InputFieldArrayComponentTypeWithLiterals, ej as InputFieldArrayType, eo as InputFieldArrayTypeArrayItems, ep as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aH as InputFieldBooleanComponentType, j2 as InputFieldBooleanComponentTypeWithLiterals, eh as InputFieldBooleanType, aS as InputFieldInputType, fm as InputFieldInputTypeOptionsOneOf, jd as InputFieldInputTypeWithLiterals, ek as InputFieldIntegerType, f9 as InputFieldMultilineAddress, fa as InputFieldMultilineAddressComponentTypeOptionsOneOf, aG as InputFieldNumberComponentType, j1 as InputFieldNumberComponentTypeWithLiterals, ee as InputFieldNumberType, el as InputFieldObjectType, em as InputFieldObjectTypePropertiesType, en as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f7 as InputFieldPayment, aN as InputFieldPaymentComponentType, f8 as InputFieldPaymentComponentTypeOptionsOneOf, j8 as InputFieldPaymentComponentTypeWithLiterals, fb as InputFieldScheduling, aO as InputFieldSchedulingComponentType, fc as InputFieldSchedulingComponentTypeOptionsOneOf, j9 as InputFieldSchedulingComponentTypeWithLiterals, $ as InputFieldStringComponentType, il as InputFieldStringComponentTypeWithLiterals, cn as InputFieldStringType, cp as InputFieldStringTypeDateTimeConstraints, _ as InputFieldStringTypeFormatEnumFormat, ik as InputFieldStringTypeFormatEnumFormatWithLiterals, co as InputFieldStringTypeFormatOptionsOneOf, cq as InputFieldStringTypePhoneConstraints, f5 as InputFieldWixFile, aL as InputFieldWixFileComponentType, f6 as InputFieldWixFileComponentTypeOptionsOneOf, j6 as InputFieldWixFileComponentTypeWithLiterals, f1 as InputField_Array, f2 as InputField_ArrayComponentTypeOptionsOneOf, e$ as InputField_Boolean, f0 as InputField_BooleanComponentTypeOptionsOneOf, eZ as InputField_Number, e_ as InputField_NumberComponentTypeOptionsOneOf, f3 as InputField_Object, f4 as InputField_ObjectValidationOneOf, eX as InputField_String, eY as InputField_StringComponentTypeOptionsOneOf, bb as InputType, jy as InputTypeWithLiterals, bW as IntegerType, gE as IsFormSubmittableRequest, gF as IsFormSubmittableResponse, cT as Item, cU as ItemDataOneOf, fE as ItemLayout, fF as ItemLayoutItemOneOf, h3 as ItemMetadata, cX as ItemStyle, b3 as ItemType, jq as ItemTypeWithLiterals, bj as Kind, jG as KindWithLiterals, av as Layout, dX as LayoutCellData, aa as LayoutType, ix as LayoutTypeWithLiterals, iS as LayoutWithLiterals, gi as LimitationRule, a6 as LineStyle, it as LineStyleWithLiterals, cF as Link, du as LinkData, cG as LinkDataOneOf, d5 as LinkPreviewData, d6 as LinkPreviewDataStyles, a4 as LinkTarget, ir as LinkTargetWithLiterals, hm as ListDeletedSubmissionsRequest, hU as ListFormattedSubmissionsRequest, hV as ListFormattedSubmissionsResponse, dR as ListValue, eG as Location, eH as LocationLocationInfoOneOf, d7 as MapData, d8 as MapSettings, ah as MapType, iE as MapTypeWithLiterals, fH as Margin, bI as MarketingSubscriptionDetails, cQ as Media, d$ as MediaItem, e0 as MediaItemMediaOneOf, e1 as MediaSettings, dv as MentionData, gO as MessageEnvelope, dY as Metadata, bw as Mode, jT as ModeWithLiterals, eL as MultilineAddress, aQ as MultilineAddressComponentType, jb as MultilineAddressComponentTypeWithLiterals, cd as MultilineAddressValidation, gh as NestedForm, cg as NestedFormFieldOverrides, ck as NestedFormOverrides, ct as Node, cu as NodeDataOneOf, cv as NodeStyle, a0 as NodeType, im as NodeTypeWithLiterals, aA as NullValue, iX as NullValueWithLiterals, b1 as NumberComponentType, jo as NumberComponentTypeWithLiterals, bV as NumberErrorMessages, ef as NumberInput, aE as NumberOfColumns, i$ as NumberOfColumnsWithLiterals, fs as NumberType, g5 as ObjectArray, b9 as ObjectArrayComponentType, g6 as ObjectArrayComponentTypeOptionsOneOf, jw as ObjectArrayComponentTypeWithLiterals, fA as ObjectArrayType, c1 as ObjectErrorMessages, fv as ObjectType, b$ as ObjectTypePropertiesType, c0 as ObjectTypePropertiesTypePropertiesTypeOneOf, dK as Oembed, br as Operator, jO as OperatorWithLiterals, T as OptInLevel, ie as OptInLevelWithLiterals, er as Option, dk as OptionDesign, df as OptionLayout, gy as OrCondition, bC as OrderDetails, dT as OrderedListData, ab as Orientation, iy as OrientationWithLiterals, bi as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jN as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jF as OverrideEntityTypeWithLiterals, cO as PDFSettings, ga as PageNavigationOptions, d9 as ParagraphData, f$ as Payment, b7 as PaymentComponentType, g0 as PaymentComponentTypeOptionsOneOf, ju as PaymentComponentTypeWithLiterals, eC as PaymentInput, c7 as PaymentType, db as Permissions, fq as PhoneConstraints, fM as PhoneInfo, bd as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, e8 as PhoneInput, eK as PhoneOptions, as as Placement, iP as PlacementWithLiterals, dI as PlaybackOptions, cz as PluginContainerData, a2 as PluginContainerDataAlignment, ip as PluginContainerDataAlignmentWithLiterals, cA as PluginContainerDataWidth, cB as PluginContainerDataWidthDataOneOf, dl as Poll, da as PollData, dm as PollDataLayout, dj as PollDesign, de as PollLayout, al as PollLayoutDirection, iI as PollLayoutDirectionWithLiterals, ak as PollLayoutType, iH as PollLayoutTypeWithLiterals, dc as PollOption, ap as Position, iM as PositionWithLiterals, gf as PostSubmissionTriggers, c5 as PredefinedValidation, c6 as PredefinedValidationFormatOptionsOneOf, Z as PriceType, ij as PriceTypeWithLiterals, dG as PricingData, cb as Product, ey as ProductCheckboxGroup, ez as ProductCheckboxGroupOption, cc as ProductPriceOptionsOneOf, Y as ProductType, ii as ProductTypeWithLiterals, fw as PropertiesType, b4 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, aJ as PropertiesTypePropertiesTypeEnum, j4 as PropertiesTypePropertiesTypeEnumWithLiterals, fx as PropertiesTypePropertiesTypeOptionsOneOf, bD as PublicTags, c8 as QuantityLimit, hr as QuerySubmissionRequest, hC as QuerySubmissionsByNamespaceForExportRequest, hD as QuerySubmissionsByNamespaceForExportResponse, hA as QuerySubmissionsByNamespaceRequest, hB as QuerySubmissionsByNamespaceResponse, e2 as RadioGroup, e3 as RadioGroupOption, eg as RatingInput, gn as RedirectOptions, cH as Rel, hi as RemoveSubmissionFromTrashBinRequest, hj as RemoveSubmissionFromTrashBinResponse, bG as RemovedSubmissionFromTrash, fB as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, jJ as RequiredIndicatorPlacementWithLiterals, gj as RequiredIndicatorProperties, jI as RequiredIndicatorWithLiterals, gq as RequiredOptions, ar as Resizing, iO as ResizingWithLiterals, gJ as RestoreInfo, hh as RestoreSubmissionFromTrashBinRequest, dE as RibbonStyles, cs as RichContent, g9 as RichContentOptions, gp as Rule, gA as RuleFormOverride, gB as RuleFormOverrideEntityTypeOptionsOneOf, g1 as Scheduling, ba as SchedulingComponentType, g2 as SchedulingComponentTypeOptionsOneOf, jx as SchedulingComponentTypeWithLiterals, hx as SearchDetails, hy as SearchSubmissionsByNamespaceForExportRequest, hz as SearchSubmissionsByNamespaceForExportResponse, hu as SearchSubmissionsByNamespaceRequest, fI as Section, ed as ServiceOption, eu as ServicesCheckboxGroup, ec as ServicesDropdown, dd as Settings, ex as Signature, bv as SortOrder, jS as SortOrderWithLiterals, ht as Sorting, af as Source, iC as SourceWithLiterals, bk as SpamFilterProtectionLevel, jH as SpamFilterProtectionLevelWithLiterals, cC as Spoiler, dx as SpoilerData, bx as Status, jU as StatusWithLiterals, gb as Step, b0 as StringComponentType, jn as StringComponentTypeWithLiterals, bQ as StringErrorMessages, fn as StringType, bR as StringTypeDateTimeConstraints, W as StringTypeFormatEnumFormat, ig as StringTypeFormatEnumFormatWithLiterals, fo as StringTypeFormatOptionsOneOf, bS as StringTypePhoneConstraints, bT as StringTypeValidationMessages, cE as Styles, d3 as StylesBorder, ag as StylesPosition, iD as StylesPositionWithLiterals, bH as SubmissionContactMapped, bJ as SubmissionContactMappingSkipped, hN as SubmissionDocument, hO as SubmissionDocumentDocumentOneOf, by as SubmissionErrorType, jV as SubmissionErrorTypeWithLiterals, P as SubmissionStatus, id as SubmissionStatusWithLiterals, i5 as SubmissionValidationError, i6 as SubmissionValidationErrorErrorMessageOneOf, i4 as SubmissionValidationErrors, gV as SubmissionValidationErrorsDetails, ia as SubmissionsQueryResult, gS as SubmitContactResponse, gk as SubmitSettings, gl as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, jL as SubmitSuccessActionWithLiterals, bz as Submitter, bA as SubmitterSubmitterOneOf, fP as SubscriptionInfo, aW as SubscriptionInfoOptInLevel, jh as SubscriptionInfoOptInLevelWithLiterals, dO as TableCellData, dM as TableData, be as Tag, bE as TagList, jB as TagWithLiterals, es as Tags, et as TagsOption, bn as Target, jK as TargetWithLiterals, a5 as TextAlignment, is as TextAlignmentWithLiterals, dp as TextData, cr as TextInput, d_ as TextNodeStyle, cJ as TextStyle, gm as ThankYouMessageOptions, cY as Thumbnails, ad as ThumbnailsAlignment, iA as ThumbnailsAlignmentWithLiterals, ea as TimeInput, aR as Type, jc as TypeWithLiterals, hX as UpdateExtendedFieldsRequest, ha as UpdateSubmissionRequest, hb as UpdateSubmissionResponse, aM as UploadFileFormat, j7 as UploadFileFormatWithLiterals, gg as UpsertContact, gR as UpsertContactFromSubmissionRequest, eQ as V4FormFieldContactInfo, eR as V4FormFieldContactInfoAdditionalInfoOneOf, fi as V4PageNavigationOptions, fh as V4RichContentOptions, i1 as ValidateFormSubmissionRequest, ch as Validation, gW as ValidationError, X as ValidationFormat, ih as ValidationFormatWithLiterals, fr as ValidationMessages, ci as ValidationValidationOneOf, az as VerticalAlignment, iW as VerticalAlignmentWithLiterals, cS as Video, eJ as VideoConferenceOptions, dH as VideoData, a9 as ViewMode, iw as ViewModeWithLiterals, ai as ViewRole, iF as ViewRoleWithLiterals, aj as VoteRole, iG as VoteRoleWithLiterals, bs as WebhookIdentityType, jP as WebhookIdentityTypeWithLiterals, a7 as Width, a1 as WidthType, io as WidthTypeWithLiterals, iu as WidthWithLiterals, fZ as WixFile, b6 as WixFileComponentType, f_ as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, fW as _Array, fX as _ArrayComponentTypeOptionsOneOf, fU as _Boolean, fV as _BooleanComponentTypeOptionsOneOf, fS as _Number, fT as _NumberComponentTypeOptionsOneOf, fY as _Object, fQ as _String, fR as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BW4xE-Oq.mjs';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -237,6 +237,15 @@ interface GetSubmissionDownloadUrlSignature {
237
237
  */
238
238
  (submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
239
239
  }
240
+ declare function downloadSubmission$1(httpClient: HttpClient): DownloadSubmissionSignature;
241
+ interface DownloadSubmissionSignature {
242
+ /**
243
+ * Download a submission document by redirecting to the document URL.
244
+ * @param - Submission id for which the document is generated.
245
+ * @param - Access token to download the document.
246
+ */
247
+ (submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
248
+ }
240
249
  declare function getFormattedSubmission$1(httpClient: HttpClient): GetFormattedSubmissionSignature;
241
250
  interface GetFormattedSubmissionSignature {
242
251
  /**
@@ -291,6 +300,7 @@ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof cou
291
300
  declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
292
301
  declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
293
302
  declare const getSubmissionDownloadUrl: MaybeContext<BuildRESTFunction<typeof getSubmissionDownloadUrl$1> & typeof getSubmissionDownloadUrl$1>;
303
+ declare const downloadSubmission: MaybeContext<BuildRESTFunction<typeof downloadSubmission$1> & typeof downloadSubmission$1>;
294
304
  declare const getFormattedSubmission: MaybeContext<BuildRESTFunction<typeof getFormattedSubmission$1> & typeof getFormattedSubmission$1>;
295
305
  declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
296
306
  declare const validateFormSubmission: MaybeContext<BuildRESTFunction<typeof validateFormSubmission$1> & typeof validateFormSubmission$1>;
@@ -324,4 +334,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
324
334
  */
325
335
  declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
326
336
 
327
- export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
337
+ export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };