@wix/auto_sdk_forms_submissions 1.0.109 → 1.0.111

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 (54) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-DmrA9Uxi.d.ts → forms-v4-submission-submissions.universal-B2-JQqx2.d.ts} +55 -30
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +10 -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 +10 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +56 -31
  9. package/build/cjs/meta.js +10 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.d.ts +1351 -0
  12. package/build/cjs/schemas.js +2318 -0
  13. package/build/cjs/schemas.js.map +1 -0
  14. package/build/es/{forms-v4-submission-submissions.universal-DmrA9Uxi.d.mts → forms-v4-submission-submissions.universal-B2-JQqx2.d.mts} +55 -30
  15. package/build/es/index.d.mts +2 -2
  16. package/build/es/index.mjs +9 -0
  17. package/build/es/index.mjs.map +1 -1
  18. package/build/es/index.typings.d.mts +2 -2
  19. package/build/es/index.typings.mjs +9 -0
  20. package/build/es/index.typings.mjs.map +1 -1
  21. package/build/es/meta.d.mts +56 -31
  22. package/build/es/meta.mjs +9 -0
  23. package/build/es/meta.mjs.map +1 -1
  24. package/build/es/schemas.d.mts +1351 -0
  25. package/build/es/schemas.mjs +2232 -0
  26. package/build/es/schemas.mjs.map +1 -0
  27. package/build/internal/cjs/{forms-v4-submission-submissions.universal-DH6N9f2_.d.ts → forms-v4-submission-submissions.universal-CoYDEhLi.d.ts} +55 -30
  28. package/build/internal/cjs/index.d.ts +2 -2
  29. package/build/internal/cjs/index.js +10 -0
  30. package/build/internal/cjs/index.js.map +1 -1
  31. package/build/internal/cjs/index.typings.d.ts +2 -2
  32. package/build/internal/cjs/index.typings.js +10 -0
  33. package/build/internal/cjs/index.typings.js.map +1 -1
  34. package/build/internal/cjs/meta.d.ts +56 -31
  35. package/build/internal/cjs/meta.js +10 -0
  36. package/build/internal/cjs/meta.js.map +1 -1
  37. package/build/internal/cjs/schemas.d.ts +1351 -0
  38. package/build/internal/cjs/schemas.js +2318 -0
  39. package/build/internal/cjs/schemas.js.map +1 -0
  40. package/build/internal/es/{forms-v4-submission-submissions.universal-DH6N9f2_.d.mts → forms-v4-submission-submissions.universal-CoYDEhLi.d.mts} +55 -30
  41. package/build/internal/es/index.d.mts +2 -2
  42. package/build/internal/es/index.mjs +9 -0
  43. package/build/internal/es/index.mjs.map +1 -1
  44. package/build/internal/es/index.typings.d.mts +2 -2
  45. package/build/internal/es/index.typings.mjs +9 -0
  46. package/build/internal/es/index.typings.mjs.map +1 -1
  47. package/build/internal/es/meta.d.mts +56 -31
  48. package/build/internal/es/meta.mjs +9 -0
  49. package/build/internal/es/meta.mjs.map +1 -1
  50. package/build/internal/es/schemas.d.mts +1351 -0
  51. package/build/internal/es/schemas.mjs +2232 -0
  52. package/build/internal/es/schemas.mjs.map +1 -0
  53. package/package.json +11 -4
  54. package/schemas/package.json +3 -0
@@ -562,6 +562,12 @@ interface Form {
562
562
  tags?: Tags;
563
563
  /** Source used for contact autofill when filling form fields. Default: FORM_INPUT. */
564
564
  autoFillContact?: ContactAutofillWithLiterals;
565
+ /**
566
+ * Controls who can read submissions of this form beyond the standard permission.
567
+ *
568
+ * Default: `OWNER_AND_COLLABORATORS`
569
+ */
570
+ submissionAccess?: SubmissionAccessWithLiterals;
565
571
  }
