@wix/auto_sdk_forms_submissions 1.0.90 → 1.0.92
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-BVlQbylv.d.ts → forms-v4-submission-submissions.universal-Bxnj1K2o.d.ts} +45 -7
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +21 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +21 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +41 -7
- package/build/cjs/meta.js +13 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-BVlQbylv.d.mts → forms-v4-submission-submissions.universal-Bxnj1K2o.d.mts} +45 -7
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +18 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +18 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +41 -7
- package/build/es/meta.mjs +13 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DYDfWYJ5.d.ts → forms-v4-submission-submissions.universal-D-Uxphls.d.ts} +45 -7
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +21 -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 +21 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +41 -7
- package/build/internal/cjs/meta.js +13 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-DYDfWYJ5.d.mts → forms-v4-submission-submissions.universal-D-Uxphls.d.mts} +45 -7
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +18 -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 +18 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +41 -7
- package/build/internal/es/meta.mjs +13 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _wix_sdk_types from '@wix/sdk-types';
|
|
2
|
+
import { SearchSpec, QuerySpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
|
|
2
3
|
|
|
3
4
|
/** Form submission that was created or retrieved. */
|
|
4
5
|
interface FormSubmission {
|
|
@@ -1436,6 +1437,8 @@ interface Node extends NodeDataOneOf {
|
|
|
1436
1437
|
layoutData?: LayoutData;
|
|
1437
1438
|
/** Data for a cell node. */
|
|
1438
1439
|
layoutCellData?: LayoutCellData;
|
|
1440
|
+
/** Data for a shape node. */
|
|
1441
|
+
shapeData?: ShapeData;
|
|
1439
1442
|
/** 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. */
|
|
1440
1443
|
type?: NodeTypeWithLiterals;
|
|
1441
1444
|
/** Node ID. */
|
|
@@ -1503,6 +1506,8 @@ interface NodeDataOneOf {
|
|
|
1503
1506
|
layoutData?: LayoutData;
|
|
1504
1507
|
/** Data for a cell node. */
|
|
1505
1508
|
layoutCellData?: LayoutCellData;
|
|
1509
|
+
/** Data for a shape node. */
|
|
1510
|
+
shapeData?: ShapeData;
|
|
1506
1511
|
}
|
|
1507
1512
|
declare enum NodeType {
|
|
1508
1513
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1538,10 +1543,11 @@ declare enum NodeType {
|
|
|
1538
1543
|
AUDIO = "AUDIO",
|
|
1539
1544
|
CAPTION = "CAPTION",
|
|
1540
1545
|
LAYOUT = "LAYOUT",
|
|
1541
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
1546
|
+
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1547
|
+
SHAPE = "SHAPE"
|
|
1542
1548
|
}
|
|
1543
1549
|
/** @enumType */
|
|
1544
|
-
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';
|
|
1550
|
+
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';
|
|
1545
1551
|
interface NodeStyle {
|
|
1546
1552
|
/** The top padding value in pixels. */
|
|
1547
1553
|
paddingTop?: string | null;
|
|
@@ -3208,6 +3214,23 @@ interface LayoutCellData {
|
|
|
3208
3214
|
/** Size of the cell in 12 columns grid. */
|
|
3209
3215
|
colSpan?: number | null;
|
|
3210
3216
|
}
|
|
3217
|
+
interface ShapeData {
|
|
3218
|
+
/** Styling for the shape's container. */
|
|
3219
|
+
containerData?: PluginContainerData;
|
|
3220
|
+
/** Shape file details. */
|
|
3221
|
+
shape?: Media;
|
|
3222
|
+
/** Styling for the shape. */
|
|
3223
|
+
styles?: ShapeDataStyles;
|
|
3224
|
+
}
|
|
3225
|
+
interface ShapeDataStyles {
|
|
3226
|
+
/**
|
|
3227
|
+
* Shape fill color as a hexadecimal value.
|
|
3228
|
+
* @format COLOR_HEX
|
|
3229
|
+
*/
|
|
3230
|
+
color?: string | null;
|
|
3231
|
+
/** Map of original color keys to their new color values. */
|
|
3232
|
+
colors?: Record<string, string>;
|
|
3233
|
+
}
|
|
3211
3234
|
interface Metadata {
|
|
3212
3235
|
/** Schema version. */
|
|
3213
3236
|
version?: number;
|
|
@@ -3700,7 +3723,7 @@ interface Password {
|
|
|
3700
3723
|
/** Configuration for the media content. */
|
|
3701
3724
|
mediaSettings?: MediaSettings;
|
|
3702
3725
|
}
|
|
3703
|
-
interface
|
|
3726
|
+
interface NumberCorrectAnswersList {
|
|
3704
3727
|
/** @maxSize 50 */
|
|
3705
3728
|
correctAnswers?: number[];
|
|
3706
3729
|
}
|
|
@@ -3727,11 +3750,11 @@ declare enum NumberComponentType {
|
|
|
3727
3750
|
}
|
|
3728
3751
|
/** @enumType */
|
|
3729
3752
|
type NumberComponentTypeWithLiterals = NumberComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'NUMBER_INPUT' | 'RATING_INPUT';
|
|
3730
|
-
interface
|
|
3753
|
+
interface NumberQuizFieldSettings {
|
|
3731
3754
|
/** Points awarded for correctly answering this quiz question. */
|
|
3732
3755
|
score?: number;
|
|
3733
3756
|
/** Correct answers for this quiz question. */
|
|
3734
|
-
correctAnswersList?:
|
|
3757
|
+
correctAnswersList?: NumberCorrectAnswersList;
|
|
3735
3758
|
}
|
|
3736
3759
|
interface NumberInput {
|
|
3737
3760
|
/**
|
|
@@ -3809,6 +3832,10 @@ interface Checkbox {
|
|
|
3809
3832
|
*/
|
|
3810
3833
|
checked?: boolean;
|
|
3811
3834
|
}
|
|
3835
|
+
interface CorrectAnswersList {
|
|
3836
|
+
/** @maxSize 50 */
|
|
3837
|
+
correctAnswers?: any[];
|
|
3838
|
+
}
|
|
3812
3839
|
interface ArrayType {
|
|
3813
3840
|
/**
|
|
3814
3841
|
* Maximum number of elements allowed in the array.
|
|
@@ -3914,6 +3941,12 @@ declare enum ArrayComponentType {
|
|
|
3914
3941
|
}
|
|
3915
3942
|
/** @enumType */
|
|
3916
3943
|
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS' | 'SERVICES_CHECKBOX_GROUP';
|
|
3944
|
+
interface QuizFieldSettings {
|
|
3945
|
+
/** Points awarded for correctly answering this quiz question. */
|
|
3946
|
+
score?: number;
|
|
3947
|
+
/** Correct answers for this quiz question. */
|
|
3948
|
+
correctAnswersList?: CorrectAnswersList;
|
|
3949
|
+
}
|
|
3917
3950
|
interface CheckboxGroup {
|
|
3918
3951
|
/**
|
|
3919
3952
|
* Field label.
|
|
@@ -4826,6 +4859,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
|
4826
4859
|
* @readonly
|
|
4827
4860
|
*/
|
|
4828
4861
|
componentType?: ArrayComponentTypeWithLiterals;
|
|
4862
|
+
/** Quiz-specific settings for the field. */
|
|
4863
|
+
quizFieldSettings?: QuizFieldSettings;
|
|
4829
4864
|
}
|
|
4830
4865
|
/** @oneof */
|
|
4831
4866
|
interface _ArrayComponentTypeOptionsOneOf {
|
|
@@ -7512,6 +7547,9 @@ type FormSubmissionQuery = {
|
|
|
7512
7547
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
7513
7548
|
}[];
|
|
7514
7549
|
};
|
|
7550
|
+
declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7551
|
+
declare const Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7552
|
+
declare const Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7515
7553
|
/**
|
|
7516
7554
|
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
7517
7555
|
* <br>
|
|
@@ -7703,4 +7741,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7703
7741
|
fieldsToValidate?: string[];
|
|
7704
7742
|
}
|
|
7705
7743
|
|
|
7706
|
-
export { ValidationFormat 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, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type IntegerType as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type AccountInfo as bO, type CreateCheckoutFromSubmissionRequest as bP, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bQ, type Form as bR, type FormField as bS, type FormFieldStringType as bT, type FormFieldStringTypeFormatOptionsOneOf as bU, type StringErrorMessages as bV, type StringTypeDateTimeConstraints as bW, type StringTypePhoneConstraints as bX, type StringTypeValidationMessages as bY, type FormFieldNumberType as bZ, type NumberErrorMessages as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type Media as c$, type FormFieldBooleanType as c0, type BooleanErrorMessages as c1, type FormFieldArrayType as c2, type FormFieldObjectType as c3, type ObjectTypePropertiesType as c4, type ObjectTypePropertiesTypePropertiesTypeOneOf as c5, type ObjectErrorMessages as c6, type ArrayTypeArrayItems as c7, type ArrayTypeArrayItemsItemsOneOf as c8, type ArrayErrorMessages as c9, type ValidationMessages as cA, type StringQuizFieldSettings as cB, type TextInput as cC, type RichContent as cD, type Node as cE, type NodeDataOneOf as cF, type NodeStyle as cG, type ButtonData as cH, type Border as cI, type Colors as cJ, type PluginContainerData as cK, type PluginContainerDataWidth as cL, type PluginContainerDataWidthDataOneOf as cM, type Spoiler as cN, type Height as cO, type Styles as cP, type Link as cQ, type LinkDataOneOf as cR, type Rel as cS, type CodeBlockData as cT, type TextStyle as cU, type DividerData as cV, type FileData as cW, type FileSource as cX, type FileSourceDataOneOf as cY, type PDFSettings as cZ, type GalleryData as c_, type PredefinedValidation as ca, type PredefinedValidationFormatOptionsOneOf as cb, type PaymentType as cc, type QuantityLimit as cd, type FixedPriceOptions as ce, type DynamicPriceOptions as cf, type Product as cg, type ProductPriceOptionsOneOf as ch, type MultilineAddressValidation as ci, type FieldOverrides as cj, type FieldsOverrides as ck, type ObjectArrayType as cl, type NestedFormFieldOverrides as cm, type Validation as cn, type ValidationValidationOneOf as co, type DataExtensionsDetails as cp, type NestedFormOverrides as cq, type Field as cr, type FieldFieldTypeOptionsOneOf as cs, type InputField as ct, type InputFieldInputTypeOptionsOneOf as cu, type StringCorrectAnswersList as cv, type StringType as cw, type StringTypeFormatOptionsOneOf as cx, type DateTimeConstraints as cy, type PhoneConstraints as cz, type UpdateSubmission as d, type CellStyle as d$, type Image as d0, type Video as d1, type Item as d2, type ItemDataOneOf as d3, type GalleryOptions as d4, type GalleryOptionsLayout as d5, type ItemStyle as d6, type Thumbnails as d7, type GIFData as d8, type GIF as d9, type TextData as dA, type Decoration as dB, type DecorationDataOneOf as dC, type AnchorData as dD, type ColorData as dE, type LinkData as dF, type MentionData as dG, type FontSizeData as dH, type SpoilerData as dI, type FontFamilyData as dJ, type AppEmbedData as dK, type AppEmbedDataAppDataOneOf as dL, type BookingData as dM, type EventData as dN, type ButtonStyles as dO, type ImageStyles as dP, type RibbonStyles as dQ, type CardStyles as dR, type PricingData as dS, type VideoData as dT, type PlaybackOptions as dU, type EmbedData as dV, type Oembed as dW, type CollapsibleListData as dX, type TableData as dY, type Dimensions as dZ, type TableCellData as d_, type HeadingData as da, type HTMLData as db, type HTMLDataDataOneOf as dc, type ImageData as dd, type StylesBorder as de, type ImageDataStyles as df, type LinkPreviewData as dg, type LinkPreviewDataStyles as dh, type MapData as di, type MapSettings as dj, type ParagraphData as dk, type PollData as dl, type Permissions as dm, type PollOption as dn, type Settings as dp, type PollLayout as dq, type OptionLayout as dr, type Gradient as ds, type Background as dt, type BackgroundBackgroundOneOf as du, type PollDesign as dv, type OptionDesign as dw, type Poll as dx, type PollDataLayout as dy, type Design as dz, type UpdateSubmissionValidationErrors as e, type FormLayout as e$, type BorderColors as e0, type BorderWidths as e1, type ListValue as e2, type AudioData as e3, type OrderedListData as e4, type BulletedListData as e5, type BlockquoteData as e6, type CaptionData as e7, type LayoutData as e8, type BackgroundImage as e9, type Checkbox as eA, type ArrayType as eB, type ObjectType as eC, type PropertiesType as eD, type PropertiesTypePropertiesTypeOptionsOneOf as eE, type ArrayItems as eF, type ArrayItemsItemTypeOptionsOneOf as eG, type CheckboxGroup as eH, type Option as eI, type ComponentsTags as eJ, type TagsOption as eK, type ServicesCheckboxGroup as eL, type FileType as eM, type FileUpload as eN, type Signature as eO, type ProductCheckboxGroup as eP, type ProductCheckboxGroupOption as eQ, type DonationInput as eR, type DonationInputOption as eS, type PaymentInput as eT, type FixedPayment as eU, type MultilineAddress as eV, type AddressLine2 as eW, type DefaultCountryConfig as eX, type DefaultCountryConfigOptionsOneOf as eY, type FieldsSettings as eZ, type Repeater as e_, type LayoutCellData as ea, type Metadata as eb, type DocumentStyle as ec, type TextNodeStyle as ed, type MediaItem as ee, type MediaItemMediaOneOf as ef, type MediaSettings as eg, type RadioGroup as eh, type RadioGroupOption as ei, type CustomOption as ej, type Dropdown as ek, type DropdownOption as el, type DateTimeInput as em, type PhoneInput as en, type DateInput as eo, type TimeInput as ep, type DatePicker as eq, type ServicesDropdown as er, type ServiceOption as es, type Password as et, type CorrectAnswersList as eu, type NumberType as ev, type QuizFieldSettings as ew, type NumberInput as ex, type RatingInput as ey, type BooleanType as ez, type ConfirmSubmissionResponse as f, type FieldGroup as f$, type BreakPoint as f0, type ItemLayout as f1, type ItemLayoutItemOneOf as f2, type Group as f3, type Margin as f4, type Section as f5, type Appointment as f6, type AppointmentFormatInfoOneOf as f7, type Location as f8, type LocationLocationInfoOneOf as f9, type AddressComponentTypeOptionsOneOf as fA, type ObjectArray as fB, type ObjectArrayComponentTypeOptionsOneOf as fC, type DisplayField as fD, type DisplayFieldDisplayFieldTypeOptionsOneOf as fE, type RichContentOptions as fF, type PageNavigationOptions as fG, type Step as fH, type FormRule as fI, type FormOverride as fJ, type FormProperties as fK, type PostSubmissionTriggers as fL, type UpsertContact as fM, type V4FormFieldContactInfo as fN, type V4FormFieldContactInfoAdditionalInfoOneOf as fO, type FormFieldContactInfoEmailInfo as fP, type FormFieldContactInfoPhoneInfo as fQ, type FormFieldContactInfoAddressInfo as fR, type FormFieldContactInfoCustomFieldInfo as fS, type FormFieldContactInfoSubscriptionInfo as fT, type NestedForm as fU, type LimitationRule as fV, type RequiredIndicatorProperties as fW, type SubmitSettings as fX, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fY, type ThankYouMessageOptions as fZ, type RedirectOptions as f_, type InPersonOptions as fa, type VideoConferenceOptions as fb, type PhoneOptions as fc, type FormFieldContactInfo as fd, type FormFieldContactInfoAdditionalInfoOneOf as fe, type EmailInfo as ff, type PhoneInfo as fg, type AddressInfo as fh, type CustomFieldInfo as fi, type SubscriptionInfo as fj, type _String as fk, type _StringComponentTypeOptionsOneOf as fl, type _Number as fm, type _NumberComponentTypeOptionsOneOf as fn, type _Boolean as fo, type _BooleanComponentTypeOptionsOneOf as fp, type _Array as fq, type _ArrayComponentTypeOptionsOneOf as fr, type _Object as fs, type WixFile as ft, type WixFileComponentTypeOptionsOneOf as fu, type Payment as fv, type PaymentComponentTypeOptionsOneOf as fw, type Scheduling as fx, type SchedulingComponentTypeOptionsOneOf as fy, type Address as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceForExportRequest as g$, type Rule as g0, type RequiredOptions as g1, type HiddenOptions as g2, type AllowedValuesOptions as g3, type FieldOverride as g4, type FieldOverridePropertyTypeOptionsOneOf as g5, type ConditionNode as g6, type ConditionNodeNodeOneOf as g7, type AndCondition as g8, type OrCondition as g9, type GetSubmissionResponse as gA, type GetSubmissionByCheckoutIdRequest as gB, type GetSubmissionByCheckoutIdResponse as gC, type UpdateSubmissionRequest as gD, type UpdateSubmissionResponse as gE, type ConfirmSubmissionRequest as gF, type DeleteSubmissionRequest as gG, type DeleteSubmissionResponse as gH, type BulkDeleteSubmissionRequest as gI, type BulkDeleteSubmissionResult as gJ, type RestoreSubmissionFromTrashBinRequest as gK, type RemoveSubmissionFromTrashBinRequest as gL, type RemoveSubmissionFromTrashBinResponse as gM, type BulkRemoveSubmissionFromTrashBinRequest as gN, type BulkRemoveSubmissionFromTrashBinResult as gO, type ListDeletedSubmissionsRequest as gP, type CursorPaging as gQ, type CursorPagingMetadata as gR, type Cursors as gS, type GetDeletedSubmissionRequest as gT, type QuerySubmissionRequest as gU, type CursorQueryPagingMethodOneOf as gV, type Sorting as gW, type SearchSubmissionsByNamespaceRequest as gX, type CursorSearch as gY, type CursorSearchPagingMethodOneOf as gZ, type SearchDetails as g_, type Condition as ga, type RuleFormOverride as gb, type RuleFormOverrideEntityTypeOptionsOneOf as gc, type Tags as gd, type TagsTagList as ge, type CreateCheckoutFromSubmissionResponse as gf, type Checkout as gg, type IsFormSubmittableRequest as gh, type IsFormSubmittableResponse as gi, type Empty as gj, type UpsertContactFromSubmissionRequest as gk, type SubmitContactResponse as gl, type CreateSubmissionRequest as gm, type CreateSubmissionResponse as gn, type SubmissionValidationErrorsDetails as go, type ValidationError as gp, type CreateSubmissionBySubmitterRequest as gq, type CreateSubmissionBySubmitterResponse as gr, type BulkCreateSubmissionBySubmitterRequest as gs, type BulkCreateSubmissionBySubmitterData as gt, type BulkCreateSubmissionBySubmitterResponse as gu, type BulkSubmissionResult as gv, type ItemMetadata as gw, type ApplicationError as gx, type BulkActionMetadata as gy, type GetSubmissionRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type LayoutTypeWithLiterals as h$, type SearchSubmissionsByNamespaceForExportResponse as h0, type QuerySubmissionsByNamespaceRequest as h1, type QuerySubmissionsByNamespaceResponse as h2, type QuerySubmissionsByNamespaceForExportRequest as h3, type QuerySubmissionsByNamespaceForExportResponse as h4, type CountSubmissionsByFilterRequest as h5, type FormSubmissionsCount as h6, type CountSubmissionsRequest as h7, type CountDeletedSubmissionsRequest as h8, type FormDeletedSubmissionsCount as h9, type EventMetadata as hA, type AccountInfoMetadata as hB, type FormSubmissionSearchSpec as hC, type SubmissionsQueryResult as hD, type FormSubmissionQuerySpec as hE, type BulkUpdateFormSubmissionTagsOptions as hF, type BulkUpdateFormSubmissionTagsByFilterOptions as hG, type SubmissionStatusWithLiterals as hH, type OptInLevelWithLiterals as hI, type WebhookIdentityTypeWithLiterals as hJ, type StringTypeFormatEnumFormatWithLiterals as hK, type ValidationFormatWithLiterals as hL, type ProductTypeWithLiterals as hM, type PriceTypeWithLiterals as hN, type FieldTypeWithLiterals as hO, type FormatEnumFormatWithLiterals as hP, type StringComponentTypeWithLiterals as hQ, type NodeTypeWithLiterals as hR, type WidthTypeWithLiterals as hS, type PluginContainerDataAlignmentWithLiterals as hT, type ButtonDataTypeWithLiterals as hU, type LinkTargetWithLiterals as hV, type TextAlignmentWithLiterals as hW, type LineStyleWithLiterals as hX, type WidthWithLiterals as hY, type DividerDataAlignmentWithLiterals as hZ, type ViewModeWithLiterals as h_, type GetMediaUploadURLRequest as ha, type BulkMarkSubmissionsAsSeenRequest as hb, type GetSubmissionDownloadUrlRequest as hc, type SubmissionDocument as hd, type SubmissionDocumentDocumentOneOf as he, type DocumentReady as hf, type DownloadSubmissionRequest as hg, type HeadersEntry as hh, type GetFormattedSubmissionRequest as hi, type FormattedSubmission as hj, type ListFormattedSubmissionsRequest as hk, type ListFormattedSubmissionsResponse as hl, type FormattedFormSubmission as hm, type UpdateExtendedFieldsRequest as hn, type BulkUpdateFormSubmissionTagsRequest as ho, type BulkUpdateFormSubmissionTagsResponse as hp, type BulkUpdateFormSubmissionTagsResult as hq, type BulkUpdateFormSubmissionTagsByFilterRequest as hr, type BulkUpdateFormSubmissionTagsByFilterResponse as hs, type ValidateFormSubmissionRequest as ht, type FieldViolation as hu, type FieldViolationErrorDataOneOf as hv, type SubmissionValidationErrors as hw, type SubmissionValidationError as hx, type SubmissionValidationErrorErrorMessageOneOf as hy, type BaseEventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type SubscriptionInfoOptInLevelWithLiterals as i$, type OrientationWithLiterals as i0, type CropWithLiterals as i1, type ThumbnailsAlignmentWithLiterals as i2, type GIFTypeWithLiterals as i3, type SourceWithLiterals as i4, type StylesPositionWithLiterals as i5, type MapTypeWithLiterals as i6, type ViewRoleWithLiterals as i7, type VoteRoleWithLiterals as i8, type PollLayoutTypeWithLiterals as i9, type NumberOfColumnsWithLiterals as iA, type FirstDayOfWeekWithLiterals as iB, type NumberComponentTypeWithLiterals as iC, type BooleanComponentTypeWithLiterals as iD, type ItemTypeWithLiterals as iE, type PropertiesTypeEnumWithLiterals as iF, type ArrayComponentTypeWithLiterals as iG, type WixFileComponentTypeWithLiterals as iH, type UploadFileFormatWithLiterals as iI, type PaymentComponentTypeWithLiterals as iJ, type ComponentTypeWithLiterals as iK, type TypeWithLiterals as iL, type ObjectArrayComponentTypeWithLiterals as iM, type SchedulingComponentTypeWithLiterals as iN, type FormatWithLiterals as iO, type InputTypeWithLiterals as iP, type EmailInfoTagWithLiterals as iQ, type PhoneInfoTagWithLiterals as iR, type TagWithLiterals as iS, type ConfirmationLevelWithLiterals as iT, type ContactFieldWithLiterals as iU, type DisplayFieldTypeWithLiterals as iV, type OverrideEntityTypeWithLiterals as iW, type KindWithLiterals as iX, type FormFieldContactInfoEmailInfoTagWithLiterals as iY, type FormFieldContactInfoPhoneInfoTagWithLiterals as iZ, type AddressInfoTagWithLiterals as i_, type PollLayoutDirectionWithLiterals as ia, type BackgroundTypeWithLiterals as ib, type DecorationTypeWithLiterals as ic, type FontTypeWithLiterals as id, type PositionWithLiterals as ie, type AspectRatioWithLiterals as ig, type ResizingWithLiterals as ih, type PlacementWithLiterals as ii, type CardStylesTypeWithLiterals as ij, type CardStylesAlignmentWithLiterals as ik, type LayoutWithLiterals as il, type AppTypeWithLiterals as im, type InitialExpandedItemsWithLiterals as io, type DirectionWithLiterals as ip, type VerticalAlignmentWithLiterals as iq, type NullValueWithLiterals as ir, type ScalingWithLiterals as is, type LayoutDataImagePositionWithLiterals as it, type VerticalAlignmentAlignmentWithLiterals as iu, type ResponsivenessBehaviourWithLiterals as iv, type DesignTargetWithLiterals as iw, type ImagePositionWithLiterals as ix, type AlignmentWithLiterals as iy, type ImageFitWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type FormFieldContactInfoContactFieldWithLiterals as j0, type SpamFilterProtectionLevelWithLiterals as j1, type RequiredIndicatorWithLiterals as j2, type RequiredIndicatorPlacementWithLiterals as j3, type TargetWithLiterals as j4, type SubmitSuccessActionWithLiterals as j5, type ChangeablePropertyWithLiterals as j6, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j7, type OperatorWithLiterals as j8, type IdentityTypeWithLiterals as j9, querySubmission as jA, querySubmissionsByNamespace as jB, countSubmissionsByFilter as jC, countSubmissions as jD, countDeletedSubmissions as jE, getMediaUploadUrl as jF, bulkMarkSubmissionsAsSeen as jG, getSubmissionDownloadUrl as jH, downloadSubmission as jI, getFormattedSubmission as jJ, updateExtendedFields as jK, validateFormSubmission as jL, type ErrorTypeWithLiterals as ja, type SortOrderWithLiterals as jb, type ModeWithLiterals as jc, type StatusWithLiterals as jd, type SubmissionErrorTypeWithLiterals as je, type CommonSearchWithEntityContext as jf, type CommonQueryWithEntityContext as jg, onSubmissionCreated as jh, onSubmissionDeleted as ji, onSubmissionRemovedSubmissionFromTrash as jj, onSubmissionStatusUpdated as jk, onSubmissionContactMapped as jl, onSubmissionContactMappingSkipped as jm, onSubmissionUpdated as jn, upsertContactFromSubmission as jo, createSubmission as jp, getSubmission as jq, updateSubmission as jr, confirmSubmission as js, deleteSubmission as jt, bulkDeleteSubmission as ju, restoreSubmissionFromTrashBin as jv, removeSubmissionFromTrashBin as jw, bulkRemoveSubmissionFromTrashBin as jx, listDeletedSubmissions as jy, getDeletedSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
7744
|
+
export { ValidationFormat 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, SchedulingComponentType as a$, ProductType as a0, PriceType as a1, FieldType as a2, FormatEnumFormat as a3, StringComponentType as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, LinkTarget as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, LayoutDataImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, DesignTarget as aK, ImagePosition as aL, Alignment as aM, ImageFit as aN, NumberOfColumns as aO, FirstDayOfWeek as aP, NumberComponentType as aQ, BooleanComponentType as aR, ItemType as aS, PropertiesTypeEnum as aT, ArrayComponentType as aU, WixFileComponentType as aV, UploadFileFormat as aW, PaymentComponentType as aX, ComponentType as aY, Type as aZ, ObjectArrayComponentType as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, Position as au, AspectRatio as av, Resizing as aw, Placement as ax, CardStylesType as ay, CardStylesAlignment as az, type CreateSubmissionApplicationErrors as b, type IntegerType as b$, Format as b0, InputType as b1, EmailInfoTag as b2, PhoneInfoTag as b3, Tag as b4, ConfirmationLevel as b5, ContactField as b6, DisplayFieldType as b7, OverrideEntityType as b8, Kind as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type DomainEvent as bE, type DomainEventBodyOneOf as bF, type EntityCreatedEvent as bG, type RestoreInfo as bH, type EntityUpdatedEvent as bI, type EntityDeletedEvent as bJ, type ActionEvent as bK, type MessageEnvelope as bL, type IdentificationData as bM, type IdentificationDataIdOneOf as bN, type AccountInfo as bO, type CreateCheckoutFromSubmissionRequest as bP, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bQ, type Form as bR, type FormField as bS, type FormFieldStringType as bT, type FormFieldStringTypeFormatOptionsOneOf as bU, type StringErrorMessages as bV, type StringTypeDateTimeConstraints as bW, type StringTypePhoneConstraints as bX, type StringTypeValidationMessages as bY, type FormFieldNumberType as bZ, type NumberErrorMessages as b_, FormFieldContactInfoEmailInfoTag as ba, FormFieldContactInfoPhoneInfoTag as bb, AddressInfoTag as bc, SubscriptionInfoOptInLevel as bd, FormFieldContactInfoContactField as be, SpamFilterProtectionLevel as bf, RequiredIndicator as bg, RequiredIndicatorPlacement as bh, Target as bi, SubmitSuccessAction as bj, ChangeableProperty as bk, OverrideEntityTypeEnumOverrideEntityType as bl, Operator as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type Media as c$, type FormFieldBooleanType as c0, type BooleanErrorMessages as c1, type FormFieldArrayType as c2, type FormFieldObjectType as c3, type ObjectTypePropertiesType as c4, type ObjectTypePropertiesTypePropertiesTypeOneOf as c5, type ObjectErrorMessages as c6, type ArrayTypeArrayItems as c7, type ArrayTypeArrayItemsItemsOneOf as c8, type ArrayErrorMessages as c9, type ValidationMessages as cA, type StringQuizFieldSettings as cB, type TextInput as cC, type RichContent as cD, type Node as cE, type NodeDataOneOf as cF, type NodeStyle as cG, type ButtonData as cH, type Border as cI, type Colors as cJ, type PluginContainerData as cK, type PluginContainerDataWidth as cL, type PluginContainerDataWidthDataOneOf as cM, type Spoiler as cN, type Height as cO, type Styles as cP, type Link as cQ, type LinkDataOneOf as cR, type Rel as cS, type CodeBlockData as cT, type TextStyle as cU, type DividerData as cV, type FileData as cW, type FileSource as cX, type FileSourceDataOneOf as cY, type PDFSettings as cZ, type GalleryData as c_, type PredefinedValidation as ca, type PredefinedValidationFormatOptionsOneOf as cb, type PaymentType as cc, type QuantityLimit as cd, type FixedPriceOptions as ce, type DynamicPriceOptions as cf, type Product as cg, type ProductPriceOptionsOneOf as ch, type MultilineAddressValidation as ci, type FieldOverrides as cj, type FieldsOverrides as ck, type ObjectArrayType as cl, type NestedFormFieldOverrides as cm, type Validation as cn, type ValidationValidationOneOf as co, type DataExtensionsDetails as cp, type NestedFormOverrides as cq, type Field as cr, type FieldFieldTypeOptionsOneOf as cs, type InputField as ct, type InputFieldInputTypeOptionsOneOf as cu, type StringCorrectAnswersList as cv, type StringType as cw, type StringTypeFormatOptionsOneOf as cx, type DateTimeConstraints as cy, type PhoneConstraints as cz, type UpdateSubmission as d, type CellStyle as d$, type Image as d0, type Video as d1, type Item as d2, type ItemDataOneOf as d3, type GalleryOptions as d4, type GalleryOptionsLayout as d5, type ItemStyle as d6, type Thumbnails as d7, type GIFData as d8, type GIF as d9, type TextData as dA, type Decoration as dB, type DecorationDataOneOf as dC, type AnchorData as dD, type ColorData as dE, type LinkData as dF, type MentionData as dG, type FontSizeData as dH, type SpoilerData as dI, type FontFamilyData as dJ, type AppEmbedData as dK, type AppEmbedDataAppDataOneOf as dL, type BookingData as dM, type EventData as dN, type ButtonStyles as dO, type ImageStyles as dP, type RibbonStyles as dQ, type CardStyles as dR, type PricingData as dS, type VideoData as dT, type PlaybackOptions as dU, type EmbedData as dV, type Oembed as dW, type CollapsibleListData as dX, type TableData as dY, type Dimensions as dZ, type TableCellData as d_, type HeadingData as da, type HTMLData as db, type HTMLDataDataOneOf as dc, type ImageData as dd, type StylesBorder as de, type ImageDataStyles as df, type LinkPreviewData as dg, type LinkPreviewDataStyles as dh, type MapData as di, type MapSettings as dj, type ParagraphData as dk, type PollData as dl, type Permissions as dm, type PollOption as dn, type Settings as dp, type PollLayout as dq, type OptionLayout as dr, type Gradient as ds, type Background as dt, type BackgroundBackgroundOneOf as du, type PollDesign as dv, type OptionDesign as dw, type Poll as dx, type PollDataLayout as dy, type Design as dz, type UpdateSubmissionValidationErrors as e, type DefaultCountryConfig as e$, type BorderColors as e0, type BorderWidths as e1, type ListValue as e2, type AudioData as e3, type OrderedListData as e4, type BulletedListData as e5, type BlockquoteData as e6, type CaptionData as e7, type LayoutData as e8, type BackgroundImage as e9, type RatingInput as eA, type BooleanType as eB, type Checkbox as eC, type CorrectAnswersList as eD, type ArrayType as eE, type ObjectType as eF, type PropertiesType as eG, type PropertiesTypePropertiesTypeOptionsOneOf as eH, type ArrayItems as eI, type ArrayItemsItemTypeOptionsOneOf as eJ, type QuizFieldSettings as eK, type CheckboxGroup as eL, type Option as eM, type ComponentsTags as eN, type TagsOption as eO, type ServicesCheckboxGroup as eP, type FileType as eQ, type FileUpload as eR, type Signature as eS, type ProductCheckboxGroup as eT, type ProductCheckboxGroupOption as eU, type DonationInput as eV, type DonationInputOption as eW, type PaymentInput as eX, type FixedPayment as eY, type MultilineAddress as eZ, type AddressLine2 as e_, type LayoutCellData as ea, type ShapeData as eb, type ShapeDataStyles as ec, type Metadata as ed, type DocumentStyle as ee, type TextNodeStyle as ef, type MediaItem as eg, type MediaItemMediaOneOf as eh, type MediaSettings as ei, type RadioGroup as ej, type RadioGroupOption as ek, type CustomOption as el, type Dropdown as em, type DropdownOption as en, type DateTimeInput as eo, type PhoneInput as ep, type DateInput as eq, type TimeInput as er, type DatePicker as es, type ServicesDropdown as et, type ServiceOption as eu, type Password as ev, type NumberCorrectAnswersList as ew, type NumberType as ex, type NumberQuizFieldSettings as ey, type NumberInput as ez, type ConfirmSubmissionResponse as f, type SubmitSettings as f$, type DefaultCountryConfigOptionsOneOf as f0, type FieldsSettings as f1, type Repeater as f2, type FormLayout as f3, type BreakPoint as f4, type ItemLayout as f5, type ItemLayoutItemOneOf as f6, type Group as f7, type Margin as f8, type Section as f9, type PaymentComponentTypeOptionsOneOf as fA, type Scheduling as fB, type SchedulingComponentTypeOptionsOneOf as fC, type Address as fD, type AddressComponentTypeOptionsOneOf as fE, type ObjectArray as fF, type ObjectArrayComponentTypeOptionsOneOf as fG, type DisplayField as fH, type DisplayFieldDisplayFieldTypeOptionsOneOf as fI, type RichContentOptions as fJ, type PageNavigationOptions as fK, type Step as fL, type FormRule as fM, type FormOverride as fN, type FormProperties as fO, type PostSubmissionTriggers as fP, type UpsertContact as fQ, type V4FormFieldContactInfo as fR, type V4FormFieldContactInfoAdditionalInfoOneOf as fS, type FormFieldContactInfoEmailInfo as fT, type FormFieldContactInfoPhoneInfo as fU, type FormFieldContactInfoAddressInfo as fV, type FormFieldContactInfoCustomFieldInfo as fW, type FormFieldContactInfoSubscriptionInfo as fX, type NestedForm as fY, type LimitationRule as fZ, type RequiredIndicatorProperties as f_, type Appointment as fa, type AppointmentFormatInfoOneOf as fb, type Location as fc, type LocationLocationInfoOneOf as fd, type InPersonOptions as fe, type VideoConferenceOptions as ff, type PhoneOptions as fg, type FormFieldContactInfo as fh, type FormFieldContactInfoAdditionalInfoOneOf as fi, type EmailInfo as fj, type PhoneInfo as fk, type AddressInfo as fl, type CustomFieldInfo as fm, type SubscriptionInfo as fn, type _String as fo, type _StringComponentTypeOptionsOneOf as fp, type _Number as fq, type _NumberComponentTypeOptionsOneOf as fr, type _Boolean as fs, type _BooleanComponentTypeOptionsOneOf as ft, type _Array as fu, type _ArrayComponentTypeOptionsOneOf as fv, type _Object as fw, type WixFile as fx, type WixFileComponentTypeOptionsOneOf as fy, type Payment as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceRequest as g$, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g0, type ThankYouMessageOptions as g1, type RedirectOptions as g2, type FieldGroup as g3, type Rule as g4, type RequiredOptions as g5, type HiddenOptions as g6, type AllowedValuesOptions as g7, type FieldOverride as g8, type FieldOverridePropertyTypeOptionsOneOf as g9, type ItemMetadata as gA, type ApplicationError as gB, type BulkActionMetadata as gC, type GetSubmissionRequest as gD, type GetSubmissionResponse as gE, type GetSubmissionByCheckoutIdRequest as gF, type GetSubmissionByCheckoutIdResponse as gG, type UpdateSubmissionRequest as gH, type UpdateSubmissionResponse as gI, type ConfirmSubmissionRequest as gJ, type DeleteSubmissionRequest as gK, type DeleteSubmissionResponse as gL, type BulkDeleteSubmissionRequest as gM, type BulkDeleteSubmissionResult as gN, type RestoreSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinRequest as gP, type RemoveSubmissionFromTrashBinResponse as gQ, type BulkRemoveSubmissionFromTrashBinRequest as gR, type BulkRemoveSubmissionFromTrashBinResult as gS, type ListDeletedSubmissionsRequest as gT, type CursorPaging as gU, type CursorPagingMetadata as gV, type Cursors as gW, type GetDeletedSubmissionRequest as gX, type QuerySubmissionRequest as gY, type CursorQueryPagingMethodOneOf as gZ, type Sorting as g_, type ConditionNode as ga, type ConditionNodeNodeOneOf as gb, type AndCondition as gc, type OrCondition as gd, type Condition as ge, type RuleFormOverride as gf, type RuleFormOverrideEntityTypeOptionsOneOf as gg, type Tags as gh, type TagsTagList as gi, type CreateCheckoutFromSubmissionResponse as gj, type Checkout as gk, type IsFormSubmittableRequest as gl, type IsFormSubmittableResponse as gm, type Empty as gn, type UpsertContactFromSubmissionRequest as go, type SubmitContactResponse as gp, type CreateSubmissionRequest as gq, type CreateSubmissionResponse as gr, type SubmissionValidationErrorsDetails as gs, type ValidationError as gt, type CreateSubmissionBySubmitterRequest as gu, type CreateSubmissionBySubmitterResponse as gv, type BulkCreateSubmissionBySubmitterRequest as gw, type BulkCreateSubmissionBySubmitterData as gx, type BulkCreateSubmissionBySubmitterResponse as gy, type BulkSubmissionResult as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ButtonDataTypeWithLiterals as h$, type CursorSearch as h0, type CursorSearchPagingMethodOneOf as h1, type SearchDetails as h2, type SearchSubmissionsByNamespaceForExportRequest as h3, type SearchSubmissionsByNamespaceForExportResponse as h4, type QuerySubmissionsByNamespaceRequest as h5, type QuerySubmissionsByNamespaceResponse as h6, type QuerySubmissionsByNamespaceForExportRequest as h7, type QuerySubmissionsByNamespaceForExportResponse as h8, type CountSubmissionsByFilterRequest as h9, type SubmissionValidationErrors as hA, type SubmissionValidationError as hB, type SubmissionValidationErrorErrorMessageOneOf as hC, type BaseEventMetadata as hD, type EventMetadata as hE, type AccountInfoMetadata as hF, type FormSubmissionSearchSpec as hG, type SubmissionsQueryResult as hH, type FormSubmissionQuerySpec as hI, type BulkUpdateFormSubmissionTagsOptions as hJ, type BulkUpdateFormSubmissionTagsByFilterOptions as hK, QueryBuilder as hL, Filter as hM, Sort as hN, type SubmissionStatusWithLiterals as hO, type OptInLevelWithLiterals as hP, type WebhookIdentityTypeWithLiterals as hQ, type StringTypeFormatEnumFormatWithLiterals as hR, type ValidationFormatWithLiterals as hS, type ProductTypeWithLiterals as hT, type PriceTypeWithLiterals as hU, type FieldTypeWithLiterals as hV, type FormatEnumFormatWithLiterals as hW, type StringComponentTypeWithLiterals as hX, type NodeTypeWithLiterals as hY, type WidthTypeWithLiterals as hZ, type PluginContainerDataAlignmentWithLiterals as h_, type FormSubmissionsCount as ha, type CountSubmissionsRequest as hb, type CountDeletedSubmissionsRequest as hc, type FormDeletedSubmissionsCount as hd, type GetMediaUploadURLRequest as he, type BulkMarkSubmissionsAsSeenRequest as hf, type GetSubmissionDownloadUrlRequest as hg, type SubmissionDocument as hh, type SubmissionDocumentDocumentOneOf as hi, type DocumentReady as hj, type DownloadSubmissionRequest as hk, type HeadersEntry as hl, type GetFormattedSubmissionRequest as hm, type FormattedSubmission as hn, type ListFormattedSubmissionsRequest as ho, type ListFormattedSubmissionsResponse as hp, type FormattedFormSubmission as hq, type UpdateExtendedFieldsRequest as hr, type BulkUpdateFormSubmissionTagsRequest as hs, type BulkUpdateFormSubmissionTagsResponse as ht, type BulkUpdateFormSubmissionTagsResult as hu, type BulkUpdateFormSubmissionTagsByFilterRequest as hv, type BulkUpdateFormSubmissionTagsByFilterResponse as hw, type ValidateFormSubmissionRequest as hx, type FieldViolation as hy, type FieldViolationErrorDataOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ContactFieldWithLiterals as i$, type LinkTargetWithLiterals as i0, type TextAlignmentWithLiterals as i1, type LineStyleWithLiterals as i2, type WidthWithLiterals as i3, type DividerDataAlignmentWithLiterals as i4, type ViewModeWithLiterals as i5, type LayoutTypeWithLiterals as i6, type OrientationWithLiterals as i7, type CropWithLiterals as i8, type ThumbnailsAlignmentWithLiterals as i9, type LayoutDataImagePositionWithLiterals as iA, type VerticalAlignmentAlignmentWithLiterals as iB, type ResponsivenessBehaviourWithLiterals as iC, type DesignTargetWithLiterals as iD, type ImagePositionWithLiterals as iE, type AlignmentWithLiterals as iF, type ImageFitWithLiterals as iG, type NumberOfColumnsWithLiterals as iH, type FirstDayOfWeekWithLiterals as iI, type NumberComponentTypeWithLiterals as iJ, type BooleanComponentTypeWithLiterals as iK, type ItemTypeWithLiterals as iL, type PropertiesTypeEnumWithLiterals as iM, type ArrayComponentTypeWithLiterals as iN, type WixFileComponentTypeWithLiterals as iO, type UploadFileFormatWithLiterals as iP, type PaymentComponentTypeWithLiterals as iQ, type ComponentTypeWithLiterals as iR, type TypeWithLiterals as iS, type ObjectArrayComponentTypeWithLiterals as iT, type SchedulingComponentTypeWithLiterals as iU, type FormatWithLiterals as iV, type InputTypeWithLiterals as iW, type EmailInfoTagWithLiterals as iX, type PhoneInfoTagWithLiterals as iY, type TagWithLiterals as iZ, type ConfirmationLevelWithLiterals as i_, type GIFTypeWithLiterals as ia, type SourceWithLiterals as ib, type StylesPositionWithLiterals as ic, type MapTypeWithLiterals as id, type ViewRoleWithLiterals as ie, type VoteRoleWithLiterals as ig, type PollLayoutTypeWithLiterals as ih, type PollLayoutDirectionWithLiterals as ii, type BackgroundTypeWithLiterals as ij, type DecorationTypeWithLiterals as ik, type FontTypeWithLiterals as il, type PositionWithLiterals as im, type AspectRatioWithLiterals as io, type ResizingWithLiterals as ip, type PlacementWithLiterals as iq, type CardStylesTypeWithLiterals as ir, type CardStylesAlignmentWithLiterals as is, type LayoutWithLiterals as it, type AppTypeWithLiterals as iu, type InitialExpandedItemsWithLiterals as iv, type DirectionWithLiterals as iw, type VerticalAlignmentWithLiterals as ix, type NullValueWithLiterals as iy, type ScalingWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type DisplayFieldTypeWithLiterals as j0, type OverrideEntityTypeWithLiterals as j1, type KindWithLiterals as j2, type FormFieldContactInfoEmailInfoTagWithLiterals as j3, type FormFieldContactInfoPhoneInfoTagWithLiterals as j4, type AddressInfoTagWithLiterals as j5, type SubscriptionInfoOptInLevelWithLiterals as j6, type FormFieldContactInfoContactFieldWithLiterals as j7, type SpamFilterProtectionLevelWithLiterals as j8, type RequiredIndicatorWithLiterals as j9, deleteSubmission as jA, bulkDeleteSubmission as jB, restoreSubmissionFromTrashBin as jC, removeSubmissionFromTrashBin as jD, bulkRemoveSubmissionFromTrashBin as jE, listDeletedSubmissions as jF, getDeletedSubmission as jG, querySubmission as jH, querySubmissionsByNamespace as jI, countSubmissionsByFilter as jJ, countSubmissions as jK, countDeletedSubmissions as jL, getMediaUploadUrl as jM, bulkMarkSubmissionsAsSeen as jN, getSubmissionDownloadUrl as jO, downloadSubmission as jP, getFormattedSubmission as jQ, updateExtendedFields as jR, validateFormSubmission as jS, type RequiredIndicatorPlacementWithLiterals as ja, type TargetWithLiterals as jb, type SubmitSuccessActionWithLiterals as jc, type ChangeablePropertyWithLiterals as jd, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as je, type OperatorWithLiterals as jf, type IdentityTypeWithLiterals as jg, type ErrorTypeWithLiterals as jh, type SortOrderWithLiterals as ji, type ModeWithLiterals as jj, type StatusWithLiterals as jk, type SubmissionErrorTypeWithLiterals as jl, type CommonSearchWithEntityContext as jm, type CommonQueryWithEntityContext as jn, onSubmissionCreated as jo, onSubmissionDeleted as jp, onSubmissionRemovedSubmissionFromTrash as jq, onSubmissionStatusUpdated as jr, onSubmissionContactMapped as js, onSubmissionContactMappingSkipped as jt, onSubmissionUpdated as ju, upsertContactFromSubmission as jv, createSubmission as jw, getSubmission as jx, updateSubmission as jy, confirmSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/es/index.d.mts
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 { bO as AccountInfo, hB as AccountInfoMetadata, bK as ActionEvent, fz as Address, fA as AddressComponentTypeOptionsOneOf, fh as AddressInfo, bc as AddressInfoTag, i_ as AddressInfoTagWithLiterals, eW as AddressLine2, aM as Alignment, iy as AlignmentWithLiterals, g3 as AllowedValuesOptions, dD as AnchorData, g8 as AndCondition, dK as AppEmbedData, dL as AppEmbedDataAppDataOneOf, aB as AppType, im as AppTypeWithLiterals, gx as ApplicationError, f6 as Appointment, f7 as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iG as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, eF as ArrayItems, eG as ArrayItemsItemTypeOptionsOneOf, eB as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ig as AspectRatioWithLiterals, e3 as AudioData, dt as Background, du as BackgroundBackgroundOneOf, e9 as BackgroundImage, ar as BackgroundType, ib as BackgroundTypeWithLiterals, hz as BaseEventMetadata, e6 as BlockquoteData, dM as BookingData, aR as BooleanComponentType, iD as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, ez as BooleanType, cI as Border, e0 as BorderColors, e1 as BorderWidths, f0 as BreakPoint, gy as BulkActionMetadata, gt as BulkCreateSubmissionBySubmitterData, gs as BulkCreateSubmissionBySubmitterRequest, gu as BulkCreateSubmissionBySubmitterResponse, gI as BulkDeleteSubmissionRequest, gJ as BulkDeleteSubmissionResult, hb as BulkMarkSubmissionsAsSeenRequest, gN as BulkRemoveSubmissionFromTrashBinRequest, gO as BulkRemoveSubmissionFromTrashBinResult, gv as BulkSubmissionResult, hG as BulkUpdateFormSubmissionTagsByFilterOptions, hr as BulkUpdateFormSubmissionTagsByFilterRequest, hs as BulkUpdateFormSubmissionTagsByFilterResponse, hF as BulkUpdateFormSubmissionTagsOptions, ho as BulkUpdateFormSubmissionTagsRequest, hp as BulkUpdateFormSubmissionTagsResponse, hq as BulkUpdateFormSubmissionTagsResult, e5 as BulletedListData, cH as ButtonData, a8 as ButtonDataType, hU as ButtonDataTypeWithLiterals, dO as ButtonStyles, e7 as CaptionData, dR as CardStyles, az as CardStylesAlignment, ik as CardStylesAlignmentWithLiterals, ay as CardStylesType, ij as CardStylesTypeWithLiterals, d$ as CellStyle, bk as ChangeableProperty, j6 as ChangeablePropertyWithLiterals, eA as Checkbox, eH as CheckboxGroup, gg as Checkout, cT as CodeBlockData, dX as CollapsibleListData, dE as ColorData, cJ as Colors, jg as CommonQueryWithEntityContext, jf as CommonSearchWithEntityContext, aY as ComponentType, iK as ComponentTypeWithLiterals, eJ as ComponentsTags, ga as Condition, g6 as ConditionNode, g7 as ConditionNodeNodeOneOf, gF as ConfirmSubmissionRequest, b5 as ConfirmationLevel, iT as ConfirmationLevelWithLiterals, b6 as ContactField, iU as ContactFieldWithLiterals, eu as CorrectAnswersList, h8 as CountDeletedSubmissionsRequest, h5 as CountSubmissionsByFilterRequest, h7 as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gf as CreateCheckoutFromSubmissionResponse, gq as CreateSubmissionBySubmitterRequest, gr as CreateSubmissionBySubmitterResponse, gm as CreateSubmissionRequest, gn as CreateSubmissionResponse, ah as Crop, i1 as CropWithLiterals, gQ as CursorPaging, gR as CursorPagingMetadata, gV as CursorQueryPagingMethodOneOf, gY as CursorSearch, gZ as CursorSearchPagingMethodOneOf, gS as Cursors, fi as CustomFieldInfo, ej as CustomOption, cp as DataExtensionsDetails, eo as DateInput, eq as DatePicker, cy as DateTimeConstraints, em as DateTimeInput, dB as Decoration, dC as DecorationDataOneOf, as as DecorationType, ic as DecorationTypeWithLiterals, eX as DefaultCountryConfig, eY as DefaultCountryConfigOptionsOneOf, gG as DeleteSubmissionRequest, gH as DeleteSubmissionResponse, dz as Design, aK as DesignTarget, iw as DesignTargetWithLiterals, dZ as Dimensions, aD as Direction, ip as DirectionWithLiterals, fD as DisplayField, fE as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, iV as DisplayFieldTypeWithLiterals, cV as DividerData, ad as DividerDataAlignment, hZ as DividerDataAlignmentWithLiterals, hf as DocumentReady, ec as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eR as DonationInput, eS as DonationInputOption, hg as DownloadSubmissionRequest, ek as Dropdown, el as DropdownOption, cf as DynamicPriceOptions, ff as EmailInfo, b2 as EmailInfoTag, iQ as EmailInfoTagWithLiterals, dV as EmbedData, gj as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, ja as ErrorTypeWithLiterals, dN as EventData, hA as EventMetadata, bv as ExtendedFields, cr as Field, cs as FieldFieldTypeOptionsOneOf, f$ as FieldGroup, g4 as FieldOverride, g5 as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, a2 as FieldType, hO as FieldTypeWithLiterals, hu as FieldViolation, hv as FieldViolationErrorDataOneOf, ck as FieldsOverrides, eZ as FieldsSettings, cW as FileData, cX as FileSource, cY as FileSourceDataOneOf, eM as FileType, eN as FileUpload, aP as FirstDayOfWeek, iB as FirstDayOfWeekWithLiterals, eU as FixedPayment, ce as FixedPriceOptions, dJ as FontFamilyData, dH as FontSizeData, at as FontType, id as FontTypeWithLiterals, bR as Form, h9 as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, fd as FormFieldContactInfo, fe as FormFieldContactInfoAdditionalInfoOneOf, fR as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, j0 as FormFieldContactInfoContactFieldWithLiterals, fS as FormFieldContactInfoCustomFieldInfo, fP as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, iY as FormFieldContactInfoEmailInfoTagWithLiterals, fQ as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, iZ as FormFieldContactInfoPhoneInfoTagWithLiterals, fT as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, e$ as FormLayout, fJ as FormOverride, fK as FormProperties, fI as FormRule, hE as FormSubmissionQuerySpec, hC as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h6 as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hP as FormatEnumFormatWithLiterals, iO as FormatWithLiterals, hm as FormattedFormSubmission, hj as FormattedSubmission, d9 as GIF, d8 as GIFData, aj as GIFType, i3 as GIFTypeWithLiterals, c_ as GalleryData, d4 as GalleryOptions, d5 as GalleryOptionsLayout, gT as GetDeletedSubmissionRequest, hi as GetFormattedSubmissionRequest, ha as GetMediaUploadURLRequest, gB as GetSubmissionByCheckoutIdRequest, gC as GetSubmissionByCheckoutIdResponse, hc as GetSubmissionDownloadUrlRequest, gz as GetSubmissionRequest, gA as GetSubmissionResponse, ds as Gradient, f3 as Group, db as HTMLData, dc as HTMLDataDataOneOf, hh as HeadersEntry, da as HeadingData, cO as Height, g2 as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, j9 as IdentityTypeWithLiterals, d0 as Image, dd as ImageData, df as ImageDataStyles, aN as ImageFit, iz as ImageFitWithLiterals, aL as ImagePosition, ix as ImagePositionWithLiterals, dP as ImageStyles, fa as InPersonOptions, aC as InitialExpandedItems, io as InitialExpandedItemsWithLiterals, ct as InputField, cu as InputFieldInputTypeOptionsOneOf, b1 as InputType, iP as InputTypeWithLiterals, b$ as IntegerType, gh as IsFormSubmittableRequest, gi as IsFormSubmittableResponse, d2 as Item, d3 as ItemDataOneOf, f1 as ItemLayout, f2 as ItemLayoutItemOneOf, gw as ItemMetadata, d6 as ItemStyle, aS as ItemType, iE as ItemTypeWithLiterals, b9 as Kind, iX as KindWithLiterals, aA as Layout, ea as LayoutCellData, e8 as LayoutData, aH as LayoutDataImagePosition, it as LayoutDataImagePositionWithLiterals, af as LayoutType, h$ as LayoutTypeWithLiterals, il as LayoutWithLiterals, fV as LimitationRule, ab as LineStyle, hX as LineStyleWithLiterals, cQ as Link, dF as LinkData, cR as LinkDataOneOf, dg as LinkPreviewData, dh as LinkPreviewDataStyles, a9 as LinkTarget, hV as LinkTargetWithLiterals, gP as ListDeletedSubmissionsRequest, hk as ListFormattedSubmissionsRequest, hl as ListFormattedSubmissionsResponse, e2 as ListValue, f8 as Location, f9 as LocationLocationInfoOneOf, di as MapData, dj as MapSettings, am as MapType, i6 as MapTypeWithLiterals, f4 as Margin, bC as MarketingSubscriptionDetails, c$ as Media, ee as MediaItem, ef as MediaItemMediaOneOf, eg as MediaSettings, dG as MentionData, bL as MessageEnvelope, eb as Metadata, bq as Mode, jc as ModeWithLiterals, eV as MultilineAddress, ci as MultilineAddressValidation, fU as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cE as Node, cF as NodeDataOneOf, cG as NodeStyle, a5 as NodeType, hR as NodeTypeWithLiterals, aF as NullValue, ir as NullValueWithLiterals, aQ as NumberComponentType, iC as NumberComponentTypeWithLiterals, b_ as NumberErrorMessages, ex as NumberInput, aO as NumberOfColumns, iA as NumberOfColumnsWithLiterals, ev as NumberType, fB as ObjectArray, a_ as ObjectArrayComponentType, fC as ObjectArrayComponentTypeOptionsOneOf, iM as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, eC as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dW as Oembed, bm as Operator, j8 as OperatorWithLiterals, Y as OptInLevel, hI as OptInLevelWithLiterals, eI as Option, dw as OptionDesign, dr as OptionLayout, g9 as OrCondition, bw as OrderDetails, e4 as OrderedListData, ag as Orientation, i0 as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, j7 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iW as OverrideEntityTypeWithLiterals, cZ as PDFSettings, fG as PageNavigationOptions, dk as ParagraphData, et as Password, fv as Payment, aX as PaymentComponentType, fw as PaymentComponentTypeOptionsOneOf, iJ as PaymentComponentTypeWithLiterals, eT as PaymentInput, cc as PaymentType, dm as Permissions, cz as PhoneConstraints, fg as PhoneInfo, b3 as PhoneInfoTag, iR as PhoneInfoTagWithLiterals, en as PhoneInput, fc as PhoneOptions, ax as Placement, ii as PlacementWithLiterals, dU as PlaybackOptions, cK as PluginContainerData, a7 as PluginContainerDataAlignment, hT as PluginContainerDataAlignmentWithLiterals, cL as PluginContainerDataWidth, cM as PluginContainerDataWidthDataOneOf, dx as Poll, dl as PollData, dy as PollDataLayout, dv as PollDesign, dq as PollLayout, aq as PollLayoutDirection, ia as PollLayoutDirectionWithLiterals, ap as PollLayoutType, i9 as PollLayoutTypeWithLiterals, dn as PollOption, au as Position, ie as PositionWithLiterals, fL as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hN as PriceTypeWithLiterals, dS as PricingData, cg as Product, eP as ProductCheckboxGroup, eQ as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, a0 as ProductType, hM as ProductTypeWithLiterals, eD as PropertiesType, aT as PropertiesTypeEnum, iF as PropertiesTypeEnumWithLiterals, eE as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cd as QuantityLimit, gU as QuerySubmissionRequest, h3 as QuerySubmissionsByNamespaceForExportRequest, h4 as QuerySubmissionsByNamespaceForExportResponse, h1 as QuerySubmissionsByNamespaceRequest, h2 as QuerySubmissionsByNamespaceResponse, ew as QuizFieldSettings, eh as RadioGroup, ei as RadioGroupOption, ey as RatingInput, f_ as RedirectOptions, cS as Rel, gL as RemoveSubmissionFromTrashBinRequest, gM as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, e_ as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, j3 as RequiredIndicatorPlacementWithLiterals, fW as RequiredIndicatorProperties, j2 as RequiredIndicatorWithLiterals, g1 as RequiredOptions, aw as Resizing, ih as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iv as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gK as RestoreSubmissionFromTrashBinRequest, dQ as RibbonStyles, cD as RichContent, fF as RichContentOptions, g0 as Rule, gb as RuleFormOverride, gc as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, is as ScalingWithLiterals, fx as Scheduling, a$ as SchedulingComponentType, fy as SchedulingComponentTypeOptionsOneOf, iN as SchedulingComponentTypeWithLiterals, g_ as SearchDetails, g$ as SearchSubmissionsByNamespaceForExportRequest, h0 as SearchSubmissionsByNamespaceForExportResponse, gX as SearchSubmissionsByNamespaceRequest, f5 as Section, es as ServiceOption, eL as ServicesCheckboxGroup, er as ServicesDropdown, dp as Settings, eO as Signature, bp as SortOrder, jb as SortOrderWithLiterals, gW as Sorting, ak as Source, i4 as SourceWithLiterals, bf as SpamFilterProtectionLevel, j1 as SpamFilterProtectionLevelWithLiterals, cN as Spoiler, dI as SpoilerData, br as Status, jd as StatusWithLiterals, fH as Step, a4 as StringComponentType, hQ as StringComponentTypeWithLiterals, cv as StringCorrectAnswersList, bV as StringErrorMessages, cB as StringQuizFieldSettings, cw as StringType, bW as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hK as StringTypeFormatEnumFormatWithLiterals, cx as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cP as Styles, de as StylesBorder, al as StylesPosition, i5 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hd as SubmissionDocument, he as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, je as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hH as SubmissionStatusWithLiterals, hx as SubmissionValidationError, hy as SubmissionValidationErrorErrorMessageOneOf, hw as SubmissionValidationErrors, go as SubmissionValidationErrorsDetails, hD as SubmissionsQueryResult, gl as SubmitContactResponse, fX as SubmitSettings, fY as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, j5 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, fj as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, i$ as SubscriptionInfoOptInLevelWithLiterals, d_ as TableCellData, dY as TableData, b4 as Tag, by as TagList, iS as TagWithLiterals, gd as Tags, eK as TagsOption, ge as TagsTagList, bi as Target, j4 as TargetWithLiterals, aa as TextAlignment, hW as TextAlignmentWithLiterals, dA as TextData, cC as TextInput, ed as TextNodeStyle, cU as TextStyle, fZ as ThankYouMessageOptions, d7 as Thumbnails, ai as ThumbnailsAlignment, i2 as ThumbnailsAlignmentWithLiterals, ep as TimeInput, aZ as Type, iL as TypeWithLiterals, hn as UpdateExtendedFieldsRequest, gD as UpdateSubmissionRequest, gE as UpdateSubmissionResponse, aW as UploadFileFormat, iI as UploadFileFormatWithLiterals, fM as UpsertContact, gk as UpsertContactFromSubmissionRequest, fN as V4FormFieldContactInfo, fO as V4FormFieldContactInfoAdditionalInfoOneOf, ht as ValidateFormSubmissionRequest, cn as Validation, gp as ValidationError, $ as ValidationFormat, hL as ValidationFormatWithLiterals, cA as ValidationMessages, co as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iu as VerticalAlignmentAlignmentWithLiterals, iq as VerticalAlignmentWithLiterals, d1 as Video, fb as VideoConferenceOptions, dT as VideoData, ae as ViewMode, h_ as ViewModeWithLiterals, an as ViewRole, i7 as ViewRoleWithLiterals, ao as VoteRole, i8 as VoteRoleWithLiterals, Z as WebhookIdentityType, hJ as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hS as WidthTypeWithLiterals, hY as WidthWithLiterals, ft as WixFile, aV as WixFileComponentType, fu as WixFileComponentTypeOptionsOneOf, iH as WixFileComponentTypeWithLiterals, fq as _Array, fr as _ArrayComponentTypeOptionsOneOf, fo as _Boolean, fp as _BooleanComponentTypeOptionsOneOf, fm as _Number, fn as _NumberComponentTypeOptionsOneOf, fs as _Object, fk as _String, fl as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BVlQbylv.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, 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-Bxnj1K2o.mjs';
|
|
3
|
+
export { bO as AccountInfo, hF as AccountInfoMetadata, bK as ActionEvent, fD as Address, fE as AddressComponentTypeOptionsOneOf, fl as AddressInfo, bc as AddressInfoTag, j5 as AddressInfoTagWithLiterals, e_ as AddressLine2, aM as Alignment, iF as AlignmentWithLiterals, g7 as AllowedValuesOptions, dD as AnchorData, gc as AndCondition, dK as AppEmbedData, dL as AppEmbedDataAppDataOneOf, aB as AppType, iu as AppTypeWithLiterals, gB as ApplicationError, fa as Appointment, fb as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iN as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, eI as ArrayItems, eJ as ArrayItemsItemTypeOptionsOneOf, eE as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, io as AspectRatioWithLiterals, e3 as AudioData, dt as Background, du as BackgroundBackgroundOneOf, e9 as BackgroundImage, ar as BackgroundType, ij as BackgroundTypeWithLiterals, hD as BaseEventMetadata, e6 as BlockquoteData, dM as BookingData, aR as BooleanComponentType, iK as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, eB as BooleanType, cI as Border, e0 as BorderColors, e1 as BorderWidths, f4 as BreakPoint, gC as BulkActionMetadata, gx as BulkCreateSubmissionBySubmitterData, gw as BulkCreateSubmissionBySubmitterRequest, gy as BulkCreateSubmissionBySubmitterResponse, gM as BulkDeleteSubmissionRequest, gN as BulkDeleteSubmissionResult, hf as BulkMarkSubmissionsAsSeenRequest, gR as BulkRemoveSubmissionFromTrashBinRequest, gS as BulkRemoveSubmissionFromTrashBinResult, gz as BulkSubmissionResult, hK as BulkUpdateFormSubmissionTagsByFilterOptions, hv as BulkUpdateFormSubmissionTagsByFilterRequest, hw as BulkUpdateFormSubmissionTagsByFilterResponse, hJ as BulkUpdateFormSubmissionTagsOptions, hs as BulkUpdateFormSubmissionTagsRequest, ht as BulkUpdateFormSubmissionTagsResponse, hu as BulkUpdateFormSubmissionTagsResult, e5 as BulletedListData, cH as ButtonData, a8 as ButtonDataType, h$ as ButtonDataTypeWithLiterals, dO as ButtonStyles, e7 as CaptionData, dR as CardStyles, az as CardStylesAlignment, is as CardStylesAlignmentWithLiterals, ay as CardStylesType, ir as CardStylesTypeWithLiterals, d$ as CellStyle, bk as ChangeableProperty, jd as ChangeablePropertyWithLiterals, eC as Checkbox, eL as CheckboxGroup, gk as Checkout, cT as CodeBlockData, dX as CollapsibleListData, dE as ColorData, cJ as Colors, jn as CommonQueryWithEntityContext, jm as CommonSearchWithEntityContext, aY as ComponentType, iR as ComponentTypeWithLiterals, eN as ComponentsTags, ge as Condition, ga as ConditionNode, gb as ConditionNodeNodeOneOf, gJ as ConfirmSubmissionRequest, b5 as ConfirmationLevel, i_ as ConfirmationLevelWithLiterals, b6 as ContactField, i$ as ContactFieldWithLiterals, eD as CorrectAnswersList, hc as CountDeletedSubmissionsRequest, h9 as CountSubmissionsByFilterRequest, hb as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gj as CreateCheckoutFromSubmissionResponse, gu as CreateSubmissionBySubmitterRequest, gv as CreateSubmissionBySubmitterResponse, gq as CreateSubmissionRequest, gr as CreateSubmissionResponse, ah as Crop, i8 as CropWithLiterals, gU as CursorPaging, gV as CursorPagingMetadata, gZ as CursorQueryPagingMethodOneOf, h0 as CursorSearch, h1 as CursorSearchPagingMethodOneOf, gW as Cursors, fm as CustomFieldInfo, el as CustomOption, cp as DataExtensionsDetails, eq as DateInput, es as DatePicker, cy as DateTimeConstraints, eo as DateTimeInput, dB as Decoration, dC as DecorationDataOneOf, as as DecorationType, ik as DecorationTypeWithLiterals, e$ as DefaultCountryConfig, f0 as DefaultCountryConfigOptionsOneOf, gK as DeleteSubmissionRequest, gL as DeleteSubmissionResponse, dz as Design, aK as DesignTarget, iD as DesignTargetWithLiterals, dZ as Dimensions, aD as Direction, iw as DirectionWithLiterals, fH as DisplayField, fI as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, j0 as DisplayFieldTypeWithLiterals, cV as DividerData, ad as DividerDataAlignment, i4 as DividerDataAlignmentWithLiterals, hj as DocumentReady, ee as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eV as DonationInput, eW as DonationInputOption, hk as DownloadSubmissionRequest, em as Dropdown, en as DropdownOption, cf as DynamicPriceOptions, fj as EmailInfo, b2 as EmailInfoTag, iX as EmailInfoTagWithLiterals, dV as EmbedData, gn as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, jh as ErrorTypeWithLiterals, dN as EventData, hE as EventMetadata, bv as ExtendedFields, cr as Field, cs as FieldFieldTypeOptionsOneOf, g3 as FieldGroup, g8 as FieldOverride, g9 as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, a2 as FieldType, hV as FieldTypeWithLiterals, hy as FieldViolation, hz as FieldViolationErrorDataOneOf, ck as FieldsOverrides, f1 as FieldsSettings, cW as FileData, cX as FileSource, cY as FileSourceDataOneOf, eQ as FileType, eR as FileUpload, hM as Filter, aP as FirstDayOfWeek, iI as FirstDayOfWeekWithLiterals, eY as FixedPayment, ce as FixedPriceOptions, dJ as FontFamilyData, dH as FontSizeData, at as FontType, il as FontTypeWithLiterals, bR as Form, hd as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, fh as FormFieldContactInfo, fi as FormFieldContactInfoAdditionalInfoOneOf, fV as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, j7 as FormFieldContactInfoContactFieldWithLiterals, fW as FormFieldContactInfoCustomFieldInfo, fT as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, j3 as FormFieldContactInfoEmailInfoTagWithLiterals, fU as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, j4 as FormFieldContactInfoPhoneInfoTagWithLiterals, fX as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, f3 as FormLayout, fN as FormOverride, fO as FormProperties, fM as FormRule, hI as FormSubmissionQuerySpec, hG as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, ha as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hW as FormatEnumFormatWithLiterals, iV as FormatWithLiterals, hq as FormattedFormSubmission, hn as FormattedSubmission, d9 as GIF, d8 as GIFData, aj as GIFType, ia as GIFTypeWithLiterals, c_ as GalleryData, d4 as GalleryOptions, d5 as GalleryOptionsLayout, gX as GetDeletedSubmissionRequest, hm as GetFormattedSubmissionRequest, he as GetMediaUploadURLRequest, gF as GetSubmissionByCheckoutIdRequest, gG as GetSubmissionByCheckoutIdResponse, hg as GetSubmissionDownloadUrlRequest, gD as GetSubmissionRequest, gE as GetSubmissionResponse, ds as Gradient, f7 as Group, db as HTMLData, dc as HTMLDataDataOneOf, hl as HeadersEntry, da as HeadingData, cO as Height, g6 as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, jg as IdentityTypeWithLiterals, d0 as Image, dd as ImageData, df as ImageDataStyles, aN as ImageFit, iG as ImageFitWithLiterals, aL as ImagePosition, iE as ImagePositionWithLiterals, dP as ImageStyles, fe as InPersonOptions, aC as InitialExpandedItems, iv as InitialExpandedItemsWithLiterals, ct as InputField, cu as InputFieldInputTypeOptionsOneOf, b1 as InputType, iW as InputTypeWithLiterals, b$ as IntegerType, gl as IsFormSubmittableRequest, gm as IsFormSubmittableResponse, d2 as Item, d3 as ItemDataOneOf, f5 as ItemLayout, f6 as ItemLayoutItemOneOf, gA as ItemMetadata, d6 as ItemStyle, aS as ItemType, iL as ItemTypeWithLiterals, b9 as Kind, j2 as KindWithLiterals, aA as Layout, ea as LayoutCellData, e8 as LayoutData, aH as LayoutDataImagePosition, iA as LayoutDataImagePositionWithLiterals, af as LayoutType, i6 as LayoutTypeWithLiterals, it as LayoutWithLiterals, fZ as LimitationRule, ab as LineStyle, i2 as LineStyleWithLiterals, cQ as Link, dF as LinkData, cR as LinkDataOneOf, dg as LinkPreviewData, dh as LinkPreviewDataStyles, a9 as LinkTarget, i0 as LinkTargetWithLiterals, gT as ListDeletedSubmissionsRequest, ho as ListFormattedSubmissionsRequest, hp as ListFormattedSubmissionsResponse, e2 as ListValue, fc as Location, fd as LocationLocationInfoOneOf, di as MapData, dj as MapSettings, am as MapType, id as MapTypeWithLiterals, f8 as Margin, bC as MarketingSubscriptionDetails, c$ as Media, eg as MediaItem, eh as MediaItemMediaOneOf, ei as MediaSettings, dG as MentionData, bL as MessageEnvelope, ed as Metadata, bq as Mode, jj as ModeWithLiterals, eZ as MultilineAddress, ci as MultilineAddressValidation, fY as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cE as Node, cF as NodeDataOneOf, cG as NodeStyle, a5 as NodeType, hY as NodeTypeWithLiterals, aF as NullValue, iy as NullValueWithLiterals, aQ as NumberComponentType, iJ as NumberComponentTypeWithLiterals, ew as NumberCorrectAnswersList, b_ as NumberErrorMessages, ez as NumberInput, aO as NumberOfColumns, iH as NumberOfColumnsWithLiterals, ey as NumberQuizFieldSettings, ex as NumberType, fF as ObjectArray, a_ as ObjectArrayComponentType, fG as ObjectArrayComponentTypeOptionsOneOf, iT as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, eF as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dW as Oembed, bm as Operator, jf as OperatorWithLiterals, Y as OptInLevel, hP as OptInLevelWithLiterals, eM as Option, dw as OptionDesign, dr as OptionLayout, gd as OrCondition, bw as OrderDetails, e4 as OrderedListData, ag as Orientation, i7 as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, je as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j1 as OverrideEntityTypeWithLiterals, cZ as PDFSettings, fK as PageNavigationOptions, dk as ParagraphData, ev as Password, fz as Payment, aX as PaymentComponentType, fA as PaymentComponentTypeOptionsOneOf, iQ as PaymentComponentTypeWithLiterals, eX as PaymentInput, cc as PaymentType, dm as Permissions, cz as PhoneConstraints, fk as PhoneInfo, b3 as PhoneInfoTag, iY as PhoneInfoTagWithLiterals, ep as PhoneInput, fg as PhoneOptions, ax as Placement, iq as PlacementWithLiterals, dU as PlaybackOptions, cK as PluginContainerData, a7 as PluginContainerDataAlignment, h_ as PluginContainerDataAlignmentWithLiterals, cL as PluginContainerDataWidth, cM as PluginContainerDataWidthDataOneOf, dx as Poll, dl as PollData, dy as PollDataLayout, dv as PollDesign, dq as PollLayout, aq as PollLayoutDirection, ii as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ih as PollLayoutTypeWithLiterals, dn as PollOption, au as Position, im as PositionWithLiterals, fP as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hU as PriceTypeWithLiterals, dS as PricingData, cg as Product, eT as ProductCheckboxGroup, eU as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, a0 as ProductType, hT as ProductTypeWithLiterals, eG as PropertiesType, aT as PropertiesTypeEnum, iM as PropertiesTypeEnumWithLiterals, eH as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cd as QuantityLimit, hL as QueryBuilder, gY as QuerySubmissionRequest, h7 as QuerySubmissionsByNamespaceForExportRequest, h8 as QuerySubmissionsByNamespaceForExportResponse, h5 as QuerySubmissionsByNamespaceRequest, h6 as QuerySubmissionsByNamespaceResponse, eK as QuizFieldSettings, ej as RadioGroup, ek as RadioGroupOption, eA as RatingInput, g2 as RedirectOptions, cS as Rel, gP as RemoveSubmissionFromTrashBinRequest, gQ as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, f2 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, ja as RequiredIndicatorPlacementWithLiterals, f_ as RequiredIndicatorProperties, j9 as RequiredIndicatorWithLiterals, g5 as RequiredOptions, aw as Resizing, ip as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iC as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gO as RestoreSubmissionFromTrashBinRequest, dQ as RibbonStyles, cD as RichContent, fJ as RichContentOptions, g4 as Rule, gf as RuleFormOverride, gg as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iz as ScalingWithLiterals, fB as Scheduling, a$ as SchedulingComponentType, fC as SchedulingComponentTypeOptionsOneOf, iU as SchedulingComponentTypeWithLiterals, h2 as SearchDetails, h3 as SearchSubmissionsByNamespaceForExportRequest, h4 as SearchSubmissionsByNamespaceForExportResponse, g$ as SearchSubmissionsByNamespaceRequest, f9 as Section, eu as ServiceOption, eP as ServicesCheckboxGroup, et as ServicesDropdown, dp as Settings, eb as ShapeData, ec as ShapeDataStyles, eS as Signature, hN as Sort, bp as SortOrder, ji as SortOrderWithLiterals, g_ as Sorting, ak as Source, ib as SourceWithLiterals, bf as SpamFilterProtectionLevel, j8 as SpamFilterProtectionLevelWithLiterals, cN as Spoiler, dI as SpoilerData, br as Status, jk as StatusWithLiterals, fL as Step, a4 as StringComponentType, hX as StringComponentTypeWithLiterals, cv as StringCorrectAnswersList, bV as StringErrorMessages, cB as StringQuizFieldSettings, cw as StringType, bW as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hR as StringTypeFormatEnumFormatWithLiterals, cx as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cP as Styles, de as StylesBorder, al as StylesPosition, ic as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hh as SubmissionDocument, hi as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jl as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hO as SubmissionStatusWithLiterals, hB as SubmissionValidationError, hC as SubmissionValidationErrorErrorMessageOneOf, hA as SubmissionValidationErrors, gs as SubmissionValidationErrorsDetails, hH as SubmissionsQueryResult, gp as SubmitContactResponse, f$ as SubmitSettings, g0 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, jc as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, fn as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j6 as SubscriptionInfoOptInLevelWithLiterals, d_ as TableCellData, dY as TableData, b4 as Tag, by as TagList, iZ as TagWithLiterals, gh as Tags, eO as TagsOption, gi as TagsTagList, bi as Target, jb as TargetWithLiterals, aa as TextAlignment, i1 as TextAlignmentWithLiterals, dA as TextData, cC as TextInput, ef as TextNodeStyle, cU as TextStyle, g1 as ThankYouMessageOptions, d7 as Thumbnails, ai as ThumbnailsAlignment, i9 as ThumbnailsAlignmentWithLiterals, er as TimeInput, aZ as Type, iS as TypeWithLiterals, hr as UpdateExtendedFieldsRequest, gH as UpdateSubmissionRequest, gI as UpdateSubmissionResponse, aW as UploadFileFormat, iP as UploadFileFormatWithLiterals, fQ as UpsertContact, go as UpsertContactFromSubmissionRequest, fR as V4FormFieldContactInfo, fS as V4FormFieldContactInfoAdditionalInfoOneOf, hx as ValidateFormSubmissionRequest, cn as Validation, gt as ValidationError, $ as ValidationFormat, hS as ValidationFormatWithLiterals, cA as ValidationMessages, co as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iB as VerticalAlignmentAlignmentWithLiterals, ix as VerticalAlignmentWithLiterals, d1 as Video, ff as VideoConferenceOptions, dT as VideoData, ae as ViewMode, i5 as ViewModeWithLiterals, an as ViewRole, ie as ViewRoleWithLiterals, ao as VoteRole, ig as VoteRoleWithLiterals, Z as WebhookIdentityType, hQ as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hZ as WidthTypeWithLiterals, i3 as WidthWithLiterals, fx as WixFile, aV as WixFileComponentType, fy as WixFileComponentTypeOptionsOneOf, iO as WixFileComponentTypeWithLiterals, fu as _Array, fv as _ArrayComponentTypeOptionsOneOf, fs as _Boolean, ft as _BooleanComponentTypeOptionsOneOf, fq as _Number, fr as _NumberComponentTypeOptionsOneOf, fw as _Object, fo as _String, fp as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-Bxnj1K2o.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -113,6 +113,18 @@ function resolveWixFormsV4FormSubmissionServiceUrl(opts) {
|
|
|
113
113
|
srcPath: "/_api/form-submission-service",
|
|
114
114
|
destPath: ""
|
|
115
115
|
}
|
|
116
|
+
],
|
|
117
|
+
"apps.wixel.com": [
|
|
118
|
+
{
|
|
119
|
+
srcPath: "/_api/form-submission-service",
|
|
120
|
+
destPath: ""
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"*.wixel.com": [
|
|
124
|
+
{
|
|
125
|
+
srcPath: "/_api/form-submission-service",
|
|
126
|
+
destPath: ""
|
|
127
|
+
}
|
|
116
128
|
]
|
|
117
129
|
};
|
|
118
130
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -848,6 +860,7 @@ function validateFormSubmission(payload) {
|
|
|
848
860
|
|
|
849
861
|
// src/forms-v4-submission-submissions.universal.ts
|
|
850
862
|
import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
|
|
863
|
+
import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
|
|
851
864
|
var SubmissionStatus = /* @__PURE__ */ ((SubmissionStatus2) => {
|
|
852
865
|
SubmissionStatus2["UNKNOWN_SUBMISSION_STATUS"] = "UNKNOWN_SUBMISSION_STATUS";
|
|
853
866
|
SubmissionStatus2["PENDING"] = "PENDING";
|
|
@@ -978,6 +991,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
978
991
|
NodeType2["CAPTION"] = "CAPTION";
|
|
979
992
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
980
993
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
994
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
981
995
|
return NodeType2;
|
|
982
996
|
})(NodeType || {});
|
|
983
997
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -2075,6 +2089,7 @@ async function typedQuerySubmissionsByNamespace(query, options) {
|
|
|
2075
2089
|
throw transformedError;
|
|
2076
2090
|
}
|
|
2077
2091
|
}
|
|
2092
|
+
var { QueryBuilder, Filter, Sort } = createQueryUtils();
|
|
2078
2093
|
async function countSubmissionsByFilter2(filter, options) {
|
|
2079
2094
|
const { httpClient, sideEffects } = arguments[2];
|
|
2080
2095
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
@@ -2840,6 +2855,7 @@ export {
|
|
|
2840
2855
|
EmailInfoTag,
|
|
2841
2856
|
ErrorType,
|
|
2842
2857
|
FieldType,
|
|
2858
|
+
Filter,
|
|
2843
2859
|
FirstDayOfWeek,
|
|
2844
2860
|
FontType,
|
|
2845
2861
|
FormFieldContactInfoContactField,
|
|
@@ -2882,12 +2898,14 @@ export {
|
|
|
2882
2898
|
PriceType,
|
|
2883
2899
|
ProductType,
|
|
2884
2900
|
PropertiesTypeEnum,
|
|
2901
|
+
QueryBuilder,
|
|
2885
2902
|
RequiredIndicator,
|
|
2886
2903
|
RequiredIndicatorPlacement,
|
|
2887
2904
|
Resizing,
|
|
2888
2905
|
ResponsivenessBehaviour,
|
|
2889
2906
|
Scaling,
|
|
2890
2907
|
SchedulingComponentType,
|
|
2908
|
+
Sort,
|
|
2891
2909
|
SortOrder,
|
|
2892
2910
|
Source,
|
|
2893
2911
|
SpamFilterProtectionLevel,
|