@wix/auto_sdk_forms_submissions 1.0.75 → 1.0.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{forms-v4-submission-submissions.universal-BliG3eAK.d.ts → forms-v4-submission-submissions.universal-p9UgjNSI.d.ts} +143 -5
  2. package/build/cjs/index.d.ts +4 -4
  3. package/build/cjs/index.js +1 -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 +1 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +40 -4
  9. package/build/cjs/meta.js +1 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{forms-v4-submission-submissions.universal-BliG3eAK.d.mts → forms-v4-submission-submissions.universal-p9UgjNSI.d.mts} +143 -5
  12. package/build/es/index.d.mts +4 -4
  13. package/build/es/index.mjs +1 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +1 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +40 -4
  19. package/build/es/meta.mjs +1 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{forms-v4-submission-submissions.universal-BvTxsD4O.d.ts → forms-v4-submission-submissions.universal-IKRWXge_.d.ts} +143 -5
  22. package/build/internal/cjs/index.d.ts +4 -4
  23. package/build/internal/cjs/index.js +1 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +1 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +40 -4
  29. package/build/internal/cjs/meta.js +1 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{forms-v4-submission-submissions.universal-BvTxsD4O.d.mts → forms-v4-submission-submissions.universal-IKRWXge_.d.mts} +143 -5
  32. package/build/internal/es/index.d.mts +4 -4
  33. package/build/internal/es/index.mjs +1 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +1 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +40 -4
  39. package/build/internal/es/meta.mjs +1 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +3 -3
@@ -1,4 +1,4 @@
1
- import { SearchSpec, Search, NonNullablePaths } from '@wix/sdk-types';
1
+ import { SearchSpec, QuerySpec, Search, Query, NonNullablePaths } from '@wix/sdk-types';
2
2
 
3
3
  /** Form submission that was created or retrieved. */
