@wix/auto_sdk_forms_submissions 1.0.91 → 1.0.93
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-pH6hm_fT.d.ts → forms-v4-submission-submissions.universal-C1FHHsMA.d.ts} +72 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +25 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +25 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +68 -4
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-pH6hm_fT.d.mts → forms-v4-submission-submissions.universal-C1FHHsMA.d.mts} +72 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +21 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +21 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +68 -4
- package/build/es/meta.mjs +16 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-a2rNXp7F.d.ts → forms-v4-submission-submissions.universal-CRD2GLN7.d.ts} +72 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +25 -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 +25 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +68 -4
- package/build/internal/cjs/meta.js +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-a2rNXp7F.d.mts → forms-v4-submission-submissions.universal-CRD2GLN7.d.mts} +72 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +21 -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 +21 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +68 -4
- package/build/internal/es/meta.mjs +16 -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;
|
|
@@ -5601,6 +5624,48 @@ interface TagsTagList {
|
|
|
5601
5624
|
*/
|
|
5602
5625
|
tagIds?: string[];
|
|
5603
5626
|
}
|
|
5627
|
+
interface QuizSettings extends QuizSettingsResultsDisplayOptionsOneOf {
|
|
5628
|
+
/** Configuration for displaying only the pass/fail message. */
|
|
5629
|
+
passingStatusOptions?: PassFailMessages;
|
|
5630
|
+
/** Configuration for displaying both the score and pass/fail message. */
|
|
5631
|
+
scoreAndPassingStatusOptions?: PassFailMessages;
|
|
5632
|
+
/** Score required to pass the quiz. */
|
|
5633
|
+
passingScore?: number;
|
|
5634
|
+
/** Confirmation message text. */
|
|
5635
|
+
message?: RichContent;
|
|
5636
|
+
/**
|
|
5637
|
+
* How to display quiz results in the confirmation page.
|
|
5638
|
+
* Default: `DO_NOT_DISPLAY`
|
|
5639
|
+
*/
|
|
5640
|
+
resultsDisplay?: ResultsDisplayWithLiterals;
|
|
5641
|
+
}
|
|
5642
|
+
/** @oneof */
|
|
5643
|
+
interface QuizSettingsResultsDisplayOptionsOneOf {
|
|
5644
|
+
/** Configuration for displaying only the pass/fail message. */
|
|
5645
|
+
passingStatusOptions?: PassFailMessages;
|
|
5646
|
+
/** Configuration for displaying both the score and pass/fail message. */
|
|
5647
|
+
scoreAndPassingStatusOptions?: PassFailMessages;
|
|
5648
|
+
}
|
|
5649
|
+
declare enum ResultsDisplay {
|
|
5650
|
+
/** Unknown results display type. */
|
|
5651
|
+
UNKNOWN_DISPLAY = "UNKNOWN_DISPLAY",
|
|
5652
|
+
/** Do not show quiz score and passing status. */
|
|
5653
|
+
DO_NOT_DISPLAY = "DO_NOT_DISPLAY",
|
|
5654
|
+
/** Display only the user's score. */
|
|
5655
|
+
SCORE = "SCORE",
|
|
5656
|
+
/** Display the pass or fail message based on the user's score. */
|
|
5657
|
+
PASSING_STATUS = "PASSING_STATUS",
|
|
5658
|
+
/** Display both the score and pass/fail message. */
|
|
5659
|
+
SCORE_AND_PASSING_STATUS = "SCORE_AND_PASSING_STATUS"
|
|
5660
|
+
}
|
|
5661
|
+
/** @enumType */
|
|
5662
|
+
type ResultsDisplayWithLiterals = ResultsDisplay | 'UNKNOWN_DISPLAY' | 'DO_NOT_DISPLAY' | 'SCORE' | 'PASSING_STATUS' | 'SCORE_AND_PASSING_STATUS';
|
|
5663
|
+
interface PassFailMessages {
|
|
5664
|
+
/** Message displayed when the user passes the quiz. */
|
|
5665
|
+
passMessage?: RichContent;
|
|
5666
|
+
/** Message displayed when the user fails the quiz. */
|
|
5667
|
+
failMessage?: RichContent;
|
|
5668
|
+
}
|
|
5604
5669
|
interface CreateCheckoutFromSubmissionResponse {
|
|
5605
5670
|
/**
|
|
5606
5671
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -7524,6 +7589,9 @@ type FormSubmissionQuery = {
|
|
|
7524
7589
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
7525
7590
|
}[];
|
|
7526
7591
|
};
|
|
7592
|
+
declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7593
|
+
declare const Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7594
|
+
declare const Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7527
7595
|
/**
|
|
7528
7596
|
* > **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.
|
|
7529
7597
|
* <br>
|
|
@@ -7715,4 +7783,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7715
7783
|
fieldsToValidate?: string[];
|
|
7716
7784
|
}
|
|
7717
7785
|
|
|
7718
|
-
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 FieldsSettings 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 CorrectAnswersList as eB, type ArrayType as eC, type ObjectType as eD, type PropertiesType as eE, type PropertiesTypePropertiesTypeOptionsOneOf as eF, type ArrayItems as eG, type ArrayItemsItemTypeOptionsOneOf as eH, type QuizFieldSettings as eI, type CheckboxGroup as eJ, type Option as eK, type ComponentsTags as eL, type TagsOption as eM, type ServicesCheckboxGroup as eN, type FileType as eO, type FileUpload as eP, type Signature as eQ, type ProductCheckboxGroup as eR, type ProductCheckboxGroupOption as eS, type DonationInput as eT, type DonationInputOption as eU, type PaymentInput as eV, type FixedPayment as eW, type MultilineAddress as eX, type AddressLine2 as eY, type DefaultCountryConfig as eZ, type DefaultCountryConfigOptionsOneOf 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 NumberCorrectAnswersList as eu, type NumberType as ev, type NumberQuizFieldSettings as ew, type NumberInput as ex, type RatingInput as ey, type BooleanType as ez, type ConfirmSubmissionResponse as f, type ThankYouMessageOptions as f$, type Repeater as f0, type FormLayout as f1, type BreakPoint as f2, type ItemLayout as f3, type ItemLayoutItemOneOf as f4, type Group as f5, type Margin as f6, type Section as f7, type Appointment as f8, type AppointmentFormatInfoOneOf as f9, type SchedulingComponentTypeOptionsOneOf as fA, type Address as fB, type AddressComponentTypeOptionsOneOf as fC, type ObjectArray as fD, type ObjectArrayComponentTypeOptionsOneOf as fE, type DisplayField as fF, type DisplayFieldDisplayFieldTypeOptionsOneOf as fG, type RichContentOptions as fH, type PageNavigationOptions as fI, type Step as fJ, type FormRule as fK, type FormOverride as fL, type FormProperties as fM, type PostSubmissionTriggers as fN, type UpsertContact as fO, type V4FormFieldContactInfo as fP, type V4FormFieldContactInfoAdditionalInfoOneOf as fQ, type FormFieldContactInfoEmailInfo as fR, type FormFieldContactInfoPhoneInfo as fS, type FormFieldContactInfoAddressInfo as fT, type FormFieldContactInfoCustomFieldInfo as fU, type FormFieldContactInfoSubscriptionInfo as fV, type NestedForm as fW, type LimitationRule as fX, type RequiredIndicatorProperties as fY, type SubmitSettings as fZ, type SubmitSettingsSubmitSuccessActionOptionsOneOf as f_, type Location as fa, type LocationLocationInfoOneOf as fb, type InPersonOptions as fc, type VideoConferenceOptions as fd, type PhoneOptions as fe, type FormFieldContactInfo as ff, type FormFieldContactInfoAdditionalInfoOneOf as fg, type EmailInfo as fh, type PhoneInfo as fi, type AddressInfo as fj, type CustomFieldInfo as fk, type SubscriptionInfo as fl, type _String as fm, type _StringComponentTypeOptionsOneOf as fn, type _Number as fo, type _NumberComponentTypeOptionsOneOf as fp, type _Boolean as fq, type _BooleanComponentTypeOptionsOneOf as fr, type _Array as fs, type _ArrayComponentTypeOptionsOneOf as ft, type _Object as fu, type WixFile as fv, type WixFileComponentTypeOptionsOneOf as fw, type Payment as fx, type PaymentComponentTypeOptionsOneOf as fy, type Scheduling as fz, type BulkDeleteSubmissionResponse as g, type CursorSearchPagingMethodOneOf as g$, type RedirectOptions as g0, type FieldGroup as g1, type Rule as g2, type RequiredOptions as g3, type HiddenOptions as g4, type AllowedValuesOptions as g5, type FieldOverride as g6, type FieldOverridePropertyTypeOptionsOneOf as g7, type ConditionNode as g8, type ConditionNodeNodeOneOf as g9, type BulkActionMetadata as gA, type GetSubmissionRequest as gB, type GetSubmissionResponse as gC, type GetSubmissionByCheckoutIdRequest as gD, type GetSubmissionByCheckoutIdResponse as gE, type UpdateSubmissionRequest as gF, type UpdateSubmissionResponse as gG, type ConfirmSubmissionRequest as gH, type DeleteSubmissionRequest as gI, type DeleteSubmissionResponse as gJ, type BulkDeleteSubmissionRequest as gK, type BulkDeleteSubmissionResult as gL, type RestoreSubmissionFromTrashBinRequest as gM, type RemoveSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinResponse as gO, type BulkRemoveSubmissionFromTrashBinRequest as gP, type BulkRemoveSubmissionFromTrashBinResult as gQ, type ListDeletedSubmissionsRequest as gR, type CursorPaging as gS, type CursorPagingMetadata as gT, type Cursors as gU, type GetDeletedSubmissionRequest as gV, type QuerySubmissionRequest as gW, type CursorQueryPagingMethodOneOf as gX, type Sorting as gY, type SearchSubmissionsByNamespaceRequest as gZ, type CursorSearch as g_, type AndCondition as ga, type OrCondition as gb, type Condition as gc, type RuleFormOverride as gd, type RuleFormOverrideEntityTypeOptionsOneOf as ge, type Tags as gf, type TagsTagList as gg, type CreateCheckoutFromSubmissionResponse as gh, type Checkout as gi, type IsFormSubmittableRequest as gj, type IsFormSubmittableResponse as gk, type Empty as gl, type UpsertContactFromSubmissionRequest as gm, type SubmitContactResponse as gn, type CreateSubmissionRequest as go, type CreateSubmissionResponse as gp, type SubmissionValidationErrorsDetails as gq, type ValidationError as gr, type CreateSubmissionBySubmitterRequest as gs, type CreateSubmissionBySubmitterResponse as gt, type BulkCreateSubmissionBySubmitterRequest as gu, type BulkCreateSubmissionBySubmitterData as gv, type BulkCreateSubmissionBySubmitterResponse as gw, type BulkSubmissionResult as gx, type ItemMetadata as gy, type ApplicationError as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DividerDataAlignmentWithLiterals as h$, type SearchDetails as h0, type SearchSubmissionsByNamespaceForExportRequest as h1, type SearchSubmissionsByNamespaceForExportResponse as h2, type QuerySubmissionsByNamespaceRequest as h3, type QuerySubmissionsByNamespaceResponse as h4, type QuerySubmissionsByNamespaceForExportRequest as h5, type QuerySubmissionsByNamespaceForExportResponse as h6, type CountSubmissionsByFilterRequest as h7, type FormSubmissionsCount as h8, type CountSubmissionsRequest as h9, type SubmissionValidationErrorErrorMessageOneOf as hA, type BaseEventMetadata as hB, type EventMetadata as hC, type AccountInfoMetadata as hD, type FormSubmissionSearchSpec as hE, type SubmissionsQueryResult as hF, type FormSubmissionQuerySpec as hG, type BulkUpdateFormSubmissionTagsOptions as hH, type BulkUpdateFormSubmissionTagsByFilterOptions as hI, type SubmissionStatusWithLiterals as hJ, type OptInLevelWithLiterals as hK, type WebhookIdentityTypeWithLiterals as hL, type StringTypeFormatEnumFormatWithLiterals as hM, type ValidationFormatWithLiterals as hN, type ProductTypeWithLiterals as hO, type PriceTypeWithLiterals as hP, type FieldTypeWithLiterals as hQ, type FormatEnumFormatWithLiterals as hR, type StringComponentTypeWithLiterals as hS, type NodeTypeWithLiterals as hT, type WidthTypeWithLiterals as hU, type PluginContainerDataAlignmentWithLiterals as hV, type ButtonDataTypeWithLiterals as hW, type LinkTargetWithLiterals as hX, type TextAlignmentWithLiterals as hY, type LineStyleWithLiterals as hZ, type WidthWithLiterals as h_, type CountDeletedSubmissionsRequest as ha, type FormDeletedSubmissionsCount as hb, type GetMediaUploadURLRequest as hc, type BulkMarkSubmissionsAsSeenRequest as hd, type GetSubmissionDownloadUrlRequest as he, type SubmissionDocument as hf, type SubmissionDocumentDocumentOneOf as hg, type DocumentReady as hh, type DownloadSubmissionRequest as hi, type HeadersEntry as hj, type GetFormattedSubmissionRequest as hk, type FormattedSubmission as hl, type ListFormattedSubmissionsRequest as hm, type ListFormattedSubmissionsResponse as hn, type FormattedFormSubmission as ho, type UpdateExtendedFieldsRequest as hp, type BulkUpdateFormSubmissionTagsRequest as hq, type BulkUpdateFormSubmissionTagsResponse as hr, type BulkUpdateFormSubmissionTagsResult as hs, type BulkUpdateFormSubmissionTagsByFilterRequest as ht, type BulkUpdateFormSubmissionTagsByFilterResponse as hu, type ValidateFormSubmissionRequest as hv, type FieldViolation as hw, type FieldViolationErrorDataOneOf as hx, type SubmissionValidationErrors as hy, type SubmissionValidationError as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type FormFieldContactInfoPhoneInfoTagWithLiterals as i$, type ViewModeWithLiterals as i0, type LayoutTypeWithLiterals as i1, type OrientationWithLiterals as i2, type CropWithLiterals as i3, type ThumbnailsAlignmentWithLiterals as i4, type GIFTypeWithLiterals as i5, type SourceWithLiterals as i6, type StylesPositionWithLiterals as i7, type MapTypeWithLiterals as i8, type ViewRoleWithLiterals as i9, type AlignmentWithLiterals as iA, type ImageFitWithLiterals as iB, type NumberOfColumnsWithLiterals as iC, type FirstDayOfWeekWithLiterals as iD, type NumberComponentTypeWithLiterals as iE, type BooleanComponentTypeWithLiterals as iF, type ItemTypeWithLiterals as iG, type PropertiesTypeEnumWithLiterals as iH, type ArrayComponentTypeWithLiterals as iI, type WixFileComponentTypeWithLiterals as iJ, type UploadFileFormatWithLiterals as iK, type PaymentComponentTypeWithLiterals as iL, type ComponentTypeWithLiterals as iM, type TypeWithLiterals as iN, type ObjectArrayComponentTypeWithLiterals as iO, type SchedulingComponentTypeWithLiterals as iP, type FormatWithLiterals as iQ, type InputTypeWithLiterals as iR, type EmailInfoTagWithLiterals as iS, type PhoneInfoTagWithLiterals as iT, type TagWithLiterals as iU, type ConfirmationLevelWithLiterals as iV, type ContactFieldWithLiterals as iW, type DisplayFieldTypeWithLiterals as iX, type OverrideEntityTypeWithLiterals as iY, type KindWithLiterals as iZ, type FormFieldContactInfoEmailInfoTagWithLiterals as i_, type VoteRoleWithLiterals as ia, type PollLayoutTypeWithLiterals as ib, type PollLayoutDirectionWithLiterals as ic, type BackgroundTypeWithLiterals as id, type DecorationTypeWithLiterals as ie, type FontTypeWithLiterals as ig, type PositionWithLiterals as ih, type AspectRatioWithLiterals as ii, type ResizingWithLiterals as ij, type PlacementWithLiterals as ik, type CardStylesTypeWithLiterals as il, type CardStylesAlignmentWithLiterals as im, type LayoutWithLiterals as io, type AppTypeWithLiterals as ip, type InitialExpandedItemsWithLiterals as iq, type DirectionWithLiterals as ir, type VerticalAlignmentWithLiterals as is, type NullValueWithLiterals as it, type ScalingWithLiterals as iu, type LayoutDataImagePositionWithLiterals as iv, type VerticalAlignmentAlignmentWithLiterals as iw, type ResponsivenessBehaviourWithLiterals as ix, type DesignTargetWithLiterals as iy, type ImagePositionWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type AddressInfoTagWithLiterals as j0, type SubscriptionInfoOptInLevelWithLiterals as j1, type FormFieldContactInfoContactFieldWithLiterals as j2, type SpamFilterProtectionLevelWithLiterals as j3, type RequiredIndicatorWithLiterals as j4, type RequiredIndicatorPlacementWithLiterals as j5, type TargetWithLiterals as j6, type SubmitSuccessActionWithLiterals as j7, type ChangeablePropertyWithLiterals as j8, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j9, listDeletedSubmissions as jA, getDeletedSubmission as jB, querySubmission as jC, querySubmissionsByNamespace as jD, countSubmissionsByFilter as jE, countSubmissions as jF, countDeletedSubmissions as jG, getMediaUploadUrl as jH, bulkMarkSubmissionsAsSeen as jI, getSubmissionDownloadUrl as jJ, downloadSubmission as jK, getFormattedSubmission as jL, updateExtendedFields as jM, validateFormSubmission as jN, type OperatorWithLiterals as ja, type IdentityTypeWithLiterals as jb, type ErrorTypeWithLiterals as jc, type SortOrderWithLiterals as jd, type ModeWithLiterals as je, type StatusWithLiterals as jf, type SubmissionErrorTypeWithLiterals as jg, type CommonSearchWithEntityContext as jh, type CommonQueryWithEntityContext as ji, onSubmissionCreated as jj, onSubmissionDeleted as jk, onSubmissionRemovedSubmissionFromTrash as jl, onSubmissionStatusUpdated as jm, onSubmissionContactMapped as jn, onSubmissionContactMappingSkipped as jo, onSubmissionUpdated as jp, upsertContactFromSubmission as jq, createSubmission as jr, getSubmission as js, updateSubmission as jt, confirmSubmission as ju, deleteSubmission as jv, bulkDeleteSubmission as jw, restoreSubmissionFromTrashBin as jx, removeSubmissionFromTrashBin as jy, bulkRemoveSubmissionFromTrashBin 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 };
|
|
7786
|
+
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 NumberErrorMessages 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 FormSubmissionStatusUpdatedEvent as bA, type RemovedSubmissionFromTrash as bB, type SubmissionContactMapped as bC, type MarketingSubscriptionDetails as bD, type SubmissionContactMappingSkipped as bE, type DomainEvent as bF, type DomainEventBodyOneOf as bG, type EntityCreatedEvent as bH, type RestoreInfo as bI, type EntityUpdatedEvent as bJ, type EntityDeletedEvent as bK, type ActionEvent as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type AccountInfo as bP, type CreateCheckoutFromSubmissionRequest as bQ, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bR, type Form as bS, type FormField as bT, type FormFieldStringType as bU, type FormFieldStringTypeFormatOptionsOneOf as bV, type StringErrorMessages as bW, type StringTypeDateTimeConstraints as bX, type StringTypePhoneConstraints as bY, type StringTypeValidationMessages as bZ, type FormFieldNumberType 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, ResultsDisplay as bn, IdentityType as bo, ErrorType as bp, SortOrder as bq, Mode as br, Status as bs, SubmissionErrorType as bt, type Submitter as bu, type SubmitterSubmitterOneOf as bv, type ExtendedFields as bw, type OrderDetails as bx, type PublicTags as by, type TagList as bz, type CreateSubmissionValidationErrors as c, type GalleryData as c$, type IntegerType as c0, type FormFieldBooleanType as c1, type BooleanErrorMessages as c2, type FormFieldArrayType as c3, type FormFieldObjectType as c4, type ObjectTypePropertiesType as c5, type ObjectTypePropertiesTypePropertiesTypeOneOf as c6, type ObjectErrorMessages as c7, type ArrayTypeArrayItems as c8, type ArrayTypeArrayItemsItemsOneOf as c9, type PhoneConstraints as cA, type ValidationMessages as cB, type StringQuizFieldSettings as cC, type TextInput as cD, type RichContent as cE, type Node as cF, type NodeDataOneOf as cG, type NodeStyle as cH, type ButtonData as cI, type Border as cJ, type Colors as cK, type PluginContainerData as cL, type PluginContainerDataWidth as cM, type PluginContainerDataWidthDataOneOf as cN, type Spoiler as cO, type Height as cP, type Styles as cQ, type Link as cR, type LinkDataOneOf as cS, type Rel as cT, type CodeBlockData as cU, type TextStyle as cV, type DividerData as cW, type FileData as cX, type FileSource as cY, type FileSourceDataOneOf as cZ, type PDFSettings as c_, type ArrayErrorMessages as ca, type PredefinedValidation as cb, type PredefinedValidationFormatOptionsOneOf as cc, type PaymentType as cd, type QuantityLimit as ce, type FixedPriceOptions as cf, type DynamicPriceOptions as cg, type Product as ch, type ProductPriceOptionsOneOf as ci, type MultilineAddressValidation as cj, type FieldOverrides as ck, type FieldsOverrides as cl, type ObjectArrayType as cm, type NestedFormFieldOverrides as cn, type Validation as co, type ValidationValidationOneOf as cp, type DataExtensionsDetails as cq, type NestedFormOverrides as cr, type Field as cs, type FieldFieldTypeOptionsOneOf as ct, type InputField as cu, type InputFieldInputTypeOptionsOneOf as cv, type StringCorrectAnswersList as cw, type StringType as cx, type StringTypeFormatOptionsOneOf as cy, type DateTimeConstraints as cz, type UpdateSubmission as d, type TableCellData as d$, type Media as d0, type Image as d1, type Video as d2, type Item as d3, type ItemDataOneOf as d4, type GalleryOptions as d5, type GalleryOptionsLayout as d6, type ItemStyle as d7, type Thumbnails as d8, type GIFData as d9, type Design as dA, type TextData as dB, type Decoration as dC, type DecorationDataOneOf as dD, type AnchorData as dE, type ColorData as dF, type LinkData as dG, type MentionData as dH, type FontSizeData as dI, type SpoilerData as dJ, type FontFamilyData as dK, type AppEmbedData as dL, type AppEmbedDataAppDataOneOf as dM, type BookingData as dN, type EventData as dO, type ButtonStyles as dP, type ImageStyles as dQ, type RibbonStyles as dR, type CardStyles as dS, type PricingData as dT, type VideoData as dU, type PlaybackOptions as dV, type EmbedData as dW, type Oembed as dX, type CollapsibleListData as dY, type TableData as dZ, type Dimensions as d_, 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 dp, type Settings as dq, type PollLayout as dr, type OptionLayout as ds, type Gradient as dt, type Background as du, type BackgroundBackgroundOneOf as dv, type PollDesign as dw, type OptionDesign as dx, type Poll as dy, type PollDataLayout as dz, type UpdateSubmissionValidationErrors as e, type AddressLine2 as e$, type CellStyle as e0, type BorderColors as e1, type BorderWidths as e2, type ListValue as e3, type AudioData as e4, type OrderedListData as e5, type BulletedListData as e6, type BlockquoteData as e7, type CaptionData as e8, type LayoutData as e9, type NumberInput as eA, type RatingInput as eB, type BooleanType as eC, type Checkbox as eD, type CorrectAnswersList as eE, type ArrayType as eF, type ObjectType as eG, type PropertiesType as eH, type PropertiesTypePropertiesTypeOptionsOneOf as eI, type ArrayItems as eJ, type ArrayItemsItemTypeOptionsOneOf as eK, type QuizFieldSettings as eL, type CheckboxGroup as eM, type Option as eN, type ComponentsTags as eO, type TagsOption as eP, type ServicesCheckboxGroup as eQ, type FileType as eR, type FileUpload as eS, type Signature as eT, type ProductCheckboxGroup as eU, type ProductCheckboxGroupOption as eV, type DonationInput as eW, type DonationInputOption as eX, type PaymentInput as eY, type FixedPayment as eZ, type MultilineAddress as e_, type BackgroundImage as ea, type LayoutCellData as eb, type ShapeData as ec, type ShapeDataStyles as ed, type Metadata as ee, type DocumentStyle as ef, type TextNodeStyle as eg, type MediaItem as eh, type MediaItemMediaOneOf as ei, type MediaSettings as ej, type RadioGroup as ek, type RadioGroupOption as el, type CustomOption as em, type Dropdown as en, type DropdownOption as eo, type DateTimeInput as ep, type PhoneInput as eq, type DateInput as er, type TimeInput as es, type DatePicker as et, type ServicesDropdown as eu, type ServiceOption as ev, type Password as ew, type NumberCorrectAnswersList as ex, type NumberType as ey, type NumberQuizFieldSettings as ez, type ConfirmSubmissionResponse as f, type RequiredIndicatorProperties as f$, type DefaultCountryConfig as f0, type DefaultCountryConfigOptionsOneOf as f1, type FieldsSettings as f2, type Repeater as f3, type FormLayout as f4, type BreakPoint as f5, type ItemLayout as f6, type ItemLayoutItemOneOf as f7, type Group as f8, type Margin as f9, type Payment as fA, type PaymentComponentTypeOptionsOneOf as fB, type Scheduling as fC, type SchedulingComponentTypeOptionsOneOf as fD, type Address as fE, type AddressComponentTypeOptionsOneOf as fF, type ObjectArray as fG, type ObjectArrayComponentTypeOptionsOneOf as fH, type DisplayField as fI, type DisplayFieldDisplayFieldTypeOptionsOneOf as fJ, type RichContentOptions as fK, type PageNavigationOptions as fL, type Step as fM, type FormRule as fN, type FormOverride as fO, type FormProperties as fP, type PostSubmissionTriggers as fQ, type UpsertContact as fR, type V4FormFieldContactInfo as fS, type V4FormFieldContactInfoAdditionalInfoOneOf as fT, type FormFieldContactInfoEmailInfo as fU, type FormFieldContactInfoPhoneInfo as fV, type FormFieldContactInfoAddressInfo as fW, type FormFieldContactInfoCustomFieldInfo as fX, type FormFieldContactInfoSubscriptionInfo as fY, type NestedForm as fZ, type LimitationRule as f_, type Section as fa, type Appointment as fb, type AppointmentFormatInfoOneOf as fc, type Location as fd, type LocationLocationInfoOneOf as fe, type InPersonOptions as ff, type VideoConferenceOptions as fg, type PhoneOptions as fh, type FormFieldContactInfo as fi, type FormFieldContactInfoAdditionalInfoOneOf as fj, type EmailInfo as fk, type PhoneInfo as fl, type AddressInfo as fm, type CustomFieldInfo as fn, type SubscriptionInfo as fo, type _String as fp, type _StringComponentTypeOptionsOneOf as fq, type _Number as fr, type _NumberComponentTypeOptionsOneOf as fs, type _Boolean as ft, type _BooleanComponentTypeOptionsOneOf as fu, type _Array as fv, type _ArrayComponentTypeOptionsOneOf as fw, type _Object as fx, type WixFile as fy, type WixFileComponentTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type GetDeletedSubmissionRequest as g$, type SubmitSettings as g0, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g1, type ThankYouMessageOptions as g2, type RedirectOptions as g3, type FieldGroup as g4, type Rule as g5, type RequiredOptions as g6, type HiddenOptions as g7, type AllowedValuesOptions as g8, type FieldOverride as g9, type BulkCreateSubmissionBySubmitterRequest as gA, type BulkCreateSubmissionBySubmitterData as gB, type BulkCreateSubmissionBySubmitterResponse as gC, type BulkSubmissionResult as gD, type ItemMetadata as gE, type ApplicationError as gF, type BulkActionMetadata as gG, type GetSubmissionRequest as gH, type GetSubmissionResponse as gI, type GetSubmissionByCheckoutIdRequest as gJ, type GetSubmissionByCheckoutIdResponse as gK, type UpdateSubmissionRequest as gL, type UpdateSubmissionResponse as gM, type ConfirmSubmissionRequest as gN, type DeleteSubmissionRequest as gO, type DeleteSubmissionResponse as gP, type BulkDeleteSubmissionRequest as gQ, type BulkDeleteSubmissionResult as gR, type RestoreSubmissionFromTrashBinRequest as gS, type RemoveSubmissionFromTrashBinRequest as gT, type RemoveSubmissionFromTrashBinResponse as gU, type BulkRemoveSubmissionFromTrashBinRequest as gV, type BulkRemoveSubmissionFromTrashBinResult as gW, type ListDeletedSubmissionsRequest as gX, type CursorPaging as gY, type CursorPagingMetadata as gZ, type Cursors as g_, type FieldOverridePropertyTypeOptionsOneOf as ga, type ConditionNode as gb, type ConditionNodeNodeOneOf as gc, type AndCondition as gd, type OrCondition as ge, type Condition as gf, type RuleFormOverride as gg, type RuleFormOverrideEntityTypeOptionsOneOf as gh, type Tags as gi, type TagsTagList as gj, type QuizSettings as gk, type QuizSettingsResultsDisplayOptionsOneOf as gl, type PassFailMessages as gm, type CreateCheckoutFromSubmissionResponse as gn, type Checkout as go, type IsFormSubmittableRequest as gp, type IsFormSubmittableResponse as gq, type Empty as gr, type UpsertContactFromSubmissionRequest as gs, type SubmitContactResponse as gt, type CreateSubmissionRequest as gu, type CreateSubmissionResponse as gv, type SubmissionValidationErrorsDetails as gw, type ValidationError as gx, type CreateSubmissionBySubmitterRequest as gy, type CreateSubmissionBySubmitterResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type StringComponentTypeWithLiterals as h$, type QuerySubmissionRequest as h0, type CursorQueryPagingMethodOneOf as h1, type Sorting as h2, type SearchSubmissionsByNamespaceRequest as h3, type CursorSearch as h4, type CursorSearchPagingMethodOneOf as h5, type SearchDetails as h6, type SearchSubmissionsByNamespaceForExportRequest as h7, type SearchSubmissionsByNamespaceForExportResponse as h8, type QuerySubmissionsByNamespaceRequest as h9, type BulkUpdateFormSubmissionTagsByFilterResponse as hA, type ValidateFormSubmissionRequest as hB, type FieldViolation as hC, type FieldViolationErrorDataOneOf as hD, type SubmissionValidationErrors as hE, type SubmissionValidationError as hF, type SubmissionValidationErrorErrorMessageOneOf as hG, type BaseEventMetadata as hH, type EventMetadata as hI, type AccountInfoMetadata as hJ, type FormSubmissionSearchSpec as hK, type SubmissionsQueryResult as hL, type FormSubmissionQuerySpec as hM, type BulkUpdateFormSubmissionTagsOptions as hN, type BulkUpdateFormSubmissionTagsByFilterOptions as hO, QueryBuilder as hP, Filter as hQ, Sort as hR, type SubmissionStatusWithLiterals as hS, type OptInLevelWithLiterals as hT, type WebhookIdentityTypeWithLiterals as hU, type StringTypeFormatEnumFormatWithLiterals as hV, type ValidationFormatWithLiterals as hW, type ProductTypeWithLiterals as hX, type PriceTypeWithLiterals as hY, type FieldTypeWithLiterals as hZ, type FormatEnumFormatWithLiterals as h_, type QuerySubmissionsByNamespaceResponse as ha, type QuerySubmissionsByNamespaceForExportRequest as hb, type QuerySubmissionsByNamespaceForExportResponse as hc, type CountSubmissionsByFilterRequest as hd, type FormSubmissionsCount as he, type CountSubmissionsRequest as hf, type CountDeletedSubmissionsRequest as hg, type FormDeletedSubmissionsCount as hh, type GetMediaUploadURLRequest as hi, type BulkMarkSubmissionsAsSeenRequest as hj, type GetSubmissionDownloadUrlRequest as hk, type SubmissionDocument as hl, type SubmissionDocumentDocumentOneOf as hm, type DocumentReady as hn, type DownloadSubmissionRequest as ho, type HeadersEntry as hp, type GetFormattedSubmissionRequest as hq, type FormattedSubmission as hr, type ListFormattedSubmissionsRequest as hs, type ListFormattedSubmissionsResponse as ht, type FormattedFormSubmission as hu, type UpdateExtendedFieldsRequest as hv, type BulkUpdateFormSubmissionTagsRequest as hw, type BulkUpdateFormSubmissionTagsResponse as hx, type BulkUpdateFormSubmissionTagsResult as hy, type BulkUpdateFormSubmissionTagsByFilterRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type EmailInfoTagWithLiterals as i$, type NodeTypeWithLiterals as i0, type WidthTypeWithLiterals as i1, type PluginContainerDataAlignmentWithLiterals as i2, type ButtonDataTypeWithLiterals as i3, type LinkTargetWithLiterals as i4, type TextAlignmentWithLiterals as i5, type LineStyleWithLiterals as i6, type WidthWithLiterals as i7, type DividerDataAlignmentWithLiterals as i8, type ViewModeWithLiterals as i9, type DirectionWithLiterals as iA, type VerticalAlignmentWithLiterals as iB, type NullValueWithLiterals as iC, type ScalingWithLiterals as iD, type LayoutDataImagePositionWithLiterals as iE, type VerticalAlignmentAlignmentWithLiterals as iF, type ResponsivenessBehaviourWithLiterals as iG, type DesignTargetWithLiterals as iH, type ImagePositionWithLiterals as iI, type AlignmentWithLiterals as iJ, type ImageFitWithLiterals as iK, type NumberOfColumnsWithLiterals as iL, type FirstDayOfWeekWithLiterals as iM, type NumberComponentTypeWithLiterals as iN, type BooleanComponentTypeWithLiterals as iO, type ItemTypeWithLiterals as iP, type PropertiesTypeEnumWithLiterals as iQ, type ArrayComponentTypeWithLiterals as iR, type WixFileComponentTypeWithLiterals as iS, type UploadFileFormatWithLiterals as iT, type PaymentComponentTypeWithLiterals as iU, type ComponentTypeWithLiterals as iV, type TypeWithLiterals as iW, type ObjectArrayComponentTypeWithLiterals as iX, type SchedulingComponentTypeWithLiterals as iY, type FormatWithLiterals as iZ, type InputTypeWithLiterals as i_, type LayoutTypeWithLiterals as ia, type OrientationWithLiterals as ib, type CropWithLiterals as ic, type ThumbnailsAlignmentWithLiterals as id, type GIFTypeWithLiterals as ie, type SourceWithLiterals as ig, type StylesPositionWithLiterals as ih, type MapTypeWithLiterals as ii, type ViewRoleWithLiterals as ij, type VoteRoleWithLiterals as ik, type PollLayoutTypeWithLiterals as il, type PollLayoutDirectionWithLiterals as im, type BackgroundTypeWithLiterals as io, type DecorationTypeWithLiterals as ip, type FontTypeWithLiterals as iq, type PositionWithLiterals as ir, type AspectRatioWithLiterals as is, type ResizingWithLiterals as it, type PlacementWithLiterals as iu, type CardStylesTypeWithLiterals as iv, type CardStylesAlignmentWithLiterals as iw, type LayoutWithLiterals as ix, type AppTypeWithLiterals as iy, type InitialExpandedItemsWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type PhoneInfoTagWithLiterals as j0, type TagWithLiterals as j1, type ConfirmationLevelWithLiterals as j2, type ContactFieldWithLiterals as j3, type DisplayFieldTypeWithLiterals as j4, type OverrideEntityTypeWithLiterals as j5, type KindWithLiterals as j6, type FormFieldContactInfoEmailInfoTagWithLiterals as j7, type FormFieldContactInfoPhoneInfoTagWithLiterals as j8, type AddressInfoTagWithLiterals as j9, upsertContactFromSubmission as jA, createSubmission as jB, getSubmission as jC, updateSubmission as jD, confirmSubmission as jE, deleteSubmission as jF, bulkDeleteSubmission as jG, restoreSubmissionFromTrashBin as jH, removeSubmissionFromTrashBin as jI, bulkRemoveSubmissionFromTrashBin as jJ, listDeletedSubmissions as jK, getDeletedSubmission as jL, querySubmission as jM, querySubmissionsByNamespace as jN, countSubmissionsByFilter as jO, countSubmissions as jP, countDeletedSubmissions as jQ, getMediaUploadUrl as jR, bulkMarkSubmissionsAsSeen as jS, getSubmissionDownloadUrl as jT, downloadSubmission as jU, getFormattedSubmission as jV, updateExtendedFields as jW, validateFormSubmission as jX, type SubscriptionInfoOptInLevelWithLiterals as ja, type FormFieldContactInfoContactFieldWithLiterals as jb, type SpamFilterProtectionLevelWithLiterals as jc, type RequiredIndicatorWithLiterals as jd, type RequiredIndicatorPlacementWithLiterals as je, type TargetWithLiterals as jf, type SubmitSuccessActionWithLiterals as jg, type ChangeablePropertyWithLiterals as jh, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as ji, type OperatorWithLiterals as jj, type ResultsDisplayWithLiterals as jk, type IdentityTypeWithLiterals as jl, type ErrorTypeWithLiterals as jm, type SortOrderWithLiterals as jn, type ModeWithLiterals as jo, type StatusWithLiterals as jp, type SubmissionErrorTypeWithLiterals as jq, type CommonSearchWithEntityContext as jr, type CommonQueryWithEntityContext as js, onSubmissionCreated as jt, onSubmissionDeleted as ju, onSubmissionRemovedSubmissionFromTrash as jv, onSubmissionStatusUpdated as jw, onSubmissionContactMapped as jx, onSubmissionContactMappingSkipped as jy, onSubmissionUpdated 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, hD as AccountInfoMetadata, bK as ActionEvent, fB as Address, fC as AddressComponentTypeOptionsOneOf, fj as AddressInfo, bc as AddressInfoTag, j0 as AddressInfoTagWithLiterals, eY as AddressLine2, aM as Alignment, iA as AlignmentWithLiterals, g5 as AllowedValuesOptions, dD as AnchorData, ga as AndCondition, dK as AppEmbedData, dL as AppEmbedDataAppDataOneOf, aB as AppType, ip as AppTypeWithLiterals, gz as ApplicationError, f8 as Appointment, f9 as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iI as ArrayComponentTypeWithLiterals, c9 as ArrayErrorMessages, eG as ArrayItems, eH as ArrayItemsItemTypeOptionsOneOf, eC as ArrayType, c7 as ArrayTypeArrayItems, c8 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, ii as AspectRatioWithLiterals, e3 as AudioData, dt as Background, du as BackgroundBackgroundOneOf, e9 as BackgroundImage, ar as BackgroundType, id as BackgroundTypeWithLiterals, hB as BaseEventMetadata, e6 as BlockquoteData, dM as BookingData, aR as BooleanComponentType, iF as BooleanComponentTypeWithLiterals, c1 as BooleanErrorMessages, ez as BooleanType, cI as Border, e0 as BorderColors, e1 as BorderWidths, f2 as BreakPoint, gA as BulkActionMetadata, gv as BulkCreateSubmissionBySubmitterData, gu as BulkCreateSubmissionBySubmitterRequest, gw as BulkCreateSubmissionBySubmitterResponse, gK as BulkDeleteSubmissionRequest, gL as BulkDeleteSubmissionResult, hd as BulkMarkSubmissionsAsSeenRequest, gP as BulkRemoveSubmissionFromTrashBinRequest, gQ as BulkRemoveSubmissionFromTrashBinResult, gx as BulkSubmissionResult, hI as BulkUpdateFormSubmissionTagsByFilterOptions, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hu as BulkUpdateFormSubmissionTagsByFilterResponse, hH as BulkUpdateFormSubmissionTagsOptions, hq as BulkUpdateFormSubmissionTagsRequest, hr as BulkUpdateFormSubmissionTagsResponse, hs as BulkUpdateFormSubmissionTagsResult, e5 as BulletedListData, cH as ButtonData, a8 as ButtonDataType, hW as ButtonDataTypeWithLiterals, dO as ButtonStyles, e7 as CaptionData, dR as CardStyles, az as CardStylesAlignment, im as CardStylesAlignmentWithLiterals, ay as CardStylesType, il as CardStylesTypeWithLiterals, d$ as CellStyle, bk as ChangeableProperty, j8 as ChangeablePropertyWithLiterals, eA as Checkbox, eJ as CheckboxGroup, gi as Checkout, cT as CodeBlockData, dX as CollapsibleListData, dE as ColorData, cJ as Colors, ji as CommonQueryWithEntityContext, jh as CommonSearchWithEntityContext, aY as ComponentType, iM as ComponentTypeWithLiterals, eL as ComponentsTags, gc as Condition, g8 as ConditionNode, g9 as ConditionNodeNodeOneOf, gH as ConfirmSubmissionRequest, b5 as ConfirmationLevel, iV as ConfirmationLevelWithLiterals, b6 as ContactField, iW as ContactFieldWithLiterals, eB as CorrectAnswersList, ha as CountDeletedSubmissionsRequest, h7 as CountSubmissionsByFilterRequest, h9 as CountSubmissionsRequest, bP as CreateCheckoutFromSubmissionRequest, bQ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gh as CreateCheckoutFromSubmissionResponse, gs as CreateSubmissionBySubmitterRequest, gt as CreateSubmissionBySubmitterResponse, go as CreateSubmissionRequest, gp as CreateSubmissionResponse, ah as Crop, i3 as CropWithLiterals, gS as CursorPaging, gT as CursorPagingMetadata, gX as CursorQueryPagingMethodOneOf, g_ as CursorSearch, g$ as CursorSearchPagingMethodOneOf, gU as Cursors, fk 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, ie as DecorationTypeWithLiterals, eZ as DefaultCountryConfig, e_ as DefaultCountryConfigOptionsOneOf, gI as DeleteSubmissionRequest, gJ as DeleteSubmissionResponse, dz as Design, aK as DesignTarget, iy as DesignTargetWithLiterals, dZ as Dimensions, aD as Direction, ir as DirectionWithLiterals, fF as DisplayField, fG as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, iX as DisplayFieldTypeWithLiterals, cV as DividerData, ad as DividerDataAlignment, h$ as DividerDataAlignmentWithLiterals, hh as DocumentReady, ec as DocumentStyle, bE as DomainEvent, bF as DomainEventBodyOneOf, eT as DonationInput, eU as DonationInputOption, hi as DownloadSubmissionRequest, ek as Dropdown, el as DropdownOption, cf as DynamicPriceOptions, fh as EmailInfo, b2 as EmailInfoTag, iS as EmailInfoTagWithLiterals, dV as EmbedData, gl as Empty, bG as EntityCreatedEvent, bJ as EntityDeletedEvent, bI as EntityUpdatedEvent, bo as ErrorType, jc as ErrorTypeWithLiterals, dN as EventData, hC as EventMetadata, bv as ExtendedFields, cr as Field, cs as FieldFieldTypeOptionsOneOf, g1 as FieldGroup, g6 as FieldOverride, g7 as FieldOverridePropertyTypeOptionsOneOf, cj as FieldOverrides, a2 as FieldType, hQ as FieldTypeWithLiterals, hw as FieldViolation, hx as FieldViolationErrorDataOneOf, ck as FieldsOverrides, e$ as FieldsSettings, cW as FileData, cX as FileSource, cY as FileSourceDataOneOf, eO as FileType, eP as FileUpload, aP as FirstDayOfWeek, iD as FirstDayOfWeekWithLiterals, eW as FixedPayment, ce as FixedPriceOptions, dJ as FontFamilyData, dH as FontSizeData, at as FontType, ig as FontTypeWithLiterals, bR as Form, hb as FormDeletedSubmissionsCount, bS as FormField, c2 as FormFieldArrayType, c0 as FormFieldBooleanType, ff as FormFieldContactInfo, fg as FormFieldContactInfoAdditionalInfoOneOf, fT as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, j2 as FormFieldContactInfoContactFieldWithLiterals, fU as FormFieldContactInfoCustomFieldInfo, fR as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, i_ as FormFieldContactInfoEmailInfoTagWithLiterals, fS as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, i$ as FormFieldContactInfoPhoneInfoTagWithLiterals, fV as FormFieldContactInfoSubscriptionInfo, bZ as FormFieldNumberType, c3 as FormFieldObjectType, bT as FormFieldStringType, bU as FormFieldStringTypeFormatOptionsOneOf, f1 as FormLayout, fL as FormOverride, fM as FormProperties, fK as FormRule, hG as FormSubmissionQuerySpec, hE as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h8 as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, hR as FormatEnumFormatWithLiterals, iQ as FormatWithLiterals, ho as FormattedFormSubmission, hl as FormattedSubmission, d9 as GIF, d8 as GIFData, aj as GIFType, i5 as GIFTypeWithLiterals, c_ as GalleryData, d4 as GalleryOptions, d5 as GalleryOptionsLayout, gV as GetDeletedSubmissionRequest, hk as GetFormattedSubmissionRequest, hc as GetMediaUploadURLRequest, gD as GetSubmissionByCheckoutIdRequest, gE as GetSubmissionByCheckoutIdResponse, he as GetSubmissionDownloadUrlRequest, gB as GetSubmissionRequest, gC as GetSubmissionResponse, ds as Gradient, f5 as Group, db as HTMLData, dc as HTMLDataDataOneOf, hj as HeadersEntry, da as HeadingData, cO as Height, g4 as HiddenOptions, bM as IdentificationData, bN as IdentificationDataIdOneOf, bn as IdentityType, jb as IdentityTypeWithLiterals, d0 as Image, dd as ImageData, df as ImageDataStyles, aN as ImageFit, iB as ImageFitWithLiterals, aL as ImagePosition, iz as ImagePositionWithLiterals, dP as ImageStyles, fc as InPersonOptions, aC as InitialExpandedItems, iq as InitialExpandedItemsWithLiterals, ct as InputField, cu as InputFieldInputTypeOptionsOneOf, b1 as InputType, iR as InputTypeWithLiterals, b$ as IntegerType, gj as IsFormSubmittableRequest, gk as IsFormSubmittableResponse, d2 as Item, d3 as ItemDataOneOf, f3 as ItemLayout, f4 as ItemLayoutItemOneOf, gy as ItemMetadata, d6 as ItemStyle, aS as ItemType, iG as ItemTypeWithLiterals, b9 as Kind, iZ as KindWithLiterals, aA as Layout, ea as LayoutCellData, e8 as LayoutData, aH as LayoutDataImagePosition, iv as LayoutDataImagePositionWithLiterals, af as LayoutType, i1 as LayoutTypeWithLiterals, io as LayoutWithLiterals, fX as LimitationRule, ab as LineStyle, hZ as LineStyleWithLiterals, cQ as Link, dF as LinkData, cR as LinkDataOneOf, dg as LinkPreviewData, dh as LinkPreviewDataStyles, a9 as LinkTarget, hX as LinkTargetWithLiterals, gR as ListDeletedSubmissionsRequest, hm as ListFormattedSubmissionsRequest, hn as ListFormattedSubmissionsResponse, e2 as ListValue, fa as Location, fb as LocationLocationInfoOneOf, di as MapData, dj as MapSettings, am as MapType, i8 as MapTypeWithLiterals, f6 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, je as ModeWithLiterals, eX as MultilineAddress, ci as MultilineAddressValidation, fW as NestedForm, cm as NestedFormFieldOverrides, cq as NestedFormOverrides, cE as Node, cF as NodeDataOneOf, cG as NodeStyle, a5 as NodeType, hT as NodeTypeWithLiterals, aF as NullValue, it as NullValueWithLiterals, aQ as NumberComponentType, iE as NumberComponentTypeWithLiterals, eu as NumberCorrectAnswersList, b_ as NumberErrorMessages, ex as NumberInput, aO as NumberOfColumns, iC as NumberOfColumnsWithLiterals, ew as NumberQuizFieldSettings, ev as NumberType, fD as ObjectArray, a_ as ObjectArrayComponentType, fE as ObjectArrayComponentTypeOptionsOneOf, iO as ObjectArrayComponentTypeWithLiterals, cl as ObjectArrayType, c6 as ObjectErrorMessages, eD as ObjectType, c4 as ObjectTypePropertiesType, c5 as ObjectTypePropertiesTypePropertiesTypeOneOf, dW as Oembed, bm as Operator, ja as OperatorWithLiterals, Y as OptInLevel, hK as OptInLevelWithLiterals, eK as Option, dw as OptionDesign, dr as OptionLayout, gb as OrCondition, bw as OrderDetails, e4 as OrderedListData, ag as Orientation, i2 as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, j9 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iY as OverrideEntityTypeWithLiterals, cZ as PDFSettings, fI as PageNavigationOptions, dk as ParagraphData, et as Password, fx as Payment, aX as PaymentComponentType, fy as PaymentComponentTypeOptionsOneOf, iL as PaymentComponentTypeWithLiterals, eV as PaymentInput, cc as PaymentType, dm as Permissions, cz as PhoneConstraints, fi as PhoneInfo, b3 as PhoneInfoTag, iT as PhoneInfoTagWithLiterals, en as PhoneInput, fe as PhoneOptions, ax as Placement, ik as PlacementWithLiterals, dU as PlaybackOptions, cK as PluginContainerData, a7 as PluginContainerDataAlignment, hV 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, ic as PollLayoutDirectionWithLiterals, ap as PollLayoutType, ib as PollLayoutTypeWithLiterals, dn as PollOption, au as Position, ih as PositionWithLiterals, fN as PostSubmissionTriggers, ca as PredefinedValidation, cb as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hP as PriceTypeWithLiterals, dS as PricingData, cg as Product, eR as ProductCheckboxGroup, eS as ProductCheckboxGroupOption, ch as ProductPriceOptionsOneOf, a0 as ProductType, hO as ProductTypeWithLiterals, eE as PropertiesType, aT as PropertiesTypeEnum, iH as PropertiesTypeEnumWithLiterals, eF as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, cd as QuantityLimit, gW as QuerySubmissionRequest, h5 as QuerySubmissionsByNamespaceForExportRequest, h6 as QuerySubmissionsByNamespaceForExportResponse, h3 as QuerySubmissionsByNamespaceRequest, h4 as QuerySubmissionsByNamespaceResponse, eI as QuizFieldSettings, eh as RadioGroup, ei as RadioGroupOption, ey as RatingInput, g0 as RedirectOptions, cS as Rel, gN as RemoveSubmissionFromTrashBinRequest, gO as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, f0 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, j5 as RequiredIndicatorPlacementWithLiterals, fY as RequiredIndicatorProperties, j4 as RequiredIndicatorWithLiterals, g3 as RequiredOptions, aw as Resizing, ij as ResizingWithLiterals, aJ as ResponsivenessBehaviour, ix as ResponsivenessBehaviourWithLiterals, bH as RestoreInfo, gM as RestoreSubmissionFromTrashBinRequest, dQ as RibbonStyles, cD as RichContent, fH as RichContentOptions, g2 as Rule, gd as RuleFormOverride, ge as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iu as ScalingWithLiterals, fz as Scheduling, a$ as SchedulingComponentType, fA as SchedulingComponentTypeOptionsOneOf, iP as SchedulingComponentTypeWithLiterals, h0 as SearchDetails, h1 as SearchSubmissionsByNamespaceForExportRequest, h2 as SearchSubmissionsByNamespaceForExportResponse, gZ as SearchSubmissionsByNamespaceRequest, f7 as Section, es as ServiceOption, eN as ServicesCheckboxGroup, er as ServicesDropdown, dp as Settings, eQ as Signature, bp as SortOrder, jd as SortOrderWithLiterals, gY as Sorting, ak as Source, i6 as SourceWithLiterals, bf as SpamFilterProtectionLevel, j3 as SpamFilterProtectionLevelWithLiterals, cN as Spoiler, dI as SpoilerData, br as Status, jf as StatusWithLiterals, fJ as Step, a4 as StringComponentType, hS as StringComponentTypeWithLiterals, cv as StringCorrectAnswersList, bV as StringErrorMessages, cB as StringQuizFieldSettings, cw as StringType, bW as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hM as StringTypeFormatEnumFormatWithLiterals, cx as StringTypeFormatOptionsOneOf, bX as StringTypePhoneConstraints, bY as StringTypeValidationMessages, cP as Styles, de as StylesBorder, al as StylesPosition, i7 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hf as SubmissionDocument, hg as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jg as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hJ as SubmissionStatusWithLiterals, hz as SubmissionValidationError, hA as SubmissionValidationErrorErrorMessageOneOf, hy as SubmissionValidationErrors, gq as SubmissionValidationErrorsDetails, hF as SubmissionsQueryResult, gn as SubmitContactResponse, fZ as SubmitSettings, f_ as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, j7 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, fl as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, j1 as SubscriptionInfoOptInLevelWithLiterals, d_ as TableCellData, dY as TableData, b4 as Tag, by as TagList, iU as TagWithLiterals, gf as Tags, eM as TagsOption, gg as TagsTagList, bi as Target, j6 as TargetWithLiterals, aa as TextAlignment, hY as TextAlignmentWithLiterals, dA as TextData, cC as TextInput, ed as TextNodeStyle, cU as TextStyle, f$ as ThankYouMessageOptions, d7 as Thumbnails, ai as ThumbnailsAlignment, i4 as ThumbnailsAlignmentWithLiterals, ep as TimeInput, aZ as Type, iN as TypeWithLiterals, hp as UpdateExtendedFieldsRequest, gF as UpdateSubmissionRequest, gG as UpdateSubmissionResponse, aW as UploadFileFormat, iK as UploadFileFormatWithLiterals, fO as UpsertContact, gm as UpsertContactFromSubmissionRequest, fP as V4FormFieldContactInfo, fQ as V4FormFieldContactInfoAdditionalInfoOneOf, hv as ValidateFormSubmissionRequest, cn as Validation, gr as ValidationError, $ as ValidationFormat, hN as ValidationFormatWithLiterals, cA as ValidationMessages, co as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iw as VerticalAlignmentAlignmentWithLiterals, is as VerticalAlignmentWithLiterals, d1 as Video, fd as VideoConferenceOptions, dT as VideoData, ae as ViewMode, i0 as ViewModeWithLiterals, an as ViewRole, i9 as ViewRoleWithLiterals, ao as VoteRole, ia as VoteRoleWithLiterals, Z as WebhookIdentityType, hL as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, hU as WidthTypeWithLiterals, h_ as WidthWithLiterals, fv as WixFile, aV as WixFileComponentType, fw as WixFileComponentTypeOptionsOneOf, iJ as WixFileComponentTypeWithLiterals, fs as _Array, ft as _ArrayComponentTypeOptionsOneOf, fq as _Boolean, fr as _BooleanComponentTypeOptionsOneOf, fo as _Number, fp as _NumberComponentTypeOptionsOneOf, fu as _Object, fm as _String, fn as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-pH6hm_fT.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-C1FHHsMA.mjs';
|
|
3
|
+
export { bP as AccountInfo, hJ as AccountInfoMetadata, bL as ActionEvent, fE as Address, fF as AddressComponentTypeOptionsOneOf, fm as AddressInfo, bc as AddressInfoTag, j9 as AddressInfoTagWithLiterals, e$ as AddressLine2, aM as Alignment, iJ as AlignmentWithLiterals, g8 as AllowedValuesOptions, dE as AnchorData, gd as AndCondition, dL as AppEmbedData, dM as AppEmbedDataAppDataOneOf, aB as AppType, iy as AppTypeWithLiterals, gF as ApplicationError, fb as Appointment, fc as AppointmentFormatInfoOneOf, aU as ArrayComponentType, iR as ArrayComponentTypeWithLiterals, ca as ArrayErrorMessages, eJ as ArrayItems, eK as ArrayItemsItemTypeOptionsOneOf, eF as ArrayType, c8 as ArrayTypeArrayItems, c9 as ArrayTypeArrayItemsItemsOneOf, av as AspectRatio, is as AspectRatioWithLiterals, e4 as AudioData, du as Background, dv as BackgroundBackgroundOneOf, ea as BackgroundImage, ar as BackgroundType, io as BackgroundTypeWithLiterals, hH as BaseEventMetadata, e7 as BlockquoteData, dN as BookingData, aR as BooleanComponentType, iO as BooleanComponentTypeWithLiterals, c2 as BooleanErrorMessages, eC as BooleanType, cJ as Border, e1 as BorderColors, e2 as BorderWidths, f5 as BreakPoint, gG as BulkActionMetadata, gB as BulkCreateSubmissionBySubmitterData, gA as BulkCreateSubmissionBySubmitterRequest, gC as BulkCreateSubmissionBySubmitterResponse, gQ as BulkDeleteSubmissionRequest, gR as BulkDeleteSubmissionResult, hj as BulkMarkSubmissionsAsSeenRequest, gV as BulkRemoveSubmissionFromTrashBinRequest, gW as BulkRemoveSubmissionFromTrashBinResult, gD as BulkSubmissionResult, hO as BulkUpdateFormSubmissionTagsByFilterOptions, hz as BulkUpdateFormSubmissionTagsByFilterRequest, hA as BulkUpdateFormSubmissionTagsByFilterResponse, hN as BulkUpdateFormSubmissionTagsOptions, hw as BulkUpdateFormSubmissionTagsRequest, hx as BulkUpdateFormSubmissionTagsResponse, hy as BulkUpdateFormSubmissionTagsResult, e6 as BulletedListData, cI as ButtonData, a8 as ButtonDataType, i3 as ButtonDataTypeWithLiterals, dP as ButtonStyles, e8 as CaptionData, dS as CardStyles, az as CardStylesAlignment, iw as CardStylesAlignmentWithLiterals, ay as CardStylesType, iv as CardStylesTypeWithLiterals, e0 as CellStyle, bk as ChangeableProperty, jh as ChangeablePropertyWithLiterals, eD as Checkbox, eM as CheckboxGroup, go as Checkout, cU as CodeBlockData, dY as CollapsibleListData, dF as ColorData, cK as Colors, js as CommonQueryWithEntityContext, jr as CommonSearchWithEntityContext, aY as ComponentType, iV as ComponentTypeWithLiterals, eO as ComponentsTags, gf as Condition, gb as ConditionNode, gc as ConditionNodeNodeOneOf, gN as ConfirmSubmissionRequest, b5 as ConfirmationLevel, j2 as ConfirmationLevelWithLiterals, b6 as ContactField, j3 as ContactFieldWithLiterals, eE as CorrectAnswersList, hg as CountDeletedSubmissionsRequest, hd as CountSubmissionsByFilterRequest, hf as CountSubmissionsRequest, bQ as CreateCheckoutFromSubmissionRequest, bR as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gn as CreateCheckoutFromSubmissionResponse, gy as CreateSubmissionBySubmitterRequest, gz as CreateSubmissionBySubmitterResponse, gu as CreateSubmissionRequest, gv as CreateSubmissionResponse, ah as Crop, ic as CropWithLiterals, gY as CursorPaging, gZ as CursorPagingMetadata, h1 as CursorQueryPagingMethodOneOf, h4 as CursorSearch, h5 as CursorSearchPagingMethodOneOf, g_ as Cursors, fn as CustomFieldInfo, em as CustomOption, cq as DataExtensionsDetails, er as DateInput, et as DatePicker, cz as DateTimeConstraints, ep as DateTimeInput, dC as Decoration, dD as DecorationDataOneOf, as as DecorationType, ip as DecorationTypeWithLiterals, f0 as DefaultCountryConfig, f1 as DefaultCountryConfigOptionsOneOf, gO as DeleteSubmissionRequest, gP as DeleteSubmissionResponse, dA as Design, aK as DesignTarget, iH as DesignTargetWithLiterals, d_ as Dimensions, aD as Direction, iA as DirectionWithLiterals, fI as DisplayField, fJ as DisplayFieldDisplayFieldTypeOptionsOneOf, b7 as DisplayFieldType, j4 as DisplayFieldTypeWithLiterals, cW as DividerData, ad as DividerDataAlignment, i8 as DividerDataAlignmentWithLiterals, hn as DocumentReady, ef as DocumentStyle, bF as DomainEvent, bG as DomainEventBodyOneOf, eW as DonationInput, eX as DonationInputOption, ho as DownloadSubmissionRequest, en as Dropdown, eo as DropdownOption, cg as DynamicPriceOptions, fk as EmailInfo, b2 as EmailInfoTag, i$ as EmailInfoTagWithLiterals, dW as EmbedData, gr as Empty, bH as EntityCreatedEvent, bK as EntityDeletedEvent, bJ as EntityUpdatedEvent, bp as ErrorType, jm as ErrorTypeWithLiterals, dO as EventData, hI as EventMetadata, bw as ExtendedFields, cs as Field, ct as FieldFieldTypeOptionsOneOf, g4 as FieldGroup, g9 as FieldOverride, ga as FieldOverridePropertyTypeOptionsOneOf, ck as FieldOverrides, a2 as FieldType, hZ as FieldTypeWithLiterals, hC as FieldViolation, hD as FieldViolationErrorDataOneOf, cl as FieldsOverrides, f2 as FieldsSettings, cX as FileData, cY as FileSource, cZ as FileSourceDataOneOf, eR as FileType, eS as FileUpload, hQ as Filter, aP as FirstDayOfWeek, iM as FirstDayOfWeekWithLiterals, eZ as FixedPayment, cf as FixedPriceOptions, dK as FontFamilyData, dI as FontSizeData, at as FontType, iq as FontTypeWithLiterals, bS as Form, hh as FormDeletedSubmissionsCount, bT as FormField, c3 as FormFieldArrayType, c1 as FormFieldBooleanType, fi as FormFieldContactInfo, fj as FormFieldContactInfoAdditionalInfoOneOf, fW as FormFieldContactInfoAddressInfo, be as FormFieldContactInfoContactField, jb as FormFieldContactInfoContactFieldWithLiterals, fX as FormFieldContactInfoCustomFieldInfo, fU as FormFieldContactInfoEmailInfo, ba as FormFieldContactInfoEmailInfoTag, j7 as FormFieldContactInfoEmailInfoTagWithLiterals, fV as FormFieldContactInfoPhoneInfo, bb as FormFieldContactInfoPhoneInfoTag, j8 as FormFieldContactInfoPhoneInfoTagWithLiterals, fY as FormFieldContactInfoSubscriptionInfo, b_ as FormFieldNumberType, c4 as FormFieldObjectType, bU as FormFieldStringType, bV as FormFieldStringTypeFormatOptionsOneOf, f4 as FormLayout, fO as FormOverride, fP as FormProperties, fN as FormRule, hM as FormSubmissionQuerySpec, hK as FormSubmissionSearchSpec, bA as FormSubmissionStatusUpdatedEvent, he as FormSubmissionsCount, b0 as Format, a3 as FormatEnumFormat, h_ as FormatEnumFormatWithLiterals, iZ as FormatWithLiterals, hu as FormattedFormSubmission, hr as FormattedSubmission, da as GIF, d9 as GIFData, aj as GIFType, ie as GIFTypeWithLiterals, c$ as GalleryData, d5 as GalleryOptions, d6 as GalleryOptionsLayout, g$ as GetDeletedSubmissionRequest, hq as GetFormattedSubmissionRequest, hi as GetMediaUploadURLRequest, gJ as GetSubmissionByCheckoutIdRequest, gK as GetSubmissionByCheckoutIdResponse, hk as GetSubmissionDownloadUrlRequest, gH as GetSubmissionRequest, gI as GetSubmissionResponse, dt as Gradient, f8 as Group, dc as HTMLData, dd as HTMLDataDataOneOf, hp as HeadersEntry, db as HeadingData, cP as Height, g7 as HiddenOptions, bN as IdentificationData, bO as IdentificationDataIdOneOf, bo as IdentityType, jl as IdentityTypeWithLiterals, d1 as Image, de as ImageData, dg as ImageDataStyles, aN as ImageFit, iK as ImageFitWithLiterals, aL as ImagePosition, iI as ImagePositionWithLiterals, dQ as ImageStyles, ff as InPersonOptions, aC as InitialExpandedItems, iz as InitialExpandedItemsWithLiterals, cu as InputField, cv as InputFieldInputTypeOptionsOneOf, b1 as InputType, i_ as InputTypeWithLiterals, c0 as IntegerType, gp as IsFormSubmittableRequest, gq as IsFormSubmittableResponse, d3 as Item, d4 as ItemDataOneOf, f6 as ItemLayout, f7 as ItemLayoutItemOneOf, gE as ItemMetadata, d7 as ItemStyle, aS as ItemType, iP as ItemTypeWithLiterals, b9 as Kind, j6 as KindWithLiterals, aA as Layout, eb as LayoutCellData, e9 as LayoutData, aH as LayoutDataImagePosition, iE as LayoutDataImagePositionWithLiterals, af as LayoutType, ia as LayoutTypeWithLiterals, ix as LayoutWithLiterals, f_ as LimitationRule, ab as LineStyle, i6 as LineStyleWithLiterals, cR as Link, dG as LinkData, cS as LinkDataOneOf, dh as LinkPreviewData, di as LinkPreviewDataStyles, a9 as LinkTarget, i4 as LinkTargetWithLiterals, gX as ListDeletedSubmissionsRequest, hs as ListFormattedSubmissionsRequest, ht as ListFormattedSubmissionsResponse, e3 as ListValue, fd as Location, fe as LocationLocationInfoOneOf, dj as MapData, dk as MapSettings, am as MapType, ii as MapTypeWithLiterals, f9 as Margin, bD as MarketingSubscriptionDetails, d0 as Media, eh as MediaItem, ei as MediaItemMediaOneOf, ej as MediaSettings, dH as MentionData, bM as MessageEnvelope, ee as Metadata, br as Mode, jo as ModeWithLiterals, e_ as MultilineAddress, cj as MultilineAddressValidation, fZ as NestedForm, cn as NestedFormFieldOverrides, cr as NestedFormOverrides, cF as Node, cG as NodeDataOneOf, cH as NodeStyle, a5 as NodeType, i0 as NodeTypeWithLiterals, aF as NullValue, iC as NullValueWithLiterals, aQ as NumberComponentType, iN as NumberComponentTypeWithLiterals, ex as NumberCorrectAnswersList, b$ as NumberErrorMessages, eA as NumberInput, aO as NumberOfColumns, iL as NumberOfColumnsWithLiterals, ez as NumberQuizFieldSettings, ey as NumberType, fG as ObjectArray, a_ as ObjectArrayComponentType, fH as ObjectArrayComponentTypeOptionsOneOf, iX as ObjectArrayComponentTypeWithLiterals, cm as ObjectArrayType, c7 as ObjectErrorMessages, eG as ObjectType, c5 as ObjectTypePropertiesType, c6 as ObjectTypePropertiesTypePropertiesTypeOneOf, dX as Oembed, bm as Operator, jj as OperatorWithLiterals, Y as OptInLevel, hT as OptInLevelWithLiterals, eN as Option, dx as OptionDesign, ds as OptionLayout, ge as OrCondition, bx as OrderDetails, e5 as OrderedListData, ag as Orientation, ib as OrientationWithLiterals, b8 as OverrideEntityType, bl as OverrideEntityTypeEnumOverrideEntityType, ji as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j5 as OverrideEntityTypeWithLiterals, c_ as PDFSettings, fL as PageNavigationOptions, dl as ParagraphData, gm as PassFailMessages, ew as Password, fA as Payment, aX as PaymentComponentType, fB as PaymentComponentTypeOptionsOneOf, iU as PaymentComponentTypeWithLiterals, eY as PaymentInput, cd as PaymentType, dn as Permissions, cA as PhoneConstraints, fl as PhoneInfo, b3 as PhoneInfoTag, j0 as PhoneInfoTagWithLiterals, eq as PhoneInput, fh as PhoneOptions, ax as Placement, iu as PlacementWithLiterals, dV as PlaybackOptions, cL as PluginContainerData, a7 as PluginContainerDataAlignment, i2 as PluginContainerDataAlignmentWithLiterals, cM as PluginContainerDataWidth, cN as PluginContainerDataWidthDataOneOf, dy as Poll, dm as PollData, dz as PollDataLayout, dw as PollDesign, dr as PollLayout, aq as PollLayoutDirection, im as PollLayoutDirectionWithLiterals, ap as PollLayoutType, il as PollLayoutTypeWithLiterals, dp as PollOption, au as Position, ir as PositionWithLiterals, fQ as PostSubmissionTriggers, cb as PredefinedValidation, cc as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, hY as PriceTypeWithLiterals, dT as PricingData, ch as Product, eU as ProductCheckboxGroup, eV as ProductCheckboxGroupOption, ci as ProductPriceOptionsOneOf, a0 as ProductType, hX as ProductTypeWithLiterals, eH as PropertiesType, aT as PropertiesTypeEnum, iQ as PropertiesTypeEnumWithLiterals, eI as PropertiesTypePropertiesTypeOptionsOneOf, by as PublicTags, ce as QuantityLimit, hP as QueryBuilder, h0 as QuerySubmissionRequest, hb as QuerySubmissionsByNamespaceForExportRequest, hc as QuerySubmissionsByNamespaceForExportResponse, h9 as QuerySubmissionsByNamespaceRequest, ha as QuerySubmissionsByNamespaceResponse, eL as QuizFieldSettings, gk as QuizSettings, gl as QuizSettingsResultsDisplayOptionsOneOf, ek as RadioGroup, el as RadioGroupOption, eB as RatingInput, g3 as RedirectOptions, cT as Rel, gT as RemoveSubmissionFromTrashBinRequest, gU as RemoveSubmissionFromTrashBinResponse, bB as RemovedSubmissionFromTrash, f3 as Repeater, bg as RequiredIndicator, bh as RequiredIndicatorPlacement, je as RequiredIndicatorPlacementWithLiterals, f$ as RequiredIndicatorProperties, jd as RequiredIndicatorWithLiterals, g6 as RequiredOptions, aw as Resizing, it as ResizingWithLiterals, aJ as ResponsivenessBehaviour, iG as ResponsivenessBehaviourWithLiterals, bI as RestoreInfo, gS as RestoreSubmissionFromTrashBinRequest, bn as ResultsDisplay, jk as ResultsDisplayWithLiterals, dR as RibbonStyles, cE as RichContent, fK as RichContentOptions, g5 as Rule, gg as RuleFormOverride, gh as RuleFormOverrideEntityTypeOptionsOneOf, aG as Scaling, iD as ScalingWithLiterals, fC as Scheduling, a$ as SchedulingComponentType, fD as SchedulingComponentTypeOptionsOneOf, iY as SchedulingComponentTypeWithLiterals, h6 as SearchDetails, h7 as SearchSubmissionsByNamespaceForExportRequest, h8 as SearchSubmissionsByNamespaceForExportResponse, h3 as SearchSubmissionsByNamespaceRequest, fa as Section, ev as ServiceOption, eQ as ServicesCheckboxGroup, eu as ServicesDropdown, dq as Settings, ec as ShapeData, ed as ShapeDataStyles, eT as Signature, hR as Sort, bq as SortOrder, jn as SortOrderWithLiterals, h2 as Sorting, ak as Source, ig as SourceWithLiterals, bf as SpamFilterProtectionLevel, jc as SpamFilterProtectionLevelWithLiterals, cO as Spoiler, dJ as SpoilerData, bs as Status, jp as StatusWithLiterals, fM as Step, a4 as StringComponentType, h$ as StringComponentTypeWithLiterals, cw as StringCorrectAnswersList, bW as StringErrorMessages, cC as StringQuizFieldSettings, cx as StringType, bX as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, hV as StringTypeFormatEnumFormatWithLiterals, cy as StringTypeFormatOptionsOneOf, bY as StringTypePhoneConstraints, bZ as StringTypeValidationMessages, cQ as Styles, df as StylesBorder, al as StylesPosition, ih as StylesPositionWithLiterals, bC as SubmissionContactMapped, bE as SubmissionContactMappingSkipped, hl as SubmissionDocument, hm as SubmissionDocumentDocumentOneOf, bt as SubmissionErrorType, jq as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hS as SubmissionStatusWithLiterals, hF as SubmissionValidationError, hG as SubmissionValidationErrorErrorMessageOneOf, hE as SubmissionValidationErrors, gw as SubmissionValidationErrorsDetails, hL as SubmissionsQueryResult, gt as SubmitContactResponse, g0 as SubmitSettings, g1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bj as SubmitSuccessAction, jg as SubmitSuccessActionWithLiterals, bu as Submitter, bv as SubmitterSubmitterOneOf, fo as SubscriptionInfo, bd as SubscriptionInfoOptInLevel, ja as SubscriptionInfoOptInLevelWithLiterals, d$ as TableCellData, dZ as TableData, b4 as Tag, bz as TagList, j1 as TagWithLiterals, gi as Tags, eP as TagsOption, gj as TagsTagList, bi as Target, jf as TargetWithLiterals, aa as TextAlignment, i5 as TextAlignmentWithLiterals, dB as TextData, cD as TextInput, eg as TextNodeStyle, cV as TextStyle, g2 as ThankYouMessageOptions, d8 as Thumbnails, ai as ThumbnailsAlignment, id as ThumbnailsAlignmentWithLiterals, es as TimeInput, aZ as Type, iW as TypeWithLiterals, hv as UpdateExtendedFieldsRequest, gL as UpdateSubmissionRequest, gM as UpdateSubmissionResponse, aW as UploadFileFormat, iT as UploadFileFormatWithLiterals, fR as UpsertContact, gs as UpsertContactFromSubmissionRequest, fS as V4FormFieldContactInfo, fT as V4FormFieldContactInfoAdditionalInfoOneOf, hB as ValidateFormSubmissionRequest, co as Validation, gx as ValidationError, $ as ValidationFormat, hW as ValidationFormatWithLiterals, cB as ValidationMessages, cp as ValidationValidationOneOf, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, iF as VerticalAlignmentAlignmentWithLiterals, iB as VerticalAlignmentWithLiterals, d2 as Video, fg as VideoConferenceOptions, dU as VideoData, ae as ViewMode, i9 as ViewModeWithLiterals, an as ViewRole, ij as ViewRoleWithLiterals, ao as VoteRole, ik as VoteRoleWithLiterals, Z as WebhookIdentityType, hU as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, i1 as WidthTypeWithLiterals, i7 as WidthWithLiterals, fy as WixFile, aV as WixFileComponentType, fz as WixFileComponentTypeOptionsOneOf, iS as WixFileComponentTypeWithLiterals, fv as _Array, fw as _ArrayComponentTypeOptionsOneOf, ft as _Boolean, fu as _BooleanComponentTypeOptionsOneOf, fr as _Number, fs as _NumberComponentTypeOptionsOneOf, fx as _Object, fp as _String, fq as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-C1FHHsMA.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -119,6 +119,12 @@ function resolveWixFormsV4FormSubmissionServiceUrl(opts) {
|
|
|
119
119
|
srcPath: "/_api/form-submission-service",
|
|
120
120
|
destPath: ""
|
|
121
121
|
}
|
|
122
|
+
],
|
|
123
|
+
"*.wixel.com": [
|
|
124
|
+
{
|
|
125
|
+
srcPath: "/_api/form-submission-service",
|
|
126
|
+
destPath: ""
|
|
127
|
+
}
|
|
122
128
|
]
|
|
123
129
|
};
|
|
124
130
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -854,6 +860,7 @@ function validateFormSubmission(payload) {
|
|
|
854
860
|
|
|
855
861
|
// src/forms-v4-submission-submissions.universal.ts
|
|
856
862
|
import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
|
|
863
|
+
import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
|
|
857
864
|
var SubmissionStatus = /* @__PURE__ */ ((SubmissionStatus2) => {
|
|
858
865
|
SubmissionStatus2["UNKNOWN_SUBMISSION_STATUS"] = "UNKNOWN_SUBMISSION_STATUS";
|
|
859
866
|
SubmissionStatus2["PENDING"] = "PENDING";
|
|
@@ -984,6 +991,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
984
991
|
NodeType2["CAPTION"] = "CAPTION";
|
|
985
992
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
986
993
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
994
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
987
995
|
return NodeType2;
|
|
988
996
|
})(NodeType || {});
|
|
989
997
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -1540,6 +1548,14 @@ var Operator = /* @__PURE__ */ ((Operator2) => {
|
|
|
1540
1548
|
Operator2["IS_DATE_NEWER_THAN_OR_EQUAL"] = "IS_DATE_NEWER_THAN_OR_EQUAL";
|
|
1541
1549
|
return Operator2;
|
|
1542
1550
|
})(Operator || {});
|
|
1551
|
+
var ResultsDisplay = /* @__PURE__ */ ((ResultsDisplay2) => {
|
|
1552
|
+
ResultsDisplay2["UNKNOWN_DISPLAY"] = "UNKNOWN_DISPLAY";
|
|
1553
|
+
ResultsDisplay2["DO_NOT_DISPLAY"] = "DO_NOT_DISPLAY";
|
|
1554
|
+
ResultsDisplay2["SCORE"] = "SCORE";
|
|
1555
|
+
ResultsDisplay2["PASSING_STATUS"] = "PASSING_STATUS";
|
|
1556
|
+
ResultsDisplay2["SCORE_AND_PASSING_STATUS"] = "SCORE_AND_PASSING_STATUS";
|
|
1557
|
+
return ResultsDisplay2;
|
|
1558
|
+
})(ResultsDisplay || {});
|
|
1543
1559
|
var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
|
|
1544
1560
|
IdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1545
1561
|
IdentityType2["CONTACT"] = "CONTACT";
|
|
@@ -2081,6 +2097,7 @@ async function typedQuerySubmissionsByNamespace(query, options) {
|
|
|
2081
2097
|
throw transformedError;
|
|
2082
2098
|
}
|
|
2083
2099
|
}
|
|
2100
|
+
var { QueryBuilder, Filter, Sort } = createQueryUtils();
|
|
2084
2101
|
async function countSubmissionsByFilter2(filter, options) {
|
|
2085
2102
|
const { httpClient, sideEffects } = arguments[2];
|
|
2086
2103
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
@@ -2846,6 +2863,7 @@ export {
|
|
|
2846
2863
|
EmailInfoTag,
|
|
2847
2864
|
ErrorType,
|
|
2848
2865
|
FieldType,
|
|
2866
|
+
Filter,
|
|
2849
2867
|
FirstDayOfWeek,
|
|
2850
2868
|
FontType,
|
|
2851
2869
|
FormFieldContactInfoContactField,
|
|
@@ -2888,12 +2906,15 @@ export {
|
|
|
2888
2906
|
PriceType,
|
|
2889
2907
|
ProductType,
|
|
2890
2908
|
PropertiesTypeEnum,
|
|
2909
|
+
QueryBuilder,
|
|
2891
2910
|
RequiredIndicator,
|
|
2892
2911
|
RequiredIndicatorPlacement,
|
|
2893
2912
|
Resizing,
|
|
2894
2913
|
ResponsivenessBehaviour,
|
|
2914
|
+
ResultsDisplay,
|
|
2895
2915
|
Scaling,
|
|
2896
2916
|
SchedulingComponentType,
|
|
2917
|
+
Sort,
|
|
2897
2918
|
SortOrder,
|
|
2898
2919
|
Source,
|
|
2899
2920
|
SpamFilterProtectionLevel,
|