@wix/auto_sdk_forms_submissions 1.0.115 → 1.0.117
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-BjJ-qwMD.d.ts → forms-v4-submission-submissions.universal-BBHYv5E8.d.ts} +100 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +30 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +30 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +101 -4
- package/build/cjs/meta.js +30 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BjJ-qwMD.d.mts → forms-v4-submission-submissions.universal-BBHYv5E8.d.mts} +100 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +28 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +28 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +101 -4
- package/build/es/meta.mjs +28 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DzqrpsKR.d.ts → forms-v4-submission-submissions.universal-D3uoXTdA.d.ts} +100 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +30 -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 +30 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +101 -4
- package/build/internal/cjs/meta.js +30 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-DzqrpsKR.d.mts → forms-v4-submission-submissions.universal-D3uoXTdA.d.mts} +100 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +28 -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 +28 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +101 -4
- package/build/internal/es/meta.mjs +28 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1547,6 +1547,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1547
1547
|
cardData?: CardData;
|
|
1548
1548
|
/** Data for a table of contents node. */
|
|
1549
1549
|
tocData?: TocData;
|
|
1550
|
+
/** Data for a smart block node. */
|
|
1551
|
+
smartBlockData?: SmartBlockData;
|
|
1552
|
+
/** Data for a smart block cell node. */
|
|
1553
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1550
1554
|
/** 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. */
|
|
1551
1555
|
type?: NodeTypeWithLiterals;
|
|
1552
1556
|
/** Node ID. */
|
|
@@ -1620,6 +1624,10 @@ interface NodeDataOneOf {
|
|
|
1620
1624
|
cardData?: CardData;
|
|
1621
1625
|
/** Data for a table of contents node. */
|
|
1622
1626
|
tocData?: TocData;
|
|
1627
|
+
/** Data for a smart block node. */
|
|
1628
|
+
smartBlockData?: SmartBlockData;
|
|
1629
|
+
/** Data for a smart block cell node. */
|
|
1630
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1623
1631
|
}
|
|
1624
1632
|
declare enum NodeType {
|
|
1625
1633
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1658,10 +1666,12 @@ declare enum NodeType {
|
|
|
1658
1666
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1659
1667
|
SHAPE = "SHAPE",
|
|
1660
1668
|
CARD = "CARD",
|
|
1661
|
-
TOC = "TOC"
|
|
1669
|
+
TOC = "TOC",
|
|
1670
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
1671
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
1662
1672
|
}
|
|
1663
1673
|
/** @enumType */
|
|
1664
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
1674
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
1665
1675
|
interface NodeStyle {
|
|
1666
1676
|
/** The top padding value in pixels. */
|
|
1667
1677
|
paddingTop?: string | null;
|
|
@@ -2279,6 +2289,8 @@ interface HeadingData {
|
|
|
2279
2289
|
textStyle?: TextStyle;
|
|
2280
2290
|
/** Indentation level from 1-4. */
|
|
2281
2291
|
indentation?: number | null;
|
|
2292
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2293
|
+
renderedLevel?: number | null;
|
|
2282
2294
|
}
|
|
2283
2295
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2284
2296
|
/** The URL for the HTML code for the node. */
|
|
@@ -3152,6 +3164,8 @@ interface TableData {
|
|
|
3152
3164
|
* @maxSize 4
|
|
3153
3165
|
*/
|
|
3154
3166
|
cellPadding?: number[];
|
|
3167
|
+
/** Table's alternative text. */
|
|
3168
|
+
altText?: string | null;
|
|
3155
3169
|
}
|
|
3156
3170
|
interface Dimensions {
|
|
3157
3171
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3593,6 +3607,88 @@ declare enum Indentation {
|
|
|
3593
3607
|
}
|
|
3594
3608
|
/** @enumType */
|
|
3595
3609
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
3610
|
+
/** Data for a smart block node. */
|
|
3611
|
+
interface SmartBlockData {
|
|
3612
|
+
/** The type of the smart block. */
|
|
3613
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3614
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
3615
|
+
orientation?: string | null;
|
|
3616
|
+
/** Column size controlling cells per row. */
|
|
3617
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
3618
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
3619
|
+
borderColor?: string | null;
|
|
3620
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3621
|
+
borderWidth?: number | null;
|
|
3622
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3623
|
+
borderRadius?: number | null;
|
|
3624
|
+
}
|
|
3625
|
+
/** Layout type of the smart block */
|
|
3626
|
+
declare enum SmartBlockDataType {
|
|
3627
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
3628
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
3629
|
+
/** Numbered boxes. */
|
|
3630
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
3631
|
+
/** Statistics display with large numbers/values. */
|
|
3632
|
+
STATS = "STATS",
|
|
3633
|
+
/** Statistics with circular visual elements. */
|
|
3634
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
3635
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
3636
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
3637
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
3638
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
3639
|
+
/** Transparent cells with only a left side line. */
|
|
3640
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
3641
|
+
/** Transparent cells with only a top line. */
|
|
3642
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
3643
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
3644
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
3645
|
+
/** Large icon bullets with text content. */
|
|
3646
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
3647
|
+
/** Small dot bullets with text content. */
|
|
3648
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
3649
|
+
/** Arrow icon bullets with text content. */
|
|
3650
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
3651
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
3652
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
3653
|
+
/** Statistics with bar visual elements. */
|
|
3654
|
+
BAR_STATS = "BAR_STATS"
|
|
3655
|
+
}
|
|
3656
|
+
/** @enumType */
|
|
3657
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
3658
|
+
/** Column size controlling how many cells appear per row. */
|
|
3659
|
+
declare enum ColumnSize {
|
|
3660
|
+
/** Up to 4 cells in a row. */
|
|
3661
|
+
SMALL = "SMALL",
|
|
3662
|
+
/** Up to 3 cells in a row (default). */
|
|
3663
|
+
MEDIUM = "MEDIUM",
|
|
3664
|
+
/** Up to 2 cells in a row. */
|
|
3665
|
+
LARGE = "LARGE",
|
|
3666
|
+
/** 1 cell in a row. */
|
|
3667
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
3668
|
+
}
|
|
3669
|
+
/** @enumType */
|
|
3670
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
3671
|
+
/** Data for a smart block cell node. */
|
|
3672
|
+
interface SmartBlockCellData {
|
|
3673
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
3674
|
+
label?: string | null;
|
|
3675
|
+
/** Shape file details. */
|
|
3676
|
+
shape?: Media;
|
|
3677
|
+
/** Border color of the cell. */
|
|
3678
|
+
borderColor?: string | null;
|
|
3679
|
+
/** Border width in pixels. */
|
|
3680
|
+
borderWidth?: number | null;
|
|
3681
|
+
/** Border radius in pixels. */
|
|
3682
|
+
borderRadius?: number | null;
|
|
3683
|
+
/** The type of the parent smart block (must match parent). */
|
|
3684
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3685
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
3686
|
+
accentColor?: string | null;
|
|
3687
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
3688
|
+
backgroundColor?: string | null;
|
|
3689
|
+
/** Shape fill color as a hexadecimal value. */
|
|
3690
|
+
shapeColor?: string | null;
|
|
3691
|
+
}
|
|
3596
3692
|
interface Metadata {
|
|
3597
3693
|
/** Schema version. */
|
|
3598
3694
|
version?: number;
|
|
@@ -5777,6 +5873,7 @@ interface RedirectOptions {
|
|
|
5777
5873
|
interface PopupOptions {
|
|
5778
5874
|
/**
|
|
5779
5875
|
* ID of the site popup to open after successful form submission.
|
|
5876
|
+
* @minLength 1
|
|
5780
5877
|
* @maxLength 100
|
|
5781
5878
|
*/
|
|
5782
5879
|
popupId?: string;
|
|
@@ -8246,4 +8343,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8246
8343
|
fieldsToValidate?: string[];
|
|
8247
8344
|
}
|
|
8248
8345
|
|
|
8249
|
-
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberComponentType as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, ImagePosition as aW, Alignment as aX, ImageFit as aY, NumberOfColumns as aZ, FirstDayOfWeek as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type EntityDeletedEvent as b$, BooleanComponentType as b0, ItemType as b1, PropertiesTypeEnum as b2, ArrayComponentType as b3, WixFileComponentType as b4, UploadFileFormat as b5, PaymentComponentType as b6, ComponentType as b7, Type as b8, ObjectArrayComponentType as b9, Operator as bA, ResultsDisplay as bB, ContactAutofill as bC, SubmissionAccess as bD, IdentityType as bE, ErrorType as bF, SortOrder as bG, Mode as bH, Status as bI, SubmissionErrorType as bJ, type Submitter as bK, type SubmitterSubmitterOneOf as bL, type ExtendedFields as bM, type OrderDetails as bN, type PublicTags as bO, type TagList as bP, type AppointmentDetails as bQ, type FormSubmissionStatusUpdatedEvent as bR, type RemovedSubmissionFromTrash as bS, type SubmissionContactMapped as bT, type MarketingSubscriptionDetails as bU, type SubmissionContactMappingSkipped as bV, type DomainEvent as bW, type DomainEventBodyOneOf as bX, type EntityCreatedEvent as bY, type RestoreInfo as bZ, type EntityUpdatedEvent as b_, SchedulingComponentType as ba, Format as bb, MeetingType as bc, StaffStrategySelection as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, SubscriptionChannel as bj, ContactField as bk, DisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, FormFieldContactInfoEmailInfoTag as bo, FormFieldContactInfoPhoneInfoTag as bp, AddressInfoTag as bq, SubscriptionInfoOptInLevel as br, FormFieldContactInfoContactField as bs, SpamFilterProtectionLevel as bt, RequiredIndicator as bu, RequiredIndicatorPlacement as bv, Target as bw, SubmitSuccessAction as bx, ChangeableProperty as by, OverrideEntityTypeEnumOverrideEntityType as bz, type CreateSubmissionValidationErrors as c, type NodeStyle as c$, type ActionEvent as c0, type MessageEnvelope as c1, type IdentificationData as c2, type IdentificationDataIdOneOf as c3, type AccountInfo as c4, type CreateCheckoutFromSubmissionRequest as c5, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c6, type Form as c7, type FormField as c8, type FormFieldStringType as c9, 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 Field as cM, type FieldFieldTypeOptionsOneOf as cN, type InputField as cO, type InputFieldInputTypeOptionsOneOf as cP, type StringCorrectAnswersList as cQ, type StringType as cR, type StringTypeFormatOptionsOneOf as cS, type DateTimeConstraints as cT, type PhoneConstraints as cU, type ValidationMessages as cV, type StringQuizFieldSettings as cW, type TextInput as cX, type RichContent as cY, type Node as cZ, type NodeDataOneOf as c_, type FormFieldStringTypeFormatOptionsOneOf as ca, type StringErrorMessages as cb, type DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypeDateTimeConstraints as cf, type StringTypePhoneConstraints as cg, type StringTypeValidationMessages as ch, type FormFieldNumberType as ci, type NumberErrorMessages as cj, type IntegerType as ck, type FormFieldBooleanType as cl, type BooleanErrorMessages as cm, type FormFieldArrayType as cn, type FormFieldObjectType as co, type ObjectTypePropertiesType as cp, type ObjectTypePropertiesTypePropertiesTypeOneOf as cq, type ObjectErrorMessages as cr, type ArrayTypeArrayItems as cs, type ArrayTypeArrayItemsItemsOneOf as ct, type ArrayErrorMessages as cu, type PredefinedValidation as cv, type PredefinedValidationFormatOptionsOneOf as cw, type PaymentType as cx, type QuantityLimit as cy, type FixedPriceOptions as cz, type UpdateSubmission as d, type AnchorData as d$, type ButtonData as d0, type Gradient as d1, type Stop as d2, type Border as d3, type Colors as d4, type Background as d5, type PluginContainerData as d6, type PluginContainerDataWidth as d7, type PluginContainerDataWidthDataOneOf as d8, type Spoiler as d9, type HTMLData as dA, type HTMLDataDataOneOf as dB, type ImageData as dC, type StylesBorder as dD, type ImageDataStyles as dE, type LinkPreviewData as dF, type LinkPreviewDataStyles as dG, type MapData as dH, type MapSettings as dI, type ParagraphData as dJ, type PollData as dK, type Permissions as dL, type PollOption as dM, type Settings as dN, type PollLayout as dO, type OptionLayout as dP, type BackgroundGradient as dQ, type PollDesignBackground as dR, type PollDesignBackgroundBackgroundOneOf as dS, type PollDesign as dT, type OptionDesign as dU, type Poll as dV, type PollDataLayout as dW, type Design as dX, type TextData as dY, type Decoration as dZ, type DecorationDataOneOf as d_, type Height as da, type Styles as db, type Link as dc, type LinkDataOneOf as dd, type Rel as de, type CodeBlockData as df, type TextStyle as dg, type DividerData as dh, type FileData as di, type FileSource as dj, type FileSourceDataOneOf as dk, type PDFSettings as dl, type GalleryData as dm, type Media as dn, type Image as dp, type Video as dq, type Item as dr, type ItemDataOneOf as ds, type GalleryOptions as dt, type GalleryOptionsLayout as du, type ItemStyle as dv, type Thumbnails as dw, type GIFData as dx, type GIF as dy, type HeadingData as dz, type UpdateSubmissionValidationErrors as e, type NumberCorrectAnswersList as e$, type ColorData as e0, type LinkData as e1, type MentionData as e2, type FontSizeData as e3, type SpoilerData as e4, type FontFamilyData as e5, type AppEmbedData as e6, type AppEmbedDataAppDataOneOf as e7, type BookingData as e8, type EventData as e9, type Backdrop as eA, type LayoutCellData as eB, type ShapeData as eC, type ShapeDataStyles as eD, type CardData as eE, type CardDataBackground as eF, type BackgroundImage as eG, type TocData as eH, type Metadata as eI, type DocumentStyle as eJ, type TextNodeStyle as eK, type MediaItem as eL, type MediaItemMediaOneOf as eM, type MediaSettings as eN, type RadioGroup as eO, type RadioGroupOption as eP, type CustomOption as eQ, type Dropdown as eR, type DropdownOption as eS, type DateTimeInput as eT, type PhoneInput as eU, type DateInput as eV, type TimeInput as eW, type DatePicker as eX, type ServicesDropdown as eY, type ServiceOption as eZ, type Password as e_, type ButtonStyles as ea, type ImageStyles as eb, type RibbonStyles as ec, type CardStyles as ed, type PricingData as ee, type VideoData as ef, type PlaybackOptions as eg, type EmbedData as eh, type Oembed as ei, type CollapsibleListData as ej, type TableData as ek, type Dimensions as el, type TableCellData as em, type CellStyle as en, type BorderColors as eo, type BorderWidths as ep, type ListValue as eq, type AudioData as er, type OrderedListData as es, type BulletedListData as et, type BlockquoteData as eu, type CaptionData as ev, type LayoutData as ew, type LayoutDataBackgroundImage as ex, type Banner as ey, type LayoutDataBackground as ez, type ConfirmSubmissionResponse as f, type _Object as f$, type NumberType as f0, type NumberQuizFieldSettings as f1, type NumberInput as f2, type RatingInput as f3, type BooleanType as f4, type Checkbox as f5, type CorrectAnswersList as f6, type ArrayType as f7, type ObjectType as f8, type PropertiesType as f9, type ItemLayout as fA, type ItemLayoutItemOneOf as fB, type Group as fC, type Margin as fD, type Section as fE, type Appointment as fF, type AppointmentFormatInfoOneOf as fG, type Location as fH, type LocationLocationInfoOneOf as fI, type InPersonOptions as fJ, type VideoConferenceOptions as fK, type PhoneOptions as fL, type FormFieldContactInfo as fM, type FormFieldContactInfoAdditionalInfoOneOf as fN, type EmailInfo as fO, type PhoneInfo as fP, type AddressInfo as fQ, type CustomFieldInfo as fR, type SubscriptionInfo as fS, type _String as fT, type _StringComponentTypeOptionsOneOf as fU, type _Number as fV, type _NumberComponentTypeOptionsOneOf as fW, type _Boolean as fX, type _BooleanComponentTypeOptionsOneOf as fY, type _Array as fZ, type _ArrayComponentTypeOptionsOneOf as f_, type PropertiesTypePropertiesTypeOptionsOneOf as fa, type ArrayItems as fb, type ArrayItemsItemTypeOptionsOneOf as fc, type QuizFieldSettings as fd, type CheckboxGroup as fe, type Option as ff, type ComponentsTags as fg, type TagsOption as fh, type ServicesCheckboxGroup as fi, type FileType as fj, type FileUpload as fk, type Signature as fl, type ProductCheckboxGroup as fm, type ProductCheckboxGroupOption as fn, type DonationInput as fo, type DonationInputOption as fp, type PaymentInput as fq, type FixedPayment as fr, type MultilineAddress as fs, type AddressLine2 as ft, type DefaultCountryConfig as fu, type DefaultCountryConfigOptionsOneOf as fv, type FieldsSettings as fw, type Repeater as fx, type FormLayout as fy, type BreakPoint as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionResponse as g$, type WixFile as g0, type WixFileComponentTypeOptionsOneOf as g1, type Payment as g2, type PaymentComponentTypeOptionsOneOf as g3, type Scheduling as g4, type SchedulingComponentTypeOptionsOneOf as g5, type Address as g6, type AddressComponentTypeOptionsOneOf as g7, type ObjectArray as g8, type ObjectArrayComponentTypeOptionsOneOf as g9, type Rule as gA, type RequiredOptions as gB, type HiddenOptions as gC, type AllowedValuesOptions as gD, type FieldOverride as gE, type FieldOverridePropertyTypeOptionsOneOf as gF, type ConditionNode as gG, type ConditionNodeNodeOneOf as gH, type AndCondition as gI, type OrCondition as gJ, type Condition as gK, type RuleFormOverride as gL, type RuleFormOverrideEntityTypeOptionsOneOf as gM, type Tags as gN, type TagsTagList as gO, type QuizSettings as gP, type QuizSettingsPassingCriteriaOneOf as gQ, type QuizSettingsResultsDisplayOptionsOneOf as gR, type PassFailMessages as gS, type CreateCheckoutFromSubmissionResponse as gT, type Checkout as gU, type IsFormSubmittableRequest as gV, type IsFormSubmittableResponse as gW, type Empty as gX, type UpsertContactFromSubmissionRequest as gY, type SubmitContactResponse as gZ, type CreateSubmissionRequest as g_, type DisplayField as ga, type DisplayFieldDisplayFieldTypeOptionsOneOf as gb, type RichContentOptions as gc, type PageNavigationOptions as gd, type Step as ge, type FormRule as gf, type FormOverride as gg, type FormProperties as gh, type PostSubmissionTriggers as gi, type UpsertContact as gj, type V4FormFieldContactInfo as gk, type V4FormFieldContactInfoAdditionalInfoOneOf as gl, type FormFieldContactInfoEmailInfo as gm, type FormFieldContactInfoPhoneInfo as gn, type FormFieldContactInfoAddressInfo as go, type FormFieldContactInfoCustomFieldInfo as gp, type FormFieldContactInfoSubscriptionInfo as gq, type NestedForm as gr, type LimitationRule as gs, type RequiredIndicatorProperties as gt, type SubmitSettings as gu, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gv, type ThankYouMessageOptions as gw, type RedirectOptions as gx, type PopupOptions as gy, type FieldGroup as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type UpdateExtendedFieldsRequest as h$, type SubmissionValidationErrorsDetails as h0, type ValidationError as h1, type CreateSubmissionBySubmitterRequest as h2, type CreateSubmissionBySubmitterResponse as h3, type BulkCreateSubmissionBySubmitterRequest as h4, type BulkCreateSubmissionBySubmitterData as h5, type BulkCreateSubmissionBySubmitterResponse as h6, type BulkSubmissionResult as h7, type ItemMetadata as h8, type ApplicationError as h9, type CursorSearch as hA, type CursorSearchPagingMethodOneOf as hB, type SearchDetails as hC, type SearchSubmissionsByNamespaceForExportRequest as hD, type SearchSubmissionsByNamespaceForExportResponse as hE, type QuerySubmissionsByNamespaceRequest as hF, type QuerySubmissionsByNamespaceResponse as hG, type QuerySubmissionsByNamespaceForExportRequest as hH, type QuerySubmissionsByNamespaceForExportResponse as hI, type CountSubmissionsByFilterRequest as hJ, type FormSubmissionsCount as hK, type CountSubmissionsRequest as hL, type CountDeletedSubmissionsRequest as hM, type FormDeletedSubmissionsCount as hN, type GetMediaUploadURLRequest as hO, type BulkMarkSubmissionsAsSeenRequest as hP, type GetSubmissionDownloadUrlRequest as hQ, type SubmissionDocument as hR, type SubmissionDocumentDocumentOneOf as hS, type DocumentReady as hT, type DownloadSubmissionRequest as hU, type HeadersEntry as hV, type GetFormattedSubmissionRequest as hW, type FormattedSubmission as hX, type ListFormattedSubmissionsRequest as hY, type ListFormattedSubmissionsResponse as hZ, type FormattedFormSubmission as h_, type BulkActionMetadata as ha, type GetSubmissionRequest as hb, type GetSubmissionResponse as hc, type GetSubmissionByCheckoutIdRequest as hd, type GetSubmissionByCheckoutIdResponse as he, type UpdateSubmissionRequest as hf, type UpdateSubmissionResponse as hg, type ConfirmSubmissionRequest as hh, type DeleteSubmissionRequest as hi, type DeleteSubmissionResponse as hj, type BulkDeleteSubmissionRequest as hk, type BulkDeleteSubmissionResult as hl, type RestoreSubmissionFromTrashBinRequest as hm, type RemoveSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinResponse as ho, type BulkRemoveSubmissionFromTrashBinRequest as hp, type BulkRemoveSubmissionFromTrashBinResult as hq, type ListDeletedSubmissionsRequest as hr, type CursorPaging as hs, type CursorPagingMetadata as ht, type Cursors as hu, type GetDeletedSubmissionRequest as hv, type QuerySubmissionRequest as hw, type CursorQueryPagingMethodOneOf as hx, type Sorting as hy, type SearchSubmissionsByNamespaceRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PlacementWithLiterals as i$, type BulkUpdateFormSubmissionTagsRequest as i0, type BulkUpdateFormSubmissionTagsResponse as i1, type BulkUpdateFormSubmissionTagsResult as i2, type BulkUpdateFormSubmissionTagsByFilterRequest as i3, type BulkUpdateFormSubmissionTagsByFilterResponse as i4, type ValidateFormSubmissionRequest as i5, type FieldViolation as i6, type FieldViolationErrorDataOneOf as i7, type SubmissionValidationErrors as i8, type SubmissionValidationError as i9, type WidthTypeWithLiterals as iA, type PluginContainerDataAlignmentWithLiterals as iB, type ButtonDataTypeWithLiterals as iC, type LinkTargetWithLiterals as iD, type TextAlignmentWithLiterals as iE, type LineStyleWithLiterals as iF, type WidthWithLiterals as iG, type DividerDataAlignmentWithLiterals as iH, type ViewModeWithLiterals as iI, type LayoutTypeWithLiterals as iJ, type OrientationWithLiterals as iK, type CropWithLiterals as iL, type ThumbnailsAlignmentWithLiterals as iM, type GIFTypeWithLiterals as iN, type SourceWithLiterals as iO, type StylesPositionWithLiterals as iP, type MapTypeWithLiterals as iQ, type ViewRoleWithLiterals as iR, type VoteRoleWithLiterals as iS, type PollLayoutTypeWithLiterals as iT, type PollLayoutDirectionWithLiterals as iU, type PollDesignBackgroundTypeWithLiterals as iV, type DecorationTypeWithLiterals as iW, type FontTypeWithLiterals as iX, type PositionWithLiterals as iY, type AspectRatioWithLiterals as iZ, type ResizingWithLiterals as i_, type SubmissionValidationErrorErrorMessageOneOf as ia, type BaseEventMetadata as ib, type EventMetadata as ic, type AccountInfoMetadata as id, type FormSubmissionSearchSpec as ie, type SubmissionsQueryResult as ig, type FormSubmissionQuerySpec as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions as ij, utils as ik, type SubmissionStatusWithLiterals as il, type OptInLevelWithLiterals as im, type WebhookIdentityTypeWithLiterals as io, type StringTypeFormatEnumFormatWithLiterals as ip, type DayOfWeekWithLiterals as iq, type ValidationFormatWithLiterals as ir, type ProductTypeWithLiterals as is, type PriceTypeWithLiterals as it, type FieldTypeWithLiterals as iu, type FormatEnumFormatWithLiterals as iv, type StringComponentTypeWithLiterals as iw, type NodeTypeWithLiterals as ix, type BackgroundTypeWithLiterals as iy, type GradientTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type OperatorWithLiterals as j$, type CardStylesTypeWithLiterals as j0, type CardStylesAlignmentWithLiterals as j1, type LayoutWithLiterals as j2, type AppTypeWithLiterals as j3, type InitialExpandedItemsWithLiterals as j4, type DirectionWithLiterals as j5, type VerticalAlignmentWithLiterals as j6, type NullValueWithLiterals as j7, type ImageScalingScalingWithLiterals as j8, type LayoutDataImagePositionWithLiterals as j9, type ObjectArrayComponentTypeWithLiterals as jA, type SchedulingComponentTypeWithLiterals as jB, type FormatWithLiterals as jC, type MeetingTypeWithLiterals as jD, type StaffStrategySelectionWithLiterals as jE, type InputTypeWithLiterals as jF, type EmailInfoTagWithLiterals as jG, type PhoneInfoTagWithLiterals as jH, type TagWithLiterals as jI, type ConfirmationLevelWithLiterals as jJ, type SubscriptionChannelWithLiterals as jK, type ContactFieldWithLiterals as jL, type DisplayFieldTypeWithLiterals as jM, type OverrideEntityTypeWithLiterals as jN, type KindWithLiterals as jO, type FormFieldContactInfoEmailInfoTagWithLiterals as jP, type FormFieldContactInfoPhoneInfoTagWithLiterals as jQ, type AddressInfoTagWithLiterals as jR, type SubscriptionInfoOptInLevelWithLiterals as jS, type FormFieldContactInfoContactFieldWithLiterals as jT, type SpamFilterProtectionLevelWithLiterals as jU, type RequiredIndicatorWithLiterals as jV, type RequiredIndicatorPlacementWithLiterals as jW, type TargetWithLiterals as jX, type SubmitSuccessActionWithLiterals as jY, type ChangeablePropertyWithLiterals as jZ, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j_, type OriginWithLiterals as ja, type LayoutDataBackgroundTypeWithLiterals as jb, type BackdropTypeWithLiterals as jc, type VerticalAlignmentAlignmentWithLiterals as jd, type ResponsivenessBehaviourWithLiterals as je, type DesignTargetWithLiterals as jf, type ScalingWithLiterals as jg, type ImagePositionPositionWithLiterals as jh, type CardDataBackgroundTypeWithLiterals as ji, type ListStyleWithLiterals as jj, type IndentationWithLiterals as jk, type ImagePositionWithLiterals as jl, type AlignmentWithLiterals as jm, type ImageFitWithLiterals as jn, type NumberOfColumnsWithLiterals as jo, type FirstDayOfWeekWithLiterals as jp, type NumberComponentTypeWithLiterals as jq, type BooleanComponentTypeWithLiterals as jr, type ItemTypeWithLiterals as js, type PropertiesTypeEnumWithLiterals as jt, type ArrayComponentTypeWithLiterals as ju, type WixFileComponentTypeWithLiterals as jv, type UploadFileFormatWithLiterals as jw, type PaymentComponentTypeWithLiterals as jx, type ComponentTypeWithLiterals as jy, type TypeWithLiterals as jz, type CursorQuery as k, type ResultsDisplayWithLiterals as k0, type ContactAutofillWithLiterals as k1, type SubmissionAccessWithLiterals as k2, type IdentityTypeWithLiterals as k3, type ErrorTypeWithLiterals as k4, type SortOrderWithLiterals as k5, type ModeWithLiterals as k6, type StatusWithLiterals as k7, type SubmissionErrorTypeWithLiterals as k8, type CommonSearchWithEntityContext as k9, bulkMarkSubmissionsAsSeen as kA, getSubmissionDownloadUrl as kB, downloadSubmission as kC, getFormattedSubmission as kD, updateExtendedFields as kE, validateFormSubmission as kF, type CommonQueryWithEntityContext as ka, onSubmissionCreated as kb, onSubmissionDeleted as kc, onSubmissionRemovedSubmissionFromTrash as kd, onSubmissionStatusUpdated as ke, onSubmissionContactMapped as kf, onSubmissionContactMappingSkipped as kg, onSubmissionUpdated as kh, upsertContactFromSubmission as ki, createSubmission as kj, getSubmission as kk, updateSubmission as kl, confirmSubmission as km, deleteSubmission as kn, bulkDeleteSubmission as ko, restoreSubmissionFromTrashBin as kp, removeSubmissionFromTrashBin as kq, bulkRemoveSubmissionFromTrashBin as kr, listDeletedSubmissions as ks, getDeletedSubmission as kt, querySubmission as ku, querySubmissionsByNamespace as kv, countSubmissionsByFilter as kw, countSubmissions as kx, countDeletedSubmissions as ky, getMediaUploadUrl as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
8346
|
+
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberOfColumns as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, SmartBlockDataType as aW, ColumnSize as aX, ImagePosition as aY, Alignment as aZ, ImageFit as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type RestoreInfo as b$, FirstDayOfWeek as b0, NumberComponentType as b1, BooleanComponentType as b2, ItemType as b3, PropertiesTypeEnum as b4, ArrayComponentType as b5, WixFileComponentType as b6, UploadFileFormat as b7, PaymentComponentType as b8, ComponentType as b9, ChangeableProperty as bA, OverrideEntityTypeEnumOverrideEntityType as bB, Operator as bC, ResultsDisplay as bD, ContactAutofill as bE, SubmissionAccess as bF, IdentityType as bG, ErrorType as bH, SortOrder as bI, Mode as bJ, Status as bK, SubmissionErrorType as bL, type Submitter as bM, type SubmitterSubmitterOneOf as bN, type ExtendedFields as bO, type OrderDetails as bP, type PublicTags as bQ, type TagList as bR, type AppointmentDetails as bS, type FormSubmissionStatusUpdatedEvent as bT, type RemovedSubmissionFromTrash as bU, type SubmissionContactMapped as bV, type MarketingSubscriptionDetails as bW, type SubmissionContactMappingSkipped as bX, type DomainEvent as bY, type DomainEventBodyOneOf as bZ, type EntityCreatedEvent as b_, Type as ba, ObjectArrayComponentType as bb, SchedulingComponentType as bc, Format as bd, MeetingType as be, StaffStrategySelection as bf, InputType as bg, EmailInfoTag as bh, PhoneInfoTag as bi, Tag as bj, ConfirmationLevel as bk, SubscriptionChannel as bl, ContactField as bm, DisplayFieldType as bn, OverrideEntityType as bo, Kind as bp, FormFieldContactInfoEmailInfoTag as bq, FormFieldContactInfoPhoneInfoTag as br, AddressInfoTag as bs, SubscriptionInfoOptInLevel as bt, FormFieldContactInfoContactField as bu, SpamFilterProtectionLevel as bv, RequiredIndicator as bw, RequiredIndicatorPlacement as bx, Target as by, SubmitSuccessAction as bz, type CreateSubmissionValidationErrors as c, type Node as c$, type EntityUpdatedEvent as c0, type EntityDeletedEvent as c1, type ActionEvent as c2, type MessageEnvelope as c3, type IdentificationData as c4, type IdentificationDataIdOneOf as c5, type AccountInfo as c6, type CreateCheckoutFromSubmissionRequest as c7, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c8, type Form as c9, type QuantityLimit as cA, type FixedPriceOptions as cB, type DynamicPriceOptions as cC, type Product as cD, type ProductPriceOptionsOneOf as cE, type MultilineAddressValidation as cF, type FieldOverrides as cG, type FieldsOverrides as cH, type ObjectArrayType as cI, type NestedFormFieldOverrides as cJ, type Validation as cK, type ValidationValidationOneOf as cL, type DataExtensionsDetails as cM, type NestedFormOverrides as cN, type Field as cO, type FieldFieldTypeOptionsOneOf as cP, type InputField as cQ, type InputFieldInputTypeOptionsOneOf as cR, type StringCorrectAnswersList as cS, type StringType as cT, type StringTypeFormatOptionsOneOf as cU, type DateTimeConstraints as cV, type PhoneConstraints as cW, type ValidationMessages as cX, type StringQuizFieldSettings as cY, type TextInput as cZ, type RichContent as c_, type FormField as ca, type FormFieldStringType as cb, type FormFieldStringTypeFormatOptionsOneOf as cc, type StringErrorMessages as cd, type DateTimeAdvancedConstraints as ce, type Availability as cf, type DateRange as cg, type StringTypeDateTimeConstraints as ch, type StringTypePhoneConstraints as ci, type StringTypeValidationMessages as cj, type FormFieldNumberType as ck, type NumberErrorMessages as cl, type IntegerType as cm, type FormFieldBooleanType as cn, type BooleanErrorMessages as co, type FormFieldArrayType as cp, type FormFieldObjectType as cq, type ObjectTypePropertiesType as cr, type ObjectTypePropertiesTypePropertiesTypeOneOf as cs, type ObjectErrorMessages as ct, type ArrayTypeArrayItems as cu, type ArrayTypeArrayItemsItemsOneOf as cv, type ArrayErrorMessages as cw, type PredefinedValidation as cx, type PredefinedValidationFormatOptionsOneOf as cy, type PaymentType as cz, type UpdateSubmission as d, type Decoration as d$, type NodeDataOneOf as d0, type NodeStyle as d1, type ButtonData as d2, type Gradient as d3, type Stop as d4, type Border as d5, type Colors as d6, type Background as d7, type PluginContainerData as d8, type PluginContainerDataWidth as d9, type GIF as dA, type HeadingData as dB, type HTMLData as dC, type HTMLDataDataOneOf as dD, type ImageData as dE, type StylesBorder as dF, type ImageDataStyles as dG, type LinkPreviewData as dH, type LinkPreviewDataStyles as dI, type MapData as dJ, type MapSettings as dK, type ParagraphData as dL, type PollData as dM, type Permissions as dN, type PollOption as dO, type Settings as dP, type PollLayout as dQ, type OptionLayout as dR, type BackgroundGradient as dS, type PollDesignBackground as dT, type PollDesignBackgroundBackgroundOneOf as dU, type PollDesign as dV, type OptionDesign as dW, type Poll as dX, type PollDataLayout as dY, type Design as dZ, type TextData as d_, type PluginContainerDataWidthDataOneOf as da, type Spoiler as db, type Height as dc, type Styles as dd, type Link as de, type LinkDataOneOf as df, type Rel as dg, type CodeBlockData as dh, type TextStyle as di, type DividerData as dj, type FileData as dk, type FileSource as dl, type FileSourceDataOneOf as dm, type PDFSettings as dn, type GalleryData as dp, type Media as dq, type Image as dr, type Video as ds, type Item as dt, type ItemDataOneOf as du, type GalleryOptions as dv, type GalleryOptionsLayout as dw, type ItemStyle as dx, type Thumbnails as dy, type GIFData as dz, type UpdateSubmissionValidationErrors as e, type DatePicker as e$, type DecorationDataOneOf as e0, type AnchorData as e1, type ColorData as e2, type LinkData as e3, type MentionData as e4, type FontSizeData as e5, type SpoilerData as e6, type FontFamilyData as e7, type AppEmbedData as e8, type AppEmbedDataAppDataOneOf as e9, type Banner as eA, type LayoutDataBackground as eB, type Backdrop as eC, type LayoutCellData as eD, type ShapeData as eE, type ShapeDataStyles as eF, type CardData as eG, type CardDataBackground as eH, type BackgroundImage as eI, type TocData as eJ, type SmartBlockData as eK, type SmartBlockCellData as eL, type Metadata as eM, type DocumentStyle as eN, type TextNodeStyle as eO, type MediaItem as eP, type MediaItemMediaOneOf as eQ, type MediaSettings as eR, type RadioGroup as eS, type RadioGroupOption as eT, type CustomOption as eU, type Dropdown as eV, type DropdownOption as eW, type DateTimeInput as eX, type PhoneInput as eY, type DateInput as eZ, type TimeInput as e_, type BookingData as ea, type EventData as eb, type ButtonStyles as ec, type ImageStyles as ed, type RibbonStyles as ee, type CardStyles as ef, type PricingData as eg, type VideoData as eh, type PlaybackOptions as ei, type EmbedData as ej, type Oembed as ek, type CollapsibleListData as el, type TableData as em, type Dimensions as en, type TableCellData as eo, type CellStyle as ep, type BorderColors as eq, type BorderWidths as er, type ListValue as es, type AudioData as et, type OrderedListData as eu, type BulletedListData as ev, type BlockquoteData as ew, type CaptionData as ex, type LayoutData as ey, type LayoutDataBackgroundImage as ez, type ConfirmSubmissionResponse as f, type _Boolean as f$, type ServicesDropdown as f0, type ServiceOption as f1, type Password as f2, type NumberCorrectAnswersList as f3, type NumberType as f4, type NumberQuizFieldSettings as f5, type NumberInput as f6, type RatingInput as f7, type BooleanType as f8, type Checkbox as f9, type FieldsSettings 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 Appointment as fJ, type AppointmentFormatInfoOneOf as fK, type Location as fL, type LocationLocationInfoOneOf as fM, type InPersonOptions as fN, type VideoConferenceOptions as fO, type PhoneOptions as fP, type FormFieldContactInfo as fQ, type FormFieldContactInfoAdditionalInfoOneOf as fR, type EmailInfo as fS, type PhoneInfo as fT, type AddressInfo as fU, type CustomFieldInfo as fV, type SubscriptionInfo as fW, type _String as fX, type _StringComponentTypeOptionsOneOf as fY, type _Number as fZ, type _NumberComponentTypeOptionsOneOf as f_, type CorrectAnswersList 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 QuizFieldSettings as fh, type CheckboxGroup as fi, type Option as fj, type ComponentsTags as fk, type TagsOption as fl, type ServicesCheckboxGroup as fm, type FileType as fn, type FileUpload as fo, type Signature as fp, type ProductCheckboxGroup as fq, type ProductCheckboxGroupOption as fr, type DonationInput as fs, type DonationInputOption as ft, type PaymentInput as fu, type FixedPayment as fv, type MultilineAddress as fw, type AddressLine2 as fx, type DefaultCountryConfig as fy, type DefaultCountryConfigOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type Empty as g$, type _BooleanComponentTypeOptionsOneOf as g0, type _Array as g1, type _ArrayComponentTypeOptionsOneOf as g2, type _Object as g3, type WixFile as g4, type WixFileComponentTypeOptionsOneOf as g5, type Payment as g6, type PaymentComponentTypeOptionsOneOf as g7, type Scheduling as g8, type SchedulingComponentTypeOptionsOneOf as g9, type ThankYouMessageOptions as gA, type RedirectOptions as gB, type PopupOptions as gC, type FieldGroup as gD, type Rule as gE, type RequiredOptions as gF, type HiddenOptions as gG, type AllowedValuesOptions as gH, type FieldOverride as gI, type FieldOverridePropertyTypeOptionsOneOf as gJ, type ConditionNode as gK, type ConditionNodeNodeOneOf as gL, type AndCondition as gM, type OrCondition as gN, type Condition as gO, type RuleFormOverride as gP, type RuleFormOverrideEntityTypeOptionsOneOf as gQ, type Tags as gR, type TagsTagList as gS, type QuizSettings as gT, type QuizSettingsPassingCriteriaOneOf as gU, type QuizSettingsResultsDisplayOptionsOneOf as gV, type PassFailMessages as gW, type CreateCheckoutFromSubmissionResponse as gX, type Checkout as gY, type IsFormSubmittableRequest as gZ, type IsFormSubmittableResponse as g_, type Address as ga, type AddressComponentTypeOptionsOneOf as gb, type ObjectArray as gc, type ObjectArrayComponentTypeOptionsOneOf as gd, type DisplayField as ge, type DisplayFieldDisplayFieldTypeOptionsOneOf as gf, type RichContentOptions as gg, type PageNavigationOptions as gh, type Step as gi, type FormRule as gj, type FormOverride as gk, type FormProperties as gl, type PostSubmissionTriggers as gm, type UpsertContact as gn, type V4FormFieldContactInfo as go, type V4FormFieldContactInfoAdditionalInfoOneOf as gp, type FormFieldContactInfoEmailInfo as gq, type FormFieldContactInfoPhoneInfo as gr, type FormFieldContactInfoAddressInfo as gs, type FormFieldContactInfoCustomFieldInfo as gt, type FormFieldContactInfoSubscriptionInfo as gu, type NestedForm as gv, type LimitationRule as gw, type RequiredIndicatorProperties as gx, type SubmitSettings as gy, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FormattedSubmission as h$, type UpsertContactFromSubmissionRequest as h0, type SubmitContactResponse as h1, type CreateSubmissionRequest as h2, type CreateSubmissionResponse as h3, type SubmissionValidationErrorsDetails as h4, type ValidationError as h5, type CreateSubmissionBySubmitterRequest as h6, type CreateSubmissionBySubmitterResponse as h7, type BulkCreateSubmissionBySubmitterRequest as h8, type BulkCreateSubmissionBySubmitterData as h9, type QuerySubmissionRequest as hA, type CursorQueryPagingMethodOneOf as hB, type Sorting as hC, type SearchSubmissionsByNamespaceRequest as hD, type CursorSearch as hE, type CursorSearchPagingMethodOneOf as hF, type SearchDetails as hG, type SearchSubmissionsByNamespaceForExportRequest as hH, type SearchSubmissionsByNamespaceForExportResponse as hI, type QuerySubmissionsByNamespaceRequest as hJ, type QuerySubmissionsByNamespaceResponse as hK, type QuerySubmissionsByNamespaceForExportRequest as hL, type QuerySubmissionsByNamespaceForExportResponse as hM, type CountSubmissionsByFilterRequest as hN, type FormSubmissionsCount as hO, type CountSubmissionsRequest as hP, type CountDeletedSubmissionsRequest as hQ, type FormDeletedSubmissionsCount as hR, type GetMediaUploadURLRequest as hS, type BulkMarkSubmissionsAsSeenRequest as hT, type GetSubmissionDownloadUrlRequest as hU, type SubmissionDocument as hV, type SubmissionDocumentDocumentOneOf as hW, type DocumentReady as hX, type DownloadSubmissionRequest as hY, type HeadersEntry as hZ, type GetFormattedSubmissionRequest as h_, type BulkCreateSubmissionBySubmitterResponse as ha, type BulkSubmissionResult as hb, type ItemMetadata as hc, type ApplicationError as hd, type BulkActionMetadata as he, type GetSubmissionRequest as hf, type GetSubmissionResponse as hg, type GetSubmissionByCheckoutIdRequest as hh, type GetSubmissionByCheckoutIdResponse as hi, type UpdateSubmissionRequest as hj, type UpdateSubmissionResponse as hk, type ConfirmSubmissionRequest as hl, type DeleteSubmissionRequest as hm, type DeleteSubmissionResponse as hn, type BulkDeleteSubmissionRequest as ho, type BulkDeleteSubmissionResult as hp, type RestoreSubmissionFromTrashBinRequest as hq, type RemoveSubmissionFromTrashBinRequest as hr, type RemoveSubmissionFromTrashBinResponse as hs, type BulkRemoveSubmissionFromTrashBinRequest as ht, type BulkRemoveSubmissionFromTrashBinResult as hu, type ListDeletedSubmissionsRequest as hv, type CursorPaging as hw, type CursorPagingMetadata as hx, type Cursors as hy, type GetDeletedSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FontTypeWithLiterals as i$, type ListFormattedSubmissionsRequest as i0, type ListFormattedSubmissionsResponse as i1, type FormattedFormSubmission as i2, type UpdateExtendedFieldsRequest as i3, type BulkUpdateFormSubmissionTagsRequest as i4, type BulkUpdateFormSubmissionTagsResponse as i5, type BulkUpdateFormSubmissionTagsResult as i6, type BulkUpdateFormSubmissionTagsByFilterRequest as i7, type BulkUpdateFormSubmissionTagsByFilterResponse as i8, type ValidateFormSubmissionRequest as i9, type StringComponentTypeWithLiterals as iA, type NodeTypeWithLiterals as iB, type BackgroundTypeWithLiterals as iC, type GradientTypeWithLiterals as iD, type WidthTypeWithLiterals as iE, type PluginContainerDataAlignmentWithLiterals as iF, type ButtonDataTypeWithLiterals as iG, type LinkTargetWithLiterals as iH, type TextAlignmentWithLiterals as iI, type LineStyleWithLiterals as iJ, type WidthWithLiterals as iK, type DividerDataAlignmentWithLiterals as iL, type ViewModeWithLiterals as iM, type LayoutTypeWithLiterals as iN, type OrientationWithLiterals as iO, type CropWithLiterals as iP, type ThumbnailsAlignmentWithLiterals as iQ, type GIFTypeWithLiterals as iR, type SourceWithLiterals as iS, type StylesPositionWithLiterals as iT, type MapTypeWithLiterals as iU, type ViewRoleWithLiterals as iV, type VoteRoleWithLiterals as iW, type PollLayoutTypeWithLiterals as iX, type PollLayoutDirectionWithLiterals as iY, type PollDesignBackgroundTypeWithLiterals as iZ, type DecorationTypeWithLiterals as i_, type FieldViolation as ia, type FieldViolationErrorDataOneOf as ib, type SubmissionValidationErrors as ic, type SubmissionValidationError as id, type SubmissionValidationErrorErrorMessageOneOf as ie, type BaseEventMetadata as ig, type EventMetadata as ih, type AccountInfoMetadata as ii, type FormSubmissionSearchSpec as ij, type SubmissionsQueryResult as ik, type FormSubmissionQuerySpec as il, type BulkUpdateFormSubmissionTagsOptions as im, type BulkUpdateFormSubmissionTagsByFilterOptions as io, utils as ip, type SubmissionStatusWithLiterals as iq, type OptInLevelWithLiterals as ir, type WebhookIdentityTypeWithLiterals as is, type StringTypeFormatEnumFormatWithLiterals as it, type DayOfWeekWithLiterals as iu, type ValidationFormatWithLiterals as iv, type ProductTypeWithLiterals as iw, type PriceTypeWithLiterals as ix, type FieldTypeWithLiterals as iy, type FormatEnumFormatWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorWithLiterals as j$, type PositionWithLiterals as j0, type AspectRatioWithLiterals as j1, type ResizingWithLiterals as j2, type PlacementWithLiterals as j3, type CardStylesTypeWithLiterals as j4, type CardStylesAlignmentWithLiterals as j5, type LayoutWithLiterals as j6, type AppTypeWithLiterals as j7, type InitialExpandedItemsWithLiterals as j8, type DirectionWithLiterals as j9, type ArrayComponentTypeWithLiterals as jA, type WixFileComponentTypeWithLiterals as jB, type UploadFileFormatWithLiterals as jC, type PaymentComponentTypeWithLiterals as jD, type ComponentTypeWithLiterals as jE, type TypeWithLiterals as jF, type ObjectArrayComponentTypeWithLiterals as jG, type SchedulingComponentTypeWithLiterals as jH, type FormatWithLiterals as jI, type MeetingTypeWithLiterals as jJ, type StaffStrategySelectionWithLiterals as jK, type InputTypeWithLiterals as jL, type EmailInfoTagWithLiterals as jM, type PhoneInfoTagWithLiterals as jN, type TagWithLiterals as jO, type ConfirmationLevelWithLiterals as jP, type SubscriptionChannelWithLiterals as jQ, type ContactFieldWithLiterals as jR, type DisplayFieldTypeWithLiterals as jS, type OverrideEntityTypeWithLiterals as jT, type KindWithLiterals as jU, type FormFieldContactInfoEmailInfoTagWithLiterals as jV, type FormFieldContactInfoPhoneInfoTagWithLiterals as jW, type AddressInfoTagWithLiterals as jX, type SubscriptionInfoOptInLevelWithLiterals as jY, type FormFieldContactInfoContactFieldWithLiterals as jZ, type SpamFilterProtectionLevelWithLiterals as j_, type VerticalAlignmentWithLiterals as ja, type NullValueWithLiterals as jb, type ImageScalingScalingWithLiterals as jc, type LayoutDataImagePositionWithLiterals as jd, type OriginWithLiterals as je, type LayoutDataBackgroundTypeWithLiterals as jf, type BackdropTypeWithLiterals as jg, type VerticalAlignmentAlignmentWithLiterals as jh, type ResponsivenessBehaviourWithLiterals as ji, type DesignTargetWithLiterals as jj, type ScalingWithLiterals as jk, type ImagePositionPositionWithLiterals as jl, type CardDataBackgroundTypeWithLiterals as jm, type ListStyleWithLiterals as jn, type IndentationWithLiterals as jo, type SmartBlockDataTypeWithLiterals as jp, type ColumnSizeWithLiterals as jq, type ImagePositionWithLiterals as jr, type AlignmentWithLiterals as js, type ImageFitWithLiterals as jt, type NumberOfColumnsWithLiterals as ju, type FirstDayOfWeekWithLiterals as jv, type NumberComponentTypeWithLiterals as jw, type BooleanComponentTypeWithLiterals as jx, type ItemTypeWithLiterals as jy, type PropertiesTypeEnumWithLiterals as jz, type CursorQuery as k, type RequiredIndicatorPlacementWithLiterals as k0, type TargetWithLiterals as k1, type SubmitSuccessActionWithLiterals as k2, type ChangeablePropertyWithLiterals as k3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k4, type OperatorWithLiterals as k5, type ResultsDisplayWithLiterals as k6, type ContactAutofillWithLiterals as k7, type SubmissionAccessWithLiterals as k8, type IdentityTypeWithLiterals as k9, querySubmission as kA, querySubmissionsByNamespace as kB, countSubmissionsByFilter as kC, countSubmissions as kD, countDeletedSubmissions as kE, getMediaUploadUrl as kF, bulkMarkSubmissionsAsSeen as kG, getSubmissionDownloadUrl as kH, downloadSubmission as kI, getFormattedSubmission as kJ, updateExtendedFields as kK, validateFormSubmission as kL, type ErrorTypeWithLiterals as ka, type SortOrderWithLiterals as kb, type ModeWithLiterals as kc, type StatusWithLiterals as kd, type SubmissionErrorTypeWithLiterals as ke, type CommonSearchWithEntityContext as kf, type CommonQueryWithEntityContext as kg, onSubmissionCreated as kh, onSubmissionDeleted as ki, onSubmissionRemovedSubmissionFromTrash as kj, onSubmissionStatusUpdated as kk, onSubmissionContactMapped as kl, onSubmissionContactMappingSkipped as km, onSubmissionUpdated as kn, upsertContactFromSubmission as ko, createSubmission as kp, getSubmission as kq, updateSubmission as kr, confirmSubmission as ks, deleteSubmission as kt, bulkDeleteSubmission as ku, restoreSubmissionFromTrashBin as kv, removeSubmissionFromTrashBin as kw, bulkRemoveSubmissionFromTrashBin as kx, listDeletedSubmissions as ky, getDeletedSubmission as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { c4 as AccountInfo, id as AccountInfoMetadata, c0 as ActionEvent, g6 as Address, g7 as AddressComponentTypeOptionsOneOf, fQ as AddressInfo, bq as AddressInfoTag, jR as AddressInfoTagWithLiterals, ft as AddressLine2, aX as Alignment, jm as AlignmentWithLiterals, gD as AllowedValuesOptions, d$ as AnchorData, gI as AndCondition, e6 as AppEmbedData, e7 as AppEmbedDataAppDataOneOf, aE as AppType, j3 as AppTypeWithLiterals, h9 as ApplicationError, fF as Appointment, bQ as AppointmentDetails, fG as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, ju as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fb as ArrayItems, fc as ArrayItemsItemTypeOptionsOneOf, f7 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iZ as AspectRatioWithLiterals, er as AudioData, cd as Availability, eA as Backdrop, aN as BackdropType, jc as BackdropTypeWithLiterals, d5 as Background, dQ as BackgroundGradient, eG as BackgroundImage, a7 as BackgroundType, iy as BackgroundTypeWithLiterals, ey as Banner, ib as BaseEventMetadata, eu as BlockquoteData, e8 as BookingData, b0 as BooleanComponentType, jr as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f4 as BooleanType, d3 as Border, eo as BorderColors, ep as BorderWidths, fz as BreakPoint, ha as BulkActionMetadata, h5 as BulkCreateSubmissionBySubmitterData, h4 as BulkCreateSubmissionBySubmitterRequest, h6 as BulkCreateSubmissionBySubmitterResponse, hk as BulkDeleteSubmissionRequest, hl as BulkDeleteSubmissionResult, hP as BulkMarkSubmissionsAsSeenRequest, hp as BulkRemoveSubmissionFromTrashBinRequest, hq as BulkRemoveSubmissionFromTrashBinResult, h7 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i3 as BulkUpdateFormSubmissionTagsByFilterRequest, i4 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResponse, i2 as BulkUpdateFormSubmissionTagsResult, et as BulletedListData, d0 as ButtonData, ab as ButtonDataType, iC as ButtonDataTypeWithLiterals, ea as ButtonStyles, ev as CaptionData, eE as CardData, eF as CardDataBackground, aT as CardDataBackgroundType, ji as CardDataBackgroundTypeWithLiterals, ed as CardStyles, aC as CardStylesAlignment, j1 as CardStylesAlignmentWithLiterals, aB as CardStylesType, j0 as CardStylesTypeWithLiterals, en as CellStyle, by as ChangeableProperty, jZ as ChangeablePropertyWithLiterals, f5 as Checkbox, fe as CheckboxGroup, gU as Checkout, df as CodeBlockData, ej as CollapsibleListData, e0 as ColorData, d4 as Colors, ka as CommonQueryWithEntityContext, k9 as CommonSearchWithEntityContext, b7 as ComponentType, jy as ComponentTypeWithLiterals, fg as ComponentsTags, gK as Condition, gG as ConditionNode, gH as ConditionNodeNodeOneOf, hh as ConfirmSubmissionRequest, bi as ConfirmationLevel, jJ as ConfirmationLevelWithLiterals, bC as ContactAutofill, k1 as ContactAutofillWithLiterals, bk as ContactField, jL as ContactFieldWithLiterals, f6 as CorrectAnswersList, hM as CountDeletedSubmissionsRequest, hJ as CountSubmissionsByFilterRequest, hL as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gT as CreateCheckoutFromSubmissionResponse, h2 as CreateSubmissionBySubmitterRequest, h3 as CreateSubmissionBySubmitterResponse, g_ as CreateSubmissionRequest, g$ as CreateSubmissionResponse, ak as Crop, iL as CropWithLiterals, hs as CursorPaging, ht as CursorPagingMetadata, hx as CursorQueryPagingMethodOneOf, hA as CursorSearch, hB as CursorSearchPagingMethodOneOf, hu as Cursors, fR as CustomFieldInfo, eQ as CustomOption, cK as DataExtensionsDetails, eV as DateInput, eX as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cT as DateTimeConstraints, eT as DateTimeInput, $ as DayOfWeek, iq as DayOfWeekWithLiterals, dZ as Decoration, d_ as DecorationDataOneOf, av as DecorationType, iW as DecorationTypeWithLiterals, fu as DefaultCountryConfig, fv as DefaultCountryConfigOptionsOneOf, hi as DeleteSubmissionRequest, hj as DeleteSubmissionResponse, dX as Design, aQ as DesignTarget, jf as DesignTargetWithLiterals, el as Dimensions, aG as Direction, j5 as DirectionWithLiterals, ga as DisplayField, gb as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jM as DisplayFieldTypeWithLiterals, dh as DividerData, ag as DividerDataAlignment, iH as DividerDataAlignmentWithLiterals, hT as DocumentReady, eJ as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fo as DonationInput, fp as DonationInputOption, hU as DownloadSubmissionRequest, eR as Dropdown, eS as DropdownOption, cA as DynamicPriceOptions, fO as EmailInfo, bf as EmailInfoTag, jG as EmailInfoTagWithLiterals, eh as EmbedData, gX as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k4 as ErrorTypeWithLiterals, e9 as EventData, ic as EventMetadata, bM as ExtendedFields, cM as Field, cN as FieldFieldTypeOptionsOneOf, gz as FieldGroup, gE as FieldOverride, gF as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a3 as FieldType, iu as FieldTypeWithLiterals, i6 as FieldViolation, i7 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fw as FieldsSettings, di as FileData, dj as FileSource, dk as FileSourceDataOneOf, fj as FileType, fk as FileUpload, a_ as FirstDayOfWeek, jp as FirstDayOfWeekWithLiterals, fr as FixedPayment, cz as FixedPriceOptions, e5 as FontFamilyData, e3 as FontSizeData, aw as FontType, iX as FontTypeWithLiterals, c7 as Form, hN as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fM as FormFieldContactInfo, fN as FormFieldContactInfoAdditionalInfoOneOf, go as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jT as FormFieldContactInfoContactFieldWithLiterals, gp as FormFieldContactInfoCustomFieldInfo, gm as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jP as FormFieldContactInfoEmailInfoTagWithLiterals, gn as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jQ as FormFieldContactInfoPhoneInfoTagWithLiterals, gq as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fy as FormLayout, gg as FormOverride, gh as FormProperties, gf as FormRule, ih as FormSubmissionQuerySpec, ie as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hK as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, iv as FormatEnumFormatWithLiterals, jC as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, dy as GIF, dx as GIFData, am as GIFType, iN as GIFTypeWithLiterals, dm as GalleryData, dt as GalleryOptions, du as GalleryOptionsLayout, hv as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hO as GetMediaUploadURLRequest, hd as GetSubmissionByCheckoutIdRequest, he as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, hb as GetSubmissionRequest, hc as GetSubmissionResponse, d1 as Gradient, a8 as GradientType, iz as GradientTypeWithLiterals, fC as Group, dA as HTMLData, dB as HTMLDataDataOneOf, hV as HeadersEntry, dz as HeadingData, da as Height, gC as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k3 as IdentityTypeWithLiterals, dp as Image, dC as ImageData, dE as ImageDataStyles, aY as ImageFit, jn as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jh as ImagePositionPositionWithLiterals, jl as ImagePositionWithLiterals, aJ as ImageScalingScaling, j8 as ImageScalingScalingWithLiterals, eb as ImageStyles, fJ as InPersonOptions, aV as Indentation, jk as IndentationWithLiterals, aF as InitialExpandedItems, j4 as InitialExpandedItemsWithLiterals, cO as InputField, cP as InputFieldInputTypeOptionsOneOf, be as InputType, jF as InputTypeWithLiterals, ck as IntegerType, gV as IsFormSubmittableRequest, gW as IsFormSubmittableResponse, dr as Item, ds as ItemDataOneOf, fA as ItemLayout, fB as ItemLayoutItemOneOf, h8 as ItemMetadata, dv as ItemStyle, b1 as ItemType, js as ItemTypeWithLiterals, bn as Kind, jO as KindWithLiterals, aD as Layout, eB as LayoutCellData, ew as LayoutData, ez as LayoutDataBackground, ex as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, jb as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j9 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iJ as LayoutTypeWithLiterals, j2 as LayoutWithLiterals, gs as LimitationRule, ae as LineStyle, iF as LineStyleWithLiterals, dc as Link, e1 as LinkData, dd as LinkDataOneOf, dF as LinkPreviewData, dG as LinkPreviewDataStyles, ac as LinkTarget, iD as LinkTargetWithLiterals, hr as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, aU as ListStyle, jj as ListStyleWithLiterals, eq as ListValue, fH as Location, fI as LocationLocationInfoOneOf, dH as MapData, dI as MapSettings, ap as MapType, iQ as MapTypeWithLiterals, fD as Margin, bU as MarketingSubscriptionDetails, dn as Media, eL as MediaItem, eM as MediaItemMediaOneOf, eN as MediaSettings, bc as MeetingType, jD as MeetingTypeWithLiterals, e2 as MentionData, c1 as MessageEnvelope, eI as Metadata, bH as Mode, k6 as ModeWithLiterals, fs as MultilineAddress, cD as MultilineAddressValidation, gr as NestedForm, cH as NestedFormFieldOverrides, cL as NestedFormOverrides, cZ as Node, c_ as NodeDataOneOf, c$ as NodeStyle, a6 as NodeType, ix as NodeTypeWithLiterals, aI as NullValue, j7 as NullValueWithLiterals, a$ as NumberComponentType, jq as NumberComponentTypeWithLiterals, e$ as NumberCorrectAnswersList, cj as NumberErrorMessages, f2 as NumberInput, aZ as NumberOfColumns, jo as NumberOfColumnsWithLiterals, f1 as NumberQuizFieldSettings, f0 as NumberType, g8 as ObjectArray, b9 as ObjectArrayComponentType, g9 as ObjectArrayComponentTypeOptionsOneOf, jA as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f8 as ObjectType, cp as ObjectTypePropertiesType, cq as ObjectTypePropertiesTypePropertiesTypeOneOf, ei as Oembed, bA as Operator, j$ as OperatorWithLiterals, Y as OptInLevel, im as OptInLevelWithLiterals, ff as Option, dU as OptionDesign, dP as OptionLayout, gJ as OrCondition, bN as OrderDetails, es as OrderedListData, aj as Orientation, iK as OrientationWithLiterals, aL as Origin, ja as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, j_ as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jN as OverrideEntityTypeWithLiterals, dl as PDFSettings, gd as PageNavigationOptions, dJ as ParagraphData, gS as PassFailMessages, e_ as Password, g2 as Payment, b6 as PaymentComponentType, g3 as PaymentComponentTypeOptionsOneOf, jx as PaymentComponentTypeWithLiterals, fq as PaymentInput, cx as PaymentType, dL as Permissions, cU as PhoneConstraints, fP as PhoneInfo, bg as PhoneInfoTag, jH as PhoneInfoTagWithLiterals, eU as PhoneInput, fL as PhoneOptions, aA as Placement, i$ as PlacementWithLiterals, eg as PlaybackOptions, d6 as PluginContainerData, aa as PluginContainerDataAlignment, iB as PluginContainerDataAlignmentWithLiterals, d7 as PluginContainerDataWidth, d8 as PluginContainerDataWidthDataOneOf, dV as Poll, dK as PollData, dW as PollDataLayout, dT as PollDesign, dR as PollDesignBackground, dS as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iV as PollDesignBackgroundTypeWithLiterals, dO as PollLayout, at as PollLayoutDirection, iU as PollLayoutDirectionWithLiterals, as as PollLayoutType, iT as PollLayoutTypeWithLiterals, dM as PollOption, gy as PopupOptions, ax as Position, iY as PositionWithLiterals, gi as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, it as PriceTypeWithLiterals, ee as PricingData, cB as Product, fm as ProductCheckboxGroup, fn as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, is as ProductTypeWithLiterals, f9 as PropertiesType, b2 as PropertiesTypeEnum, jt as PropertiesTypeEnumWithLiterals, fa as PropertiesTypePropertiesTypeOptionsOneOf, bO as PublicTags, cy as QuantityLimit, hw as QuerySubmissionRequest, hH as QuerySubmissionsByNamespaceForExportRequest, hI as QuerySubmissionsByNamespaceForExportResponse, hF as QuerySubmissionsByNamespaceRequest, hG as QuerySubmissionsByNamespaceResponse, fd as QuizFieldSettings, gP as QuizSettings, gQ as QuizSettingsPassingCriteriaOneOf, gR as QuizSettingsResultsDisplayOptionsOneOf, eO as RadioGroup, eP as RadioGroupOption, f3 as RatingInput, gx as RedirectOptions, de as Rel, hn as RemoveSubmissionFromTrashBinRequest, ho as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fx as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jW as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jV as RequiredIndicatorWithLiterals, gB as RequiredOptions, az as Resizing, i_ as ResizingWithLiterals, aP as ResponsivenessBehaviour, je as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hm as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, k0 as ResultsDisplayWithLiterals, ec as RibbonStyles, cY as RichContent, gc as RichContentOptions, gA as Rule, gL as RuleFormOverride, gM as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jg as ScalingWithLiterals, g4 as Scheduling, ba as SchedulingComponentType, g5 as SchedulingComponentTypeOptionsOneOf, jB as SchedulingComponentTypeWithLiterals, hC as SearchDetails, hD as SearchSubmissionsByNamespaceForExportRequest, hE as SearchSubmissionsByNamespaceForExportResponse, hz as SearchSubmissionsByNamespaceRequest, fE as Section, eZ as ServiceOption, fi as ServicesCheckboxGroup, eY as ServicesDropdown, dN as Settings, eC as ShapeData, eD as ShapeDataStyles, fl as Signature, bG as SortOrder, k5 as SortOrderWithLiterals, hy as Sorting, an as Source, iO as SourceWithLiterals, bt as SpamFilterProtectionLevel, jU as SpamFilterProtectionLevelWithLiterals, d9 as Spoiler, e4 as SpoilerData, bd as StaffStrategySelection, jE as StaffStrategySelectionWithLiterals, bI as Status, k7 as StatusWithLiterals, ge as Step, d2 as Stop, a5 as StringComponentType, iw as StringComponentTypeWithLiterals, cQ as StringCorrectAnswersList, cb as StringErrorMessages, cW as StringQuizFieldSettings, cR as StringType, cf as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ip as StringTypeFormatEnumFormatWithLiterals, cS as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, db as Styles, dD as StylesBorder, ao as StylesPosition, iP as StylesPositionWithLiterals, bD as SubmissionAccess, k2 as SubmissionAccessWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k8 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, il as SubmissionStatusWithLiterals, i9 as SubmissionValidationError, ia as SubmissionValidationErrorErrorMessageOneOf, i8 as SubmissionValidationErrors, h0 as SubmissionValidationErrorsDetails, ig as SubmissionsQueryResult, gZ as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jY as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jK as SubscriptionChannelWithLiterals, fS as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jS as SubscriptionInfoOptInLevelWithLiterals, em as TableCellData, ek as TableData, bh as Tag, bP as TagList, jI as TagWithLiterals, gN as Tags, fh as TagsOption, gO as TagsTagList, bw as Target, jX as TargetWithLiterals, ad as TextAlignment, iE as TextAlignmentWithLiterals, dY as TextData, cX as TextInput, eK as TextNodeStyle, dg as TextStyle, gw as ThankYouMessageOptions, dw as Thumbnails, al as ThumbnailsAlignment, iM as ThumbnailsAlignmentWithLiterals, eW as TimeInput, eH as TocData, b8 as Type, jz as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, hf as UpdateSubmissionRequest, hg as UpdateSubmissionResponse, b5 as UploadFileFormat, jw as UploadFileFormatWithLiterals, gj as UpsertContact, gY as UpsertContactFromSubmissionRequest, gk as V4FormFieldContactInfo, gl as V4FormFieldContactInfoAdditionalInfoOneOf, i5 as ValidateFormSubmissionRequest, cI as Validation, h1 as ValidationError, a0 as ValidationFormat, ir as ValidationFormatWithLiterals, cV as ValidationMessages, cJ as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jd as VerticalAlignmentAlignmentWithLiterals, j6 as VerticalAlignmentWithLiterals, dq as Video, fK as VideoConferenceOptions, ef as VideoData, ah as ViewMode, iI as ViewModeWithLiterals, aq as ViewRole, iR as ViewRoleWithLiterals, ar as VoteRole, iS as VoteRoleWithLiterals, Z as WebhookIdentityType, io as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iA as WidthTypeWithLiterals, iG as WidthWithLiterals, g0 as WixFile, b4 as WixFileComponentType, g1 as WixFileComponentTypeOptionsOneOf, jv as WixFileComponentTypeWithLiterals, fZ as _Array, f_ as _ArrayComponentTypeOptionsOneOf, fX as _Boolean, fY as _BooleanComponentTypeOptionsOneOf, fV as _Number, fW as _NumberComponentTypeOptionsOneOf, f$ as _Object, fT as _String, fU as _StringComponentTypeOptionsOneOf, ik as utils } from './forms-v4-submission-submissions.universal-BjJ-qwMD.js';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-BBHYv5E8.js';
|
|
3
|
+
export { c6 as AccountInfo, ii as AccountInfoMetadata, c2 as ActionEvent, ga as Address, gb as AddressComponentTypeOptionsOneOf, fU as AddressInfo, bs as AddressInfoTag, jX as AddressInfoTagWithLiterals, fx as AddressLine2, aZ as Alignment, js as AlignmentWithLiterals, gH as AllowedValuesOptions, e1 as AnchorData, gM as AndCondition, e8 as AppEmbedData, e9 as AppEmbedDataAppDataOneOf, aE as AppType, j7 as AppTypeWithLiterals, hd as ApplicationError, fJ as Appointment, bS as AppointmentDetails, fK as AppointmentFormatInfoOneOf, b5 as ArrayComponentType, jA as ArrayComponentTypeWithLiterals, cw as ArrayErrorMessages, ff as ArrayItems, fg as ArrayItemsItemTypeOptionsOneOf, fb as ArrayType, cu as ArrayTypeArrayItems, cv as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, j1 as AspectRatioWithLiterals, et as AudioData, cf as Availability, eC as Backdrop, aN as BackdropType, jg as BackdropTypeWithLiterals, d7 as Background, dS as BackgroundGradient, eI as BackgroundImage, a7 as BackgroundType, iC as BackgroundTypeWithLiterals, eA as Banner, ig as BaseEventMetadata, ew as BlockquoteData, ea as BookingData, b2 as BooleanComponentType, jx as BooleanComponentTypeWithLiterals, co as BooleanErrorMessages, f8 as BooleanType, d5 as Border, eq as BorderColors, er as BorderWidths, fD as BreakPoint, he as BulkActionMetadata, h9 as BulkCreateSubmissionBySubmitterData, h8 as BulkCreateSubmissionBySubmitterRequest, ha as BulkCreateSubmissionBySubmitterResponse, ho as BulkDeleteSubmissionRequest, hp as BulkDeleteSubmissionResult, hT as BulkMarkSubmissionsAsSeenRequest, ht as BulkRemoveSubmissionFromTrashBinRequest, hu as BulkRemoveSubmissionFromTrashBinResult, hb as BulkSubmissionResult, io as BulkUpdateFormSubmissionTagsByFilterOptions, i7 as BulkUpdateFormSubmissionTagsByFilterRequest, i8 as BulkUpdateFormSubmissionTagsByFilterResponse, im as BulkUpdateFormSubmissionTagsOptions, i4 as BulkUpdateFormSubmissionTagsRequest, i5 as BulkUpdateFormSubmissionTagsResponse, i6 as BulkUpdateFormSubmissionTagsResult, ev as BulletedListData, d2 as ButtonData, ab as ButtonDataType, iG as ButtonDataTypeWithLiterals, ec as ButtonStyles, ex as CaptionData, eG as CardData, eH as CardDataBackground, aT as CardDataBackgroundType, jm as CardDataBackgroundTypeWithLiterals, ef as CardStyles, aC as CardStylesAlignment, j5 as CardStylesAlignmentWithLiterals, aB as CardStylesType, j4 as CardStylesTypeWithLiterals, ep as CellStyle, bA as ChangeableProperty, k3 as ChangeablePropertyWithLiterals, f9 as Checkbox, fi as CheckboxGroup, gY as Checkout, dh as CodeBlockData, el as CollapsibleListData, e2 as ColorData, d6 as Colors, aX as ColumnSize, jq as ColumnSizeWithLiterals, kg as CommonQueryWithEntityContext, kf as CommonSearchWithEntityContext, b9 as ComponentType, jE as ComponentTypeWithLiterals, fk as ComponentsTags, gO as Condition, gK as ConditionNode, gL as ConditionNodeNodeOneOf, hl as ConfirmSubmissionRequest, bk as ConfirmationLevel, jP as ConfirmationLevelWithLiterals, bE as ContactAutofill, k7 as ContactAutofillWithLiterals, bm as ContactField, jR as ContactFieldWithLiterals, fa as CorrectAnswersList, hQ as CountDeletedSubmissionsRequest, hN as CountSubmissionsByFilterRequest, hP as CountSubmissionsRequest, c7 as CreateCheckoutFromSubmissionRequest, c8 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gX as CreateCheckoutFromSubmissionResponse, h6 as CreateSubmissionBySubmitterRequest, h7 as CreateSubmissionBySubmitterResponse, h2 as CreateSubmissionRequest, h3 as CreateSubmissionResponse, ak as Crop, iP as CropWithLiterals, hw as CursorPaging, hx as CursorPagingMetadata, hB as CursorQueryPagingMethodOneOf, hE as CursorSearch, hF as CursorSearchPagingMethodOneOf, hy as Cursors, fV as CustomFieldInfo, eU as CustomOption, cM as DataExtensionsDetails, eZ as DateInput, e$ as DatePicker, cg as DateRange, ce as DateTimeAdvancedConstraints, cV as DateTimeConstraints, eX as DateTimeInput, $ as DayOfWeek, iu as DayOfWeekWithLiterals, d$ as Decoration, e0 as DecorationDataOneOf, av as DecorationType, i_ as DecorationTypeWithLiterals, fy as DefaultCountryConfig, fz as DefaultCountryConfigOptionsOneOf, hm as DeleteSubmissionRequest, hn as DeleteSubmissionResponse, dZ as Design, aQ as DesignTarget, jj as DesignTargetWithLiterals, en as Dimensions, aG as Direction, j9 as DirectionWithLiterals, ge as DisplayField, gf as DisplayFieldDisplayFieldTypeOptionsOneOf, bn as DisplayFieldType, jS as DisplayFieldTypeWithLiterals, dj as DividerData, ag as DividerDataAlignment, iL as DividerDataAlignmentWithLiterals, hX as DocumentReady, eN as DocumentStyle, bY as DomainEvent, bZ as DomainEventBodyOneOf, fs as DonationInput, ft as DonationInputOption, hY as DownloadSubmissionRequest, eV as Dropdown, eW as DropdownOption, cC as DynamicPriceOptions, fS as EmailInfo, bh as EmailInfoTag, jM as EmailInfoTagWithLiterals, ej as EmbedData, g$ as Empty, b_ as EntityCreatedEvent, c1 as EntityDeletedEvent, c0 as EntityUpdatedEvent, bH as ErrorType, ka as ErrorTypeWithLiterals, eb as EventData, ih as EventMetadata, bO as ExtendedFields, cO as Field, cP as FieldFieldTypeOptionsOneOf, gD as FieldGroup, gI as FieldOverride, gJ as FieldOverridePropertyTypeOptionsOneOf, cG as FieldOverrides, a3 as FieldType, iy as FieldTypeWithLiterals, ia as FieldViolation, ib as FieldViolationErrorDataOneOf, cH as FieldsOverrides, fA as FieldsSettings, dk as FileData, dl as FileSource, dm as FileSourceDataOneOf, fn as FileType, fo as FileUpload, b0 as FirstDayOfWeek, jv as FirstDayOfWeekWithLiterals, fv as FixedPayment, cB as FixedPriceOptions, e7 as FontFamilyData, e5 as FontSizeData, aw as FontType, i$ as FontTypeWithLiterals, c9 as Form, hR as FormDeletedSubmissionsCount, ca as FormField, cp as FormFieldArrayType, cn as FormFieldBooleanType, fQ as FormFieldContactInfo, fR as FormFieldContactInfoAdditionalInfoOneOf, gs as FormFieldContactInfoAddressInfo, bu as FormFieldContactInfoContactField, jZ as FormFieldContactInfoContactFieldWithLiterals, gt as FormFieldContactInfoCustomFieldInfo, gq as FormFieldContactInfoEmailInfo, bq as FormFieldContactInfoEmailInfoTag, jV as FormFieldContactInfoEmailInfoTagWithLiterals, gr as FormFieldContactInfoPhoneInfo, br as FormFieldContactInfoPhoneInfoTag, jW as FormFieldContactInfoPhoneInfoTagWithLiterals, gu as FormFieldContactInfoSubscriptionInfo, ck as FormFieldNumberType, cq as FormFieldObjectType, cb as FormFieldStringType, cc as FormFieldStringTypeFormatOptionsOneOf, fC as FormLayout, gk as FormOverride, gl as FormProperties, gj as FormRule, il as FormSubmissionQuerySpec, ij as FormSubmissionSearchSpec, bT as FormSubmissionStatusUpdatedEvent, hO as FormSubmissionsCount, bd as Format, a4 as FormatEnumFormat, iz as FormatEnumFormatWithLiterals, jI as FormatWithLiterals, i2 as FormattedFormSubmission, h$ as FormattedSubmission, dA as GIF, dz as GIFData, am as GIFType, iR as GIFTypeWithLiterals, dp as GalleryData, dv as GalleryOptions, dw as GalleryOptionsLayout, hz as GetDeletedSubmissionRequest, h_ as GetFormattedSubmissionRequest, hS as GetMediaUploadURLRequest, hh as GetSubmissionByCheckoutIdRequest, hi as GetSubmissionByCheckoutIdResponse, hU as GetSubmissionDownloadUrlRequest, hf as GetSubmissionRequest, hg as GetSubmissionResponse, d3 as Gradient, a8 as GradientType, iD as GradientTypeWithLiterals, fG as Group, dC as HTMLData, dD as HTMLDataDataOneOf, hZ as HeadersEntry, dB as HeadingData, dc as Height, gG as HiddenOptions, c4 as IdentificationData, c5 as IdentificationDataIdOneOf, bG as IdentityType, k9 as IdentityTypeWithLiterals, dr as Image, dE as ImageData, dG as ImageDataStyles, a_ as ImageFit, jt as ImageFitWithLiterals, aY as ImagePosition, aS as ImagePositionPosition, jl as ImagePositionPositionWithLiterals, jr as ImagePositionWithLiterals, aJ as ImageScalingScaling, jc as ImageScalingScalingWithLiterals, ed as ImageStyles, fN as InPersonOptions, aV as Indentation, jo as IndentationWithLiterals, aF as InitialExpandedItems, j8 as InitialExpandedItemsWithLiterals, cQ as InputField, cR as InputFieldInputTypeOptionsOneOf, bg as InputType, jL as InputTypeWithLiterals, cm as IntegerType, gZ as IsFormSubmittableRequest, g_ as IsFormSubmittableResponse, dt as Item, du as ItemDataOneOf, fE as ItemLayout, fF as ItemLayoutItemOneOf, hc as ItemMetadata, dx as ItemStyle, b3 as ItemType, jy as ItemTypeWithLiterals, bp as Kind, jU as KindWithLiterals, aD as Layout, eD as LayoutCellData, ey as LayoutData, eB as LayoutDataBackground, ez as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, jf as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, jd as LayoutDataImagePositionWithLiterals, ai as LayoutType, iN as LayoutTypeWithLiterals, j6 as LayoutWithLiterals, gw as LimitationRule, ae as LineStyle, iJ as LineStyleWithLiterals, de as Link, e3 as LinkData, df as LinkDataOneOf, dH as LinkPreviewData, dI as LinkPreviewDataStyles, ac as LinkTarget, iH as LinkTargetWithLiterals, hv as ListDeletedSubmissionsRequest, i0 as ListFormattedSubmissionsRequest, i1 as ListFormattedSubmissionsResponse, aU as ListStyle, jn as ListStyleWithLiterals, es as ListValue, fL as Location, fM as LocationLocationInfoOneOf, dJ as MapData, dK as MapSettings, ap as MapType, iU as MapTypeWithLiterals, fH as Margin, bW as MarketingSubscriptionDetails, dq as Media, eP as MediaItem, eQ as MediaItemMediaOneOf, eR as MediaSettings, be as MeetingType, jJ as MeetingTypeWithLiterals, e4 as MentionData, c3 as MessageEnvelope, eM as Metadata, bJ as Mode, kc as ModeWithLiterals, fw as MultilineAddress, cF as MultilineAddressValidation, gv as NestedForm, cJ as NestedFormFieldOverrides, cN as NestedFormOverrides, c$ as Node, d0 as NodeDataOneOf, d1 as NodeStyle, a6 as NodeType, iB as NodeTypeWithLiterals, aI as NullValue, jb as NullValueWithLiterals, b1 as NumberComponentType, jw as NumberComponentTypeWithLiterals, f3 as NumberCorrectAnswersList, cl as NumberErrorMessages, f6 as NumberInput, a$ as NumberOfColumns, ju as NumberOfColumnsWithLiterals, f5 as NumberQuizFieldSettings, f4 as NumberType, gc as ObjectArray, bb as ObjectArrayComponentType, gd as ObjectArrayComponentTypeOptionsOneOf, jG as ObjectArrayComponentTypeWithLiterals, cI as ObjectArrayType, ct as ObjectErrorMessages, fc as ObjectType, cr as ObjectTypePropertiesType, cs as ObjectTypePropertiesTypePropertiesTypeOneOf, ek as Oembed, bC as Operator, k5 as OperatorWithLiterals, Y as OptInLevel, ir as OptInLevelWithLiterals, fj as Option, dW as OptionDesign, dR as OptionLayout, gN as OrCondition, bP as OrderDetails, eu as OrderedListData, aj as Orientation, iO as OrientationWithLiterals, aL as Origin, je as OriginWithLiterals, bo as OverrideEntityType, bB as OverrideEntityTypeEnumOverrideEntityType, k4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jT as OverrideEntityTypeWithLiterals, dn as PDFSettings, gh as PageNavigationOptions, dL as ParagraphData, gW as PassFailMessages, f2 as Password, g6 as Payment, b8 as PaymentComponentType, g7 as PaymentComponentTypeOptionsOneOf, jD as PaymentComponentTypeWithLiterals, fu as PaymentInput, cz as PaymentType, dN as Permissions, cW as PhoneConstraints, fT as PhoneInfo, bi as PhoneInfoTag, jN as PhoneInfoTagWithLiterals, eY as PhoneInput, fP as PhoneOptions, aA as Placement, j3 as PlacementWithLiterals, ei as PlaybackOptions, d8 as PluginContainerData, aa as PluginContainerDataAlignment, iF as PluginContainerDataAlignmentWithLiterals, d9 as PluginContainerDataWidth, da as PluginContainerDataWidthDataOneOf, dX as Poll, dM as PollData, dY as PollDataLayout, dV as PollDesign, dT as PollDesignBackground, dU as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iZ as PollDesignBackgroundTypeWithLiterals, dQ as PollLayout, at as PollLayoutDirection, iY as PollLayoutDirectionWithLiterals, as as PollLayoutType, iX as PollLayoutTypeWithLiterals, dO as PollOption, gC as PopupOptions, ax as Position, j0 as PositionWithLiterals, gm as PostSubmissionTriggers, cx as PredefinedValidation, cy as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, ix as PriceTypeWithLiterals, eg as PricingData, cD as Product, fq as ProductCheckboxGroup, fr as ProductCheckboxGroupOption, cE as ProductPriceOptionsOneOf, a1 as ProductType, iw as ProductTypeWithLiterals, fd as PropertiesType, b4 as PropertiesTypeEnum, jz as PropertiesTypeEnumWithLiterals, fe as PropertiesTypePropertiesTypeOptionsOneOf, bQ as PublicTags, cA as QuantityLimit, hA as QuerySubmissionRequest, hL as QuerySubmissionsByNamespaceForExportRequest, hM as QuerySubmissionsByNamespaceForExportResponse, hJ as QuerySubmissionsByNamespaceRequest, hK as QuerySubmissionsByNamespaceResponse, fh as QuizFieldSettings, gT as QuizSettings, gU as QuizSettingsPassingCriteriaOneOf, gV as QuizSettingsResultsDisplayOptionsOneOf, eS as RadioGroup, eT as RadioGroupOption, f7 as RatingInput, gB as RedirectOptions, dg as Rel, hr as RemoveSubmissionFromTrashBinRequest, hs as RemoveSubmissionFromTrashBinResponse, bU as RemovedSubmissionFromTrash, fB as Repeater, bw as RequiredIndicator, bx as RequiredIndicatorPlacement, k0 as RequiredIndicatorPlacementWithLiterals, gx as RequiredIndicatorProperties, j$ as RequiredIndicatorWithLiterals, gF as RequiredOptions, az as Resizing, j2 as ResizingWithLiterals, aP as ResponsivenessBehaviour, ji as ResponsivenessBehaviourWithLiterals, b$ as RestoreInfo, hq as RestoreSubmissionFromTrashBinRequest, bD as ResultsDisplay, k6 as ResultsDisplayWithLiterals, ee as RibbonStyles, c_ as RichContent, gg as RichContentOptions, gE as Rule, gP as RuleFormOverride, gQ as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jk as ScalingWithLiterals, g8 as Scheduling, bc as SchedulingComponentType, g9 as SchedulingComponentTypeOptionsOneOf, jH as SchedulingComponentTypeWithLiterals, hG as SearchDetails, hH as SearchSubmissionsByNamespaceForExportRequest, hI as SearchSubmissionsByNamespaceForExportResponse, hD as SearchSubmissionsByNamespaceRequest, fI as Section, f1 as ServiceOption, fm as ServicesCheckboxGroup, f0 as ServicesDropdown, dP as Settings, eE as ShapeData, eF as ShapeDataStyles, fp as Signature, eL as SmartBlockCellData, eK as SmartBlockData, aW as SmartBlockDataType, jp as SmartBlockDataTypeWithLiterals, bI as SortOrder, kb as SortOrderWithLiterals, hC as Sorting, an as Source, iS as SourceWithLiterals, bv as SpamFilterProtectionLevel, j_ as SpamFilterProtectionLevelWithLiterals, db as Spoiler, e6 as SpoilerData, bf as StaffStrategySelection, jK as StaffStrategySelectionWithLiterals, bK as Status, kd as StatusWithLiterals, gi as Step, d4 as Stop, a5 as StringComponentType, iA as StringComponentTypeWithLiterals, cS as StringCorrectAnswersList, cd as StringErrorMessages, cY as StringQuizFieldSettings, cT as StringType, ch as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, it as StringTypeFormatEnumFormatWithLiterals, cU as StringTypeFormatOptionsOneOf, ci as StringTypePhoneConstraints, cj as StringTypeValidationMessages, dd as Styles, dF as StylesBorder, ao as StylesPosition, iT as StylesPositionWithLiterals, bF as SubmissionAccess, k8 as SubmissionAccessWithLiterals, bV as SubmissionContactMapped, bX as SubmissionContactMappingSkipped, hV as SubmissionDocument, hW as SubmissionDocumentDocumentOneOf, bL as SubmissionErrorType, ke as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, iq as SubmissionStatusWithLiterals, id as SubmissionValidationError, ie as SubmissionValidationErrorErrorMessageOneOf, ic as SubmissionValidationErrors, h4 as SubmissionValidationErrorsDetails, ik as SubmissionsQueryResult, h1 as SubmitContactResponse, gy as SubmitSettings, gz as SubmitSettingsSubmitSuccessActionOptionsOneOf, bz as SubmitSuccessAction, k2 as SubmitSuccessActionWithLiterals, bM as Submitter, bN as SubmitterSubmitterOneOf, bl as SubscriptionChannel, jQ as SubscriptionChannelWithLiterals, fW as SubscriptionInfo, bt as SubscriptionInfoOptInLevel, jY as SubscriptionInfoOptInLevelWithLiterals, eo as TableCellData, em as TableData, bj as Tag, bR as TagList, jO as TagWithLiterals, gR as Tags, fl as TagsOption, gS as TagsTagList, by as Target, k1 as TargetWithLiterals, ad as TextAlignment, iI as TextAlignmentWithLiterals, d_ as TextData, cZ as TextInput, eO as TextNodeStyle, di as TextStyle, gA as ThankYouMessageOptions, dy as Thumbnails, al as ThumbnailsAlignment, iQ as ThumbnailsAlignmentWithLiterals, e_ as TimeInput, eJ as TocData, ba as Type, jF as TypeWithLiterals, i3 as UpdateExtendedFieldsRequest, hj as UpdateSubmissionRequest, hk as UpdateSubmissionResponse, b7 as UploadFileFormat, jC as UploadFileFormatWithLiterals, gn as UpsertContact, h0 as UpsertContactFromSubmissionRequest, go as V4FormFieldContactInfo, gp as V4FormFieldContactInfoAdditionalInfoOneOf, i9 as ValidateFormSubmissionRequest, cK as Validation, h5 as ValidationError, a0 as ValidationFormat, iv as ValidationFormatWithLiterals, cX as ValidationMessages, cL as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jh as VerticalAlignmentAlignmentWithLiterals, ja as VerticalAlignmentWithLiterals, ds as Video, fO as VideoConferenceOptions, eh as VideoData, ah as ViewMode, iM as ViewModeWithLiterals, aq as ViewRole, iV as ViewRoleWithLiterals, ar as VoteRole, iW as VoteRoleWithLiterals, Z as WebhookIdentityType, is as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iE as WidthTypeWithLiterals, iK as WidthWithLiterals, g4 as WixFile, b6 as WixFileComponentType, g5 as WixFileComponentTypeOptionsOneOf, jB as WixFileComponentTypeWithLiterals, g1 as _Array, g2 as _ArrayComponentTypeOptionsOneOf, f$ as _Boolean, g0 as _BooleanComponentTypeOptionsOneOf, fZ as _Number, f_ as _NumberComponentTypeOptionsOneOf, g3 as _Object, fX as _String, fY as _StringComponentTypeOptionsOneOf, ip as utils } from './forms-v4-submission-submissions.universal-BBHYv5E8.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __export(index_exports, {
|
|
|
33
33
|
CardStylesAlignment: () => CardStylesAlignment,
|
|
34
34
|
CardStylesType: () => CardStylesType,
|
|
35
35
|
ChangeableProperty: () => ChangeableProperty,
|
|
36
|
+
ColumnSize: () => ColumnSize,
|
|
36
37
|
ComponentType: () => ComponentType,
|
|
37
38
|
ConfirmationLevel: () => ConfirmationLevel,
|
|
38
39
|
ContactAutofill: () => ContactAutofill,
|
|
@@ -105,6 +106,7 @@ __export(index_exports, {
|
|
|
105
106
|
ResultsDisplay: () => ResultsDisplay,
|
|
106
107
|
Scaling: () => Scaling,
|
|
107
108
|
SchedulingComponentType: () => SchedulingComponentType,
|
|
109
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
108
110
|
SortOrder: () => SortOrder,
|
|
109
111
|
Source: () => Source,
|
|
110
112
|
SpamFilterProtectionLevel: () => SpamFilterProtectionLevel,
|
|
@@ -1180,6 +1182,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1180
1182
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1181
1183
|
NodeType2["CARD"] = "CARD";
|
|
1182
1184
|
NodeType2["TOC"] = "TOC";
|
|
1185
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1186
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1183
1187
|
return NodeType2;
|
|
1184
1188
|
})(NodeType || {});
|
|
1185
1189
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1507,6 +1511,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
1507
1511
|
Indentation2["FLAT"] = "FLAT";
|
|
1508
1512
|
return Indentation2;
|
|
1509
1513
|
})(Indentation || {});
|
|
1514
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
1515
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
1516
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
1517
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
1518
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
1519
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
1520
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
1521
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
1522
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
1523
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
1524
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
1525
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
1526
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1527
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1528
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1529
|
+
return SmartBlockDataType2;
|
|
1530
|
+
})(SmartBlockDataType || {});
|
|
1531
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
1532
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
1533
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
1534
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
1535
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
1536
|
+
return ColumnSize2;
|
|
1537
|
+
})(ColumnSize || {});
|
|
1510
1538
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1511
1539
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
1512
1540
|
ImagePosition2["BELOW"] = "BELOW";
|
|
@@ -3128,6 +3156,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3128
3156
|
CardStylesAlignment,
|
|
3129
3157
|
CardStylesType,
|
|
3130
3158
|
ChangeableProperty,
|
|
3159
|
+
ColumnSize,
|
|
3131
3160
|
ComponentType,
|
|
3132
3161
|
ConfirmationLevel,
|
|
3133
3162
|
ContactAutofill,
|
|
@@ -3200,6 +3229,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3200
3229
|
ResultsDisplay,
|
|
3201
3230
|
Scaling,
|
|
3202
3231
|
SchedulingComponentType,
|
|
3232
|
+
SmartBlockDataType,
|
|
3203
3233
|
SortOrder,
|
|
3204
3234
|
Source,
|
|
3205
3235
|
SpamFilterProtectionLevel,
|