566
572
  interface FormField {
567
573
  /**
@@ -594,9 +600,9 @@ interface FormField {
594
600
  }
595
601
  interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
596
602
  /** DATE format options */
597
- dateOptions?: StringTypeDateTimeConstraints;
603
+ dateOptions?: DateTimeAdvancedConstraints;
598
604
  /** DATE_TIME format options */
599
- dateTimeOptions?: DateTimeAdvancedConstraints;
605
+ dateTimeOptions?: StringTypeDateTimeConstraints;
600
606
  /** TIME format options */
601
607
  timeOptions?: StringTypeDateTimeConstraints;
602
608
  /** DATE_OPTIONAL_TIME format options */
@@ -634,9 +640,9 @@ interface FormFieldStringType extends FormFieldStringTypeFormatOptionsOneOf {
634
640
  /** @oneof */
635
641
  interface FormFieldStringTypeFormatOptionsOneOf {
636
642
  /** DATE format options */
637
- dateOptions?: StringTypeDateTimeConstraints;
643
+ dateOptions?: DateTimeAdvancedConstraints;
638
644
  /** DATE_TIME format options */
639
- dateTimeOptions?: DateTimeAdvancedConstraints;
645
+ dateTimeOptions?: StringTypeDateTimeConstraints;
640
646
  /** TIME format options */
641
647
  timeOptions?: StringTypeDateTimeConstraints;
642
648
  /** DATE_OPTIONAL_TIME format options */
@@ -669,24 +675,6 @@ interface StringErrorMessages {
669
675
  */
670
676
  default?: string | null;
671
677
  }
672
- interface StringTypeDateTimeConstraints {
673
- /**
674
- * Support static constrains defined as ISO date/time format, as well as
675
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
676
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
677
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
678
- * @maxLength 50
679
- */
680
- minimum?: string | null;
681
- /**
682
- * Support static constrains defined as ISO date/time format, as well as
683
- * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
684
- * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
685
- * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
686
- * @maxLength 50
687
- */
688
- maximum?: string | null;
689
- }
690
678
  interface DateTimeAdvancedConstraints {
691
679
  /**
692
680
  * Allows to specify available and unavailable dates and days of the week.
@@ -750,6 +738,24 @@ declare enum DayOfWeek {
750
738
  }
751
739
  /** @enumType */
752
740
  type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
741
+ interface StringTypeDateTimeConstraints {
742
+ /**
743
+ * Support static constrains defined as ISO date/time format, as well as
744
+ * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
745
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
746
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
747
+ * @maxLength 50
748
+ */
749
+ minimum?: string | null;
750
+ /**
751
+ * Support static constrains defined as ISO date/time format, as well as
752
+ * dynamic calculations can be performed using special keywords such as "$now" to represent the current date and time.
753
+ * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
754
+ * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
755
+ * @maxLength 50
756
+ */
757
+ maximum?: string | null;
758
+ }
753
759
  interface StringTypePhoneConstraints {
754
760
  /**
755
761
  * Country codes for phone number that are allowed
@@ -1294,9 +1300,9 @@ interface StringCorrectAnswersList {
1294
1300
  }
1295
1301
  interface StringType extends StringTypeFormatOptionsOneOf {
1296
1302
  /** Validation rules for strings with date format. */
1297
- dateOptions?: DateTimeConstraints;
1303
+ dateOptions?: DateTimeAdvancedConstraints;
1298
1304
  /** Validation rules for strings with date and time format. */
1299
- dateTimeOptions?: DateTimeAdvancedConstraints;
1305
+ dateTimeOptions?: DateTimeConstraints;
1300
1306
  /** Validation rules for strings with time format. */
1301
1307
  timeOptions?: DateTimeConstraints;
1302
1308
  /** Validation rules for string with date and time format, where time is optional. */
@@ -1333,9 +1339,9 @@ interface StringType extends StringTypeFormatOptionsOneOf {
1333
1339
  /** @oneof */
1334
1340
  interface StringTypeFormatOptionsOneOf {
1335
1341
  /** Validation rules for strings with date format. */
1336
- dateOptions?: DateTimeConstraints;
1342
+ dateOptions?: DateTimeAdvancedConstraints;
1337
1343
  /** Validation rules for strings with date and time format. */
1338
- dateTimeOptions?: DateTimeAdvancedConstraints;
1344
+ dateTimeOptions?: DateTimeConstraints;
1339
1345
  /** Validation rules for strings with time format. */
1340
1346
  timeOptions?: DateTimeConstraints;
1341
1347
  /** Validation rules for string with date and time format, where time is optional. */
@@ -3853,6 +3859,7 @@ interface DateTimeInput {
3853
3859
  * such as "$now" to represent the current date and time.
3854
3860
  * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3855
3861
  * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3862
+ * @maxLength 50
3856
3863
  */
3857
3864
  default?: string | null;
3858
3865
  /** Media content associated with the field, such as an image. */
@@ -3927,6 +3934,7 @@ interface DateInput {
3927
3934
  * such as "$now" to represent the current date and time.
3928
3935
  * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3929
3936
  * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3937
+ * @maxLength 50
3930
3938
  */
3931
3939
  default?: string | null;
3932
3940
  /** Media content associated with the field, such as an image. */
@@ -3971,6 +3979,7 @@ interface TimeInput {
3971
3979
  * such as "$now" to represent the current date and time.
3972
3980
  * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
3973
3981
  * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
3982
+ * @maxLength 50
3974
3983
  */
3975
3984
  default?: string | null;
3976
3985
  /** Media content associated with the field, such as an image. */
@@ -4005,6 +4014,7 @@ interface DatePicker {
4005
4014
  * such as "$now" to represent the current date and time.
4006
4015
  * The dynamic calculation supports expressions like "$now+2d" (2 days in the future), "$now-1h" (1 hour in the past), etc.
4007
4016
  * The regex pattern for dynamic calculations is: \$now([+-]\d{1,2})([yMdmh])
4017
+ * @maxLength 50
4008
4018
  */
4009
4019
  default?: string | null;
4010
4020
  /** Media content associated with the field, such as an image. */
@@ -4463,7 +4473,7 @@ interface FileType {
4463
4473
  fileLimit?: number;
4464
4474
  /**
4465
4475
  * Supported file formats for uploaded files.
4466
- * @maxSize 5
4476
+ * @maxSize 6
4467
4477
  */
4468
4478
  uploadFileFormats?: UploadFileFormatWithLiterals[];
4469
4479
  }
@@ -4477,10 +4487,12 @@ declare enum UploadFileFormat {
4477
4487
  /** Document files. */
4478
4488
  DOCUMENT = "DOCUMENT",
4479
4489
  /** Archive files. */
4480
- ARCHIVE = "ARCHIVE"
4490
+ ARCHIVE = "ARCHIVE",
4491
+ /** 3D model files. */
4492
+ MODEL_3D = "MODEL_3D"
4481
4493
  }
4482
4494
  /** @enumType */
4483
- type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
4495
+ type UploadFileFormatWithLiterals = UploadFileFormat | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
4484
4496
  interface FileUpload {
4485
4497
  /**
4486
4498
  * Field label.
@@ -6109,6 +6121,19 @@ declare enum ContactAutofill {
6109
6121
  }
6110
6122
  /** @enumType */
6111
6123
  type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
6124
+ /** Controls who can read submissions of this form. */
6125
+ declare enum SubmissionAccess {
6126
+ /** Unknown submission access. */
6127
+ UNKNOWN_SUBMISSION_ACCESS = "UNKNOWN_SUBMISSION_ACCESS",
6128
+ /** Only users with `WIX_FORM.SUBMISSIONS_READ_ANY` permission. Default behavior. */
6129
+ OWNER_AND_COLLABORATORS = "OWNER_AND_COLLABORATORS",
6130
+ /** Logged-in site members can read submissions. */
6131
+ MEMBERS = "MEMBERS",
6132
+ /** Any site visitor with a valid Wix session can read submissions. */
6133
+ PUBLIC = "PUBLIC"
6134
+ }
6135
+ /** @enumType */
6136
+ type SubmissionAccessWithLiterals = SubmissionAccess | 'UNKNOWN_SUBMISSION_ACCESS' | 'OWNER_AND_COLLABORATORS' | 'MEMBERS' | 'PUBLIC';
6112
6137
  interface CreateCheckoutFromSubmissionResponse {
6113
6138
  /**
6114
6139
  * Checkout ID (applicable for form involving payments).
@@ -8266,4 +8291,4 @@ interface ValidateFormSubmissionOptions {
8266
8291
  fieldsToValidate?: string[];
8267
8292
  }
8268
8293
 
8269
- export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, ImagePosition as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, DayOfWeek as a3, ValidationFormat as a4, ProductType as a5, PriceType as a6, PropertiesTypeEnum as a7, FieldType as a8, FormatEnumFormat as a9, DecorationType as aA, FontType as aB, Position as aC, AspectRatio as aD, Resizing as aE, Placement as aF, CardStylesType as aG, CardStylesAlignment as aH, Layout as aI, AppType as aJ, InitialExpandedItems as aK, Direction as aL, VerticalAlignment as aM, NullValue as aN, ImageScalingScaling as aO, LayoutDataImagePosition as aP, Origin as aQ, LayoutDataBackgroundType as aR, BackdropType as aS, VerticalAlignmentAlignment as aT, ResponsivenessBehaviour as aU, DesignTarget as aV, Scaling as aW, ImagePositionPosition as aX, CardDataBackgroundType as aY, ListStyle as aZ, Indentation as a_, StringComponentType as aa, NodeType as ab, BackgroundType as ac, GradientType as ad, WidthType as ae, PluginContainerDataAlignment as af, ButtonDataType as ag, LinkTarget as ah, TextAlignment as ai, LineStyle as aj, Width as ak, DividerDataAlignment as al, ViewMode as am, LayoutType as an, Orientation as ao, Crop as ap, ThumbnailsAlignment as aq, GIFType as ar, Source as as, StylesPosition as at, MapType as au, ViewRole as av, VoteRole as aw, PollLayoutType as ax, PollLayoutDirection as ay, PollDesignBackgroundType as az, type CreateSubmissionApplicationErrors as b, type DomainEventBodyOneOf as b$, Alignment as b0, ImageFit as b1, NumberOfColumns as b2, FirstDayOfWeek as b3, NumberComponentType as b4, BooleanComponentType as b5, ItemType as b6, PropertiesTypePropertiesTypeEnum as b7, ArrayComponentType as b8, WixFileComponentType as b9, RequiredIndicatorPlacement as bA, Target as bB, SubmitSuccessAction as bC, ChangeableProperty as bD, OverrideEntityTypeEnumOverrideEntityType as bE, Operator as bF, ResultsDisplay as bG, ContactAutofill as bH, IdentityType as bI, ErrorType as bJ, SortOrder as bK, Mode as bL, Status as bM, SubmissionErrorType as bN, type Submitter as bO, type SubmitterSubmitterOneOf as bP, type ExtendedFields as bQ, type OrderDetails as bR, type PublicTags as bS, type TagList as bT, type AppointmentDetails as bU, type FormSubmissionStatusUpdatedEvent as bV, type RemovedSubmissionFromTrash as bW, type SubmissionContactMapped as bX, type MarketingSubscriptionDetails as bY, type SubmissionContactMappingSkipped as bZ, type DomainEvent as b_, UploadFileFormat as ba, PaymentComponentType as bb, ComponentType as bc, Type as bd, ObjectArrayComponentType as be, SchedulingComponentType as bf, Format as bg, MeetingType as bh, StaffStrategySelection as bi, InputType as bj, EmailInfoTag as bk, PhoneInfoTag as bl, Tag as bm, ConfirmationLevel as bn, SubscriptionChannel as bo, ContactField as bp, DisplayFieldType as bq, OverrideEntityType as br, Kind as bs, FormFieldContactInfoEmailInfoTag as bt, FormFieldContactInfoPhoneInfoTag as bu, AddressInfoTag as bv, SubscriptionInfoOptInLevel as bw, FormFieldContactInfoContactField as bx, SpamFilterProtectionLevel as by, RequiredIndicator as bz, type CreateSubmissionValidationErrors as c, type StringQuizFieldSettings as c$, type EntityCreatedEvent as c0, type RestoreInfo as c1, type EntityUpdatedEvent as c2, type EntityDeletedEvent as c3, type ActionEvent as c4, type MessageEnvelope as c5, type IdentificationData as c6, type IdentificationDataIdOneOf as c7, type AccountInfo as c8, type CreateCheckoutFromSubmissionRequest as c9, 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 ObjectArrayType as cK, type PropertiesType as cL, type NestedFormFieldOverrides as cM, type Validation as cN, type ValidationValidationOneOf as cO, type DataExtensionsDetails as cP, type NestedFormOverrides as cQ, type Field as cR, type FieldFieldTypeOptionsOneOf as cS, type InputField as cT, type InputFieldInputTypeOptionsOneOf as cU, type StringCorrectAnswersList as cV, type StringType as cW, type StringTypeFormatOptionsOneOf as cX, type DateTimeConstraints as cY, type PhoneConstraints as cZ, type ValidationMessages as c_, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as ca, type Form as cb, type FormField as cc, type FormFieldStringType as cd, type FormFieldStringTypeFormatOptionsOneOf as ce, type StringErrorMessages as cf, type StringTypeDateTimeConstraints as cg, type DateTimeAdvancedConstraints as ch, type Availability as ci, type DateRange as cj, type StringTypePhoneConstraints as ck, type StringTypeValidationMessages as cl, type FormFieldNumberType as cm, type NumberErrorMessages as cn, type IntegerType as co, type FormFieldBooleanType as cp, type BooleanErrorMessages as cq, type FormFieldArrayType as cr, type FormFieldObjectType as cs, type FormFieldObjectTypePropertiesType as ct, type FormFieldObjectTypePropertiesTypePropertiesTypeOneOf as cu, type ObjectErrorMessages as cv, type ArrayTypeArrayItems as cw, type ArrayTypeArrayItemsItemsOneOf as cx, type ArrayErrorMessages as cy, type PredefinedValidation as cz, type UpdateSubmission as d, type PollDataLayout as d$, type TextInput as d0, type RichContent as d1, type Node as d2, type NodeDataOneOf as d3, type NodeStyle as d4, type ButtonData as d5, type Gradient as d6, type Stop as d7, type Border as d8, type Colors as d9, type ItemStyle as dA, type Thumbnails as dB, type GIFData as dC, type GIF as dD, type HeadingData as dE, type HTMLData as dF, type HTMLDataDataOneOf as dG, type ImageData as dH, type StylesBorder as dI, type ImageDataStyles as dJ, type LinkPreviewData as dK, type LinkPreviewDataStyles as dL, type MapData as dM, type MapSettings as dN, type ParagraphData as dO, type PollData as dP, type Permissions as dQ, type PollOption as dR, type Settings as dS, type PollLayout as dT, type OptionLayout as dU, type BackgroundGradient as dV, type PollDesignBackground as dW, type PollDesignBackgroundBackgroundOneOf as dX, type PollDesign as dY, type OptionDesign as dZ, type Poll as d_, type Background as da, type PluginContainerData as db, type PluginContainerDataWidth as dc, type PluginContainerDataWidthDataOneOf as dd, type Spoiler as de, type Height as df, type Styles as dg, type Link as dh, type LinkDataOneOf as di, type Rel as dj, type CodeBlockData as dk, type TextStyle as dl, type DividerData as dm, type FileData as dn, type FileSource as dp, type FileSourceDataOneOf as dq, type PDFSettings as dr, type GalleryData as ds, type Media as dt, type Image as du, type Video as dv, type Item as dw, type ItemDataOneOf as dx, type GalleryOptions as dy, type GalleryOptionsLayout as dz, type UpdateSubmissionValidationErrors as e, type TimeInput as e$, type Design as e0, type TextData as e1, type Decoration as e2, type DecorationDataOneOf as e3, type AnchorData as e4, type ColorData as e5, type LinkData as e6, type MentionData as e7, type FontSizeData as e8, type SpoilerData as e9, type CaptionData as eA, type LayoutData as eB, type LayoutDataBackgroundImage as eC, type Banner as eD, type LayoutDataBackground as eE, type Backdrop as eF, type LayoutCellData as eG, type ShapeData as eH, type ShapeDataStyles as eI, type CardData as eJ, type CardDataBackground as eK, type BackgroundImage as eL, type TocData as eM, type Metadata as eN, type DocumentStyle as eO, type TextNodeStyle as eP, type MediaItem as eQ, type MediaItemMediaOneOf as eR, type MediaSettings as eS, type RadioGroup as eT, type RadioGroupOption as eU, type CustomOption as eV, type Dropdown as eW, type DropdownOption as eX, type DateTimeInput as eY, type PhoneInput as eZ, type DateInput as e_, type FontFamilyData as ea, type AppEmbedData as eb, type AppEmbedDataAppDataOneOf as ec, type BookingData as ed, type EventData as ee, type ButtonStyles as ef, type ImageStyles as eg, type RibbonStyles as eh, type CardStyles as ei, type PricingData as ej, type VideoData as ek, type PlaybackOptions as el, type EmbedData as em, type Oembed as en, type CollapsibleListData as eo, type TableData as ep, type Dimensions as eq, type TableCellData as er, type CellStyle as es, type BorderColors as et, type BorderWidths as eu, type ListValue as ev, type AudioData as ew, type OrderedListData as ex, type BulletedListData as ey, type BlockquoteData as ez, type ConfirmSubmissionResponse as f, type _Number as f$, type DatePicker as f0, type ServicesDropdown as f1, type ServiceOption as f2, type Password as f3, type NumberCorrectAnswersList as f4, type NumberType as f5, type NumberQuizFieldSettings as f6, type NumberInput as f7, type RatingInput as f8, type BooleanType as f9, type DefaultCountryConfigOptionsOneOf as fA, type FieldsSettings as fB, type Repeater as fC, type FormLayout as fD, type BreakPoint as fE, type ItemLayout as fF, type ItemLayoutItemOneOf as fG, type Group as fH, type Margin as fI, type Section as fJ, type Pikachu as fK, type Appointment as fL, type AppointmentFormatInfoOneOf as fM, type Location as fN, type LocationLocationInfoOneOf as fO, type InPersonOptions as fP, type VideoConferenceOptions as fQ, type PhoneOptions as fR, type FormFieldContactInfo as fS, type FormFieldContactInfoAdditionalInfoOneOf as fT, type EmailInfo as fU, type PhoneInfo as fV, type AddressInfo as fW, type CustomFieldInfo as fX, type SubscriptionInfo as fY, type _String as fZ, type _StringComponentTypeOptionsOneOf as f_, type Checkbox as fa, type CorrectAnswersList as fb, type ArrayType as fc, type ObjectType as fd, type ObjectTypePropertiesType as fe, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ff, type ArrayItems as fg, type ArrayItemsItemTypeOptionsOneOf as fh, type QuizFieldSettings as fi, type CheckboxGroup as fj, type Option as fk, type ComponentsTags as fl, type TagsOption as fm, type ServicesCheckboxGroup as fn, type FileType as fo, type FileUpload as fp, type Signature as fq, type ProductCheckboxGroup as fr, type ProductCheckboxGroupOption as fs, type DonationInput as ft, type DonationInputOption as fu, type PaymentInput as fv, type FixedPayment as fw, type MultilineAddress as fx, type AddressLine2 as fy, type DefaultCountryConfig as fz, type BulkDeleteSubmissionResponse as g, type IsFormSubmittableResponse as g$, type _NumberComponentTypeOptionsOneOf as g0, type _Boolean as g1, type _BooleanComponentTypeOptionsOneOf as g2, type _Array as g3, type _ArrayComponentTypeOptionsOneOf as g4, type _Object as g5, type WixFile as g6, type WixFileComponentTypeOptionsOneOf as g7, type Payment as g8, type PaymentComponentTypeOptionsOneOf as g9, type SubmitSettings as gA, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gB, type ThankYouMessageOptions as gC, type RedirectOptions as gD, type FieldGroup as gE, type Rule as gF, type RequiredOptions as gG, type HiddenOptions as gH, type AllowedValuesOptions as gI, type FieldOverride as gJ, type FieldOverridePropertyTypeOptionsOneOf as gK, type ConditionNode as gL, type ConditionNodeNodeOneOf as gM, type AndCondition as gN, type OrCondition as gO, type Condition as gP, type RuleFormOverride as gQ, type RuleFormOverrideEntityTypeOptionsOneOf as gR, type Tags as gS, type TagsTagList as gT, type QuizSettings as gU, type QuizSettingsPassingCriteriaOneOf as gV, type QuizSettingsResultsDisplayOptionsOneOf as gW, type PassFailMessages as gX, type CreateCheckoutFromSubmissionResponse as gY, type Checkout as gZ, type IsFormSubmittableRequest as g_, type Scheduling as ga, type SchedulingComponentTypeOptionsOneOf as gb, type Address as gc, type AddressComponentTypeOptionsOneOf as gd, type ObjectArray as ge, type ObjectArrayComponentTypeOptionsOneOf as gf, type DisplayField as gg, type DisplayFieldDisplayFieldTypeOptionsOneOf as gh, type RichContentOptions as gi, type PageNavigationOptions as gj, type Step as gk, type FormRule as gl, type FormOverride as gm, type FormProperties as gn, type PostSubmissionTriggers as go, type UpsertContact as gp, type V4FormFieldContactInfo as gq, type V4FormFieldContactInfoAdditionalInfoOneOf as gr, type FormFieldContactInfoEmailInfo as gs, type FormFieldContactInfoPhoneInfo as gt, type FormFieldContactInfoAddressInfo as gu, type FormFieldContactInfoCustomFieldInfo as gv, type FormFieldContactInfoSubscriptionInfo as gw, type NestedForm as gx, type LimitationRule as gy, type RequiredIndicatorProperties as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type GetFormattedSubmissionRequest as h$, type Empty as h0, type UpsertContactFromSubmissionRequest as h1, type SubmitContactResponse as h2, type CreateSubmissionRequest as h3, type CreateSubmissionResponse as h4, type SubmissionValidationErrorsDetails as h5, type ValidationError as h6, type CreateSubmissionBySubmitterRequest as h7, type CreateSubmissionBySubmitterResponse as h8, type BulkCreateSubmissionBySubmitterRequest as h9, type GetDeletedSubmissionRequest as hA, type QuerySubmissionRequest as hB, type CursorQueryPagingMethodOneOf as hC, type Sorting as hD, type SearchSubmissionsByNamespaceRequest as hE, type CursorSearch as hF, type CursorSearchPagingMethodOneOf as hG, type SearchDetails as hH, type SearchSubmissionsByNamespaceForExportRequest as hI, type SearchSubmissionsByNamespaceForExportResponse as hJ, type QuerySubmissionsByNamespaceRequest as hK, type QuerySubmissionsByNamespaceResponse as hL, type QuerySubmissionsByNamespaceForExportRequest as hM, type QuerySubmissionsByNamespaceForExportResponse as hN, type CountSubmissionsByFilterRequest as hO, type FormSubmissionsCount as hP, type CountSubmissionsRequest as hQ, type CountDeletedSubmissionsRequest as hR, type FormDeletedSubmissionsCount as hS, type GetMediaUploadURLRequest as hT, type BulkMarkSubmissionsAsSeenRequest as hU, type GetSubmissionDownloadUrlRequest as hV, type SubmissionDocument as hW, type SubmissionDocumentDocumentOneOf as hX, type DocumentReady as hY, type DownloadSubmissionRequest as hZ, type HeadersEntry as h_, type BulkCreateSubmissionBySubmitterData as ha, type BulkCreateSubmissionBySubmitterResponse as hb, type BulkSubmissionResult as hc, type ItemMetadata as hd, type ApplicationError as he, type BulkActionMetadata as hf, type GetSubmissionRequest as hg, type GetSubmissionResponse as hh, type GetSubmissionByCheckoutIdRequest as hi, type GetSubmissionByCheckoutIdResponse as hj, type UpdateSubmissionRequest as hk, type UpdateSubmissionResponse as hl, type ConfirmSubmissionRequest as hm, type DeleteSubmissionRequest as hn, type DeleteSubmissionResponse as ho, type BulkDeleteSubmissionRequest as hp, type BulkDeleteSubmissionResult as hq, type RestoreSubmissionFromTrashBinRequest as hr, type RemoveSubmissionFromTrashBinRequest as hs, type RemoveSubmissionFromTrashBinResponse as ht, type BulkRemoveSubmissionFromTrashBinRequest as hu, type BulkRemoveSubmissionFromTrashBinResult as hv, type ListDeletedSubmissionsRequest as hw, type CursorPaging as hx, type CursorPagingMetadata as hy, type Cursors as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type AspectRatioWithLiterals as i$, type FormattedSubmission as i0, type ListFormattedSubmissionsRequest as i1, type ListFormattedSubmissionsResponse as i2, type FormattedFormSubmission as i3, type UpdateExtendedFieldsRequest as i4, type BulkUpdateFormSubmissionTagsRequest as i5, type BulkUpdateFormSubmissionTagsResult as i6, type BulkUpdateFormSubmissionTagsByFilterRequest as i7, type ValidateFormSubmissionRequest as i8, type FieldViolation as i9, type BackgroundTypeWithLiterals as iA, type GradientTypeWithLiterals as iB, type WidthTypeWithLiterals as iC, type PluginContainerDataAlignmentWithLiterals as iD, type ButtonDataTypeWithLiterals as iE, type LinkTargetWithLiterals as iF, type TextAlignmentWithLiterals as iG, type LineStyleWithLiterals as iH, type WidthWithLiterals as iI, type DividerDataAlignmentWithLiterals as iJ, type ViewModeWithLiterals as iK, type LayoutTypeWithLiterals as iL, type OrientationWithLiterals as iM, type CropWithLiterals as iN, type ThumbnailsAlignmentWithLiterals as iO, type GIFTypeWithLiterals as iP, type SourceWithLiterals as iQ, type StylesPositionWithLiterals as iR, type MapTypeWithLiterals as iS, type ViewRoleWithLiterals as iT, type VoteRoleWithLiterals as iU, type PollLayoutTypeWithLiterals as iV, type PollLayoutDirectionWithLiterals as iW, type PollDesignBackgroundTypeWithLiterals as iX, type DecorationTypeWithLiterals as iY, type FontTypeWithLiterals as iZ, type PositionWithLiterals as i_, type FieldViolationErrorDataOneOf as ia, type SubmissionValidationErrors as ib, type SubmissionValidationError as ic, type SubmissionValidationErrorErrorMessageOneOf as id, type BaseEventMetadata as ie, type EventMetadata as ig, type AccountInfoMetadata as ih, type FormSubmissionSearchSpec as ii, type SubmissionsQueryResult as ij, type FormSubmissionQuerySpec as ik, utils as il, type SubmissionStatusWithLiterals as im, type OptInLevelWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type StringTypeFormatEnumFormatWithLiterals as iq, type DayOfWeekWithLiterals as ir, type ValidationFormatWithLiterals as is, type ProductTypeWithLiterals as it, type PriceTypeWithLiterals as iu, type PropertiesTypeEnumWithLiterals as iv, type FieldTypeWithLiterals as iw, type FormatEnumFormatWithLiterals as ix, type StringComponentTypeWithLiterals as iy, type NodeTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ChangeablePropertyWithLiterals as j$, type ResizingWithLiterals as j0, type PlacementWithLiterals as j1, type CardStylesTypeWithLiterals as j2, type CardStylesAlignmentWithLiterals as j3, type LayoutWithLiterals as j4, type AppTypeWithLiterals as j5, type InitialExpandedItemsWithLiterals as j6, type DirectionWithLiterals as j7, type VerticalAlignmentWithLiterals as j8, type NullValueWithLiterals as j9, type ComponentTypeWithLiterals as jA, type TypeWithLiterals as jB, type ObjectArrayComponentTypeWithLiterals as jC, type SchedulingComponentTypeWithLiterals as jD, type FormatWithLiterals as jE, type MeetingTypeWithLiterals as jF, type StaffStrategySelectionWithLiterals as jG, type InputTypeWithLiterals as jH, type EmailInfoTagWithLiterals as jI, type PhoneInfoTagWithLiterals as jJ, type TagWithLiterals as jK, type ConfirmationLevelWithLiterals as jL, type SubscriptionChannelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type FormFieldContactInfoEmailInfoTagWithLiterals as jR, type FormFieldContactInfoPhoneInfoTagWithLiterals as jS, type AddressInfoTagWithLiterals as jT, type SubscriptionInfoOptInLevelWithLiterals as jU, type FormFieldContactInfoContactFieldWithLiterals as jV, type SpamFilterProtectionLevelWithLiterals as jW, type RequiredIndicatorWithLiterals as jX, type RequiredIndicatorPlacementWithLiterals as jY, type TargetWithLiterals as jZ, type SubmitSuccessActionWithLiterals as j_, type ImageScalingScalingWithLiterals as ja, type LayoutDataImagePositionWithLiterals as jb, type OriginWithLiterals as jc, type LayoutDataBackgroundTypeWithLiterals as jd, type BackdropTypeWithLiterals as je, type VerticalAlignmentAlignmentWithLiterals as jf, type ResponsivenessBehaviourWithLiterals as jg, type DesignTargetWithLiterals as jh, type ScalingWithLiterals as ji, type ImagePositionPositionWithLiterals as jj, type CardDataBackgroundTypeWithLiterals as jk, type ListStyleWithLiterals as jl, type IndentationWithLiterals as jm, type ImagePositionWithLiterals as jn, type AlignmentWithLiterals as jo, type ImageFitWithLiterals as jp, type NumberOfColumnsWithLiterals as jq, type FirstDayOfWeekWithLiterals as jr, type NumberComponentTypeWithLiterals as js, type BooleanComponentTypeWithLiterals as jt, type ItemTypeWithLiterals as ju, type PropertiesTypePropertiesTypeEnumWithLiterals as jv, type ArrayComponentTypeWithLiterals as jw, type WixFileComponentTypeWithLiterals as jx, type UploadFileFormatWithLiterals as jy, type PaymentComponentTypeWithLiterals as jz, type CursorQuery as k, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k0, type OperatorWithLiterals as k1, type ResultsDisplayWithLiterals as k2, type ContactAutofillWithLiterals as k3, type IdentityTypeWithLiterals as k4, type ErrorTypeWithLiterals as k5, type SortOrderWithLiterals as k6, type ModeWithLiterals as k7, type StatusWithLiterals as k8, type SubmissionErrorTypeWithLiterals as k9, getMediaUploadUrl as kA, bulkMarkSubmissionsAsSeen as kB, getSubmissionDownloadUrl as kC, downloadSubmission as kD, getFormattedSubmission as kE, updateExtendedFields as kF, bulkUpdateFormSubmissionTags as kG, bulkUpdateFormSubmissionTagsByFilter as kH, validateFormSubmission as kI, type CommonSearchWithEntityContext as ka, type CommonQueryWithEntityContext as kb, onSubmissionCreated as kc, onSubmissionDeleted as kd, onSubmissionRemovedSubmissionFromTrash as ke, onSubmissionStatusUpdated as kf, onSubmissionContactMapped as kg, onSubmissionContactMappingSkipped as kh, onSubmissionUpdated as ki, upsertContactFromSubmission as kj, createSubmission as kk, getSubmission as kl, updateSubmission as km, confirmSubmission as kn, deleteSubmission as ko, bulkDeleteSubmission as kp, restoreSubmissionFromTrashBin as kq, removeSubmissionFromTrashBin as kr, bulkRemoveSubmissionFromTrashBin as ks, listDeletedSubmissions as kt, getDeletedSubmission as ku, querySubmission as kv, querySubmissionsByNamespace as kw, countSubmissionsByFilter as kx, countSubmissions as ky, countDeletedSubmissions as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
8294
+ export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, ImagePosition as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, DayOfWeek as a3, ValidationFormat as a4, ProductType as a5, PriceType as a6, PropertiesTypeEnum as a7, FieldType as a8, FormatEnumFormat as a9, DecorationType as aA, FontType as aB, Position as aC, AspectRatio as aD, Resizing as aE, Placement as aF, CardStylesType as aG, CardStylesAlignment as aH, Layout as aI, AppType as aJ, InitialExpandedItems as aK, Direction as aL, VerticalAlignment as aM, NullValue as aN, ImageScalingScaling as aO, LayoutDataImagePosition as aP, Origin as aQ, LayoutDataBackgroundType as aR, BackdropType as aS, VerticalAlignmentAlignment as aT, ResponsivenessBehaviour as aU, DesignTarget as aV, Scaling as aW, ImagePositionPosition as aX, CardDataBackgroundType as aY, ListStyle as aZ, Indentation as a_, StringComponentType as aa, NodeType as ab, BackgroundType as ac, GradientType as ad, WidthType as ae, PluginContainerDataAlignment as af, ButtonDataType as ag, LinkTarget as ah, TextAlignment as ai, LineStyle as aj, Width as ak, DividerDataAlignment as al, ViewMode as am, LayoutType as an, Orientation as ao, Crop as ap, ThumbnailsAlignment as aq, GIFType as ar, Source as as, StylesPosition as at, MapType as au, ViewRole as av, VoteRole as aw, PollLayoutType as ax, PollLayoutDirection as ay, PollDesignBackgroundType as az, type CreateSubmissionApplicationErrors as b, type DomainEvent as b$, Alignment as b0, ImageFit as b1, NumberOfColumns as b2, FirstDayOfWeek as b3, NumberComponentType as b4, BooleanComponentType as b5, ItemType as b6, PropertiesTypePropertiesTypeEnum as b7, ArrayComponentType as b8, WixFileComponentType as b9, RequiredIndicatorPlacement as bA, Target as bB, SubmitSuccessAction as bC, ChangeableProperty as bD, OverrideEntityTypeEnumOverrideEntityType as bE, Operator as bF, ResultsDisplay as bG, ContactAutofill as bH, SubmissionAccess as bI, IdentityType as bJ, ErrorType as bK, SortOrder as bL, Mode as bM, Status as bN, SubmissionErrorType as bO, type Submitter as bP, type SubmitterSubmitterOneOf as bQ, type ExtendedFields as bR, type OrderDetails as bS, type PublicTags as bT, type TagList as bU, type AppointmentDetails as bV, type FormSubmissionStatusUpdatedEvent as bW, type RemovedSubmissionFromTrash as bX, type SubmissionContactMapped as bY, type MarketingSubscriptionDetails as bZ, type SubmissionContactMappingSkipped as b_, UploadFileFormat as ba, PaymentComponentType as bb, ComponentType as bc, Type as bd, ObjectArrayComponentType as be, SchedulingComponentType as bf, Format as bg, MeetingType as bh, StaffStrategySelection as bi, InputType as bj, EmailInfoTag as bk, PhoneInfoTag as bl, Tag as bm, ConfirmationLevel as bn, SubscriptionChannel as bo, ContactField as bp, DisplayFieldType as bq, OverrideEntityType as br, Kind as bs, FormFieldContactInfoEmailInfoTag as bt, FormFieldContactInfoPhoneInfoTag as bu, AddressInfoTag as bv, SubscriptionInfoOptInLevel as bw, FormFieldContactInfoContactField as bx, SpamFilterProtectionLevel as by, RequiredIndicator as bz, type CreateSubmissionValidationErrors as c, type ValidationMessages as c$, type DomainEventBodyOneOf as c0, type EntityCreatedEvent as c1, type RestoreInfo as c2, type EntityUpdatedEvent as c3, type EntityDeletedEvent as c4, type ActionEvent as c5, type MessageEnvelope as c6, type IdentificationData as c7, type IdentificationDataIdOneOf as c8, type AccountInfo as c9, type PredefinedValidation as cA, type PredefinedValidationFormatOptionsOneOf as cB, type PaymentType as cC, type QuantityLimit as cD, type FixedPriceOptions as cE, type DynamicPriceOptions as cF, type Product as cG, type ProductPriceOptionsOneOf as cH, type MultilineAddressValidation as cI, type FieldOverrides as cJ, type FieldsOverrides as cK, type ObjectArrayType as cL, type PropertiesType as cM, type NestedFormFieldOverrides as cN, type Validation as cO, type ValidationValidationOneOf as cP, type DataExtensionsDetails as cQ, type NestedFormOverrides as cR, type Field as cS, type FieldFieldTypeOptionsOneOf as cT, type InputField as cU, type InputFieldInputTypeOptionsOneOf as cV, type StringCorrectAnswersList as cW, type StringType as cX, type StringTypeFormatOptionsOneOf as cY, type DateTimeConstraints as cZ, type PhoneConstraints as c_, type CreateCheckoutFromSubmissionRequest as ca, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as cb, type Form as cc, type FormField as cd, type FormFieldStringType as ce, type FormFieldStringTypeFormatOptionsOneOf as cf, type StringErrorMessages as cg, type DateTimeAdvancedConstraints as ch, type Availability as ci, type DateRange as cj, type StringTypeDateTimeConstraints as ck, type StringTypePhoneConstraints as cl, type StringTypeValidationMessages as cm, type FormFieldNumberType as cn, type NumberErrorMessages as co, type IntegerType as cp, type FormFieldBooleanType as cq, type BooleanErrorMessages as cr, type FormFieldArrayType as cs, type FormFieldObjectType as ct, type FormFieldObjectTypePropertiesType as cu, type FormFieldObjectTypePropertiesTypePropertiesTypeOneOf as cv, type ObjectErrorMessages as cw, type ArrayTypeArrayItems as cx, type ArrayTypeArrayItemsItemsOneOf as cy, type ArrayErrorMessages as cz, type UpdateSubmission as d, type Poll as d$, type StringQuizFieldSettings as d0, type TextInput as d1, type RichContent as d2, type Node as d3, type NodeDataOneOf as d4, type NodeStyle as d5, type ButtonData as d6, type Gradient as d7, type Stop as d8, type Border as d9, type GalleryOptionsLayout as dA, type ItemStyle as dB, type Thumbnails as dC, type GIFData as dD, type GIF as dE, type HeadingData as dF, type HTMLData as dG, type HTMLDataDataOneOf as dH, type ImageData as dI, type StylesBorder as dJ, type ImageDataStyles as dK, type LinkPreviewData as dL, type LinkPreviewDataStyles as dM, type MapData as dN, type MapSettings as dO, type ParagraphData as dP, type PollData as dQ, type Permissions as dR, type PollOption as dS, type Settings as dT, type PollLayout as dU, type OptionLayout as dV, type BackgroundGradient as dW, type PollDesignBackground as dX, type PollDesignBackgroundBackgroundOneOf as dY, type PollDesign as dZ, type OptionDesign as d_, type Colors as da, type Background as db, type PluginContainerData as dc, type PluginContainerDataWidth as dd, type PluginContainerDataWidthDataOneOf as de, type Spoiler as df, type Height as dg, type Styles as dh, type Link as di, type LinkDataOneOf as dj, type Rel as dk, type CodeBlockData as dl, type TextStyle as dm, type DividerData as dn, type FileData as dp, type FileSource as dq, type FileSourceDataOneOf as dr, type PDFSettings as ds, type GalleryData as dt, type Media as du, type Image as dv, type Video as dw, type Item as dx, type ItemDataOneOf as dy, type GalleryOptions as dz, type UpdateSubmissionValidationErrors as e, type DateInput as e$, type PollDataLayout as e0, type Design as e1, type TextData as e2, type Decoration as e3, type DecorationDataOneOf as e4, type AnchorData as e5, type ColorData as e6, type LinkData as e7, type MentionData as e8, type FontSizeData as e9, type BlockquoteData as eA, type CaptionData as eB, type LayoutData as eC, type LayoutDataBackgroundImage as eD, type Banner as eE, type LayoutDataBackground as eF, type Backdrop as eG, type LayoutCellData as eH, type ShapeData as eI, type ShapeDataStyles as eJ, type CardData as eK, type CardDataBackground as eL, type BackgroundImage as eM, type TocData as eN, type Metadata as eO, type DocumentStyle as eP, type TextNodeStyle as eQ, type MediaItem as eR, type MediaItemMediaOneOf as eS, type MediaSettings as eT, type RadioGroup as eU, type RadioGroupOption as eV, type CustomOption as eW, type Dropdown as eX, type DropdownOption as eY, type DateTimeInput as eZ, type PhoneInput as e_, type SpoilerData as ea, type FontFamilyData as eb, type AppEmbedData as ec, type AppEmbedDataAppDataOneOf as ed, type BookingData as ee, type EventData as ef, type ButtonStyles as eg, type ImageStyles as eh, type RibbonStyles as ei, type CardStyles as ej, type PricingData as ek, type VideoData as el, type PlaybackOptions as em, type EmbedData as en, type Oembed as eo, type CollapsibleListData as ep, type TableData as eq, type Dimensions as er, type TableCellData as es, type CellStyle as et, type BorderColors as eu, type BorderWidths as ev, type ListValue as ew, type AudioData as ex, type OrderedListData as ey, type BulletedListData as ez, type ConfirmSubmissionResponse as f, type _StringComponentTypeOptionsOneOf as f$, type TimeInput as f0, type DatePicker as f1, type ServicesDropdown as f2, type ServiceOption as f3, type Password as f4, type NumberCorrectAnswersList as f5, type NumberType as f6, type NumberQuizFieldSettings as f7, type NumberInput as f8, type RatingInput as f9, type DefaultCountryConfig as fA, type DefaultCountryConfigOptionsOneOf as fB, type FieldsSettings as fC, type Repeater as fD, type FormLayout as fE, type BreakPoint as fF, type ItemLayout as fG, type ItemLayoutItemOneOf as fH, type Group as fI, type Margin as fJ, type Section as fK, type Pikachu as fL, type Appointment as fM, type AppointmentFormatInfoOneOf as fN, type Location as fO, type LocationLocationInfoOneOf as fP, type InPersonOptions as fQ, type VideoConferenceOptions as fR, type PhoneOptions as fS, type FormFieldContactInfo as fT, type FormFieldContactInfoAdditionalInfoOneOf as fU, type EmailInfo as fV, type PhoneInfo as fW, type AddressInfo as fX, type CustomFieldInfo as fY, type SubscriptionInfo as fZ, type _String as f_, type BooleanType as fa, type Checkbox as fb, type CorrectAnswersList as fc, type ArrayType as fd, type ObjectType as fe, type ObjectTypePropertiesType as ff, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as fg, type ArrayItems as fh, type ArrayItemsItemTypeOptionsOneOf as fi, type QuizFieldSettings as fj, type CheckboxGroup as fk, type Option as fl, type ComponentsTags as fm, type TagsOption as fn, type ServicesCheckboxGroup as fo, type FileType as fp, type FileUpload as fq, type Signature as fr, type ProductCheckboxGroup as fs, type ProductCheckboxGroupOption as ft, type DonationInput as fu, type DonationInputOption as fv, type PaymentInput as fw, type FixedPayment as fx, type MultilineAddress as fy, type AddressLine2 as fz, type BulkDeleteSubmissionResponse as g, type IsFormSubmittableRequest as g$, type _Number as g0, type _NumberComponentTypeOptionsOneOf as g1, type _Boolean as g2, type _BooleanComponentTypeOptionsOneOf as g3, type _Array as g4, type _ArrayComponentTypeOptionsOneOf as g5, type _Object as g6, type WixFile as g7, type WixFileComponentTypeOptionsOneOf as g8, type Payment as g9, type RequiredIndicatorProperties as gA, type SubmitSettings as gB, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gC, type ThankYouMessageOptions as gD, type RedirectOptions as gE, type FieldGroup as gF, type Rule as gG, type RequiredOptions as gH, type HiddenOptions as gI, type AllowedValuesOptions as gJ, type FieldOverride as gK, type FieldOverridePropertyTypeOptionsOneOf as gL, type ConditionNode as gM, type ConditionNodeNodeOneOf as gN, type AndCondition as gO, type OrCondition as gP, type Condition as gQ, type RuleFormOverride as gR, type RuleFormOverrideEntityTypeOptionsOneOf as gS, type Tags as gT, type TagsTagList as gU, type QuizSettings as gV, type QuizSettingsPassingCriteriaOneOf as gW, type QuizSettingsResultsDisplayOptionsOneOf as gX, type PassFailMessages as gY, type CreateCheckoutFromSubmissionResponse as gZ, type Checkout as g_, type PaymentComponentTypeOptionsOneOf as ga, type Scheduling as gb, type SchedulingComponentTypeOptionsOneOf as gc, type Address as gd, type AddressComponentTypeOptionsOneOf as ge, type ObjectArray as gf, type ObjectArrayComponentTypeOptionsOneOf as gg, type DisplayField as gh, type DisplayFieldDisplayFieldTypeOptionsOneOf as gi, type RichContentOptions as gj, type PageNavigationOptions as gk, type Step as gl, type FormRule as gm, type FormOverride as gn, type FormProperties as go, type PostSubmissionTriggers as gp, type UpsertContact as gq, type V4FormFieldContactInfo as gr, type V4FormFieldContactInfoAdditionalInfoOneOf as gs, type FormFieldContactInfoEmailInfo as gt, type FormFieldContactInfoPhoneInfo as gu, type FormFieldContactInfoAddressInfo as gv, type FormFieldContactInfoCustomFieldInfo as gw, type FormFieldContactInfoSubscriptionInfo as gx, type NestedForm as gy, type LimitationRule as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type HeadersEntry as h$, type IsFormSubmittableResponse as h0, type Empty as h1, type UpsertContactFromSubmissionRequest as h2, type SubmitContactResponse as h3, type CreateSubmissionRequest as h4, type CreateSubmissionResponse as h5, type SubmissionValidationErrorsDetails as h6, type ValidationError as h7, type CreateSubmissionBySubmitterRequest as h8, type CreateSubmissionBySubmitterResponse as h9, type Cursors as hA, type GetDeletedSubmissionRequest as hB, type QuerySubmissionRequest as hC, type CursorQueryPagingMethodOneOf as hD, type Sorting as hE, type SearchSubmissionsByNamespaceRequest as hF, type CursorSearch as hG, type CursorSearchPagingMethodOneOf as hH, type SearchDetails as hI, type SearchSubmissionsByNamespaceForExportRequest as hJ, type SearchSubmissionsByNamespaceForExportResponse as hK, type QuerySubmissionsByNamespaceRequest as hL, type QuerySubmissionsByNamespaceResponse as hM, type QuerySubmissionsByNamespaceForExportRequest as hN, type QuerySubmissionsByNamespaceForExportResponse as hO, type CountSubmissionsByFilterRequest as hP, type FormSubmissionsCount as hQ, type CountSubmissionsRequest as hR, type CountDeletedSubmissionsRequest as hS, type FormDeletedSubmissionsCount as hT, type GetMediaUploadURLRequest as hU, type BulkMarkSubmissionsAsSeenRequest as hV, type GetSubmissionDownloadUrlRequest as hW, type SubmissionDocument as hX, type SubmissionDocumentDocumentOneOf as hY, type DocumentReady as hZ, type DownloadSubmissionRequest as h_, type BulkCreateSubmissionBySubmitterRequest as ha, type BulkCreateSubmissionBySubmitterData as hb, type BulkCreateSubmissionBySubmitterResponse as hc, type BulkSubmissionResult as hd, type ItemMetadata as he, type ApplicationError as hf, type BulkActionMetadata as hg, type GetSubmissionRequest as hh, type GetSubmissionResponse as hi, type GetSubmissionByCheckoutIdRequest as hj, type GetSubmissionByCheckoutIdResponse as hk, type UpdateSubmissionRequest as hl, type UpdateSubmissionResponse as hm, type ConfirmSubmissionRequest as hn, type DeleteSubmissionRequest as ho, type DeleteSubmissionResponse as hp, type BulkDeleteSubmissionRequest as hq, type BulkDeleteSubmissionResult as hr, type RestoreSubmissionFromTrashBinRequest as hs, type RemoveSubmissionFromTrashBinRequest as ht, type RemoveSubmissionFromTrashBinResponse as hu, type BulkRemoveSubmissionFromTrashBinRequest as hv, type BulkRemoveSubmissionFromTrashBinResult as hw, type ListDeletedSubmissionsRequest as hx, type CursorPaging as hy, type CursorPagingMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PositionWithLiterals as i$, type GetFormattedSubmissionRequest as i0, type FormattedSubmission as i1, type ListFormattedSubmissionsRequest as i2, type ListFormattedSubmissionsResponse as i3, type FormattedFormSubmission as i4, type UpdateExtendedFieldsRequest as i5, type BulkUpdateFormSubmissionTagsRequest as i6, type BulkUpdateFormSubmissionTagsResult as i7, type BulkUpdateFormSubmissionTagsByFilterRequest as i8, type ValidateFormSubmissionRequest as i9, type NodeTypeWithLiterals as iA, type BackgroundTypeWithLiterals as iB, type GradientTypeWithLiterals as iC, type WidthTypeWithLiterals as iD, type PluginContainerDataAlignmentWithLiterals as iE, type ButtonDataTypeWithLiterals as iF, type LinkTargetWithLiterals as iG, type TextAlignmentWithLiterals as iH, type LineStyleWithLiterals as iI, type WidthWithLiterals as iJ, type DividerDataAlignmentWithLiterals as iK, type ViewModeWithLiterals as iL, type LayoutTypeWithLiterals as iM, type OrientationWithLiterals as iN, type CropWithLiterals as iO, type ThumbnailsAlignmentWithLiterals as iP, type GIFTypeWithLiterals as iQ, type SourceWithLiterals as iR, type StylesPositionWithLiterals as iS, type MapTypeWithLiterals as iT, type ViewRoleWithLiterals as iU, type VoteRoleWithLiterals as iV, type PollLayoutTypeWithLiterals as iW, type PollLayoutDirectionWithLiterals as iX, type PollDesignBackgroundTypeWithLiterals as iY, type DecorationTypeWithLiterals as iZ, type FontTypeWithLiterals as i_, type FieldViolation as ia, type FieldViolationErrorDataOneOf as ib, type SubmissionValidationErrors as ic, type SubmissionValidationError as id, type SubmissionValidationErrorErrorMessageOneOf as ie, type BaseEventMetadata as ig, type EventMetadata as ih, type AccountInfoMetadata as ii, type FormSubmissionSearchSpec as ij, type SubmissionsQueryResult as ik, type FormSubmissionQuerySpec as il, utils as im, type SubmissionStatusWithLiterals as io, type OptInLevelWithLiterals as ip, type WebhookIdentityTypeWithLiterals as iq, type StringTypeFormatEnumFormatWithLiterals as ir, type DayOfWeekWithLiterals as is, type ValidationFormatWithLiterals as it, type ProductTypeWithLiterals as iu, type PriceTypeWithLiterals as iv, type PropertiesTypeEnumWithLiterals as iw, type FieldTypeWithLiterals as ix, type FormatEnumFormatWithLiterals as iy, type StringComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SubmitSuccessActionWithLiterals as j$, type AspectRatioWithLiterals as j0, type ResizingWithLiterals as j1, type PlacementWithLiterals as j2, type CardStylesTypeWithLiterals as j3, type CardStylesAlignmentWithLiterals as j4, type LayoutWithLiterals as j5, type AppTypeWithLiterals as j6, type InitialExpandedItemsWithLiterals as j7, type DirectionWithLiterals as j8, type VerticalAlignmentWithLiterals as j9, type PaymentComponentTypeWithLiterals as jA, type ComponentTypeWithLiterals as jB, type TypeWithLiterals as jC, type ObjectArrayComponentTypeWithLiterals as jD, type SchedulingComponentTypeWithLiterals as jE, type FormatWithLiterals as jF, type MeetingTypeWithLiterals as jG, type StaffStrategySelectionWithLiterals as jH, type InputTypeWithLiterals as jI, type EmailInfoTagWithLiterals as jJ, type PhoneInfoTagWithLiterals as jK, type TagWithLiterals as jL, type ConfirmationLevelWithLiterals as jM, type SubscriptionChannelWithLiterals as jN, type ContactFieldWithLiterals as jO, type DisplayFieldTypeWithLiterals as jP, type OverrideEntityTypeWithLiterals as jQ, type KindWithLiterals as jR, type FormFieldContactInfoEmailInfoTagWithLiterals as jS, type FormFieldContactInfoPhoneInfoTagWithLiterals as jT, type AddressInfoTagWithLiterals as jU, type SubscriptionInfoOptInLevelWithLiterals as jV, type FormFieldContactInfoContactFieldWithLiterals as jW, type SpamFilterProtectionLevelWithLiterals as jX, type RequiredIndicatorWithLiterals as jY, type RequiredIndicatorPlacementWithLiterals as jZ, type TargetWithLiterals as j_, type NullValueWithLiterals as ja, type ImageScalingScalingWithLiterals as jb, type LayoutDataImagePositionWithLiterals as jc, type OriginWithLiterals as jd, type LayoutDataBackgroundTypeWithLiterals as je, type BackdropTypeWithLiterals as jf, type VerticalAlignmentAlignmentWithLiterals as jg, type ResponsivenessBehaviourWithLiterals as jh, type DesignTargetWithLiterals as ji, type ScalingWithLiterals as jj, type ImagePositionPositionWithLiterals as jk, type CardDataBackgroundTypeWithLiterals as jl, type ListStyleWithLiterals as jm, type IndentationWithLiterals as jn, type ImagePositionWithLiterals as jo, type AlignmentWithLiterals as jp, type ImageFitWithLiterals as jq, type NumberOfColumnsWithLiterals as jr, type FirstDayOfWeekWithLiterals as js, type NumberComponentTypeWithLiterals as jt, type BooleanComponentTypeWithLiterals as ju, type ItemTypeWithLiterals as jv, type PropertiesTypePropertiesTypeEnumWithLiterals as jw, type ArrayComponentTypeWithLiterals as jx, type WixFileComponentTypeWithLiterals as jy, type UploadFileFormatWithLiterals as jz, type CursorQuery as k, type ChangeablePropertyWithLiterals as k0, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k1, type OperatorWithLiterals as k2, type ResultsDisplayWithLiterals as k3, type ContactAutofillWithLiterals as k4, type SubmissionAccessWithLiterals as k5, type IdentityTypeWithLiterals as k6, type ErrorTypeWithLiterals as k7, type SortOrderWithLiterals as k8, type ModeWithLiterals as k9, countSubmissions as kA, countDeletedSubmissions as kB, getMediaUploadUrl as kC, bulkMarkSubmissionsAsSeen as kD, getSubmissionDownloadUrl as kE, downloadSubmission as kF, getFormattedSubmission as kG, updateExtendedFields as kH, bulkUpdateFormSubmissionTags as kI, bulkUpdateFormSubmissionTagsByFilter as kJ, validateFormSubmission as kK, type StatusWithLiterals as ka, type SubmissionErrorTypeWithLiterals as kb, type CommonSearchWithEntityContext as kc, type CommonQueryWithEntityContext as kd, onSubmissionCreated as ke, onSubmissionDeleted as kf, onSubmissionRemovedSubmissionFromTrash as kg, onSubmissionStatusUpdated as kh, onSubmissionContactMapped as ki, onSubmissionContactMappingSkipped as kj, onSubmissionUpdated as kk, upsertContactFromSubmission as kl, createSubmission as km, getSubmission as kn, updateSubmission as ko, confirmSubmission as kp, deleteSubmission as kq, bulkDeleteSubmission as kr, restoreSubmissionFromTrashBin as ks, removeSubmissionFromTrashBin as kt, bulkRemoveSubmissionFromTrashBin as ku, listDeletedSubmissions as kv, getDeletedSubmission as kw, querySubmission as kx, querySubmissionsByNamespace as ky, countSubmissionsByFilter as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DH6N9f2_.mjs';
3
- export { c8 as AccountInfo, ih as AccountInfoMetadata, c4 as ActionEvent, gc as Address, gd as AddressComponentTypeOptionsOneOf, fW as AddressInfo, bv as AddressInfoTag, jT as AddressInfoTagWithLiterals, fy as AddressLine2, b0 as Alignment, jo as AlignmentWithLiterals, gI as AllowedValuesOptions, e4 as AnchorData, gN as AndCondition, eb as AppEmbedData, ec as AppEmbedDataAppDataOneOf, aJ as AppType, j5 as AppTypeWithLiterals, he as ApplicationError, fL as Appointment, bU as AppointmentDetails, fM as AppointmentFormatInfoOneOf, b8 as ArrayComponentType, jw as ArrayComponentTypeWithLiterals, cy as ArrayErrorMessages, fg as ArrayItems, fh as ArrayItemsItemTypeOptionsOneOf, fc as ArrayType, cw as ArrayTypeArrayItems, cx as ArrayTypeArrayItemsItemsOneOf, aD as AspectRatio, i$ as AspectRatioWithLiterals, ew as AudioData, ci as Availability, eF as Backdrop, aS as BackdropType, je as BackdropTypeWithLiterals, da as Background, dV as BackgroundGradient, eL as BackgroundImage, ac as BackgroundType, iA as BackgroundTypeWithLiterals, eD as Banner, ie as BaseEventMetadata, ez as BlockquoteData, ed as BookingData, b5 as BooleanComponentType, jt as BooleanComponentTypeWithLiterals, cq as BooleanErrorMessages, f9 as BooleanType, d8 as Border, et as BorderColors, eu as BorderWidths, fE as BreakPoint, hf as BulkActionMetadata, ha as BulkCreateSubmissionBySubmitterData, h9 as BulkCreateSubmissionBySubmitterRequest, hb as BulkCreateSubmissionBySubmitterResponse, hp as BulkDeleteSubmissionRequest, hq as BulkDeleteSubmissionResult, hU as BulkMarkSubmissionsAsSeenRequest, hu as BulkRemoveSubmissionFromTrashBinRequest, hv as BulkRemoveSubmissionFromTrashBinResult, hc as BulkSubmissionResult, i7 as BulkUpdateFormSubmissionTagsByFilterRequest, i5 as BulkUpdateFormSubmissionTagsRequest, i6 as BulkUpdateFormSubmissionTagsResult, ey as BulletedListData, d5 as ButtonData, ag as ButtonDataType, iE as ButtonDataTypeWithLiterals, ef as ButtonStyles, eA as CaptionData, eJ as CardData, eK as CardDataBackground, aY as CardDataBackgroundType, jk as CardDataBackgroundTypeWithLiterals, ei as CardStyles, aH as CardStylesAlignment, j3 as CardStylesAlignmentWithLiterals, aG as CardStylesType, j2 as CardStylesTypeWithLiterals, es as CellStyle, bD as ChangeableProperty, j$ as ChangeablePropertyWithLiterals, fa as Checkbox, fj as CheckboxGroup, gZ as Checkout, dk as CodeBlockData, eo as CollapsibleListData, e5 as ColorData, d9 as Colors, kb as CommonQueryWithEntityContext, ka as CommonSearchWithEntityContext, bc as ComponentType, jA as ComponentTypeWithLiterals, fl as ComponentsTags, gP as Condition, gL as ConditionNode, gM as ConditionNodeNodeOneOf, hm as ConfirmSubmissionRequest, bn as ConfirmationLevel, jL as ConfirmationLevelWithLiterals, bH as ContactAutofill, k3 as ContactAutofillWithLiterals, bp as ContactField, jN as ContactFieldWithLiterals, fb as CorrectAnswersList, hR as CountDeletedSubmissionsRequest, hO as CountSubmissionsByFilterRequest, hQ as CountSubmissionsRequest, c9 as CreateCheckoutFromSubmissionRequest, ca as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gY as CreateCheckoutFromSubmissionResponse, h7 as CreateSubmissionBySubmitterRequest, h8 as CreateSubmissionBySubmitterResponse, h3 as CreateSubmissionRequest, h4 as CreateSubmissionResponse, ap as Crop, iN as CropWithLiterals, hx as CursorPaging, hy as CursorPagingMetadata, hC as CursorQueryPagingMethodOneOf, hF as CursorSearch, hG as CursorSearchPagingMethodOneOf, hz as Cursors, fX as CustomFieldInfo, eV as CustomOption, cP as DataExtensionsDetails, e_ as DateInput, f0 as DatePicker, cj as DateRange, ch as DateTimeAdvancedConstraints, cY as DateTimeConstraints, eY as DateTimeInput, a3 as DayOfWeek, ir as DayOfWeekWithLiterals, e2 as Decoration, e3 as DecorationDataOneOf, aA as DecorationType, iY as DecorationTypeWithLiterals, fz as DefaultCountryConfig, fA as DefaultCountryConfigOptionsOneOf, hn as DeleteSubmissionRequest, ho as DeleteSubmissionResponse, e0 as Design, aV as DesignTarget, jh as DesignTargetWithLiterals, eq as Dimensions, aL as Direction, j7 as DirectionWithLiterals, gg as DisplayField, gh as DisplayFieldDisplayFieldTypeOptionsOneOf, bq as DisplayFieldType, jO as DisplayFieldTypeWithLiterals, dm as DividerData, al as DividerDataAlignment, iJ as DividerDataAlignmentWithLiterals, hY as DocumentReady, eO as DocumentStyle, b_ as DomainEvent, b$ as DomainEventBodyOneOf, ft as DonationInput, fu as DonationInputOption, hZ as DownloadSubmissionRequest, eW as Dropdown, eX as DropdownOption, cE as DynamicPriceOptions, fU as EmailInfo, bk as EmailInfoTag, jI as EmailInfoTagWithLiterals, em as EmbedData, h0 as Empty, c0 as EntityCreatedEvent, c3 as EntityDeletedEvent, c2 as EntityUpdatedEvent, bJ as ErrorType, k5 as ErrorTypeWithLiterals, ee as EventData, ig as EventMetadata, bQ as ExtendedFields, cR as Field, cS as FieldFieldTypeOptionsOneOf, gE as FieldGroup, gJ as FieldOverride, gK as FieldOverridePropertyTypeOptionsOneOf, cI as FieldOverrides, a8 as FieldType, iw as FieldTypeWithLiterals, i9 as FieldViolation, ia as FieldViolationErrorDataOneOf, cJ as FieldsOverrides, fB as FieldsSettings, dn as FileData, dp as FileSource, dq as FileSourceDataOneOf, fo as FileType, fp as FileUpload, b3 as FirstDayOfWeek, jr as FirstDayOfWeekWithLiterals, fw as FixedPayment, cD as FixedPriceOptions, ea as FontFamilyData, e8 as FontSizeData, aB as FontType, iZ as FontTypeWithLiterals, cb as Form, hS as FormDeletedSubmissionsCount, cc as FormField, cr as FormFieldArrayType, cp as FormFieldBooleanType, fS as FormFieldContactInfo, fT as FormFieldContactInfoAdditionalInfoOneOf, gu as FormFieldContactInfoAddressInfo, bx as FormFieldContactInfoContactField, jV as FormFieldContactInfoContactFieldWithLiterals, gv as FormFieldContactInfoCustomFieldInfo, gs as FormFieldContactInfoEmailInfo, bt as FormFieldContactInfoEmailInfoTag, jR as FormFieldContactInfoEmailInfoTagWithLiterals, gt as FormFieldContactInfoPhoneInfo, bu as FormFieldContactInfoPhoneInfoTag, jS as FormFieldContactInfoPhoneInfoTagWithLiterals, gw as FormFieldContactInfoSubscriptionInfo, cm as FormFieldNumberType, cs as FormFieldObjectType, ct as FormFieldObjectTypePropertiesType, cu as FormFieldObjectTypePropertiesTypePropertiesTypeOneOf, cd as FormFieldStringType, ce as FormFieldStringTypeFormatOptionsOneOf, fD as FormLayout, gm as FormOverride, gn as FormProperties, gl as FormRule, ik as FormSubmissionQuerySpec, ii as FormSubmissionSearchSpec, bV as FormSubmissionStatusUpdatedEvent, hP as FormSubmissionsCount, bg as Format, a9 as FormatEnumFormat, ix as FormatEnumFormatWithLiterals, jE as FormatWithLiterals, i3 as FormattedFormSubmission, i0 as FormattedSubmission, dD as GIF, dC as GIFData, ar as GIFType, iP as GIFTypeWithLiterals, ds as GalleryData, dy as GalleryOptions, dz as GalleryOptionsLayout, hA as GetDeletedSubmissionRequest, h$ as GetFormattedSubmissionRequest, hT as GetMediaUploadURLRequest, hi as GetSubmissionByCheckoutIdRequest, hj as GetSubmissionByCheckoutIdResponse, hV as GetSubmissionDownloadUrlRequest, hg as GetSubmissionRequest, hh as GetSubmissionResponse, d6 as Gradient, ad as GradientType, iB as GradientTypeWithLiterals, fH as Group, dF as HTMLData, dG as HTMLDataDataOneOf, h_ as HeadersEntry, dE as HeadingData, df as Height, gH as HiddenOptions, c6 as IdentificationData, c7 as IdentificationDataIdOneOf, bI as IdentityType, k4 as IdentityTypeWithLiterals, du as Image, dH as ImageData, dJ as ImageDataStyles, b1 as ImageFit, jp as ImageFitWithLiterals, a$ as ImagePosition, aX as ImagePositionPosition, jj as ImagePositionPositionWithLiterals, jn as ImagePositionWithLiterals, aO as ImageScalingScaling, ja as ImageScalingScalingWithLiterals, eg as ImageStyles, fP as InPersonOptions, a_ as Indentation, jm as IndentationWithLiterals, aK as InitialExpandedItems, j6 as InitialExpandedItemsWithLiterals, cT as InputField, cU as InputFieldInputTypeOptionsOneOf, bj as InputType, jH as InputTypeWithLiterals, co as IntegerType, g_ as IsFormSubmittableRequest, g$ as IsFormSubmittableResponse, dw as Item, dx as ItemDataOneOf, fF as ItemLayout, fG as ItemLayoutItemOneOf, hd as ItemMetadata, dA as ItemStyle, b6 as ItemType, ju as ItemTypeWithLiterals, bs as Kind, jQ as KindWithLiterals, aI as Layout, eG as LayoutCellData, eB as LayoutData, eE as LayoutDataBackground, eC as LayoutDataBackgroundImage, aR as LayoutDataBackgroundType, jd as LayoutDataBackgroundTypeWithLiterals, aP as LayoutDataImagePosition, jb as LayoutDataImagePositionWithLiterals, an as LayoutType, iL as LayoutTypeWithLiterals, j4 as LayoutWithLiterals, gy as LimitationRule, aj as LineStyle, iH as LineStyleWithLiterals, dh as Link, e6 as LinkData, di as LinkDataOneOf, dK as LinkPreviewData, dL as LinkPreviewDataStyles, ah as LinkTarget, iF as LinkTargetWithLiterals, hw as ListDeletedSubmissionsRequest, i1 as ListFormattedSubmissionsRequest, i2 as ListFormattedSubmissionsResponse, aZ as ListStyle, jl as ListStyleWithLiterals, ev as ListValue, fN as Location, fO as LocationLocationInfoOneOf, dM as MapData, dN as MapSettings, au as MapType, iS as MapTypeWithLiterals, fI as Margin, bY as MarketingSubscriptionDetails, dt as Media, eQ as MediaItem, eR as MediaItemMediaOneOf, eS as MediaSettings, bh as MeetingType, jF as MeetingTypeWithLiterals, e7 as MentionData, c5 as MessageEnvelope, eN as Metadata, bL as Mode, k7 as ModeWithLiterals, fx as MultilineAddress, cH as MultilineAddressValidation, gx as NestedForm, cM as NestedFormFieldOverrides, cQ as NestedFormOverrides, d2 as Node, d3 as NodeDataOneOf, d4 as NodeStyle, ab as NodeType, iz as NodeTypeWithLiterals, aN as NullValue, j9 as NullValueWithLiterals, b4 as NumberComponentType, js as NumberComponentTypeWithLiterals, f4 as NumberCorrectAnswersList, cn as NumberErrorMessages, f7 as NumberInput, b2 as NumberOfColumns, jq as NumberOfColumnsWithLiterals, f6 as NumberQuizFieldSettings, f5 as NumberType, ge as ObjectArray, be as ObjectArrayComponentType, gf as ObjectArrayComponentTypeOptionsOneOf, jC as ObjectArrayComponentTypeWithLiterals, cK as ObjectArrayType, cv as ObjectErrorMessages, fd as ObjectType, fe as ObjectTypePropertiesType, ff as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, en as Oembed, bF as Operator, k1 as OperatorWithLiterals, a0 as OptInLevel, io as OptInLevelWithLiterals, fk as Option, dZ as OptionDesign, dU as OptionLayout, gO as OrCondition, bR as OrderDetails, ex as OrderedListData, ao as Orientation, iM as OrientationWithLiterals, aQ as Origin, jc as OriginWithLiterals, br as OverrideEntityType, bE as OverrideEntityTypeEnumOverrideEntityType, k0 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, dr as PDFSettings, gj as PageNavigationOptions, dO as ParagraphData, gX as PassFailMessages, f3 as Password, g8 as Payment, bb as PaymentComponentType, g9 as PaymentComponentTypeOptionsOneOf, jz as PaymentComponentTypeWithLiterals, fv as PaymentInput, cB as PaymentType, dQ as Permissions, cZ as PhoneConstraints, fV as PhoneInfo, bl as PhoneInfoTag, jJ as PhoneInfoTagWithLiterals, eZ as PhoneInput, fR as PhoneOptions, fK as Pikachu, aF as Placement, j1 as PlacementWithLiterals, el as PlaybackOptions, db as PluginContainerData, af as PluginContainerDataAlignment, iD as PluginContainerDataAlignmentWithLiterals, dc as PluginContainerDataWidth, dd as PluginContainerDataWidthDataOneOf, d_ as Poll, dP as PollData, d$ as PollDataLayout, dY as PollDesign, dW as PollDesignBackground, dX as PollDesignBackgroundBackgroundOneOf, az as PollDesignBackgroundType, iX as PollDesignBackgroundTypeWithLiterals, dT as PollLayout, ay as PollLayoutDirection, iW as PollLayoutDirectionWithLiterals, ax as PollLayoutType, iV as PollLayoutTypeWithLiterals, dR as PollOption, aC as Position, i_ as PositionWithLiterals, go as PostSubmissionTriggers, cz as PredefinedValidation, cA as PredefinedValidationFormatOptionsOneOf, a6 as PriceType, iu as PriceTypeWithLiterals, ej as PricingData, cF as Product, fr as ProductCheckboxGroup, fs as ProductCheckboxGroupOption, cG as ProductPriceOptionsOneOf, a5 as ProductType, it as ProductTypeWithLiterals, cL as PropertiesType, a7 as PropertiesTypeEnum, iv as PropertiesTypeEnumWithLiterals, b7 as PropertiesTypePropertiesTypeEnum, jv as PropertiesTypePropertiesTypeEnumWithLiterals, bS as PublicTags, cC as QuantityLimit, hB as QuerySubmissionRequest, hM as QuerySubmissionsByNamespaceForExportRequest, hN as QuerySubmissionsByNamespaceForExportResponse, hK as QuerySubmissionsByNamespaceRequest, hL as QuerySubmissionsByNamespaceResponse, fi as QuizFieldSettings, gU as QuizSettings, gV as QuizSettingsPassingCriteriaOneOf, gW as QuizSettingsResultsDisplayOptionsOneOf, eT as RadioGroup, eU as RadioGroupOption, f8 as RatingInput, gD as RedirectOptions, dj as Rel, hs as RemoveSubmissionFromTrashBinRequest, ht as RemoveSubmissionFromTrashBinResponse, bW as RemovedSubmissionFromTrash, fC as Repeater, bz as RequiredIndicator, bA as RequiredIndicatorPlacement, jY as RequiredIndicatorPlacementWithLiterals, gz as RequiredIndicatorProperties, jX as RequiredIndicatorWithLiterals, gG as RequiredOptions, aE as Resizing, j0 as ResizingWithLiterals, aU as ResponsivenessBehaviour, jg as ResponsivenessBehaviourWithLiterals, c1 as RestoreInfo, hr as RestoreSubmissionFromTrashBinRequest, bG as ResultsDisplay, k2 as ResultsDisplayWithLiterals, eh as RibbonStyles, d1 as RichContent, gi as RichContentOptions, gF as Rule, gQ as RuleFormOverride, gR as RuleFormOverrideEntityTypeOptionsOneOf, aW as Scaling, ji as ScalingWithLiterals, ga as Scheduling, bf as SchedulingComponentType, gb as SchedulingComponentTypeOptionsOneOf, jD as SchedulingComponentTypeWithLiterals, hH as SearchDetails, hI as SearchSubmissionsByNamespaceForExportRequest, hJ as SearchSubmissionsByNamespaceForExportResponse, hE as SearchSubmissionsByNamespaceRequest, fJ as Section, f2 as ServiceOption, fn as ServicesCheckboxGroup, f1 as ServicesDropdown, dS as Settings, eH as ShapeData, eI as ShapeDataStyles, fq as Signature, bK as SortOrder, k6 as SortOrderWithLiterals, hD as Sorting, as as Source, iQ as SourceWithLiterals, by as SpamFilterProtectionLevel, jW as SpamFilterProtectionLevelWithLiterals, de as Spoiler, e9 as SpoilerData, bi as StaffStrategySelection, jG as StaffStrategySelectionWithLiterals, bM as Status, k8 as StatusWithLiterals, gk as Step, d7 as Stop, aa as StringComponentType, iy as StringComponentTypeWithLiterals, cV as StringCorrectAnswersList, cf as StringErrorMessages, c$ as StringQuizFieldSettings, cW as StringType, cg as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, iq as StringTypeFormatEnumFormatWithLiterals, cX as StringTypeFormatOptionsOneOf, ck as StringTypePhoneConstraints, cl as StringTypeValidationMessages, dg as Styles, dI as StylesBorder, at as StylesPosition, iR as StylesPositionWithLiterals, bX as SubmissionContactMapped, bZ as SubmissionContactMappingSkipped, hW as SubmissionDocument, hX as SubmissionDocumentDocumentOneOf, bN as SubmissionErrorType, k9 as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, im as SubmissionStatusWithLiterals, ic as SubmissionValidationError, id as SubmissionValidationErrorErrorMessageOneOf, ib as SubmissionValidationErrors, h5 as SubmissionValidationErrorsDetails, ij as SubmissionsQueryResult, h2 as SubmitContactResponse, gA as SubmitSettings, gB as SubmitSettingsSubmitSuccessActionOptionsOneOf, bC as SubmitSuccessAction, j_ as SubmitSuccessActionWithLiterals, bO as Submitter, bP as SubmitterSubmitterOneOf, bo as SubscriptionChannel, jM as SubscriptionChannelWithLiterals, fY as SubscriptionInfo, bw as SubscriptionInfoOptInLevel, jU as SubscriptionInfoOptInLevelWithLiterals, er as TableCellData, ep as TableData, bm as Tag, bT as TagList, jK as TagWithLiterals, gS as Tags, fm as TagsOption, gT as TagsTagList, bB as Target, jZ as TargetWithLiterals, ai as TextAlignment, iG as TextAlignmentWithLiterals, e1 as TextData, d0 as TextInput, eP as TextNodeStyle, dl as TextStyle, gC as ThankYouMessageOptions, dB as Thumbnails, aq as ThumbnailsAlignment, iO as ThumbnailsAlignmentWithLiterals, e$ as TimeInput, eM as TocData, bd as Type, jB as TypeWithLiterals, i4 as UpdateExtendedFieldsRequest, hk as UpdateSubmissionRequest, hl as UpdateSubmissionResponse, ba as UploadFileFormat, jy as UploadFileFormatWithLiterals, gp as UpsertContact, h1 as UpsertContactFromSubmissionRequest, gq as V4FormFieldContactInfo, gr as V4FormFieldContactInfoAdditionalInfoOneOf, i8 as ValidateFormSubmissionRequest, cN as Validation, h6 as ValidationError, a4 as ValidationFormat, is as ValidationFormatWithLiterals, c_ as ValidationMessages, cO as ValidationValidationOneOf, aM as VerticalAlignment, aT as VerticalAlignmentAlignment, jf as VerticalAlignmentAlignmentWithLiterals, j8 as VerticalAlignmentWithLiterals, dv as Video, fQ as VideoConferenceOptions, ek as VideoData, am as ViewMode, iK as ViewModeWithLiterals, av as ViewRole, iT as ViewRoleWithLiterals, aw as VoteRole, iU as VoteRoleWithLiterals, a1 as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, ak as Width, ae as WidthType, iC as WidthTypeWithLiterals, iI as WidthWithLiterals, g6 as WixFile, b9 as WixFileComponentType, g7 as WixFileComponentTypeOptionsOneOf, jx as WixFileComponentTypeWithLiterals, g3 as _Array, g4 as _ArrayComponentTypeOptionsOneOf, g1 as _Boolean, g2 as _BooleanComponentTypeOptionsOneOf, f$ as _Number, g0 as _NumberComponentTypeOptionsOneOf, g5 as _Object, fZ as _String, f_ as _StringComponentTypeOptionsOneOf, il as utils } from './forms-v4-submission-submissions.universal-DH6N9f2_.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 CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-CoYDEhLi.mjs';
3
+ export { c9 as AccountInfo, ii as AccountInfoMetadata, c5 as ActionEvent, gd as Address, ge as AddressComponentTypeOptionsOneOf, fX as AddressInfo, bv as AddressInfoTag, jU as AddressInfoTagWithLiterals, fz as AddressLine2, b0 as Alignment, jp as AlignmentWithLiterals, gJ as AllowedValuesOptions, e5 as AnchorData, gO as AndCondition, ec as AppEmbedData, ed as AppEmbedDataAppDataOneOf, aJ as AppType, j6 as AppTypeWithLiterals, hf as ApplicationError, fM as Appointment, bV as AppointmentDetails, fN as AppointmentFormatInfoOneOf, b8 as ArrayComponentType, jx as ArrayComponentTypeWithLiterals, cz as ArrayErrorMessages, fh as ArrayItems, fi as ArrayItemsItemTypeOptionsOneOf, fd as ArrayType, cx as ArrayTypeArrayItems, cy as ArrayTypeArrayItemsItemsOneOf, aD as AspectRatio, j0 as AspectRatioWithLiterals, ex as AudioData, ci as Availability, eG as Backdrop, aS as BackdropType, jf as BackdropTypeWithLiterals, db as Background, dW as BackgroundGradient, eM as BackgroundImage, ac as BackgroundType, iB as BackgroundTypeWithLiterals, eE as Banner, ig as BaseEventMetadata, eA as BlockquoteData, ee as BookingData, b5 as BooleanComponentType, ju as BooleanComponentTypeWithLiterals, cr as BooleanErrorMessages, fa as BooleanType, d9 as Border, eu as BorderColors, ev as BorderWidths, fF as BreakPoint, hg as BulkActionMetadata, hb as BulkCreateSubmissionBySubmitterData, ha as BulkCreateSubmissionBySubmitterRequest, hc as BulkCreateSubmissionBySubmitterResponse, hq as BulkDeleteSubmissionRequest, hr as BulkDeleteSubmissionResult, hV as BulkMarkSubmissionsAsSeenRequest, hv as BulkRemoveSubmissionFromTrashBinRequest, hw as BulkRemoveSubmissionFromTrashBinResult, hd as BulkSubmissionResult, i8 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsRequest, i7 as BulkUpdateFormSubmissionTagsResult, ez as BulletedListData, d6 as ButtonData, ag as ButtonDataType, iF as ButtonDataTypeWithLiterals, eg as ButtonStyles, eB as CaptionData, eK as CardData, eL as CardDataBackground, aY as CardDataBackgroundType, jl as CardDataBackgroundTypeWithLiterals, ej as CardStyles, aH as CardStylesAlignment, j4 as CardStylesAlignmentWithLiterals, aG as CardStylesType, j3 as CardStylesTypeWithLiterals, et as CellStyle, bD as ChangeableProperty, k0 as ChangeablePropertyWithLiterals, fb as Checkbox, fk as CheckboxGroup, g_ as Checkout, dl as CodeBlockData, ep as CollapsibleListData, e6 as ColorData, da as Colors, kd as CommonQueryWithEntityContext, kc as CommonSearchWithEntityContext, bc as ComponentType, jB as ComponentTypeWithLiterals, fm as ComponentsTags, gQ as Condition, gM as ConditionNode, gN as ConditionNodeNodeOneOf, hn as ConfirmSubmissionRequest, bn as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bH as ContactAutofill, k4 as ContactAutofillWithLiterals, bp as ContactField, jO as ContactFieldWithLiterals, fc as CorrectAnswersList, hS as CountDeletedSubmissionsRequest, hP as CountSubmissionsByFilterRequest, hR as CountSubmissionsRequest, ca as CreateCheckoutFromSubmissionRequest, cb as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gZ as CreateCheckoutFromSubmissionResponse, h8 as CreateSubmissionBySubmitterRequest, h9 as CreateSubmissionBySubmitterResponse, h4 as CreateSubmissionRequest, h5 as CreateSubmissionResponse, ap as Crop, iO as CropWithLiterals, hy as CursorPaging, hz as CursorPagingMetadata, hD as CursorQueryPagingMethodOneOf, hG as CursorSearch, hH as CursorSearchPagingMethodOneOf, hA as Cursors, fY as CustomFieldInfo, eW as CustomOption, cQ as DataExtensionsDetails, e$ as DateInput, f1 as DatePicker, cj as DateRange, ch as DateTimeAdvancedConstraints, cZ as DateTimeConstraints, eZ as DateTimeInput, a3 as DayOfWeek, is as DayOfWeekWithLiterals, e3 as Decoration, e4 as DecorationDataOneOf, aA as DecorationType, iZ as DecorationTypeWithLiterals, fA as DefaultCountryConfig, fB as DefaultCountryConfigOptionsOneOf, ho as DeleteSubmissionRequest, hp as DeleteSubmissionResponse, e1 as Design, aV as DesignTarget, ji as DesignTargetWithLiterals, er as Dimensions, aL as Direction, j8 as DirectionWithLiterals, gh as DisplayField, gi as DisplayFieldDisplayFieldTypeOptionsOneOf, bq as DisplayFieldType, jP as DisplayFieldTypeWithLiterals, dn as DividerData, al as DividerDataAlignment, iK as DividerDataAlignmentWithLiterals, hZ as DocumentReady, eP as DocumentStyle, b$ as DomainEvent, c0 as DomainEventBodyOneOf, fu as DonationInput, fv as DonationInputOption, h_ as DownloadSubmissionRequest, eX as Dropdown, eY as DropdownOption, cF as DynamicPriceOptions, fV as EmailInfo, bk as EmailInfoTag, jJ as EmailInfoTagWithLiterals, en as EmbedData, h1 as Empty, c1 as EntityCreatedEvent, c4 as EntityDeletedEvent, c3 as EntityUpdatedEvent, bK as ErrorType, k7 as ErrorTypeWithLiterals, ef as EventData, ih as EventMetadata, bR as ExtendedFields, cS as Field, cT as FieldFieldTypeOptionsOneOf, gF as FieldGroup, gK as FieldOverride, gL as FieldOverridePropertyTypeOptionsOneOf, cJ as FieldOverrides, a8 as FieldType, ix as FieldTypeWithLiterals, ia as FieldViolation, ib as FieldViolationErrorDataOneOf, cK as FieldsOverrides, fC as FieldsSettings, dp as FileData, dq as FileSource, dr as FileSourceDataOneOf, fp as FileType, fq as FileUpload, b3 as FirstDayOfWeek, js as FirstDayOfWeekWithLiterals, fx as FixedPayment, cE as FixedPriceOptions, eb as FontFamilyData, e9 as FontSizeData, aB as FontType, i_ as FontTypeWithLiterals, cc as Form, hT as FormDeletedSubmissionsCount, cd as FormField, cs as FormFieldArrayType, cq as FormFieldBooleanType, fT as FormFieldContactInfo, fU as FormFieldContactInfoAdditionalInfoOneOf, gv as FormFieldContactInfoAddressInfo, bx as FormFieldContactInfoContactField, jW as FormFieldContactInfoContactFieldWithLiterals, gw as FormFieldContactInfoCustomFieldInfo, gt as FormFieldContactInfoEmailInfo, bt as FormFieldContactInfoEmailInfoTag, jS as FormFieldContactInfoEmailInfoTagWithLiterals, gu as FormFieldContactInfoPhoneInfo, bu as FormFieldContactInfoPhoneInfoTag, jT as FormFieldContactInfoPhoneInfoTagWithLiterals, gx as FormFieldContactInfoSubscriptionInfo, cn as FormFieldNumberType, ct as FormFieldObjectType, cu as FormFieldObjectTypePropertiesType, cv as FormFieldObjectTypePropertiesTypePropertiesTypeOneOf, ce as FormFieldStringType, cf as FormFieldStringTypeFormatOptionsOneOf, fE as FormLayout, gn as FormOverride, go as FormProperties, gm as FormRule, il as FormSubmissionQuerySpec, ij as FormSubmissionSearchSpec, bW as FormSubmissionStatusUpdatedEvent, hQ as FormSubmissionsCount, bg as Format, a9 as FormatEnumFormat, iy as FormatEnumFormatWithLiterals, jF as FormatWithLiterals, i4 as FormattedFormSubmission, i1 as FormattedSubmission, dE as GIF, dD as GIFData, ar as GIFType, iQ as GIFTypeWithLiterals, dt as GalleryData, dz as GalleryOptions, dA as GalleryOptionsLayout, hB as GetDeletedSubmissionRequest, i0 as GetFormattedSubmissionRequest, hU as GetMediaUploadURLRequest, hj as GetSubmissionByCheckoutIdRequest, hk as GetSubmissionByCheckoutIdResponse, hW as GetSubmissionDownloadUrlRequest, hh as GetSubmissionRequest, hi as GetSubmissionResponse, d7 as Gradient, ad as GradientType, iC as GradientTypeWithLiterals, fI as Group, dG as HTMLData, dH as HTMLDataDataOneOf, h$ as HeadersEntry, dF as HeadingData, dg as Height, gI as HiddenOptions, c7 as IdentificationData, c8 as IdentificationDataIdOneOf, bJ as IdentityType, k6 as IdentityTypeWithLiterals, dv as Image, dI as ImageData, dK as ImageDataStyles, b1 as ImageFit, jq as ImageFitWithLiterals, a$ as ImagePosition, aX as ImagePositionPosition, jk as ImagePositionPositionWithLiterals, jo as ImagePositionWithLiterals, aO as ImageScalingScaling, jb as ImageScalingScalingWithLiterals, eh as ImageStyles, fQ as InPersonOptions, a_ as Indentation, jn as IndentationWithLiterals, aK as InitialExpandedItems, j7 as InitialExpandedItemsWithLiterals, cU as InputField, cV as InputFieldInputTypeOptionsOneOf, bj as InputType, jI as InputTypeWithLiterals, cp as IntegerType, g$ as IsFormSubmittableRequest, h0 as IsFormSubmittableResponse, dx as Item, dy as ItemDataOneOf, fG as ItemLayout, fH as ItemLayoutItemOneOf, he as ItemMetadata, dB as ItemStyle, b6 as ItemType, jv as ItemTypeWithLiterals, bs as Kind, jR as KindWithLiterals, aI as Layout, eH as LayoutCellData, eC as LayoutData, eF as LayoutDataBackground, eD as LayoutDataBackgroundImage, aR as LayoutDataBackgroundType, je as LayoutDataBackgroundTypeWithLiterals, aP as LayoutDataImagePosition, jc as LayoutDataImagePositionWithLiterals, an as LayoutType, iM as LayoutTypeWithLiterals, j5 as LayoutWithLiterals, gz as LimitationRule, aj as LineStyle, iI as LineStyleWithLiterals, di as Link, e7 as LinkData, dj as LinkDataOneOf, dL as LinkPreviewData, dM as LinkPreviewDataStyles, ah as LinkTarget, iG as LinkTargetWithLiterals, hx as ListDeletedSubmissionsRequest, i2 as ListFormattedSubmissionsRequest, i3 as ListFormattedSubmissionsResponse, aZ as ListStyle, jm as ListStyleWithLiterals, ew as ListValue, fO as Location, fP as LocationLocationInfoOneOf, dN as MapData, dO as MapSettings, au as MapType, iT as MapTypeWithLiterals, fJ as Margin, bZ as MarketingSubscriptionDetails, du as Media, eR as MediaItem, eS as MediaItemMediaOneOf, eT as MediaSettings, bh as MeetingType, jG as MeetingTypeWithLiterals, e8 as MentionData, c6 as MessageEnvelope, eO as Metadata, bM as Mode, k9 as ModeWithLiterals, fy as MultilineAddress, cI as MultilineAddressValidation, gy as NestedForm, cN as NestedFormFieldOverrides, cR as NestedFormOverrides, d3 as Node, d4 as NodeDataOneOf, d5 as NodeStyle, ab as NodeType, iA as NodeTypeWithLiterals, aN as NullValue, ja as NullValueWithLiterals, b4 as NumberComponentType, jt as NumberComponentTypeWithLiterals, f5 as NumberCorrectAnswersList, co as NumberErrorMessages, f8 as NumberInput, b2 as NumberOfColumns, jr as NumberOfColumnsWithLiterals, f7 as NumberQuizFieldSettings, f6 as NumberType, gf as ObjectArray, be as ObjectArrayComponentType, gg as ObjectArrayComponentTypeOptionsOneOf, jD as ObjectArrayComponentTypeWithLiterals, cL as ObjectArrayType, cw as ObjectErrorMessages, fe as ObjectType, ff as ObjectTypePropertiesType, fg as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, eo as Oembed, bF as Operator, k2 as OperatorWithLiterals, a0 as OptInLevel, ip as OptInLevelWithLiterals, fl as Option, d_ as OptionDesign, dV as OptionLayout, gP as OrCondition, bS as OrderDetails, ey as OrderedListData, ao as Orientation, iN as OrientationWithLiterals, aQ as Origin, jd as OriginWithLiterals, br as OverrideEntityType, bE as OverrideEntityTypeEnumOverrideEntityType, k1 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jQ as OverrideEntityTypeWithLiterals, ds as PDFSettings, gk as PageNavigationOptions, dP as ParagraphData, gY as PassFailMessages, f4 as Password, g9 as Payment, bb as PaymentComponentType, ga as PaymentComponentTypeOptionsOneOf, jA as PaymentComponentTypeWithLiterals, fw as PaymentInput, cC as PaymentType, dR as Permissions, c_ as PhoneConstraints, fW as PhoneInfo, bl as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, e_ as PhoneInput, fS as PhoneOptions, fL as Pikachu, aF as Placement, j2 as PlacementWithLiterals, em as PlaybackOptions, dc as PluginContainerData, af as PluginContainerDataAlignment, iE as PluginContainerDataAlignmentWithLiterals, dd as PluginContainerDataWidth, de as PluginContainerDataWidthDataOneOf, d$ as Poll, dQ as PollData, e0 as PollDataLayout, dZ as PollDesign, dX as PollDesignBackground, dY as PollDesignBackgroundBackgroundOneOf, az as PollDesignBackgroundType, iY as PollDesignBackgroundTypeWithLiterals, dU as PollLayout, ay as PollLayoutDirection, iX as PollLayoutDirectionWithLiterals, ax as PollLayoutType, iW as PollLayoutTypeWithLiterals, dS as PollOption, aC as Position, i$ as PositionWithLiterals, gp as PostSubmissionTriggers, cA as PredefinedValidation, cB as PredefinedValidationFormatOptionsOneOf, a6 as PriceType, iv as PriceTypeWithLiterals, ek as PricingData, cG as Product, fs as ProductCheckboxGroup, ft as ProductCheckboxGroupOption, cH as ProductPriceOptionsOneOf, a5 as ProductType, iu as ProductTypeWithLiterals, cM as PropertiesType, a7 as PropertiesTypeEnum, iw as PropertiesTypeEnumWithLiterals, b7 as PropertiesTypePropertiesTypeEnum, jw as PropertiesTypePropertiesTypeEnumWithLiterals, bT as PublicTags, cD as QuantityLimit, hC as QuerySubmissionRequest, hN as QuerySubmissionsByNamespaceForExportRequest, hO as QuerySubmissionsByNamespaceForExportResponse, hL as QuerySubmissionsByNamespaceRequest, hM as QuerySubmissionsByNamespaceResponse, fj as QuizFieldSettings, gV as QuizSettings, gW as QuizSettingsPassingCriteriaOneOf, gX as QuizSettingsResultsDisplayOptionsOneOf, eU as RadioGroup, eV as RadioGroupOption, f9 as RatingInput, gE as RedirectOptions, dk as Rel, ht as RemoveSubmissionFromTrashBinRequest, hu as RemoveSubmissionFromTrashBinResponse, bX as RemovedSubmissionFromTrash, fD as Repeater, bz as RequiredIndicator, bA as RequiredIndicatorPlacement, jZ as RequiredIndicatorPlacementWithLiterals, gA as RequiredIndicatorProperties, jY as RequiredIndicatorWithLiterals, gH as RequiredOptions, aE as Resizing, j1 as ResizingWithLiterals, aU as ResponsivenessBehaviour, jh as ResponsivenessBehaviourWithLiterals, c2 as RestoreInfo, hs as RestoreSubmissionFromTrashBinRequest, bG as ResultsDisplay, k3 as ResultsDisplayWithLiterals, ei as RibbonStyles, d2 as RichContent, gj as RichContentOptions, gG as Rule, gR as RuleFormOverride, gS as RuleFormOverrideEntityTypeOptionsOneOf, aW as Scaling, jj as ScalingWithLiterals, gb as Scheduling, bf as SchedulingComponentType, gc as SchedulingComponentTypeOptionsOneOf, jE as SchedulingComponentTypeWithLiterals, hI as SearchDetails, hJ as SearchSubmissionsByNamespaceForExportRequest, hK as SearchSubmissionsByNamespaceForExportResponse, hF as SearchSubmissionsByNamespaceRequest, fK as Section, f3 as ServiceOption, fo as ServicesCheckboxGroup, f2 as ServicesDropdown, dT as Settings, eI as ShapeData, eJ as ShapeDataStyles, fr as Signature, bL as SortOrder, k8 as SortOrderWithLiterals, hE as Sorting, as as Source, iR as SourceWithLiterals, by as SpamFilterProtectionLevel, jX as SpamFilterProtectionLevelWithLiterals, df as Spoiler, ea as SpoilerData, bi as StaffStrategySelection, jH as StaffStrategySelectionWithLiterals, bN as Status, ka as StatusWithLiterals, gl as Step, d8 as Stop, aa as StringComponentType, iz as StringComponentTypeWithLiterals, cW as StringCorrectAnswersList, cg as StringErrorMessages, d0 as StringQuizFieldSettings, cX as StringType, ck as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, ir as StringTypeFormatEnumFormatWithLiterals, cY as StringTypeFormatOptionsOneOf, cl as StringTypePhoneConstraints, cm as StringTypeValidationMessages, dh as Styles, dJ as StylesBorder, at as StylesPosition, iS as StylesPositionWithLiterals, bI as SubmissionAccess, k5 as SubmissionAccessWithLiterals, bY as SubmissionContactMapped, b_ as SubmissionContactMappingSkipped, hX as SubmissionDocument, hY as SubmissionDocumentDocumentOneOf, bO as SubmissionErrorType, kb as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, io as SubmissionStatusWithLiterals, id as SubmissionValidationError, ie as SubmissionValidationErrorErrorMessageOneOf, ic as SubmissionValidationErrors, h6 as SubmissionValidationErrorsDetails, ik as SubmissionsQueryResult, h3 as SubmitContactResponse, gB as SubmitSettings, gC as SubmitSettingsSubmitSuccessActionOptionsOneOf, bC as SubmitSuccessAction, j$ as SubmitSuccessActionWithLiterals, bP as Submitter, bQ as SubmitterSubmitterOneOf, bo as SubscriptionChannel, jN as SubscriptionChannelWithLiterals, fZ as SubscriptionInfo, bw as SubscriptionInfoOptInLevel, jV as SubscriptionInfoOptInLevelWithLiterals, es as TableCellData, eq as TableData, bm as Tag, bU as TagList, jL as TagWithLiterals, gT as Tags, fn as TagsOption, gU as TagsTagList, bB as Target, j_ as TargetWithLiterals, ai as TextAlignment, iH as TextAlignmentWithLiterals, e2 as TextData, d1 as TextInput, eQ as TextNodeStyle, dm as TextStyle, gD as ThankYouMessageOptions, dC as Thumbnails, aq as ThumbnailsAlignment, iP as ThumbnailsAlignmentWithLiterals, f0 as TimeInput, eN as TocData, bd as Type, jC as TypeWithLiterals, i5 as UpdateExtendedFieldsRequest, hl as UpdateSubmissionRequest, hm as UpdateSubmissionResponse, ba as UploadFileFormat, jz as UploadFileFormatWithLiterals, gq as UpsertContact, h2 as UpsertContactFromSubmissionRequest, gr as V4FormFieldContactInfo, gs as V4FormFieldContactInfoAdditionalInfoOneOf, i9 as ValidateFormSubmissionRequest, cO as Validation, h7 as ValidationError, a4 as ValidationFormat, it as ValidationFormatWithLiterals, c$ as ValidationMessages, cP as ValidationValidationOneOf, aM as VerticalAlignment, aT as VerticalAlignmentAlignment, jg as VerticalAlignmentAlignmentWithLiterals, j9 as VerticalAlignmentWithLiterals, dw as Video, fR as VideoConferenceOptions, el as VideoData, am as ViewMode, iL as ViewModeWithLiterals, av as ViewRole, iU as ViewRoleWithLiterals, aw as VoteRole, iV as VoteRoleWithLiterals, a1 as WebhookIdentityType, iq as WebhookIdentityTypeWithLiterals, ak as Width, ae as WidthType, iD as WidthTypeWithLiterals, iJ as WidthWithLiterals, g7 as WixFile, b9 as WixFileComponentType, g8 as WixFileComponentTypeOptionsOneOf, jy as WixFileComponentTypeWithLiterals, g4 as _Array, g5 as _ArrayComponentTypeOptionsOneOf, g2 as _Boolean, g3 as _BooleanComponentTypeOptionsOneOf, g0 as _Number, g1 as _NumberComponentTypeOptionsOneOf, g6 as _Object, f_ as _String, f$ as _StringComponentTypeOptionsOneOf, im as utils } from './forms-v4-submission-submissions.universal-CoYDEhLi.mjs';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -1406,6 +1406,7 @@ var UploadFileFormat = /* @__PURE__ */ ((UploadFileFormat2) => {
1406
1406
  UploadFileFormat2["AUDIO"] = "AUDIO";
1407
1407
  UploadFileFormat2["DOCUMENT"] = "DOCUMENT";
1408
1408
  UploadFileFormat2["ARCHIVE"] = "ARCHIVE";
1409
+ UploadFileFormat2["MODEL_3D"] = "MODEL_3D";
1409
1410
  return UploadFileFormat2;
1410
1411
  })(UploadFileFormat || {});
1411
1412
  var PaymentComponentType = /* @__PURE__ */ ((PaymentComponentType2) => {
@@ -1641,6 +1642,13 @@ var ContactAutofill = /* @__PURE__ */ ((ContactAutofill2) => {
1641
1642
  ContactAutofill2["FORM_INPUT"] = "FORM_INPUT";
1642
1643
  return ContactAutofill2;
1643
1644
  })(ContactAutofill || {});
1645
+ var SubmissionAccess = /* @__PURE__ */ ((SubmissionAccess2) => {
1646
+ SubmissionAccess2["UNKNOWN_SUBMISSION_ACCESS"] = "UNKNOWN_SUBMISSION_ACCESS";
1647
+ SubmissionAccess2["OWNER_AND_COLLABORATORS"] = "OWNER_AND_COLLABORATORS";
1648
+ SubmissionAccess2["MEMBERS"] = "MEMBERS";
1649
+ SubmissionAccess2["PUBLIC"] = "PUBLIC";
1650
+ return SubmissionAccess2;
1651
+ })(SubmissionAccess || {});
1644
1652
  var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
1645
1653
  IdentityType2["UNKNOWN"] = "UNKNOWN";
1646
1654
  IdentityType2["CONTACT"] = "CONTACT";
@@ -3027,6 +3035,7 @@ export {
3027
3035
  StringComponentType,
3028
3036
  StringTypeFormatEnumFormat,
3029
3037
  StylesPosition,
3038
+ SubmissionAccess,
3030
3039
  SubmissionErrorType,
3031
3040
  SubmissionStatus,
3032
3041
  SubmitSuccessAction,