@wix/auto_sdk_forms_submissions 1.0.69 → 1.0.70
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.
- package/build/cjs/{forms-v4-submission-submissions.universal-BGR1uSK9.d.ts → forms-v4-submission-submissions.universal-Bcjvsrv_.d.ts} +37 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -4
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BGR1uSK9.d.mts → forms-v4-submission-submissions.universal-Bcjvsrv_.d.mts} +37 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -4
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-BlAMJnaP.d.ts → forms-v4-submission-submissions.universal-DJs1f2hq.d.ts} +37 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -4
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-BlAMJnaP.d.mts → forms-v4-submission-submissions.universal-DJs1f2hq.d.mts} +37 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -4
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2306,6 +2306,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2306
2306
|
superscriptData?: boolean | null;
|
|
2307
2307
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2308
2308
|
subscriptData?: boolean | null;
|
|
2309
|
+
/** Data for a font family decoration. */
|
|
2310
|
+
fontFamilyData?: FontFamilyData;
|
|
2309
2311
|
/** The type of decoration to apply. */
|
|
2310
2312
|
type?: DecorationTypeWithLiterals;
|
|
2311
2313
|
}
|
|
@@ -2335,6 +2337,8 @@ interface DecorationDataOneOf {
|
|
|
2335
2337
|
superscriptData?: boolean | null;
|
|
2336
2338
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
2337
2339
|
subscriptData?: boolean | null;
|
|
2340
|
+
/** Data for a font family decoration. */
|
|
2341
|
+
fontFamilyData?: FontFamilyData;
|
|
2338
2342
|
}
|
|
2339
2343
|
declare enum DecorationType {
|
|
2340
2344
|
BOLD = "BOLD",
|
|
@@ -2349,10 +2353,11 @@ declare enum DecorationType {
|
|
|
2349
2353
|
EXTERNAL = "EXTERNAL",
|
|
2350
2354
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2351
2355
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2352
|
-
SUBSCRIPT = "SUBSCRIPT"
|
|
2356
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
2357
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
2353
2358
|
}
|
|
2354
2359
|
/** @enumType */
|
|
2355
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
2360
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
2356
2361
|
interface AnchorData {
|
|
2357
2362
|
/** The target node's ID. */
|
|
2358
2363
|
anchor?: string;
|
|
@@ -2391,6 +2396,10 @@ interface SpoilerData {
|
|
|
2391
2396
|
/** Spoiler ID. */
|
|
2392
2397
|
id?: string | null;
|
|
2393
2398
|
}
|
|
2399
|
+
interface FontFamilyData {
|
|
2400
|
+
/** @maxLength 1000 */
|
|
2401
|
+
value?: string | null;
|
|
2402
|
+
}
|
|
2394
2403
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
2395
2404
|
/** Data for embedded Wix Bookings content. */
|
|
2396
2405
|
bookingData?: BookingData;
|
|
@@ -2775,6 +2784,13 @@ interface TableData {
|
|
|
2775
2784
|
rowHeader?: boolean | null;
|
|
2776
2785
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
2777
2786
|
columnHeader?: boolean | null;
|
|
2787
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
2788
|
+
cellSpacing?: number | null;
|
|
2789
|
+
/**
|
|
2790
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
2791
|
+
* @maxSize 4
|
|
2792
|
+
*/
|
|
2793
|
+
cellPadding?: number[];
|
|
2778
2794
|
}
|
|
2779
2795
|
interface Dimensions {
|
|
2780
2796
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2789,6 +2805,12 @@ interface TableCellData {
|
|
|
2789
2805
|
cellStyle?: CellStyle;
|
|
2790
2806
|
/** The cell's border colors. */
|
|
2791
2807
|
borderColors?: BorderColors;
|
|
2808
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
2809
|
+
colspan?: number | null;
|
|
2810
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
2811
|
+
rowspan?: number | null;
|
|
2812
|
+
/** The cell's border widths. */
|
|
2813
|
+
borderWidths?: BorderWidths;
|
|
2792
2814
|
}
|
|
2793
2815
|
declare enum VerticalAlignment {
|
|
2794
2816
|
/** Top alignment */
|
|
@@ -2831,6 +2853,16 @@ interface BorderColors {
|
|
|
2831
2853
|
*/
|
|
2832
2854
|
bottom?: string | null;
|
|
2833
2855
|
}
|
|
2856
|
+
interface BorderWidths {
|
|
2857
|
+
/** Left border width in pixels. */
|
|
2858
|
+
left?: number | null;
|
|
2859
|
+
/** Right border width in pixels. */
|
|
2860
|
+
right?: number | null;
|
|
2861
|
+
/** Top border width in pixels. */
|
|
2862
|
+
top?: number | null;
|
|
2863
|
+
/** Bottom border width in pixels. */
|
|
2864
|
+
bottom?: number | null;
|
|
2865
|
+
}
|
|
2834
2866
|
/**
|
|
2835
2867
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
2836
2868
|
* `Value` type union.
|
|
@@ -2930,6 +2962,8 @@ interface LayoutData {
|
|
|
2930
2962
|
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
2931
2963
|
/** Size in pixels when responsiveness_behaviour applies */
|
|
2932
2964
|
responsivenessBreakpoint?: number | null;
|
|
2965
|
+
/** Styling for the layout's container. */
|
|
2966
|
+
containerData?: PluginContainerData;
|
|
2933
2967
|
}
|
|
2934
2968
|
declare enum Scaling {
|
|
2935
2969
|
/** Auto image scaling */
|
|
@@ -7423,4 +7457,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7423
7457
|
fieldsToValidate?: string[];
|
|
7424
7458
|
}
|
|
7425
7459
|
|
|
7426
|
-
export { PriceType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, EmailInfoTag as a$, FieldType as a0, FormatEnumFormat as a1, StringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, Scaling as aE, LayoutDataImagePosition as aF, VerticalAlignmentAlignment as aG, ResponsivenessBehaviour as aH, ImagePosition as aI, Alignment as aJ, ImageFit as aK, NumberOfColumns as aL, FirstDayOfWeek as aM, NumberComponentType as aN, BooleanComponentType as aO, ItemType as aP, PropertiesTypeEnum as aQ, ArrayComponentType as aR, WixFileComponentType as aS, UploadFileFormat as aT, PaymentComponentType as aU, ComponentType as aV, Type as aW, ObjectArrayComponentType as aX, SchedulingComponentType as aY, Format as aZ, InputType as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type PaymentType as b$, PhoneInfoTag as b0, Tag as b1, ConfirmationLevel as b2, ContactField as b3, DisplayFieldType as b4, OverrideEntityType as b5, Kind as b6, FormFieldContactInfoEmailInfoTag as b7, FormFieldContactInfoPhoneInfoTag as b8, AddressInfoTag as b9, type MarketingSubscriptionDetails as bA, type SubmissionContactMappingSkipped as bB, type CreateCheckoutFromSubmissionRequest as bC, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bD, type Form as bE, type FormField as bF, type FormFieldStringType as bG, type FormFieldStringTypeFormatOptionsOneOf as bH, type StringErrorMessages as bI, type StringTypeDateTimeConstraints as bJ, type StringTypePhoneConstraints as bK, type StringTypeValidationMessages as bL, type FormFieldNumberType as bM, type NumberErrorMessages as bN, type IntegerType as bO, type FormFieldBooleanType as bP, type BooleanErrorMessages as bQ, type FormFieldArrayType as bR, type FormFieldObjectType as bS, type ObjectTypePropertiesType as bT, type ObjectTypePropertiesTypePropertiesTypeOneOf as bU, type ObjectErrorMessages as bV, type ArrayTypeArrayItems as bW, type ArrayTypeArrayItemsItemsOneOf as bX, type ArrayErrorMessages as bY, type PredefinedValidation as bZ, type PredefinedValidationFormatOptionsOneOf as b_, SubscriptionInfoOptInLevel as ba, FormFieldContactInfoContactField as bb, SpamFilterProtectionLevel as bc, RequiredIndicator as bd, RequiredIndicatorPlacement as be, Target as bf, SubmitSuccessAction as bg, ChangeableProperty as bh, OverrideEntityTypeEnumOverrideEntityType as bi, Operator as bj, WebhookIdentityType as bk, IdentityType as bl, ErrorType as bm, SortOrder as bn, Mode as bo, Status as bp, SubmissionErrorType as bq, type Submitter as br, type SubmitterSubmitterOneOf as bs, type ExtendedFields as bt, type OrderDetails as bu, type PublicTags as bv, type TagList as bw, type FormSubmissionStatusUpdatedEvent as bx, type RemovedSubmissionFromTrash as by, type SubmissionContactMapped as bz, type CreateSubmissionValidationErrors as c, type StylesBorder as c$, type QuantityLimit as c0, type FixedPriceOptions as c1, type DynamicPriceOptions as c2, type Product as c3, type ProductPriceOptionsOneOf as c4, type MultilineAddressValidation as c5, type FieldOverrides as c6, type FieldsOverrides as c7, type ObjectArrayType as c8, type NestedFormFieldOverrides as c9, type Styles as cA, type Link as cB, type LinkDataOneOf as cC, type Rel as cD, type CodeBlockData as cE, type TextStyle as cF, type DividerData as cG, type FileData as cH, type FileSource as cI, type FileSourceDataOneOf as cJ, type PDFSettings as cK, type GalleryData as cL, type Media as cM, type Image as cN, type Video as cO, type Item as cP, type ItemDataOneOf as cQ, type GalleryOptions as cR, type GalleryOptionsLayout as cS, type ItemStyle as cT, type Thumbnails as cU, type GIFData as cV, type GIF as cW, type HeadingData as cX, type HTMLData as cY, type HTMLDataDataOneOf as cZ, type ImageData as c_, type Validation as ca, type ValidationValidationOneOf as cb, type DataExtensionsDetails as cc, type NestedFormOverrides as cd, type Field as ce, type FieldFieldTypeOptionsOneOf as cf, type InputField as cg, type InputFieldInputTypeOptionsOneOf as ch, type StringType as ci, type StringTypeFormatOptionsOneOf as cj, type DateTimeConstraints as ck, type PhoneConstraints as cl, type ValidationMessages as cm, type TextInput as cn, type RichContent as co, type Node as cp, type NodeDataOneOf as cq, type NodeStyle as cr, type ButtonData as cs, type Border as ct, type Colors as cu, type PluginContainerData as cv, type PluginContainerDataWidth as cw, type PluginContainerDataWidthDataOneOf as cx, type Spoiler as cy, type Height as cz, type UpdateSubmission as d, type MediaSettings as d$, type ImageDataStyles as d0, type LinkPreviewData as d1, type LinkPreviewDataStyles as d2, type MapData as d3, type MapSettings as d4, type ParagraphData as d5, type PollData as d6, type Permissions as d7, type PollOption as d8, type Settings as d9, type RibbonStyles as dA, type CardStyles as dB, type PricingData as dC, type VideoData as dD, type PlaybackOptions as dE, type EmbedData as dF, type Oembed as dG, type CollapsibleListData as dH, type TableData as dI, type Dimensions as dJ, type TableCellData as dK, type CellStyle as dL, type BorderColors as dM, type ListValue as dN, type AudioData as dO, type OrderedListData as dP, type BulletedListData as dQ, type BlockquoteData as dR, type CaptionData as dS, type LayoutData as dT, type BackgroundImage as dU, type LayoutCellData as dV, type Metadata as dW, type DocumentStyle as dX, type TextNodeStyle as dY, type MediaItem as dZ, type MediaItemMediaOneOf as d_, type PollLayout as da, type OptionLayout as db, type Gradient as dc, type Background as dd, type BackgroundBackgroundOneOf as de, type PollDesign as df, type OptionDesign as dg, type Poll as dh, type PollDataLayout as di, type Design as dj, type TextData as dk, type Decoration as dl, type DecorationDataOneOf as dm, type AnchorData as dn, type ColorData as dp, type LinkData as dq, type MentionData as dr, type FontSizeData as ds, type SpoilerData as dt, type AppEmbedData as du, type AppEmbedDataAppDataOneOf as dv, type BookingData as dw, type EventData as dx, type ButtonStyles as dy, type ImageStyles as dz, type UpdateSubmissionValidationErrors as e, type SubscriptionInfo as e$, type RadioGroup as e0, type RadioGroupOption as e1, type CustomOption as e2, type Dropdown as e3, type DropdownOption as e4, type DateTimeInput as e5, type PhoneInput as e6, type DateInput as e7, type TimeInput as e8, type DatePicker as e9, type FixedPayment as eA, type MultilineAddress as eB, type AddressLine2 as eC, type DefaultCountryConfig as eD, type DefaultCountryConfigOptionsOneOf as eE, type FieldsSettings as eF, type Repeater as eG, type FormLayout as eH, type BreakPoint as eI, type ItemLayout as eJ, type ItemLayoutItemOneOf as eK, type Group as eL, type Margin as eM, type Section as eN, type Appointment as eO, type AppointmentFormatInfoOneOf as eP, type Location as eQ, type LocationLocationInfoOneOf as eR, type InPersonOptions as eS, type VideoConferenceOptions as eT, type PhoneOptions as eU, type FormFieldContactInfo as eV, type FormFieldContactInfoAdditionalInfoOneOf as eW, type EmailInfo as eX, type PhoneInfo as eY, type AddressInfo as eZ, type CustomFieldInfo as e_, type ServicesDropdown as ea, type ServiceOption as eb, type NumberType as ec, type NumberInput as ed, type RatingInput as ee, type BooleanType as ef, type Checkbox as eg, type ArrayType as eh, type ObjectType as ei, type PropertiesType as ej, type PropertiesTypePropertiesTypeOptionsOneOf as ek, type ArrayItems as el, type ArrayItemsItemTypeOptionsOneOf as em, type CheckboxGroup as en, type Option as eo, type Tags as ep, type TagsOption as eq, type ServicesCheckboxGroup as er, type FileType as es, type FileUpload as et, type Signature as eu, type ProductCheckboxGroup as ev, type ProductCheckboxGroupOption as ew, type DonationInput as ex, type DonationInputOption as ey, type PaymentInput as ez, type ConfirmSubmissionResponse as f, type EntityCreatedEvent as f$, type _String as f0, type _StringComponentTypeOptionsOneOf as f1, type _Number as f2, type _NumberComponentTypeOptionsOneOf as f3, type _Boolean as f4, type _BooleanComponentTypeOptionsOneOf as f5, type _Array as f6, type _ArrayComponentTypeOptionsOneOf as f7, type _Object as f8, type WixFile as f9, type NestedForm as fA, type LimitationRule as fB, type RequiredIndicatorProperties as fC, type SubmitSettings as fD, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fE, type ThankYouMessageOptions as fF, type RedirectOptions as fG, type FieldGroup as fH, type Rule as fI, type RequiredOptions as fJ, type HiddenOptions as fK, type AllowedValuesOptions as fL, type FieldOverride as fM, type FieldOverridePropertyTypeOptionsOneOf as fN, type ConditionNode as fO, type ConditionNodeNodeOneOf as fP, type AndCondition as fQ, type OrCondition as fR, type Condition as fS, type RuleFormOverride as fT, type RuleFormOverrideEntityTypeOptionsOneOf as fU, type CreateCheckoutFromSubmissionResponse as fV, type Checkout as fW, type IsFormSubmittableRequest as fX, type IsFormSubmittableResponse as fY, type DomainEvent as fZ, type DomainEventBodyOneOf as f_, type WixFileComponentTypeOptionsOneOf as fa, type Payment as fb, type PaymentComponentTypeOptionsOneOf as fc, type Scheduling as fd, type SchedulingComponentTypeOptionsOneOf as fe, type Address as ff, type AddressComponentTypeOptionsOneOf as fg, type ObjectArray as fh, type ObjectArrayComponentTypeOptionsOneOf as fi, type DisplayField as fj, type DisplayFieldDisplayFieldTypeOptionsOneOf as fk, type RichContentOptions as fl, type PageNavigationOptions as fm, type Step as fn, type FormRule as fo, type FormOverride as fp, type FormProperties as fq, type PostSubmissionTriggers as fr, type UpsertContact as fs, type V4FormFieldContactInfo as ft, type V4FormFieldContactInfoAdditionalInfoOneOf as fu, type FormFieldContactInfoEmailInfo as fv, type FormFieldContactInfoPhoneInfo as fw, type FormFieldContactInfoAddressInfo as fx, type FormFieldContactInfoCustomFieldInfo as fy, type FormFieldContactInfoSubscriptionInfo as fz, type BulkDeleteSubmissionResponse as g, type FormDeletedSubmissionsCount as g$, type RestoreInfo as g0, type EntityUpdatedEvent as g1, type EntityDeletedEvent as g2, type ActionEvent as g3, type Empty as g4, type MessageEnvelope as g5, type IdentificationData as g6, type IdentificationDataIdOneOf as g7, type UpsertContactFromSubmissionRequest as g8, type SubmitContactResponse as g9, type RestoreSubmissionFromTrashBinRequest as gA, type RemoveSubmissionFromTrashBinRequest as gB, type RemoveSubmissionFromTrashBinResponse as gC, type BulkRemoveSubmissionFromTrashBinRequest as gD, type BulkRemoveSubmissionFromTrashBinResult as gE, type ListDeletedSubmissionsRequest as gF, type CursorPaging as gG, type CursorPagingMetadata as gH, type Cursors as gI, type GetDeletedSubmissionRequest as gJ, type QuerySubmissionRequest as gK, type CursorQueryPagingMethodOneOf as gL, type Sorting as gM, type SearchSubmissionsByNamespaceRequest as gN, type CursorSearch as gO, type CursorSearchPagingMethodOneOf as gP, type SearchDetails as gQ, type SearchSubmissionsByNamespaceForExportRequest as gR, type SearchSubmissionsByNamespaceForExportResponse as gS, type QuerySubmissionsByNamespaceRequest as gT, type QuerySubmissionsByNamespaceResponse as gU, type QuerySubmissionsByNamespaceForExportRequest as gV, type QuerySubmissionsByNamespaceForExportResponse as gW, type CountSubmissionsByFilterRequest as gX, type FormSubmissionsCount as gY, type CountSubmissionsRequest as gZ, type CountDeletedSubmissionsRequest as g_, type CreateSubmissionRequest as ga, type CreateSubmissionResponse as gb, type SubmissionValidationErrorsDetails as gc, type ValidationError as gd, type CreateSubmissionForMigrationRequest as ge, type CreateSubmissionForMigrationResponse as gf, type CreateSubmissionBySubmitterRequest as gg, type CreateSubmissionBySubmitterResponse as gh, type BulkCreateSubmissionBySubmitterRequest as gi, type BulkCreateSubmissionBySubmitterData as gj, type BulkCreateSubmissionBySubmitterResponse as gk, type BulkSubmissionResult as gl, type ItemMetadata as gm, type ApplicationError as gn, type BulkActionMetadata as go, type GetSubmissionRequest as gp, type GetSubmissionResponse as gq, type GetSubmissionByCheckoutIdRequest as gr, type GetSubmissionByCheckoutIdResponse as gs, type UpdateSubmissionRequest as gt, type UpdateSubmissionResponse as gu, type ConfirmSubmissionRequest as gv, type DeleteSubmissionRequest as gw, type DeleteSubmissionResponse as gx, type BulkDeleteSubmissionRequest as gy, type BulkDeleteSubmissionResult as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DecorationTypeWithLiterals as h$, type GetMediaUploadURLRequest as h0, type BulkMarkSubmissionsAsSeenRequest as h1, type GetSubmissionDownloadUrlRequest as h2, type SubmissionDocument as h3, type SubmissionDocumentDocumentOneOf as h4, type DocumentReady as h5, type DownloadSubmissionRequest as h6, type HeadersEntry as h7, type GetFormattedSubmissionRequest as h8, type FormattedSubmission as h9, type PriceTypeWithLiterals as hA, type FieldTypeWithLiterals as hB, type FormatEnumFormatWithLiterals as hC, type StringComponentTypeWithLiterals as hD, type NodeTypeWithLiterals as hE, type WidthTypeWithLiterals as hF, type PluginContainerDataAlignmentWithLiterals as hG, type ButtonDataTypeWithLiterals as hH, type LinkTargetWithLiterals as hI, type TextAlignmentWithLiterals as hJ, type LineStyleWithLiterals as hK, type WidthWithLiterals as hL, type DividerDataAlignmentWithLiterals as hM, type ViewModeWithLiterals as hN, type LayoutTypeWithLiterals as hO, type OrientationWithLiterals as hP, type CropWithLiterals as hQ, type ThumbnailsAlignmentWithLiterals as hR, type GIFTypeWithLiterals as hS, type SourceWithLiterals as hT, type StylesPositionWithLiterals as hU, type MapTypeWithLiterals as hV, type ViewRoleWithLiterals as hW, type VoteRoleWithLiterals as hX, type PollLayoutTypeWithLiterals as hY, type PollLayoutDirectionWithLiterals as hZ, type BackgroundTypeWithLiterals as h_, type ListFormattedSubmissionsRequest as ha, type ListFormattedSubmissionsResponse as hb, type FormattedFormSubmission as hc, type UpdateExtendedFieldsRequest as hd, type BulkUpdateFormSubmissionTagsRequest as he, type BulkUpdateFormSubmissionTagsResponse as hf, type BulkUpdateFormSubmissionTagsResult as hg, type BulkUpdateFormSubmissionTagsByFilterRequest as hh, type BulkUpdateFormSubmissionTagsByFilterResponse as hi, type ValidateFormSubmissionRequest as hj, type FieldViolation as hk, type FieldViolationErrorDataOneOf as hl, type SubmissionValidationErrors as hm, type SubmissionValidationError as hn, type SubmissionValidationErrorErrorMessageOneOf as ho, type BaseEventMetadata as hp, type EventMetadata as hq, type FormSubmissionSearchSpec as hr, type SubmissionsQueryResult as hs, type BulkUpdateFormSubmissionTagsOptions as ht, type BulkUpdateFormSubmissionTagsByFilterOptions as hu, type SubmissionStatusWithLiterals as hv, type OptInLevelWithLiterals as hw, type StringTypeFormatEnumFormatWithLiterals as hx, type ValidationFormatWithLiterals as hy, type ProductTypeWithLiterals as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ModeWithLiterals as i$, type FontTypeWithLiterals as i0, type PositionWithLiterals as i1, type AspectRatioWithLiterals as i2, type ResizingWithLiterals as i3, type PlacementWithLiterals as i4, type CardStylesTypeWithLiterals as i5, type CardStylesAlignmentWithLiterals as i6, type LayoutWithLiterals as i7, type AppTypeWithLiterals as i8, type InitialExpandedItemsWithLiterals as i9, type FormatWithLiterals as iA, type InputTypeWithLiterals as iB, type EmailInfoTagWithLiterals as iC, type PhoneInfoTagWithLiterals as iD, type TagWithLiterals as iE, type ConfirmationLevelWithLiterals as iF, type ContactFieldWithLiterals as iG, type DisplayFieldTypeWithLiterals as iH, type OverrideEntityTypeWithLiterals as iI, type KindWithLiterals as iJ, type FormFieldContactInfoEmailInfoTagWithLiterals as iK, type FormFieldContactInfoPhoneInfoTagWithLiterals as iL, type AddressInfoTagWithLiterals as iM, type SubscriptionInfoOptInLevelWithLiterals as iN, type FormFieldContactInfoContactFieldWithLiterals as iO, type SpamFilterProtectionLevelWithLiterals as iP, type RequiredIndicatorWithLiterals as iQ, type RequiredIndicatorPlacementWithLiterals as iR, type TargetWithLiterals as iS, type SubmitSuccessActionWithLiterals as iT, type ChangeablePropertyWithLiterals as iU, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as iV, type OperatorWithLiterals as iW, type WebhookIdentityTypeWithLiterals as iX, type IdentityTypeWithLiterals as iY, type ErrorTypeWithLiterals as iZ, type SortOrderWithLiterals as i_, type DirectionWithLiterals as ia, type VerticalAlignmentWithLiterals as ib, type NullValueWithLiterals as ic, type ScalingWithLiterals as id, type LayoutDataImagePositionWithLiterals as ie, type VerticalAlignmentAlignmentWithLiterals as ig, type ResponsivenessBehaviourWithLiterals as ih, type ImagePositionWithLiterals as ii, type AlignmentWithLiterals as ij, type ImageFitWithLiterals as ik, type NumberOfColumnsWithLiterals as il, type FirstDayOfWeekWithLiterals as im, type NumberComponentTypeWithLiterals as io, type BooleanComponentTypeWithLiterals as ip, type ItemTypeWithLiterals as iq, type PropertiesTypeEnumWithLiterals as ir, type ArrayComponentTypeWithLiterals as is, type WixFileComponentTypeWithLiterals as it, type UploadFileFormatWithLiterals as iu, type PaymentComponentTypeWithLiterals as iv, type ComponentTypeWithLiterals as iw, type TypeWithLiterals as ix, type ObjectArrayComponentTypeWithLiterals as iy, type SchedulingComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type StatusWithLiterals as j0, type SubmissionErrorTypeWithLiterals as j1, type CommonSearchWithEntityContext as j2, onSubmissionCreated as j3, onSubmissionDeleted as j4, onSubmissionRemovedSubmissionFromTrash as j5, onSubmissionStatusUpdated as j6, onSubmissionContactMapped as j7, onSubmissionContactMappingSkipped as j8, onSubmissionUpdated as j9, upsertContactFromSubmission as ja, createSubmission as jb, getSubmission as jc, updateSubmission as jd, confirmSubmission as je, deleteSubmission as jf, bulkDeleteSubmission as jg, restoreSubmissionFromTrashBin as jh, removeSubmissionFromTrashBin as ji, bulkRemoveSubmissionFromTrashBin as jj, listDeletedSubmissions as jk, getDeletedSubmission as jl, querySubmission as jm, querySubmissionsByNamespace as jn, countSubmissionsByFilter as jo, countSubmissions as jp, countDeletedSubmissions as jq, getMediaUploadUrl as jr, bulkMarkSubmissionsAsSeen as js, getSubmissionDownloadUrl as jt, downloadSubmission as ju, getFormattedSubmission as jv, updateExtendedFields as jw, validateFormSubmission as jx, 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 };
|
|
7460
|
+
export { PriceType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type QuerySubmissionsByNamespaceOptions as O, typedQuerySubmissionsByNamespace as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionsQueryBuilder as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, SubmissionStatus as W, OptInLevel as X, StringTypeFormatEnumFormat as Y, ValidationFormat as Z, ProductType as _, type UpsertContactFromSubmissionResponse as a, EmailInfoTag as a$, FieldType as a0, FormatEnumFormat as a1, StringComponentType as a2, NodeType as a3, WidthType as a4, PluginContainerDataAlignment as a5, ButtonDataType as a6, LinkTarget as a7, TextAlignment as a8, LineStyle as a9, InitialExpandedItems as aA, Direction as aB, VerticalAlignment as aC, NullValue as aD, Scaling as aE, LayoutDataImagePosition as aF, VerticalAlignmentAlignment as aG, ResponsivenessBehaviour as aH, ImagePosition as aI, Alignment as aJ, ImageFit as aK, NumberOfColumns as aL, FirstDayOfWeek as aM, NumberComponentType as aN, BooleanComponentType as aO, ItemType as aP, PropertiesTypeEnum as aQ, ArrayComponentType as aR, WixFileComponentType as aS, UploadFileFormat as aT, PaymentComponentType as aU, ComponentType as aV, Type as aW, ObjectArrayComponentType as aX, SchedulingComponentType as aY, Format as aZ, InputType as a_, Width as aa, DividerDataAlignment as ab, ViewMode as ac, LayoutType as ad, Orientation as ae, Crop as af, ThumbnailsAlignment as ag, GIFType as ah, Source as ai, StylesPosition as aj, MapType as ak, ViewRole as al, VoteRole as am, PollLayoutType as an, PollLayoutDirection as ao, BackgroundType as ap, DecorationType as aq, FontType as ar, Position as as, AspectRatio as at, Resizing as au, Placement as av, CardStylesType as aw, CardStylesAlignment as ax, Layout as ay, AppType as az, type CreateSubmissionApplicationErrors as b, type PaymentType as b$, PhoneInfoTag as b0, Tag as b1, ConfirmationLevel as b2, ContactField as b3, DisplayFieldType as b4, OverrideEntityType as b5, Kind as b6, FormFieldContactInfoEmailInfoTag as b7, FormFieldContactInfoPhoneInfoTag as b8, AddressInfoTag as b9, type MarketingSubscriptionDetails as bA, type SubmissionContactMappingSkipped as bB, type CreateCheckoutFromSubmissionRequest as bC, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bD, type Form as bE, type FormField as bF, type FormFieldStringType as bG, type FormFieldStringTypeFormatOptionsOneOf as bH, type StringErrorMessages as bI, type StringTypeDateTimeConstraints as bJ, type StringTypePhoneConstraints as bK, type StringTypeValidationMessages as bL, type FormFieldNumberType as bM, type NumberErrorMessages as bN, type IntegerType as bO, type FormFieldBooleanType as bP, type BooleanErrorMessages as bQ, type FormFieldArrayType as bR, type FormFieldObjectType as bS, type ObjectTypePropertiesType as bT, type ObjectTypePropertiesTypePropertiesTypeOneOf as bU, type ObjectErrorMessages as bV, type ArrayTypeArrayItems as bW, type ArrayTypeArrayItemsItemsOneOf as bX, type ArrayErrorMessages as bY, type PredefinedValidation as bZ, type PredefinedValidationFormatOptionsOneOf as b_, SubscriptionInfoOptInLevel as ba, FormFieldContactInfoContactField as bb, SpamFilterProtectionLevel as bc, RequiredIndicator as bd, RequiredIndicatorPlacement as be, Target as bf, SubmitSuccessAction as bg, ChangeableProperty as bh, OverrideEntityTypeEnumOverrideEntityType as bi, Operator as bj, WebhookIdentityType as bk, IdentityType as bl, ErrorType as bm, SortOrder as bn, Mode as bo, Status as bp, SubmissionErrorType as bq, type Submitter as br, type SubmitterSubmitterOneOf as bs, type ExtendedFields as bt, type OrderDetails as bu, type PublicTags as bv, type TagList as bw, type FormSubmissionStatusUpdatedEvent as bx, type RemovedSubmissionFromTrash as by, type SubmissionContactMapped as bz, type CreateSubmissionValidationErrors as c, type StylesBorder as c$, type QuantityLimit as c0, type FixedPriceOptions as c1, type DynamicPriceOptions as c2, type Product as c3, type ProductPriceOptionsOneOf as c4, type MultilineAddressValidation as c5, type FieldOverrides as c6, type FieldsOverrides as c7, type ObjectArrayType as c8, type NestedFormFieldOverrides as c9, type Styles as cA, type Link as cB, type LinkDataOneOf as cC, type Rel as cD, type CodeBlockData as cE, type TextStyle as cF, type DividerData as cG, type FileData as cH, type FileSource as cI, type FileSourceDataOneOf as cJ, type PDFSettings as cK, type GalleryData as cL, type Media as cM, type Image as cN, type Video as cO, type Item as cP, type ItemDataOneOf as cQ, type GalleryOptions as cR, type GalleryOptionsLayout as cS, type ItemStyle as cT, type Thumbnails as cU, type GIFData as cV, type GIF as cW, type HeadingData as cX, type HTMLData as cY, type HTMLDataDataOneOf as cZ, type ImageData as c_, type Validation as ca, type ValidationValidationOneOf as cb, type DataExtensionsDetails as cc, type NestedFormOverrides as cd, type Field as ce, type FieldFieldTypeOptionsOneOf as cf, type InputField as cg, type InputFieldInputTypeOptionsOneOf as ch, type StringType as ci, type StringTypeFormatOptionsOneOf as cj, type DateTimeConstraints as ck, type PhoneConstraints as cl, type ValidationMessages as cm, type TextInput as cn, type RichContent as co, type Node as cp, type NodeDataOneOf as cq, type NodeStyle as cr, type ButtonData as cs, type Border as ct, type Colors as cu, type PluginContainerData as cv, type PluginContainerDataWidth as cw, type PluginContainerDataWidthDataOneOf as cx, type Spoiler as cy, type Height as cz, type UpdateSubmission as d, type MediaItem as d$, type ImageDataStyles as d0, type LinkPreviewData as d1, type LinkPreviewDataStyles as d2, type MapData as d3, type MapSettings as d4, type ParagraphData as d5, type PollData as d6, type Permissions as d7, type PollOption as d8, type Settings as d9, type ImageStyles as dA, type RibbonStyles as dB, type CardStyles as dC, type PricingData as dD, type VideoData as dE, type PlaybackOptions as dF, type EmbedData as dG, type Oembed as dH, type CollapsibleListData as dI, type TableData as dJ, type Dimensions as dK, type TableCellData as dL, type CellStyle as dM, type BorderColors as dN, type BorderWidths as dO, type ListValue as dP, type AudioData as dQ, type OrderedListData as dR, type BulletedListData as dS, type BlockquoteData as dT, type CaptionData as dU, type LayoutData as dV, type BackgroundImage as dW, type LayoutCellData as dX, type Metadata as dY, type DocumentStyle as dZ, type TextNodeStyle as d_, type PollLayout as da, type OptionLayout as db, type Gradient as dc, type Background as dd, type BackgroundBackgroundOneOf as de, type PollDesign as df, type OptionDesign as dg, type Poll as dh, type PollDataLayout as di, type Design as dj, type TextData as dk, type Decoration as dl, type DecorationDataOneOf as dm, type AnchorData as dn, type ColorData as dp, type LinkData as dq, type MentionData as dr, type FontSizeData as ds, type SpoilerData as dt, type FontFamilyData as du, type AppEmbedData as dv, type AppEmbedDataAppDataOneOf as dw, type BookingData as dx, type EventData as dy, type ButtonStyles as dz, type UpdateSubmissionValidationErrors as e, type AddressInfo as e$, type MediaItemMediaOneOf as e0, type MediaSettings as e1, type RadioGroup as e2, type RadioGroupOption as e3, type CustomOption as e4, type Dropdown as e5, type DropdownOption as e6, type DateTimeInput as e7, type PhoneInput as e8, type DateInput as e9, type DonationInputOption as eA, type PaymentInput as eB, type FixedPayment as eC, type MultilineAddress as eD, type AddressLine2 as eE, type DefaultCountryConfig as eF, type DefaultCountryConfigOptionsOneOf as eG, type FieldsSettings as eH, type Repeater as eI, type FormLayout as eJ, type BreakPoint as eK, type ItemLayout as eL, type ItemLayoutItemOneOf as eM, type Group as eN, type Margin as eO, type Section as eP, type Appointment as eQ, type AppointmentFormatInfoOneOf as eR, type Location as eS, type LocationLocationInfoOneOf as eT, type InPersonOptions as eU, type VideoConferenceOptions as eV, type PhoneOptions as eW, type FormFieldContactInfo as eX, type FormFieldContactInfoAdditionalInfoOneOf as eY, type EmailInfo as eZ, type PhoneInfo as e_, type TimeInput as ea, type DatePicker as eb, type ServicesDropdown as ec, type ServiceOption as ed, type NumberType as ee, type NumberInput as ef, type RatingInput as eg, type BooleanType as eh, type Checkbox as ei, type ArrayType as ej, type ObjectType as ek, type PropertiesType as el, type PropertiesTypePropertiesTypeOptionsOneOf as em, type ArrayItems as en, type ArrayItemsItemTypeOptionsOneOf as eo, type CheckboxGroup as ep, type Option as eq, type Tags as er, type TagsOption as es, type ServicesCheckboxGroup as et, type FileType as eu, type FileUpload as ev, type Signature as ew, type ProductCheckboxGroup as ex, type ProductCheckboxGroupOption as ey, type DonationInput as ez, type ConfirmSubmissionResponse as f, type DomainEvent as f$, type CustomFieldInfo as f0, type SubscriptionInfo as f1, type _String as f2, type _StringComponentTypeOptionsOneOf as f3, type _Number as f4, type _NumberComponentTypeOptionsOneOf as f5, type _Boolean as f6, type _BooleanComponentTypeOptionsOneOf as f7, type _Array as f8, type _ArrayComponentTypeOptionsOneOf as f9, type FormFieldContactInfoCustomFieldInfo as fA, type FormFieldContactInfoSubscriptionInfo as fB, type NestedForm as fC, type LimitationRule as fD, type RequiredIndicatorProperties as fE, type SubmitSettings as fF, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fG, type ThankYouMessageOptions as fH, type RedirectOptions as fI, type FieldGroup as fJ, type Rule as fK, type RequiredOptions as fL, type HiddenOptions as fM, type AllowedValuesOptions as fN, type FieldOverride as fO, type FieldOverridePropertyTypeOptionsOneOf as fP, type ConditionNode as fQ, type ConditionNodeNodeOneOf as fR, type AndCondition as fS, type OrCondition as fT, type Condition as fU, type RuleFormOverride as fV, type RuleFormOverrideEntityTypeOptionsOneOf as fW, type CreateCheckoutFromSubmissionResponse as fX, type Checkout as fY, type IsFormSubmittableRequest as fZ, type IsFormSubmittableResponse as f_, type _Object as fa, type WixFile as fb, type WixFileComponentTypeOptionsOneOf as fc, type Payment as fd, type PaymentComponentTypeOptionsOneOf as fe, type Scheduling as ff, type SchedulingComponentTypeOptionsOneOf as fg, type Address as fh, type AddressComponentTypeOptionsOneOf as fi, type ObjectArray as fj, type ObjectArrayComponentTypeOptionsOneOf as fk, type DisplayField as fl, type DisplayFieldDisplayFieldTypeOptionsOneOf as fm, type RichContentOptions as fn, type PageNavigationOptions as fo, type Step as fp, type FormRule as fq, type FormOverride as fr, type FormProperties as fs, type PostSubmissionTriggers as ft, type UpsertContact as fu, type V4FormFieldContactInfo as fv, type V4FormFieldContactInfoAdditionalInfoOneOf as fw, type FormFieldContactInfoEmailInfo as fx, type FormFieldContactInfoPhoneInfo as fy, type FormFieldContactInfoAddressInfo as fz, type BulkDeleteSubmissionResponse as g, type CountSubmissionsRequest as g$, type DomainEventBodyOneOf as g0, type EntityCreatedEvent as g1, type RestoreInfo as g2, type EntityUpdatedEvent as g3, type EntityDeletedEvent as g4, type ActionEvent as g5, type Empty as g6, type MessageEnvelope as g7, type IdentificationData as g8, type IdentificationDataIdOneOf as g9, type BulkDeleteSubmissionRequest as gA, type BulkDeleteSubmissionResult as gB, type RestoreSubmissionFromTrashBinRequest as gC, type RemoveSubmissionFromTrashBinRequest as gD, type RemoveSubmissionFromTrashBinResponse as gE, type BulkRemoveSubmissionFromTrashBinRequest as gF, type BulkRemoveSubmissionFromTrashBinResult as gG, type ListDeletedSubmissionsRequest as gH, type CursorPaging as gI, type CursorPagingMetadata as gJ, type Cursors as gK, type GetDeletedSubmissionRequest as gL, type QuerySubmissionRequest as gM, type CursorQueryPagingMethodOneOf as gN, type Sorting as gO, type SearchSubmissionsByNamespaceRequest as gP, type CursorSearch as gQ, type CursorSearchPagingMethodOneOf as gR, type SearchDetails as gS, type SearchSubmissionsByNamespaceForExportRequest as gT, type SearchSubmissionsByNamespaceForExportResponse as gU, type QuerySubmissionsByNamespaceRequest as gV, type QuerySubmissionsByNamespaceResponse as gW, type QuerySubmissionsByNamespaceForExportRequest as gX, type QuerySubmissionsByNamespaceForExportResponse as gY, type CountSubmissionsByFilterRequest as gZ, type FormSubmissionsCount as g_, type UpsertContactFromSubmissionRequest as ga, type SubmitContactResponse as gb, type CreateSubmissionRequest as gc, type CreateSubmissionResponse as gd, type SubmissionValidationErrorsDetails as ge, type ValidationError as gf, type CreateSubmissionForMigrationRequest as gg, type CreateSubmissionForMigrationResponse as gh, type CreateSubmissionBySubmitterRequest as gi, type CreateSubmissionBySubmitterResponse as gj, type BulkCreateSubmissionBySubmitterRequest as gk, type BulkCreateSubmissionBySubmitterData as gl, type BulkCreateSubmissionBySubmitterResponse as gm, type BulkSubmissionResult as gn, type ItemMetadata as go, type ApplicationError as gp, type BulkActionMetadata as gq, type GetSubmissionRequest as gr, type GetSubmissionResponse as gs, type GetSubmissionByCheckoutIdRequest as gt, type GetSubmissionByCheckoutIdResponse as gu, type UpdateSubmissionRequest as gv, type UpdateSubmissionResponse as gw, type ConfirmSubmissionRequest as gx, type DeleteSubmissionRequest as gy, type DeleteSubmissionResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type PollLayoutDirectionWithLiterals as h$, type CountDeletedSubmissionsRequest as h0, type FormDeletedSubmissionsCount as h1, type GetMediaUploadURLRequest as h2, type BulkMarkSubmissionsAsSeenRequest as h3, type GetSubmissionDownloadUrlRequest as h4, type SubmissionDocument as h5, type SubmissionDocumentDocumentOneOf as h6, type DocumentReady as h7, type DownloadSubmissionRequest as h8, type HeadersEntry as h9, type ValidationFormatWithLiterals as hA, type ProductTypeWithLiterals as hB, type PriceTypeWithLiterals as hC, type FieldTypeWithLiterals as hD, type FormatEnumFormatWithLiterals as hE, type StringComponentTypeWithLiterals as hF, type NodeTypeWithLiterals as hG, type WidthTypeWithLiterals as hH, type PluginContainerDataAlignmentWithLiterals as hI, type ButtonDataTypeWithLiterals as hJ, type LinkTargetWithLiterals as hK, type TextAlignmentWithLiterals as hL, type LineStyleWithLiterals as hM, type WidthWithLiterals as hN, type DividerDataAlignmentWithLiterals as hO, type ViewModeWithLiterals as hP, type LayoutTypeWithLiterals as hQ, type OrientationWithLiterals as hR, type CropWithLiterals as hS, type ThumbnailsAlignmentWithLiterals as hT, type GIFTypeWithLiterals as hU, type SourceWithLiterals as hV, type StylesPositionWithLiterals as hW, type MapTypeWithLiterals as hX, type ViewRoleWithLiterals as hY, type VoteRoleWithLiterals as hZ, type PollLayoutTypeWithLiterals as h_, type GetFormattedSubmissionRequest as ha, type FormattedSubmission as hb, type ListFormattedSubmissionsRequest as hc, type ListFormattedSubmissionsResponse as hd, type FormattedFormSubmission as he, type UpdateExtendedFieldsRequest as hf, type BulkUpdateFormSubmissionTagsRequest as hg, type BulkUpdateFormSubmissionTagsResponse as hh, type BulkUpdateFormSubmissionTagsResult as hi, type BulkUpdateFormSubmissionTagsByFilterRequest as hj, type BulkUpdateFormSubmissionTagsByFilterResponse as hk, type ValidateFormSubmissionRequest as hl, type FieldViolation as hm, type FieldViolationErrorDataOneOf as hn, type SubmissionValidationErrors as ho, type SubmissionValidationError as hp, type SubmissionValidationErrorErrorMessageOneOf as hq, type BaseEventMetadata as hr, type EventMetadata as hs, type FormSubmissionSearchSpec as ht, type SubmissionsQueryResult as hu, type BulkUpdateFormSubmissionTagsOptions as hv, type BulkUpdateFormSubmissionTagsByFilterOptions as hw, type SubmissionStatusWithLiterals as hx, type OptInLevelWithLiterals as hy, type StringTypeFormatEnumFormatWithLiterals as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ErrorTypeWithLiterals as i$, type BackgroundTypeWithLiterals as i0, type DecorationTypeWithLiterals as i1, type FontTypeWithLiterals as i2, type PositionWithLiterals as i3, type AspectRatioWithLiterals as i4, type ResizingWithLiterals as i5, type PlacementWithLiterals as i6, type CardStylesTypeWithLiterals as i7, type CardStylesAlignmentWithLiterals as i8, type LayoutWithLiterals as i9, type ObjectArrayComponentTypeWithLiterals as iA, type SchedulingComponentTypeWithLiterals as iB, type FormatWithLiterals as iC, type InputTypeWithLiterals as iD, type EmailInfoTagWithLiterals as iE, type PhoneInfoTagWithLiterals as iF, type TagWithLiterals as iG, type ConfirmationLevelWithLiterals as iH, type ContactFieldWithLiterals as iI, type DisplayFieldTypeWithLiterals as iJ, type OverrideEntityTypeWithLiterals as iK, type KindWithLiterals as iL, type FormFieldContactInfoEmailInfoTagWithLiterals as iM, type FormFieldContactInfoPhoneInfoTagWithLiterals as iN, type AddressInfoTagWithLiterals as iO, type SubscriptionInfoOptInLevelWithLiterals as iP, type FormFieldContactInfoContactFieldWithLiterals as iQ, type SpamFilterProtectionLevelWithLiterals as iR, type RequiredIndicatorWithLiterals as iS, type RequiredIndicatorPlacementWithLiterals as iT, type TargetWithLiterals as iU, type SubmitSuccessActionWithLiterals as iV, type ChangeablePropertyWithLiterals as iW, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as iX, type OperatorWithLiterals as iY, type WebhookIdentityTypeWithLiterals as iZ, type IdentityTypeWithLiterals as i_, type AppTypeWithLiterals as ia, type InitialExpandedItemsWithLiterals as ib, type DirectionWithLiterals as ic, type VerticalAlignmentWithLiterals as id, type NullValueWithLiterals as ie, type ScalingWithLiterals as ig, type LayoutDataImagePositionWithLiterals as ih, type VerticalAlignmentAlignmentWithLiterals as ii, type ResponsivenessBehaviourWithLiterals as ij, type ImagePositionWithLiterals as ik, type AlignmentWithLiterals as il, type ImageFitWithLiterals as im, type NumberOfColumnsWithLiterals as io, type FirstDayOfWeekWithLiterals as ip, type NumberComponentTypeWithLiterals as iq, type BooleanComponentTypeWithLiterals as ir, type ItemTypeWithLiterals as is, type PropertiesTypeEnumWithLiterals as it, type ArrayComponentTypeWithLiterals as iu, type WixFileComponentTypeWithLiterals as iv, type UploadFileFormatWithLiterals as iw, type PaymentComponentTypeWithLiterals as ix, type ComponentTypeWithLiterals as iy, type TypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SortOrderWithLiterals as j0, type ModeWithLiterals as j1, type StatusWithLiterals as j2, type SubmissionErrorTypeWithLiterals as j3, type CommonSearchWithEntityContext as j4, onSubmissionCreated as j5, onSubmissionDeleted as j6, onSubmissionRemovedSubmissionFromTrash as j7, onSubmissionStatusUpdated as j8, onSubmissionContactMapped as j9, onSubmissionContactMappingSkipped as ja, onSubmissionUpdated as jb, upsertContactFromSubmission as jc, createSubmission as jd, getSubmission as je, updateSubmission as jf, confirmSubmission as jg, deleteSubmission as jh, bulkDeleteSubmission as ji, restoreSubmissionFromTrashBin as jj, removeSubmissionFromTrashBin as jk, bulkRemoveSubmissionFromTrashBin as jl, listDeletedSubmissions as jm, getDeletedSubmission as jn, querySubmission as jo, querySubmissionsByNamespace as jp, countSubmissionsByFilter as jq, countSubmissions as jr, countDeletedSubmissions as js, getMediaUploadUrl as jt, bulkMarkSubmissionsAsSeen as ju, getSubmissionDownloadUrl as jv, downloadSubmission as jw, getFormattedSubmission as jx, updateExtendedFields as jy, validateFormSubmission 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 };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -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, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as QuerySubmissionsByNamespaceOptions, P as typedQuerySubmissionsByNamespace, T as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { g3 as ActionEvent, ff as Address, fg as AddressComponentTypeOptionsOneOf, eZ as AddressInfo, b9 as AddressInfoTag, iM as AddressInfoTagWithLiterals, eC as AddressLine2, aJ as Alignment, ij as AlignmentWithLiterals, fL as AllowedValuesOptions, dn as AnchorData, fQ as AndCondition, du as AppEmbedData, dv as AppEmbedDataAppDataOneOf, az as AppType, i8 as AppTypeWithLiterals, gn as ApplicationError, eO as Appointment, eP as AppointmentFormatInfoOneOf, aR as ArrayComponentType, is as ArrayComponentTypeWithLiterals, bY as ArrayErrorMessages, el as ArrayItems, em as ArrayItemsItemTypeOptionsOneOf, eh as ArrayType, bW as ArrayTypeArrayItems, bX as ArrayTypeArrayItemsItemsOneOf, at as AspectRatio, i2 as AspectRatioWithLiterals, dO as AudioData, dd as Background, de as BackgroundBackgroundOneOf, dU as BackgroundImage, ap as BackgroundType, h_ as BackgroundTypeWithLiterals, hp as BaseEventMetadata, dR as BlockquoteData, dw as BookingData, aO as BooleanComponentType, ip as BooleanComponentTypeWithLiterals, bQ as BooleanErrorMessages, ef as BooleanType, ct as Border, dM as BorderColors, eI as BreakPoint, go as BulkActionMetadata, gj as BulkCreateSubmissionBySubmitterData, gi as BulkCreateSubmissionBySubmitterRequest, gk as BulkCreateSubmissionBySubmitterResponse, gy as BulkDeleteSubmissionRequest, gz as BulkDeleteSubmissionResult, h1 as BulkMarkSubmissionsAsSeenRequest, gD as BulkRemoveSubmissionFromTrashBinRequest, gE as BulkRemoveSubmissionFromTrashBinResult, gl as BulkSubmissionResult, hu as BulkUpdateFormSubmissionTagsByFilterOptions, hh as BulkUpdateFormSubmissionTagsByFilterRequest, hi as BulkUpdateFormSubmissionTagsByFilterResponse, ht as BulkUpdateFormSubmissionTagsOptions, he as BulkUpdateFormSubmissionTagsRequest, hf as BulkUpdateFormSubmissionTagsResponse, hg as BulkUpdateFormSubmissionTagsResult, dQ as BulletedListData, cs as ButtonData, a6 as ButtonDataType, hH as ButtonDataTypeWithLiterals, dy as ButtonStyles, dS as CaptionData, dB as CardStyles, ax as CardStylesAlignment, i6 as CardStylesAlignmentWithLiterals, aw as CardStylesType, i5 as CardStylesTypeWithLiterals, dL as CellStyle, bh as ChangeableProperty, iU as ChangeablePropertyWithLiterals, eg as Checkbox, en as CheckboxGroup, fW as Checkout, cE as CodeBlockData, dH as CollapsibleListData, dp as ColorData, cu as Colors, j2 as CommonSearchWithEntityContext, aV as ComponentType, iw as ComponentTypeWithLiterals, fS as Condition, fO as ConditionNode, fP as ConditionNodeNodeOneOf, gv as ConfirmSubmissionRequest, b2 as ConfirmationLevel, iF as ConfirmationLevelWithLiterals, b3 as ContactField, iG as ContactFieldWithLiterals, g_ as CountDeletedSubmissionsRequest, gX as CountSubmissionsByFilterRequest, gZ as CountSubmissionsRequest, bC as CreateCheckoutFromSubmissionRequest, bD as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, fV as CreateCheckoutFromSubmissionResponse, gg as CreateSubmissionBySubmitterRequest, gh as CreateSubmissionBySubmitterResponse, ge as CreateSubmissionForMigrationRequest, gf as CreateSubmissionForMigrationResponse, ga as CreateSubmissionRequest, gb as CreateSubmissionResponse, af as Crop, hQ as CropWithLiterals, gG as CursorPaging, gH as CursorPagingMetadata, gL as CursorQueryPagingMethodOneOf, gO as CursorSearch, gP as CursorSearchPagingMethodOneOf, gI as Cursors, e_ as CustomFieldInfo, e2 as CustomOption, cc as DataExtensionsDetails, e7 as DateInput, e9 as DatePicker, ck as DateTimeConstraints, e5 as DateTimeInput, dl as Decoration, dm as DecorationDataOneOf, aq as DecorationType, h$ as DecorationTypeWithLiterals, eD as DefaultCountryConfig, eE as DefaultCountryConfigOptionsOneOf, gw as DeleteSubmissionRequest, gx as DeleteSubmissionResponse, dj as Design, dJ as Dimensions, aB as Direction, ia as DirectionWithLiterals, fj as DisplayField, fk as DisplayFieldDisplayFieldTypeOptionsOneOf, b4 as DisplayFieldType, iH as DisplayFieldTypeWithLiterals, cG as DividerData, ab as DividerDataAlignment, hM as DividerDataAlignmentWithLiterals, h5 as DocumentReady, dX as DocumentStyle, fZ as DomainEvent, f_ as DomainEventBodyOneOf, ex as DonationInput, ey as DonationInputOption, h6 as DownloadSubmissionRequest, e3 as Dropdown, e4 as DropdownOption, c2 as DynamicPriceOptions, eX as EmailInfo, a$ as EmailInfoTag, iC as EmailInfoTagWithLiterals, dF as EmbedData, g4 as Empty, f$ as EntityCreatedEvent, g2 as EntityDeletedEvent, g1 as EntityUpdatedEvent, bm as ErrorType, iZ as ErrorTypeWithLiterals, dx as EventData, hq as EventMetadata, bt as ExtendedFields, ce as Field, cf as FieldFieldTypeOptionsOneOf, fH as FieldGroup, fM as FieldOverride, fN as FieldOverridePropertyTypeOptionsOneOf, c6 as FieldOverrides, a0 as FieldType, hB as FieldTypeWithLiterals, hk as FieldViolation, hl as FieldViolationErrorDataOneOf, c7 as FieldsOverrides, eF as FieldsSettings, cH as FileData, cI as FileSource, cJ as FileSourceDataOneOf, es as FileType, et as FileUpload, aM as FirstDayOfWeek, im as FirstDayOfWeekWithLiterals, eA as FixedPayment, c1 as FixedPriceOptions, ds as FontSizeData, ar as FontType, i0 as FontTypeWithLiterals, bE as Form, g$ as FormDeletedSubmissionsCount, bF as FormField, bR as FormFieldArrayType, bP as FormFieldBooleanType, eV as FormFieldContactInfo, eW as FormFieldContactInfoAdditionalInfoOneOf, fx as FormFieldContactInfoAddressInfo, bb as FormFieldContactInfoContactField, iO as FormFieldContactInfoContactFieldWithLiterals, fy as FormFieldContactInfoCustomFieldInfo, fv as FormFieldContactInfoEmailInfo, b7 as FormFieldContactInfoEmailInfoTag, iK as FormFieldContactInfoEmailInfoTagWithLiterals, fw as FormFieldContactInfoPhoneInfo, b8 as FormFieldContactInfoPhoneInfoTag, iL as FormFieldContactInfoPhoneInfoTagWithLiterals, fz as FormFieldContactInfoSubscriptionInfo, bM as FormFieldNumberType, bS as FormFieldObjectType, bG as FormFieldStringType, bH as FormFieldStringTypeFormatOptionsOneOf, eH as FormLayout, fp as FormOverride, fq as FormProperties, fo as FormRule, hr as FormSubmissionSearchSpec, bx as FormSubmissionStatusUpdatedEvent, gY as FormSubmissionsCount, aZ as Format, a1 as FormatEnumFormat, hC as FormatEnumFormatWithLiterals, iA as FormatWithLiterals, hc as FormattedFormSubmission, h9 as FormattedSubmission, cW as GIF, cV as GIFData, ah as GIFType, hS as GIFTypeWithLiterals, cL as GalleryData, cR as GalleryOptions, cS as GalleryOptionsLayout, gJ as GetDeletedSubmissionRequest, h8 as GetFormattedSubmissionRequest, h0 as GetMediaUploadURLRequest, gr as GetSubmissionByCheckoutIdRequest, gs as GetSubmissionByCheckoutIdResponse, h2 as GetSubmissionDownloadUrlRequest, gp as GetSubmissionRequest, gq as GetSubmissionResponse, dc as Gradient, eL as Group, cY as HTMLData, cZ as HTMLDataDataOneOf, h7 as HeadersEntry, cX as HeadingData, cz as Height, fK as HiddenOptions, g6 as IdentificationData, g7 as IdentificationDataIdOneOf, bl as IdentityType, iY as IdentityTypeWithLiterals, cN as Image, c_ as ImageData, d0 as ImageDataStyles, aK as ImageFit, ik as ImageFitWithLiterals, aI as ImagePosition, ii as ImagePositionWithLiterals, dz as ImageStyles, eS as InPersonOptions, aA as InitialExpandedItems, i9 as InitialExpandedItemsWithLiterals, cg as InputField, ch as InputFieldInputTypeOptionsOneOf, a_ as InputType, iB as InputTypeWithLiterals, bO as IntegerType, fX as IsFormSubmittableRequest, fY as IsFormSubmittableResponse, cP as Item, cQ as ItemDataOneOf, eJ as ItemLayout, eK as ItemLayoutItemOneOf, gm as ItemMetadata, cT as ItemStyle, aP as ItemType, iq as ItemTypeWithLiterals, b6 as Kind, iJ as KindWithLiterals, ay as Layout, dV as LayoutCellData, dT as LayoutData, aF as LayoutDataImagePosition, ie as LayoutDataImagePositionWithLiterals, ad as LayoutType, hO as LayoutTypeWithLiterals, i7 as LayoutWithLiterals, fB as LimitationRule, a9 as LineStyle, hK as LineStyleWithLiterals, cB as Link, dq as LinkData, cC as LinkDataOneOf, d1 as LinkPreviewData, d2 as LinkPreviewDataStyles, a7 as LinkTarget, hI as LinkTargetWithLiterals, gF as ListDeletedSubmissionsRequest, ha as ListFormattedSubmissionsRequest, hb as ListFormattedSubmissionsResponse, dN as ListValue, eQ as Location, eR as LocationLocationInfoOneOf, d3 as MapData, d4 as MapSettings, ak as MapType, hV as MapTypeWithLiterals, eM as Margin, bA as MarketingSubscriptionDetails, cM as Media, dZ as MediaItem, d_ as MediaItemMediaOneOf, d$ as MediaSettings, dr as MentionData, g5 as MessageEnvelope, dW as Metadata, bo as Mode, i$ as ModeWithLiterals, eB as MultilineAddress, c5 as MultilineAddressValidation, fA as NestedForm, c9 as NestedFormFieldOverrides, cd as NestedFormOverrides, cp as Node, cq as NodeDataOneOf, cr as NodeStyle, a3 as NodeType, hE as NodeTypeWithLiterals, aD as NullValue, ic as NullValueWithLiterals, aN as NumberComponentType, io as NumberComponentTypeWithLiterals, bN as NumberErrorMessages, ed as NumberInput, aL as NumberOfColumns, il as NumberOfColumnsWithLiterals, ec as NumberType, fh as ObjectArray, aX as ObjectArrayComponentType, fi as ObjectArrayComponentTypeOptionsOneOf, iy as ObjectArrayComponentTypeWithLiterals, c8 as ObjectArrayType, bV as ObjectErrorMessages, ei as ObjectType, bT as ObjectTypePropertiesType, bU as ObjectTypePropertiesTypePropertiesTypeOneOf, dG as Oembed, bj as Operator, iW as OperatorWithLiterals, X as OptInLevel, hw as OptInLevelWithLiterals, eo as Option, dg as OptionDesign, db as OptionLayout, fR as OrCondition, bu as OrderDetails, dP as OrderedListData, ae as Orientation, hP as OrientationWithLiterals, b5 as OverrideEntityType, bi as OverrideEntityTypeEnumOverrideEntityType, iV as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iI as OverrideEntityTypeWithLiterals, cK as PDFSettings, fm as PageNavigationOptions, d5 as ParagraphData, fb as Payment, aU as PaymentComponentType, fc as PaymentComponentTypeOptionsOneOf, iv as PaymentComponentTypeWithLiterals, ez as PaymentInput, b$ as PaymentType, d7 as Permissions, cl as PhoneConstraints, eY as PhoneInfo, b0 as PhoneInfoTag, iD as PhoneInfoTagWithLiterals, e6 as PhoneInput, eU as PhoneOptions, av as Placement, i4 as PlacementWithLiterals, dE as PlaybackOptions, cv as PluginContainerData, a5 as PluginContainerDataAlignment, hG as PluginContainerDataAlignmentWithLiterals, cw as PluginContainerDataWidth, cx as PluginContainerDataWidthDataOneOf, dh as Poll, d6 as PollData, di as PollDataLayout, df as PollDesign, da as PollLayout, ao as PollLayoutDirection, hZ as PollLayoutDirectionWithLiterals, an as PollLayoutType, hY as PollLayoutTypeWithLiterals, d8 as PollOption, as as Position, i1 as PositionWithLiterals, fr as PostSubmissionTriggers, bZ as PredefinedValidation, b_ as PredefinedValidationFormatOptionsOneOf, $ as PriceType, hA as PriceTypeWithLiterals, dC as PricingData, c3 as Product, ev as ProductCheckboxGroup, ew as ProductCheckboxGroupOption, c4 as ProductPriceOptionsOneOf, _ as ProductType, hz as ProductTypeWithLiterals, ej as PropertiesType, aQ as PropertiesTypeEnum, ir as PropertiesTypeEnumWithLiterals, ek as PropertiesTypePropertiesTypeOptionsOneOf, bv as PublicTags, c0 as QuantityLimit, gK as QuerySubmissionRequest, gV as QuerySubmissionsByNamespaceForExportRequest, gW as QuerySubmissionsByNamespaceForExportResponse, gT as QuerySubmissionsByNamespaceRequest, gU as QuerySubmissionsByNamespaceResponse, e0 as RadioGroup, e1 as RadioGroupOption, ee as RatingInput, fG as RedirectOptions, cD as Rel, gB as RemoveSubmissionFromTrashBinRequest, gC as RemoveSubmissionFromTrashBinResponse, by as RemovedSubmissionFromTrash, eG as Repeater, bd as RequiredIndicator, be as RequiredIndicatorPlacement, iR as RequiredIndicatorPlacementWithLiterals, fC as RequiredIndicatorProperties, iQ as RequiredIndicatorWithLiterals, fJ as RequiredOptions, au as Resizing, i3 as ResizingWithLiterals, aH as ResponsivenessBehaviour, ih as ResponsivenessBehaviourWithLiterals, g0 as RestoreInfo, gA as RestoreSubmissionFromTrashBinRequest, dA as RibbonStyles, co as RichContent, fl as RichContentOptions, fI as Rule, fT as RuleFormOverride, fU as RuleFormOverrideEntityTypeOptionsOneOf, aE as Scaling, id as ScalingWithLiterals, fd as Scheduling, aY as SchedulingComponentType, fe as SchedulingComponentTypeOptionsOneOf, iz as SchedulingComponentTypeWithLiterals, gQ as SearchDetails, gR as SearchSubmissionsByNamespaceForExportRequest, gS as SearchSubmissionsByNamespaceForExportResponse, gN as SearchSubmissionsByNamespaceRequest, eN as Section, eb as ServiceOption, er as ServicesCheckboxGroup, ea as ServicesDropdown, d9 as Settings, eu as Signature, bn as SortOrder, i_ as SortOrderWithLiterals, gM as Sorting, ai as Source, hT as SourceWithLiterals, bc as SpamFilterProtectionLevel, iP as SpamFilterProtectionLevelWithLiterals, cy as Spoiler, dt as SpoilerData, bp as Status, j0 as StatusWithLiterals, fn as Step, a2 as StringComponentType, hD as StringComponentTypeWithLiterals, bI as StringErrorMessages, ci as StringType, bJ as StringTypeDateTimeConstraints, Y as StringTypeFormatEnumFormat, hx as StringTypeFormatEnumFormatWithLiterals, cj as StringTypeFormatOptionsOneOf, bK as StringTypePhoneConstraints, bL as StringTypeValidationMessages, cA as Styles, c$ as StylesBorder, aj as StylesPosition, hU as StylesPositionWithLiterals, bz as SubmissionContactMapped, bB as SubmissionContactMappingSkipped, h3 as SubmissionDocument, h4 as SubmissionDocumentDocumentOneOf, bq as SubmissionErrorType, j1 as SubmissionErrorTypeWithLiterals, W as SubmissionStatus, hv as SubmissionStatusWithLiterals, hn as SubmissionValidationError, ho as SubmissionValidationErrorErrorMessageOneOf, hm as SubmissionValidationErrors, gc as SubmissionValidationErrorsDetails, hs as SubmissionsQueryResult, g9 as SubmitContactResponse, fD as SubmitSettings, fE as SubmitSettingsSubmitSuccessActionOptionsOneOf, bg as SubmitSuccessAction, iT as SubmitSuccessActionWithLiterals, br as Submitter, bs as SubmitterSubmitterOneOf, e$ as SubscriptionInfo, ba as SubscriptionInfoOptInLevel, iN as SubscriptionInfoOptInLevelWithLiterals, dK as TableCellData, dI as TableData, b1 as Tag, bw as TagList, iE as TagWithLiterals, ep as Tags, eq as TagsOption, bf as Target, iS as TargetWithLiterals, a8 as TextAlignment, hJ as TextAlignmentWithLiterals, dk as TextData, cn as TextInput, dY as TextNodeStyle, cF as TextStyle, fF as ThankYouMessageOptions, cU as Thumbnails, ag as ThumbnailsAlignment, hR as ThumbnailsAlignmentWithLiterals, e8 as TimeInput, aW as Type, ix as TypeWithLiterals, hd as UpdateExtendedFieldsRequest, gt as UpdateSubmissionRequest, gu as UpdateSubmissionResponse, aT as UploadFileFormat, iu as UploadFileFormatWithLiterals, fs as UpsertContact, g8 as UpsertContactFromSubmissionRequest, ft as V4FormFieldContactInfo, fu as V4FormFieldContactInfoAdditionalInfoOneOf, hj as ValidateFormSubmissionRequest, ca as Validation, gd as ValidationError, Z as ValidationFormat, hy as ValidationFormatWithLiterals, cm as ValidationMessages, cb as ValidationValidationOneOf, aC as VerticalAlignment, aG as VerticalAlignmentAlignment, ig as VerticalAlignmentAlignmentWithLiterals, ib as VerticalAlignmentWithLiterals, cO as Video, eT as VideoConferenceOptions, dD as VideoData, ac as ViewMode, hN as ViewModeWithLiterals, al as ViewRole, hW as ViewRoleWithLiterals, am as VoteRole, hX as VoteRoleWithLiterals, bk as WebhookIdentityType, iX as WebhookIdentityTypeWithLiterals, aa as Width, a4 as WidthType, hF as WidthTypeWithLiterals, hL as WidthWithLiterals, f9 as WixFile, aS as WixFileComponentType, fa as WixFileComponentTypeOptionsOneOf, it as WixFileComponentTypeWithLiterals, f6 as _Array, f7 as _ArrayComponentTypeOptionsOneOf, f4 as _Boolean, f5 as _BooleanComponentTypeOptionsOneOf, f2 as _Number, f3 as _NumberComponentTypeOptionsOneOf, f8 as _Object, f0 as _String, f1 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BGR1uSK9.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, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as QuerySubmissionsByNamespaceOptions, P as typedQuerySubmissionsByNamespace, T as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-Bcjvsrv_.js';
|
|
3
|
+
export { g5 as ActionEvent, fh as Address, fi as AddressComponentTypeOptionsOneOf, e$ as AddressInfo, b9 as AddressInfoTag, iO as AddressInfoTagWithLiterals, eE as AddressLine2, aJ as Alignment, il as AlignmentWithLiterals, fN as AllowedValuesOptions, dn as AnchorData, fS as AndCondition, dv as AppEmbedData, dw as AppEmbedDataAppDataOneOf, az as AppType, ia as AppTypeWithLiterals, gp as ApplicationError, eQ as Appointment, eR as AppointmentFormatInfoOneOf, aR as ArrayComponentType, iu as ArrayComponentTypeWithLiterals, bY as ArrayErrorMessages, en as ArrayItems, eo as ArrayItemsItemTypeOptionsOneOf, ej as ArrayType, bW as ArrayTypeArrayItems, bX as ArrayTypeArrayItemsItemsOneOf, at as AspectRatio, i4 as AspectRatioWithLiterals, dQ as AudioData, dd as Background, de as BackgroundBackgroundOneOf, dW as BackgroundImage, ap as BackgroundType, i0 as BackgroundTypeWithLiterals, hr as BaseEventMetadata, dT as BlockquoteData, dx as BookingData, aO as BooleanComponentType, ir as BooleanComponentTypeWithLiterals, bQ as BooleanErrorMessages, eh as BooleanType, ct as Border, dN as BorderColors, dO as BorderWidths, eK as BreakPoint, gq as BulkActionMetadata, gl as BulkCreateSubmissionBySubmitterData, gk as BulkCreateSubmissionBySubmitterRequest, gm as BulkCreateSubmissionBySubmitterResponse, gA as BulkDeleteSubmissionRequest, gB as BulkDeleteSubmissionResult, h3 as BulkMarkSubmissionsAsSeenRequest, gF as BulkRemoveSubmissionFromTrashBinRequest, gG as BulkRemoveSubmissionFromTrashBinResult, gn as BulkSubmissionResult, hw as BulkUpdateFormSubmissionTagsByFilterOptions, hj as BulkUpdateFormSubmissionTagsByFilterRequest, hk as BulkUpdateFormSubmissionTagsByFilterResponse, hv as BulkUpdateFormSubmissionTagsOptions, hg as BulkUpdateFormSubmissionTagsRequest, hh as BulkUpdateFormSubmissionTagsResponse, hi as BulkUpdateFormSubmissionTagsResult, dS as BulletedListData, cs as ButtonData, a6 as ButtonDataType, hJ as ButtonDataTypeWithLiterals, dz as ButtonStyles, dU as CaptionData, dC as CardStyles, ax as CardStylesAlignment, i8 as CardStylesAlignmentWithLiterals, aw as CardStylesType, i7 as CardStylesTypeWithLiterals, dM as CellStyle, bh as ChangeableProperty, iW as ChangeablePropertyWithLiterals, ei as Checkbox, ep as CheckboxGroup, fY as Checkout, cE as CodeBlockData, dI as CollapsibleListData, dp as ColorData, cu as Colors, j4 as CommonSearchWithEntityContext, aV as ComponentType, iy as ComponentTypeWithLiterals, fU as Condition, fQ as ConditionNode, fR as ConditionNodeNodeOneOf, gx as ConfirmSubmissionRequest, b2 as ConfirmationLevel, iH as ConfirmationLevelWithLiterals, b3 as ContactField, iI as ContactFieldWithLiterals, h0 as CountDeletedSubmissionsRequest, gZ as CountSubmissionsByFilterRequest, g$ as CountSubmissionsRequest, bC as CreateCheckoutFromSubmissionRequest, bD as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, fX as CreateCheckoutFromSubmissionResponse, gi as CreateSubmissionBySubmitterRequest, gj as CreateSubmissionBySubmitterResponse, gg as CreateSubmissionForMigrationRequest, gh as CreateSubmissionForMigrationResponse, gc as CreateSubmissionRequest, gd as CreateSubmissionResponse, af as Crop, hS as CropWithLiterals, gI as CursorPaging, gJ as CursorPagingMetadata, gN as CursorQueryPagingMethodOneOf, gQ as CursorSearch, gR as CursorSearchPagingMethodOneOf, gK as Cursors, f0 as CustomFieldInfo, e4 as CustomOption, cc as DataExtensionsDetails, e9 as DateInput, eb as DatePicker, ck as DateTimeConstraints, e7 as DateTimeInput, dl as Decoration, dm as DecorationDataOneOf, aq as DecorationType, i1 as DecorationTypeWithLiterals, eF as DefaultCountryConfig, eG as DefaultCountryConfigOptionsOneOf, gy as DeleteSubmissionRequest, gz as DeleteSubmissionResponse, dj as Design, dK as Dimensions, aB as Direction, ic as DirectionWithLiterals, fl as DisplayField, fm as DisplayFieldDisplayFieldTypeOptionsOneOf, b4 as DisplayFieldType, iJ as DisplayFieldTypeWithLiterals, cG as DividerData, ab as DividerDataAlignment, hO as DividerDataAlignmentWithLiterals, h7 as DocumentReady, dZ as DocumentStyle, f$ as DomainEvent, g0 as DomainEventBodyOneOf, ez as DonationInput, eA as DonationInputOption, h8 as DownloadSubmissionRequest, e5 as Dropdown, e6 as DropdownOption, c2 as DynamicPriceOptions, eZ as EmailInfo, a$ as EmailInfoTag, iE as EmailInfoTagWithLiterals, dG as EmbedData, g6 as Empty, g1 as EntityCreatedEvent, g4 as EntityDeletedEvent, g3 as EntityUpdatedEvent, bm as ErrorType, i$ as ErrorTypeWithLiterals, dy as EventData, hs as EventMetadata, bt as ExtendedFields, ce as Field, cf as FieldFieldTypeOptionsOneOf, fJ as FieldGroup, fO as FieldOverride, fP as FieldOverridePropertyTypeOptionsOneOf, c6 as FieldOverrides, a0 as FieldType, hD as FieldTypeWithLiterals, hm as FieldViolation, hn as FieldViolationErrorDataOneOf, c7 as FieldsOverrides, eH as FieldsSettings, cH as FileData, cI as FileSource, cJ as FileSourceDataOneOf, eu as FileType, ev as FileUpload, aM as FirstDayOfWeek, ip as FirstDayOfWeekWithLiterals, eC as FixedPayment, c1 as FixedPriceOptions, du as FontFamilyData, ds as FontSizeData, ar as FontType, i2 as FontTypeWithLiterals, bE as Form, h1 as FormDeletedSubmissionsCount, bF as FormField, bR as FormFieldArrayType, bP as FormFieldBooleanType, eX as FormFieldContactInfo, eY as FormFieldContactInfoAdditionalInfoOneOf, fz as FormFieldContactInfoAddressInfo, bb as FormFieldContactInfoContactField, iQ as FormFieldContactInfoContactFieldWithLiterals, fA as FormFieldContactInfoCustomFieldInfo, fx as FormFieldContactInfoEmailInfo, b7 as FormFieldContactInfoEmailInfoTag, iM as FormFieldContactInfoEmailInfoTagWithLiterals, fy as FormFieldContactInfoPhoneInfo, b8 as FormFieldContactInfoPhoneInfoTag, iN as FormFieldContactInfoPhoneInfoTagWithLiterals, fB as FormFieldContactInfoSubscriptionInfo, bM as FormFieldNumberType, bS as FormFieldObjectType, bG as FormFieldStringType, bH as FormFieldStringTypeFormatOptionsOneOf, eJ as FormLayout, fr as FormOverride, fs as FormProperties, fq as FormRule, ht as FormSubmissionSearchSpec, bx as FormSubmissionStatusUpdatedEvent, g_ as FormSubmissionsCount, aZ as Format, a1 as FormatEnumFormat, hE as FormatEnumFormatWithLiterals, iC as FormatWithLiterals, he as FormattedFormSubmission, hb as FormattedSubmission, cW as GIF, cV as GIFData, ah as GIFType, hU as GIFTypeWithLiterals, cL as GalleryData, cR as GalleryOptions, cS as GalleryOptionsLayout, gL as GetDeletedSubmissionRequest, ha as GetFormattedSubmissionRequest, h2 as GetMediaUploadURLRequest, gt as GetSubmissionByCheckoutIdRequest, gu as GetSubmissionByCheckoutIdResponse, h4 as GetSubmissionDownloadUrlRequest, gr as GetSubmissionRequest, gs as GetSubmissionResponse, dc as Gradient, eN as Group, cY as HTMLData, cZ as HTMLDataDataOneOf, h9 as HeadersEntry, cX as HeadingData, cz as Height, fM as HiddenOptions, g8 as IdentificationData, g9 as IdentificationDataIdOneOf, bl as IdentityType, i_ as IdentityTypeWithLiterals, cN as Image, c_ as ImageData, d0 as ImageDataStyles, aK as ImageFit, im as ImageFitWithLiterals, aI as ImagePosition, ik as ImagePositionWithLiterals, dA as ImageStyles, eU as InPersonOptions, aA as InitialExpandedItems, ib as InitialExpandedItemsWithLiterals, cg as InputField, ch as InputFieldInputTypeOptionsOneOf, a_ as InputType, iD as InputTypeWithLiterals, bO as IntegerType, fZ as IsFormSubmittableRequest, f_ as IsFormSubmittableResponse, cP as Item, cQ as ItemDataOneOf, eL as ItemLayout, eM as ItemLayoutItemOneOf, go as ItemMetadata, cT as ItemStyle, aP as ItemType, is as ItemTypeWithLiterals, b6 as Kind, iL as KindWithLiterals, ay as Layout, dX as LayoutCellData, dV as LayoutData, aF as LayoutDataImagePosition, ih as LayoutDataImagePositionWithLiterals, ad as LayoutType, hQ as LayoutTypeWithLiterals, i9 as LayoutWithLiterals, fD as LimitationRule, a9 as LineStyle, hM as LineStyleWithLiterals, cB as Link, dq as LinkData, cC as LinkDataOneOf, d1 as LinkPreviewData, d2 as LinkPreviewDataStyles, a7 as LinkTarget, hK as LinkTargetWithLiterals, gH as ListDeletedSubmissionsRequest, hc as ListFormattedSubmissionsRequest, hd as ListFormattedSubmissionsResponse, dP as ListValue, eS as Location, eT as LocationLocationInfoOneOf, d3 as MapData, d4 as MapSettings, ak as MapType, hX as MapTypeWithLiterals, eO as Margin, bA as MarketingSubscriptionDetails, cM as Media, d$ as MediaItem, e0 as MediaItemMediaOneOf, e1 as MediaSettings, dr as MentionData, g7 as MessageEnvelope, dY as Metadata, bo as Mode, j1 as ModeWithLiterals, eD as MultilineAddress, c5 as MultilineAddressValidation, fC as NestedForm, c9 as NestedFormFieldOverrides, cd as NestedFormOverrides, cp as Node, cq as NodeDataOneOf, cr as NodeStyle, a3 as NodeType, hG as NodeTypeWithLiterals, aD as NullValue, ie as NullValueWithLiterals, aN as NumberComponentType, iq as NumberComponentTypeWithLiterals, bN as NumberErrorMessages, ef as NumberInput, aL as NumberOfColumns, io as NumberOfColumnsWithLiterals, ee as NumberType, fj as ObjectArray, aX as ObjectArrayComponentType, fk as ObjectArrayComponentTypeOptionsOneOf, iA as ObjectArrayComponentTypeWithLiterals, c8 as ObjectArrayType, bV as ObjectErrorMessages, ek as ObjectType, bT as ObjectTypePropertiesType, bU as ObjectTypePropertiesTypePropertiesTypeOneOf, dH as Oembed, bj as Operator, iY as OperatorWithLiterals, X as OptInLevel, hy as OptInLevelWithLiterals, eq as Option, dg as OptionDesign, db as OptionLayout, fT as OrCondition, bu as OrderDetails, dR as OrderedListData, ae as Orientation, hR as OrientationWithLiterals, b5 as OverrideEntityType, bi as OverrideEntityTypeEnumOverrideEntityType, iX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iK as OverrideEntityTypeWithLiterals, cK as PDFSettings, fo as PageNavigationOptions, d5 as ParagraphData, fd as Payment, aU as PaymentComponentType, fe as PaymentComponentTypeOptionsOneOf, ix as PaymentComponentTypeWithLiterals, eB as PaymentInput, b$ as PaymentType, d7 as Permissions, cl as PhoneConstraints, e_ as PhoneInfo, b0 as PhoneInfoTag, iF as PhoneInfoTagWithLiterals, e8 as PhoneInput, eW as PhoneOptions, av as Placement, i6 as PlacementWithLiterals, dF as PlaybackOptions, cv as PluginContainerData, a5 as PluginContainerDataAlignment, hI as PluginContainerDataAlignmentWithLiterals, cw as PluginContainerDataWidth, cx as PluginContainerDataWidthDataOneOf, dh as Poll, d6 as PollData, di as PollDataLayout, df as PollDesign, da as PollLayout, ao as PollLayoutDirection, h$ as PollLayoutDirectionWithLiterals, an as PollLayoutType, h_ as PollLayoutTypeWithLiterals, d8 as PollOption, as as Position, i3 as PositionWithLiterals, ft as PostSubmissionTriggers, bZ as PredefinedValidation, b_ as PredefinedValidationFormatOptionsOneOf, $ as PriceType, hC as PriceTypeWithLiterals, dD as PricingData, c3 as Product, ex as ProductCheckboxGroup, ey as ProductCheckboxGroupOption, c4 as ProductPriceOptionsOneOf, _ as ProductType, hB as ProductTypeWithLiterals, el as PropertiesType, aQ as PropertiesTypeEnum, it as PropertiesTypeEnumWithLiterals, em as PropertiesTypePropertiesTypeOptionsOneOf, bv as PublicTags, c0 as QuantityLimit, gM as QuerySubmissionRequest, gX as QuerySubmissionsByNamespaceForExportRequest, gY as QuerySubmissionsByNamespaceForExportResponse, gV as QuerySubmissionsByNamespaceRequest, gW as QuerySubmissionsByNamespaceResponse, e2 as RadioGroup, e3 as RadioGroupOption, eg as RatingInput, fI as RedirectOptions, cD as Rel, gD as RemoveSubmissionFromTrashBinRequest, gE as RemoveSubmissionFromTrashBinResponse, by as RemovedSubmissionFromTrash, eI as Repeater, bd as RequiredIndicator, be as RequiredIndicatorPlacement, iT as RequiredIndicatorPlacementWithLiterals, fE as RequiredIndicatorProperties, iS as RequiredIndicatorWithLiterals, fL as RequiredOptions, au as Resizing, i5 as ResizingWithLiterals, aH as ResponsivenessBehaviour, ij as ResponsivenessBehaviourWithLiterals, g2 as RestoreInfo, gC as RestoreSubmissionFromTrashBinRequest, dB as RibbonStyles, co as RichContent, fn as RichContentOptions, fK as Rule, fV as RuleFormOverride, fW as RuleFormOverrideEntityTypeOptionsOneOf, aE as Scaling, ig as ScalingWithLiterals, ff as Scheduling, aY as SchedulingComponentType, fg as SchedulingComponentTypeOptionsOneOf, iB as SchedulingComponentTypeWithLiterals, gS as SearchDetails, gT as SearchSubmissionsByNamespaceForExportRequest, gU as SearchSubmissionsByNamespaceForExportResponse, gP as SearchSubmissionsByNamespaceRequest, eP as Section, ed as ServiceOption, et as ServicesCheckboxGroup, ec as ServicesDropdown, d9 as Settings, ew as Signature, bn as SortOrder, j0 as SortOrderWithLiterals, gO as Sorting, ai as Source, hV as SourceWithLiterals, bc as SpamFilterProtectionLevel, iR as SpamFilterProtectionLevelWithLiterals, cy as Spoiler, dt as SpoilerData, bp as Status, j2 as StatusWithLiterals, fp as Step, a2 as StringComponentType, hF as StringComponentTypeWithLiterals, bI as StringErrorMessages, ci as StringType, bJ as StringTypeDateTimeConstraints, Y as StringTypeFormatEnumFormat, hz as StringTypeFormatEnumFormatWithLiterals, cj as StringTypeFormatOptionsOneOf, bK as StringTypePhoneConstraints, bL as StringTypeValidationMessages, cA as Styles, c$ as StylesBorder, aj as StylesPosition, hW as StylesPositionWithLiterals, bz as SubmissionContactMapped, bB as SubmissionContactMappingSkipped, h5 as SubmissionDocument, h6 as SubmissionDocumentDocumentOneOf, bq as SubmissionErrorType, j3 as SubmissionErrorTypeWithLiterals, W as SubmissionStatus, hx as SubmissionStatusWithLiterals, hp as SubmissionValidationError, hq as SubmissionValidationErrorErrorMessageOneOf, ho as SubmissionValidationErrors, ge as SubmissionValidationErrorsDetails, hu as SubmissionsQueryResult, gb as SubmitContactResponse, fF as SubmitSettings, fG as SubmitSettingsSubmitSuccessActionOptionsOneOf, bg as SubmitSuccessAction, iV as SubmitSuccessActionWithLiterals, br as Submitter, bs as SubmitterSubmitterOneOf, f1 as SubscriptionInfo, ba as SubscriptionInfoOptInLevel, iP as SubscriptionInfoOptInLevelWithLiterals, dL as TableCellData, dJ as TableData, b1 as Tag, bw as TagList, iG as TagWithLiterals, er as Tags, es as TagsOption, bf as Target, iU as TargetWithLiterals, a8 as TextAlignment, hL as TextAlignmentWithLiterals, dk as TextData, cn as TextInput, d_ as TextNodeStyle, cF as TextStyle, fH as ThankYouMessageOptions, cU as Thumbnails, ag as ThumbnailsAlignment, hT as ThumbnailsAlignmentWithLiterals, ea as TimeInput, aW as Type, iz as TypeWithLiterals, hf as UpdateExtendedFieldsRequest, gv as UpdateSubmissionRequest, gw as UpdateSubmissionResponse, aT as UploadFileFormat, iw as UploadFileFormatWithLiterals, fu as UpsertContact, ga as UpsertContactFromSubmissionRequest, fv as V4FormFieldContactInfo, fw as V4FormFieldContactInfoAdditionalInfoOneOf, hl as ValidateFormSubmissionRequest, ca as Validation, gf as ValidationError, Z as ValidationFormat, hA as ValidationFormatWithLiterals, cm as ValidationMessages, cb as ValidationValidationOneOf, aC as VerticalAlignment, aG as VerticalAlignmentAlignment, ii as VerticalAlignmentAlignmentWithLiterals, id as VerticalAlignmentWithLiterals, cO as Video, eV as VideoConferenceOptions, dE as VideoData, ac as ViewMode, hP as ViewModeWithLiterals, al as ViewRole, hY as ViewRoleWithLiterals, am as VoteRole, hZ as VoteRoleWithLiterals, bk as WebhookIdentityType, iZ as WebhookIdentityTypeWithLiterals, aa as Width, a4 as WidthType, hH as WidthTypeWithLiterals, hN as WidthWithLiterals, fb as WixFile, aS as WixFileComponentType, fc as WixFileComponentTypeOptionsOneOf, iv as WixFileComponentTypeWithLiterals, f8 as _Array, f9 as _ArrayComponentTypeOptionsOneOf, f6 as _Boolean, f7 as _BooleanComponentTypeOptionsOneOf, f4 as _Number, f5 as _NumberComponentTypeOptionsOneOf, fa as _Object, f2 as _String, f3 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-Bcjvsrv_.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -1279,6 +1279,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
1279
1279
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
1280
1280
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
1281
1281
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
1282
|
+
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
1282
1283
|
return DecorationType2;
|
|
1283
1284
|
})(DecorationType || {});
|
|
1284
1285
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|