@wix/auto_sdk_forms_submissions 1.0.91 → 1.0.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{forms-v4-submission-submissions.universal-pH6hm_fT.d.ts → forms-v4-submission-submissions.universal-Bxnj1K2o.d.ts} +30 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +15 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +15 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +26 -4
- package/build/cjs/meta.js +7 -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-Bxnj1K2o.d.mts} +30 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +12 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +12 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +26 -4
- package/build/es/meta.mjs +7 -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-D-Uxphls.d.ts} +30 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +15 -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 +15 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +26 -4
- package/build/internal/cjs/meta.js +7 -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-D-Uxphls.d.mts} +30 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +12 -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 +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +26 -4
- package/build/internal/es/meta.mjs +7 -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;
|
|
@@ -7524,6 +7547,9 @@ type FormSubmissionQuery = {
|
|
|
7524
7547
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
7525
7548
|
}[];
|
|
7526
7549
|
};
|
|
7550
|
+
declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7551
|
+
declare const Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7552
|
+
declare const Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7527
7553
|
/**
|
|
7528
7554
|
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
7529
7555
|
* <br>
|
|
@@ -7737,4 +7763,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7737
7763
|
fieldsToValidate?: string[];
|
|
7738
7764
|
}
|
|
7739
7765
|
|
|
7740
|
-
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypePhoneConstraints as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type AccountInfo as bS, type CreateCheckoutFromSubmissionRequest as bT, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bU, type Form as bV, type FormField as bW, type FormFieldStringType as bX, type FormFieldStringTypeFormatOptionsOneOf as bY, type StringErrorMessages as bZ, type StringTypeDateTimeConstraints as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type FileSource as c$, type StringTypeValidationMessages as c0, type FormFieldNumberType as c1, type NumberErrorMessages as c2, type IntegerType as c3, type FormFieldBooleanType as c4, type BooleanErrorMessages as c5, type FormFieldArrayType as c6, type FormFieldObjectType as c7, type ObjectTypePropertiesType as c8, type ObjectTypePropertiesTypePropertiesTypeOneOf as c9, type StringType as cA, type StringTypeFormatOptionsOneOf as cB, type DateTimeConstraints as cC, type PhoneConstraints as cD, type ValidationMessages as cE, type StringQuizFieldSettings as cF, type TextInput as cG, type RichContent as cH, type Node as cI, type NodeDataOneOf as cJ, type NodeStyle as cK, type ButtonData as cL, type Border as cM, type Colors as cN, type PluginContainerData as cO, type PluginContainerDataWidth as cP, type PluginContainerDataWidthDataOneOf as cQ, type Spoiler as cR, type Height as cS, type Styles as cT, type Link as cU, type LinkDataOneOf as cV, type Rel as cW, type CodeBlockData as cX, type TextStyle as cY, type DividerData as cZ, type FileData as c_, type ObjectErrorMessages as ca, type ArrayTypeArrayItems as cb, type ArrayTypeArrayItemsItemsOneOf as cc, type ArrayErrorMessages as cd, type PredefinedValidation as ce, type PredefinedValidationFormatOptionsOneOf as cf, type PaymentType as cg, type QuantityLimit as ch, type FixedPriceOptions as ci, type DynamicPriceOptions as cj, type Product as ck, type ProductPriceOptionsOneOf as cl, type MultilineAddressValidation as cm, type FieldOverrides as cn, type FieldsOverrides as co, type ObjectArrayType as cp, type NestedFormFieldOverrides as cq, type Validation as cr, type ValidationValidationOneOf as cs, type DataExtensionsDetails as ct, type NestedFormOverrides as cu, type Field as cv, type FieldFieldTypeOptionsOneOf as cw, type InputField as cx, type InputFieldInputTypeOptionsOneOf as cy, type StringCorrectAnswersList as cz, type UpdateSubmission as d, type CollapsibleListData as d$, type FileSourceDataOneOf as d0, type PDFSettings as d1, type GalleryData as d2, type Media as d3, type Image as d4, type Video as d5, type Item as d6, type ItemDataOneOf as d7, type GalleryOptions as d8, type GalleryOptionsLayout as d9, type OptionDesign as dA, type Poll as dB, type PollDataLayout as dC, type Design as dD, type TextData as dE, type Decoration as dF, type DecorationDataOneOf as dG, type AnchorData as dH, type ColorData as dI, type LinkData as dJ, type MentionData as dK, type FontSizeData as dL, type SpoilerData as dM, type FontFamilyData as dN, type AppEmbedData as dO, type AppEmbedDataAppDataOneOf as dP, type BookingData as dQ, type EventData as dR, type ButtonStyles as dS, type ImageStyles as dT, type RibbonStyles as dU, type CardStyles as dV, type PricingData as dW, type VideoData as dX, type PlaybackOptions as dY, type EmbedData as dZ, type Oembed as d_, type ItemStyle as da, type Thumbnails as db, type GIFData as dc, type GIF as dd, type HeadingData as de, type HTMLData as df, type HTMLDataDataOneOf as dg, type ImageData as dh, type StylesBorder as di, type ImageDataStyles as dj, type LinkPreviewData as dk, type LinkPreviewDataStyles as dl, type MapData as dm, type MapSettings as dn, type ParagraphData as dp, type PollData as dq, type Permissions as dr, type PollOption as ds, type Settings as dt, type PollLayout as du, type OptionLayout as dv, type Gradient as dw, type Background as dx, type BackgroundBackgroundOneOf as dy, type PollDesign as dz, type UpdateSubmissionValidationErrors as e, type MultilineAddress as e$, type TableData as e0, type Dimensions as e1, type TableCellData as e2, type CellStyle as e3, type BorderColors as e4, type BorderWidths as e5, type ListValue as e6, type AudioData as e7, type OrderedListData as e8, type BulletedListData as e9, type NumberQuizFieldSettings as eA, type NumberInput as eB, type RatingInput as eC, type BooleanType as eD, type Checkbox as eE, type CorrectAnswersList as eF, type ArrayType as eG, type ObjectType as eH, type PropertiesType as eI, type PropertiesTypePropertiesTypeOptionsOneOf as eJ, type ArrayItems as eK, type ArrayItemsItemTypeOptionsOneOf as eL, type QuizFieldSettings as eM, type CheckboxGroup as eN, type Option as eO, type ComponentsTags as eP, type TagsOption as eQ, type ServicesCheckboxGroup as eR, type FileType as eS, type FileUpload as eT, type Signature as eU, type ProductCheckboxGroup as eV, type ProductCheckboxGroupOption as eW, type DonationInput as eX, type DonationInputOption as eY, type PaymentInput as eZ, type FixedPayment as e_, type BlockquoteData as ea, type CaptionData as eb, type LayoutData as ec, type BackgroundImage as ed, type LayoutCellData as ee, type Metadata as ef, type DocumentStyle as eg, type TextNodeStyle as eh, type MediaItem as ei, type MediaItemMediaOneOf as ej, type MediaSettings as ek, type RadioGroup as el, type RadioGroupOption as em, type CustomOption as en, type Dropdown as eo, type DropdownOption as ep, type DateTimeInput as eq, type PhoneInput as er, type DateInput as es, type TimeInput as et, type DatePicker as eu, type ServicesDropdown as ev, type ServiceOption as ew, type Password as ex, type NumberCorrectAnswersList as ey, type NumberType as ez, type ConfirmSubmissionResponse as f, type LimitationRule as f$, type AddressLine2 as f0, type DefaultCountryConfig as f1, type DefaultCountryConfigOptionsOneOf as f2, type FieldsSettings as f3, type Repeater as f4, type FormLayout as f5, type BreakPoint as f6, type ItemLayout as f7, type ItemLayoutItemOneOf as f8, type Group as f9, type WixFileComponentTypeOptionsOneOf as fA, type Payment as fB, type PaymentComponentTypeOptionsOneOf as fC, type Scheduling as fD, type SchedulingComponentTypeOptionsOneOf as fE, type Address as fF, type AddressComponentTypeOptionsOneOf as fG, type ObjectArray as fH, type ObjectArrayComponentTypeOptionsOneOf as fI, type DisplayField as fJ, type DisplayFieldDisplayFieldTypeOptionsOneOf as fK, type RichContentOptions as fL, type PageNavigationOptions as fM, type Step as fN, type FormRule as fO, type FormOverride as fP, type FormProperties as fQ, type PostSubmissionTriggers as fR, type UpsertContact as fS, type V4FormFieldContactInfo as fT, type V4FormFieldContactInfoAdditionalInfoOneOf as fU, type FormFieldContactInfoEmailInfo as fV, type FormFieldContactInfoPhoneInfo as fW, type FormFieldContactInfoAddressInfo as fX, type FormFieldContactInfoCustomFieldInfo as fY, type FormFieldContactInfoSubscriptionInfo as fZ, type NestedForm as f_, type Margin as fa, type Section as fb, type Appointment as fc, type AppointmentFormatInfoOneOf as fd, type Location as fe, type LocationLocationInfoOneOf as ff, type InPersonOptions as fg, type VideoConferenceOptions as fh, type PhoneOptions as fi, type FormFieldContactInfo as fj, type FormFieldContactInfoAdditionalInfoOneOf as fk, type EmailInfo as fl, type PhoneInfo as fm, type AddressInfo as fn, type CustomFieldInfo as fo, type SubscriptionInfo as fp, type _String as fq, type _StringComponentTypeOptionsOneOf as fr, type _Number as fs, type _NumberComponentTypeOptionsOneOf as ft, type _Boolean as fu, type _BooleanComponentTypeOptionsOneOf as fv, type _Array as fw, type _ArrayComponentTypeOptionsOneOf as fx, type _Object as fy, type WixFile as fz, type BulkDeleteSubmissionResponse as g, type CursorQueryPagingMethodOneOf as g$, type RequiredIndicatorProperties as g0, type SubmitSettings as g1, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g2, type ThankYouMessageOptions as g3, type RedirectOptions as g4, type FieldGroup as g5, type Rule as g6, type RequiredOptions as g7, type HiddenOptions as g8, type AllowedValuesOptions as g9, type BulkCreateSubmissionBySubmitterResponse as gA, type BulkSubmissionResult as gB, type ItemMetadata as gC, type ApplicationError as gD, type BulkActionMetadata as gE, type GetSubmissionRequest as gF, type GetSubmissionResponse as gG, type GetSubmissionByCheckoutIdRequest as gH, type GetSubmissionByCheckoutIdResponse as gI, type UpdateSubmissionRequest as gJ, type UpdateSubmissionResponse as gK, type ConfirmSubmissionRequest as gL, type DeleteSubmissionRequest as gM, type DeleteSubmissionResponse as gN, type BulkDeleteSubmissionRequest as gO, type BulkDeleteSubmissionResult as gP, type RestoreSubmissionFromTrashBinRequest as gQ, type RemoveSubmissionFromTrashBinRequest as gR, type RemoveSubmissionFromTrashBinResponse as gS, type BulkRemoveSubmissionFromTrashBinRequest as gT, type BulkRemoveSubmissionFromTrashBinResult as gU, type ListDeletedSubmissionsRequest as gV, type CursorPaging as gW, type CursorPagingMetadata as gX, type Cursors as gY, type GetDeletedSubmissionRequest as gZ, type QuerySubmissionRequest as g_, type FieldOverride as ga, type FieldOverridePropertyTypeOptionsOneOf as gb, type ConditionNode as gc, type ConditionNodeNodeOneOf as gd, type AndCondition as ge, type OrCondition as gf, type Condition as gg, type RuleFormOverride as gh, type RuleFormOverrideEntityTypeOptionsOneOf as gi, type Tags as gj, type TagsTagList as gk, type CreateCheckoutFromSubmissionResponse as gl, type Checkout as gm, type IsFormSubmittableRequest as gn, type IsFormSubmittableResponse as go, type Empty as gp, type UpsertContactFromSubmissionRequest as gq, type SubmitContactResponse as gr, type CreateSubmissionRequest as gs, type CreateSubmissionResponse as gt, type SubmissionValidationErrorsDetails as gu, type ValidationError as gv, type CreateSubmissionBySubmitterRequest as gw, type CreateSubmissionBySubmitterResponse as gx, type BulkCreateSubmissionBySubmitterRequest as gy, type BulkCreateSubmissionBySubmitterData as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type DividerDataAlignmentWithLiterals as h$, type Sorting as h0, type SearchSubmissionsByNamespaceRequest as h1, type CursorSearch as h2, type CursorSearchPagingMethodOneOf as h3, type SearchDetails as h4, type SearchSubmissionsByNamespaceForExportRequest as h5, type SearchSubmissionsByNamespaceForExportResponse as h6, type QuerySubmissionsByNamespaceRequest as h7, type QuerySubmissionsByNamespaceResponse as h8, type QuerySubmissionsByNamespaceForExportRequest as h9, type SubmissionValidationErrors as hA, type SubmissionValidationError as hB, type SubmissionValidationErrorErrorMessageOneOf as hC, type BaseEventMetadata as hD, type EventMetadata as hE, type AccountInfoMetadata as hF, type FormSubmissionSearchSpec as hG, type SubmissionsQueryResult as hH, type FormSubmissionQuerySpec as hI, type 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 QuerySubmissionsByNamespaceForExportResponse as ha, type CountSubmissionsByFilterRequest as hb, type FormSubmissionsCount as hc, type CountSubmissionsRequest as hd, type CountDeletedSubmissionsRequest as he, type FormDeletedSubmissionsCount as hf, type GetMediaUploadURLRequest as hg, type BulkMarkSubmissionsAsSeenRequest as hh, type GetSubmissionDownloadUrlRequest as hi, type SubmissionDocument as hj, type SubmissionDocumentDocumentOneOf as hk, type DocumentReady as hl, type DownloadSubmissionRequest as hm, type HeadersEntry as hn, type GetFormattedSubmissionRequest as ho, type FormattedSubmission as hp, type ListFormattedSubmissionsRequest as hq, type ListFormattedSubmissionsResponse as hr, type FormattedFormSubmission as hs, type UpdateExtendedFieldsRequest as ht, type BulkUpdateFormSubmissionTagsRequest as hu, type BulkUpdateFormSubmissionTagsResult as hv, type BulkUpdateFormSubmissionTagsByFilterRequest as hw, type ValidateFormSubmissionRequest as hx, type FieldViolation as hy, type FieldViolationErrorDataOneOf 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, bulkUpdateFormSubmissionTags as jN, bulkUpdateFormSubmissionTagsByFilter as jO, validateFormSubmission as jP, 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 };
|
|
7766
|
+
export { SubmissionStatus as $, type BulkUpdateFormSubmissionTagsOptions as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsResponse as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsByFilterOptions as H, type BulkUpdateFormSubmissionTagsByFilterResponse as I, type ValidateFormSubmissionResponse as J, type SubmissionCreatedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionDeletedEnvelope as M, type SubmissionRemovedSubmissionFromTrashEnvelope as N, type SubmissionStatusUpdatedEnvelope as O, type SubmissionContactMappedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappingSkippedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionUpdatedEnvelope as W, type FormSubmissionQuery as X, type QuerySubmissionsByNamespaceOptions as Y, typedQuerySubmissionsByNamespace as Z, type SubmissionsQueryBuilder as _, type UpsertContactFromSubmissionResponse as a, PaymentComponentType as a$, OptInLevel as a0, WebhookIdentityType as a1, StringTypeFormatEnumFormat as a2, ValidationFormat as a3, ProductType as a4, PriceType as a5, FieldType as a6, FormatEnumFormat as a7, StringComponentType as a8, NodeType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, Scaling as aK, LayoutDataImagePosition as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, ImagePosition as aP, Alignment as aQ, ImageFit as aR, NumberOfColumns as aS, FirstDayOfWeek as aT, NumberComponentType as aU, BooleanComponentType as aV, ItemType as aW, PropertiesTypeEnum as aX, ArrayComponentType as aY, WixFileComponentType as aZ, UploadFileFormat as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, BackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type StringTypePhoneConstraints as b$, ComponentType as b0, Type as b1, ObjectArrayComponentType as b2, SchedulingComponentType as b3, Format as b4, InputType as b5, EmailInfoTag as b6, PhoneInfoTag as b7, Tag as b8, ConfirmationLevel as b9, type OrderDetails as bA, type PublicTags as bB, type TagList as bC, type FormSubmissionStatusUpdatedEvent as bD, type RemovedSubmissionFromTrash as bE, type SubmissionContactMapped as bF, type MarketingSubscriptionDetails as bG, type SubmissionContactMappingSkipped as bH, type DomainEvent as bI, type DomainEventBodyOneOf as bJ, type EntityCreatedEvent as bK, type RestoreInfo as bL, type EntityUpdatedEvent as bM, type EntityDeletedEvent as bN, type ActionEvent as bO, type MessageEnvelope as bP, type IdentificationData as bQ, type IdentificationDataIdOneOf as bR, type AccountInfo as bS, type CreateCheckoutFromSubmissionRequest as bT, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bU, type Form as bV, type FormField as bW, type FormFieldStringType as bX, type FormFieldStringTypeFormatOptionsOneOf as bY, type StringErrorMessages as bZ, type StringTypeDateTimeConstraints as b_, ContactField as ba, DisplayFieldType as bb, OverrideEntityType as bc, Kind as bd, FormFieldContactInfoEmailInfoTag as be, FormFieldContactInfoPhoneInfoTag as bf, AddressInfoTag as bg, SubscriptionInfoOptInLevel as bh, FormFieldContactInfoContactField as bi, SpamFilterProtectionLevel as bj, RequiredIndicator as bk, RequiredIndicatorPlacement as bl, Target as bm, SubmitSuccessAction as bn, ChangeableProperty as bo, OverrideEntityTypeEnumOverrideEntityType as bp, Operator as bq, IdentityType as br, ErrorType as bs, SortOrder as bt, Mode as bu, Status as bv, SubmissionErrorType as bw, type Submitter as bx, type SubmitterSubmitterOneOf as by, type ExtendedFields as bz, type CreateSubmissionValidationErrors as c, type FileSource as c$, type StringTypeValidationMessages as c0, type FormFieldNumberType as c1, type NumberErrorMessages as c2, type IntegerType as c3, type FormFieldBooleanType as c4, type BooleanErrorMessages as c5, type FormFieldArrayType as c6, type FormFieldObjectType as c7, type ObjectTypePropertiesType as c8, type ObjectTypePropertiesTypePropertiesTypeOneOf as c9, type StringType as cA, type StringTypeFormatOptionsOneOf as cB, type DateTimeConstraints as cC, type PhoneConstraints as cD, type ValidationMessages as cE, type StringQuizFieldSettings as cF, type TextInput as cG, type RichContent as cH, type Node as cI, type NodeDataOneOf as cJ, type NodeStyle as cK, type ButtonData as cL, type Border as cM, type Colors as cN, type PluginContainerData as cO, type PluginContainerDataWidth as cP, type PluginContainerDataWidthDataOneOf as cQ, type Spoiler as cR, type Height as cS, type Styles as cT, type Link as cU, type LinkDataOneOf as cV, type Rel as cW, type CodeBlockData as cX, type TextStyle as cY, type DividerData as cZ, type FileData as c_, type ObjectErrorMessages as ca, type ArrayTypeArrayItems as cb, type ArrayTypeArrayItemsItemsOneOf as cc, type ArrayErrorMessages as cd, type PredefinedValidation as ce, type PredefinedValidationFormatOptionsOneOf as cf, type PaymentType as cg, type QuantityLimit as ch, type FixedPriceOptions as ci, type DynamicPriceOptions as cj, type Product as ck, type ProductPriceOptionsOneOf as cl, type MultilineAddressValidation as cm, type FieldOverrides as cn, type FieldsOverrides as co, type ObjectArrayType as cp, type NestedFormFieldOverrides as cq, type Validation as cr, type ValidationValidationOneOf as cs, type DataExtensionsDetails as ct, type NestedFormOverrides as cu, type Field as cv, type FieldFieldTypeOptionsOneOf as cw, type InputField as cx, type InputFieldInputTypeOptionsOneOf as cy, type StringCorrectAnswersList as cz, type UpdateSubmission as d, type CollapsibleListData as d$, type FileSourceDataOneOf as d0, type PDFSettings as d1, type GalleryData as d2, type Media as d3, type Image as d4, type Video as d5, type Item as d6, type ItemDataOneOf as d7, type GalleryOptions as d8, type GalleryOptionsLayout as d9, type OptionDesign as dA, type Poll as dB, type PollDataLayout as dC, type Design as dD, type TextData as dE, type Decoration as dF, type DecorationDataOneOf as dG, type AnchorData as dH, type ColorData as dI, type LinkData as dJ, type MentionData as dK, type FontSizeData as dL, type SpoilerData as dM, type FontFamilyData as dN, type AppEmbedData as dO, type AppEmbedDataAppDataOneOf as dP, type BookingData as dQ, type EventData as dR, type ButtonStyles as dS, type ImageStyles as dT, type RibbonStyles as dU, type CardStyles as dV, type PricingData as dW, type VideoData as dX, type PlaybackOptions as dY, type EmbedData as dZ, type Oembed as d_, type ItemStyle as da, type Thumbnails as db, type GIFData as dc, type GIF as dd, type HeadingData as de, type HTMLData as df, type HTMLDataDataOneOf as dg, type ImageData as dh, type StylesBorder as di, type ImageDataStyles as dj, type LinkPreviewData as dk, type LinkPreviewDataStyles as dl, type MapData as dm, type MapSettings as dn, type ParagraphData as dp, type PollData as dq, type Permissions as dr, type PollOption as ds, type Settings as dt, type PollLayout as du, type OptionLayout as dv, type Gradient as dw, type Background as dx, type BackgroundBackgroundOneOf as dy, type PollDesign as dz, type UpdateSubmissionValidationErrors as e, type PaymentInput as e$, type TableData as e0, type Dimensions as e1, type TableCellData as e2, type CellStyle as e3, type BorderColors as e4, type BorderWidths as e5, type ListValue as e6, type AudioData as e7, type OrderedListData as e8, type BulletedListData as e9, type NumberCorrectAnswersList as eA, type NumberType as eB, type NumberQuizFieldSettings as eC, type NumberInput as eD, type RatingInput as eE, type BooleanType as eF, type Checkbox as eG, type CorrectAnswersList as eH, type ArrayType as eI, type ObjectType as eJ, type PropertiesType as eK, type PropertiesTypePropertiesTypeOptionsOneOf as eL, type ArrayItems as eM, type ArrayItemsItemTypeOptionsOneOf as eN, type QuizFieldSettings as eO, type CheckboxGroup as eP, type Option as eQ, type ComponentsTags as eR, type TagsOption as eS, type ServicesCheckboxGroup as eT, type FileType as eU, type FileUpload as eV, type Signature as eW, type ProductCheckboxGroup as eX, type ProductCheckboxGroupOption as eY, type DonationInput as eZ, type DonationInputOption as e_, type BlockquoteData as ea, type CaptionData as eb, type LayoutData as ec, type BackgroundImage as ed, type LayoutCellData as ee, type ShapeData as ef, type ShapeDataStyles as eg, type Metadata as eh, type DocumentStyle as ei, type TextNodeStyle as ej, type MediaItem as ek, type MediaItemMediaOneOf as el, type MediaSettings as em, type RadioGroup as en, type RadioGroupOption as eo, type CustomOption as ep, type Dropdown as eq, type DropdownOption as er, type DateTimeInput as es, type PhoneInput as et, type DateInput as eu, type TimeInput as ev, type DatePicker as ew, type ServicesDropdown as ex, type ServiceOption as ey, type Password as ez, type ConfirmSubmissionResponse as f, type FormFieldContactInfoSubscriptionInfo as f$, type FixedPayment as f0, type MultilineAddress as f1, type AddressLine2 as f2, type DefaultCountryConfig as f3, type DefaultCountryConfigOptionsOneOf as f4, type FieldsSettings as f5, type Repeater as f6, type FormLayout as f7, type BreakPoint as f8, type ItemLayout as f9, type _Object as fA, type WixFile as fB, type WixFileComponentTypeOptionsOneOf as fC, type Payment as fD, type PaymentComponentTypeOptionsOneOf as fE, type Scheduling as fF, type SchedulingComponentTypeOptionsOneOf as fG, type Address as fH, type AddressComponentTypeOptionsOneOf as fI, type ObjectArray as fJ, type ObjectArrayComponentTypeOptionsOneOf as fK, type DisplayField as fL, type DisplayFieldDisplayFieldTypeOptionsOneOf as fM, type RichContentOptions as fN, type PageNavigationOptions as fO, type Step as fP, type FormRule as fQ, type FormOverride as fR, type FormProperties as fS, type PostSubmissionTriggers as fT, type UpsertContact as fU, type V4FormFieldContactInfo as fV, type V4FormFieldContactInfoAdditionalInfoOneOf as fW, type FormFieldContactInfoEmailInfo as fX, type FormFieldContactInfoPhoneInfo as fY, type FormFieldContactInfoAddressInfo as fZ, type FormFieldContactInfoCustomFieldInfo as f_, type ItemLayoutItemOneOf as fa, type Group as fb, type Margin as fc, type Section as fd, type Appointment as fe, type AppointmentFormatInfoOneOf as ff, type Location as fg, type LocationLocationInfoOneOf as fh, type InPersonOptions as fi, type VideoConferenceOptions as fj, type PhoneOptions as fk, type FormFieldContactInfo as fl, type FormFieldContactInfoAdditionalInfoOneOf as fm, type EmailInfo as fn, type PhoneInfo as fo, type AddressInfo as fp, type CustomFieldInfo as fq, type SubscriptionInfo as fr, type _String as fs, type _StringComponentTypeOptionsOneOf as ft, type _Number as fu, type _NumberComponentTypeOptionsOneOf as fv, type _Boolean as fw, type _BooleanComponentTypeOptionsOneOf as fx, type _Array as fy, type _ArrayComponentTypeOptionsOneOf as fz, type BulkDeleteSubmissionResponse as g, type GetDeletedSubmissionRequest as g$, type NestedForm as g0, type LimitationRule as g1, type RequiredIndicatorProperties as g2, type SubmitSettings as g3, type SubmitSettingsSubmitSuccessActionOptionsOneOf as g4, type ThankYouMessageOptions as g5, type RedirectOptions as g6, type FieldGroup as g7, type Rule as g8, type RequiredOptions 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 HiddenOptions as ga, type AllowedValuesOptions as gb, type FieldOverride as gc, type FieldOverridePropertyTypeOptionsOneOf as gd, type ConditionNode as ge, type ConditionNodeNodeOneOf as gf, type AndCondition as gg, type OrCondition as gh, type Condition as gi, type RuleFormOverride as gj, type RuleFormOverrideEntityTypeOptionsOneOf as gk, type Tags as gl, type TagsTagList 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 ButtonDataTypeWithLiterals 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 FieldViolation as hA, type FieldViolationErrorDataOneOf as hB, type SubmissionValidationErrors as hC, type SubmissionValidationError as hD, type SubmissionValidationErrorErrorMessageOneOf as hE, type BaseEventMetadata as hF, type EventMetadata as hG, type AccountInfoMetadata as hH, type FormSubmissionSearchSpec as hI, type SubmissionsQueryResult as hJ, type FormSubmissionQuerySpec as hK, QueryBuilder as hL, Filter as hM, Sort as hN, type SubmissionStatusWithLiterals as hO, type OptInLevelWithLiterals as hP, type WebhookIdentityTypeWithLiterals as hQ, type StringTypeFormatEnumFormatWithLiterals as hR, type ValidationFormatWithLiterals as hS, type ProductTypeWithLiterals as hT, type PriceTypeWithLiterals as hU, type FieldTypeWithLiterals as hV, type FormatEnumFormatWithLiterals as hW, type StringComponentTypeWithLiterals as hX, type NodeTypeWithLiterals as hY, type WidthTypeWithLiterals as hZ, type PluginContainerDataAlignmentWithLiterals as h_, type 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 BulkUpdateFormSubmissionTagsResult as hx, type BulkUpdateFormSubmissionTagsByFilterRequest as hy, type ValidateFormSubmissionRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type ContactFieldWithLiterals as i$, type LinkTargetWithLiterals as i0, type TextAlignmentWithLiterals as i1, type LineStyleWithLiterals as i2, type WidthWithLiterals as i3, type DividerDataAlignmentWithLiterals as i4, type ViewModeWithLiterals as i5, type LayoutTypeWithLiterals as i6, type OrientationWithLiterals as i7, type CropWithLiterals as i8, type ThumbnailsAlignmentWithLiterals as i9, type LayoutDataImagePositionWithLiterals as iA, type VerticalAlignmentAlignmentWithLiterals as iB, type ResponsivenessBehaviourWithLiterals as iC, type DesignTargetWithLiterals as iD, type ImagePositionWithLiterals as iE, type AlignmentWithLiterals as iF, type ImageFitWithLiterals as iG, type NumberOfColumnsWithLiterals as iH, type FirstDayOfWeekWithLiterals as iI, type NumberComponentTypeWithLiterals as iJ, type BooleanComponentTypeWithLiterals as iK, type ItemTypeWithLiterals as iL, type PropertiesTypeEnumWithLiterals as iM, type ArrayComponentTypeWithLiterals as iN, type WixFileComponentTypeWithLiterals as iO, type UploadFileFormatWithLiterals as iP, type PaymentComponentTypeWithLiterals as iQ, type ComponentTypeWithLiterals as iR, type TypeWithLiterals as iS, type ObjectArrayComponentTypeWithLiterals as iT, type SchedulingComponentTypeWithLiterals as iU, type FormatWithLiterals as iV, type InputTypeWithLiterals as iW, type EmailInfoTagWithLiterals as iX, type PhoneInfoTagWithLiterals as iY, type TagWithLiterals as iZ, type ConfirmationLevelWithLiterals as i_, type GIFTypeWithLiterals as ia, type SourceWithLiterals as ib, type StylesPositionWithLiterals as ic, type MapTypeWithLiterals as id, type ViewRoleWithLiterals as ie, type VoteRoleWithLiterals as ig, type PollLayoutTypeWithLiterals as ih, type PollLayoutDirectionWithLiterals as ii, type BackgroundTypeWithLiterals as ij, type DecorationTypeWithLiterals as ik, type FontTypeWithLiterals as il, type PositionWithLiterals as im, type AspectRatioWithLiterals as io, type ResizingWithLiterals as ip, type PlacementWithLiterals as iq, type CardStylesTypeWithLiterals as ir, type CardStylesAlignmentWithLiterals as is, type LayoutWithLiterals as it, type AppTypeWithLiterals as iu, type InitialExpandedItemsWithLiterals as iv, type DirectionWithLiterals as iw, type VerticalAlignmentWithLiterals as ix, type NullValueWithLiterals as iy, type ScalingWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type DisplayFieldTypeWithLiterals as j0, type OverrideEntityTypeWithLiterals as j1, type KindWithLiterals as j2, type FormFieldContactInfoEmailInfoTagWithLiterals as j3, type FormFieldContactInfoPhoneInfoTagWithLiterals as j4, type AddressInfoTagWithLiterals as j5, type SubscriptionInfoOptInLevelWithLiterals as j6, type FormFieldContactInfoContactFieldWithLiterals as j7, type SpamFilterProtectionLevelWithLiterals as j8, type RequiredIndicatorWithLiterals as j9, deleteSubmission as jA, bulkDeleteSubmission as jB, restoreSubmissionFromTrashBin as jC, removeSubmissionFromTrashBin as jD, bulkRemoveSubmissionFromTrashBin as jE, listDeletedSubmissions as jF, getDeletedSubmission as jG, querySubmission as jH, querySubmissionsByNamespace as jI, countSubmissionsByFilter as jJ, countSubmissions as jK, countDeletedSubmissions as jL, getMediaUploadUrl as jM, bulkMarkSubmissionsAsSeen as jN, getSubmissionDownloadUrl as jO, downloadSubmission as jP, getFormattedSubmission as jQ, updateExtendedFields as jR, bulkUpdateFormSubmissionTags as jS, bulkUpdateFormSubmissionTagsByFilter as jT, validateFormSubmission as jU, type RequiredIndicatorPlacementWithLiterals as ja, type TargetWithLiterals as jb, type SubmitSuccessActionWithLiterals as jc, type ChangeablePropertyWithLiterals as jd, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as je, type OperatorWithLiterals as jf, type IdentityTypeWithLiterals as jg, type ErrorTypeWithLiterals as jh, type SortOrderWithLiterals as ji, type ModeWithLiterals as jj, type StatusWithLiterals as jk, type SubmissionErrorTypeWithLiterals as jl, type CommonSearchWithEntityContext as jm, type CommonQueryWithEntityContext as jn, onSubmissionCreated as jo, onSubmissionDeleted as jp, onSubmissionRemovedSubmissionFromTrash as jq, onSubmissionStatusUpdated as jr, onSubmissionContactMapped as js, onSubmissionContactMappingSkipped as jt, onSubmissionUpdated as ju, upsertContactFromSubmission as jv, createSubmission as jw, getSubmission as jx, updateSubmission as jy, confirmSubmission as jz, type CursorQuery as k, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
|
@@ -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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { bS as AccountInfo, hF as AccountInfoMetadata, bO as ActionEvent, fF as Address, fG as AddressComponentTypeOptionsOneOf, fn as AddressInfo, bg as AddressInfoTag, j0 as AddressInfoTagWithLiterals, f0 as AddressLine2, aQ as Alignment, iA as AlignmentWithLiterals, g9 as AllowedValuesOptions, dH as AnchorData, ge as AndCondition, dO as AppEmbedData, dP as AppEmbedDataAppDataOneOf, aF as AppType, ip as AppTypeWithLiterals, gD as ApplicationError, fc as Appointment, fd as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iI as ArrayComponentTypeWithLiterals, cd as ArrayErrorMessages, eK as ArrayItems, eL as ArrayItemsItemTypeOptionsOneOf, eG as ArrayType, cb as ArrayTypeArrayItems, cc as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, ii as AspectRatioWithLiterals, e7 as AudioData, dx as Background, dy as BackgroundBackgroundOneOf, ed as BackgroundImage, av as BackgroundType, id as BackgroundTypeWithLiterals, hD as BaseEventMetadata, ea as BlockquoteData, dQ as BookingData, aV as BooleanComponentType, iF as BooleanComponentTypeWithLiterals, c5 as BooleanErrorMessages, eD as BooleanType, cM as Border, e4 as BorderColors, e5 as BorderWidths, f6 as BreakPoint, gE as BulkActionMetadata, gz as BulkCreateSubmissionBySubmitterData, gy as BulkCreateSubmissionBySubmitterRequest, gA as BulkCreateSubmissionBySubmitterResponse, gO as BulkDeleteSubmissionRequest, gP as BulkDeleteSubmissionResult, hh as BulkMarkSubmissionsAsSeenRequest, gT as BulkRemoveSubmissionFromTrashBinRequest, gU as BulkRemoveSubmissionFromTrashBinResult, gB as BulkSubmissionResult, hw as BulkUpdateFormSubmissionTagsByFilterRequest, hu as BulkUpdateFormSubmissionTagsRequest, hv as BulkUpdateFormSubmissionTagsResult, e9 as BulletedListData, cL as ButtonData, ac as ButtonDataType, hW as ButtonDataTypeWithLiterals, dS as ButtonStyles, eb as CaptionData, dV as CardStyles, aD as CardStylesAlignment, im as CardStylesAlignmentWithLiterals, aC as CardStylesType, il as CardStylesTypeWithLiterals, e3 as CellStyle, bo as ChangeableProperty, j8 as ChangeablePropertyWithLiterals, eE as Checkbox, eN as CheckboxGroup, gm as Checkout, cX as CodeBlockData, d$ as CollapsibleListData, dI as ColorData, cN as Colors, ji as CommonQueryWithEntityContext, jh as CommonSearchWithEntityContext, b0 as ComponentType, iM as ComponentTypeWithLiterals, eP as ComponentsTags, gg as Condition, gc as ConditionNode, gd as ConditionNodeNodeOneOf, gL as ConfirmSubmissionRequest, b9 as ConfirmationLevel, iV as ConfirmationLevelWithLiterals, ba as ContactField, iW as ContactFieldWithLiterals, eF as CorrectAnswersList, he as CountDeletedSubmissionsRequest, hb as CountSubmissionsByFilterRequest, hd as CountSubmissionsRequest, bT as CreateCheckoutFromSubmissionRequest, bU as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gl as CreateCheckoutFromSubmissionResponse, gw as CreateSubmissionBySubmitterRequest, gx as CreateSubmissionBySubmitterResponse, gs as CreateSubmissionRequest, gt as CreateSubmissionResponse, al as Crop, i3 as CropWithLiterals, gW as CursorPaging, gX as CursorPagingMetadata, g$ as CursorQueryPagingMethodOneOf, h2 as CursorSearch, h3 as CursorSearchPagingMethodOneOf, gY as Cursors, fo as CustomFieldInfo, en as CustomOption, ct as DataExtensionsDetails, es as DateInput, eu as DatePicker, cC as DateTimeConstraints, eq as DateTimeInput, dF as Decoration, dG as DecorationDataOneOf, aw as DecorationType, ie as DecorationTypeWithLiterals, f1 as DefaultCountryConfig, f2 as DefaultCountryConfigOptionsOneOf, gM as DeleteSubmissionRequest, gN as DeleteSubmissionResponse, dD as Design, aO as DesignTarget, iy as DesignTargetWithLiterals, e1 as Dimensions, aH as Direction, ir as DirectionWithLiterals, fJ as DisplayField, fK as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, iX as DisplayFieldTypeWithLiterals, cZ as DividerData, ah as DividerDataAlignment, h$ as DividerDataAlignmentWithLiterals, hl as DocumentReady, eg as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eX as DonationInput, eY as DonationInputOption, hm as DownloadSubmissionRequest, eo as Dropdown, ep as DropdownOption, cj as DynamicPriceOptions, fl as EmailInfo, b6 as EmailInfoTag, iS as EmailInfoTagWithLiterals, dZ as EmbedData, gp as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, jc as ErrorTypeWithLiterals, dR as EventData, hE as EventMetadata, bz as ExtendedFields, cv as Field, cw as FieldFieldTypeOptionsOneOf, g5 as FieldGroup, ga as FieldOverride, gb as FieldOverridePropertyTypeOptionsOneOf, cn as FieldOverrides, a6 as FieldType, hQ as FieldTypeWithLiterals, hy as FieldViolation, hz as FieldViolationErrorDataOneOf, co as FieldsOverrides, f3 as FieldsSettings, c_ as FileData, c$ as FileSource, d0 as FileSourceDataOneOf, eS as FileType, eT as FileUpload, aT as FirstDayOfWeek, iD as FirstDayOfWeekWithLiterals, e_ as FixedPayment, ci as FixedPriceOptions, dN as FontFamilyData, dL as FontSizeData, ax as FontType, ig as FontTypeWithLiterals, bV as Form, hf as FormDeletedSubmissionsCount, bW as FormField, c6 as FormFieldArrayType, c4 as FormFieldBooleanType, fj as FormFieldContactInfo, fk as FormFieldContactInfoAdditionalInfoOneOf, fX as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, j2 as FormFieldContactInfoContactFieldWithLiterals, fY as FormFieldContactInfoCustomFieldInfo, fV as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, i_ as FormFieldContactInfoEmailInfoTagWithLiterals, fW as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, i$ as FormFieldContactInfoPhoneInfoTagWithLiterals, fZ as FormFieldContactInfoSubscriptionInfo, c1 as FormFieldNumberType, c7 as FormFieldObjectType, bX as FormFieldStringType, bY as FormFieldStringTypeFormatOptionsOneOf, f5 as FormLayout, fP as FormOverride, fQ as FormProperties, fO as FormRule, hI as FormSubmissionQuerySpec, hG as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, hc as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hR as FormatEnumFormatWithLiterals, iQ as FormatWithLiterals, hs as FormattedFormSubmission, hp as FormattedSubmission, dd as GIF, dc as GIFData, an as GIFType, i5 as GIFTypeWithLiterals, d2 as GalleryData, d8 as GalleryOptions, d9 as GalleryOptionsLayout, gZ as GetDeletedSubmissionRequest, ho as GetFormattedSubmissionRequest, hg as GetMediaUploadURLRequest, gH as GetSubmissionByCheckoutIdRequest, gI as GetSubmissionByCheckoutIdResponse, hi as GetSubmissionDownloadUrlRequest, gF as GetSubmissionRequest, gG as GetSubmissionResponse, dw as Gradient, f9 as Group, df as HTMLData, dg as HTMLDataDataOneOf, hn as HeadersEntry, de as HeadingData, cS as Height, g8 as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, jb as IdentityTypeWithLiterals, d4 as Image, dh as ImageData, dj as ImageDataStyles, aR as ImageFit, iB as ImageFitWithLiterals, aP as ImagePosition, iz as ImagePositionWithLiterals, dT as ImageStyles, fg as InPersonOptions, aG as InitialExpandedItems, iq as InitialExpandedItemsWithLiterals, cx as InputField, cy as InputFieldInputTypeOptionsOneOf, b5 as InputType, iR as InputTypeWithLiterals, c3 as IntegerType, gn as IsFormSubmittableRequest, go as IsFormSubmittableResponse, d6 as Item, d7 as ItemDataOneOf, f7 as ItemLayout, f8 as ItemLayoutItemOneOf, gC as ItemMetadata, da as ItemStyle, aW as ItemType, iG as ItemTypeWithLiterals, bd as Kind, iZ as KindWithLiterals, aE as Layout, ee as LayoutCellData, ec as LayoutData, aL as LayoutDataImagePosition, iv as LayoutDataImagePositionWithLiterals, aj as LayoutType, i1 as LayoutTypeWithLiterals, io as LayoutWithLiterals, f$ as LimitationRule, af as LineStyle, hZ as LineStyleWithLiterals, cU as Link, dJ as LinkData, cV as LinkDataOneOf, dk as LinkPreviewData, dl as LinkPreviewDataStyles, ad as LinkTarget, hX as LinkTargetWithLiterals, gV as ListDeletedSubmissionsRequest, hq as ListFormattedSubmissionsRequest, hr as ListFormattedSubmissionsResponse, e6 as ListValue, fe as Location, ff as LocationLocationInfoOneOf, dm as MapData, dn as MapSettings, aq as MapType, i8 as MapTypeWithLiterals, fa as Margin, bG as MarketingSubscriptionDetails, d3 as Media, ei as MediaItem, ej as MediaItemMediaOneOf, ek as MediaSettings, dK as MentionData, bP as MessageEnvelope, ef as Metadata, bu as Mode, je as ModeWithLiterals, e$ as MultilineAddress, cm as MultilineAddressValidation, f_ as NestedForm, cq as NestedFormFieldOverrides, cu as NestedFormOverrides, cI as Node, cJ as NodeDataOneOf, cK as NodeStyle, a9 as NodeType, hT as NodeTypeWithLiterals, aJ as NullValue, it as NullValueWithLiterals, aU as NumberComponentType, iE as NumberComponentTypeWithLiterals, ey as NumberCorrectAnswersList, c2 as NumberErrorMessages, eB as NumberInput, aS as NumberOfColumns, iC as NumberOfColumnsWithLiterals, eA as NumberQuizFieldSettings, ez as NumberType, fH as ObjectArray, b2 as ObjectArrayComponentType, fI as ObjectArrayComponentTypeOptionsOneOf, iO as ObjectArrayComponentTypeWithLiterals, cp as ObjectArrayType, ca as ObjectErrorMessages, eH as ObjectType, c8 as ObjectTypePropertiesType, c9 as ObjectTypePropertiesTypePropertiesTypeOneOf, d_ as Oembed, bq as Operator, ja as OperatorWithLiterals, a0 as OptInLevel, hK as OptInLevelWithLiterals, eO as Option, dA as OptionDesign, dv as OptionLayout, gf as OrCondition, bA as OrderDetails, e8 as OrderedListData, ak as Orientation, i2 as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, j9 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iY as OverrideEntityTypeWithLiterals, d1 as PDFSettings, fM as PageNavigationOptions, dp as ParagraphData, ex as Password, fB as Payment, a$ as PaymentComponentType, fC as PaymentComponentTypeOptionsOneOf, iL as PaymentComponentTypeWithLiterals, eZ as PaymentInput, cg as PaymentType, dr as Permissions, cD as PhoneConstraints, fm as PhoneInfo, b7 as PhoneInfoTag, iT as PhoneInfoTagWithLiterals, er as PhoneInput, fi as PhoneOptions, aB as Placement, ik as PlacementWithLiterals, dY as PlaybackOptions, cO as PluginContainerData, ab as PluginContainerDataAlignment, hV as PluginContainerDataAlignmentWithLiterals, cP as PluginContainerDataWidth, cQ as PluginContainerDataWidthDataOneOf, dB as Poll, dq as PollData, dC as PollDataLayout, dz as PollDesign, du as PollLayout, au as PollLayoutDirection, ic as PollLayoutDirectionWithLiterals, at as PollLayoutType, ib as PollLayoutTypeWithLiterals, ds as PollOption, ay as Position, ih as PositionWithLiterals, fR as PostSubmissionTriggers, ce as PredefinedValidation, cf as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hP as PriceTypeWithLiterals, dW as PricingData, ck as Product, eV as ProductCheckboxGroup, eW as ProductCheckboxGroupOption, cl as ProductPriceOptionsOneOf, a4 as ProductType, hO as ProductTypeWithLiterals, eI as PropertiesType, aX as PropertiesTypeEnum, iH as PropertiesTypeEnumWithLiterals, eJ as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, ch as QuantityLimit, g_ as QuerySubmissionRequest, h9 as QuerySubmissionsByNamespaceForExportRequest, ha as QuerySubmissionsByNamespaceForExportResponse, h7 as QuerySubmissionsByNamespaceRequest, h8 as QuerySubmissionsByNamespaceResponse, eM as QuizFieldSettings, el as RadioGroup, em as RadioGroupOption, eC as RatingInput, g4 as RedirectOptions, cW as Rel, gR as RemoveSubmissionFromTrashBinRequest, gS as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, f4 as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, j5 as RequiredIndicatorPlacementWithLiterals, g0 as RequiredIndicatorProperties, j4 as RequiredIndicatorWithLiterals, g7 as RequiredOptions, aA as Resizing, ij as ResizingWithLiterals, aN as ResponsivenessBehaviour, ix as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gQ as RestoreSubmissionFromTrashBinRequest, dU as RibbonStyles, cH as RichContent, fL as RichContentOptions, g6 as Rule, gh as RuleFormOverride, gi as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, iu as ScalingWithLiterals, fD as Scheduling, b3 as SchedulingComponentType, fE as SchedulingComponentTypeOptionsOneOf, iP as SchedulingComponentTypeWithLiterals, h4 as SearchDetails, h5 as SearchSubmissionsByNamespaceForExportRequest, h6 as SearchSubmissionsByNamespaceForExportResponse, h1 as SearchSubmissionsByNamespaceRequest, fb as Section, ew as ServiceOption, eR as ServicesCheckboxGroup, ev as ServicesDropdown, dt as Settings, eU as Signature, bt as SortOrder, jd as SortOrderWithLiterals, h0 as Sorting, ao as Source, i6 as SourceWithLiterals, bj as SpamFilterProtectionLevel, j3 as SpamFilterProtectionLevelWithLiterals, cR as Spoiler, dM as SpoilerData, bv as Status, jf as StatusWithLiterals, fN as Step, a8 as StringComponentType, hS as StringComponentTypeWithLiterals, cz as StringCorrectAnswersList, bZ as StringErrorMessages, cF as StringQuizFieldSettings, cA as StringType, b_ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hM as StringTypeFormatEnumFormatWithLiterals, cB as StringTypeFormatOptionsOneOf, b$ as StringTypePhoneConstraints, c0 as StringTypeValidationMessages, cT as Styles, di as StylesBorder, ap as StylesPosition, i7 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hj as SubmissionDocument, hk as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jg as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hJ as SubmissionStatusWithLiterals, hB as SubmissionValidationError, hC as SubmissionValidationErrorErrorMessageOneOf, hA as SubmissionValidationErrors, gu as SubmissionValidationErrorsDetails, hH as SubmissionsQueryResult, gr as SubmitContactResponse, g1 as SubmitSettings, g2 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, j7 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fp as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, j1 as SubscriptionInfoOptInLevelWithLiterals, e2 as TableCellData, e0 as TableData, b8 as Tag, bC as TagList, iU as TagWithLiterals, gj as Tags, eQ as TagsOption, gk as TagsTagList, bm as Target, j6 as TargetWithLiterals, ae as TextAlignment, hY as TextAlignmentWithLiterals, dE as TextData, cG as TextInput, eh as TextNodeStyle, cY as TextStyle, g3 as ThankYouMessageOptions, db as Thumbnails, am as ThumbnailsAlignment, i4 as ThumbnailsAlignmentWithLiterals, et as TimeInput, b1 as Type, iN as TypeWithLiterals, ht as UpdateExtendedFieldsRequest, gJ as UpdateSubmissionRequest, gK as UpdateSubmissionResponse, a_ as UploadFileFormat, iK as UploadFileFormatWithLiterals, fS as UpsertContact, gq as UpsertContactFromSubmissionRequest, fT as V4FormFieldContactInfo, fU as V4FormFieldContactInfoAdditionalInfoOneOf, hx as ValidateFormSubmissionRequest, cr as Validation, gv as ValidationError, a3 as ValidationFormat, hN as ValidationFormatWithLiterals, cE as ValidationMessages, cs as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, iw as VerticalAlignmentAlignmentWithLiterals, is as VerticalAlignmentWithLiterals, d5 as Video, fh as VideoConferenceOptions, dX as VideoData, ai as ViewMode, i0 as ViewModeWithLiterals, ar as ViewRole, i9 as ViewRoleWithLiterals, as as VoteRole, ia as VoteRoleWithLiterals, a1 as WebhookIdentityType, hL as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hU as WidthTypeWithLiterals, h_ as WidthWithLiterals, fz as WixFile, aZ as WixFileComponentType, fA as WixFileComponentTypeOptionsOneOf, iJ as WixFileComponentTypeWithLiterals, fw as _Array, fx as _ArrayComponentTypeOptionsOneOf, fu as _Boolean, fv as _BooleanComponentTypeOptionsOneOf, fs as _Number, ft as _NumberComponentTypeOptionsOneOf, fy as _Object, fq as _String, fr as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-a2rNXp7F.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, A as BulkUpdateFormSubmissionTagsOptions, E as BulkUpdateFormSubmissionTagsResponse, H as BulkUpdateFormSubmissionTagsByFilterOptions, I as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, J as ValidateFormSubmissionResponse, K as SubmissionCreatedEnvelope, M as SubmissionDeletedEnvelope, N as SubmissionRemovedSubmissionFromTrashEnvelope, O as SubmissionStatusUpdatedEnvelope, P as SubmissionContactMappedEnvelope, T as SubmissionContactMappingSkippedEnvelope, W as SubmissionUpdatedEnvelope, X as FormSubmissionQuery, Y as QuerySubmissionsByNamespaceOptions, Z as typedQuerySubmissionsByNamespace, _ as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-D-Uxphls.mjs';
|
|
3
|
+
export { bS as AccountInfo, hH as AccountInfoMetadata, bO as ActionEvent, fH as Address, fI as AddressComponentTypeOptionsOneOf, fp as AddressInfo, bg as AddressInfoTag, j5 as AddressInfoTagWithLiterals, f2 as AddressLine2, aQ as Alignment, iF as AlignmentWithLiterals, gb as AllowedValuesOptions, dH as AnchorData, gg as AndCondition, dO as AppEmbedData, dP as AppEmbedDataAppDataOneOf, aF as AppType, iu as AppTypeWithLiterals, gF as ApplicationError, fe as Appointment, ff as AppointmentFormatInfoOneOf, aY as ArrayComponentType, iN as ArrayComponentTypeWithLiterals, cd as ArrayErrorMessages, eM as ArrayItems, eN as ArrayItemsItemTypeOptionsOneOf, eI as ArrayType, cb as ArrayTypeArrayItems, cc as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, io as AspectRatioWithLiterals, e7 as AudioData, dx as Background, dy as BackgroundBackgroundOneOf, ed as BackgroundImage, av as BackgroundType, ij as BackgroundTypeWithLiterals, hF as BaseEventMetadata, ea as BlockquoteData, dQ as BookingData, aV as BooleanComponentType, iK as BooleanComponentTypeWithLiterals, c5 as BooleanErrorMessages, eF as BooleanType, cM as Border, e4 as BorderColors, e5 as BorderWidths, f8 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, hy as BulkUpdateFormSubmissionTagsByFilterRequest, hw as BulkUpdateFormSubmissionTagsRequest, hx as BulkUpdateFormSubmissionTagsResult, e9 as BulletedListData, cL as ButtonData, ac as ButtonDataType, h$ as ButtonDataTypeWithLiterals, dS as ButtonStyles, eb as CaptionData, dV as CardStyles, aD as CardStylesAlignment, is as CardStylesAlignmentWithLiterals, aC as CardStylesType, ir as CardStylesTypeWithLiterals, e3 as CellStyle, bo as ChangeableProperty, jd as ChangeablePropertyWithLiterals, eG as Checkbox, eP as CheckboxGroup, go as Checkout, cX as CodeBlockData, d$ as CollapsibleListData, dI as ColorData, cN as Colors, jn as CommonQueryWithEntityContext, jm as CommonSearchWithEntityContext, b0 as ComponentType, iR as ComponentTypeWithLiterals, eR as ComponentsTags, gi as Condition, ge as ConditionNode, gf as ConditionNodeNodeOneOf, gN as ConfirmSubmissionRequest, b9 as ConfirmationLevel, i_ as ConfirmationLevelWithLiterals, ba as ContactField, i$ as ContactFieldWithLiterals, eH as CorrectAnswersList, hg as CountDeletedSubmissionsRequest, hd as CountSubmissionsByFilterRequest, hf as CountSubmissionsRequest, bT as CreateCheckoutFromSubmissionRequest, bU as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gn as CreateCheckoutFromSubmissionResponse, gy as CreateSubmissionBySubmitterRequest, gz as CreateSubmissionBySubmitterResponse, gu as CreateSubmissionRequest, gv as CreateSubmissionResponse, al as Crop, i8 as CropWithLiterals, gY as CursorPaging, gZ as CursorPagingMetadata, h1 as CursorQueryPagingMethodOneOf, h4 as CursorSearch, h5 as CursorSearchPagingMethodOneOf, g_ as Cursors, fq as CustomFieldInfo, ep as CustomOption, ct as DataExtensionsDetails, eu as DateInput, ew as DatePicker, cC as DateTimeConstraints, es as DateTimeInput, dF as Decoration, dG as DecorationDataOneOf, aw as DecorationType, ik as DecorationTypeWithLiterals, f3 as DefaultCountryConfig, f4 as DefaultCountryConfigOptionsOneOf, gO as DeleteSubmissionRequest, gP as DeleteSubmissionResponse, dD as Design, aO as DesignTarget, iD as DesignTargetWithLiterals, e1 as Dimensions, aH as Direction, iw as DirectionWithLiterals, fL as DisplayField, fM as DisplayFieldDisplayFieldTypeOptionsOneOf, bb as DisplayFieldType, j0 as DisplayFieldTypeWithLiterals, cZ as DividerData, ah as DividerDataAlignment, i4 as DividerDataAlignmentWithLiterals, hn as DocumentReady, ei as DocumentStyle, bI as DomainEvent, bJ as DomainEventBodyOneOf, eZ as DonationInput, e_ as DonationInputOption, ho as DownloadSubmissionRequest, eq as Dropdown, er as DropdownOption, cj as DynamicPriceOptions, fn as EmailInfo, b6 as EmailInfoTag, iX as EmailInfoTagWithLiterals, dZ as EmbedData, gr as Empty, bK as EntityCreatedEvent, bN as EntityDeletedEvent, bM as EntityUpdatedEvent, bs as ErrorType, jh as ErrorTypeWithLiterals, dR as EventData, hG as EventMetadata, bz as ExtendedFields, cv as Field, cw as FieldFieldTypeOptionsOneOf, g7 as FieldGroup, gc as FieldOverride, gd as FieldOverridePropertyTypeOptionsOneOf, cn as FieldOverrides, a6 as FieldType, hV as FieldTypeWithLiterals, hA as FieldViolation, hB as FieldViolationErrorDataOneOf, co as FieldsOverrides, f5 as FieldsSettings, c_ as FileData, c$ as FileSource, d0 as FileSourceDataOneOf, eU as FileType, eV as FileUpload, hM as Filter, aT as FirstDayOfWeek, iI as FirstDayOfWeekWithLiterals, f0 as FixedPayment, ci as FixedPriceOptions, dN as FontFamilyData, dL as FontSizeData, ax as FontType, il as FontTypeWithLiterals, bV as Form, hh as FormDeletedSubmissionsCount, bW as FormField, c6 as FormFieldArrayType, c4 as FormFieldBooleanType, fl as FormFieldContactInfo, fm as FormFieldContactInfoAdditionalInfoOneOf, fZ as FormFieldContactInfoAddressInfo, bi as FormFieldContactInfoContactField, j7 as FormFieldContactInfoContactFieldWithLiterals, f_ as FormFieldContactInfoCustomFieldInfo, fX as FormFieldContactInfoEmailInfo, be as FormFieldContactInfoEmailInfoTag, j3 as FormFieldContactInfoEmailInfoTagWithLiterals, fY as FormFieldContactInfoPhoneInfo, bf as FormFieldContactInfoPhoneInfoTag, j4 as FormFieldContactInfoPhoneInfoTagWithLiterals, f$ as FormFieldContactInfoSubscriptionInfo, c1 as FormFieldNumberType, c7 as FormFieldObjectType, bX as FormFieldStringType, bY as FormFieldStringTypeFormatOptionsOneOf, f7 as FormLayout, fR as FormOverride, fS as FormProperties, fQ as FormRule, hK as FormSubmissionQuerySpec, hI as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, he as FormSubmissionsCount, b4 as Format, a7 as FormatEnumFormat, hW as FormatEnumFormatWithLiterals, iV as FormatWithLiterals, hu as FormattedFormSubmission, hr as FormattedSubmission, dd as GIF, dc as GIFData, an as GIFType, ia as GIFTypeWithLiterals, d2 as GalleryData, d8 as GalleryOptions, d9 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, dw as Gradient, fb as Group, df as HTMLData, dg as HTMLDataDataOneOf, hp as HeadersEntry, de as HeadingData, cS as Height, ga as HiddenOptions, bQ as IdentificationData, bR as IdentificationDataIdOneOf, br as IdentityType, jg as IdentityTypeWithLiterals, d4 as Image, dh as ImageData, dj as ImageDataStyles, aR as ImageFit, iG as ImageFitWithLiterals, aP as ImagePosition, iE as ImagePositionWithLiterals, dT as ImageStyles, fi as InPersonOptions, aG as InitialExpandedItems, iv as InitialExpandedItemsWithLiterals, cx as InputField, cy as InputFieldInputTypeOptionsOneOf, b5 as InputType, iW as InputTypeWithLiterals, c3 as IntegerType, gp as IsFormSubmittableRequest, gq as IsFormSubmittableResponse, d6 as Item, d7 as ItemDataOneOf, f9 as ItemLayout, fa as ItemLayoutItemOneOf, gE as ItemMetadata, da as ItemStyle, aW as ItemType, iL as ItemTypeWithLiterals, bd as Kind, j2 as KindWithLiterals, aE as Layout, ee as LayoutCellData, ec as LayoutData, aL as LayoutDataImagePosition, iA as LayoutDataImagePositionWithLiterals, aj as LayoutType, i6 as LayoutTypeWithLiterals, it as LayoutWithLiterals, g1 as LimitationRule, af as LineStyle, i2 as LineStyleWithLiterals, cU as Link, dJ as LinkData, cV as LinkDataOneOf, dk as LinkPreviewData, dl as LinkPreviewDataStyles, ad as LinkTarget, i0 as LinkTargetWithLiterals, gX as ListDeletedSubmissionsRequest, hs as ListFormattedSubmissionsRequest, ht as ListFormattedSubmissionsResponse, e6 as ListValue, fg as Location, fh as LocationLocationInfoOneOf, dm as MapData, dn as MapSettings, aq as MapType, id as MapTypeWithLiterals, fc as Margin, bG as MarketingSubscriptionDetails, d3 as Media, ek as MediaItem, el as MediaItemMediaOneOf, em as MediaSettings, dK as MentionData, bP as MessageEnvelope, eh as Metadata, bu as Mode, jj as ModeWithLiterals, f1 as MultilineAddress, cm as MultilineAddressValidation, g0 as NestedForm, cq as NestedFormFieldOverrides, cu as NestedFormOverrides, cI as Node, cJ as NodeDataOneOf, cK as NodeStyle, a9 as NodeType, hY as NodeTypeWithLiterals, aJ as NullValue, iy as NullValueWithLiterals, aU as NumberComponentType, iJ as NumberComponentTypeWithLiterals, eA as NumberCorrectAnswersList, c2 as NumberErrorMessages, eD as NumberInput, aS as NumberOfColumns, iH as NumberOfColumnsWithLiterals, eC as NumberQuizFieldSettings, eB as NumberType, fJ as ObjectArray, b2 as ObjectArrayComponentType, fK as ObjectArrayComponentTypeOptionsOneOf, iT as ObjectArrayComponentTypeWithLiterals, cp as ObjectArrayType, ca as ObjectErrorMessages, eJ as ObjectType, c8 as ObjectTypePropertiesType, c9 as ObjectTypePropertiesTypePropertiesTypeOneOf, d_ as Oembed, bq as Operator, jf as OperatorWithLiterals, a0 as OptInLevel, hP as OptInLevelWithLiterals, eQ as Option, dA as OptionDesign, dv as OptionLayout, gh as OrCondition, bA as OrderDetails, e8 as OrderedListData, ak as Orientation, i7 as OrientationWithLiterals, bc as OverrideEntityType, bp as OverrideEntityTypeEnumOverrideEntityType, je as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, j1 as OverrideEntityTypeWithLiterals, d1 as PDFSettings, fO as PageNavigationOptions, dp as ParagraphData, ez as Password, fD as Payment, a$ as PaymentComponentType, fE as PaymentComponentTypeOptionsOneOf, iQ as PaymentComponentTypeWithLiterals, e$ as PaymentInput, cg as PaymentType, dr as Permissions, cD as PhoneConstraints, fo as PhoneInfo, b7 as PhoneInfoTag, iY as PhoneInfoTagWithLiterals, et as PhoneInput, fk as PhoneOptions, aB as Placement, iq as PlacementWithLiterals, dY as PlaybackOptions, cO as PluginContainerData, ab as PluginContainerDataAlignment, h_ as PluginContainerDataAlignmentWithLiterals, cP as PluginContainerDataWidth, cQ as PluginContainerDataWidthDataOneOf, dB as Poll, dq as PollData, dC as PollDataLayout, dz as PollDesign, du as PollLayout, au as PollLayoutDirection, ii as PollLayoutDirectionWithLiterals, at as PollLayoutType, ih as PollLayoutTypeWithLiterals, ds as PollOption, ay as Position, im as PositionWithLiterals, fT as PostSubmissionTriggers, ce as PredefinedValidation, cf as PredefinedValidationFormatOptionsOneOf, a5 as PriceType, hU as PriceTypeWithLiterals, dW as PricingData, ck as Product, eX as ProductCheckboxGroup, eY as ProductCheckboxGroupOption, cl as ProductPriceOptionsOneOf, a4 as ProductType, hT as ProductTypeWithLiterals, eK as PropertiesType, aX as PropertiesTypeEnum, iM as PropertiesTypeEnumWithLiterals, eL as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, ch as QuantityLimit, hL as QueryBuilder, h0 as QuerySubmissionRequest, hb as QuerySubmissionsByNamespaceForExportRequest, hc as QuerySubmissionsByNamespaceForExportResponse, h9 as QuerySubmissionsByNamespaceRequest, ha as QuerySubmissionsByNamespaceResponse, eO as QuizFieldSettings, en as RadioGroup, eo as RadioGroupOption, eE as RatingInput, g6 as RedirectOptions, cW as Rel, gT as RemoveSubmissionFromTrashBinRequest, gU as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, f6 as Repeater, bk as RequiredIndicator, bl as RequiredIndicatorPlacement, ja as RequiredIndicatorPlacementWithLiterals, g2 as RequiredIndicatorProperties, j9 as RequiredIndicatorWithLiterals, g9 as RequiredOptions, aA as Resizing, ip as ResizingWithLiterals, aN as ResponsivenessBehaviour, iC as ResponsivenessBehaviourWithLiterals, bL as RestoreInfo, gS as RestoreSubmissionFromTrashBinRequest, dU as RibbonStyles, cH as RichContent, fN as RichContentOptions, g8 as Rule, gj as RuleFormOverride, gk as RuleFormOverrideEntityTypeOptionsOneOf, aK as Scaling, iz as ScalingWithLiterals, fF as Scheduling, b3 as SchedulingComponentType, fG as SchedulingComponentTypeOptionsOneOf, iU as SchedulingComponentTypeWithLiterals, h6 as SearchDetails, h7 as SearchSubmissionsByNamespaceForExportRequest, h8 as SearchSubmissionsByNamespaceForExportResponse, h3 as SearchSubmissionsByNamespaceRequest, fd as Section, ey as ServiceOption, eT as ServicesCheckboxGroup, ex as ServicesDropdown, dt as Settings, ef as ShapeData, eg as ShapeDataStyles, eW as Signature, hN as Sort, bt as SortOrder, ji as SortOrderWithLiterals, h2 as Sorting, ao as Source, ib as SourceWithLiterals, bj as SpamFilterProtectionLevel, j8 as SpamFilterProtectionLevelWithLiterals, cR as Spoiler, dM as SpoilerData, bv as Status, jk as StatusWithLiterals, fP as Step, a8 as StringComponentType, hX as StringComponentTypeWithLiterals, cz as StringCorrectAnswersList, bZ as StringErrorMessages, cF as StringQuizFieldSettings, cA as StringType, b_ as StringTypeDateTimeConstraints, a2 as StringTypeFormatEnumFormat, hR as StringTypeFormatEnumFormatWithLiterals, cB as StringTypeFormatOptionsOneOf, b$ as StringTypePhoneConstraints, c0 as StringTypeValidationMessages, cT as Styles, di as StylesBorder, ap as StylesPosition, ic as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hl as SubmissionDocument, hm as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jl as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hO as SubmissionStatusWithLiterals, hD as SubmissionValidationError, hE as SubmissionValidationErrorErrorMessageOneOf, hC as SubmissionValidationErrors, gw as SubmissionValidationErrorsDetails, hJ as SubmissionsQueryResult, gt as SubmitContactResponse, g3 as SubmitSettings, g4 as SubmitSettingsSubmitSuccessActionOptionsOneOf, bn as SubmitSuccessAction, jc as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, fr as SubscriptionInfo, bh as SubscriptionInfoOptInLevel, j6 as SubscriptionInfoOptInLevelWithLiterals, e2 as TableCellData, e0 as TableData, b8 as Tag, bC as TagList, iZ as TagWithLiterals, gl as Tags, eS as TagsOption, gm as TagsTagList, bm as Target, jb as TargetWithLiterals, ae as TextAlignment, i1 as TextAlignmentWithLiterals, dE as TextData, cG as TextInput, ej as TextNodeStyle, cY as TextStyle, g5 as ThankYouMessageOptions, db as Thumbnails, am as ThumbnailsAlignment, i9 as ThumbnailsAlignmentWithLiterals, ev as TimeInput, b1 as Type, iS as TypeWithLiterals, hv as UpdateExtendedFieldsRequest, gL as UpdateSubmissionRequest, gM as UpdateSubmissionResponse, a_ as UploadFileFormat, iP as UploadFileFormatWithLiterals, fU as UpsertContact, gs as UpsertContactFromSubmissionRequest, fV as V4FormFieldContactInfo, fW as V4FormFieldContactInfoAdditionalInfoOneOf, hz as ValidateFormSubmissionRequest, cr as Validation, gx as ValidationError, a3 as ValidationFormat, hS as ValidationFormatWithLiterals, cE as ValidationMessages, cs as ValidationValidationOneOf, aI as VerticalAlignment, aM as VerticalAlignmentAlignment, iB as VerticalAlignmentAlignmentWithLiterals, ix as VerticalAlignmentWithLiterals, d5 as Video, fj as VideoConferenceOptions, dX as VideoData, ai as ViewMode, i5 as ViewModeWithLiterals, ar as ViewRole, ie as ViewRoleWithLiterals, as as VoteRole, ig as VoteRoleWithLiterals, a1 as WebhookIdentityType, hQ as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, hZ as WidthTypeWithLiterals, i3 as WidthWithLiterals, fB as WixFile, aZ as WixFileComponentType, fC as WixFileComponentTypeOptionsOneOf, iO as WixFileComponentTypeWithLiterals, fy as _Array, fz as _ArrayComponentTypeOptionsOneOf, fw as _Boolean, fx as _BooleanComponentTypeOptionsOneOf, fu as _Number, fv as _NumberComponentTypeOptionsOneOf, fA as _Object, fs as _String, ft as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-D-Uxphls.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -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) => {
|
|
@@ -2081,6 +2089,7 @@ async function typedQuerySubmissionsByNamespace(query, options) {
|
|
|
2081
2089
|
throw transformedError;
|
|
2082
2090
|
}
|
|
2083
2091
|
}
|
|
2092
|
+
var { QueryBuilder, Filter, Sort } = createQueryUtils();
|
|
2084
2093
|
async function countSubmissionsByFilter2(filter, options) {
|
|
2085
2094
|
const { httpClient, sideEffects } = arguments[2];
|
|
2086
2095
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
@@ -2846,6 +2855,7 @@ export {
|
|
|
2846
2855
|
EmailInfoTag,
|
|
2847
2856
|
ErrorType,
|
|
2848
2857
|
FieldType,
|
|
2858
|
+
Filter,
|
|
2849
2859
|
FirstDayOfWeek,
|
|
2850
2860
|
FontType,
|
|
2851
2861
|
FormFieldContactInfoContactField,
|
|
@@ -2888,12 +2898,14 @@ export {
|
|
|
2888
2898
|
PriceType,
|
|
2889
2899
|
ProductType,
|
|
2890
2900
|
PropertiesTypeEnum,
|
|
2901
|
+
QueryBuilder,
|
|
2891
2902
|
RequiredIndicator,
|
|
2892
2903
|
RequiredIndicatorPlacement,
|
|
2893
2904
|
Resizing,
|
|
2894
2905
|
ResponsivenessBehaviour,
|
|
2895
2906
|
Scaling,
|
|
2896
2907
|
SchedulingComponentType,
|
|
2908
|
+
Sort,
|
|
2897
2909
|
SortOrder,
|
|
2898
2910
|
Source,
|
|
2899
2911
|
SpamFilterProtectionLevel,
|