4
4
  interface FormSubmission {
@@ -1168,10 +1168,12 @@ declare enum StringComponentType {
1168
1168
  /** Calendar-style date picker component. */
1169
1169
  DATE_PICKER = "DATE_PICKER",
1170
1170
  /** Dropdown component for selecting available services. */
1171
- SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
1171
+ SERVICES_DROPDOWN = "SERVICES_DROPDOWN",
1172
+ /** Component which obscures input characters. */
1173
+ PASSWORD = "PASSWORD"
1172
1174
  }
1173
1175
  /** @enumType */
1174
- type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
1176
+ type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN' | 'PASSWORD';
1175
1177
  interface TextInput {
1176
1178
  /**
1177
1179
  * Field label.
@@ -3491,6 +3493,36 @@ interface ServiceOption {
3491
3493
  */
3492
3494
  value?: string | null;
3493
3495
  }
3496
+ interface Password {
3497
+ /**
3498
+ * Field label.
3499
+ * @maxLength 350
3500
+ */
3501
+ label?: string | null;
3502
+ /** Additional description or instructions for the field. */
3503
+ description?: RichContent;
3504
+ /**
3505
+ * Placeholder text shown inside the field when it's empty.
3506
+ * Useful for providing a hint about the expected format or content.
3507
+ * @maxLength 100
3508
+ */
3509
+ placeholder?: string | null;
3510
+ /**
3511
+ * Whether to display the field label.
3512
+ *
3513
+ * Default: `true`
3514
+ */
3515
+ showLabel?: boolean | null;
3516
+ /**
3517
+ * Default value for the field. This value is pre-populated in the field when the form loads.
3518
+ * @maxLength 20000
3519
+ */
3520
+ default?: string | null;
3521
+ /** Media content associated with the field, such as an image. */
3522
+ media?: MediaItem;
3523
+ /** Configuration for the media content. */
3524
+ mediaSettings?: MediaSettings;
3525
+ }
3494
3526
  interface NumberType {
3495
3527
  /** The maximum value of the number. Inclusive. */
3496
3528
  maximum?: number | null;
@@ -4524,6 +4556,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
4524
4556
  datePickerOptions?: DatePicker;
4525
4557
  /** Services dropdown component settings. */
4526
4558
  servicesDropdownOptions?: ServicesDropdown;
4559
+ /** Password component settings. */
4560
+ passwordOptions?: Password;
4527
4561
  /** Validation configuration for the string input. */
4528
4562
  validation?: StringType;
4529
4563
  /**
@@ -4552,6 +4586,8 @@ interface _StringComponentTypeOptionsOneOf {
4552
4586
  datePickerOptions?: DatePicker;
4553
4587
  /** Services dropdown component settings. */
4554
4588
  servicesDropdownOptions?: ServicesDropdown;
4589
+ /** Password component settings. */
4590
+ passwordOptions?: Password;
4555
4591
  }
4556
4592
  interface _Number extends _NumberComponentTypeOptionsOneOf {
4557
4593
  /** Number input settings. */
@@ -7333,7 +7369,109 @@ interface SubmissionsQueryBuilder {
7333
7369
  * @fqn wix.forms.v4.FormSubmissionService.QuerySubmissionsByNamespace
7334
7370
  * @requiredField query
7335
7371
  */
7336
- declare function typedQuerySubmissionsByNamespace(query: CursorQuery, options?: QuerySubmissionsByNamespaceOptions): Promise<NonNullablePaths<QuerySubmissionsByNamespaceResponse, `submissions` | `submissions.${number}.formId` | `submissions.${number}.namespace` | `submissions.${number}.status` | `submissions.${number}.seen` | `submissions.${number}.orderDetails.itemSubtotal` | `submissions.${number}.orderDetails.checkoutId`, 5>>;
7372
+ declare function typedQuerySubmissionsByNamespace(query: FormSubmissionQuery, options?: QuerySubmissionsByNamespaceOptions): Promise<NonNullablePaths<QuerySubmissionsByNamespaceResponse, `submissions` | `submissions.${number}.formId` | `submissions.${number}.namespace` | `submissions.${number}.status` | `submissions.${number}.seen` | `submissions.${number}.orderDetails.itemSubtotal` | `submissions.${number}.orderDetails.checkoutId`, 5>>;
7373
+ interface FormSubmissionQuerySpec extends QuerySpec {
7374
+ paging: 'cursor';
7375
+ wql: [
7376
+ {
7377
+ fields: ['_id'];
7378
+ operators: ['$eq', '$in', '$ne', '$nin'];
7379
+ sort: 'BOTH';
7380
+ },
7381
+ {
7382
+ fields: ['formId'];
7383
+ operators: ['$eq', '$in', '$ne', '$nin'];
7384
+ sort: 'BOTH';
7385
+ },
7386
+ {
7387
+ fields: ['contactId'];
7388
+ operators: ['$eq', '$in', '$ne', '$nin'];
7389
+ sort: 'BOTH';
7390
+ },
7391
+ {
7392
+ fields: ['namespace'];
7393
+ operators: ['$eq'];
7394
+ sort: 'NONE';
7395
+ },
7396
+ {
7397
+ fields: ['status'];
7398
+ operators: ['$eq', '$in', '$ne', '$nin'];
7399
+ sort: 'BOTH';
7400
+ },
7401
+ {
7402
+ fields: ['seen'];
7403
+ operators: ['$eq', '$ne'];
7404
+ sort: 'BOTH';
7405
+ },
7406
+ {
7407
+ fields: ['_createdDate', '_updatedDate'];
7408
+ operators: ['$eq', '$gt', '$gte', '$in', '$lt', '$lte', '$ne', '$nin'];
7409
+ sort: 'BOTH';
7410
+ },
7411
+ {
7412
+ fields: [
7413
+ 'submitter.applicationId',
7414
+ 'submitter.memberId',
7415
+ 'submitter.userId',
7416
+ 'submitter.visitorId'
7417
+ ];
7418
+ operators: ['$eq', '$in', '$ne', '$nin'];
7419
+ sort: 'BOTH';
7420
+ },
7421
+ {
7422
+ fields: ['orderDetails.checkoutId'];
7423
+ operators: ['$eq', '$in', '$ne', '$nin'];
7424
+ sort: 'BOTH';
7425
+ }
7426
+ ];
7427
+ }
7428
+ type CommonQueryWithEntityContext = Query<FormSubmission, FormSubmissionQuerySpec>;
7429
+ type FormSubmissionQuery = {
7430
+ /**
7431
+ Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.
7432
+ */
7433
+ cursorPaging?: {
7434
+ /**
7435
+ Number of items to load.
7436
+ @max: 100
7437
+ */
7438
+ limit?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['limit'] | null;
7439
+ /**
7440
+ Pointer to the next or previous page in the list of results.
7441
+
7442
+ You can get the relevant cursor token
7443
+ from the `pagingMetadata` object in the previous call's response.
7444
+ Not relevant for the first request.
7445
+ @maxLength: 16000
7446
+ */
7447
+ cursor?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['cursor'] | null;
7448
+ };
7449
+ /**
7450
+ Filter object in the following format:
7451
+ `"filter" : {
7452
+ "fieldName1": "value1",
7453
+ "fieldName2":{"$operator":"value2"}
7454
+ }`
7455
+ Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
7456
+ */
7457
+ filter?: CommonQueryWithEntityContext['filter'] | null;
7458
+ /**
7459
+ Sort object in the following format:
7460
+ `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
7461
+ @maxSize: 3
7462
+ */
7463
+ sort?: {
7464
+ /**
7465
+ Name of the field to sort by.
7466
+ @maxLength: 512
7467
+ */
7468
+ fieldName?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['fieldName'];
7469
+ /**
7470
+ Sort order.
7471
+ */
7472
+ order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
7473
+ }[];
7474
+ };
7337
7475
  /**
7338
7476
  * > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
7339
7477
  * <br>
@@ -7545,4 +7683,4 @@ interface ValidateFormSubmissionOptions {
7545
7683
  fieldsToValidate?: string[];
7546
7684
  }
7547
7685
 
7548
- export { OptInLevel 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 QuerySubmissionsByNamespaceOptions as X, typedQuerySubmissionsByNamespace as Y, type SubmissionsQueryBuilder as Z, SubmissionStatus as _, type UpsertContactFromSubmissionResponse as a, ObjectArrayComponentType as a$, StringTypeFormatEnumFormat as a0, ValidationFormat as a1, ProductType as a2, PriceType as a3, FieldType as a4, FormatEnumFormat as a5, StringComponentType as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, CardStylesType as aA, CardStylesAlignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, LayoutDataImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, ImagePosition as aM, Alignment as aN, ImageFit as aO, NumberOfColumns as aP, FirstDayOfWeek as aQ, NumberComponentType as aR, BooleanComponentType as aS, ItemType as aT, PropertiesTypeEnum as aU, ArrayComponentType as aV, WixFileComponentType as aW, UploadFileFormat as aX, PaymentComponentType as aY, ComponentType as aZ, Type as a_, ButtonDataType as aa, LinkTarget as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, Position as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItemsItemsOneOf as b$, SchedulingComponentType as b0, Format as b1, InputType as b2, EmailInfoTag as b3, PhoneInfoTag as b4, Tag as b5, ConfirmationLevel as b6, ContactField as b7, DisplayFieldType as b8, OverrideEntityType as b9, type TagList as bA, type FormSubmissionStatusUpdatedEvent as bB, type RemovedSubmissionFromTrash as bC, type SubmissionContactMapped as bD, type MarketingSubscriptionDetails as bE, type SubmissionContactMappingSkipped as bF, type CreateCheckoutFromSubmissionRequest as bG, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bH, type Form as bI, type FormField as bJ, type FormFieldStringType as bK, type FormFieldStringTypeFormatOptionsOneOf as bL, type StringErrorMessages as bM, type StringTypeDateTimeConstraints as bN, type StringTypePhoneConstraints as bO, type StringTypeValidationMessages as bP, type FormFieldNumberType as bQ, type NumberErrorMessages as bR, type IntegerType as bS, type FormFieldBooleanType as bT, type BooleanErrorMessages as bU, type FormFieldArrayType as bV, type FormFieldObjectType as bW, type ObjectTypePropertiesType as bX, type ObjectTypePropertiesTypePropertiesTypeOneOf as bY, type ObjectErrorMessages as bZ, type ArrayTypeArrayItems as b_, Kind as ba, FormFieldContactInfoEmailInfoTag as bb, FormFieldContactInfoPhoneInfoTag as bc, AddressInfoTag as bd, SubscriptionInfoOptInLevel as be, FormFieldContactInfoContactField as bf, SpamFilterProtectionLevel as bg, RequiredIndicator as bh, RequiredIndicatorPlacement as bi, Target as bj, SubmitSuccessAction as bk, ChangeableProperty as bl, OverrideEntityTypeEnumOverrideEntityType as bm, Operator as bn, WebhookIdentityType as bo, IdentityType as bp, ErrorType as bq, SortOrder as br, Mode as bs, Status as bt, SubmissionErrorType as bu, type Submitter as bv, type SubmitterSubmitterOneOf as bw, type ExtendedFields as bx, type OrderDetails as by, type PublicTags as bz, type CreateSubmissionValidationErrors as c, type HeadingData as c$, type ArrayErrorMessages as c0, type PredefinedValidation as c1, type PredefinedValidationFormatOptionsOneOf as c2, type PaymentType as c3, type QuantityLimit as c4, type FixedPriceOptions as c5, type DynamicPriceOptions as c6, type Product as c7, type ProductPriceOptionsOneOf as c8, type MultilineAddressValidation as c9, type PluginContainerDataWidth as cA, type PluginContainerDataWidthDataOneOf as cB, type Spoiler as cC, type Height as cD, type Styles as cE, type Link as cF, type LinkDataOneOf as cG, type Rel as cH, type CodeBlockData as cI, type TextStyle as cJ, type DividerData as cK, type FileData as cL, type FileSource as cM, type FileSourceDataOneOf as cN, type PDFSettings as cO, type GalleryData as cP, type Media as cQ, type Image as cR, type Video as cS, type Item as cT, type ItemDataOneOf as cU, type GalleryOptions as cV, type GalleryOptionsLayout as cW, type ItemStyle as cX, type Thumbnails as cY, type GIFData as cZ, type GIF as c_, type FieldOverrides as ca, type FieldsOverrides as cb, type ObjectArrayType as cc, type NestedFormFieldOverrides as cd, type Validation as ce, type ValidationValidationOneOf as cf, type DataExtensionsDetails as cg, type NestedFormOverrides as ch, type Field as ci, type FieldFieldTypeOptionsOneOf as cj, type InputField as ck, type InputFieldInputTypeOptionsOneOf as cl, type StringType as cm, type StringTypeFormatOptionsOneOf as cn, type DateTimeConstraints as co, type PhoneConstraints as cp, type ValidationMessages as cq, type TextInput as cr, type RichContent as cs, type Node as ct, type NodeDataOneOf as cu, type NodeStyle as cv, type ButtonData as cw, type Border as cx, type Colors as cy, type PluginContainerData as cz, type UpdateSubmission as d, type LayoutCellData as d$, type HTMLData as d0, type HTMLDataDataOneOf as d1, type ImageData as d2, type StylesBorder as d3, type ImageDataStyles as d4, type LinkPreviewData as d5, type LinkPreviewDataStyles as d6, type MapData as d7, type MapSettings as d8, type ParagraphData as d9, type AppEmbedDataAppDataOneOf as dA, type BookingData as dB, type EventData as dC, type ButtonStyles as dD, type ImageStyles as dE, type RibbonStyles as dF, type CardStyles as dG, type PricingData as dH, type VideoData as dI, type PlaybackOptions as dJ, type EmbedData as dK, type Oembed as dL, type CollapsibleListData as dM, type TableData as dN, type Dimensions as dO, type TableCellData as dP, type CellStyle as dQ, type BorderColors as dR, type BorderWidths as dS, type ListValue as dT, type AudioData as dU, type OrderedListData as dV, type BulletedListData as dW, type BlockquoteData as dX, type CaptionData as dY, type LayoutData as dZ, type BackgroundImage as d_, type PollData as da, type Permissions as db, type PollOption as dc, type Settings as dd, type PollLayout as de, type OptionLayout as df, type Gradient as dg, type Background as dh, type BackgroundBackgroundOneOf as di, type PollDesign as dj, type OptionDesign as dk, type Poll as dl, type PollDataLayout as dm, type Design as dn, type TextData as dp, type Decoration as dq, type DecorationDataOneOf as dr, type AnchorData as ds, type ColorData as dt, type LinkData as du, type MentionData as dv, type FontSizeData as dw, type SpoilerData as dx, type FontFamilyData as dy, type AppEmbedData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfo as e$, type Metadata as e0, type DocumentStyle as e1, type TextNodeStyle as e2, type MediaItem as e3, type MediaItemMediaOneOf as e4, type MediaSettings as e5, type RadioGroup as e6, type RadioGroupOption as e7, type CustomOption as e8, type Dropdown as e9, type Signature as eA, type ProductCheckboxGroup as eB, type ProductCheckboxGroupOption as eC, type DonationInput as eD, type DonationInputOption as eE, type PaymentInput as eF, type FixedPayment as eG, type MultilineAddress as eH, type AddressLine2 as eI, type DefaultCountryConfig as eJ, type DefaultCountryConfigOptionsOneOf as eK, type FieldsSettings as eL, type Repeater as eM, type FormLayout as eN, type BreakPoint as eO, type ItemLayout as eP, type ItemLayoutItemOneOf as eQ, type Group as eR, type Margin as eS, type Section as eT, type Appointment as eU, type AppointmentFormatInfoOneOf as eV, type Location as eW, type LocationLocationInfoOneOf as eX, type InPersonOptions as eY, type VideoConferenceOptions as eZ, type PhoneOptions as e_, type DropdownOption as ea, type DateTimeInput as eb, type PhoneInput as ec, type DateInput as ed, type TimeInput as ee, type DatePicker as ef, type ServicesDropdown as eg, type ServiceOption as eh, type NumberType as ei, type NumberInput as ej, type RatingInput as ek, type BooleanType as el, type Checkbox as em, type ArrayType as en, type ObjectType as eo, type PropertiesType as ep, type PropertiesTypePropertiesTypeOptionsOneOf as eq, type ArrayItems as er, type ArrayItemsItemTypeOptionsOneOf as es, type CheckboxGroup as et, type Option as eu, type ComponentsTags as ev, type TagsOption as ew, type ServicesCheckboxGroup as ex, type FileType as ey, type FileUpload as ez, type ConfirmSubmissionResponse as f, type Tags as f$, type FormFieldContactInfoAdditionalInfoOneOf as f0, type EmailInfo as f1, type PhoneInfo as f2, type AddressInfo as f3, type CustomFieldInfo as f4, type SubscriptionInfo as f5, type _String as f6, type _StringComponentTypeOptionsOneOf as f7, type _Number as f8, type _NumberComponentTypeOptionsOneOf as f9, type V4FormFieldContactInfoAdditionalInfoOneOf as fA, type FormFieldContactInfoEmailInfo as fB, type FormFieldContactInfoPhoneInfo as fC, type FormFieldContactInfoAddressInfo as fD, type FormFieldContactInfoCustomFieldInfo as fE, type FormFieldContactInfoSubscriptionInfo as fF, type NestedForm as fG, type LimitationRule as fH, type RequiredIndicatorProperties as fI, type SubmitSettings as fJ, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fK, type ThankYouMessageOptions as fL, type RedirectOptions as fM, type FieldGroup as fN, type Rule as fO, type RequiredOptions as fP, type HiddenOptions as fQ, type AllowedValuesOptions as fR, type FieldOverride as fS, type FieldOverridePropertyTypeOptionsOneOf as fT, type ConditionNode as fU, type ConditionNodeNodeOneOf as fV, type AndCondition as fW, type OrCondition as fX, type Condition as fY, type RuleFormOverride as fZ, type RuleFormOverrideEntityTypeOptionsOneOf as f_, type _Boolean as fa, type _BooleanComponentTypeOptionsOneOf as fb, type _Array as fc, type _ArrayComponentTypeOptionsOneOf as fd, type _Object as fe, type WixFile as ff, type WixFileComponentTypeOptionsOneOf as fg, type Payment as fh, type PaymentComponentTypeOptionsOneOf as fi, type Scheduling as fj, type SchedulingComponentTypeOptionsOneOf as fk, type Address as fl, type AddressComponentTypeOptionsOneOf as fm, type ObjectArray as fn, type ObjectArrayComponentTypeOptionsOneOf as fo, type DisplayField as fp, type DisplayFieldDisplayFieldTypeOptionsOneOf as fq, type RichContentOptions as fr, type PageNavigationOptions as fs, type Step as ft, type FormRule as fu, type FormOverride as fv, type FormProperties as fw, type PostSubmissionTriggers as fx, type UpsertContact as fy, type V4FormFieldContactInfo as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceForExportRequest as g$, type TagsTagList as g0, type CreateCheckoutFromSubmissionResponse as g1, type Checkout as g2, type IsFormSubmittableRequest as g3, type IsFormSubmittableResponse as g4, type DomainEvent as g5, type DomainEventBodyOneOf as g6, type EntityCreatedEvent as g7, type RestoreInfo as g8, type EntityUpdatedEvent as g9, type GetSubmissionResponse as gA, type GetSubmissionByCheckoutIdRequest as gB, type GetSubmissionByCheckoutIdResponse as gC, type UpdateSubmissionRequest as gD, type UpdateSubmissionResponse as gE, type ConfirmSubmissionRequest as gF, type DeleteSubmissionRequest as gG, type DeleteSubmissionResponse as gH, type BulkDeleteSubmissionRequest as gI, type BulkDeleteSubmissionResult as gJ, type RestoreSubmissionFromTrashBinRequest as gK, type RemoveSubmissionFromTrashBinRequest as gL, type RemoveSubmissionFromTrashBinResponse as gM, type BulkRemoveSubmissionFromTrashBinRequest as gN, type BulkRemoveSubmissionFromTrashBinResult as gO, type ListDeletedSubmissionsRequest as gP, type CursorPaging as gQ, type CursorPagingMetadata as gR, type Cursors as gS, type GetDeletedSubmissionRequest as gT, type QuerySubmissionRequest as gU, type CursorQueryPagingMethodOneOf as gV, type Sorting as gW, type SearchSubmissionsByNamespaceRequest as gX, type CursorSearch as gY, type CursorSearchPagingMethodOneOf as gZ, type SearchDetails as g_, type EntityDeletedEvent as ga, type ActionEvent as gb, type Empty as gc, type MessageEnvelope as gd, type IdentificationData as ge, type IdentificationDataIdOneOf as gf, type UpsertContactFromSubmissionRequest as gg, type SubmitContactResponse as gh, type CreateSubmissionRequest as gi, type CreateSubmissionResponse as gj, type SubmissionValidationErrorsDetails as gk, type ValidationError as gl, type CreateSubmissionForMigrationRequest as gm, type CreateSubmissionForMigrationResponse as gn, type BulkCreateSubmissionsForMigrationRequest as go, type BulkCreateSubmissionsForMigrationResponse as gp, type BulkSubmissionResult as gq, type ItemMetadata as gr, type ApplicationError as gs, type BulkActionMetadata as gt, type CreateSubmissionBySubmitterRequest as gu, type CreateSubmissionBySubmitterResponse as gv, type BulkCreateSubmissionBySubmitterRequest as gw, type BulkCreateSubmissionBySubmitterData as gx, type BulkCreateSubmissionBySubmitterResponse as gy, type GetSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type MapTypeWithLiterals as h$, type SearchSubmissionsByNamespaceForExportResponse as h0, type QuerySubmissionsByNamespaceRequest as h1, type QuerySubmissionsByNamespaceResponse as h2, type QuerySubmissionsByNamespaceForExportRequest as h3, type QuerySubmissionsByNamespaceForExportResponse as h4, type CountSubmissionsByFilterRequest as h5, type FormSubmissionsCount as h6, type CountSubmissionsRequest as h7, type CountDeletedSubmissionsRequest as h8, type FormDeletedSubmissionsCount as h9, type SubmissionsQueryResult as hA, type SubmissionStatusWithLiterals as hB, type OptInLevelWithLiterals as hC, type StringTypeFormatEnumFormatWithLiterals as hD, type ValidationFormatWithLiterals as hE, type ProductTypeWithLiterals as hF, type PriceTypeWithLiterals as hG, type FieldTypeWithLiterals as hH, type FormatEnumFormatWithLiterals as hI, type StringComponentTypeWithLiterals as hJ, type NodeTypeWithLiterals as hK, type WidthTypeWithLiterals as hL, type PluginContainerDataAlignmentWithLiterals as hM, type ButtonDataTypeWithLiterals as hN, type LinkTargetWithLiterals as hO, type TextAlignmentWithLiterals as hP, type LineStyleWithLiterals as hQ, type WidthWithLiterals as hR, type DividerDataAlignmentWithLiterals as hS, type ViewModeWithLiterals as hT, type LayoutTypeWithLiterals as hU, type OrientationWithLiterals as hV, type CropWithLiterals as hW, type ThumbnailsAlignmentWithLiterals as hX, type GIFTypeWithLiterals as hY, type SourceWithLiterals as hZ, type StylesPositionWithLiterals as h_, type GetMediaUploadURLRequest as ha, type BulkMarkSubmissionsAsSeenRequest as hb, type GetSubmissionDownloadUrlRequest as hc, type SubmissionDocument as hd, type SubmissionDocumentDocumentOneOf as he, type DocumentReady as hf, type DownloadSubmissionRequest as hg, type HeadersEntry as hh, type GetFormattedSubmissionRequest as hi, type FormattedSubmission as hj, type ListFormattedSubmissionsRequest as hk, type ListFormattedSubmissionsResponse as hl, type FormattedFormSubmission as hm, type UpdateExtendedFieldsRequest as hn, type BulkUpdateFormSubmissionTagsRequest as ho, type BulkUpdateFormSubmissionTagsResult as hp, type BulkUpdateFormSubmissionTagsByFilterRequest as hq, type ValidateFormSubmissionRequest as hr, type FieldViolation as hs, type FieldViolationErrorDataOneOf as ht, type SubmissionValidationErrors as hu, type SubmissionValidationError as hv, type SubmissionValidationErrorErrorMessageOneOf as hw, type BaseEventMetadata as hx, type EventMetadata as hy, type FormSubmissionSearchSpec as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as i$, type ViewRoleWithLiterals as i0, type VoteRoleWithLiterals as i1, type PollLayoutTypeWithLiterals as i2, type PollLayoutDirectionWithLiterals as i3, type BackgroundTypeWithLiterals as i4, type DecorationTypeWithLiterals as i5, type FontTypeWithLiterals as i6, type PositionWithLiterals as i7, type AspectRatioWithLiterals as i8, type ResizingWithLiterals as i9, type UploadFileFormatWithLiterals as iA, type PaymentComponentTypeWithLiterals as iB, type ComponentTypeWithLiterals as iC, type TypeWithLiterals as iD, type ObjectArrayComponentTypeWithLiterals as iE, type SchedulingComponentTypeWithLiterals as iF, type FormatWithLiterals as iG, type InputTypeWithLiterals as iH, type EmailInfoTagWithLiterals as iI, type PhoneInfoTagWithLiterals as iJ, type TagWithLiterals as iK, type ConfirmationLevelWithLiterals as iL, type ContactFieldWithLiterals as iM, type DisplayFieldTypeWithLiterals as iN, type OverrideEntityTypeWithLiterals as iO, type KindWithLiterals as iP, type FormFieldContactInfoEmailInfoTagWithLiterals as iQ, type FormFieldContactInfoPhoneInfoTagWithLiterals as iR, type AddressInfoTagWithLiterals as iS, type SubscriptionInfoOptInLevelWithLiterals as iT, type FormFieldContactInfoContactFieldWithLiterals as iU, type SpamFilterProtectionLevelWithLiterals as iV, type RequiredIndicatorWithLiterals as iW, type RequiredIndicatorPlacementWithLiterals as iX, type TargetWithLiterals as iY, type SubmitSuccessActionWithLiterals as iZ, type ChangeablePropertyWithLiterals as i_, type PlacementWithLiterals as ia, type CardStylesTypeWithLiterals as ib, type CardStylesAlignmentWithLiterals as ic, type LayoutWithLiterals as id, type AppTypeWithLiterals as ie, type InitialExpandedItemsWithLiterals as ig, type DirectionWithLiterals as ih, type VerticalAlignmentWithLiterals as ii, type NullValueWithLiterals as ij, type ScalingWithLiterals as ik, type LayoutDataImagePositionWithLiterals as il, type VerticalAlignmentAlignmentWithLiterals as im, type ResponsivenessBehaviourWithLiterals as io, type ImagePositionWithLiterals as ip, type AlignmentWithLiterals as iq, type ImageFitWithLiterals as ir, type NumberOfColumnsWithLiterals as is, type FirstDayOfWeekWithLiterals as it, type NumberComponentTypeWithLiterals as iu, type BooleanComponentTypeWithLiterals as iv, type ItemTypeWithLiterals as iw, type PropertiesTypeEnumWithLiterals as ix, type ArrayComponentTypeWithLiterals as iy, type WixFileComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type OperatorWithLiterals as j0, type WebhookIdentityTypeWithLiterals as j1, type IdentityTypeWithLiterals as j2, type ErrorTypeWithLiterals as j3, type SortOrderWithLiterals as j4, type ModeWithLiterals as j5, type StatusWithLiterals as j6, type SubmissionErrorTypeWithLiterals as j7, type CommonSearchWithEntityContext as j8, onSubmissionCreated as j9, downloadSubmission as jA, getFormattedSubmission as jB, updateExtendedFields as jC, bulkUpdateFormSubmissionTags as jD, bulkUpdateFormSubmissionTagsByFilter as jE, validateFormSubmission as jF, onSubmissionDeleted as ja, onSubmissionRemovedSubmissionFromTrash as jb, onSubmissionStatusUpdated as jc, onSubmissionContactMapped as jd, onSubmissionContactMappingSkipped as je, onSubmissionUpdated as jf, upsertContactFromSubmission as jg, createSubmission as jh, getSubmission as ji, updateSubmission as jj, confirmSubmission as jk, deleteSubmission as jl, bulkDeleteSubmission as jm, restoreSubmissionFromTrashBin as jn, removeSubmissionFromTrashBin as jo, bulkRemoveSubmissionFromTrashBin as jp, listDeletedSubmissions as jq, getDeletedSubmission as jr, querySubmission as js, querySubmissionsByNamespace as jt, countSubmissionsByFilter as ju, countSubmissions as jv, countDeletedSubmissions as jw, getMediaUploadUrl as jx, bulkMarkSubmissionsAsSeen as jy, getSubmissionDownloadUrl as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
7686
+ 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, Type as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItems as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, InputType as b3, EmailInfoTag as b4, PhoneInfoTag as b5, Tag as b6, ConfirmationLevel as b7, ContactField as b8, DisplayFieldType as b9, type PublicTags as bA, type TagList as bB, type FormSubmissionStatusUpdatedEvent as bC, type RemovedSubmissionFromTrash as bD, type SubmissionContactMapped as bE, type MarketingSubscriptionDetails as bF, type SubmissionContactMappingSkipped as bG, type CreateCheckoutFromSubmissionRequest as bH, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bI, type Form as bJ, type FormField as bK, type FormFieldStringType as bL, type FormFieldStringTypeFormatOptionsOneOf as bM, type StringErrorMessages as bN, type StringTypeDateTimeConstraints as bO, type StringTypePhoneConstraints as bP, type StringTypeValidationMessages as bQ, type FormFieldNumberType as bR, type NumberErrorMessages as bS, type IntegerType as bT, type FormFieldBooleanType as bU, type BooleanErrorMessages as bV, type FormFieldArrayType as bW, type FormFieldObjectType as bX, type ObjectTypePropertiesType as bY, type ObjectTypePropertiesTypePropertiesTypeOneOf as bZ, type ObjectErrorMessages as b_, OverrideEntityType as ba, Kind as bb, FormFieldContactInfoEmailInfoTag as bc, FormFieldContactInfoPhoneInfoTag as bd, AddressInfoTag as be, SubscriptionInfoOptInLevel as bf, FormFieldContactInfoContactField as bg, SpamFilterProtectionLevel as bh, RequiredIndicator as bi, RequiredIndicatorPlacement as bj, Target as bk, SubmitSuccessAction as bl, ChangeableProperty as bm, OverrideEntityTypeEnumOverrideEntityType as bn, Operator as bo, WebhookIdentityType as bp, IdentityType as bq, ErrorType as br, SortOrder as bs, Mode as bt, Status as bu, SubmissionErrorType as bv, type Submitter as bw, type SubmitterSubmitterOneOf as bx, type ExtendedFields as by, type OrderDetails as bz, type CreateSubmissionValidationErrors as c, type GIF as c$, type ArrayTypeArrayItemsItemsOneOf as c0, type ArrayErrorMessages as c1, type PredefinedValidation as c2, type PredefinedValidationFormatOptionsOneOf as c3, type PaymentType as c4, type QuantityLimit as c5, type FixedPriceOptions as c6, type DynamicPriceOptions as c7, type Product as c8, type ProductPriceOptionsOneOf as c9, type PluginContainerData as cA, type PluginContainerDataWidth as cB, type PluginContainerDataWidthDataOneOf as cC, type Spoiler as cD, type Height as cE, type Styles as cF, type Link as cG, type LinkDataOneOf as cH, type Rel as cI, type CodeBlockData as cJ, type TextStyle as cK, type DividerData as cL, type FileData as cM, type FileSource as cN, type FileSourceDataOneOf as cO, type PDFSettings as cP, type GalleryData as cQ, type Media as cR, type Image as cS, type Video as cT, type Item as cU, type ItemDataOneOf as cV, type GalleryOptions as cW, type GalleryOptionsLayout as cX, type ItemStyle as cY, type Thumbnails as cZ, type GIFData as c_, type MultilineAddressValidation as ca, type FieldOverrides as cb, type FieldsOverrides as cc, type ObjectArrayType as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type Field as cj, type FieldFieldTypeOptionsOneOf as ck, type InputField as cl, type InputFieldInputTypeOptionsOneOf as cm, type StringType as cn, type StringTypeFormatOptionsOneOf as co, type DateTimeConstraints as cp, type PhoneConstraints as cq, type ValidationMessages as cr, type TextInput as cs, type RichContent as ct, type Node as cu, type NodeDataOneOf as cv, type NodeStyle as cw, type ButtonData as cx, type Border as cy, type Colors as cz, type UpdateSubmission as d, type BackgroundImage as d$, type HeadingData as d0, type HTMLData as d1, type HTMLDataDataOneOf as d2, type ImageData as d3, type StylesBorder as d4, type ImageDataStyles as d5, type LinkPreviewData as d6, type LinkPreviewDataStyles as d7, type MapData as d8, type MapSettings as d9, type AppEmbedData as dA, type AppEmbedDataAppDataOneOf as dB, type BookingData as dC, type EventData as dD, type ButtonStyles as dE, type ImageStyles as dF, type RibbonStyles as dG, type CardStyles as dH, type PricingData as dI, type VideoData as dJ, type PlaybackOptions as dK, type EmbedData as dL, type Oembed as dM, type CollapsibleListData as dN, type TableData as dO, type Dimensions as dP, type TableCellData as dQ, type CellStyle as dR, type BorderColors as dS, type BorderWidths as dT, type ListValue as dU, type AudioData as dV, type OrderedListData as dW, type BulletedListData as dX, type BlockquoteData as dY, type CaptionData as dZ, type LayoutData as d_, type ParagraphData as da, type PollData as db, type Permissions as dc, type PollOption as dd, type Settings as de, type PollLayout as df, type OptionLayout as dg, type Gradient as dh, type Background as di, type BackgroundBackgroundOneOf as dj, type PollDesign as dk, type OptionDesign as dl, type Poll as dm, type PollDataLayout as dn, type Design as dp, type TextData as dq, type Decoration as dr, type DecorationDataOneOf as ds, type AnchorData as dt, type ColorData as du, type LinkData as dv, type MentionData as dw, type FontSizeData as dx, type SpoilerData as dy, type FontFamilyData as dz, type UpdateSubmissionValidationErrors as e, type VideoConferenceOptions as e$, type LayoutCellData as e0, type Metadata as e1, type DocumentStyle as e2, type TextNodeStyle as e3, type MediaItem as e4, type MediaItemMediaOneOf as e5, type MediaSettings as e6, type RadioGroup as e7, type RadioGroupOption as e8, type CustomOption as e9, type FileType as eA, type FileUpload as eB, type Signature as eC, type ProductCheckboxGroup as eD, type ProductCheckboxGroupOption as eE, type DonationInput as eF, type DonationInputOption as eG, type PaymentInput as eH, type FixedPayment as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type Repeater as eO, type FormLayout as eP, type BreakPoint as eQ, type ItemLayout as eR, type ItemLayoutItemOneOf as eS, type Group as eT, type Margin as eU, type Section as eV, type Appointment as eW, type AppointmentFormatInfoOneOf as eX, type Location as eY, type LocationLocationInfoOneOf as eZ, type InPersonOptions as e_, type Dropdown as ea, type DropdownOption as eb, type DateTimeInput as ec, type PhoneInput as ed, type DateInput as ee, type TimeInput as ef, type DatePicker as eg, type ServicesDropdown as eh, type ServiceOption as ei, type Password as ej, type NumberType as ek, type NumberInput as el, type RatingInput as em, type BooleanType as en, type Checkbox as eo, type ArrayType as ep, type ObjectType as eq, type PropertiesType as er, type PropertiesTypePropertiesTypeOptionsOneOf as es, type ArrayItems as et, type ArrayItemsItemTypeOptionsOneOf as eu, type CheckboxGroup as ev, type Option as ew, type ComponentsTags as ex, type TagsOption as ey, type ServicesCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type RuleFormOverride as f$, type PhoneOptions as f0, type FormFieldContactInfo as f1, type FormFieldContactInfoAdditionalInfoOneOf as f2, type EmailInfo as f3, type PhoneInfo as f4, type AddressInfo as f5, type CustomFieldInfo as f6, type SubscriptionInfo as f7, type _String as f8, type _StringComponentTypeOptionsOneOf as f9, type UpsertContact as fA, type V4FormFieldContactInfo as fB, type V4FormFieldContactInfoAdditionalInfoOneOf as fC, type FormFieldContactInfoEmailInfo as fD, type FormFieldContactInfoPhoneInfo as fE, type FormFieldContactInfoAddressInfo as fF, type FormFieldContactInfoCustomFieldInfo as fG, type FormFieldContactInfoSubscriptionInfo as fH, type NestedForm as fI, type LimitationRule as fJ, type RequiredIndicatorProperties as fK, type SubmitSettings as fL, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fM, type ThankYouMessageOptions as fN, type RedirectOptions as fO, type FieldGroup as fP, type Rule as fQ, type RequiredOptions as fR, type HiddenOptions as fS, type AllowedValuesOptions as fT, type FieldOverride as fU, type FieldOverridePropertyTypeOptionsOneOf as fV, type ConditionNode as fW, type ConditionNodeNodeOneOf as fX, type AndCondition as fY, type OrCondition as fZ, type Condition as f_, type _Number as fa, type _NumberComponentTypeOptionsOneOf as fb, type _Boolean as fc, type _BooleanComponentTypeOptionsOneOf as fd, type _Array as fe, type _ArrayComponentTypeOptionsOneOf as ff, type _Object as fg, type WixFile as fh, type WixFileComponentTypeOptionsOneOf as fi, type Payment as fj, type PaymentComponentTypeOptionsOneOf as fk, type Scheduling as fl, type SchedulingComponentTypeOptionsOneOf as fm, type Address as fn, type AddressComponentTypeOptionsOneOf as fo, type ObjectArray as fp, type ObjectArrayComponentTypeOptionsOneOf as fq, type DisplayField as fr, type DisplayFieldDisplayFieldTypeOptionsOneOf as fs, type RichContentOptions as ft, type PageNavigationOptions as fu, type Step as fv, type FormRule as fw, type FormOverride as fx, type FormProperties as fy, type PostSubmissionTriggers as fz, type BulkDeleteSubmissionResponse as g, type CursorSearchPagingMethodOneOf as g$, type RuleFormOverrideEntityTypeOptionsOneOf as g0, type Tags as g1, type TagsTagList as g2, type CreateCheckoutFromSubmissionResponse as g3, type Checkout as g4, type IsFormSubmittableRequest as g5, type IsFormSubmittableResponse as g6, type DomainEvent as g7, type DomainEventBodyOneOf as g8, type EntityCreatedEvent as g9, type BulkCreateSubmissionBySubmitterResponse as gA, type GetSubmissionRequest as gB, type GetSubmissionResponse as gC, type GetSubmissionByCheckoutIdRequest as gD, type GetSubmissionByCheckoutIdResponse as gE, type UpdateSubmissionRequest as gF, type UpdateSubmissionResponse as gG, type ConfirmSubmissionRequest as gH, type DeleteSubmissionRequest as gI, type DeleteSubmissionResponse as gJ, type BulkDeleteSubmissionRequest as gK, type BulkDeleteSubmissionResult as gL, type RestoreSubmissionFromTrashBinRequest as gM, type RemoveSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinResponse as gO, type BulkRemoveSubmissionFromTrashBinRequest as gP, type BulkRemoveSubmissionFromTrashBinResult as gQ, type ListDeletedSubmissionsRequest as gR, type CursorPaging as gS, type CursorPagingMetadata as gT, type Cursors as gU, type GetDeletedSubmissionRequest as gV, type QuerySubmissionRequest as gW, type CursorQueryPagingMethodOneOf as gX, type Sorting as gY, type SearchSubmissionsByNamespaceRequest as gZ, type CursorSearch as g_, type RestoreInfo as ga, type EntityUpdatedEvent as gb, type EntityDeletedEvent as gc, type ActionEvent as gd, type Empty as ge, type MessageEnvelope as gf, type IdentificationData as gg, type IdentificationDataIdOneOf as gh, type UpsertContactFromSubmissionRequest as gi, type SubmitContactResponse as gj, type CreateSubmissionRequest as gk, type CreateSubmissionResponse as gl, type SubmissionValidationErrorsDetails as gm, type ValidationError as gn, type CreateSubmissionForMigrationRequest as go, type CreateSubmissionForMigrationResponse as gp, type BulkCreateSubmissionsForMigrationRequest as gq, type BulkCreateSubmissionsForMigrationResponse as gr, type BulkSubmissionResult as gs, type ItemMetadata as gt, type ApplicationError as gu, type BulkActionMetadata as gv, type CreateSubmissionBySubmitterRequest as gw, type CreateSubmissionBySubmitterResponse as gx, type BulkCreateSubmissionBySubmitterRequest as gy, type BulkCreateSubmissionBySubmitterData as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type GIFTypeWithLiterals as h$, type SearchDetails as h0, type SearchSubmissionsByNamespaceForExportRequest as h1, type SearchSubmissionsByNamespaceForExportResponse as h2, type QuerySubmissionsByNamespaceRequest as h3, type QuerySubmissionsByNamespaceResponse as h4, type QuerySubmissionsByNamespaceForExportRequest as h5, type QuerySubmissionsByNamespaceForExportResponse as h6, type CountSubmissionsByFilterRequest as h7, type FormSubmissionsCount as h8, type CountSubmissionsRequest as h9, type EventMetadata as hA, type FormSubmissionSearchSpec as hB, type SubmissionsQueryResult as hC, type FormSubmissionQuerySpec as hD, type SubmissionStatusWithLiterals as hE, type OptInLevelWithLiterals as hF, type StringTypeFormatEnumFormatWithLiterals as hG, type ValidationFormatWithLiterals as hH, type ProductTypeWithLiterals as hI, type PriceTypeWithLiterals as hJ, type FieldTypeWithLiterals as hK, type FormatEnumFormatWithLiterals as hL, type StringComponentTypeWithLiterals as hM, type NodeTypeWithLiterals as hN, type WidthTypeWithLiterals as hO, type PluginContainerDataAlignmentWithLiterals as hP, type ButtonDataTypeWithLiterals as hQ, type LinkTargetWithLiterals as hR, type TextAlignmentWithLiterals as hS, type LineStyleWithLiterals as hT, type WidthWithLiterals as hU, type DividerDataAlignmentWithLiterals as hV, type ViewModeWithLiterals as hW, type LayoutTypeWithLiterals as hX, type OrientationWithLiterals as hY, type CropWithLiterals as hZ, type ThumbnailsAlignmentWithLiterals as h_, type CountDeletedSubmissionsRequest as ha, type FormDeletedSubmissionsCount as hb, type GetMediaUploadURLRequest as hc, type BulkMarkSubmissionsAsSeenRequest as hd, type GetSubmissionDownloadUrlRequest as he, type SubmissionDocument as hf, type SubmissionDocumentDocumentOneOf as hg, type DocumentReady as hh, type DownloadSubmissionRequest as hi, type HeadersEntry as hj, type GetFormattedSubmissionRequest as hk, type FormattedSubmission as hl, type ListFormattedSubmissionsRequest as hm, type ListFormattedSubmissionsResponse as hn, type FormattedFormSubmission as ho, type UpdateExtendedFieldsRequest as hp, type BulkUpdateFormSubmissionTagsRequest as hq, type BulkUpdateFormSubmissionTagsResult as hr, type BulkUpdateFormSubmissionTagsByFilterRequest as hs, type ValidateFormSubmissionRequest as ht, type FieldViolation as hu, type FieldViolationErrorDataOneOf as hv, type SubmissionValidationErrors as hw, type SubmissionValidationError as hx, type SubmissionValidationErrorErrorMessageOneOf as hy, type BaseEventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type TargetWithLiterals as i$, type SourceWithLiterals as i0, type StylesPositionWithLiterals as i1, type MapTypeWithLiterals as i2, type ViewRoleWithLiterals as i3, type VoteRoleWithLiterals as i4, type PollLayoutTypeWithLiterals as i5, type PollLayoutDirectionWithLiterals as i6, type BackgroundTypeWithLiterals as i7, type DecorationTypeWithLiterals as i8, type FontTypeWithLiterals as i9, type PropertiesTypeEnumWithLiterals as iA, type ArrayComponentTypeWithLiterals as iB, type WixFileComponentTypeWithLiterals as iC, type UploadFileFormatWithLiterals as iD, type PaymentComponentTypeWithLiterals as iE, type ComponentTypeWithLiterals as iF, type TypeWithLiterals as iG, type ObjectArrayComponentTypeWithLiterals as iH, type SchedulingComponentTypeWithLiterals as iI, type FormatWithLiterals as iJ, type InputTypeWithLiterals as iK, type EmailInfoTagWithLiterals as iL, type PhoneInfoTagWithLiterals as iM, type TagWithLiterals as iN, type ConfirmationLevelWithLiterals as iO, type ContactFieldWithLiterals as iP, type DisplayFieldTypeWithLiterals as iQ, type OverrideEntityTypeWithLiterals as iR, type KindWithLiterals as iS, type FormFieldContactInfoEmailInfoTagWithLiterals as iT, type FormFieldContactInfoPhoneInfoTagWithLiterals as iU, type AddressInfoTagWithLiterals as iV, type SubscriptionInfoOptInLevelWithLiterals as iW, type FormFieldContactInfoContactFieldWithLiterals as iX, type SpamFilterProtectionLevelWithLiterals as iY, type RequiredIndicatorWithLiterals as iZ, type RequiredIndicatorPlacementWithLiterals as i_, type PositionWithLiterals as ia, type AspectRatioWithLiterals as ib, type ResizingWithLiterals as ic, type PlacementWithLiterals as id, type CardStylesTypeWithLiterals as ie, type CardStylesAlignmentWithLiterals as ig, type LayoutWithLiterals as ih, type AppTypeWithLiterals as ii, type InitialExpandedItemsWithLiterals as ij, type DirectionWithLiterals as ik, type VerticalAlignmentWithLiterals as il, type NullValueWithLiterals as im, type ScalingWithLiterals as io, type LayoutDataImagePositionWithLiterals as ip, type VerticalAlignmentAlignmentWithLiterals as iq, type ResponsivenessBehaviourWithLiterals as ir, type ImagePositionWithLiterals as is, type AlignmentWithLiterals as it, type ImageFitWithLiterals as iu, type NumberOfColumnsWithLiterals as iv, type FirstDayOfWeekWithLiterals as iw, type NumberComponentTypeWithLiterals as ix, type BooleanComponentTypeWithLiterals as iy, type ItemTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SubmitSuccessActionWithLiterals as j0, type ChangeablePropertyWithLiterals as j1, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j2, type OperatorWithLiterals as j3, type WebhookIdentityTypeWithLiterals as j4, type IdentityTypeWithLiterals as j5, type ErrorTypeWithLiterals as j6, type SortOrderWithLiterals as j7, type ModeWithLiterals as j8, type StatusWithLiterals as j9, countDeletedSubmissions as jA, getMediaUploadUrl as jB, bulkMarkSubmissionsAsSeen as jC, getSubmissionDownloadUrl as jD, downloadSubmission as jE, getFormattedSubmission as jF, updateExtendedFields as jG, bulkUpdateFormSubmissionTags as jH, bulkUpdateFormSubmissionTagsByFilter as jI, validateFormSubmission as jJ, type SubmissionErrorTypeWithLiterals as ja, type CommonSearchWithEntityContext as jb, type CommonQueryWithEntityContext as jc, onSubmissionCreated as jd, onSubmissionDeleted as je, onSubmissionRemovedSubmissionFromTrash as jf, onSubmissionStatusUpdated as jg, onSubmissionContactMapped as jh, onSubmissionContactMappingSkipped as ji, onSubmissionUpdated as jj, upsertContactFromSubmission as jk, createSubmission as jl, getSubmission as jm, updateSubmission as jn, confirmSubmission as jo, deleteSubmission as jp, bulkDeleteSubmission as jq, restoreSubmissionFromTrashBin as jr, removeSubmissionFromTrashBin as js, bulkRemoveSubmissionFromTrashBin as jt, listDeletedSubmissions as ju, getDeletedSubmission as jv, querySubmission as jw, querySubmissionsByNamespace as jx, countSubmissionsByFilter as jy, countSubmissions as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as QuerySubmissionsByNamespaceOptions, Y as typedQuerySubmissionsByNamespace, Z as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-BvTxsD4O.js';
3
- export { gb as ActionEvent, fl as Address, fm as AddressComponentTypeOptionsOneOf, f3 as AddressInfo, bd as AddressInfoTag, iS as AddressInfoTagWithLiterals, eI as AddressLine2, aN as Alignment, iq as AlignmentWithLiterals, fR as AllowedValuesOptions, ds as AnchorData, fW as AndCondition, dz as AppEmbedData, dA as AppEmbedDataAppDataOneOf, aD as AppType, ie as AppTypeWithLiterals, gs as ApplicationError, eU as Appointment, eV as AppointmentFormatInfoOneOf, aV as ArrayComponentType, iy as ArrayComponentTypeWithLiterals, c0 as ArrayErrorMessages, er as ArrayItems, es as ArrayItemsItemTypeOptionsOneOf, en as ArrayType, b_ as ArrayTypeArrayItems, b$ as ArrayTypeArrayItemsItemsOneOf, ax as AspectRatio, i8 as AspectRatioWithLiterals, dU as AudioData, dh as Background, di as BackgroundBackgroundOneOf, d_ as BackgroundImage, at as BackgroundType, i4 as BackgroundTypeWithLiterals, hx as BaseEventMetadata, dX as BlockquoteData, dB as BookingData, aS as BooleanComponentType, iv as BooleanComponentTypeWithLiterals, bU as BooleanErrorMessages, el as BooleanType, cx as Border, dR as BorderColors, dS as BorderWidths, eO as BreakPoint, gt as BulkActionMetadata, gx as BulkCreateSubmissionBySubmitterData, gw as BulkCreateSubmissionBySubmitterRequest, gy as BulkCreateSubmissionBySubmitterResponse, go as BulkCreateSubmissionsForMigrationRequest, gp as BulkCreateSubmissionsForMigrationResponse, gI as BulkDeleteSubmissionRequest, gJ as BulkDeleteSubmissionResult, hb as BulkMarkSubmissionsAsSeenRequest, gN as BulkRemoveSubmissionFromTrashBinRequest, gO as BulkRemoveSubmissionFromTrashBinResult, gq as BulkSubmissionResult, hq as BulkUpdateFormSubmissionTagsByFilterRequest, ho as BulkUpdateFormSubmissionTagsRequest, hp as BulkUpdateFormSubmissionTagsResult, dW as BulletedListData, cw as ButtonData, aa as ButtonDataType, hN as ButtonDataTypeWithLiterals, dD as ButtonStyles, dY as CaptionData, dG as CardStyles, aB as CardStylesAlignment, ic as CardStylesAlignmentWithLiterals, aA as CardStylesType, ib as CardStylesTypeWithLiterals, dQ as CellStyle, bl as ChangeableProperty, i_ as ChangeablePropertyWithLiterals, em as Checkbox, et as CheckboxGroup, g2 as Checkout, cI as CodeBlockData, dM as CollapsibleListData, dt as ColorData, cy as Colors, j8 as CommonSearchWithEntityContext, aZ as ComponentType, iC as ComponentTypeWithLiterals, ev as ComponentsTags, fY as Condition, fU as ConditionNode, fV as ConditionNodeNodeOneOf, gF as ConfirmSubmissionRequest, b6 as ConfirmationLevel, iL as ConfirmationLevelWithLiterals, b7 as ContactField, iM as ContactFieldWithLiterals, h8 as CountDeletedSubmissionsRequest, h5 as CountSubmissionsByFilterRequest, h7 as CountSubmissionsRequest, bG as CreateCheckoutFromSubmissionRequest, bH as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g1 as CreateCheckoutFromSubmissionResponse, gu as CreateSubmissionBySubmitterRequest, gv as CreateSubmissionBySubmitterResponse, gm as CreateSubmissionForMigrationRequest, gn as CreateSubmissionForMigrationResponse, gi as CreateSubmissionRequest, gj as CreateSubmissionResponse, aj as Crop, hW as CropWithLiterals, gQ as CursorPaging, gR as CursorPagingMetadata, gV as CursorQueryPagingMethodOneOf, gY as CursorSearch, gZ as CursorSearchPagingMethodOneOf, gS as Cursors, f4 as CustomFieldInfo, e8 as CustomOption, cg as DataExtensionsDetails, ed as DateInput, ef as DatePicker, co as DateTimeConstraints, eb as DateTimeInput, dq as Decoration, dr as DecorationDataOneOf, au as DecorationType, i5 as DecorationTypeWithLiterals, eJ as DefaultCountryConfig, eK as DefaultCountryConfigOptionsOneOf, gG as DeleteSubmissionRequest, gH as DeleteSubmissionResponse, dn as Design, dO as Dimensions, aF as Direction, ih as DirectionWithLiterals, fp as DisplayField, fq as DisplayFieldDisplayFieldTypeOptionsOneOf, b8 as DisplayFieldType, iN as DisplayFieldTypeWithLiterals, cK as DividerData, af as DividerDataAlignment, hS as DividerDataAlignmentWithLiterals, hf as DocumentReady, e1 as DocumentStyle, g5 as DomainEvent, g6 as DomainEventBodyOneOf, eD as DonationInput, eE as DonationInputOption, hg as DownloadSubmissionRequest, e9 as Dropdown, ea as DropdownOption, c6 as DynamicPriceOptions, f1 as EmailInfo, b3 as EmailInfoTag, iI as EmailInfoTagWithLiterals, dK as EmbedData, gc as Empty, g7 as EntityCreatedEvent, ga as EntityDeletedEvent, g9 as EntityUpdatedEvent, bq as ErrorType, j3 as ErrorTypeWithLiterals, dC as EventData, hy as EventMetadata, bx as ExtendedFields, ci as Field, cj as FieldFieldTypeOptionsOneOf, fN as FieldGroup, fS as FieldOverride, fT as FieldOverridePropertyTypeOptionsOneOf, ca as FieldOverrides, a4 as FieldType, hH as FieldTypeWithLiterals, hs as FieldViolation, ht as FieldViolationErrorDataOneOf, cb as FieldsOverrides, eL as FieldsSettings, cL as FileData, cM as FileSource, cN as FileSourceDataOneOf, ey as FileType, ez as FileUpload, aQ as FirstDayOfWeek, it as FirstDayOfWeekWithLiterals, eG as FixedPayment, c5 as FixedPriceOptions, dy as FontFamilyData, dw as FontSizeData, av as FontType, i6 as FontTypeWithLiterals, bI as Form, h9 as FormDeletedSubmissionsCount, bJ as FormField, bV as FormFieldArrayType, bT as FormFieldBooleanType, e$ as FormFieldContactInfo, f0 as FormFieldContactInfoAdditionalInfoOneOf, fD as FormFieldContactInfoAddressInfo, bf as FormFieldContactInfoContactField, iU as FormFieldContactInfoContactFieldWithLiterals, fE as FormFieldContactInfoCustomFieldInfo, fB as FormFieldContactInfoEmailInfo, bb as FormFieldContactInfoEmailInfoTag, iQ as FormFieldContactInfoEmailInfoTagWithLiterals, fC as FormFieldContactInfoPhoneInfo, bc as FormFieldContactInfoPhoneInfoTag, iR as FormFieldContactInfoPhoneInfoTagWithLiterals, fF as FormFieldContactInfoSubscriptionInfo, bQ as FormFieldNumberType, bW as FormFieldObjectType, bK as FormFieldStringType, bL as FormFieldStringTypeFormatOptionsOneOf, eN as FormLayout, fv as FormOverride, fw as FormProperties, fu as FormRule, hz as FormSubmissionSearchSpec, bB as FormSubmissionStatusUpdatedEvent, h6 as FormSubmissionsCount, b1 as Format, a5 as FormatEnumFormat, hI as FormatEnumFormatWithLiterals, iG as FormatWithLiterals, hm as FormattedFormSubmission, hj as FormattedSubmission, c_ as GIF, cZ as GIFData, al as GIFType, hY as GIFTypeWithLiterals, cP as GalleryData, cV as GalleryOptions, cW as GalleryOptionsLayout, gT as GetDeletedSubmissionRequest, hi as GetFormattedSubmissionRequest, ha as GetMediaUploadURLRequest, gB as GetSubmissionByCheckoutIdRequest, gC as GetSubmissionByCheckoutIdResponse, hc as GetSubmissionDownloadUrlRequest, gz as GetSubmissionRequest, gA as GetSubmissionResponse, dg as Gradient, eR as Group, d0 as HTMLData, d1 as HTMLDataDataOneOf, hh as HeadersEntry, c$ as HeadingData, cD as Height, fQ as HiddenOptions, ge as IdentificationData, gf as IdentificationDataIdOneOf, bp as IdentityType, j2 as IdentityTypeWithLiterals, cR as Image, d2 as ImageData, d4 as ImageDataStyles, aO as ImageFit, ir as ImageFitWithLiterals, aM as ImagePosition, ip as ImagePositionWithLiterals, dE as ImageStyles, eY as InPersonOptions, aE as InitialExpandedItems, ig as InitialExpandedItemsWithLiterals, ck as InputField, cl as InputFieldInputTypeOptionsOneOf, b2 as InputType, iH as InputTypeWithLiterals, bS as IntegerType, g3 as IsFormSubmittableRequest, g4 as IsFormSubmittableResponse, cT as Item, cU as ItemDataOneOf, eP as ItemLayout, eQ as ItemLayoutItemOneOf, gr as ItemMetadata, cX as ItemStyle, aT as ItemType, iw as ItemTypeWithLiterals, ba as Kind, iP as KindWithLiterals, aC as Layout, d$ as LayoutCellData, dZ as LayoutData, aJ as LayoutDataImagePosition, il as LayoutDataImagePositionWithLiterals, ah as LayoutType, hU as LayoutTypeWithLiterals, id as LayoutWithLiterals, fH as LimitationRule, ad as LineStyle, hQ as LineStyleWithLiterals, cF as Link, du as LinkData, cG as LinkDataOneOf, d5 as LinkPreviewData, d6 as LinkPreviewDataStyles, ab as LinkTarget, hO as LinkTargetWithLiterals, gP as ListDeletedSubmissionsRequest, hk as ListFormattedSubmissionsRequest, hl as ListFormattedSubmissionsResponse, dT as ListValue, eW as Location, eX as LocationLocationInfoOneOf, d7 as MapData, d8 as MapSettings, ao as MapType, h$ as MapTypeWithLiterals, eS as Margin, bE as MarketingSubscriptionDetails, cQ as Media, e3 as MediaItem, e4 as MediaItemMediaOneOf, e5 as MediaSettings, dv as MentionData, gd as MessageEnvelope, e0 as Metadata, bs as Mode, j5 as ModeWithLiterals, eH as MultilineAddress, c9 as MultilineAddressValidation, fG as NestedForm, cd as NestedFormFieldOverrides, ch as NestedFormOverrides, ct as Node, cu as NodeDataOneOf, cv as NodeStyle, a7 as NodeType, hK as NodeTypeWithLiterals, aH as NullValue, ij as NullValueWithLiterals, aR as NumberComponentType, iu as NumberComponentTypeWithLiterals, bR as NumberErrorMessages, ej as NumberInput, aP as NumberOfColumns, is as NumberOfColumnsWithLiterals, ei as NumberType, fn as ObjectArray, a$ as ObjectArrayComponentType, fo as ObjectArrayComponentTypeOptionsOneOf, iE as ObjectArrayComponentTypeWithLiterals, cc as ObjectArrayType, bZ as ObjectErrorMessages, eo as ObjectType, bX as ObjectTypePropertiesType, bY as ObjectTypePropertiesTypePropertiesTypeOneOf, dL as Oembed, bn as Operator, j0 as OperatorWithLiterals, $ as OptInLevel, hC as OptInLevelWithLiterals, eu as Option, dk as OptionDesign, df as OptionLayout, fX as OrCondition, by as OrderDetails, dV as OrderedListData, ai as Orientation, hV as OrientationWithLiterals, b9 as OverrideEntityType, bm as OverrideEntityTypeEnumOverrideEntityType, i$ as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iO as OverrideEntityTypeWithLiterals, cO as PDFSettings, fs as PageNavigationOptions, d9 as ParagraphData, fh as Payment, aY as PaymentComponentType, fi as PaymentComponentTypeOptionsOneOf, iB as PaymentComponentTypeWithLiterals, eF as PaymentInput, c3 as PaymentType, db as Permissions, cp as PhoneConstraints, f2 as PhoneInfo, b4 as PhoneInfoTag, iJ as PhoneInfoTagWithLiterals, ec as PhoneInput, e_ as PhoneOptions, az as Placement, ia as PlacementWithLiterals, dJ as PlaybackOptions, cz as PluginContainerData, a9 as PluginContainerDataAlignment, hM as PluginContainerDataAlignmentWithLiterals, cA as PluginContainerDataWidth, cB as PluginContainerDataWidthDataOneOf, dl as Poll, da as PollData, dm as PollDataLayout, dj as PollDesign, de as PollLayout, as as PollLayoutDirection, i3 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, i2 as PollLayoutTypeWithLiterals, dc as PollOption, aw as Position, i7 as PositionWithLiterals, fx as PostSubmissionTriggers, c1 as PredefinedValidation, c2 as PredefinedValidationFormatOptionsOneOf, a3 as PriceType, hG as PriceTypeWithLiterals, dH as PricingData, c7 as Product, eB as ProductCheckboxGroup, eC as ProductCheckboxGroupOption, c8 as ProductPriceOptionsOneOf, a2 as ProductType, hF as ProductTypeWithLiterals, ep as PropertiesType, aU as PropertiesTypeEnum, ix as PropertiesTypeEnumWithLiterals, eq as PropertiesTypePropertiesTypeOptionsOneOf, bz as PublicTags, c4 as QuantityLimit, gU as QuerySubmissionRequest, h3 as QuerySubmissionsByNamespaceForExportRequest, h4 as QuerySubmissionsByNamespaceForExportResponse, h1 as QuerySubmissionsByNamespaceRequest, h2 as QuerySubmissionsByNamespaceResponse, e6 as RadioGroup, e7 as RadioGroupOption, ek as RatingInput, fM as RedirectOptions, cH as Rel, gL as RemoveSubmissionFromTrashBinRequest, gM as RemoveSubmissionFromTrashBinResponse, bC as RemovedSubmissionFromTrash, eM as Repeater, bh as RequiredIndicator, bi as RequiredIndicatorPlacement, iX as RequiredIndicatorPlacementWithLiterals, fI as RequiredIndicatorProperties, iW as RequiredIndicatorWithLiterals, fP as RequiredOptions, ay as Resizing, i9 as ResizingWithLiterals, aL as ResponsivenessBehaviour, io as ResponsivenessBehaviourWithLiterals, g8 as RestoreInfo, gK as RestoreSubmissionFromTrashBinRequest, dF as RibbonStyles, cs as RichContent, fr as RichContentOptions, fO as Rule, fZ as RuleFormOverride, f_ as RuleFormOverrideEntityTypeOptionsOneOf, aI as Scaling, ik as ScalingWithLiterals, fj as Scheduling, b0 as SchedulingComponentType, fk as SchedulingComponentTypeOptionsOneOf, iF as SchedulingComponentTypeWithLiterals, g_ as SearchDetails, g$ as SearchSubmissionsByNamespaceForExportRequest, h0 as SearchSubmissionsByNamespaceForExportResponse, gX as SearchSubmissionsByNamespaceRequest, eT as Section, eh as ServiceOption, ex as ServicesCheckboxGroup, eg as ServicesDropdown, dd as Settings, eA as Signature, br as SortOrder, j4 as SortOrderWithLiterals, gW as Sorting, am as Source, hZ as SourceWithLiterals, bg as SpamFilterProtectionLevel, iV as SpamFilterProtectionLevelWithLiterals, cC as Spoiler, dx as SpoilerData, bt as Status, j6 as StatusWithLiterals, ft as Step, a6 as StringComponentType, hJ as StringComponentTypeWithLiterals, bM as StringErrorMessages, cm as StringType, bN as StringTypeDateTimeConstraints, a0 as StringTypeFormatEnumFormat, hD as StringTypeFormatEnumFormatWithLiterals, cn as StringTypeFormatOptionsOneOf, bO as StringTypePhoneConstraints, bP as StringTypeValidationMessages, cE as Styles, d3 as StylesBorder, an as StylesPosition, h_ as StylesPositionWithLiterals, bD as SubmissionContactMapped, bF as SubmissionContactMappingSkipped, hd as SubmissionDocument, he as SubmissionDocumentDocumentOneOf, bu as SubmissionErrorType, j7 as SubmissionErrorTypeWithLiterals, _ as SubmissionStatus, hB as SubmissionStatusWithLiterals, hv as SubmissionValidationError, hw as SubmissionValidationErrorErrorMessageOneOf, hu as SubmissionValidationErrors, gk as SubmissionValidationErrorsDetails, hA as SubmissionsQueryResult, gh as SubmitContactResponse, fJ as SubmitSettings, fK as SubmitSettingsSubmitSuccessActionOptionsOneOf, bk as SubmitSuccessAction, iZ as SubmitSuccessActionWithLiterals, bv as Submitter, bw as SubmitterSubmitterOneOf, f5 as SubscriptionInfo, be as SubscriptionInfoOptInLevel, iT as SubscriptionInfoOptInLevelWithLiterals, dP as TableCellData, dN as TableData, b5 as Tag, bA as TagList, iK as TagWithLiterals, f$ as Tags, ew as TagsOption, g0 as TagsTagList, bj as Target, iY as TargetWithLiterals, ac as TextAlignment, hP as TextAlignmentWithLiterals, dp as TextData, cr as TextInput, e2 as TextNodeStyle, cJ as TextStyle, fL as ThankYouMessageOptions, cY as Thumbnails, ak as ThumbnailsAlignment, hX as ThumbnailsAlignmentWithLiterals, ee as TimeInput, a_ as Type, iD as TypeWithLiterals, hn as UpdateExtendedFieldsRequest, gD as UpdateSubmissionRequest, gE as UpdateSubmissionResponse, aX as UploadFileFormat, iA as UploadFileFormatWithLiterals, fy as UpsertContact, gg as UpsertContactFromSubmissionRequest, fz as V4FormFieldContactInfo, fA as V4FormFieldContactInfoAdditionalInfoOneOf, hr as ValidateFormSubmissionRequest, ce as Validation, gl as ValidationError, a1 as ValidationFormat, hE as ValidationFormatWithLiterals, cq as ValidationMessages, cf as ValidationValidationOneOf, aG as VerticalAlignment, aK as VerticalAlignmentAlignment, im as VerticalAlignmentAlignmentWithLiterals, ii as VerticalAlignmentWithLiterals, cS as Video, eZ as VideoConferenceOptions, dI as VideoData, ag as ViewMode, hT as ViewModeWithLiterals, ap as ViewRole, i0 as ViewRoleWithLiterals, aq as VoteRole, i1 as VoteRoleWithLiterals, bo as WebhookIdentityType, j1 as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, hL as WidthTypeWithLiterals, hR as WidthWithLiterals, ff as WixFile, aW as WixFileComponentType, fg as WixFileComponentTypeOptionsOneOf, iz as WixFileComponentTypeWithLiterals, fc as _Array, fd as _ArrayComponentTypeOptionsOneOf, fa as _Boolean, fb as _BooleanComponentTypeOptionsOneOf, f8 as _Number, f9 as _NumberComponentTypeOptionsOneOf, fe as _Object, f6 as _String, f7 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BvTxsD4O.js';
2
+ import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-IKRWXge_.js';
3
+ export { gd as ActionEvent, fn as Address, fo as AddressComponentTypeOptionsOneOf, f5 as AddressInfo, be as AddressInfoTag, iV as AddressInfoTagWithLiterals, eK as AddressLine2, aO as Alignment, it as AlignmentWithLiterals, fT as AllowedValuesOptions, dt as AnchorData, fY as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, aE as AppType, ii as AppTypeWithLiterals, gu as ApplicationError, eW as Appointment, eX as AppointmentFormatInfoOneOf, aW as ArrayComponentType, iB as ArrayComponentTypeWithLiterals, c1 as ArrayErrorMessages, et as ArrayItems, eu as ArrayItemsItemTypeOptionsOneOf, ep as ArrayType, b$ as ArrayTypeArrayItems, c0 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ib as AspectRatioWithLiterals, dV as AudioData, di as Background, dj as BackgroundBackgroundOneOf, d$ as BackgroundImage, au as BackgroundType, i7 as BackgroundTypeWithLiterals, hz as BaseEventMetadata, dY as BlockquoteData, dC as BookingData, aT as BooleanComponentType, iy as BooleanComponentTypeWithLiterals, bV as BooleanErrorMessages, en as BooleanType, cy as Border, dS as BorderColors, dT as BorderWidths, eQ as BreakPoint, gv as BulkActionMetadata, gz as BulkCreateSubmissionBySubmitterData, gy as BulkCreateSubmissionBySubmitterRequest, gA as BulkCreateSubmissionBySubmitterResponse, gq as BulkCreateSubmissionsForMigrationRequest, gr as BulkCreateSubmissionsForMigrationResponse, gK as BulkDeleteSubmissionRequest, gL as BulkDeleteSubmissionResult, hd as BulkMarkSubmissionsAsSeenRequest, gP as BulkRemoveSubmissionFromTrashBinRequest, gQ as BulkRemoveSubmissionFromTrashBinResult, gs as BulkSubmissionResult, hs as BulkUpdateFormSubmissionTagsByFilterRequest, hq as BulkUpdateFormSubmissionTagsRequest, hr as BulkUpdateFormSubmissionTagsResult, dX as BulletedListData, cx as ButtonData, ab as ButtonDataType, hQ as ButtonDataTypeWithLiterals, dE as ButtonStyles, dZ as CaptionData, dH as CardStyles, aC as CardStylesAlignment, ig as CardStylesAlignmentWithLiterals, aB as CardStylesType, ie as CardStylesTypeWithLiterals, dR as CellStyle, bm as ChangeableProperty, j1 as ChangeablePropertyWithLiterals, eo as Checkbox, ev as CheckboxGroup, g4 as Checkout, cJ as CodeBlockData, dN as CollapsibleListData, du as ColorData, cz as Colors, jc as CommonQueryWithEntityContext, jb as CommonSearchWithEntityContext, a_ as ComponentType, iF as ComponentTypeWithLiterals, ex as ComponentsTags, f_ as Condition, fW as ConditionNode, fX as ConditionNodeNodeOneOf, gH as ConfirmSubmissionRequest, b7 as ConfirmationLevel, iO as ConfirmationLevelWithLiterals, b8 as ContactField, iP as ContactFieldWithLiterals, ha as CountDeletedSubmissionsRequest, h7 as CountSubmissionsByFilterRequest, h9 as CountSubmissionsRequest, bH as CreateCheckoutFromSubmissionRequest, bI as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g3 as CreateCheckoutFromSubmissionResponse, gw as CreateSubmissionBySubmitterRequest, gx as CreateSubmissionBySubmitterResponse, go as CreateSubmissionForMigrationRequest, gp as CreateSubmissionForMigrationResponse, gk as CreateSubmissionRequest, gl as CreateSubmissionResponse, ak as Crop, hZ as CropWithLiterals, gS as CursorPaging, gT as CursorPagingMetadata, gX as CursorQueryPagingMethodOneOf, g_ as CursorSearch, g$ as CursorSearchPagingMethodOneOf, gU as Cursors, f6 as CustomFieldInfo, e9 as CustomOption, ch as DataExtensionsDetails, ee as DateInput, eg as DatePicker, cp as DateTimeConstraints, ec as DateTimeInput, dr as Decoration, ds as DecorationDataOneOf, av as DecorationType, i8 as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, gI as DeleteSubmissionRequest, gJ as DeleteSubmissionResponse, dp as Design, dP as Dimensions, aG as Direction, ik as DirectionWithLiterals, fr as DisplayField, fs as DisplayFieldDisplayFieldTypeOptionsOneOf, b9 as DisplayFieldType, iQ as DisplayFieldTypeWithLiterals, cL as DividerData, ag as DividerDataAlignment, hV as DividerDataAlignmentWithLiterals, hh as DocumentReady, e2 as DocumentStyle, g7 as DomainEvent, g8 as DomainEventBodyOneOf, eF as DonationInput, eG as DonationInputOption, hi as DownloadSubmissionRequest, ea as Dropdown, eb as DropdownOption, c7 as DynamicPriceOptions, f3 as EmailInfo, b4 as EmailInfoTag, iL as EmailInfoTagWithLiterals, dL as EmbedData, ge as Empty, g9 as EntityCreatedEvent, gc as EntityDeletedEvent, gb as EntityUpdatedEvent, br as ErrorType, j6 as ErrorTypeWithLiterals, dD as EventData, hA as EventMetadata, by as ExtendedFields, cj as Field, ck as FieldFieldTypeOptionsOneOf, fP as FieldGroup, fU as FieldOverride, fV as FieldOverridePropertyTypeOptionsOneOf, cb as FieldOverrides, a5 as FieldType, hK as FieldTypeWithLiterals, hu as FieldViolation, hv as FieldViolationErrorDataOneOf, cc as FieldsOverrides, eN as FieldsSettings, cM as FileData, cN as FileSource, cO as FileSourceDataOneOf, eA as FileType, eB as FileUpload, aR as FirstDayOfWeek, iw as FirstDayOfWeekWithLiterals, eI as FixedPayment, c6 as FixedPriceOptions, dz as FontFamilyData, dx as FontSizeData, aw as FontType, i9 as FontTypeWithLiterals, bJ as Form, hb as FormDeletedSubmissionsCount, bK as FormField, bW as FormFieldArrayType, bU as FormFieldBooleanType, f1 as FormFieldContactInfo, f2 as FormFieldContactInfoAdditionalInfoOneOf, fF as FormFieldContactInfoAddressInfo, bg as FormFieldContactInfoContactField, iX as FormFieldContactInfoContactFieldWithLiterals, fG as FormFieldContactInfoCustomFieldInfo, fD as FormFieldContactInfoEmailInfo, bc as FormFieldContactInfoEmailInfoTag, iT as FormFieldContactInfoEmailInfoTagWithLiterals, fE as FormFieldContactInfoPhoneInfo, bd as FormFieldContactInfoPhoneInfoTag, iU as FormFieldContactInfoPhoneInfoTagWithLiterals, fH as FormFieldContactInfoSubscriptionInfo, bR as FormFieldNumberType, bX as FormFieldObjectType, bL as FormFieldStringType, bM as FormFieldStringTypeFormatOptionsOneOf, eP as FormLayout, fx as FormOverride, fy as FormProperties, fw as FormRule, hD as FormSubmissionQuerySpec, hB as FormSubmissionSearchSpec, bC as FormSubmissionStatusUpdatedEvent, h8 as FormSubmissionsCount, b2 as Format, a6 as FormatEnumFormat, hL as FormatEnumFormatWithLiterals, iJ as FormatWithLiterals, ho as FormattedFormSubmission, hl as FormattedSubmission, c$ as GIF, c_ as GIFData, am as GIFType, h$ as GIFTypeWithLiterals, cQ as GalleryData, cW as GalleryOptions, cX as GalleryOptionsLayout, gV as GetDeletedSubmissionRequest, hk as GetFormattedSubmissionRequest, hc as GetMediaUploadURLRequest, gD as GetSubmissionByCheckoutIdRequest, gE as GetSubmissionByCheckoutIdResponse, he as GetSubmissionDownloadUrlRequest, gB as GetSubmissionRequest, gC as GetSubmissionResponse, dh as Gradient, eT as Group, d1 as HTMLData, d2 as HTMLDataDataOneOf, hj as HeadersEntry, d0 as HeadingData, cE as Height, fS as HiddenOptions, gg as IdentificationData, gh as IdentificationDataIdOneOf, bq as IdentityType, j5 as IdentityTypeWithLiterals, cS as Image, d3 as ImageData, d5 as ImageDataStyles, aP as ImageFit, iu as ImageFitWithLiterals, aN as ImagePosition, is as ImagePositionWithLiterals, dF as ImageStyles, e_ as InPersonOptions, aF as InitialExpandedItems, ij as InitialExpandedItemsWithLiterals, cl as InputField, cm as InputFieldInputTypeOptionsOneOf, b3 as InputType, iK as InputTypeWithLiterals, bT as IntegerType, g5 as IsFormSubmittableRequest, g6 as IsFormSubmittableResponse, cU as Item, cV as ItemDataOneOf, eR as ItemLayout, eS as ItemLayoutItemOneOf, gt as ItemMetadata, cY as ItemStyle, aU as ItemType, iz as ItemTypeWithLiterals, bb as Kind, iS as KindWithLiterals, aD as Layout, e0 as LayoutCellData, d_ as LayoutData, aK as LayoutDataImagePosition, ip as LayoutDataImagePositionWithLiterals, ai as LayoutType, hX as LayoutTypeWithLiterals, ih as LayoutWithLiterals, fJ as LimitationRule, ae as LineStyle, hT as LineStyleWithLiterals, cG as Link, dv as LinkData, cH as LinkDataOneOf, d6 as LinkPreviewData, d7 as LinkPreviewDataStyles, ac as LinkTarget, hR as LinkTargetWithLiterals, gR as ListDeletedSubmissionsRequest, hm as ListFormattedSubmissionsRequest, hn as ListFormattedSubmissionsResponse, dU as ListValue, eY as Location, eZ as LocationLocationInfoOneOf, d8 as MapData, d9 as MapSettings, ap as MapType, i2 as MapTypeWithLiterals, eU as Margin, bF as MarketingSubscriptionDetails, cR as Media, e4 as MediaItem, e5 as MediaItemMediaOneOf, e6 as MediaSettings, dw as MentionData, gf as MessageEnvelope, e1 as Metadata, bt as Mode, j8 as ModeWithLiterals, eJ as MultilineAddress, ca as MultilineAddressValidation, fI as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cu as Node, cv as NodeDataOneOf, cw as NodeStyle, a8 as NodeType, hN as NodeTypeWithLiterals, aI as NullValue, im as NullValueWithLiterals, aS as NumberComponentType, ix as NumberComponentTypeWithLiterals, bS as NumberErrorMessages, el as NumberInput, aQ as NumberOfColumns, iv as NumberOfColumnsWithLiterals, ek as NumberType, fp as ObjectArray, b0 as ObjectArrayComponentType, fq as ObjectArrayComponentTypeOptionsOneOf, iH as ObjectArrayComponentTypeWithLiterals, cd as ObjectArrayType, b_ as ObjectErrorMessages, eq as ObjectType, bY as ObjectTypePropertiesType, bZ as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bo as Operator, j3 as OperatorWithLiterals, a0 as OptInLevel, hF as OptInLevelWithLiterals, ew as Option, dl as OptionDesign, dg as OptionLayout, fZ as OrCondition, bz as OrderDetails, dW as OrderedListData, aj as Orientation, hY as OrientationWithLiterals, ba as OverrideEntityType, bn as OverrideEntityTypeEnumOverrideEntityType, j2 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iR as OverrideEntityTypeWithLiterals, cP as PDFSettings, fu as PageNavigationOptions, da as ParagraphData, ej as Password, fj as Payment, aZ as PaymentComponentType, fk as PaymentComponentTypeOptionsOneOf, iE as PaymentComponentTypeWithLiterals, eH as PaymentInput, c4 as PaymentType, dc as Permissions, cq as PhoneConstraints, f4 as PhoneInfo, b5 as PhoneInfoTag, iM as PhoneInfoTagWithLiterals, ed as PhoneInput, f0 as PhoneOptions, aA as Placement, id as PlacementWithLiterals, dK as PlaybackOptions, cA as PluginContainerData, aa as PluginContainerDataAlignment, hP as PluginContainerDataAlignmentWithLiterals, cB as PluginContainerDataWidth, cC as PluginContainerDataWidthDataOneOf, dm as Poll, db as PollData, dn as PollDataLayout, dk as PollDesign, df as PollLayout, at as PollLayoutDirection, i6 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i5 as PollLayoutTypeWithLiterals, dd as PollOption, ax as Position, ia as PositionWithLiterals, fz as PostSubmissionTriggers, c2 as PredefinedValidation, c3 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hJ as PriceTypeWithLiterals, dI as PricingData, c8 as Product, eD as ProductCheckboxGroup, eE as ProductCheckboxGroupOption, c9 as ProductPriceOptionsOneOf, a3 as ProductType, hI as ProductTypeWithLiterals, er as PropertiesType, aV as PropertiesTypeEnum, iA as PropertiesTypeEnumWithLiterals, es as PropertiesTypePropertiesTypeOptionsOneOf, bA as PublicTags, c5 as QuantityLimit, gW as QuerySubmissionRequest, h5 as QuerySubmissionsByNamespaceForExportRequest, h6 as QuerySubmissionsByNamespaceForExportResponse, h3 as QuerySubmissionsByNamespaceRequest, h4 as QuerySubmissionsByNamespaceResponse, e7 as RadioGroup, e8 as RadioGroupOption, em as RatingInput, fO as RedirectOptions, cI as Rel, gN as RemoveSubmissionFromTrashBinRequest, gO as RemoveSubmissionFromTrashBinResponse, bD as RemovedSubmissionFromTrash, eO as Repeater, bi as RequiredIndicator, bj as RequiredIndicatorPlacement, i_ as RequiredIndicatorPlacementWithLiterals, fK as RequiredIndicatorProperties, iZ as RequiredIndicatorWithLiterals, fR as RequiredOptions, az as Resizing, ic as ResizingWithLiterals, aM as ResponsivenessBehaviour, ir as ResponsivenessBehaviourWithLiterals, ga as RestoreInfo, gM as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, ct as RichContent, ft as RichContentOptions, fQ as Rule, f$ as RuleFormOverride, g0 as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, io as ScalingWithLiterals, fl as Scheduling, b1 as SchedulingComponentType, fm as SchedulingComponentTypeOptionsOneOf, iI as SchedulingComponentTypeWithLiterals, h0 as SearchDetails, h1 as SearchSubmissionsByNamespaceForExportRequest, h2 as SearchSubmissionsByNamespaceForExportResponse, gZ as SearchSubmissionsByNamespaceRequest, eV as Section, ei as ServiceOption, ez as ServicesCheckboxGroup, eh as ServicesDropdown, de as Settings, eC as Signature, bs as SortOrder, j7 as SortOrderWithLiterals, gY as Sorting, an as Source, i0 as SourceWithLiterals, bh as SpamFilterProtectionLevel, iY as SpamFilterProtectionLevelWithLiterals, cD as Spoiler, dy as SpoilerData, bu as Status, j9 as StatusWithLiterals, fv as Step, a7 as StringComponentType, hM as StringComponentTypeWithLiterals, bN as StringErrorMessages, cn as StringType, bO as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hG as StringTypeFormatEnumFormatWithLiterals, co as StringTypeFormatOptionsOneOf, bP as StringTypePhoneConstraints, bQ as StringTypeValidationMessages, cF as Styles, d4 as StylesBorder, ao as StylesPosition, i1 as StylesPositionWithLiterals, bE as SubmissionContactMapped, bG as SubmissionContactMappingSkipped, hf as SubmissionDocument, hg as SubmissionDocumentDocumentOneOf, bv as SubmissionErrorType, ja as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hE as SubmissionStatusWithLiterals, hx as SubmissionValidationError, hy as SubmissionValidationErrorErrorMessageOneOf, hw as SubmissionValidationErrors, gm as SubmissionValidationErrorsDetails, hC as SubmissionsQueryResult, gj as SubmitContactResponse, fL as SubmitSettings, fM as SubmitSettingsSubmitSuccessActionOptionsOneOf, bl as SubmitSuccessAction, j0 as SubmitSuccessActionWithLiterals, bw as Submitter, bx as SubmitterSubmitterOneOf, f7 as SubscriptionInfo, bf as SubscriptionInfoOptInLevel, iW as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, b6 as Tag, bB as TagList, iN as TagWithLiterals, g1 as Tags, ey as TagsOption, g2 as TagsTagList, bk as Target, i$ as TargetWithLiterals, ad as TextAlignment, hS as TextAlignmentWithLiterals, dq as TextData, cs as TextInput, e3 as TextNodeStyle, cK as TextStyle, fN as ThankYouMessageOptions, cZ as Thumbnails, al as ThumbnailsAlignment, h_ as ThumbnailsAlignmentWithLiterals, ef as TimeInput, a$ as Type, iG as TypeWithLiterals, hp as UpdateExtendedFieldsRequest, gF as UpdateSubmissionRequest, gG as UpdateSubmissionResponse, aY as UploadFileFormat, iD as UploadFileFormatWithLiterals, fA as UpsertContact, gi as UpsertContactFromSubmissionRequest, fB as V4FormFieldContactInfo, fC as V4FormFieldContactInfoAdditionalInfoOneOf, ht as ValidateFormSubmissionRequest, cf as Validation, gn as ValidationError, a2 as ValidationFormat, hH as ValidationFormatWithLiterals, cr as ValidationMessages, cg as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, iq as VerticalAlignmentAlignmentWithLiterals, il as VerticalAlignmentWithLiterals, cT as Video, e$ as VideoConferenceOptions, dJ as VideoData, ah as ViewMode, hW as ViewModeWithLiterals, aq as ViewRole, i3 as ViewRoleWithLiterals, ar as VoteRole, i4 as VoteRoleWithLiterals, bp as WebhookIdentityType, j4 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hO as WidthTypeWithLiterals, hU as WidthWithLiterals, fh as WixFile, aX as WixFileComponentType, fi as WixFileComponentTypeOptionsOneOf, iC as WixFileComponentTypeWithLiterals, fe as _Array, ff as _ArrayComponentTypeOptionsOneOf, fc as _Boolean, fd as _BooleanComponentTypeOptionsOneOf, fa as _Number, fb as _NumberComponentTypeOptionsOneOf, fg as _Object, f8 as _String, f9 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-IKRWXge_.js';
4
4
 
5
5
  declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
6
6
  interface UpsertContactFromSubmissionSignature {
@@ -280,7 +280,7 @@ declare const onSubmissionContactMappingSkipped$1: EventDefinition<SubmissionCon
280
280
  declare const onSubmissionUpdated$1: EventDefinition<SubmissionUpdatedEnvelope, "wix.forms.v4.submission_updated">;
281
281
 
282
282
  declare function customQuerySubmissionsByNamespace(httpClient: HttpClient): {
283
- (query: CursorQuery, options?: QuerySubmissionsByNamespaceOptions): ReturnType<typeof typedQuerySubmissionsByNamespace>;
283
+ (query: FormSubmissionQuery, options?: QuerySubmissionsByNamespaceOptions): ReturnType<typeof typedQuerySubmissionsByNamespace>;
284
284
  (options?: QuerySubmissionsByNamespaceOptions): SubmissionsQueryBuilder;
285
285
  };
286
286
  declare const upsertContactFromSubmission: MaybeContext<BuildRESTFunction<typeof upsertContactFromSubmission$1> & typeof upsertContactFromSubmission$1>;
@@ -342,4 +342,4 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
342
342
  */
343
343
  declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
344
344
 
345
- export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkMarkSubmissionsAsSeenResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
345
+ export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkMarkSubmissionsAsSeenResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, BulkUpdateFormSubmissionTagsByFilterOptions, BulkUpdateFormSubmissionTagsByFilterResponse, BulkUpdateFormSubmissionTagsOptions, BulkUpdateFormSubmissionTagsResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionQuery, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RawHttpResponse, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, bulkUpdateFormSubmissionTags, bulkUpdateFormSubmissionTagsByFilter, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, downloadSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
@@ -1086,6 +1086,7 @@ var StringComponentType = /* @__PURE__ */ ((StringComponentType2) => {
1086
1086
  StringComponentType2["TIME_INPUT"] = "TIME_INPUT";
1087
1087
  StringComponentType2["DATE_PICKER"] = "DATE_PICKER";
1088
1088
  StringComponentType2["SERVICES_DROPDOWN"] = "SERVICES_DROPDOWN";
1089
+ StringComponentType2["PASSWORD"] = "PASSWORD";
1089
1090
  return StringComponentType2;
1090
1091
  })(StringComponentType || {});
1091
1092
  var NodeType = /* @__PURE__ */ ((NodeType2) => {