@wix/auto_sdk_forms_submissions 1.0.60 → 1.0.62
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-CHekDXk3.d.ts → forms-v4-submission-submissions.universal-CJRPTs5G.d.ts} +112 -5
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +38 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +38 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +113 -6
- package/build/cjs/meta.js +38 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-CHekDXk3.d.mts → forms-v4-submission-submissions.universal-CJRPTs5G.d.mts} +112 -5
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +34 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +113 -6
- package/build/es/meta.mjs +34 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DllDjVY6.d.ts → forms-v4-submission-submissions.universal-CjdGkOEc.d.ts} +112 -5
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +38 -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 +38 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +113 -6
- package/build/internal/cjs/meta.js +38 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-DllDjVY6.d.mts → forms-v4-submission-submissions.universal-CjdGkOEc.d.mts} +112 -5
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +34 -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 +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +113 -6
- package/build/internal/es/meta.mjs +34 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1126,7 +1126,9 @@ interface Node extends NodeDataOneOf {
|
|
|
1126
1126
|
blockquoteData?: BlockquoteData;
|
|
1127
1127
|
/** Data for a caption node. */
|
|
1128
1128
|
captionData?: CaptionData;
|
|
1129
|
-
/**
|
|
1129
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1130
|
+
layoutData?: LayoutData;
|
|
1131
|
+
/** Data for a cell node. */
|
|
1130
1132
|
layoutCellData?: LayoutCellData;
|
|
1131
1133
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1132
1134
|
type?: NodeTypeWithLiterals;
|
|
@@ -1191,7 +1193,9 @@ interface NodeDataOneOf {
|
|
|
1191
1193
|
blockquoteData?: BlockquoteData;
|
|
1192
1194
|
/** Data for a caption node. */
|
|
1193
1195
|
captionData?: CaptionData;
|
|
1194
|
-
/**
|
|
1196
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1197
|
+
layoutData?: LayoutData;
|
|
1198
|
+
/** Data for a cell node. */
|
|
1195
1199
|
layoutCellData?: LayoutCellData;
|
|
1196
1200
|
}
|
|
1197
1201
|
declare enum NodeType {
|
|
@@ -1814,10 +1818,11 @@ interface HTMLDataDataOneOf {
|
|
|
1814
1818
|
}
|
|
1815
1819
|
declare enum Source {
|
|
1816
1820
|
HTML = "HTML",
|
|
1817
|
-
ADSENSE = "ADSENSE"
|
|
1821
|
+
ADSENSE = "ADSENSE",
|
|
1822
|
+
AI = "AI"
|
|
1818
1823
|
}
|
|
1819
1824
|
/** @enumType */
|
|
1820
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
1825
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1821
1826
|
interface ImageData {
|
|
1822
1827
|
/** Styling for the image's container. */
|
|
1823
1828
|
containerData?: PluginContainerData;
|
|
@@ -2747,6 +2752,108 @@ interface BlockquoteData {
|
|
|
2747
2752
|
interface CaptionData {
|
|
2748
2753
|
textStyle?: TextStyle;
|
|
2749
2754
|
}
|
|
2755
|
+
interface LayoutData {
|
|
2756
|
+
/**
|
|
2757
|
+
* Background color as a hexadecimal value.
|
|
2758
|
+
* @format COLOR_HEX
|
|
2759
|
+
*/
|
|
2760
|
+
backgroundColor?: string | null;
|
|
2761
|
+
/** Background image. */
|
|
2762
|
+
backgroundImage?: BackgroundImage;
|
|
2763
|
+
/**
|
|
2764
|
+
* Border color as a hexadecimal value.
|
|
2765
|
+
* @format COLOR_HEX
|
|
2766
|
+
*/
|
|
2767
|
+
borderColor?: string | null;
|
|
2768
|
+
/** Border width in pixels. */
|
|
2769
|
+
borderWidth?: number | null;
|
|
2770
|
+
/** Border */
|
|
2771
|
+
borderRadius?: number | null;
|
|
2772
|
+
/**
|
|
2773
|
+
* Backdrop color as a hexadecimal value.
|
|
2774
|
+
* @format COLOR_HEX
|
|
2775
|
+
*/
|
|
2776
|
+
backdropColor?: string | null;
|
|
2777
|
+
/** Backdrop image.radius in pixels. */
|
|
2778
|
+
backdropImage?: BackgroundImage;
|
|
2779
|
+
/** Backdrop top padding. */
|
|
2780
|
+
backdropPaddingTop?: number | null;
|
|
2781
|
+
/** Backdrop bottom padding */
|
|
2782
|
+
backdropPaddingBottom?: number | null;
|
|
2783
|
+
/** Horizontal and vertical gap between columns */
|
|
2784
|
+
gap?: number | null;
|
|
2785
|
+
/**
|
|
2786
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
2787
|
+
* @maxSize 4
|
|
2788
|
+
*/
|
|
2789
|
+
cellPadding?: number[];
|
|
2790
|
+
/** Vertical alignment for the cell's items. */
|
|
2791
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
2792
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
2793
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
2794
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
2795
|
+
responsivenessBreakpoint?: number | null;
|
|
2796
|
+
}
|
|
2797
|
+
declare enum Scaling {
|
|
2798
|
+
/** Auto image scaling */
|
|
2799
|
+
AUTO = "AUTO",
|
|
2800
|
+
/** Contain image scaling */
|
|
2801
|
+
CONTAIN = "CONTAIN",
|
|
2802
|
+
/** Cover image scaling */
|
|
2803
|
+
COVER = "COVER"
|
|
2804
|
+
}
|
|
2805
|
+
/** @enumType */
|
|
2806
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2807
|
+
declare enum LayoutDataImagePosition {
|
|
2808
|
+
/** Image positioned at the center */
|
|
2809
|
+
CENTER = "CENTER",
|
|
2810
|
+
/** Image positioned on the left */
|
|
2811
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2812
|
+
/** Image positioned on the right */
|
|
2813
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2814
|
+
/** Image positioned at the center top */
|
|
2815
|
+
TOP = "TOP",
|
|
2816
|
+
/** Image positioned at the top left */
|
|
2817
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2818
|
+
/** Image positioned at the top right */
|
|
2819
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2820
|
+
/** Image positioned at the center bottom */
|
|
2821
|
+
BOTTOM = "BOTTOM",
|
|
2822
|
+
/** Image positioned at the bottom left */
|
|
2823
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2824
|
+
/** Image positioned at the bottom right */
|
|
2825
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2826
|
+
}
|
|
2827
|
+
/** @enumType */
|
|
2828
|
+
type LayoutDataImagePositionWithLiterals = LayoutDataImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2829
|
+
interface BackgroundImage {
|
|
2830
|
+
/** Background image. */
|
|
2831
|
+
media?: Media;
|
|
2832
|
+
/** Background image opacity. */
|
|
2833
|
+
opacity?: number | null;
|
|
2834
|
+
/** Background image scaling. */
|
|
2835
|
+
scaling?: ScalingWithLiterals;
|
|
2836
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2837
|
+
position?: LayoutDataImagePositionWithLiterals;
|
|
2838
|
+
}
|
|
2839
|
+
declare enum VerticalAlignmentAlignment {
|
|
2840
|
+
/** Top alignment */
|
|
2841
|
+
TOP = "TOP",
|
|
2842
|
+
/** Middle alignment */
|
|
2843
|
+
MIDDLE = "MIDDLE",
|
|
2844
|
+
/** Bottom alignment */
|
|
2845
|
+
BOTTOM = "BOTTOM"
|
|
2846
|
+
}
|
|
2847
|
+
/** @enumType */
|
|
2848
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
2849
|
+
declare enum ResponsivenessBehaviour {
|
|
2850
|
+
/** Stacking of columns */
|
|
2851
|
+
STACK = "STACK",
|
|
2852
|
+
/** Wrapping of columns */
|
|
2853
|
+
WRAP = "WRAP"
|
|
2854
|
+
}
|
|
2855
|
+
/** @enumType */
|
|
2856
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
2750
2857
|
interface LayoutCellData {
|
|
2751
2858
|
/** Size of the cell in 12 columns grid. */
|
|
2752
2859
|
colSpan?: number | null;
|
|
@@ -7955,4 +8062,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7955
8062
|
fieldsToValidate?: string[];
|
|
7956
8063
|
}
|
|
7957
8064
|
|
|
7958
|
-
export { InputFieldStringComponentType as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type ValidateFormSubmissionResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionCreatedEnvelope as H, type SubmissionDeletedEnvelope as I, type SubmissionRemovedSubmissionFromTrashEnvelope as J, type SubmissionStatusUpdatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappedEnvelope as M, type SubmissionContactMappingSkippedEnvelope as N, type SubmissionUpdatedEnvelope as O, SubmissionStatus as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, OptInLevel as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, StringTypeFormatEnumFormat as W, ValidationFormat as X, ProductType as Y, PriceType as Z, InputFieldStringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormatEnumFormat as a$, NodeType as a0, WidthType as a1, PluginContainerDataAlignment as a2, ButtonDataType as a3, LinkTarget as a4, TextAlignment as a5, LineStyle as a6, Width as a7, DividerDataAlignment as a8, ViewMode as a9, NullValue as aA, ImagePosition as aB, Alignment as aC, ImageFit as aD, NumberOfColumns as aE, FirstDayOfWeek as aF, InputFieldNumberComponentType as aG, InputFieldBooleanComponentType as aH, ArrayItemsItemType as aI, PropertiesTypePropertiesTypeEnum as aJ, InputFieldArrayComponentType as aK, InputFieldWixFileComponentType as aL, UploadFileFormat as aM, InputFieldPaymentComponentType as aN, InputFieldSchedulingComponentType as aO, Format as aP, MultilineAddressComponentType as aQ, Type as aR, InputFieldInputType as aS, FormFieldContactInfoEmailInfoTag as aT, FormFieldContactInfoPhoneInfoTag as aU, AddressInfoTag as aV, SubscriptionInfoOptInLevel as aW, FormFieldContactInfoContactField as aX, FormFieldV2FieldType as aY, DisplayFieldType as aZ, FieldType as a_, LayoutType as aa, Orientation as ab, Crop as ac, ThumbnailsAlignment as ad, GIFType as ae, Source as af, StylesPosition as ag, MapType as ah, ViewRole as ai, VoteRole as aj, PollLayoutType as ak, PollLayoutDirection as al, BackgroundType as am, DecorationType as an, FontType as ao, Position as ap, AspectRatio as aq, Resizing as ar, Placement as as, CardStylesType as at, CardStylesAlignment as au, Layout as av, AppType as aw, InitialExpandedItems as ax, Direction as ay, VerticalAlignment as az, type CreateSubmissionApplicationErrors as b, type ObjectTypePropertiesType as b$, StringComponentType as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, PaymentComponentType as b7, ComponentType as b8, ObjectArrayComponentType as b9, type SubmitterSubmitterOneOf as bA, type ExtendedFields as bB, type OrderDetails as bC, type PublicTags as bD, type TagList as bE, type FormSubmissionStatusUpdatedEvent as bF, type RemovedSubmissionFromTrash as bG, type SubmissionContactMapped as bH, type MarketingSubscriptionDetails as bI, type SubmissionContactMappingSkipped as bJ, type CreateCheckoutFromSubmissionRequest as bK, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bL, type Form as bM, type FormField as bN, type FormFieldStringType as bO, type FormFieldStringTypeFormatOptionsOneOf as bP, type StringErrorMessages as bQ, type StringTypeDateTimeConstraints as bR, type StringTypePhoneConstraints as bS, type StringTypeValidationMessages as bT, type FormFieldNumberType as bU, type NumberErrorMessages as bV, type IntegerType as bW, type FormFieldBooleanType as bX, type BooleanErrorMessages as bY, type FormFieldArrayType as bZ, type FormFieldObjectType as b_, SchedulingComponentType as ba, InputType as bb, EmailInfoTag as bc, PhoneInfoTag as bd, Tag as be, ConfirmationLevel as bf, ContactField as bg, DisplayFieldDisplayFieldType as bh, OverrideEntityType as bi, Kind as bj, SpamFilterProtectionLevel as bk, RequiredIndicator as bl, RequiredIndicatorPlacement as bm, Target as bn, SubmitSuccessAction as bo, ChangeableProperty as bp, OverrideEntityTypeEnumOverrideEntityType as bq, Operator as br, WebhookIdentityType as bs, IdentityType as bt, ErrorType as bu, SortOrder as bv, Mode as bw, Status as bx, SubmissionErrorType as by, type Submitter as bz, type CreateSubmissionValidationErrors as c, type GIF as c$, type ObjectTypePropertiesTypePropertiesTypeOneOf as c0, type ObjectErrorMessages as c1, type ArrayTypeArrayItems as c2, type ArrayTypeArrayItemsItemsOneOf as c3, type ArrayErrorMessages as c4, type PredefinedValidation as c5, type PredefinedValidationFormatOptionsOneOf as c6, type PaymentType as c7, type QuantityLimit as c8, type FixedPriceOptions as c9, type 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 DynamicPriceOptions as ca, type Product as cb, type ProductPriceOptionsOneOf as cc, type MultilineAddressValidation as cd, type FieldOverrides as ce, type FieldsOverrides as cf, type ObjectArrayType as cg, type NestedFormFieldOverrides as ch, type Validation as ci, type ValidationValidationOneOf as cj, type DataExtensionsDetails as ck, type NestedFormOverrides as cl, type FormFieldV2 as cm, type FormFieldV2FieldTypeOptionsOneOf as cn, type InputFieldStringType as co, type InputFieldStringTypeFormatOptionsOneOf as cp, type InputFieldStringTypeDateTimeConstraints as cq, type InputFieldStringTypePhoneConstraints 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 TextNodeStyle 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 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 ListValue as dS, type AudioData as dT, type OrderedListData as dU, type BulletedListData as dV, type BlockquoteData as dW, type CaptionData as dX, type LayoutCellData as dY, type Metadata as dZ, type DocumentStyle 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 AppEmbedData as dz, type UpdateSubmissionValidationErrors as e, type InputField_NumberComponentTypeOptionsOneOf as e$, type MediaItem as e0, type MediaItemMediaOneOf as e1, type MediaSettings as e2, type RadioGroup as e3, type RadioGroupOption as e4, type CustomOption as e5, type Dropdown as e6, type DropdownOption as e7, type DateTimeInput as e8, type PhoneInput as e9, type ProductCheckboxGroupOption as eA, type DonationInput as eB, type DonationInputOption as eC, type PaymentInput as eD, type FixedPayment as eE, type Appointment as eF, type AppointmentFormatInfoOneOf as eG, type Location as eH, type LocationLocationInfoOneOf as eI, type InPersonOptions as eJ, type VideoConferenceOptions as eK, type PhoneOptions as eL, type MultilineAddress as eM, type AddressLine2 as eN, type DefaultCountryConfig as eO, type DefaultCountryConfigOptionsOneOf as eP, type FieldsSettings as eQ, type V4FormFieldContactInfo as eR, type V4FormFieldContactInfoAdditionalInfoOneOf as eS, type FormFieldContactInfoEmailInfo as eT, type FormFieldContactInfoPhoneInfo as eU, type FormFieldContactInfoAddressInfo as eV, type FormFieldContactInfoCustomFieldInfo as eW, type FormFieldContactInfoSubscriptionInfo as eX, type InputField_String as eY, type InputField_StringComponentTypeOptionsOneOf as eZ, type InputField_Number as e_, type DateInput as ea, type TimeInput as eb, type DatePicker as ec, type ServicesDropdown as ed, type ServiceOption as ee, type InputFieldNumberType as ef, type NumberInput as eg, type RatingInput as eh, type InputFieldBooleanType as ei, type Checkbox as ej, type InputFieldArrayType as ek, type InputFieldIntegerType as el, type InputFieldObjectType as em, type InputFieldObjectTypePropertiesType as en, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eo, type InputFieldArrayTypeArrayItems as ep, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as eq, type CheckboxGroup as er, type Option as es, type Tags as et, type TagsOption as eu, type ServicesCheckboxGroup as ev, type FileType as ew, type FileUpload as ex, type Signature as ey, type ProductCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type Payment as f$, type InputField_Boolean as f0, type InputField_BooleanComponentTypeOptionsOneOf as f1, type InputField_Array as f2, type InputField_ArrayComponentTypeOptionsOneOf as f3, type InputField_Object as f4, type InputField_ObjectValidationOneOf as f5, type InputFieldWixFile as f6, type InputFieldWixFileComponentTypeOptionsOneOf as f7, type InputFieldPayment as f8, type InputFieldPaymentComponentTypeOptionsOneOf as f9, type ArrayItemsItemTypeOptionsOneOf as fA, type Repeater as fB, type FormLayout as fC, type BreakPoint as fD, type ItemLayout as fE, type ItemLayoutItemOneOf as fF, type Group as fG, type Margin as fH, type Section as fI, type FormFieldContactInfo as fJ, type FormFieldContactInfoAdditionalInfoOneOf as fK, type EmailInfo as fL, type PhoneInfo as fM, type AddressInfo as fN, type CustomFieldInfo as fO, type SubscriptionInfo as fP, type _String as fQ, type _StringComponentTypeOptionsOneOf as fR, type _Number as fS, type _NumberComponentTypeOptionsOneOf as fT, type _Boolean as fU, type _BooleanComponentTypeOptionsOneOf as fV, type _Array as fW, type _ArrayComponentTypeOptionsOneOf as fX, type _Object as fY, type WixFile as fZ, type WixFileComponentTypeOptionsOneOf as f_, type InputFieldMultilineAddress as fa, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fb, type InputFieldScheduling as fc, type InputFieldSchedulingComponentTypeOptionsOneOf as fd, type FormFieldV2InputField as fe, type FormFieldV2InputFieldInputTypeOptionsOneOf as ff, type DisplayField as fg, type DisplayFieldDisplayFieldTypeOptionsOneOf as fh, type V4RichContentOptions as fi, type V4PageNavigationOptions as fj, type Field as fk, type FieldFieldTypeOptionsOneOf as fl, type InputField as fm, type InputFieldInputTypeOptionsOneOf as fn, type StringType as fo, type StringTypeFormatOptionsOneOf as fp, type DateTimeConstraints as fq, type PhoneConstraints as fr, type ValidationMessages as fs, type NumberType as ft, type BooleanType as fu, type ArrayType as fv, type ObjectType as fw, type PropertiesType as fx, type PropertiesTypePropertiesTypeOptionsOneOf as fy, type ArrayItems as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterRequest as g$, type PaymentComponentTypeOptionsOneOf as g0, type Scheduling as g1, type SchedulingComponentTypeOptionsOneOf as g2, type Address as g3, type AddressComponentTypeOptionsOneOf as g4, type ObjectArray as g5, type ObjectArrayComponentTypeOptionsOneOf as g6, type FieldsDisplayField as g7, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as g8, type RichContentOptions as g9, type RuleFormOverride as gA, type RuleFormOverrideEntityTypeOptionsOneOf as gB, type CreateCheckoutFromSubmissionResponse as gC, type Checkout as gD, type IsFormSubmittableRequest as gE, type IsFormSubmittableResponse as gF, type DomainEvent as gG, type DomainEventBodyOneOf as gH, type EntityCreatedEvent as gI, type RestoreInfo as gJ, type EntityUpdatedEvent as gK, type EntityDeletedEvent as gL, type ActionEvent as gM, type Empty as gN, type MessageEnvelope as gO, type IdentificationData as gP, type IdentificationDataIdOneOf as gQ, type UpsertContactFromSubmissionRequest as gR, type SubmitContactResponse as gS, type CreateSubmissionRequest as gT, type CreateSubmissionResponse as gU, type SubmissionValidationErrorsDetails as gV, type ValidationError as gW, type CreateSubmissionForMigrationRequest as gX, type CreateSubmissionForMigrationResponse as gY, type CreateSubmissionBySubmitterRequest as gZ, type CreateSubmissionBySubmitterResponse as g_, type PageNavigationOptions as ga, type Step as gb, type FormRule as gc, type FormOverride as gd, type FormProperties as ge, type PostSubmissionTriggers as gf, type UpsertContact as gg, type NestedForm as gh, type LimitationRule as gi, type RequiredIndicatorProperties as gj, type SubmitSettings as gk, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gl, type ThankYouMessageOptions as gm, type RedirectOptions as gn, type FieldGroup as go, type Rule as gp, type RequiredOptions as gq, type HiddenOptions as gr, type AllowedValuesOptions as gs, type FieldOverride as gt, type FieldOverridePropertyTypeOptionsOneOf as gu, type ConditionNode as gv, type ConditionNodeNodeOneOf as gw, type AndCondition as gx, type OrCondition as gy, type Condition as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsByFilterRequest as h$, type BulkCreateSubmissionBySubmitterData as h0, type BulkCreateSubmissionBySubmitterResponse as h1, type BulkSubmissionResult as h2, type ItemMetadata as h3, type ApplicationError as h4, type BulkActionMetadata as h5, type GetSubmissionRequest as h6, type GetSubmissionResponse as h7, type GetSubmissionByCheckoutIdRequest as h8, type GetSubmissionByCheckoutIdResponse as h9, type QuerySubmissionsByNamespaceRequest as hA, type QuerySubmissionsByNamespaceResponse as hB, type QuerySubmissionsByNamespaceForExportRequest as hC, type QuerySubmissionsByNamespaceForExportResponse as hD, type CountSubmissionsByFilterRequest as hE, type FormSubmissionsCount as hF, type CountSubmissionsRequest as hG, type CountDeletedSubmissionsRequest as hH, type FormDeletedSubmissionsCount as hI, type GetMediaUploadURLRequest as hJ, type BulkMarkSubmissionsAsSeenRequest as hK, type BulkMarkSubmissionsAsSeenResponse as hL, type GetSubmissionDownloadUrlRequest as hM, type SubmissionDocument as hN, type SubmissionDocumentDocumentOneOf as hO, type DocumentReady as hP, type DownloadSubmissionRequest as hQ, type HeadersEntry as hR, type GetFormattedSubmissionRequest as hS, type FormattedSubmission as hT, type ListFormattedSubmissionsRequest as hU, type ListFormattedSubmissionsResponse as hV, type FormattedFormSubmission as hW, type UpdateExtendedFieldsRequest as hX, type BulkUpdateFormSubmissionTagsRequest as hY, type BulkUpdateFormSubmissionTagsResponse as hZ, type BulkUpdateFormSubmissionTagsResult as h_, type UpdateSubmissionRequest as ha, type UpdateSubmissionResponse as hb, type ConfirmSubmissionRequest as hc, type DeleteSubmissionRequest as hd, type DeleteSubmissionResponse as he, type BulkDeleteSubmissionRequest as hf, type BulkDeleteSubmissionResult as hg, type RestoreSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinRequest as hi, type RemoveSubmissionFromTrashBinResponse as hj, type BulkRemoveSubmissionFromTrashBinRequest as hk, type BulkRemoveSubmissionFromTrashBinResult as hl, type ListDeletedSubmissionsRequest as hm, type CursorPaging as hn, type CursorPagingMetadata as ho, type Cursors as hp, type GetDeletedSubmissionRequest as hq, type QuerySubmissionRequest as hr, type CursorQueryPagingMethodOneOf as hs, type Sorting as ht, type SearchSubmissionsByNamespaceRequest as hu, type CursorSearch as hv, type CursorSearchPagingMethodOneOf as hw, type SearchDetails as hx, type SearchSubmissionsByNamespaceForExportRequest as hy, type SearchSubmissionsByNamespaceForExportResponse as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type NumberOfColumnsWithLiterals as i$, type BulkUpdateFormSubmissionTagsByFilterResponse as i0, type ValidateFormSubmissionRequest as i1, type FieldViolation as i2, type FieldViolationErrorDataOneOf as i3, type SubmissionValidationErrors as i4, type SubmissionValidationError as i5, type SubmissionValidationErrorErrorMessageOneOf as i6, type BaseEventMetadata as i7, type EventMetadata as i8, type FormSubmissionSearchSpec as i9, type ThumbnailsAlignmentWithLiterals as iA, type GIFTypeWithLiterals as iB, type SourceWithLiterals as iC, type StylesPositionWithLiterals as iD, type MapTypeWithLiterals as iE, type ViewRoleWithLiterals as iF, type VoteRoleWithLiterals as iG, type PollLayoutTypeWithLiterals as iH, type PollLayoutDirectionWithLiterals as iI, type BackgroundTypeWithLiterals as iJ, type DecorationTypeWithLiterals as iK, type FontTypeWithLiterals as iL, type PositionWithLiterals as iM, type AspectRatioWithLiterals as iN, type ResizingWithLiterals as iO, type PlacementWithLiterals as iP, type CardStylesTypeWithLiterals as iQ, type CardStylesAlignmentWithLiterals as iR, type LayoutWithLiterals as iS, type AppTypeWithLiterals as iT, type InitialExpandedItemsWithLiterals as iU, type DirectionWithLiterals as iV, type VerticalAlignmentWithLiterals as iW, type NullValueWithLiterals as iX, type ImagePositionWithLiterals as iY, type AlignmentWithLiterals as iZ, type ImageFitWithLiterals as i_, type SubmissionsQueryResult as ia, type BulkUpdateFormSubmissionTagsOptions as ib, type BulkUpdateFormSubmissionTagsByFilterOptions as ic, type SubmissionStatusWithLiterals as id, type OptInLevelWithLiterals as ie, type StringTypeFormatEnumFormatWithLiterals as ig, type ValidationFormatWithLiterals as ih, type ProductTypeWithLiterals as ii, type PriceTypeWithLiterals as ij, type InputFieldStringTypeFormatEnumFormatWithLiterals as ik, type InputFieldStringComponentTypeWithLiterals as il, type NodeTypeWithLiterals as im, type WidthTypeWithLiterals as io, type PluginContainerDataAlignmentWithLiterals as ip, type ButtonDataTypeWithLiterals as iq, type LinkTargetWithLiterals as ir, type TextAlignmentWithLiterals as is, type LineStyleWithLiterals as it, type WidthWithLiterals as iu, type DividerDataAlignmentWithLiterals as iv, type ViewModeWithLiterals as iw, type LayoutTypeWithLiterals as ix, type OrientationWithLiterals as iy, type CropWithLiterals as iz, type ListDeletedSubmissionsResponse as j, onSubmissionContactMapped as j$, type FirstDayOfWeekWithLiterals as j0, type InputFieldNumberComponentTypeWithLiterals as j1, type InputFieldBooleanComponentTypeWithLiterals as j2, type ArrayItemsItemTypeWithLiterals as j3, type PropertiesTypePropertiesTypeEnumWithLiterals as j4, type InputFieldArrayComponentTypeWithLiterals as j5, type InputFieldWixFileComponentTypeWithLiterals as j6, type UploadFileFormatWithLiterals as j7, type InputFieldPaymentComponentTypeWithLiterals as j8, type InputFieldSchedulingComponentTypeWithLiterals as j9, type PhoneInfoTagWithLiterals as jA, type TagWithLiterals as jB, type ConfirmationLevelWithLiterals as jC, type ContactFieldWithLiterals as jD, type DisplayFieldDisplayFieldTypeWithLiterals as jE, type OverrideEntityTypeWithLiterals as jF, type KindWithLiterals as jG, type SpamFilterProtectionLevelWithLiterals as jH, type RequiredIndicatorWithLiterals as jI, type RequiredIndicatorPlacementWithLiterals as jJ, type TargetWithLiterals as jK, type SubmitSuccessActionWithLiterals as jL, type ChangeablePropertyWithLiterals as jM, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jN, type OperatorWithLiterals as jO, type WebhookIdentityTypeWithLiterals as jP, type IdentityTypeWithLiterals as jQ, type ErrorTypeWithLiterals as jR, type SortOrderWithLiterals as jS, type ModeWithLiterals as jT, type StatusWithLiterals as jU, type SubmissionErrorTypeWithLiterals as jV, type CommonSearchWithEntityContext as jW, onSubmissionCreated as jX, onSubmissionDeleted as jY, onSubmissionRemovedSubmissionFromTrash as jZ, onSubmissionStatusUpdated as j_, type FormatWithLiterals as ja, type MultilineAddressComponentTypeWithLiterals as jb, type TypeWithLiterals as jc, type InputFieldInputTypeWithLiterals as jd, type FormFieldContactInfoEmailInfoTagWithLiterals as je, type FormFieldContactInfoPhoneInfoTagWithLiterals as jf, type AddressInfoTagWithLiterals as jg, type SubscriptionInfoOptInLevelWithLiterals as jh, type FormFieldContactInfoContactFieldWithLiterals as ji, type FormFieldV2FieldTypeWithLiterals as jj, type DisplayFieldTypeWithLiterals as jk, type FieldTypeWithLiterals as jl, type FormatEnumFormatWithLiterals as jm, type StringComponentTypeWithLiterals as jn, type NumberComponentTypeWithLiterals as jo, type BooleanComponentTypeWithLiterals as jp, type ItemTypeWithLiterals as jq, type PropertiesTypeEnumWithLiterals as jr, type ArrayComponentTypeWithLiterals as js, type WixFileComponentTypeWithLiterals as jt, type PaymentComponentTypeWithLiterals as ju, type ComponentTypeWithLiterals as jv, type ObjectArrayComponentTypeWithLiterals as jw, type SchedulingComponentTypeWithLiterals as jx, type InputTypeWithLiterals as jy, type EmailInfoTagWithLiterals as jz, type CursorQuery as k, onSubmissionContactMappingSkipped as k0, onSubmissionUpdated as k1, upsertContactFromSubmission as k2, createSubmission as k3, getSubmission as k4, updateSubmission as k5, confirmSubmission as k6, deleteSubmission as k7, bulkDeleteSubmission as k8, restoreSubmissionFromTrashBin as k9, removeSubmissionFromTrashBin as ka, bulkRemoveSubmissionFromTrashBin as kb, listDeletedSubmissions as kc, getDeletedSubmission as kd, querySubmission as ke, querySubmissionsByNamespace as kf, countSubmissionsByFilter as kg, countSubmissions as kh, countDeletedSubmissions as ki, getMediaUploadUrl as kj, bulkMarkSubmissionsAsSeen as kk, getSubmissionDownloadUrl as kl, downloadSubmission as km, getFormattedSubmission as kn, updateExtendedFields as ko, validateFormSubmission as kp, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
|
|
8065
|
+
export { InputFieldStringComponentType as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type ValidateFormSubmissionResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionCreatedEnvelope as H, type SubmissionDeletedEnvelope as I, type SubmissionRemovedSubmissionFromTrashEnvelope as J, type SubmissionStatusUpdatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappedEnvelope as M, type SubmissionContactMappingSkippedEnvelope as N, type SubmissionUpdatedEnvelope as O, SubmissionStatus as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, OptInLevel as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, StringTypeFormatEnumFormat as W, ValidationFormat as X, ProductType as Y, PriceType as Z, InputFieldStringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, NodeType as a0, WidthType as a1, PluginContainerDataAlignment as a2, ButtonDataType as a3, LinkTarget as a4, TextAlignment as a5, LineStyle as a6, Width as a7, DividerDataAlignment as a8, ViewMode as a9, NullValue as aA, Scaling as aB, LayoutDataImagePosition as aC, VerticalAlignmentAlignment as aD, ResponsivenessBehaviour as aE, ImagePosition as aF, Alignment as aG, ImageFit as aH, NumberOfColumns as aI, FirstDayOfWeek as aJ, InputFieldNumberComponentType as aK, InputFieldBooleanComponentType as aL, ArrayItemsItemType as aM, PropertiesTypePropertiesTypeEnum as aN, InputFieldArrayComponentType as aO, InputFieldWixFileComponentType as aP, UploadFileFormat as aQ, InputFieldPaymentComponentType as aR, InputFieldSchedulingComponentType as aS, Format as aT, MultilineAddressComponentType as aU, Type as aV, InputFieldInputType as aW, FormFieldContactInfoEmailInfoTag as aX, FormFieldContactInfoPhoneInfoTag as aY, AddressInfoTag as aZ, SubscriptionInfoOptInLevel as a_, LayoutType as aa, Orientation as ab, Crop as ac, ThumbnailsAlignment as ad, GIFType as ae, Source as af, StylesPosition as ag, MapType as ah, ViewRole as ai, VoteRole as aj, PollLayoutType as ak, PollLayoutDirection as al, BackgroundType as am, DecorationType as an, FontType as ao, Position as ap, AspectRatio as aq, Resizing as ar, Placement as as, CardStylesType as at, CardStylesAlignment as au, Layout as av, AppType as aw, InitialExpandedItems as ax, Direction as ay, VerticalAlignment as az, type CreateSubmissionApplicationErrors as b, type FormFieldBooleanType as b$, FormFieldV2FieldType as b0, DisplayFieldType as b1, FieldType as b2, FormatEnumFormat as b3, StringComponentType as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, Mode as bA, Status as bB, SubmissionErrorType as bC, type Submitter as bD, type SubmitterSubmitterOneOf as bE, type ExtendedFields as bF, type OrderDetails as bG, type PublicTags as bH, type TagList as bI, type FormSubmissionStatusUpdatedEvent as bJ, type RemovedSubmissionFromTrash as bK, type SubmissionContactMapped as bL, type MarketingSubscriptionDetails as bM, type SubmissionContactMappingSkipped as bN, type CreateCheckoutFromSubmissionRequest as bO, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bP, type Form as bQ, type FormField as bR, type FormFieldStringType as bS, type FormFieldStringTypeFormatOptionsOneOf as bT, type StringErrorMessages as bU, type StringTypeDateTimeConstraints as bV, type StringTypePhoneConstraints as bW, type StringTypeValidationMessages as bX, type FormFieldNumberType as bY, type NumberErrorMessages as bZ, type IntegerType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, ObjectArrayComponentType as bd, SchedulingComponentType as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, ContactField as bk, DisplayFieldDisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, SpamFilterProtectionLevel as bo, RequiredIndicator as bp, RequiredIndicatorPlacement as bq, Target as br, SubmitSuccessAction as bs, ChangeableProperty as bt, OverrideEntityTypeEnumOverrideEntityType as bu, Operator as bv, WebhookIdentityType as bw, IdentityType as bx, ErrorType as by, SortOrder as bz, type CreateSubmissionValidationErrors as c, type GalleryOptionsLayout as c$, type BooleanErrorMessages as c0, type FormFieldArrayType as c1, type FormFieldObjectType as c2, type ObjectTypePropertiesType as c3, type ObjectTypePropertiesTypePropertiesTypeOneOf as c4, type ObjectErrorMessages as c5, type ArrayTypeArrayItems as c6, type ArrayTypeArrayItemsItemsOneOf as c7, type ArrayErrorMessages as c8, type PredefinedValidation as c9, type NodeStyle as cA, type ButtonData as cB, type Border as cC, type Colors as cD, type PluginContainerData as cE, type PluginContainerDataWidth as cF, type PluginContainerDataWidthDataOneOf as cG, type Spoiler as cH, type Height as cI, type Styles as cJ, type Link as cK, type LinkDataOneOf as cL, type Rel as cM, type CodeBlockData as cN, type TextStyle as cO, type DividerData as cP, type FileData as cQ, type FileSource as cR, type FileSourceDataOneOf as cS, type PDFSettings as cT, type GalleryData as cU, type Media as cV, type Image as cW, type Video as cX, type Item as cY, type ItemDataOneOf as cZ, type GalleryOptions as c_, type PredefinedValidationFormatOptionsOneOf as ca, type PaymentType as cb, type QuantityLimit as cc, type FixedPriceOptions as cd, type DynamicPriceOptions as ce, type Product as cf, type ProductPriceOptionsOneOf as cg, type MultilineAddressValidation as ch, type FieldOverrides as ci, type FieldsOverrides as cj, type ObjectArrayType as ck, type NestedFormFieldOverrides as cl, type Validation as cm, type ValidationValidationOneOf as cn, type DataExtensionsDetails as co, type NestedFormOverrides as cp, type FormFieldV2 as cq, type FormFieldV2FieldTypeOptionsOneOf as cr, type InputFieldStringType as cs, type InputFieldStringTypeFormatOptionsOneOf as ct, type InputFieldStringTypeDateTimeConstraints as cu, type InputFieldStringTypePhoneConstraints as cv, type TextInput as cw, type RichContent as cx, type Node as cy, type NodeDataOneOf as cz, type UpdateSubmission as d, type CaptionData as d$, type ItemStyle as d0, type Thumbnails as d1, type GIFData as d2, type GIF as d3, type HeadingData as d4, type HTMLData as d5, type HTMLDataDataOneOf as d6, type ImageData as d7, type StylesBorder as d8, type ImageDataStyles as d9, type MentionData as dA, type FontSizeData as dB, type SpoilerData as dC, type AppEmbedData as dD, type AppEmbedDataAppDataOneOf as dE, type BookingData as dF, type EventData as dG, type ButtonStyles as dH, type ImageStyles as dI, type RibbonStyles as dJ, type CardStyles as dK, type PricingData as dL, type VideoData as dM, type PlaybackOptions as dN, type EmbedData as dO, type Oembed as dP, type CollapsibleListData as dQ, type TableData as dR, type Dimensions as dS, type TableCellData as dT, type CellStyle as dU, type BorderColors as dV, type ListValue as dW, type AudioData as dX, type OrderedListData as dY, type BulletedListData as dZ, type BlockquoteData as d_, type LinkPreviewData as da, type LinkPreviewDataStyles as db, type MapData as dc, type MapSettings as dd, type ParagraphData as de, type PollData as df, type Permissions as dg, type PollOption as dh, type Settings as di, type PollLayout as dj, type OptionLayout as dk, type Gradient as dl, type Background as dm, type BackgroundBackgroundOneOf as dn, type PollDesign as dp, type OptionDesign as dq, type Poll as dr, type PollDataLayout as ds, type Design as dt, type TextData as du, type Decoration as dv, type DecorationDataOneOf as dw, type AnchorData as dx, type ColorData as dy, type LinkData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoAddressInfo as e$, type LayoutData as e0, type BackgroundImage as e1, type LayoutCellData as e2, type Metadata as e3, type DocumentStyle as e4, type TextNodeStyle as e5, type MediaItem as e6, type MediaItemMediaOneOf as e7, type MediaSettings as e8, type RadioGroup as e9, type TagsOption as eA, type ServicesCheckboxGroup as eB, type FileType as eC, type FileUpload as eD, type Signature as eE, type ProductCheckboxGroup as eF, type ProductCheckboxGroupOption as eG, type DonationInput as eH, type DonationInputOption as eI, type PaymentInput as eJ, type FixedPayment as eK, type Appointment as eL, type AppointmentFormatInfoOneOf as eM, type Location as eN, type LocationLocationInfoOneOf as eO, type InPersonOptions as eP, type VideoConferenceOptions as eQ, type PhoneOptions as eR, type MultilineAddress as eS, type AddressLine2 as eT, type DefaultCountryConfig as eU, type DefaultCountryConfigOptionsOneOf as eV, type FieldsSettings as eW, type V4FormFieldContactInfo as eX, type V4FormFieldContactInfoAdditionalInfoOneOf as eY, type FormFieldContactInfoEmailInfo as eZ, type FormFieldContactInfoPhoneInfo as e_, type RadioGroupOption as ea, type CustomOption as eb, type Dropdown as ec, type DropdownOption as ed, type DateTimeInput as ee, type PhoneInput as ef, type DateInput as eg, type TimeInput as eh, type DatePicker as ei, type ServicesDropdown as ej, type ServiceOption as ek, type InputFieldNumberType as el, type NumberInput as em, type RatingInput as en, type InputFieldBooleanType as eo, type Checkbox as ep, type InputFieldArrayType as eq, type InputFieldIntegerType as er, type InputFieldObjectType as es, type InputFieldObjectTypePropertiesType as et, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eu, type InputFieldArrayTypeArrayItems as ev, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as ew, type CheckboxGroup as ex, type Option as ey, type Tags as ez, type ConfirmSubmissionResponse as f, type _BooleanComponentTypeOptionsOneOf as f$, type FormFieldContactInfoCustomFieldInfo as f0, type FormFieldContactInfoSubscriptionInfo as f1, type InputField_String as f2, type InputField_StringComponentTypeOptionsOneOf as f3, type InputField_Number as f4, type InputField_NumberComponentTypeOptionsOneOf as f5, type InputField_Boolean as f6, type InputField_BooleanComponentTypeOptionsOneOf as f7, type InputField_Array as f8, type InputField_ArrayComponentTypeOptionsOneOf as f9, type BooleanType as fA, type ArrayType as fB, type ObjectType as fC, type PropertiesType as fD, type PropertiesTypePropertiesTypeOptionsOneOf as fE, type ArrayItems as fF, type ArrayItemsItemTypeOptionsOneOf as fG, type Repeater as fH, type FormLayout as fI, type BreakPoint as fJ, type ItemLayout as fK, type ItemLayoutItemOneOf as fL, type Group as fM, type Margin as fN, type Section as fO, type FormFieldContactInfo as fP, type FormFieldContactInfoAdditionalInfoOneOf as fQ, type EmailInfo as fR, type PhoneInfo as fS, type AddressInfo as fT, type CustomFieldInfo as fU, type SubscriptionInfo as fV, type _String as fW, type _StringComponentTypeOptionsOneOf as fX, type _Number as fY, type _NumberComponentTypeOptionsOneOf as fZ, type _Boolean as f_, type InputField_Object as fa, type InputField_ObjectValidationOneOf as fb, type InputFieldWixFile as fc, type InputFieldWixFileComponentTypeOptionsOneOf as fd, type InputFieldPayment as fe, type InputFieldPaymentComponentTypeOptionsOneOf as ff, type InputFieldMultilineAddress as fg, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fh, type InputFieldScheduling as fi, type InputFieldSchedulingComponentTypeOptionsOneOf as fj, type FormFieldV2InputField as fk, type FormFieldV2InputFieldInputTypeOptionsOneOf as fl, type DisplayField as fm, type DisplayFieldDisplayFieldTypeOptionsOneOf as fn, type V4RichContentOptions as fo, type V4PageNavigationOptions as fp, type Field as fq, type FieldFieldTypeOptionsOneOf as fr, type InputField as fs, type InputFieldInputTypeOptionsOneOf as ft, type StringType as fu, type StringTypeFormatOptionsOneOf as fv, type DateTimeConstraints as fw, type PhoneConstraints as fx, type ValidationMessages as fy, type NumberType as fz, type BulkDeleteSubmissionResponse as g, type SubmissionValidationErrorsDetails as g$, type _Array as g0, type _ArrayComponentTypeOptionsOneOf as g1, type _Object as g2, type WixFile as g3, type WixFileComponentTypeOptionsOneOf as g4, type Payment as g5, type PaymentComponentTypeOptionsOneOf as g6, type Scheduling as g7, type SchedulingComponentTypeOptionsOneOf as g8, type Address as g9, type FieldOverridePropertyTypeOptionsOneOf as gA, type ConditionNode as gB, type ConditionNodeNodeOneOf as gC, type AndCondition as gD, type OrCondition as gE, type Condition as gF, type RuleFormOverride as gG, type RuleFormOverrideEntityTypeOptionsOneOf as gH, type CreateCheckoutFromSubmissionResponse as gI, type Checkout as gJ, type IsFormSubmittableRequest as gK, type IsFormSubmittableResponse as gL, type DomainEvent as gM, type DomainEventBodyOneOf as gN, type EntityCreatedEvent as gO, type RestoreInfo as gP, type EntityUpdatedEvent as gQ, type EntityDeletedEvent as gR, type ActionEvent as gS, type Empty as gT, type MessageEnvelope as gU, type IdentificationData as gV, type IdentificationDataIdOneOf as gW, type UpsertContactFromSubmissionRequest as gX, type SubmitContactResponse as gY, type CreateSubmissionRequest as gZ, type CreateSubmissionResponse as g_, type AddressComponentTypeOptionsOneOf as ga, type ObjectArray as gb, type ObjectArrayComponentTypeOptionsOneOf as gc, type FieldsDisplayField as gd, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as ge, type RichContentOptions as gf, type PageNavigationOptions as gg, type Step as gh, type FormRule as gi, type FormOverride as gj, type FormProperties as gk, type PostSubmissionTriggers as gl, type UpsertContact as gm, type NestedForm as gn, type LimitationRule as go, type RequiredIndicatorProperties as gp, type SubmitSettings as gq, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gr, type ThankYouMessageOptions as gs, type RedirectOptions as gt, type FieldGroup as gu, type Rule as gv, type RequiredOptions as gw, type HiddenOptions as gx, type AllowedValuesOptions as gy, type FieldOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ListFormattedSubmissionsResponse as h$, type ValidationError as h0, type CreateSubmissionForMigrationRequest as h1, type CreateSubmissionForMigrationResponse as h2, type CreateSubmissionBySubmitterRequest as h3, type CreateSubmissionBySubmitterResponse as h4, type BulkCreateSubmissionBySubmitterRequest as h5, type BulkCreateSubmissionBySubmitterData as h6, type BulkCreateSubmissionBySubmitterResponse as h7, type BulkSubmissionResult as h8, type ItemMetadata as h9, type SearchSubmissionsByNamespaceRequest as hA, type CursorSearch as hB, type CursorSearchPagingMethodOneOf as hC, type SearchDetails as hD, type SearchSubmissionsByNamespaceForExportRequest as hE, type SearchSubmissionsByNamespaceForExportResponse as hF, type QuerySubmissionsByNamespaceRequest as hG, type QuerySubmissionsByNamespaceResponse as hH, type QuerySubmissionsByNamespaceForExportRequest as hI, type QuerySubmissionsByNamespaceForExportResponse as hJ, type CountSubmissionsByFilterRequest as hK, type FormSubmissionsCount as hL, type CountSubmissionsRequest as hM, type CountDeletedSubmissionsRequest as hN, type FormDeletedSubmissionsCount as hO, type GetMediaUploadURLRequest as hP, type BulkMarkSubmissionsAsSeenRequest as hQ, type BulkMarkSubmissionsAsSeenResponse as hR, type GetSubmissionDownloadUrlRequest as hS, type SubmissionDocument as hT, type SubmissionDocumentDocumentOneOf as hU, type DocumentReady as hV, type DownloadSubmissionRequest as hW, type HeadersEntry as hX, type GetFormattedSubmissionRequest as hY, type FormattedSubmission as hZ, type ListFormattedSubmissionsRequest as h_, type ApplicationError as ha, type BulkActionMetadata as hb, type GetSubmissionRequest as hc, type GetSubmissionResponse as hd, type GetSubmissionByCheckoutIdRequest as he, type GetSubmissionByCheckoutIdResponse as hf, type UpdateSubmissionRequest as hg, type UpdateSubmissionResponse as hh, type ConfirmSubmissionRequest as hi, type DeleteSubmissionRequest as hj, type DeleteSubmissionResponse as hk, type BulkDeleteSubmissionRequest as hl, type BulkDeleteSubmissionResult as hm, type RestoreSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinResponse as hp, type BulkRemoveSubmissionFromTrashBinRequest as hq, type BulkRemoveSubmissionFromTrashBinResult as hr, type ListDeletedSubmissionsRequest as hs, type CursorPaging as ht, type CursorPagingMetadata as hu, type Cursors as hv, type GetDeletedSubmissionRequest as hw, type QuerySubmissionRequest as hx, type CursorQueryPagingMethodOneOf as hy, type Sorting as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type DirectionWithLiterals as i$, type FormattedFormSubmission as i0, type UpdateExtendedFieldsRequest as i1, type BulkUpdateFormSubmissionTagsRequest as i2, type BulkUpdateFormSubmissionTagsResponse as i3, type BulkUpdateFormSubmissionTagsResult as i4, type BulkUpdateFormSubmissionTagsByFilterRequest as i5, type BulkUpdateFormSubmissionTagsByFilterResponse as i6, type ValidateFormSubmissionRequest as i7, type FieldViolation as i8, type FieldViolationErrorDataOneOf as i9, type WidthWithLiterals as iA, type DividerDataAlignmentWithLiterals as iB, type ViewModeWithLiterals as iC, type LayoutTypeWithLiterals as iD, type OrientationWithLiterals as iE, type CropWithLiterals as iF, type ThumbnailsAlignmentWithLiterals as iG, type GIFTypeWithLiterals as iH, type SourceWithLiterals as iI, type StylesPositionWithLiterals as iJ, type MapTypeWithLiterals as iK, type ViewRoleWithLiterals as iL, type VoteRoleWithLiterals as iM, type PollLayoutTypeWithLiterals as iN, type PollLayoutDirectionWithLiterals as iO, type BackgroundTypeWithLiterals as iP, type DecorationTypeWithLiterals as iQ, type FontTypeWithLiterals as iR, type PositionWithLiterals as iS, type AspectRatioWithLiterals as iT, type ResizingWithLiterals as iU, type PlacementWithLiterals as iV, type CardStylesTypeWithLiterals as iW, type CardStylesAlignmentWithLiterals as iX, type LayoutWithLiterals as iY, type AppTypeWithLiterals as iZ, type InitialExpandedItemsWithLiterals as i_, type SubmissionValidationErrors as ia, type SubmissionValidationError as ib, type SubmissionValidationErrorErrorMessageOneOf as ic, type BaseEventMetadata as id, type EventMetadata as ie, type FormSubmissionSearchSpec as ig, type SubmissionsQueryResult as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions as ij, type SubmissionStatusWithLiterals as ik, type OptInLevelWithLiterals as il, type StringTypeFormatEnumFormatWithLiterals as im, type ValidationFormatWithLiterals as io, type ProductTypeWithLiterals as ip, type PriceTypeWithLiterals as iq, type InputFieldStringTypeFormatEnumFormatWithLiterals as ir, type InputFieldStringComponentTypeWithLiterals as is, type NodeTypeWithLiterals as it, type WidthTypeWithLiterals as iu, type PluginContainerDataAlignmentWithLiterals as iv, type ButtonDataTypeWithLiterals as iw, type LinkTargetWithLiterals as ix, type TextAlignmentWithLiterals as iy, type LineStyleWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ErrorTypeWithLiterals as j$, type VerticalAlignmentWithLiterals as j0, type NullValueWithLiterals as j1, type ScalingWithLiterals as j2, type LayoutDataImagePositionWithLiterals as j3, type VerticalAlignmentAlignmentWithLiterals as j4, type ResponsivenessBehaviourWithLiterals as j5, type ImagePositionWithLiterals as j6, type AlignmentWithLiterals as j7, type ImageFitWithLiterals as j8, type NumberOfColumnsWithLiterals as j9, type ItemTypeWithLiterals as jA, type PropertiesTypeEnumWithLiterals as jB, type ArrayComponentTypeWithLiterals as jC, type WixFileComponentTypeWithLiterals as jD, type PaymentComponentTypeWithLiterals as jE, type ComponentTypeWithLiterals as jF, type ObjectArrayComponentTypeWithLiterals as jG, type SchedulingComponentTypeWithLiterals as jH, type InputTypeWithLiterals as jI, type EmailInfoTagWithLiterals as jJ, type PhoneInfoTagWithLiterals as jK, type TagWithLiterals as jL, type ConfirmationLevelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldDisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type SpamFilterProtectionLevelWithLiterals as jR, type RequiredIndicatorWithLiterals as jS, type RequiredIndicatorPlacementWithLiterals as jT, type TargetWithLiterals as jU, type SubmitSuccessActionWithLiterals as jV, type ChangeablePropertyWithLiterals as jW, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jX, type OperatorWithLiterals as jY, type WebhookIdentityTypeWithLiterals as jZ, type IdentityTypeWithLiterals as j_, type FirstDayOfWeekWithLiterals as ja, type InputFieldNumberComponentTypeWithLiterals as jb, type InputFieldBooleanComponentTypeWithLiterals as jc, type ArrayItemsItemTypeWithLiterals as jd, type PropertiesTypePropertiesTypeEnumWithLiterals as je, type InputFieldArrayComponentTypeWithLiterals as jf, type InputFieldWixFileComponentTypeWithLiterals as jg, type UploadFileFormatWithLiterals as jh, type InputFieldPaymentComponentTypeWithLiterals as ji, type InputFieldSchedulingComponentTypeWithLiterals as jj, type FormatWithLiterals as jk, type MultilineAddressComponentTypeWithLiterals as jl, type TypeWithLiterals as jm, type InputFieldInputTypeWithLiterals as jn, type FormFieldContactInfoEmailInfoTagWithLiterals as jo, type FormFieldContactInfoPhoneInfoTagWithLiterals as jp, type AddressInfoTagWithLiterals as jq, type SubscriptionInfoOptInLevelWithLiterals as jr, type FormFieldContactInfoContactFieldWithLiterals as js, type FormFieldV2FieldTypeWithLiterals as jt, type DisplayFieldTypeWithLiterals as ju, type FieldTypeWithLiterals as jv, type FormatEnumFormatWithLiterals as jw, type StringComponentTypeWithLiterals as jx, type NumberComponentTypeWithLiterals as jy, type BooleanComponentTypeWithLiterals as jz, type CursorQuery as k, type SortOrderWithLiterals as k0, type ModeWithLiterals as k1, type StatusWithLiterals as k2, type SubmissionErrorTypeWithLiterals as k3, type CommonSearchWithEntityContext as k4, onSubmissionCreated as k5, onSubmissionDeleted as k6, onSubmissionRemovedSubmissionFromTrash as k7, onSubmissionStatusUpdated as k8, onSubmissionContactMapped as k9, onSubmissionContactMappingSkipped as ka, onSubmissionUpdated as kb, upsertContactFromSubmission as kc, createSubmission as kd, getSubmission as ke, updateSubmission as kf, confirmSubmission as kg, deleteSubmission as kh, bulkDeleteSubmission as ki, restoreSubmissionFromTrashBin as kj, removeSubmissionFromTrashBin as kk, bulkRemoveSubmissionFromTrashBin as kl, listDeletedSubmissions as km, getDeletedSubmission as kn, querySubmission as ko, querySubmissionsByNamespace as kp, countSubmissionsByFilter as kq, countSubmissions as kr, countDeletedSubmissions as ks, getMediaUploadUrl as kt, bulkMarkSubmissionsAsSeen as ku, getSubmissionDownloadUrl as kv, downloadSubmission as kw, getFormattedSubmission as kx, updateExtendedFields as ky, validateFormSubmission as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
|
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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, E as ValidateFormSubmissionResponse, H as SubmissionCreatedEnvelope, I as SubmissionDeletedEnvelope, J as SubmissionRemovedSubmissionFromTrashEnvelope, K as SubmissionStatusUpdatedEnvelope, M as SubmissionContactMappedEnvelope, N as SubmissionContactMappingSkippedEnvelope, O as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { gM as ActionEvent, g3 as Address, g4 as AddressComponentTypeOptionsOneOf, fN as AddressInfo, aV as AddressInfoTag, jg as AddressInfoTagWithLiterals, eN as AddressLine2, aC as Alignment, iZ as AlignmentWithLiterals, gs as AllowedValuesOptions, dt as AnchorData, gx as AndCondition, dz as AppEmbedData, dA as AppEmbedDataAppDataOneOf, aw as AppType, iT as AppTypeWithLiterals, h4 as ApplicationError, eF as Appointment, eG as AppointmentFormatInfoOneOf, b5 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, c4 as ArrayErrorMessages, fz as ArrayItems, aI as ArrayItemsItemType, fA as ArrayItemsItemTypeOptionsOneOf, j3 as ArrayItemsItemTypeWithLiterals, fv as ArrayType, c2 as ArrayTypeArrayItems, c3 as ArrayTypeArrayItemsItemsOneOf, aq as AspectRatio, iN as AspectRatioWithLiterals, dT as AudioData, di as Background, dj as BackgroundBackgroundOneOf, am as BackgroundType, iJ as BackgroundTypeWithLiterals, i7 as BaseEventMetadata, dW as BlockquoteData, dB as BookingData, b2 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, bY as BooleanErrorMessages, fu as BooleanType, cy as Border, dR as BorderColors, fD as BreakPoint, h5 as BulkActionMetadata, h0 as BulkCreateSubmissionBySubmitterData, g$ as BulkCreateSubmissionBySubmitterRequest, h1 as BulkCreateSubmissionBySubmitterResponse, hf as BulkDeleteSubmissionRequest, hg as BulkDeleteSubmissionResult, hK as BulkMarkSubmissionsAsSeenRequest, hL as BulkMarkSubmissionsAsSeenResponse, hk as BulkRemoveSubmissionFromTrashBinRequest, hl as BulkRemoveSubmissionFromTrashBinResult, h2 as BulkSubmissionResult, ic as BulkUpdateFormSubmissionTagsByFilterOptions, h$ as BulkUpdateFormSubmissionTagsByFilterRequest, i0 as BulkUpdateFormSubmissionTagsByFilterResponse, ib as BulkUpdateFormSubmissionTagsOptions, hY as BulkUpdateFormSubmissionTagsRequest, hZ as BulkUpdateFormSubmissionTagsResponse, h_ as BulkUpdateFormSubmissionTagsResult, dV as BulletedListData, cx as ButtonData, a3 as ButtonDataType, iq as ButtonDataTypeWithLiterals, dD as ButtonStyles, dX as CaptionData, dG as CardStyles, au as CardStylesAlignment, iR as CardStylesAlignmentWithLiterals, at as CardStylesType, iQ as CardStylesTypeWithLiterals, dQ as CellStyle, bp as ChangeableProperty, jM as ChangeablePropertyWithLiterals, ej as Checkbox, er as CheckboxGroup, gD as Checkout, cJ as CodeBlockData, dM as CollapsibleListData, du as ColorData, cz as Colors, jW as CommonSearchWithEntityContext, b8 as ComponentType, jv as ComponentTypeWithLiterals, gz as Condition, gv as ConditionNode, gw as ConditionNodeNodeOneOf, hc as ConfirmSubmissionRequest, bf as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bg as ContactField, jD as ContactFieldWithLiterals, hH as CountDeletedSubmissionsRequest, hE as CountSubmissionsByFilterRequest, hG as CountSubmissionsRequest, bK as CreateCheckoutFromSubmissionRequest, bL as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gC as CreateCheckoutFromSubmissionResponse, gZ as CreateSubmissionBySubmitterRequest, g_ as CreateSubmissionBySubmitterResponse, gX as CreateSubmissionForMigrationRequest, gY as CreateSubmissionForMigrationResponse, gT as CreateSubmissionRequest, gU as CreateSubmissionResponse, ac as Crop, iz as CropWithLiterals, hn as CursorPaging, ho as CursorPagingMetadata, hs as CursorQueryPagingMethodOneOf, hv as CursorSearch, hw as CursorSearchPagingMethodOneOf, hp as Cursors, fO as CustomFieldInfo, e5 as CustomOption, ck as DataExtensionsDetails, ea as DateInput, ec as DatePicker, fq as DateTimeConstraints, e8 as DateTimeInput, dr as Decoration, ds as DecorationDataOneOf, an as DecorationType, iK as DecorationTypeWithLiterals, eO as DefaultCountryConfig, eP as DefaultCountryConfigOptionsOneOf, hd as DeleteSubmissionRequest, he as DeleteSubmissionResponse, dp as Design, dO as Dimensions, ay as Direction, iV as DirectionWithLiterals, fg as DisplayField, bh as DisplayFieldDisplayFieldType, fh as DisplayFieldDisplayFieldTypeOptionsOneOf, jE as DisplayFieldDisplayFieldTypeWithLiterals, aZ as DisplayFieldType, jk as DisplayFieldTypeWithLiterals, cL as DividerData, a8 as DividerDataAlignment, iv as DividerDataAlignmentWithLiterals, hP as DocumentReady, d_ as DocumentStyle, gG as DomainEvent, gH as DomainEventBodyOneOf, eB as DonationInput, eC as DonationInputOption, hQ as DownloadSubmissionRequest, e6 as Dropdown, e7 as DropdownOption, ca as DynamicPriceOptions, fL as EmailInfo, bc as EmailInfoTag, jz as EmailInfoTagWithLiterals, dK as EmbedData, gN as Empty, gI as EntityCreatedEvent, gL as EntityDeletedEvent, gK as EntityUpdatedEvent, bu as ErrorType, jR as ErrorTypeWithLiterals, dC as EventData, i8 as EventMetadata, bB as ExtendedFields, fk as Field, fl as FieldFieldTypeOptionsOneOf, go as FieldGroup, gt as FieldOverride, gu as FieldOverridePropertyTypeOptionsOneOf, ce as FieldOverrides, a_ as FieldType, jl as FieldTypeWithLiterals, i2 as FieldViolation, i3 as FieldViolationErrorDataOneOf, g7 as FieldsDisplayField, g8 as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cf as FieldsOverrides, eQ as FieldsSettings, cM as FileData, cN as FileSource, cO as FileSourceDataOneOf, ew as FileType, ex as FileUpload, aF as FirstDayOfWeek, j0 as FirstDayOfWeekWithLiterals, eE as FixedPayment, c9 as FixedPriceOptions, dx as FontSizeData, ao as FontType, iL as FontTypeWithLiterals, bM as Form, hI as FormDeletedSubmissionsCount, bN as FormField, bZ as FormFieldArrayType, bX as FormFieldBooleanType, fJ as FormFieldContactInfo, fK as FormFieldContactInfoAdditionalInfoOneOf, eV as FormFieldContactInfoAddressInfo, aX as FormFieldContactInfoContactField, ji as FormFieldContactInfoContactFieldWithLiterals, eW as FormFieldContactInfoCustomFieldInfo, eT as FormFieldContactInfoEmailInfo, aT as FormFieldContactInfoEmailInfoTag, je as FormFieldContactInfoEmailInfoTagWithLiterals, eU as FormFieldContactInfoPhoneInfo, aU as FormFieldContactInfoPhoneInfoTag, jf as FormFieldContactInfoPhoneInfoTagWithLiterals, eX as FormFieldContactInfoSubscriptionInfo, bU as FormFieldNumberType, b_ as FormFieldObjectType, bO as FormFieldStringType, bP as FormFieldStringTypeFormatOptionsOneOf, cm as FormFieldV2, aY as FormFieldV2FieldType, cn as FormFieldV2FieldTypeOptionsOneOf, jj as FormFieldV2FieldTypeWithLiterals, fe as FormFieldV2InputField, ff as FormFieldV2InputFieldInputTypeOptionsOneOf, fC as FormLayout, gd as FormOverride, ge as FormProperties, gc as FormRule, i9 as FormSubmissionSearchSpec, bF as FormSubmissionStatusUpdatedEvent, hF as FormSubmissionsCount, aP as Format, a$ as FormatEnumFormat, jm as FormatEnumFormatWithLiterals, ja as FormatWithLiterals, hW as FormattedFormSubmission, hT as FormattedSubmission, c$ as GIF, c_ as GIFData, ae as GIFType, iB as GIFTypeWithLiterals, cQ as GalleryData, cW as GalleryOptions, cX as GalleryOptionsLayout, hq as GetDeletedSubmissionRequest, hS as GetFormattedSubmissionRequest, hJ as GetMediaUploadURLRequest, h8 as GetSubmissionByCheckoutIdRequest, h9 as GetSubmissionByCheckoutIdResponse, hM as GetSubmissionDownloadUrlRequest, h6 as GetSubmissionRequest, h7 as GetSubmissionResponse, dh as Gradient, fG as Group, d1 as HTMLData, d2 as HTMLDataDataOneOf, hR as HeadersEntry, d0 as HeadingData, cE as Height, gr as HiddenOptions, gP as IdentificationData, gQ as IdentificationDataIdOneOf, bt as IdentityType, jQ as IdentityTypeWithLiterals, cS as Image, d3 as ImageData, d5 as ImageDataStyles, aD as ImageFit, i_ as ImageFitWithLiterals, aB as ImagePosition, iY as ImagePositionWithLiterals, dE as ImageStyles, eJ as InPersonOptions, ax as InitialExpandedItems, iU as InitialExpandedItemsWithLiterals, fm as InputField, aK as InputFieldArrayComponentType, j5 as InputFieldArrayComponentTypeWithLiterals, ek as InputFieldArrayType, ep as InputFieldArrayTypeArrayItems, eq as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aH as InputFieldBooleanComponentType, j2 as InputFieldBooleanComponentTypeWithLiterals, ei as InputFieldBooleanType, aS as InputFieldInputType, fn as InputFieldInputTypeOptionsOneOf, jd as InputFieldInputTypeWithLiterals, el as InputFieldIntegerType, fa as InputFieldMultilineAddress, fb as InputFieldMultilineAddressComponentTypeOptionsOneOf, aG as InputFieldNumberComponentType, j1 as InputFieldNumberComponentTypeWithLiterals, ef as InputFieldNumberType, em as InputFieldObjectType, en as InputFieldObjectTypePropertiesType, eo as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, f8 as InputFieldPayment, aN as InputFieldPaymentComponentType, f9 as InputFieldPaymentComponentTypeOptionsOneOf, j8 as InputFieldPaymentComponentTypeWithLiterals, fc as InputFieldScheduling, aO as InputFieldSchedulingComponentType, fd as InputFieldSchedulingComponentTypeOptionsOneOf, j9 as InputFieldSchedulingComponentTypeWithLiterals, $ as InputFieldStringComponentType, il as InputFieldStringComponentTypeWithLiterals, co as InputFieldStringType, cq as InputFieldStringTypeDateTimeConstraints, _ as InputFieldStringTypeFormatEnumFormat, ik as InputFieldStringTypeFormatEnumFormatWithLiterals, cp as InputFieldStringTypeFormatOptionsOneOf, cr as InputFieldStringTypePhoneConstraints, f6 as InputFieldWixFile, aL as InputFieldWixFileComponentType, f7 as InputFieldWixFileComponentTypeOptionsOneOf, j6 as InputFieldWixFileComponentTypeWithLiterals, f2 as InputField_Array, f3 as InputField_ArrayComponentTypeOptionsOneOf, f0 as InputField_Boolean, f1 as InputField_BooleanComponentTypeOptionsOneOf, e_ as InputField_Number, e$ as InputField_NumberComponentTypeOptionsOneOf, f4 as InputField_Object, f5 as InputField_ObjectValidationOneOf, eY as InputField_String, eZ as InputField_StringComponentTypeOptionsOneOf, bb as InputType, jy as InputTypeWithLiterals, bW as IntegerType, gE as IsFormSubmittableRequest, gF as IsFormSubmittableResponse, cU as Item, cV as ItemDataOneOf, fE as ItemLayout, fF as ItemLayoutItemOneOf, h3 as ItemMetadata, cY as ItemStyle, b3 as ItemType, jq as ItemTypeWithLiterals, bj as Kind, jG as KindWithLiterals, av as Layout, dY as LayoutCellData, aa as LayoutType, ix as LayoutTypeWithLiterals, iS as LayoutWithLiterals, gi as LimitationRule, a6 as LineStyle, it as LineStyleWithLiterals, cG as Link, dv as LinkData, cH as LinkDataOneOf, d6 as LinkPreviewData, d7 as LinkPreviewDataStyles, a4 as LinkTarget, ir as LinkTargetWithLiterals, hm as ListDeletedSubmissionsRequest, hU as ListFormattedSubmissionsRequest, hV as ListFormattedSubmissionsResponse, dS as ListValue, eH as Location, eI as LocationLocationInfoOneOf, d8 as MapData, d9 as MapSettings, ah as MapType, iE as MapTypeWithLiterals, fH as Margin, bI as MarketingSubscriptionDetails, cR as Media, e0 as MediaItem, e1 as MediaItemMediaOneOf, e2 as MediaSettings, dw as MentionData, gO as MessageEnvelope, dZ as Metadata, bw as Mode, jT as ModeWithLiterals, eM as MultilineAddress, aQ as MultilineAddressComponentType, jb as MultilineAddressComponentTypeWithLiterals, cd as MultilineAddressValidation, gh as NestedForm, ch as NestedFormFieldOverrides, cl as NestedFormOverrides, cu as Node, cv as NodeDataOneOf, cw as NodeStyle, a0 as NodeType, im as NodeTypeWithLiterals, aA as NullValue, iX as NullValueWithLiterals, b1 as NumberComponentType, jo as NumberComponentTypeWithLiterals, bV as NumberErrorMessages, eg as NumberInput, aE as NumberOfColumns, i$ as NumberOfColumnsWithLiterals, ft as NumberType, g5 as ObjectArray, b9 as ObjectArrayComponentType, g6 as ObjectArrayComponentTypeOptionsOneOf, jw as ObjectArrayComponentTypeWithLiterals, cg as ObjectArrayType, c1 as ObjectErrorMessages, fw as ObjectType, b$ as ObjectTypePropertiesType, c0 as ObjectTypePropertiesTypePropertiesTypeOneOf, dL as Oembed, br as Operator, jO as OperatorWithLiterals, T as OptInLevel, ie as OptInLevelWithLiterals, es as Option, dl as OptionDesign, dg as OptionLayout, gy as OrCondition, bC as OrderDetails, dU as OrderedListData, ab as Orientation, iy as OrientationWithLiterals, bi as OverrideEntityType, bq as OverrideEntityTypeEnumOverrideEntityType, jN as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jF as OverrideEntityTypeWithLiterals, cP as PDFSettings, ga as PageNavigationOptions, da as ParagraphData, f$ as Payment, b7 as PaymentComponentType, g0 as PaymentComponentTypeOptionsOneOf, ju as PaymentComponentTypeWithLiterals, eD as PaymentInput, c7 as PaymentType, dc as Permissions, fr as PhoneConstraints, fM as PhoneInfo, bd as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, e9 as PhoneInput, eL as PhoneOptions, as as Placement, iP as PlacementWithLiterals, dJ as PlaybackOptions, cA as PluginContainerData, a2 as PluginContainerDataAlignment, ip as PluginContainerDataAlignmentWithLiterals, cB as PluginContainerDataWidth, cC as PluginContainerDataWidthDataOneOf, dm as Poll, db as PollData, dn as PollDataLayout, dk as PollDesign, df as PollLayout, al as PollLayoutDirection, iI as PollLayoutDirectionWithLiterals, ak as PollLayoutType, iH as PollLayoutTypeWithLiterals, dd as PollOption, ap as Position, iM as PositionWithLiterals, gf as PostSubmissionTriggers, c5 as PredefinedValidation, c6 as PredefinedValidationFormatOptionsOneOf, Z as PriceType, ij as PriceTypeWithLiterals, dH as PricingData, cb as Product, ez as ProductCheckboxGroup, eA as ProductCheckboxGroupOption, cc as ProductPriceOptionsOneOf, Y as ProductType, ii as ProductTypeWithLiterals, fx as PropertiesType, b4 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, aJ as PropertiesTypePropertiesTypeEnum, j4 as PropertiesTypePropertiesTypeEnumWithLiterals, fy as PropertiesTypePropertiesTypeOptionsOneOf, bD as PublicTags, c8 as QuantityLimit, hr as QuerySubmissionRequest, hC as QuerySubmissionsByNamespaceForExportRequest, hD as QuerySubmissionsByNamespaceForExportResponse, hA as QuerySubmissionsByNamespaceRequest, hB as QuerySubmissionsByNamespaceResponse, e3 as RadioGroup, e4 as RadioGroupOption, eh as RatingInput, gn as RedirectOptions, cI as Rel, hi as RemoveSubmissionFromTrashBinRequest, hj as RemoveSubmissionFromTrashBinResponse, bG as RemovedSubmissionFromTrash, fB as Repeater, bl as RequiredIndicator, bm as RequiredIndicatorPlacement, jJ as RequiredIndicatorPlacementWithLiterals, gj as RequiredIndicatorProperties, jI as RequiredIndicatorWithLiterals, gq as RequiredOptions, ar as Resizing, iO as ResizingWithLiterals, gJ as RestoreInfo, hh as RestoreSubmissionFromTrashBinRequest, dF as RibbonStyles, ct as RichContent, g9 as RichContentOptions, gp as Rule, gA as RuleFormOverride, gB as RuleFormOverrideEntityTypeOptionsOneOf, g1 as Scheduling, ba as SchedulingComponentType, g2 as SchedulingComponentTypeOptionsOneOf, jx as SchedulingComponentTypeWithLiterals, hx as SearchDetails, hy as SearchSubmissionsByNamespaceForExportRequest, hz as SearchSubmissionsByNamespaceForExportResponse, hu as SearchSubmissionsByNamespaceRequest, fI as Section, ee as ServiceOption, ev as ServicesCheckboxGroup, ed as ServicesDropdown, de as Settings, ey as Signature, bv as SortOrder, jS as SortOrderWithLiterals, ht as Sorting, af as Source, iC as SourceWithLiterals, bk as SpamFilterProtectionLevel, jH as SpamFilterProtectionLevelWithLiterals, cD as Spoiler, dy as SpoilerData, bx as Status, jU as StatusWithLiterals, gb as Step, b0 as StringComponentType, jn as StringComponentTypeWithLiterals, bQ as StringErrorMessages, fo as StringType, bR as StringTypeDateTimeConstraints, W as StringTypeFormatEnumFormat, ig as StringTypeFormatEnumFormatWithLiterals, fp as StringTypeFormatOptionsOneOf, bS as StringTypePhoneConstraints, bT as StringTypeValidationMessages, cF as Styles, d4 as StylesBorder, ag as StylesPosition, iD as StylesPositionWithLiterals, bH as SubmissionContactMapped, bJ as SubmissionContactMappingSkipped, hN as SubmissionDocument, hO as SubmissionDocumentDocumentOneOf, by as SubmissionErrorType, jV as SubmissionErrorTypeWithLiterals, P as SubmissionStatus, id as SubmissionStatusWithLiterals, i5 as SubmissionValidationError, i6 as SubmissionValidationErrorErrorMessageOneOf, i4 as SubmissionValidationErrors, gV as SubmissionValidationErrorsDetails, ia as SubmissionsQueryResult, gS as SubmitContactResponse, gk as SubmitSettings, gl as SubmitSettingsSubmitSuccessActionOptionsOneOf, bo as SubmitSuccessAction, jL as SubmitSuccessActionWithLiterals, bz as Submitter, bA as SubmitterSubmitterOneOf, fP as SubscriptionInfo, aW as SubscriptionInfoOptInLevel, jh as SubscriptionInfoOptInLevelWithLiterals, dP as TableCellData, dN as TableData, be as Tag, bE as TagList, jB as TagWithLiterals, et as Tags, eu as TagsOption, bn as Target, jK as TargetWithLiterals, a5 as TextAlignment, is as TextAlignmentWithLiterals, dq as TextData, cs as TextInput, d$ as TextNodeStyle, cK as TextStyle, gm as ThankYouMessageOptions, cZ as Thumbnails, ad as ThumbnailsAlignment, iA as ThumbnailsAlignmentWithLiterals, eb as TimeInput, aR as Type, jc as TypeWithLiterals, hX as UpdateExtendedFieldsRequest, ha as UpdateSubmissionRequest, hb as UpdateSubmissionResponse, aM as UploadFileFormat, j7 as UploadFileFormatWithLiterals, gg as UpsertContact, gR as UpsertContactFromSubmissionRequest, eR as V4FormFieldContactInfo, eS as V4FormFieldContactInfoAdditionalInfoOneOf, fj as V4PageNavigationOptions, fi as V4RichContentOptions, i1 as ValidateFormSubmissionRequest, ci as Validation, gW as ValidationError, X as ValidationFormat, ih as ValidationFormatWithLiterals, fs as ValidationMessages, cj as ValidationValidationOneOf, az as VerticalAlignment, iW as VerticalAlignmentWithLiterals, cT as Video, eK as VideoConferenceOptions, dI as VideoData, a9 as ViewMode, iw as ViewModeWithLiterals, ai as ViewRole, iF as ViewRoleWithLiterals, aj as VoteRole, iG as VoteRoleWithLiterals, bs as WebhookIdentityType, jP as WebhookIdentityTypeWithLiterals, a7 as Width, a1 as WidthType, io as WidthTypeWithLiterals, iu as WidthWithLiterals, fZ as WixFile, b6 as WixFileComponentType, f_ as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, fW as _Array, fX as _ArrayComponentTypeOptionsOneOf, fU as _Boolean, fV as _BooleanComponentTypeOptionsOneOf, fS as _Number, fT as _NumberComponentTypeOptionsOneOf, fY as _Object, fQ as _String, fR as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CHekDXk3.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 QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, E as ValidateFormSubmissionResponse, H as SubmissionCreatedEnvelope, I as SubmissionDeletedEnvelope, J as SubmissionRemovedSubmissionFromTrashEnvelope, K as SubmissionStatusUpdatedEnvelope, M as SubmissionContactMappedEnvelope, N as SubmissionContactMappingSkippedEnvelope, O as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-CJRPTs5G.js';
|
|
3
|
+
export { gS as ActionEvent, g9 as Address, ga as AddressComponentTypeOptionsOneOf, fT as AddressInfo, aZ as AddressInfoTag, jq as AddressInfoTagWithLiterals, eT as AddressLine2, aG as Alignment, j7 as AlignmentWithLiterals, gy as AllowedValuesOptions, dx as AnchorData, gD as AndCondition, dD as AppEmbedData, dE as AppEmbedDataAppDataOneOf, aw as AppType, iZ as AppTypeWithLiterals, ha as ApplicationError, eL as Appointment, eM as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, jC as ArrayComponentTypeWithLiterals, c8 as ArrayErrorMessages, fF as ArrayItems, aM as ArrayItemsItemType, fG as ArrayItemsItemTypeOptionsOneOf, jd as ArrayItemsItemTypeWithLiterals, fB as ArrayType, c6 as ArrayTypeArrayItems, c7 as ArrayTypeArrayItemsItemsOneOf, aq as AspectRatio, iT as AspectRatioWithLiterals, dX as AudioData, dm as Background, dn as BackgroundBackgroundOneOf, e1 as BackgroundImage, am as BackgroundType, iP as BackgroundTypeWithLiterals, id as BaseEventMetadata, d_ as BlockquoteData, dF as BookingData, b6 as BooleanComponentType, jz as BooleanComponentTypeWithLiterals, c0 as BooleanErrorMessages, fA as BooleanType, cC as Border, dV as BorderColors, fJ as BreakPoint, hb as BulkActionMetadata, h6 as BulkCreateSubmissionBySubmitterData, h5 as BulkCreateSubmissionBySubmitterRequest, h7 as BulkCreateSubmissionBySubmitterResponse, hl as BulkDeleteSubmissionRequest, hm as BulkDeleteSubmissionResult, hQ as BulkMarkSubmissionsAsSeenRequest, hR as BulkMarkSubmissionsAsSeenResponse, hq as BulkRemoveSubmissionFromTrashBinRequest, hr as BulkRemoveSubmissionFromTrashBinResult, h8 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i5 as BulkUpdateFormSubmissionTagsByFilterRequest, i6 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i2 as BulkUpdateFormSubmissionTagsRequest, i3 as BulkUpdateFormSubmissionTagsResponse, i4 as BulkUpdateFormSubmissionTagsResult, dZ as BulletedListData, cB as ButtonData, a3 as ButtonDataType, iw as ButtonDataTypeWithLiterals, dH as ButtonStyles, d$ as CaptionData, dK as CardStyles, au as CardStylesAlignment, iX as CardStylesAlignmentWithLiterals, at as CardStylesType, iW as CardStylesTypeWithLiterals, dU as CellStyle, bt as ChangeableProperty, jW as ChangeablePropertyWithLiterals, ep as Checkbox, ex as CheckboxGroup, gJ as Checkout, cN as CodeBlockData, dQ as CollapsibleListData, dy as ColorData, cD as Colors, k4 as CommonSearchWithEntityContext, bc as ComponentType, jF as ComponentTypeWithLiterals, gF as Condition, gB as ConditionNode, gC as ConditionNodeNodeOneOf, hi as ConfirmSubmissionRequest, bj as ConfirmationLevel, jM as ConfirmationLevelWithLiterals, bk as ContactField, jN as ContactFieldWithLiterals, hN as CountDeletedSubmissionsRequest, hK as CountSubmissionsByFilterRequest, hM as CountSubmissionsRequest, bO as CreateCheckoutFromSubmissionRequest, bP as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gI as CreateCheckoutFromSubmissionResponse, h3 as CreateSubmissionBySubmitterRequest, h4 as CreateSubmissionBySubmitterResponse, h1 as CreateSubmissionForMigrationRequest, h2 as CreateSubmissionForMigrationResponse, gZ as CreateSubmissionRequest, g_ as CreateSubmissionResponse, ac as Crop, iF as CropWithLiterals, ht as CursorPaging, hu as CursorPagingMetadata, hy as CursorQueryPagingMethodOneOf, hB as CursorSearch, hC as CursorSearchPagingMethodOneOf, hv as Cursors, fU as CustomFieldInfo, eb as CustomOption, co as DataExtensionsDetails, eg as DateInput, ei as DatePicker, fw as DateTimeConstraints, ee as DateTimeInput, dv as Decoration, dw as DecorationDataOneOf, an as DecorationType, iQ as DecorationTypeWithLiterals, eU as DefaultCountryConfig, eV as DefaultCountryConfigOptionsOneOf, hj as DeleteSubmissionRequest, hk as DeleteSubmissionResponse, dt as Design, dS as Dimensions, ay as Direction, i$ as DirectionWithLiterals, fm as DisplayField, bl as DisplayFieldDisplayFieldType, fn as DisplayFieldDisplayFieldTypeOptionsOneOf, jO as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, ju as DisplayFieldTypeWithLiterals, cP as DividerData, a8 as DividerDataAlignment, iB as DividerDataAlignmentWithLiterals, hV as DocumentReady, e4 as DocumentStyle, gM as DomainEvent, gN as DomainEventBodyOneOf, eH as DonationInput, eI as DonationInputOption, hW as DownloadSubmissionRequest, ec as Dropdown, ed as DropdownOption, ce as DynamicPriceOptions, fR as EmailInfo, bg as EmailInfoTag, jJ as EmailInfoTagWithLiterals, dO as EmbedData, gT as Empty, gO as EntityCreatedEvent, gR as EntityDeletedEvent, gQ as EntityUpdatedEvent, by as ErrorType, j$ as ErrorTypeWithLiterals, dG as EventData, ie as EventMetadata, bF as ExtendedFields, fq as Field, fr as FieldFieldTypeOptionsOneOf, gu as FieldGroup, gz as FieldOverride, gA as FieldOverridePropertyTypeOptionsOneOf, ci as FieldOverrides, b2 as FieldType, jv as FieldTypeWithLiterals, i8 as FieldViolation, i9 as FieldViolationErrorDataOneOf, gd as FieldsDisplayField, ge as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cj as FieldsOverrides, eW as FieldsSettings, cQ as FileData, cR as FileSource, cS as FileSourceDataOneOf, eC as FileType, eD as FileUpload, aJ as FirstDayOfWeek, ja as FirstDayOfWeekWithLiterals, eK as FixedPayment, cd as FixedPriceOptions, dB as FontSizeData, ao as FontType, iR as FontTypeWithLiterals, bQ as Form, hO as FormDeletedSubmissionsCount, bR as FormField, c1 as FormFieldArrayType, b$ as FormFieldBooleanType, fP as FormFieldContactInfo, fQ as FormFieldContactInfoAdditionalInfoOneOf, e$ as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, js as FormFieldContactInfoContactFieldWithLiterals, f0 as FormFieldContactInfoCustomFieldInfo, eZ as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, jo as FormFieldContactInfoEmailInfoTagWithLiterals, e_ as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, jp as FormFieldContactInfoPhoneInfoTagWithLiterals, f1 as FormFieldContactInfoSubscriptionInfo, bY as FormFieldNumberType, c2 as FormFieldObjectType, bS as FormFieldStringType, bT as FormFieldStringTypeFormatOptionsOneOf, cq as FormFieldV2, b0 as FormFieldV2FieldType, cr as FormFieldV2FieldTypeOptionsOneOf, jt as FormFieldV2FieldTypeWithLiterals, fk as FormFieldV2InputField, fl as FormFieldV2InputFieldInputTypeOptionsOneOf, fI as FormLayout, gj as FormOverride, gk as FormProperties, gi as FormRule, ig as FormSubmissionSearchSpec, bJ as FormSubmissionStatusUpdatedEvent, hL as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jw as FormatEnumFormatWithLiterals, jk as FormatWithLiterals, i0 as FormattedFormSubmission, hZ as FormattedSubmission, d3 as GIF, d2 as GIFData, ae as GIFType, iH as GIFTypeWithLiterals, cU as GalleryData, c_ as GalleryOptions, c$ as GalleryOptionsLayout, hw as GetDeletedSubmissionRequest, hY as GetFormattedSubmissionRequest, hP as GetMediaUploadURLRequest, he as GetSubmissionByCheckoutIdRequest, hf as GetSubmissionByCheckoutIdResponse, hS as GetSubmissionDownloadUrlRequest, hc as GetSubmissionRequest, hd as GetSubmissionResponse, dl as Gradient, fM as Group, d5 as HTMLData, d6 as HTMLDataDataOneOf, hX as HeadersEntry, d4 as HeadingData, cI as Height, gx as HiddenOptions, gV as IdentificationData, gW as IdentificationDataIdOneOf, bx as IdentityType, j_ as IdentityTypeWithLiterals, cW as Image, d7 as ImageData, d9 as ImageDataStyles, aH as ImageFit, j8 as ImageFitWithLiterals, aF as ImagePosition, j6 as ImagePositionWithLiterals, dI as ImageStyles, eP as InPersonOptions, ax as InitialExpandedItems, i_ as InitialExpandedItemsWithLiterals, fs as InputField, aO as InputFieldArrayComponentType, jf as InputFieldArrayComponentTypeWithLiterals, eq as InputFieldArrayType, ev as InputFieldArrayTypeArrayItems, ew as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, jc as InputFieldBooleanComponentTypeWithLiterals, eo as InputFieldBooleanType, aW as InputFieldInputType, ft as InputFieldInputTypeOptionsOneOf, jn as InputFieldInputTypeWithLiterals, er as InputFieldIntegerType, fg as InputFieldMultilineAddress, fh as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, jb as InputFieldNumberComponentTypeWithLiterals, el as InputFieldNumberType, es as InputFieldObjectType, et as InputFieldObjectTypePropertiesType, eu as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fe as InputFieldPayment, aR as InputFieldPaymentComponentType, ff as InputFieldPaymentComponentTypeOptionsOneOf, ji as InputFieldPaymentComponentTypeWithLiterals, fi as InputFieldScheduling, aS as InputFieldSchedulingComponentType, fj as InputFieldSchedulingComponentTypeOptionsOneOf, jj as InputFieldSchedulingComponentTypeWithLiterals, $ as InputFieldStringComponentType, is as InputFieldStringComponentTypeWithLiterals, cs as InputFieldStringType, cu as InputFieldStringTypeDateTimeConstraints, _ as InputFieldStringTypeFormatEnumFormat, ir as InputFieldStringTypeFormatEnumFormatWithLiterals, ct as InputFieldStringTypeFormatOptionsOneOf, cv as InputFieldStringTypePhoneConstraints, fc as InputFieldWixFile, aP as InputFieldWixFileComponentType, fd as InputFieldWixFileComponentTypeOptionsOneOf, jg as InputFieldWixFileComponentTypeWithLiterals, f8 as InputField_Array, f9 as InputField_ArrayComponentTypeOptionsOneOf, f6 as InputField_Boolean, f7 as InputField_BooleanComponentTypeOptionsOneOf, f4 as InputField_Number, f5 as InputField_NumberComponentTypeOptionsOneOf, fa as InputField_Object, fb as InputField_ObjectValidationOneOf, f2 as InputField_String, f3 as InputField_StringComponentTypeOptionsOneOf, bf as InputType, jI as InputTypeWithLiterals, b_ as IntegerType, gK as IsFormSubmittableRequest, gL as IsFormSubmittableResponse, cY as Item, cZ as ItemDataOneOf, fK as ItemLayout, fL as ItemLayoutItemOneOf, h9 as ItemMetadata, d0 as ItemStyle, b7 as ItemType, jA as ItemTypeWithLiterals, bn as Kind, jQ as KindWithLiterals, av as Layout, e2 as LayoutCellData, e0 as LayoutData, aC as LayoutDataImagePosition, j3 as LayoutDataImagePositionWithLiterals, aa as LayoutType, iD as LayoutTypeWithLiterals, iY as LayoutWithLiterals, go as LimitationRule, a6 as LineStyle, iz as LineStyleWithLiterals, cK as Link, dz as LinkData, cL as LinkDataOneOf, da as LinkPreviewData, db as LinkPreviewDataStyles, a4 as LinkTarget, ix as LinkTargetWithLiterals, hs as ListDeletedSubmissionsRequest, h_ as ListFormattedSubmissionsRequest, h$ as ListFormattedSubmissionsResponse, dW as ListValue, eN as Location, eO as LocationLocationInfoOneOf, dc as MapData, dd as MapSettings, ah as MapType, iK as MapTypeWithLiterals, fN as Margin, bM as MarketingSubscriptionDetails, cV as Media, e6 as MediaItem, e7 as MediaItemMediaOneOf, e8 as MediaSettings, dA as MentionData, gU as MessageEnvelope, e3 as Metadata, bA as Mode, k1 as ModeWithLiterals, eS as MultilineAddress, aU as MultilineAddressComponentType, jl as MultilineAddressComponentTypeWithLiterals, ch as MultilineAddressValidation, gn as NestedForm, cl as NestedFormFieldOverrides, cp as NestedFormOverrides, cy as Node, cz as NodeDataOneOf, cA as NodeStyle, a0 as NodeType, it as NodeTypeWithLiterals, aA as NullValue, j1 as NullValueWithLiterals, b5 as NumberComponentType, jy as NumberComponentTypeWithLiterals, bZ as NumberErrorMessages, em as NumberInput, aI as NumberOfColumns, j9 as NumberOfColumnsWithLiterals, fz as NumberType, gb as ObjectArray, bd as ObjectArrayComponentType, gc as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, ck as ObjectArrayType, c5 as ObjectErrorMessages, fC as ObjectType, c3 as ObjectTypePropertiesType, c4 as ObjectTypePropertiesTypePropertiesTypeOneOf, dP as Oembed, bv as Operator, jY as OperatorWithLiterals, T as OptInLevel, il as OptInLevelWithLiterals, ey as Option, dq as OptionDesign, dk as OptionLayout, gE as OrCondition, bG as OrderDetails, dY as OrderedListData, ab as Orientation, iE as OrientationWithLiterals, bm as OverrideEntityType, bu as OverrideEntityTypeEnumOverrideEntityType, jX as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, cT as PDFSettings, gg as PageNavigationOptions, de as ParagraphData, g5 as Payment, bb as PaymentComponentType, g6 as PaymentComponentTypeOptionsOneOf, jE as PaymentComponentTypeWithLiterals, eJ as PaymentInput, cb as PaymentType, dg as Permissions, fx as PhoneConstraints, fS as PhoneInfo, bh as PhoneInfoTag, jK as PhoneInfoTagWithLiterals, ef as PhoneInput, eR as PhoneOptions, as as Placement, iV as PlacementWithLiterals, dN as PlaybackOptions, cE as PluginContainerData, a2 as PluginContainerDataAlignment, iv as PluginContainerDataAlignmentWithLiterals, cF as PluginContainerDataWidth, cG as PluginContainerDataWidthDataOneOf, dr as Poll, df as PollData, ds as PollDataLayout, dp as PollDesign, dj as PollLayout, al as PollLayoutDirection, iO as PollLayoutDirectionWithLiterals, ak as PollLayoutType, iN as PollLayoutTypeWithLiterals, dh as PollOption, ap as Position, iS as PositionWithLiterals, gl as PostSubmissionTriggers, c9 as PredefinedValidation, ca as PredefinedValidationFormatOptionsOneOf, Z as PriceType, iq as PriceTypeWithLiterals, dL as PricingData, cf as Product, eF as ProductCheckboxGroup, eG as ProductCheckboxGroupOption, cg as ProductPriceOptionsOneOf, Y as ProductType, ip as ProductTypeWithLiterals, fD as PropertiesType, b8 as PropertiesTypeEnum, jB as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, je as PropertiesTypePropertiesTypeEnumWithLiterals, fE as PropertiesTypePropertiesTypeOptionsOneOf, bH as PublicTags, cc as QuantityLimit, hx as QuerySubmissionRequest, hI as QuerySubmissionsByNamespaceForExportRequest, hJ as QuerySubmissionsByNamespaceForExportResponse, hG as QuerySubmissionsByNamespaceRequest, hH as QuerySubmissionsByNamespaceResponse, e9 as RadioGroup, ea as RadioGroupOption, en as RatingInput, gt as RedirectOptions, cM as Rel, ho as RemoveSubmissionFromTrashBinRequest, hp as RemoveSubmissionFromTrashBinResponse, bK as RemovedSubmissionFromTrash, fH as Repeater, bp as RequiredIndicator, bq as RequiredIndicatorPlacement, jT as RequiredIndicatorPlacementWithLiterals, gp as RequiredIndicatorProperties, jS as RequiredIndicatorWithLiterals, gw as RequiredOptions, ar as Resizing, iU as ResizingWithLiterals, aE as ResponsivenessBehaviour, j5 as ResponsivenessBehaviourWithLiterals, gP as RestoreInfo, hn as RestoreSubmissionFromTrashBinRequest, dJ as RibbonStyles, cx as RichContent, gf as RichContentOptions, gv as Rule, gG as RuleFormOverride, gH as RuleFormOverrideEntityTypeOptionsOneOf, aB as Scaling, j2 as ScalingWithLiterals, g7 as Scheduling, be as SchedulingComponentType, g8 as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hD as SearchDetails, hE as SearchSubmissionsByNamespaceForExportRequest, hF as SearchSubmissionsByNamespaceForExportResponse, hA as SearchSubmissionsByNamespaceRequest, fO as Section, ek as ServiceOption, eB as ServicesCheckboxGroup, ej as ServicesDropdown, di as Settings, eE as Signature, bz as SortOrder, k0 as SortOrderWithLiterals, hz as Sorting, af as Source, iI as SourceWithLiterals, bo as SpamFilterProtectionLevel, jR as SpamFilterProtectionLevelWithLiterals, cH as Spoiler, dC as SpoilerData, bB as Status, k2 as StatusWithLiterals, gh as Step, b4 as StringComponentType, jx as StringComponentTypeWithLiterals, bU as StringErrorMessages, fu as StringType, bV as StringTypeDateTimeConstraints, W as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, fv as StringTypeFormatOptionsOneOf, bW as StringTypePhoneConstraints, bX as StringTypeValidationMessages, cJ as Styles, d8 as StylesBorder, ag as StylesPosition, iJ as StylesPositionWithLiterals, bL as SubmissionContactMapped, bN as SubmissionContactMappingSkipped, hT as SubmissionDocument, hU as SubmissionDocumentDocumentOneOf, bC as SubmissionErrorType, k3 as SubmissionErrorTypeWithLiterals, P as SubmissionStatus, ik as SubmissionStatusWithLiterals, ib as SubmissionValidationError, ic as SubmissionValidationErrorErrorMessageOneOf, ia as SubmissionValidationErrors, g$ as SubmissionValidationErrorsDetails, ih as SubmissionsQueryResult, gY as SubmitContactResponse, gq as SubmitSettings, gr as SubmitSettingsSubmitSuccessActionOptionsOneOf, bs as SubmitSuccessAction, jV as SubmitSuccessActionWithLiterals, bD as Submitter, bE as SubmitterSubmitterOneOf, fV as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jr as SubscriptionInfoOptInLevelWithLiterals, dT as TableCellData, dR as TableData, bi as Tag, bI as TagList, jL as TagWithLiterals, ez as Tags, eA as TagsOption, br as Target, jU as TargetWithLiterals, a5 as TextAlignment, iy as TextAlignmentWithLiterals, du as TextData, cw as TextInput, e5 as TextNodeStyle, cO as TextStyle, gs as ThankYouMessageOptions, d1 as Thumbnails, ad as ThumbnailsAlignment, iG as ThumbnailsAlignmentWithLiterals, eh as TimeInput, aV as Type, jm as TypeWithLiterals, i1 as UpdateExtendedFieldsRequest, hg as UpdateSubmissionRequest, hh as UpdateSubmissionResponse, aQ as UploadFileFormat, jh as UploadFileFormatWithLiterals, gm as UpsertContact, gX as UpsertContactFromSubmissionRequest, eX as V4FormFieldContactInfo, eY as V4FormFieldContactInfoAdditionalInfoOneOf, fp as V4PageNavigationOptions, fo as V4RichContentOptions, i7 as ValidateFormSubmissionRequest, cm as Validation, h0 as ValidationError, X as ValidationFormat, io as ValidationFormatWithLiterals, fy as ValidationMessages, cn as ValidationValidationOneOf, az as VerticalAlignment, aD as VerticalAlignmentAlignment, j4 as VerticalAlignmentAlignmentWithLiterals, j0 as VerticalAlignmentWithLiterals, cX as Video, eQ as VideoConferenceOptions, dM as VideoData, a9 as ViewMode, iC as ViewModeWithLiterals, ai as ViewRole, iL as ViewRoleWithLiterals, aj as VoteRole, iM as VoteRoleWithLiterals, bw as WebhookIdentityType, jZ as WebhookIdentityTypeWithLiterals, a7 as Width, a1 as WidthType, iu as WidthTypeWithLiterals, iA as WidthWithLiterals, g3 as WixFile, ba as WixFileComponentType, g4 as WixFileComponentTypeOptionsOneOf, jD as WixFileComponentTypeWithLiterals, g0 as _Array, g1 as _ArrayComponentTypeOptionsOneOf, f_ as _Boolean, f$ as _BooleanComponentTypeOptionsOneOf, fY as _Number, fZ as _NumberComponentTypeOptionsOneOf, g2 as _Object, fW as _String, fX as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-CJRPTs5G.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -70,6 +70,7 @@ __export(index_exports, {
|
|
|
70
70
|
ItemType: () => ItemType,
|
|
71
71
|
Kind: () => Kind,
|
|
72
72
|
Layout: () => Layout,
|
|
73
|
+
LayoutDataImagePosition: () => LayoutDataImagePosition,
|
|
73
74
|
LayoutType: () => LayoutType,
|
|
74
75
|
LineStyle: () => LineStyle,
|
|
75
76
|
LinkTarget: () => LinkTarget,
|
|
@@ -100,6 +101,8 @@ __export(index_exports, {
|
|
|
100
101
|
RequiredIndicator: () => RequiredIndicator,
|
|
101
102
|
RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
|
|
102
103
|
Resizing: () => Resizing,
|
|
104
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
105
|
+
Scaling: () => Scaling,
|
|
103
106
|
SchedulingComponentType: () => SchedulingComponentType,
|
|
104
107
|
SortOrder: () => SortOrder,
|
|
105
108
|
Source: () => Source,
|
|
@@ -120,6 +123,7 @@ __export(index_exports, {
|
|
|
120
123
|
UploadFileFormat: () => UploadFileFormat,
|
|
121
124
|
ValidationFormat: () => ValidationFormat,
|
|
122
125
|
VerticalAlignment: () => VerticalAlignment,
|
|
126
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
123
127
|
ViewMode: () => ViewMode,
|
|
124
128
|
ViewRole: () => ViewRole,
|
|
125
129
|
VoteRole: () => VoteRole,
|
|
@@ -1225,6 +1229,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
1225
1229
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
1226
1230
|
Source2["HTML"] = "HTML";
|
|
1227
1231
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1232
|
+
Source2["AI"] = "AI";
|
|
1228
1233
|
return Source2;
|
|
1229
1234
|
})(Source || {});
|
|
1230
1235
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1353,6 +1358,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1353
1358
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1354
1359
|
return NullValue2;
|
|
1355
1360
|
})(NullValue || {});
|
|
1361
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1362
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1363
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1364
|
+
Scaling2["COVER"] = "COVER";
|
|
1365
|
+
return Scaling2;
|
|
1366
|
+
})(Scaling || {});
|
|
1367
|
+
var LayoutDataImagePosition = /* @__PURE__ */ ((LayoutDataImagePosition2) => {
|
|
1368
|
+
LayoutDataImagePosition2["CENTER"] = "CENTER";
|
|
1369
|
+
LayoutDataImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1370
|
+
LayoutDataImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1371
|
+
LayoutDataImagePosition2["TOP"] = "TOP";
|
|
1372
|
+
LayoutDataImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1373
|
+
LayoutDataImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1374
|
+
LayoutDataImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1375
|
+
LayoutDataImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1376
|
+
LayoutDataImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1377
|
+
return LayoutDataImagePosition2;
|
|
1378
|
+
})(LayoutDataImagePosition || {});
|
|
1379
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1380
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1381
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1382
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1383
|
+
return VerticalAlignmentAlignment2;
|
|
1384
|
+
})(VerticalAlignmentAlignment || {});
|
|
1385
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1386
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1387
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1388
|
+
return ResponsivenessBehaviour2;
|
|
1389
|
+
})(ResponsivenessBehaviour || {});
|
|
1356
1390
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1357
1391
|
ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
|
|
1358
1392
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
@@ -3051,6 +3085,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3051
3085
|
ItemType,
|
|
3052
3086
|
Kind,
|
|
3053
3087
|
Layout,
|
|
3088
|
+
LayoutDataImagePosition,
|
|
3054
3089
|
LayoutType,
|
|
3055
3090
|
LineStyle,
|
|
3056
3091
|
LinkTarget,
|
|
@@ -3081,6 +3116,8 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3081
3116
|
RequiredIndicator,
|
|
3082
3117
|
RequiredIndicatorPlacement,
|
|
3083
3118
|
Resizing,
|
|
3119
|
+
ResponsivenessBehaviour,
|
|
3120
|
+
Scaling,
|
|
3084
3121
|
SchedulingComponentType,
|
|
3085
3122
|
SortOrder,
|
|
3086
3123
|
Source,
|
|
@@ -3101,6 +3138,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3101
3138
|
UploadFileFormat,
|
|
3102
3139
|
ValidationFormat,
|
|
3103
3140
|
VerticalAlignment,
|
|
3141
|
+
VerticalAlignmentAlignment,
|
|
3104
3142
|
ViewMode,
|
|
3105
3143
|
ViewRole,
|
|
3106
3144
|
VoteRole,
|