@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,6 +6057,11 @@ interface CreateSubmissionRequest {
5999
6057
  * @maxLength 3000
6000
6058
  */
6001
6059
  captchaToken?: string | null;
6060
+ /**
6061
+ * Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data.
6062
+ * @internal
6063
+ */
6064
+ additionalMetadata?: Record<string, any> | null;
6002
6065
  }
6003
6066
  interface CreateSubmissionResponse {
6004
6067
  /** The created submission. */
@@ -6709,12 +6772,12 @@ interface DownloadSubmissionRequest {
6709
6772
  * Submission id for which the document is generated.
6710
6773
  * @format GUID
6711
6774
  */
6712
- submissionId?: string;
6775
+ submissionId: string;
6713
6776
  /**
6714
6777
  * Access token to download the document.
6715
6778
  * @maxLength 10000
6716
6779
  */
6717
- accessToken?: string;
6780
+ accessToken: string;
6718
6781
  }
6719
6782
  interface RawHttpResponse {
6720
6783
  body?: Uint8Array;
@@ -7272,6 +7335,11 @@ interface CreateSubmissionOptions {
7272
7335
  * @maxLength 3000
7273
7336
  */
7274
7337
  captchaToken?: string | null;
7338
+ /**
7339
+ * Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data.
7340
+ * @internal
7341
+ */
7342
+ additionalMetadata?: Record<string, any> | null;
7275
7343
  }
7276
7344
  /**
7277
7345
  * Retrieves a submission by ID.
@@ -7812,6 +7880,19 @@ declare function bulkMarkSubmissionsAsSeen(ids: string[], formId: string): Promi
7812
7880
  * @fqn wix.forms.v4.FormSubmissionService.GetSubmissionDownloadUrl
7813
7881
  */
7814
7882
  declare function getSubmissionDownloadUrl(submissionId: string): Promise<NonNullablePaths<GetSubmissionDownloadUrlResponse, `document.readyDetails.downloadUrl` | `document.status`, 4>>;
7883
+ /**
7884
+ * Download a submission document by redirecting to the document URL.
7885
+ * @param submissionId - Submission id for which the document is generated.
7886
+ * @param accessToken - Access token to download the document.
7887
+ * @public
7888
+ * @documentationMaturity preview
7889
+ * @requiredField accessToken
7890
+ * @requiredField submissionId
7891
+ * @permissionId WIX_FORMS.SUBMISSION_READ_ANY
7892
+ * @applicableIdentity APP
7893
+ * @fqn wix.forms.v4.FormSubmissionService.DownloadSubmission
7894
+ */
7895
+ declare function downloadSubmission(submissionId: string, accessToken: string): Promise<NonNullablePaths<RawHttpResponse, `body` | `headers` | `headers.${number}.key` | `headers.${number}.value`, 4>>;
7815
7896
  /**
7816
7897
  * Retrieves a submission formatted by language
7817
7898
  * @param submissionId - Submission ID.
@@ -7842,12 +7923,34 @@ interface UpdateExtendedFieldsOptions {
7842
7923
  /** 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. */
7843
7924
  namespaceData: Record<string, any> | null;
7844
7925
  }
7926
+ /**
7927
+ * Bulk update tags on form submissions.
7928
+ * @param submissionIds - Submission IDs to update tags for.
7929
+ * @internal
7930
+ * @documentationMaturity preview
7931
+ * @requiredField submissionIds
7932
+ * @permissionId WIX_FORMS.SUBMISSION_UPDATE_ANY
7933
+ * @applicableIdentity APP
7934
+ * @fqn wix.forms.v4.FormSubmissionService.BulkUpdateFormSubmissionTags
7935
+ */
7936
+ 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>>;
7845
7937
  interface BulkUpdateFormSubmissionTagsOptions {
7846
7938
  /** Tags to be added to submissions */
7847
7939
  assignTags?: PublicTags;
7848
7940
  /** Tags to be removed from submissions */
7849
7941
  unassignTags?: PublicTags;
7850
7942
  }
7943
+ /**
7944
+ * Bulk update tags on form submissions by filter.
7945
+ * @param filter - Filter to select the submission to update
7946
+ * @internal
7947
+ * @documentationMaturity preview
7948
+ * @requiredField filter
7949
+ * @permissionId WIX_FORMS.SUBMISSION_UPDATE_ANY
7950
+ * @applicableIdentity APP
7951
+ * @fqn wix.forms.v4.FormSubmissionService.BulkUpdateFormSubmissionTagsByFilter
7952
+ */
7953
+ declare function bulkUpdateFormSubmissionTagsByFilter(filter: Record<string, any>, options?: BulkUpdateFormSubmissionTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateFormSubmissionTagsByFilterResponse, `jobId`, 2>>;
7851
7954
  interface BulkUpdateFormSubmissionTagsByFilterOptions {
7852
7955
  /** Tags to be added to submissions */
7853
7956
  assignTags?: PublicTags;
@@ -7875,4 +7978,4 @@ interface ValidateFormSubmissionOptions {
7875
7978
  fieldsToValidate?: string[];
7876
7979
  }
7877
7980
 
7878
- export { NodeType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, SubmissionStatus as O, OptInLevel as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, StringTypeFormatEnumFormat as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, ValidationFormat as W, ProductType as X, PriceType as Y, InputFieldStringTypeFormatEnumFormat as Z, InputFieldStringComponentType as _, type UpsertContactFromSubmissionResponse as a, StringComponentType as a$, WidthType as a0, PluginContainerDataAlignment as a1, ButtonDataType as a2, LinkTarget as a3, TextAlignment as a4, LineStyle as a5, Width as a6, DividerDataAlignment as a7, ViewMode as a8, LayoutType as a9, ImagePosition as aA, Alignment as aB, ImageFit as aC, NumberOfColumns as aD, FirstDayOfWeek as aE, InputFieldNumberComponentType as aF, InputFieldBooleanComponentType as aG, ArrayItemsItemType as aH, PropertiesTypePropertiesTypeEnum as aI, InputFieldArrayComponentType as aJ, InputFieldWixFileComponentType as aK, UploadFileFormat as aL, InputFieldPaymentComponentType as aM, InputFieldSchedulingComponentType as aN, Format as aO, MultilineAddressComponentType as aP, Type as aQ, InputFieldInputType as aR, FormFieldContactInfoEmailInfoTag as aS, FormFieldContactInfoPhoneInfoTag as aT, AddressInfoTag as aU, SubscriptionInfoOptInLevel as aV, FormFieldContactInfoContactField as aW, FormFieldV2FieldType as aX, DisplayFieldType as aY, FieldType as aZ, FormatEnumFormat as a_, Orientation as aa, Crop as ab, ThumbnailsAlignment as ac, GIFType as ad, Source as ae, StylesPosition as af, MapType as ag, ViewRole as ah, VoteRole as ai, PollLayoutType as aj, PollLayoutDirection as ak, BackgroundType as al, DecorationType as am, FontType as an, Position as ao, AspectRatio as ap, Resizing as aq, Placement as ar, CardStylesType as as, CardStylesAlignment as at, Layout as au, AppType as av, InitialExpandedItems as aw, Direction as ax, VerticalAlignment as ay, NullValue as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, PaymentComponentType as b6, ComponentType as b7, SchedulingComponentType as b8, InputType as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type StringTypeValidationMessages as bR, type FormFieldNumberType as bS, type NumberErrorMessages as bT, type IntegerType as bU, type FormFieldBooleanType as bV, type BooleanErrorMessages as bW, type FormFieldArrayType as bX, type FormFieldObjectType as bY, type ObjectTypePropertiesType as bZ, type ObjectTypePropertiesTypePropertiesTypeOneOf as b_, EmailInfoTag as ba, PhoneInfoTag as bb, Tag as bc, ConfirmationLevel as bd, ContactField as be, DisplayFieldDisplayFieldType as bf, OverrideEntityType as bg, Kind as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type HTMLDataDataOneOf as c$, type ArrayTypeArrayItems as c0, type ArrayTypeArrayItemsItemsOneOf as c1, type ArrayErrorMessages as c2, type PredefinedValidation as c3, type PredefinedValidationFormatOptionsOneOf as c4, type PaymentType as c5, type QuantityLimit as c6, type FixedPriceOptions as c7, type DynamicPriceOptions as c8, type Product as c9, type Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type FormFieldV2 as cj, type FormFieldV2FieldTypeOptionsOneOf as ck, type InputFieldStringType as cl, type InputFieldStringTypeFormatOptionsOneOf as cm, type InputFieldStringTypeDateTimeConstraints as cn, type InputFieldStringTypePhoneConstraints as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type ButtonStyles as dA, type ImageStyles as dB, type RibbonStyles as dC, type CardStyles as dD, type PricingData as dE, type VideoData as dF, type PlaybackOptions as dG, type EmbedData as dH, type Oembed as dI, type CollapsibleListData as dJ, type TableData as dK, type Dimensions as dL, type TableCellData as dM, type CellStyle as dN, type BorderColors as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type AppEmbedData as dw, type AppEmbedDataAppDataOneOf as dx, type BookingData as dy, type EventData as dz, type UpdateSubmissionValidationErrors as e, type InputField_Array as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type PaymentInput as eA, type FixedPayment as eB, type Appointment as eC, type AppointmentFormatInfoOneOf as eD, type Location as eE, type LocationLocationInfoOneOf as eF, type InPersonOptions as eG, type VideoConferenceOptions as eH, type PhoneOptions as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type V4FormFieldContactInfo as eO, type V4FormFieldContactInfoAdditionalInfoOneOf as eP, type FormFieldContactInfoEmailInfo as eQ, type FormFieldContactInfoPhoneInfo as eR, type FormFieldContactInfoAddressInfo as eS, type FormFieldContactInfoCustomFieldInfo as eT, type FormFieldContactInfoSubscriptionInfo as eU, type InputField_String as eV, type InputField_StringComponentTypeOptionsOneOf as eW, type InputField_Number as eX, type InputField_NumberComponentTypeOptionsOneOf as eY, type InputField_Boolean as eZ, type InputField_BooleanComponentTypeOptionsOneOf as e_, type ServicesDropdown as ea, type ServiceOption as eb, type InputFieldNumberType as ec, type NumberInput as ed, type RatingInput as ee, type InputFieldBooleanType as ef, type Checkbox as eg, type InputFieldArrayType as eh, type InputFieldIntegerType as ei, type InputFieldObjectType as ej, type InputFieldObjectTypePropertiesType as ek, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as el, type InputFieldArrayTypeArrayItems as em, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as en, type CheckboxGroup as eo, type Option as ep, type Tags as eq, type TagsOption as er, type ServicesCheckboxGroup as es, type FileType as et, type FileUpload as eu, type Signature as ev, type ProductCheckboxGroup as ew, type ProductCheckboxGroupOption as ex, type DonationInput as ey, type DonationInputOption as ez, type ConfirmSubmissionResponse as f, type FormLayout as f$, type InputField_ArrayComponentTypeOptionsOneOf as f0, type InputField_Object as f1, type InputField_ObjectValidationOneOf as f2, type InputFieldWixFile as f3, type InputFieldWixFileComponentTypeOptionsOneOf as f4, type InputFieldPayment as f5, type InputFieldPaymentComponentTypeOptionsOneOf as f6, type InputFieldMultilineAddress as f7, type InputFieldMultilineAddressComponentTypeOptionsOneOf as f8, type InputFieldScheduling as f9, type EmailInfo as fA, type PhoneInfo as fB, type AddressInfo as fC, type CustomFieldInfo as fD, type SubscriptionInfo as fE, type _String as fF, type _StringComponentTypeOptionsOneOf as fG, type _Number as fH, type _NumberComponentTypeOptionsOneOf as fI, type _Boolean as fJ, type _BooleanComponentTypeOptionsOneOf as fK, type _Array as fL, type _ArrayComponentTypeOptionsOneOf as fM, type _Object as fN, type WixFile as fO, type WixFileComponentTypeOptionsOneOf as fP, type Payment as fQ, type PaymentComponentTypeOptionsOneOf as fR, type Scheduling as fS, type SchedulingComponentTypeOptionsOneOf as fT, type Address as fU, type AddressComponentTypeOptionsOneOf as fV, type FieldsDisplayField as fW, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as fX, type RichContentOptions as fY, type PageNavigationOptions as fZ, type Step as f_, type InputFieldSchedulingComponentTypeOptionsOneOf as fa, type FormFieldV2InputField as fb, type FormFieldV2InputFieldInputTypeOptionsOneOf as fc, type DisplayField as fd, type DisplayFieldDisplayFieldTypeOptionsOneOf as fe, type V4RichContentOptions as ff, type V4PageNavigationOptions as fg, type Field as fh, type FieldFieldTypeOptionsOneOf as fi, type InputField as fj, type InputFieldInputTypeOptionsOneOf as fk, type StringType as fl, type StringTypeFormatOptionsOneOf as fm, type DateTimeConstraints as fn, type PhoneConstraints as fo, type ValidationMessages as fp, type NumberType as fq, type BooleanType as fr, type ArrayType as fs, type ObjectType as ft, type PropertiesType as fu, type PropertiesTypePropertiesTypeOptionsOneOf as fv, type ArrayItems as fw, type ArrayItemsItemTypeOptionsOneOf as fx, type FormFieldContactInfo as fy, type FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type BulkActionMetadata as g$, type BreakPoint as g0, type ItemLayout as g1, type ItemLayoutItemOneOf as g2, type Group as g3, type Margin as g4, type Section as g5, type FormRule as g6, type FormOverride as g7, type FormProperties as g8, type PostSubmissionTriggers as g9, type DomainEvent as gA, type DomainEventBodyOneOf as gB, type EntityCreatedEvent as gC, type RestoreInfo as gD, type EntityUpdatedEvent as gE, type EntityDeletedEvent as gF, type ActionEvent as gG, type Empty as gH, type MessageEnvelope as gI, type IdentificationData as gJ, type IdentificationDataIdOneOf as gK, type UpsertContactFromSubmissionRequest as gL, type SubmitContactResponse as gM, type CreateSubmissionRequest as gN, type CreateSubmissionResponse as gO, type SubmissionValidationErrorsDetails as gP, type ValidationError as gQ, type CreateSubmissionForMigrationRequest as gR, type CreateSubmissionForMigrationResponse as gS, type CreateSubmissionBySubmitterRequest as gT, type CreateSubmissionBySubmitterResponse as gU, type BulkCreateSubmissionBySubmitterRequest as gV, type BulkCreateSubmissionBySubmitterData as gW, type BulkCreateSubmissionBySubmitterResponse as gX, type BulkSubmissionResult as gY, type ItemMetadata as gZ, type ApplicationError as g_, type UpsertContact as ga, type NestedForm as gb, type LimitationRule as gc, type RequiredIndicatorProperties as gd, type SubmitSettings as ge, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gf, type ThankYouMessageOptions as gg, type RedirectOptions as gh, type FieldGroup as gi, type Rule as gj, type RequiredOptions as gk, type HiddenOptions as gl, type AllowedValuesOptions as gm, type FieldOverride as gn, type FieldOverridePropertyTypeOptionsOneOf as go, type ConditionNode as gp, type ConditionNodeNodeOneOf as gq, type AndCondition as gr, type OrCondition as gs, type Condition as gt, type RuleFormOverride as gu, type RuleFormOverrideEntityTypeOptionsOneOf as gv, type CreateCheckoutFromSubmissionResponse as gw, type Checkout as gx, type IsFormSubmittableRequest as gy, type IsFormSubmittableResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type SubmissionValidationErrors as h$, type GetSubmissionRequest as h0, type GetSubmissionResponse as h1, type GetSubmissionByCheckoutIdRequest as h2, type GetSubmissionByCheckoutIdResponse as h3, type UpdateSubmissionRequest as h4, type UpdateSubmissionResponse as h5, type ConfirmSubmissionRequest as h6, type DeleteSubmissionRequest as h7, type DeleteSubmissionResponse as h8, type BulkDeleteSubmissionRequest as h9, type CountSubmissionsRequest as hA, type CountDeletedSubmissionsRequest as hB, type FormDeletedSubmissionsCount as hC, type GetMediaUploadURLRequest as hD, type BulkMarkSubmissionsAsSeenRequest as hE, type BulkMarkSubmissionsAsSeenResponse as hF, type GetSubmissionDownloadUrlRequest as hG, type SubmissionDocument as hH, type SubmissionDocumentDocumentOneOf as hI, type DocumentReady as hJ, type DownloadSubmissionRequest as hK, type RawHttpResponse as hL, type HeadersEntry as hM, type GetFormattedSubmissionRequest as hN, type FormattedSubmission as hO, type ListFormattedSubmissionsRequest as hP, type ListFormattedSubmissionsResponse as hQ, type FormattedFormSubmission as hR, type UpdateExtendedFieldsRequest as hS, type BulkUpdateFormSubmissionTagsRequest as hT, type BulkUpdateFormSubmissionTagsResponse as hU, type BulkUpdateFormSubmissionTagsResult as hV, type BulkUpdateFormSubmissionTagsByFilterRequest as hW, type BulkUpdateFormSubmissionTagsByFilterResponse as hX, type ValidateFormSubmissionRequest as hY, type FieldViolation as hZ, type FieldViolationErrorDataOneOf as h_, type BulkDeleteSubmissionResult as ha, type RestoreSubmissionFromTrashBinRequest as hb, type RemoveSubmissionFromTrashBinRequest as hc, type RemoveSubmissionFromTrashBinResponse as hd, type BulkRemoveSubmissionFromTrashBinRequest as he, type BulkRemoveSubmissionFromTrashBinResult as hf, type ListDeletedSubmissionsRequest as hg, type CursorPaging as hh, type CursorPagingMetadata as hi, type Cursors as hj, type GetDeletedSubmissionRequest as hk, type QuerySubmissionRequest as hl, type CursorQueryPagingMethodOneOf as hm, type Sorting as hn, type SearchSubmissionsByNamespaceRequest as ho, type CursorSearch as hp, type CursorSearchPagingMethodOneOf as hq, type SearchDetails as hr, type SearchSubmissionsByNamespaceForExportRequest as hs, type SearchSubmissionsByNamespaceForExportResponse as ht, type QuerySubmissionsByNamespaceRequest as hu, type QuerySubmissionsByNamespaceResponse as hv, type QuerySubmissionsByNamespaceForExportRequest as hw, type QuerySubmissionsByNamespaceForExportResponse as hx, type CountSubmissionsByFilterRequest as hy, type FormSubmissionsCount as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type SubmissionValidationError as i0, type SubmissionValidationErrorErrorMessageOneOf as i1, type BaseEventMetadata as i2, type EventMetadata as i3, type FormSubmissionSearchSpec as i4, type SubmissionsQueryResult as i5, type BulkUpdateFormSubmissionTagsOptions as i6, type BulkUpdateFormSubmissionTagsByFilterOptions as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, getFormattedSubmission as kg, updateExtendedFields as kh, validateFormSubmission as ki, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7981
+ export { ValidationFormat as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsOptions as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsResponse as H, type BulkUpdateFormSubmissionTagsByFilterOptions as I, type BulkUpdateFormSubmissionTagsByFilterResponse as J, type ValidateFormSubmissionResponse as K, type ListDeletedSubmissionsOptions as L, type SubmissionCreatedEnvelope as M, type SubmissionDeletedEnvelope as N, type SubmissionRemovedSubmissionFromTrashEnvelope as O, type SubmissionStatusUpdatedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionContactMappingSkippedEnvelope as W, type SubmissionUpdatedEnvelope as X, SubmissionStatus as Y, OptInLevel as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, ProductType as a0, PriceType as a1, InputFieldStringTypeFormatEnumFormat as a2, InputFieldStringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, ImagePosition as aF, Alignment as aG, ImageFit as aH, NumberOfColumns as aI, FirstDayOfWeek as aJ, InputFieldNumberComponentType as aK, InputFieldBooleanComponentType as aL, ArrayItemsItemType as aM, PropertiesTypePropertiesTypeEnum as aN, InputFieldArrayComponentType as aO, InputFieldWixFileComponentType as aP, UploadFileFormat as aQ, InputFieldPaymentComponentType as aR, InputFieldSchedulingComponentType as aS, Format as aT, MultilineAddressComponentType as aU, Type as aV, InputFieldInputType as aW, FormFieldContactInfoEmailInfoTag as aX, FormFieldContactInfoPhoneInfoTag as aY, AddressInfoTag as aZ, SubscriptionInfoOptInLevel as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type FormFieldBooleanType as b$, FormFieldV2FieldType as b0, DisplayFieldType as b1, FieldType as b2, FormatEnumFormat as b3, StringComponentType as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, Mode as bA, Status as bB, SubmissionErrorType as bC, type Submitter as bD, type SubmitterSubmitterOneOf as bE, type ExtendedFields as bF, type OrderDetails as bG, type PublicTags as bH, type TagList as bI, type FormSubmissionStatusUpdatedEvent as bJ, type RemovedSubmissionFromTrash as bK, type SubmissionContactMapped as bL, type MarketingSubscriptionDetails as bM, type SubmissionContactMappingSkipped as bN, type CreateCheckoutFromSubmissionRequest as bO, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bP, type Form as bQ, type FormField as bR, type FormFieldStringType as bS, type FormFieldStringTypeFormatOptionsOneOf as bT, type StringErrorMessages as bU, type StringTypeDateTimeConstraints as bV, type StringTypePhoneConstraints as bW, type StringTypeValidationMessages as bX, type FormFieldNumberType as bY, type NumberErrorMessages as bZ, type IntegerType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, ObjectArrayComponentType as bd, SchedulingComponentType as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, ContactField as bk, DisplayFieldDisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, SpamFilterProtectionLevel as bo, RequiredIndicator as bp, RequiredIndicatorPlacement as bq, Target as br, SubmitSuccessAction as bs, ChangeableProperty as bt, OverrideEntityTypeEnumOverrideEntityType as bu, Operator as bv, WebhookIdentityType as bw, IdentityType as bx, ErrorType as by, SortOrder as bz, type CreateSubmissionValidationErrors as c, type ItemStyle as c$, type BooleanErrorMessages as c0, type FormFieldArrayType as c1, type FormFieldObjectType as c2, type ObjectTypePropertiesType as c3, type ObjectTypePropertiesTypePropertiesTypeOneOf as c4, type ObjectErrorMessages as c5, type ArrayTypeArrayItems as c6, type ArrayTypeArrayItemsItemsOneOf as c7, type ArrayErrorMessages as c8, type PredefinedValidation as c9, type ButtonData as cA, type Border as cB, type Colors as cC, type PluginContainerData as cD, type PluginContainerDataWidth as cE, type PluginContainerDataWidthDataOneOf as cF, type Spoiler as cG, type Height as cH, type Styles as cI, type Link as cJ, type LinkDataOneOf as cK, type Rel as cL, type CodeBlockData as cM, type TextStyle as cN, type DividerData as cO, type FileData as cP, type FileSource as cQ, type FileSourceDataOneOf as cR, type PDFSettings as cS, type GalleryData as cT, type Media as cU, type Image as cV, type Video as cW, type Item as cX, type ItemDataOneOf as cY, type GalleryOptions as cZ, type GalleryOptionsLayout as c_, type PredefinedValidationFormatOptionsOneOf as ca, type PaymentType as cb, type QuantityLimit as cc, type FixedPriceOptions as cd, type DynamicPriceOptions as ce, type Product as cf, type ProductPriceOptionsOneOf as cg, type MultilineAddressValidation as ch, type FieldOverrides as ci, type FieldsOverrides as cj, type NestedFormFieldOverrides as ck, type Validation as cl, type ValidationValidationOneOf as cm, type DataExtensionsDetails as cn, type NestedFormOverrides as co, type FormFieldV2 as cp, type FormFieldV2FieldTypeOptionsOneOf as cq, type InputFieldStringType as cr, type InputFieldStringTypeFormatOptionsOneOf as cs, type InputFieldStringTypeDateTimeConstraints as ct, type InputFieldStringTypePhoneConstraints as cu, type TextInput as cv, type RichContent as cw, type Node as cx, type NodeDataOneOf as cy, type NodeStyle as cz, type UpdateSubmission as d, type LayoutCellData as d$, type Thumbnails as d0, type GIFData as d1, type GIF as d2, type HeadingData as d3, type HTMLData as d4, type HTMLDataDataOneOf as d5, type ImageData as d6, type StylesBorder as d7, type ImageDataStyles as d8, type LinkPreviewData as d9, type FontSizeData as dA, type SpoilerData as dB, type AppEmbedData as dC, type AppEmbedDataAppDataOneOf as dD, type BookingData as dE, type EventData as dF, type ButtonStyles as dG, type ImageStyles as dH, type RibbonStyles as dI, type CardStyles as dJ, type PricingData as dK, type VideoData as dL, type PlaybackOptions as dM, type EmbedData as dN, type Oembed as dO, type CollapsibleListData as dP, type TableData as dQ, type Dimensions as dR, type TableCellData as dS, type CellStyle as dT, type BorderColors as dU, type ListValue as dV, type AudioData as dW, type OrderedListData as dX, type BulletedListData as dY, type BlockquoteData as dZ, type CaptionData as d_, type LinkPreviewDataStyles as da, type MapData as db, type MapSettings as dc, type ParagraphData as dd, type PollData as de, type Permissions as df, type PollOption as dg, type Settings as dh, type PollLayout as di, type OptionLayout as dj, type Gradient as dk, type Background as dl, type BackgroundBackgroundOneOf as dm, type PollDesign as dn, type OptionDesign as dp, type Poll as dq, type PollDataLayout as dr, type Design as ds, type TextData as dt, type Decoration as du, type DecorationDataOneOf as dv, type AnchorData as dw, type ColorData as dx, type LinkData as dy, type MentionData as dz, type UpdateSubmissionValidationErrors as e, type InputField_String as e$, type Metadata as e0, type DocumentStyle as e1, type TextNodeStyle as e2, type MediaItem as e3, type MediaItemMediaOneOf as e4, type MediaSettings as e5, type RadioGroup as e6, type RadioGroupOption as e7, type CustomOption as e8, type Dropdown as e9, type FileUpload as eA, type Signature as eB, type ProductCheckboxGroup as eC, type ProductCheckboxGroupOption as eD, type DonationInput as eE, type DonationInputOption as eF, type PaymentInput as eG, type FixedPayment as eH, type Appointment as eI, type AppointmentFormatInfoOneOf as eJ, type Location as eK, type LocationLocationInfoOneOf as eL, type InPersonOptions as eM, type VideoConferenceOptions as eN, type PhoneOptions as eO, type MultilineAddress as eP, type AddressLine2 as eQ, type DefaultCountryConfig as eR, type DefaultCountryConfigOptionsOneOf as eS, type FieldsSettings as eT, type V4FormFieldContactInfo as eU, type V4FormFieldContactInfoAdditionalInfoOneOf as eV, type FormFieldContactInfoEmailInfo as eW, type FormFieldContactInfoPhoneInfo as eX, type FormFieldContactInfoAddressInfo as eY, type FormFieldContactInfoCustomFieldInfo as eZ, type FormFieldContactInfoSubscriptionInfo as e_, type DropdownOption as ea, type DateTimeInput as eb, type PhoneInput as ec, type DateInput as ed, type TimeInput as ee, type DatePicker as ef, type ServicesDropdown as eg, type ServiceOption as eh, type InputFieldNumberType as ei, type NumberInput as ej, type RatingInput as ek, type InputFieldBooleanType as el, type Checkbox as em, type InputFieldArrayType as en, type InputFieldIntegerType as eo, type InputFieldObjectType as ep, type InputFieldObjectTypePropertiesType as eq, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as er, type InputFieldArrayTypeArrayItems as es, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as et, type CheckboxGroup as eu, type Option as ev, type Tags as ew, type TagsOption as ex, type ServicesCheckboxGroup as ey, type FileType as ez, type ConfirmSubmissionResponse as f, type _ArrayComponentTypeOptionsOneOf as f$, type InputField_StringComponentTypeOptionsOneOf as f0, type InputField_Number as f1, type InputField_NumberComponentTypeOptionsOneOf as f2, type InputField_Boolean as f3, type InputField_BooleanComponentTypeOptionsOneOf as f4, type InputField_Array as f5, type InputField_ArrayComponentTypeOptionsOneOf as f6, type InputField_Object as f7, type InputField_ObjectValidationOneOf as f8, type InputFieldWixFile as f9, type PropertiesType as fA, type PropertiesTypePropertiesTypeOptionsOneOf as fB, type ArrayItems as fC, type ArrayItemsItemTypeOptionsOneOf as fD, type ObjectArrayType as fE, type Repeater as fF, type FormLayout as fG, type BreakPoint as fH, type ItemLayout as fI, type ItemLayoutItemOneOf as fJ, type Group as fK, type Margin as fL, type Section as fM, type FormFieldContactInfo as fN, type FormFieldContactInfoAdditionalInfoOneOf as fO, type EmailInfo as fP, type PhoneInfo as fQ, type AddressInfo as fR, type CustomFieldInfo as fS, type SubscriptionInfo as fT, type _String as fU, type _StringComponentTypeOptionsOneOf as fV, type _Number as fW, type _NumberComponentTypeOptionsOneOf as fX, type _Boolean as fY, type _BooleanComponentTypeOptionsOneOf as fZ, type _Array as f_, type InputFieldWixFileComponentTypeOptionsOneOf as fa, type InputFieldPayment as fb, type InputFieldPaymentComponentTypeOptionsOneOf as fc, type InputFieldMultilineAddress as fd, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fe, type InputFieldScheduling as ff, type InputFieldSchedulingComponentTypeOptionsOneOf as fg, type FormFieldV2InputField as fh, type FormFieldV2InputFieldInputTypeOptionsOneOf as fi, type DisplayField as fj, type DisplayFieldDisplayFieldTypeOptionsOneOf as fk, type V4RichContentOptions as fl, type V4PageNavigationOptions as fm, type Field as fn, type FieldFieldTypeOptionsOneOf as fo, type InputField as fp, type InputFieldInputTypeOptionsOneOf as fq, type StringType as fr, type StringTypeFormatOptionsOneOf as fs, type DateTimeConstraints as ft, type PhoneConstraints as fu, type ValidationMessages as fv, type NumberType as fw, type BooleanType as fx, type ArrayType as fy, type ObjectType as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionForMigrationRequest as g$, type _Object as g0, type WixFile as g1, type WixFileComponentTypeOptionsOneOf as g2, type Payment as g3, type PaymentComponentTypeOptionsOneOf as g4, type Scheduling as g5, type SchedulingComponentTypeOptionsOneOf as g6, type Address as g7, type AddressComponentTypeOptionsOneOf as g8, type ObjectArray as g9, type ConditionNodeNodeOneOf as gA, type AndCondition as gB, type OrCondition as gC, type Condition as gD, type RuleFormOverride as gE, type RuleFormOverrideEntityTypeOptionsOneOf as gF, type CreateCheckoutFromSubmissionResponse as gG, type Checkout as gH, type IsFormSubmittableRequest as gI, type IsFormSubmittableResponse as gJ, type DomainEvent as gK, type DomainEventBodyOneOf as gL, type EntityCreatedEvent as gM, type RestoreInfo as gN, type EntityUpdatedEvent as gO, type EntityDeletedEvent as gP, type ActionEvent as gQ, type Empty as gR, type MessageEnvelope as gS, type IdentificationData as gT, type IdentificationDataIdOneOf as gU, type UpsertContactFromSubmissionRequest as gV, type SubmitContactResponse as gW, type CreateSubmissionRequest as gX, type CreateSubmissionResponse as gY, type SubmissionValidationErrorsDetails as gZ, type ValidationError as g_, type ObjectArrayComponentTypeOptionsOneOf as ga, type FieldsDisplayField as gb, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gc, type RichContentOptions as gd, type PageNavigationOptions as ge, type Step as gf, type FormRule as gg, type FormOverride as gh, type FormProperties as gi, type PostSubmissionTriggers as gj, type UpsertContact as gk, type NestedForm as gl, type LimitationRule as gm, type RequiredIndicatorProperties as gn, type SubmitSettings as go, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gp, type ThankYouMessageOptions as gq, type RedirectOptions as gr, type FieldGroup as gs, type Rule as gt, type RequiredOptions as gu, type HiddenOptions as gv, type AllowedValuesOptions as gw, type FieldOverride as gx, type FieldOverridePropertyTypeOptionsOneOf as gy, type ConditionNode as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type UpdateExtendedFieldsRequest as h$, type CreateSubmissionForMigrationResponse as h0, type CreateSubmissionBySubmitterRequest as h1, type CreateSubmissionBySubmitterResponse as h2, type BulkCreateSubmissionBySubmitterRequest as h3, type BulkCreateSubmissionBySubmitterData as h4, type BulkCreateSubmissionBySubmitterResponse as h5, type BulkSubmissionResult as h6, type ItemMetadata as h7, type ApplicationError as h8, type BulkActionMetadata as h9, type CursorSearchPagingMethodOneOf as hA, type SearchDetails as hB, type SearchSubmissionsByNamespaceForExportRequest as hC, type SearchSubmissionsByNamespaceForExportResponse as hD, type QuerySubmissionsByNamespaceRequest as hE, type QuerySubmissionsByNamespaceResponse as hF, type QuerySubmissionsByNamespaceForExportRequest as hG, type QuerySubmissionsByNamespaceForExportResponse as hH, type CountSubmissionsByFilterRequest as hI, type FormSubmissionsCount as hJ, type CountSubmissionsRequest as hK, type CountDeletedSubmissionsRequest as hL, type FormDeletedSubmissionsCount as hM, type GetMediaUploadURLRequest as hN, type BulkMarkSubmissionsAsSeenRequest as hO, type BulkMarkSubmissionsAsSeenResponse as hP, type GetSubmissionDownloadUrlRequest as hQ, type SubmissionDocument as hR, type SubmissionDocumentDocumentOneOf as hS, type DocumentReady as hT, type DownloadSubmissionRequest as hU, type HeadersEntry as hV, type GetFormattedSubmissionRequest as hW, type FormattedSubmission as hX, type ListFormattedSubmissionsRequest as hY, type ListFormattedSubmissionsResponse as hZ, type FormattedFormSubmission as h_, type GetSubmissionRequest as ha, type GetSubmissionResponse as hb, type GetSubmissionByCheckoutIdRequest as hc, type GetSubmissionByCheckoutIdResponse as hd, type UpdateSubmissionRequest as he, type UpdateSubmissionResponse as hf, type ConfirmSubmissionRequest as hg, type DeleteSubmissionRequest as hh, type DeleteSubmissionResponse as hi, type BulkDeleteSubmissionRequest as hj, type BulkDeleteSubmissionResult as hk, type RestoreSubmissionFromTrashBinRequest as hl, type RemoveSubmissionFromTrashBinRequest as hm, type RemoveSubmissionFromTrashBinResponse as hn, type BulkRemoveSubmissionFromTrashBinRequest as ho, type BulkRemoveSubmissionFromTrashBinResult as hp, type ListDeletedSubmissionsRequest as hq, type CursorPaging as hr, type CursorPagingMetadata as hs, type Cursors as ht, type GetDeletedSubmissionRequest as hu, type QuerySubmissionRequest as hv, type CursorQueryPagingMethodOneOf as hw, type Sorting as hx, type SearchSubmissionsByNamespaceRequest as hy, type CursorSearch as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type NumberOfColumnsWithLiterals as i$, type BulkUpdateFormSubmissionTagsRequest as i0, type BulkUpdateFormSubmissionTagsResult as i1, type BulkUpdateFormSubmissionTagsByFilterRequest as i2, type ValidateFormSubmissionRequest as i3, type FieldViolation as i4, type FieldViolationErrorDataOneOf as i5, type SubmissionValidationErrors as i6, type SubmissionValidationError as i7, type SubmissionValidationErrorErrorMessageOneOf as i8, type BaseEventMetadata as i9, type 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 EventMetadata as ia, type FormSubmissionSearchSpec as ib, type SubmissionsQueryResult 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, bulkUpdateFormSubmissionTags as kp, bulkUpdateFormSubmissionTagsByFilter as kq, validateFormSubmission as kr, 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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-Z3D2uyjn.mjs';
3
- export { gK as ActionEvent, fY as Address, fZ as AddressComponentTypeOptionsOneOf, fG as AddressInfo, aY as AddressInfoTag, jb as AddressInfoTagWithLiterals, eO as AddressLine2, aF as Alignment, iU as AlignmentWithLiterals, gq as AllowedValuesOptions, du as AnchorData, gv as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, az as AppType, iO as AppTypeWithLiterals, h2 as ApplicationError, eG as Appointment, eH as AppointmentFormatInfoOneOf, b8 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c6 as ArrayErrorMessages, fA as ArrayItems, aL as ArrayItemsItemType, fB as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fw as ArrayType, c4 as ArrayTypeArrayItems, c5 as ArrayTypeArrayItemsItemsOneOf, at as AspectRatio, iI as AspectRatioWithLiterals, dU as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, ap as BackgroundType, iE as BackgroundTypeWithLiterals, i4 as BaseEventMetadata, dX as BlockquoteData, dC as BookingData, b5 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, b_ as BooleanErrorMessages, fv as BooleanType, cz as Border, dS as BorderColors, g4 as BreakPoint, h3 as BulkActionMetadata, g_ as BulkCreateSubmissionBySubmitterData, gZ as BulkCreateSubmissionBySubmitterRequest, g$ as BulkCreateSubmissionBySubmitterResponse, hd as BulkDeleteSubmissionRequest, he as BulkDeleteSubmissionResult, hI as BulkMarkSubmissionsAsSeenRequest, hJ as BulkMarkSubmissionsAsSeenResponse, hi as BulkRemoveSubmissionFromTrashBinRequest, hj as BulkRemoveSubmissionFromTrashBinResult, h0 as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResult, dW as BulletedListData, cy as ButtonData, a6 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dE as ButtonStyles, dY as CaptionData, dH as CardStyles, ax as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, aw as CardStylesType, iL as CardStylesTypeWithLiterals, dR as CellStyle, br as ChangeableProperty, jG as ChangeablePropertyWithLiterals, ek as Checkbox, es as CheckboxGroup, gB as Checkout, cK as CodeBlockData, dN as CollapsibleListData, dv as ColorData, cA as Colors, jQ as CommonSearchWithEntityContext, bb as ComponentType, jq as ComponentTypeWithLiterals, gx as Condition, gt as ConditionNode, gu as ConditionNodeNodeOneOf, ha as ConfirmSubmissionRequest, bh as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, bi as ContactField, jx as ContactFieldWithLiterals, hF as CountDeletedSubmissionsRequest, hC as CountSubmissionsByFilterRequest, hE as CountSubmissionsRequest, bM as CreateCheckoutFromSubmissionRequest, bN as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gA as CreateCheckoutFromSubmissionResponse, gX as CreateSubmissionBySubmitterRequest, gY as CreateSubmissionBySubmitterResponse, gV as CreateSubmissionForMigrationRequest, gW as CreateSubmissionForMigrationResponse, gR as CreateSubmissionRequest, gS as CreateSubmissionResponse, af as Crop, iu as CropWithLiterals, hl as CursorPaging, hm as CursorPagingMetadata, hq as CursorQueryPagingMethodOneOf, ht as CursorSearch, hu as CursorSearchPagingMethodOneOf, hn as Cursors, fH as CustomFieldInfo, e6 as CustomOption, cl as DataExtensionsDetails, eb as DateInput, ed as DatePicker, fr as DateTimeConstraints, e9 as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, aq as DecorationType, iF as DecorationTypeWithLiterals, eP as DefaultCountryConfig, eQ as DefaultCountryConfigOptionsOneOf, hb as DeleteSubmissionRequest, hc as DeleteSubmissionResponse, dq as Design, dP as Dimensions, aB as Direction, iQ as DirectionWithLiterals, fh as DisplayField, bj as DisplayFieldDisplayFieldType, fi as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, b0 as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cM as DividerData, ab as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hN as DocumentReady, d$ as DocumentStyle, gE as DomainEvent, gF as DomainEventBodyOneOf, eC as DonationInput, eD as DonationInputOption, hO as DownloadSubmissionRequest, e7 as Dropdown, e8 as DropdownOption, cc as DynamicPriceOptions, fE as EmailInfo, be as EmailInfoTag, jt as EmailInfoTagWithLiterals, dL as EmbedData, gL as Empty, gG as EntityCreatedEvent, gJ as EntityDeletedEvent, gI as EntityUpdatedEvent, bw as ErrorType, jL as ErrorTypeWithLiterals, dD as EventData, i5 as EventMetadata, bD as ExtendedFields, fl as Field, fm as FieldFieldTypeOptionsOneOf, gm as FieldGroup, gr as FieldOverride, gs as FieldOverridePropertyTypeOptionsOneOf, cg as FieldOverrides, b1 as FieldType, jg as FieldTypeWithLiterals, h$ as FieldViolation, i0 as FieldViolationErrorDataOneOf, f_ as FieldsDisplayField, f$ as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ch as FieldsOverrides, eR as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, ex as FileType, ey as FileUpload, aI as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eF as FixedPayment, cb as FixedPriceOptions, dy as FontSizeData, ar as FontType, iG as FontTypeWithLiterals, bO as Form, hG as FormDeletedSubmissionsCount, bP as FormField, b$ as FormFieldArrayType, bZ as FormFieldBooleanType, fC as FormFieldContactInfo, fD as FormFieldContactInfoAdditionalInfoOneOf, eW as FormFieldContactInfoAddressInfo, a_ as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eX as FormFieldContactInfoCustomFieldInfo, eU as FormFieldContactInfoEmailInfo, aW as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eV as FormFieldContactInfoPhoneInfo, aX as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eY as FormFieldContactInfoSubscriptionInfo, bW as FormFieldNumberType, c0 as FormFieldObjectType, bQ as FormFieldStringType, bR as FormFieldStringTypeFormatOptionsOneOf, cn as FormFieldV2, a$ as FormFieldV2FieldType, co as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, ff as FormFieldV2InputField, fg as FormFieldV2InputFieldInputTypeOptionsOneOf, g3 as FormLayout, gb as FormOverride, gc as FormProperties, ga as FormRule, i6 as FormSubmissionSearchSpec, bH as FormSubmissionStatusUpdatedEvent, hD as FormSubmissionsCount, aS as Format, b2 as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, d0 as GIF, c$ as GIFData, ah as GIFType, iw as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, ho as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hH as GetMediaUploadURLRequest, h6 as GetSubmissionByCheckoutIdRequest, h7 as GetSubmissionByCheckoutIdResponse, hK as GetSubmissionDownloadUrlRequest, h4 as GetSubmissionRequest, h5 as GetSubmissionResponse, di as Gradient, g7 as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hQ as HeadersEntry, d1 as HeadingData, cF as Height, gp as HiddenOptions, gN as IdentificationData, gO as IdentificationDataIdOneOf, bv as IdentityType, jK as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aG as ImageFit, iV as ImageFitWithLiterals, aE as ImagePosition, iT as ImagePositionWithLiterals, dF as ImageStyles, eK as InPersonOptions, aA as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fn as InputField, aN as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, el as InputFieldArrayType, eq as InputFieldArrayTypeArrayItems, er as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aK as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ej as InputFieldBooleanType, aV as InputFieldInputType, fo as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, em as InputFieldIntegerType, fb as InputFieldMultilineAddress, fc as InputFieldMultilineAddressComponentTypeOptionsOneOf, aJ as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, eg as InputFieldNumberType, en as InputFieldObjectType, eo as InputFieldObjectTypePropertiesType, ep as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f9 as InputFieldPayment, aQ as InputFieldPaymentComponentType, fa as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, fd as InputFieldScheduling, aR as InputFieldSchedulingComponentType, fe as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, a2 as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cp as InputFieldStringType, cr as InputFieldStringTypeDateTimeConstraints, a1 as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cq as InputFieldStringTypeFormatOptionsOneOf, cs as InputFieldStringTypePhoneConstraints, f7 as InputFieldWixFile, aO as InputFieldWixFileComponentType, f8 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, f3 as InputField_Array, f4 as InputField_ArrayComponentTypeOptionsOneOf, f1 as InputField_Boolean, f2 as InputField_BooleanComponentTypeOptionsOneOf, e$ as InputField_Number, f0 as InputField_NumberComponentTypeOptionsOneOf, f5 as InputField_Object, f6 as InputField_ObjectValidationOneOf, eZ as InputField_String, e_ as InputField_StringComponentTypeOptionsOneOf, bd as InputType, js as InputTypeWithLiterals, bY as IntegerType, gC as IsFormSubmittableRequest, gD as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, g5 as ItemLayout, g6 as ItemLayoutItemOneOf, h1 as ItemMetadata, cZ as ItemStyle, b6 as ItemType, jl as ItemTypeWithLiterals, bl as Kind, jA as KindWithLiterals, ay as Layout, dZ as LayoutCellData, ad as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gg as LimitationRule, a9 as LineStyle, io as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, a7 as LinkTarget, il as LinkTargetWithLiterals, hk as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, dT as ListValue, eI as Location, eJ as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, ak as MapType, iz as MapTypeWithLiterals, g8 as Margin, bK as MarketingSubscriptionDetails, cS as Media, e1 as MediaItem, e2 as MediaItemMediaOneOf, e3 as MediaSettings, dx as MentionData, gM as MessageEnvelope, d_ as Metadata, by as Mode, jN as ModeWithLiterals, eN as MultilineAddress, aT as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cf as MultilineAddressValidation, gf as NestedForm, ci as NestedFormFieldOverrides, cm as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a3 as NodeType, ih as NodeTypeWithLiterals, aD as NullValue, iS as NullValueWithLiterals, b4 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bX as NumberErrorMessages, eh as NumberInput, aH as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fu as NumberType, c3 as ObjectErrorMessages, fx as ObjectType, c1 as ObjectTypePropertiesType, c2 as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bt as Operator, jI as OperatorWithLiterals, Y as OptInLevel, i9 as OptInLevelWithLiterals, et as Option, dm as OptionDesign, dh as OptionLayout, gw as OrCondition, bE as OrderDetails, dV as OrderedListData, ae as Orientation, it as OrientationWithLiterals, bk as OverrideEntityType, bs as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cQ as PDFSettings, g1 as PageNavigationOptions, db as ParagraphData, fU as Payment, ba as PaymentComponentType, fV as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eE as PaymentInput, c9 as PaymentType, dd as Permissions, fs as PhoneConstraints, fF as PhoneInfo, bf as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, ea as PhoneInput, eM as PhoneOptions, av as Placement, iK as PlacementWithLiterals, dK as PlaybackOptions, cB as PluginContainerData, a5 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, ao as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, an as PollLayoutType, iC as PollLayoutTypeWithLiterals, de as PollOption, as as Position, iH as PositionWithLiterals, gd as PostSubmissionTriggers, c7 as PredefinedValidation, c8 as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, id as PriceTypeWithLiterals, dI as PricingData, cd as Product, eA as ProductCheckboxGroup, eB as ProductCheckboxGroupOption, ce as ProductPriceOptionsOneOf, $ as ProductType, ic as ProductTypeWithLiterals, fy as PropertiesType, b7 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aM as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fz as PropertiesTypePropertiesTypeOptionsOneOf, bF as PublicTags, ca as QuantityLimit, hp as QuerySubmissionRequest, hA as QuerySubmissionsByNamespaceForExportRequest, hB as QuerySubmissionsByNamespaceForExportResponse, hy as QuerySubmissionsByNamespaceRequest, hz as QuerySubmissionsByNamespaceResponse, e4 as RadioGroup, e5 as RadioGroupOption, ei as RatingInput, hP as RawHttpResponse, gl as RedirectOptions, cJ as Rel, hg as RemoveSubmissionFromTrashBinRequest, hh as RemoveSubmissionFromTrashBinResponse, bI as RemovedSubmissionFromTrash, bn as RequiredIndicator, bo as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gh as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, go as RequiredOptions, au as Resizing, iJ as ResizingWithLiterals, gH as RestoreInfo, hf as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, cu as RichContent, g0 as RichContentOptions, gn as Rule, gy as RuleFormOverride, gz as RuleFormOverrideEntityTypeOptionsOneOf, fW as Scheduling, bc as SchedulingComponentType, fX as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hv as SearchDetails, hw as SearchSubmissionsByNamespaceForExportRequest, hx as SearchSubmissionsByNamespaceForExportResponse, hs as SearchSubmissionsByNamespaceRequest, g9 as Section, ef as ServiceOption, ew as ServicesCheckboxGroup, ee as ServicesDropdown, df as Settings, ez as Signature, bx as SortOrder, jM as SortOrderWithLiterals, hr as Sorting, ai as Source, ix as SourceWithLiterals, bm as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bz as Status, jO as StatusWithLiterals, g2 as Step, b3 as StringComponentType, ji as StringComponentTypeWithLiterals, bS as StringErrorMessages, fp as StringType, bT as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fq as StringTypeFormatOptionsOneOf, bU as StringTypePhoneConstraints, bV as StringTypeValidationMessages, cG as Styles, d5 as StylesBorder, aj as StylesPosition, iy as StylesPositionWithLiterals, bJ as SubmissionContactMapped, bL as SubmissionContactMappingSkipped, hL as SubmissionDocument, hM as SubmissionDocumentDocumentOneOf, bA as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i2 as SubmissionValidationError, i3 as SubmissionValidationErrorErrorMessageOneOf, i1 as SubmissionValidationErrors, gT as SubmissionValidationErrorsDetails, i7 as SubmissionsQueryResult, gQ as SubmitContactResponse, gi as SubmitSettings, gj as SubmitSettingsSubmitSuccessActionOptionsOneOf, bq as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bB as Submitter, bC as SubmitterSubmitterOneOf, fI as SubscriptionInfo, aZ as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, bg as Tag, bG as TagList, jv as TagWithLiterals, eu as Tags, ev as TagsOption, bp as Target, jE as TargetWithLiterals, a8 as TextAlignment, im as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e0 as TextNodeStyle, cL as TextStyle, gk as ThankYouMessageOptions, c_ as Thumbnails, ag as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, ec as TimeInput, aU as Type, j7 as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, h8 as UpdateSubmissionRequest, h9 as UpdateSubmissionResponse, aP as UploadFileFormat, j2 as UploadFileFormatWithLiterals, ge as UpsertContact, gP as UpsertContactFromSubmissionRequest, eS as V4FormFieldContactInfo, eT as V4FormFieldContactInfoAdditionalInfoOneOf, fk as V4PageNavigationOptions, fj as V4RichContentOptions, h_ as ValidateFormSubmissionRequest, cj as Validation, gU as ValidationError, _ as ValidationFormat, ib as ValidationFormatWithLiterals, ft as ValidationMessages, ck as ValidationValidationOneOf, aC as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cU as Video, eL as VideoConferenceOptions, dJ as VideoData, ac as ViewMode, ir as ViewModeWithLiterals, al as ViewRole, iA as ViewRoleWithLiterals, am as VoteRole, iB as VoteRoleWithLiterals, bu as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, aa as Width, a4 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fS as WixFile, b9 as WixFileComponentType, fT as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fP as _Array, fQ as _ArrayComponentTypeOptionsOneOf, fN as _Boolean, fO as _BooleanComponentTypeOptionsOneOf, fL as _Number, fM as _NumberComponentTypeOptionsOneOf, fR as _Object, fJ as _String, fK as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-Z3D2uyjn.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, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-C2nk1vxO.mjs';
3
+ export { gQ as ActionEvent, g7 as Address, g8 as AddressComponentTypeOptionsOneOf, fR as AddressInfo, aZ as AddressInfoTag, jg as AddressInfoTagWithLiterals, eQ as AddressLine2, aG as Alignment, iZ as AlignmentWithLiterals, gw as AllowedValuesOptions, dw as AnchorData, gB as AndCondition, dC as AppEmbedData, dD as AppEmbedDataAppDataOneOf, aA as AppType, iT as AppTypeWithLiterals, h8 as ApplicationError, eI as Appointment, eJ as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, c8 as ArrayErrorMessages, fC as ArrayItems, aM as ArrayItemsItemType, fD as ArrayItemsItemTypeOptionsOneOf, j3 as ArrayItemsItemTypeWithLiterals, fy as ArrayType, c6 as ArrayTypeArrayItems, c7 as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iN as AspectRatioWithLiterals, dW as AudioData, dl as Background, dm as BackgroundBackgroundOneOf, aq as BackgroundType, iJ as BackgroundTypeWithLiterals, i9 as BaseEventMetadata, dZ as BlockquoteData, dE as BookingData, b6 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, c0 as BooleanErrorMessages, fx as BooleanType, cB as Border, dU as BorderColors, fH as BreakPoint, h9 as BulkActionMetadata, h4 as BulkCreateSubmissionBySubmitterData, h3 as BulkCreateSubmissionBySubmitterRequest, h5 as BulkCreateSubmissionBySubmitterResponse, hj as BulkDeleteSubmissionRequest, hk as BulkDeleteSubmissionResult, hO as BulkMarkSubmissionsAsSeenRequest, hP as BulkMarkSubmissionsAsSeenResponse, ho as BulkRemoveSubmissionFromTrashBinRequest, hp as BulkRemoveSubmissionFromTrashBinResult, h6 as BulkSubmissionResult, i2 as BulkUpdateFormSubmissionTagsByFilterRequest, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResult, dY as BulletedListData, cA as ButtonData, a7 as ButtonDataType, iq as ButtonDataTypeWithLiterals, dG as ButtonStyles, d_ as CaptionData, dJ as CardStyles, ay as CardStylesAlignment, iR as CardStylesAlignmentWithLiterals, ax as CardStylesType, iQ as CardStylesTypeWithLiterals, dT as CellStyle, bt as ChangeableProperty, jM as ChangeablePropertyWithLiterals, em as Checkbox, eu as CheckboxGroup, gH as Checkout, cM as CodeBlockData, dP as CollapsibleListData, dx as ColorData, cC as Colors, jW as CommonSearchWithEntityContext, bc as ComponentType, jv as ComponentTypeWithLiterals, gD as Condition, gz as ConditionNode, gA as ConditionNodeNodeOneOf, hg as ConfirmSubmissionRequest, bj as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bk as ContactField, jD as ContactFieldWithLiterals, hL as CountDeletedSubmissionsRequest, hI as CountSubmissionsByFilterRequest, hK as CountSubmissionsRequest, bO as CreateCheckoutFromSubmissionRequest, bP as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gG as CreateCheckoutFromSubmissionResponse, h1 as CreateSubmissionBySubmitterRequest, h2 as CreateSubmissionBySubmitterResponse, g$ as CreateSubmissionForMigrationRequest, h0 as CreateSubmissionForMigrationResponse, gX as CreateSubmissionRequest, gY as CreateSubmissionResponse, ag as Crop, iz as CropWithLiterals, hr as CursorPaging, hs as CursorPagingMetadata, hw as CursorQueryPagingMethodOneOf, hz as CursorSearch, hA as CursorSearchPagingMethodOneOf, ht as Cursors, fS as CustomFieldInfo, e8 as CustomOption, cn as DataExtensionsDetails, ed as DateInput, ef as DatePicker, ft as DateTimeConstraints, eb as DateTimeInput, du as Decoration, dv as DecorationDataOneOf, ar as DecorationType, iK as DecorationTypeWithLiterals, eR as DefaultCountryConfig, eS as DefaultCountryConfigOptionsOneOf, hh as DeleteSubmissionRequest, hi as DeleteSubmissionResponse, ds as Design, dR as Dimensions, aC as Direction, iV as DirectionWithLiterals, fj as DisplayField, bl as DisplayFieldDisplayFieldType, fk as DisplayFieldDisplayFieldTypeOptionsOneOf, jE as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, jk as DisplayFieldTypeWithLiterals, cO as DividerData, ac as DividerDataAlignment, iv as DividerDataAlignmentWithLiterals, hT as DocumentReady, e1 as DocumentStyle, gK as DomainEvent, gL as DomainEventBodyOneOf, eE as DonationInput, eF as DonationInputOption, hU as DownloadSubmissionRequest, e9 as Dropdown, ea as DropdownOption, ce as DynamicPriceOptions, fP as EmailInfo, bg as EmailInfoTag, jz as EmailInfoTagWithLiterals, dN as EmbedData, gR as Empty, gM as EntityCreatedEvent, gP as EntityDeletedEvent, gO as EntityUpdatedEvent, by as ErrorType, jR as ErrorTypeWithLiterals, dF as EventData, ia as EventMetadata, bF as ExtendedFields, fn as Field, fo as FieldFieldTypeOptionsOneOf, gs as FieldGroup, gx as FieldOverride, gy as FieldOverridePropertyTypeOptionsOneOf, ci as FieldOverrides, b2 as FieldType, jl as FieldTypeWithLiterals, i4 as FieldViolation, i5 as FieldViolationErrorDataOneOf, gb as FieldsDisplayField, gc as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cj as FieldsOverrides, eT as FieldsSettings, cP as FileData, cQ as FileSource, cR as FileSourceDataOneOf, ez as FileType, eA as FileUpload, aJ as FirstDayOfWeek, j0 as FirstDayOfWeekWithLiterals, eH as FixedPayment, cd as FixedPriceOptions, dA as FontSizeData, as as FontType, iL as FontTypeWithLiterals, bQ as Form, hM as FormDeletedSubmissionsCount, bR as FormField, c1 as FormFieldArrayType, b$ as FormFieldBooleanType, fN as FormFieldContactInfo, fO as FormFieldContactInfoAdditionalInfoOneOf, eY as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, ji as FormFieldContactInfoContactFieldWithLiterals, eZ as FormFieldContactInfoCustomFieldInfo, eW as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, je as FormFieldContactInfoEmailInfoTagWithLiterals, eX as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, jf as FormFieldContactInfoPhoneInfoTagWithLiterals, e_ as FormFieldContactInfoSubscriptionInfo, bY as FormFieldNumberType, c2 as FormFieldObjectType, bS as FormFieldStringType, bT as FormFieldStringTypeFormatOptionsOneOf, cp as FormFieldV2, b0 as FormFieldV2FieldType, cq as FormFieldV2FieldTypeOptionsOneOf, jj as FormFieldV2FieldTypeWithLiterals, fh as FormFieldV2InputField, fi as FormFieldV2InputFieldInputTypeOptionsOneOf, fG as FormLayout, gh as FormOverride, gi as FormProperties, gg as FormRule, ib as FormSubmissionSearchSpec, bJ as FormSubmissionStatusUpdatedEvent, hJ as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jm as FormatEnumFormatWithLiterals, ja as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, d2 as GIF, d1 as GIFData, ai as GIFType, iB as GIFTypeWithLiterals, cT as GalleryData, cZ as GalleryOptions, c_ as GalleryOptionsLayout, hu as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hN as GetMediaUploadURLRequest, hc as GetSubmissionByCheckoutIdRequest, hd as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, ha as GetSubmissionRequest, hb as GetSubmissionResponse, dk as Gradient, fK as Group, d4 as HTMLData, d5 as HTMLDataDataOneOf, hV as HeadersEntry, d3 as HeadingData, cH as Height, gv as HiddenOptions, gT as IdentificationData, gU as IdentificationDataIdOneOf, bx as IdentityType, jQ as IdentityTypeWithLiterals, cV as Image, d6 as ImageData, d8 as ImageDataStyles, aH as ImageFit, i_ as ImageFitWithLiterals, aF as ImagePosition, iY as ImagePositionWithLiterals, dH as ImageStyles, eM as InPersonOptions, aB as InitialExpandedItems, iU as InitialExpandedItemsWithLiterals, fp as InputField, aO as InputFieldArrayComponentType, j5 as InputFieldArrayComponentTypeWithLiterals, en as InputFieldArrayType, es as InputFieldArrayTypeArrayItems, et as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, j2 as InputFieldBooleanComponentTypeWithLiterals, el as InputFieldBooleanType, aW as InputFieldInputType, fq as InputFieldInputTypeOptionsOneOf, jd as InputFieldInputTypeWithLiterals, eo as InputFieldIntegerType, fd as InputFieldMultilineAddress, fe as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, j1 as InputFieldNumberComponentTypeWithLiterals, ei as InputFieldNumberType, ep as InputFieldObjectType, eq as InputFieldObjectTypePropertiesType, er as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fb as InputFieldPayment, aR as InputFieldPaymentComponentType, fc as InputFieldPaymentComponentTypeOptionsOneOf, j8 as InputFieldPaymentComponentTypeWithLiterals, ff as InputFieldScheduling, aS as InputFieldSchedulingComponentType, fg as InputFieldSchedulingComponentTypeOptionsOneOf, j9 as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, il as InputFieldStringComponentTypeWithLiterals, cr as InputFieldStringType, ct as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ik as InputFieldStringTypeFormatEnumFormatWithLiterals, cs as InputFieldStringTypeFormatOptionsOneOf, cu as InputFieldStringTypePhoneConstraints, f9 as InputFieldWixFile, aP as InputFieldWixFileComponentType, fa as InputFieldWixFileComponentTypeOptionsOneOf, j6 as InputFieldWixFileComponentTypeWithLiterals, f5 as InputField_Array, f6 as InputField_ArrayComponentTypeOptionsOneOf, f3 as InputField_Boolean, f4 as InputField_BooleanComponentTypeOptionsOneOf, f1 as InputField_Number, f2 as InputField_NumberComponentTypeOptionsOneOf, f7 as InputField_Object, f8 as InputField_ObjectValidationOneOf, e$ as InputField_String, f0 as InputField_StringComponentTypeOptionsOneOf, bf as InputType, jy as InputTypeWithLiterals, b_ as IntegerType, gI as IsFormSubmittableRequest, gJ as IsFormSubmittableResponse, cX as Item, cY as ItemDataOneOf, fI as ItemLayout, fJ as ItemLayoutItemOneOf, h7 as ItemMetadata, c$ as ItemStyle, b7 as ItemType, jq as ItemTypeWithLiterals, bn as Kind, jG as KindWithLiterals, az as Layout, d$ as LayoutCellData, ae as LayoutType, ix as LayoutTypeWithLiterals, iS as LayoutWithLiterals, gm as LimitationRule, aa as LineStyle, it as LineStyleWithLiterals, cJ as Link, dy as LinkData, cK as LinkDataOneOf, d9 as LinkPreviewData, da as LinkPreviewDataStyles, a8 as LinkTarget, ir as LinkTargetWithLiterals, hq as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, dV as ListValue, eK as Location, eL as LocationLocationInfoOneOf, db as MapData, dc as MapSettings, al as MapType, iE as MapTypeWithLiterals, fL as Margin, bM as MarketingSubscriptionDetails, cU as Media, e3 as MediaItem, e4 as MediaItemMediaOneOf, e5 as MediaSettings, dz as MentionData, gS as MessageEnvelope, e0 as Metadata, bA as Mode, jT as ModeWithLiterals, eP as MultilineAddress, aU as MultilineAddressComponentType, jb as MultilineAddressComponentTypeWithLiterals, ch as MultilineAddressValidation, gl as NestedForm, ck as NestedFormFieldOverrides, co as NestedFormOverrides, cx as Node, cy as NodeDataOneOf, cz as NodeStyle, a4 as NodeType, im as NodeTypeWithLiterals, aE as NullValue, iX as NullValueWithLiterals, b5 as NumberComponentType, jo as NumberComponentTypeWithLiterals, bZ as NumberErrorMessages, ej as NumberInput, aI as NumberOfColumns, i$ as NumberOfColumnsWithLiterals, fw as NumberType, g9 as ObjectArray, bd as ObjectArrayComponentType, ga as ObjectArrayComponentTypeOptionsOneOf, jw as ObjectArrayComponentTypeWithLiterals, fE as ObjectArrayType, c5 as ObjectErrorMessages, fz as ObjectType, c3 as ObjectTypePropertiesType, c4 as ObjectTypePropertiesTypePropertiesTypeOneOf, dO as Oembed, bv as Operator, jO as OperatorWithLiterals, Z as OptInLevel, ie as OptInLevelWithLiterals, ev as Option, dp as OptionDesign, dj as OptionLayout, gC as OrCondition, bG as OrderDetails, dX as OrderedListData, af as Orientation, iy as OrientationWithLiterals, bm as OverrideEntityType, bu as OverrideEntityTypeEnumOverrideEntityType, jN as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jF as OverrideEntityTypeWithLiterals, cS as PDFSettings, ge as PageNavigationOptions, dd as ParagraphData, g3 as Payment, bb as PaymentComponentType, g4 as PaymentComponentTypeOptionsOneOf, ju as PaymentComponentTypeWithLiterals, eG as PaymentInput, cb as PaymentType, df as Permissions, fu as PhoneConstraints, fQ as PhoneInfo, bh as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, ec as PhoneInput, eO as PhoneOptions, aw as Placement, iP as PlacementWithLiterals, dM as PlaybackOptions, cD as PluginContainerData, a6 as PluginContainerDataAlignment, ip as PluginContainerDataAlignmentWithLiterals, cE as PluginContainerDataWidth, cF as PluginContainerDataWidthDataOneOf, dq as Poll, de as PollData, dr as PollDataLayout, dn as PollDesign, di as PollLayout, ap as PollLayoutDirection, iI as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iH as PollLayoutTypeWithLiterals, dg as PollOption, at as Position, iM as PositionWithLiterals, gj as PostSubmissionTriggers, c9 as PredefinedValidation, ca as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, ij as PriceTypeWithLiterals, dK as PricingData, cf as Product, eC as ProductCheckboxGroup, eD as ProductCheckboxGroupOption, cg as ProductPriceOptionsOneOf, a0 as ProductType, ii as ProductTypeWithLiterals, fA as PropertiesType, b8 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, j4 as PropertiesTypePropertiesTypeEnumWithLiterals, fB as PropertiesTypePropertiesTypeOptionsOneOf, bH as PublicTags, cc as QuantityLimit, hv as QuerySubmissionRequest, hG as QuerySubmissionsByNamespaceForExportRequest, hH as QuerySubmissionsByNamespaceForExportResponse, hE as QuerySubmissionsByNamespaceRequest, hF as QuerySubmissionsByNamespaceResponse, e6 as RadioGroup, e7 as RadioGroupOption, ek as RatingInput, gr as RedirectOptions, cL as Rel, hm as RemoveSubmissionFromTrashBinRequest, hn as RemoveSubmissionFromTrashBinResponse, bK as RemovedSubmissionFromTrash, fF as Repeater, bp as RequiredIndicator, bq as RequiredIndicatorPlacement, jJ as RequiredIndicatorPlacementWithLiterals, gn as RequiredIndicatorProperties, jI as RequiredIndicatorWithLiterals, gu as RequiredOptions, av as Resizing, iO as ResizingWithLiterals, gN as RestoreInfo, hl as RestoreSubmissionFromTrashBinRequest, dI as RibbonStyles, cw as RichContent, gd as RichContentOptions, gt as Rule, gE as RuleFormOverride, gF as RuleFormOverrideEntityTypeOptionsOneOf, g5 as Scheduling, be as SchedulingComponentType, g6 as SchedulingComponentTypeOptionsOneOf, jx as SchedulingComponentTypeWithLiterals, hB as SearchDetails, hC as SearchSubmissionsByNamespaceForExportRequest, hD as SearchSubmissionsByNamespaceForExportResponse, hy as SearchSubmissionsByNamespaceRequest, fM as Section, eh as ServiceOption, ey as ServicesCheckboxGroup, eg as ServicesDropdown, dh as Settings, eB as Signature, bz as SortOrder, jS as SortOrderWithLiterals, hx as Sorting, aj as Source, iC as SourceWithLiterals, bo as SpamFilterProtectionLevel, jH as SpamFilterProtectionLevelWithLiterals, cG as Spoiler, dB as SpoilerData, bB as Status, jU as StatusWithLiterals, gf as Step, b4 as StringComponentType, jn as StringComponentTypeWithLiterals, bU as StringErrorMessages, fr as StringType, bV as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ig as StringTypeFormatEnumFormatWithLiterals, fs as StringTypeFormatOptionsOneOf, bW as StringTypePhoneConstraints, bX as StringTypeValidationMessages, cI as Styles, d7 as StylesBorder, ak as StylesPosition, iD as StylesPositionWithLiterals, bL as SubmissionContactMapped, bN as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bC as SubmissionErrorType, jV as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, id as SubmissionStatusWithLiterals, i7 as SubmissionValidationError, i8 as SubmissionValidationErrorErrorMessageOneOf, i6 as SubmissionValidationErrors, gZ as SubmissionValidationErrorsDetails, ic as SubmissionsQueryResult, gW as SubmitContactResponse, go as SubmitSettings, gp as SubmitSettingsSubmitSuccessActionOptionsOneOf, bs as SubmitSuccessAction, jL as SubmitSuccessActionWithLiterals, bD as Submitter, bE as SubmitterSubmitterOneOf, fT as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jh as SubscriptionInfoOptInLevelWithLiterals, dS as TableCellData, dQ as TableData, bi as Tag, bI as TagList, jB as TagWithLiterals, ew as Tags, ex as TagsOption, br as Target, jK as TargetWithLiterals, a9 as TextAlignment, is as TextAlignmentWithLiterals, dt as TextData, cv as TextInput, e2 as TextNodeStyle, cN as TextStyle, gq as ThankYouMessageOptions, d0 as Thumbnails, ah as ThumbnailsAlignment, iA as ThumbnailsAlignmentWithLiterals, ee as TimeInput, aV as Type, jc as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, he as UpdateSubmissionRequest, hf as UpdateSubmissionResponse, aQ as UploadFileFormat, j7 as UploadFileFormatWithLiterals, gk as UpsertContact, gV as UpsertContactFromSubmissionRequest, eU as V4FormFieldContactInfo, eV as V4FormFieldContactInfoAdditionalInfoOneOf, fm as V4PageNavigationOptions, fl as V4RichContentOptions, i3 as ValidateFormSubmissionRequest, cl as Validation, g_ as ValidationError, $ as ValidationFormat, ih as ValidationFormatWithLiterals, fv as ValidationMessages, cm as ValidationValidationOneOf, aD as VerticalAlignment, iW as VerticalAlignmentWithLiterals, cW as Video, eN as VideoConferenceOptions, dL as VideoData, ad as ViewMode, iw as ViewModeWithLiterals, am as ViewRole, iF as ViewRoleWithLiterals, an as VoteRole, iG as VoteRoleWithLiterals, bw as WebhookIdentityType, jP as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, io as WidthTypeWithLiterals, iu as WidthWithLiterals, g1 as WixFile, ba as WixFileComponentType, g2 as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, f_ as _Array, f$ as _ArrayComponentTypeOptionsOneOf, fY as _Boolean, fZ as _BooleanComponentTypeOptionsOneOf, fW as _Number, fX as _NumberComponentTypeOptionsOneOf, g0 as _Object, fU as _String, fV as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-C2nk1vxO.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
  /**
@@ -309,6 +318,7 @@ declare const countDeletedSubmissions: MaybeContext<BuildRESTFunction<typeof cou
309
318
  declare const getMediaUploadUrl: MaybeContext<BuildRESTFunction<typeof getMediaUploadUrl$1> & typeof getMediaUploadUrl$1>;
310
319
  declare const bulkMarkSubmissionsAsSeen: MaybeContext<BuildRESTFunction<typeof bulkMarkSubmissionsAsSeen$1> & typeof bulkMarkSubmissionsAsSeen$1>;
311
320
  declare const getSubmissionDownloadUrl: MaybeContext<BuildRESTFunction<typeof getSubmissionDownloadUrl$1> & typeof getSubmissionDownloadUrl$1>;
321
+ declare const downloadSubmission: MaybeContext<BuildRESTFunction<typeof downloadSubmission$1> & typeof downloadSubmission$1>;
312
322
  declare const getFormattedSubmission: MaybeContext<BuildRESTFunction<typeof getFormattedSubmission$1> & typeof getFormattedSubmission$1>;
313
323
  declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof updateExtendedFields$1> & typeof updateExtendedFields$1>;
314
324
  /** @internal */
@@ -346,4 +356,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
346
356
  */
347
357
  declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
348
358
 
349
- export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, 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, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, 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 };
359
+ export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, 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, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, 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 };