@wix/auto_sdk_forms_submissions 1.0.77 → 1.0.79
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-p9UgjNSI.d.ts → forms-v4-submission-submissions.universal-CUbd70Va.d.ts} +13 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -2
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-p9UgjNSI.d.mts → forms-v4-submission-submissions.universal-CUbd70Va.d.mts} +13 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +9 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -2
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-IKRWXge_.d.ts → forms-v4-submission-submissions.universal-nj5TA1wa.d.ts} +13 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -1
- 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 +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -2
- 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-IKRWXge_.d.mts → forms-v4-submission-submissions.universal-nj5TA1wa.d.mts} +13 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +9 -1
- 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 +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2966,6 +2966,8 @@ interface LayoutData {
|
|
|
2966
2966
|
responsivenessBreakpoint?: number | null;
|
|
2967
2967
|
/** Styling for the layout's container. */
|
|
2968
2968
|
containerData?: PluginContainerData;
|
|
2969
|
+
/** Defines where selected design propertied applies to */
|
|
2970
|
+
designTarget?: DesignTargetWithLiterals;
|
|
2969
2971
|
}
|
|
2970
2972
|
declare enum Scaling {
|
|
2971
2973
|
/** Auto image scaling */
|
|
@@ -3027,6 +3029,14 @@ declare enum ResponsivenessBehaviour {
|
|
|
3027
3029
|
}
|
|
3028
3030
|
/** @enumType */
|
|
3029
3031
|
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3032
|
+
declare enum DesignTarget {
|
|
3033
|
+
/** Design applied to layout */
|
|
3034
|
+
LAYOUT = "LAYOUT",
|
|
3035
|
+
/** Design applied to cells */
|
|
3036
|
+
CELL = "CELL"
|
|
3037
|
+
}
|
|
3038
|
+
/** @enumType */
|
|
3039
|
+
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
3030
3040
|
interface LayoutCellData {
|
|
3031
3041
|
/** Size of the cell in 12 columns grid. */
|
|
3032
3042
|
colSpan?: number | null;
|
|
@@ -6860,6 +6870,8 @@ declare function onSubmissionContactMappingSkipped(handler: (event: SubmissionCo
|
|
|
6860
6870
|
interface SubmissionUpdatedEnvelope {
|
|
6861
6871
|
entity: FormSubmission;
|
|
6862
6872
|
metadata: EventMetadata;
|
|
6873
|
+
/** @hidden */
|
|
6874
|
+
modifiedFields: Record<string, any>;
|
|
6863
6875
|
}
|
|
6864
6876
|
/**
|
|
6865
6877
|
* > **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.
|
|
@@ -7683,4 +7695,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7683
7695
|
fieldsToValidate?: string[];
|
|
7684
7696
|
}
|
|
7685
7697
|
|
|
7686
|
-
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, Type as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, ImagePosition as aN, Alignment as aO, ImageFit as aP, NumberOfColumns as aQ, FirstDayOfWeek as aR, NumberComponentType as aS, BooleanComponentType as aT, ItemType as aU, PropertiesTypeEnum as aV, ArrayComponentType as aW, WixFileComponentType as aX, UploadFileFormat as aY, PaymentComponentType as aZ, ComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ArrayTypeArrayItems as b$, ObjectArrayComponentType as b0, SchedulingComponentType as b1, Format as b2, InputType as b3, EmailInfoTag as b4, PhoneInfoTag as b5, Tag as b6, ConfirmationLevel as b7, ContactField as b8, DisplayFieldType as b9, type PublicTags as bA, type TagList as bB, type FormSubmissionStatusUpdatedEvent as bC, type RemovedSubmissionFromTrash as bD, type SubmissionContactMapped as bE, type MarketingSubscriptionDetails as bF, type SubmissionContactMappingSkipped as bG, type CreateCheckoutFromSubmissionRequest as bH, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bI, type Form as bJ, type FormField as bK, type FormFieldStringType as bL, type FormFieldStringTypeFormatOptionsOneOf as bM, type StringErrorMessages as bN, type StringTypeDateTimeConstraints as bO, type StringTypePhoneConstraints as bP, type StringTypeValidationMessages as bQ, type FormFieldNumberType as bR, type NumberErrorMessages as bS, type IntegerType as bT, type FormFieldBooleanType as bU, type BooleanErrorMessages as bV, type FormFieldArrayType as bW, type FormFieldObjectType as bX, type ObjectTypePropertiesType as bY, type ObjectTypePropertiesTypePropertiesTypeOneOf as bZ, type ObjectErrorMessages as b_, OverrideEntityType as ba, Kind as bb, FormFieldContactInfoEmailInfoTag as bc, FormFieldContactInfoPhoneInfoTag as bd, AddressInfoTag as be, SubscriptionInfoOptInLevel as bf, FormFieldContactInfoContactField as bg, SpamFilterProtectionLevel as bh, RequiredIndicator as bi, RequiredIndicatorPlacement as bj, Target as bk, SubmitSuccessAction as bl, ChangeableProperty as bm, OverrideEntityTypeEnumOverrideEntityType as bn, Operator as bo, WebhookIdentityType as bp, IdentityType as bq, ErrorType as br, SortOrder as bs, Mode as bt, Status as bu, SubmissionErrorType as bv, type Submitter as bw, type SubmitterSubmitterOneOf as bx, type ExtendedFields as by, type OrderDetails as bz, type CreateSubmissionValidationErrors as c, type GIF as c$, type ArrayTypeArrayItemsItemsOneOf as c0, type ArrayErrorMessages as c1, type PredefinedValidation as c2, type PredefinedValidationFormatOptionsOneOf as c3, type PaymentType as c4, type QuantityLimit as c5, type FixedPriceOptions as c6, type DynamicPriceOptions as c7, type Product as c8, type ProductPriceOptionsOneOf as c9, type PluginContainerData as cA, type PluginContainerDataWidth as cB, type PluginContainerDataWidthDataOneOf as cC, type Spoiler as cD, type Height as cE, type Styles as cF, type Link as cG, type LinkDataOneOf as cH, type Rel as cI, type CodeBlockData as cJ, type TextStyle as cK, type DividerData as cL, type FileData as cM, type FileSource as cN, type FileSourceDataOneOf as cO, type PDFSettings as cP, type GalleryData as cQ, type Media as cR, type Image as cS, type Video as cT, type Item as cU, type ItemDataOneOf as cV, type GalleryOptions as cW, type GalleryOptionsLayout as cX, type ItemStyle as cY, type Thumbnails as cZ, type GIFData as c_, type MultilineAddressValidation as ca, type FieldOverrides as cb, type FieldsOverrides as cc, type ObjectArrayType as cd, type NestedFormFieldOverrides as ce, type Validation as cf, type ValidationValidationOneOf as cg, type DataExtensionsDetails as ch, type NestedFormOverrides as ci, type Field as cj, type FieldFieldTypeOptionsOneOf as ck, type InputField as cl, type InputFieldInputTypeOptionsOneOf as cm, type StringType as cn, type StringTypeFormatOptionsOneOf as co, type DateTimeConstraints as cp, type PhoneConstraints as cq, type ValidationMessages as cr, type TextInput as cs, type RichContent as ct, type Node as cu, type NodeDataOneOf as cv, type NodeStyle as cw, type ButtonData as cx, type Border as cy, type Colors as cz, type UpdateSubmission as d, type BackgroundImage as d$, type HeadingData as d0, type HTMLData as d1, type HTMLDataDataOneOf as d2, type ImageData as d3, type StylesBorder as d4, type ImageDataStyles as d5, type LinkPreviewData as d6, type LinkPreviewDataStyles as d7, type MapData as d8, type MapSettings as d9, type AppEmbedData as dA, type AppEmbedDataAppDataOneOf as dB, type BookingData as dC, type EventData as dD, type ButtonStyles as dE, type ImageStyles as dF, type RibbonStyles as dG, type CardStyles as dH, type PricingData as dI, type VideoData as dJ, type PlaybackOptions as dK, type EmbedData as dL, type Oembed as dM, type CollapsibleListData as dN, type TableData as dO, type Dimensions as dP, type TableCellData as dQ, type CellStyle as dR, type BorderColors as dS, type BorderWidths as dT, type ListValue as dU, type AudioData as dV, type OrderedListData as dW, type BulletedListData as dX, type BlockquoteData as dY, type CaptionData as dZ, type LayoutData as d_, type ParagraphData as da, type PollData as db, type Permissions as dc, type PollOption as dd, type Settings as de, type PollLayout as df, type OptionLayout as dg, type Gradient as dh, type Background as di, type BackgroundBackgroundOneOf as dj, type PollDesign as dk, type OptionDesign as dl, type Poll as dm, type PollDataLayout as dn, type Design as dp, type TextData as dq, type Decoration as dr, type DecorationDataOneOf as ds, type AnchorData as dt, type ColorData as du, type LinkData as dv, type MentionData as dw, type FontSizeData as dx, type SpoilerData as dy, type FontFamilyData as dz, type UpdateSubmissionValidationErrors as e, type VideoConferenceOptions as e$, type LayoutCellData as e0, type Metadata as e1, type DocumentStyle as e2, type TextNodeStyle as e3, type MediaItem as e4, type MediaItemMediaOneOf as e5, type MediaSettings as e6, type RadioGroup as e7, type RadioGroupOption as e8, type CustomOption as e9, type FileType as eA, type FileUpload as eB, type Signature as eC, type ProductCheckboxGroup as eD, type ProductCheckboxGroupOption as eE, type DonationInput as eF, type DonationInputOption as eG, type PaymentInput as eH, type FixedPayment as eI, type MultilineAddress as eJ, type AddressLine2 as eK, type DefaultCountryConfig as eL, type DefaultCountryConfigOptionsOneOf as eM, type FieldsSettings as eN, type Repeater as eO, type FormLayout as eP, type BreakPoint as eQ, type ItemLayout as eR, type ItemLayoutItemOneOf as eS, type Group as eT, type Margin as eU, type Section as eV, type Appointment as eW, type AppointmentFormatInfoOneOf as eX, type Location as eY, type LocationLocationInfoOneOf as eZ, type InPersonOptions as e_, type Dropdown as ea, type DropdownOption as eb, type DateTimeInput as ec, type PhoneInput as ed, type DateInput as ee, type TimeInput as ef, type DatePicker as eg, type ServicesDropdown as eh, type ServiceOption as ei, type Password as ej, type NumberType as ek, type NumberInput as el, type RatingInput as em, type BooleanType as en, type Checkbox as eo, type ArrayType as ep, type ObjectType as eq, type PropertiesType as er, type PropertiesTypePropertiesTypeOptionsOneOf as es, type ArrayItems as et, type ArrayItemsItemTypeOptionsOneOf as eu, type CheckboxGroup as ev, type Option as ew, type ComponentsTags as ex, type TagsOption as ey, type ServicesCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type RuleFormOverride as f$, type PhoneOptions as f0, type FormFieldContactInfo as f1, type FormFieldContactInfoAdditionalInfoOneOf as f2, type EmailInfo as f3, type PhoneInfo as f4, type AddressInfo as f5, type CustomFieldInfo as f6, type SubscriptionInfo as f7, type _String as f8, type _StringComponentTypeOptionsOneOf as f9, type UpsertContact as fA, type V4FormFieldContactInfo as fB, type V4FormFieldContactInfoAdditionalInfoOneOf as fC, type FormFieldContactInfoEmailInfo as fD, type FormFieldContactInfoPhoneInfo as fE, type FormFieldContactInfoAddressInfo as fF, type FormFieldContactInfoCustomFieldInfo as fG, type FormFieldContactInfoSubscriptionInfo as fH, type NestedForm as fI, type LimitationRule as fJ, type RequiredIndicatorProperties as fK, type SubmitSettings as fL, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fM, type ThankYouMessageOptions as fN, type RedirectOptions as fO, type FieldGroup as fP, type Rule as fQ, type RequiredOptions as fR, type HiddenOptions as fS, type AllowedValuesOptions as fT, type FieldOverride as fU, type FieldOverridePropertyTypeOptionsOneOf as fV, type ConditionNode as fW, type ConditionNodeNodeOneOf as fX, type AndCondition as fY, type OrCondition as fZ, type Condition as f_, type _Number as fa, type _NumberComponentTypeOptionsOneOf as fb, type _Boolean as fc, type _BooleanComponentTypeOptionsOneOf as fd, type _Array as fe, type _ArrayComponentTypeOptionsOneOf as ff, type _Object as fg, type WixFile as fh, type WixFileComponentTypeOptionsOneOf as fi, type Payment as fj, type PaymentComponentTypeOptionsOneOf as fk, type Scheduling as fl, type SchedulingComponentTypeOptionsOneOf as fm, type Address as fn, type AddressComponentTypeOptionsOneOf as fo, type ObjectArray as fp, type ObjectArrayComponentTypeOptionsOneOf as fq, type DisplayField as fr, type DisplayFieldDisplayFieldTypeOptionsOneOf as fs, type RichContentOptions as ft, type PageNavigationOptions as fu, type Step as fv, type FormRule as fw, type FormOverride as fx, type FormProperties as fy, type PostSubmissionTriggers as fz, type BulkDeleteSubmissionResponse as g, type CursorSearchPagingMethodOneOf as g$, type RuleFormOverrideEntityTypeOptionsOneOf as g0, type Tags as g1, type TagsTagList as g2, type CreateCheckoutFromSubmissionResponse as g3, type Checkout as g4, type IsFormSubmittableRequest as g5, type IsFormSubmittableResponse as g6, type DomainEvent as g7, type DomainEventBodyOneOf as g8, type EntityCreatedEvent as g9, type BulkCreateSubmissionBySubmitterResponse 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 RestoreInfo as ga, type EntityUpdatedEvent as gb, type EntityDeletedEvent as gc, type ActionEvent as gd, type Empty as ge, type MessageEnvelope as gf, type IdentificationData as gg, type IdentificationDataIdOneOf as gh, type UpsertContactFromSubmissionRequest as gi, type SubmitContactResponse as gj, type CreateSubmissionRequest as gk, type CreateSubmissionResponse as gl, type SubmissionValidationErrorsDetails as gm, type ValidationError as gn, type CreateSubmissionForMigrationRequest as go, type CreateSubmissionForMigrationResponse as gp, type BulkCreateSubmissionsForMigrationRequest as gq, type BulkCreateSubmissionsForMigrationResponse as gr, type BulkSubmissionResult as gs, type ItemMetadata as gt, type ApplicationError as gu, type BulkActionMetadata as gv, type CreateSubmissionBySubmitterRequest as gw, type CreateSubmissionBySubmitterResponse as gx, type BulkCreateSubmissionBySubmitterRequest as gy, type BulkCreateSubmissionBySubmitterData as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type GIFTypeWithLiterals 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 EventMetadata as hA, type FormSubmissionSearchSpec as hB, type SubmissionsQueryResult as hC, type FormSubmissionQuerySpec as hD, type SubmissionStatusWithLiterals as hE, type OptInLevelWithLiterals as hF, type StringTypeFormatEnumFormatWithLiterals as hG, type ValidationFormatWithLiterals as hH, type ProductTypeWithLiterals as hI, type PriceTypeWithLiterals as hJ, type FieldTypeWithLiterals as hK, type FormatEnumFormatWithLiterals as hL, type StringComponentTypeWithLiterals as hM, type NodeTypeWithLiterals as hN, type WidthTypeWithLiterals as hO, type PluginContainerDataAlignmentWithLiterals as hP, type ButtonDataTypeWithLiterals as hQ, type LinkTargetWithLiterals as hR, type TextAlignmentWithLiterals as hS, type LineStyleWithLiterals as hT, type WidthWithLiterals as hU, type DividerDataAlignmentWithLiterals as hV, type ViewModeWithLiterals as hW, type LayoutTypeWithLiterals as hX, type OrientationWithLiterals as hY, type CropWithLiterals as hZ, type ThumbnailsAlignmentWithLiterals 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 BulkUpdateFormSubmissionTagsResult as hr, type BulkUpdateFormSubmissionTagsByFilterRequest as hs, type ValidateFormSubmissionRequest as ht, type FieldViolation as hu, type FieldViolationErrorDataOneOf as hv, type SubmissionValidationErrors as hw, type SubmissionValidationError as hx, type SubmissionValidationErrorErrorMessageOneOf as hy, type BaseEventMetadata as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type TargetWithLiterals as i$, type SourceWithLiterals as i0, type StylesPositionWithLiterals as i1, type MapTypeWithLiterals as i2, type ViewRoleWithLiterals as i3, type VoteRoleWithLiterals as i4, type PollLayoutTypeWithLiterals as i5, type PollLayoutDirectionWithLiterals as i6, type BackgroundTypeWithLiterals as i7, type DecorationTypeWithLiterals as i8, type FontTypeWithLiterals as i9, type PropertiesTypeEnumWithLiterals as iA, type ArrayComponentTypeWithLiterals as iB, type WixFileComponentTypeWithLiterals as iC, type UploadFileFormatWithLiterals as iD, type PaymentComponentTypeWithLiterals as iE, type ComponentTypeWithLiterals as iF, type TypeWithLiterals as iG, type ObjectArrayComponentTypeWithLiterals as iH, type SchedulingComponentTypeWithLiterals as iI, type FormatWithLiterals as iJ, type InputTypeWithLiterals as iK, type EmailInfoTagWithLiterals as iL, type PhoneInfoTagWithLiterals as iM, type TagWithLiterals as iN, type ConfirmationLevelWithLiterals as iO, type ContactFieldWithLiterals as iP, type DisplayFieldTypeWithLiterals as iQ, type OverrideEntityTypeWithLiterals as iR, type KindWithLiterals as iS, type FormFieldContactInfoEmailInfoTagWithLiterals as iT, type FormFieldContactInfoPhoneInfoTagWithLiterals as iU, type AddressInfoTagWithLiterals as iV, type SubscriptionInfoOptInLevelWithLiterals as iW, type FormFieldContactInfoContactFieldWithLiterals as iX, type SpamFilterProtectionLevelWithLiterals as iY, type RequiredIndicatorWithLiterals as iZ, type RequiredIndicatorPlacementWithLiterals as i_, type PositionWithLiterals as ia, type AspectRatioWithLiterals as ib, type ResizingWithLiterals as ic, type PlacementWithLiterals as id, type CardStylesTypeWithLiterals as ie, type CardStylesAlignmentWithLiterals as ig, type LayoutWithLiterals as ih, type AppTypeWithLiterals as ii, type InitialExpandedItemsWithLiterals as ij, type DirectionWithLiterals as ik, type VerticalAlignmentWithLiterals as il, type NullValueWithLiterals as im, type ScalingWithLiterals as io, type LayoutDataImagePositionWithLiterals as ip, type VerticalAlignmentAlignmentWithLiterals as iq, type ResponsivenessBehaviourWithLiterals as ir, type ImagePositionWithLiterals as is, type AlignmentWithLiterals as it, type ImageFitWithLiterals as iu, type NumberOfColumnsWithLiterals as iv, type FirstDayOfWeekWithLiterals as iw, type NumberComponentTypeWithLiterals as ix, type BooleanComponentTypeWithLiterals as iy, type ItemTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type SubmitSuccessActionWithLiterals as j0, type ChangeablePropertyWithLiterals as j1, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j2, type OperatorWithLiterals as j3, type WebhookIdentityTypeWithLiterals as j4, type IdentityTypeWithLiterals as j5, type ErrorTypeWithLiterals as j6, type SortOrderWithLiterals as j7, type ModeWithLiterals as j8, type StatusWithLiterals as j9, countDeletedSubmissions as jA, getMediaUploadUrl as jB, bulkMarkSubmissionsAsSeen as jC, getSubmissionDownloadUrl as jD, downloadSubmission as jE, getFormattedSubmission as jF, updateExtendedFields as jG, bulkUpdateFormSubmissionTags as jH, bulkUpdateFormSubmissionTagsByFilter as jI, validateFormSubmission as jJ, type SubmissionErrorTypeWithLiterals as ja, type CommonSearchWithEntityContext as jb, type CommonQueryWithEntityContext as jc, onSubmissionCreated as jd, onSubmissionDeleted as je, onSubmissionRemovedSubmissionFromTrash as jf, onSubmissionStatusUpdated as jg, onSubmissionContactMapped as jh, onSubmissionContactMappingSkipped as ji, onSubmissionUpdated as jj, upsertContactFromSubmission as jk, createSubmission as jl, getSubmission as jm, updateSubmission as jn, confirmSubmission as jo, deleteSubmission as jp, bulkDeleteSubmission as jq, restoreSubmissionFromTrashBin as jr, removeSubmissionFromTrashBin as js, bulkRemoveSubmissionFromTrashBin as jt, listDeletedSubmissions as ju, getDeletedSubmission as jv, querySubmission as jw, querySubmissionsByNamespace as jx, countSubmissionsByFilter as jy, countSubmissions 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 };
|
|
7698
|
+
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, ComponentType as a$, OptInLevel as a0, StringTypeFormatEnumFormat as a1, ValidationFormat as a2, ProductType as a3, PriceType as a4, FieldType as a5, FormatEnumFormat as a6, StringComponentType as a7, NodeType as a8, WidthType as a9, Placement as aA, CardStylesType as aB, CardStylesAlignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, LayoutDataImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, ImagePosition as aO, Alignment as aP, ImageFit as aQ, NumberOfColumns as aR, FirstDayOfWeek as aS, NumberComponentType as aT, BooleanComponentType as aU, ItemType as aV, PropertiesTypeEnum as aW, ArrayComponentType as aX, WixFileComponentType as aY, UploadFileFormat as aZ, PaymentComponentType as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, LinkTarget as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ObjectErrorMessages as b$, Type as b0, ObjectArrayComponentType as b1, SchedulingComponentType as b2, Format as b3, InputType as b4, EmailInfoTag as b5, PhoneInfoTag as b6, Tag as b7, ConfirmationLevel as b8, ContactField 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 CreateCheckoutFromSubmissionRequest as bI, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bJ, type Form as bK, type FormField as bL, type FormFieldStringType as bM, type FormFieldStringTypeFormatOptionsOneOf as bN, type StringErrorMessages as bO, type StringTypeDateTimeConstraints as bP, type StringTypePhoneConstraints as bQ, type StringTypeValidationMessages as bR, type FormFieldNumberType as bS, type NumberErrorMessages as bT, type IntegerType as bU, type FormFieldBooleanType as bV, type BooleanErrorMessages as bW, type FormFieldArrayType as bX, type FormFieldObjectType as bY, type ObjectTypePropertiesType as bZ, type ObjectTypePropertiesTypePropertiesTypeOneOf as b_, DisplayFieldType as ba, OverrideEntityType as bb, Kind as bc, FormFieldContactInfoEmailInfoTag as bd, FormFieldContactInfoPhoneInfoTag as be, AddressInfoTag as bf, SubscriptionInfoOptInLevel as bg, FormFieldContactInfoContactField as bh, SpamFilterProtectionLevel as bi, RequiredIndicator as bj, RequiredIndicatorPlacement as bk, Target as bl, SubmitSuccessAction as bm, ChangeableProperty as bn, OverrideEntityTypeEnumOverrideEntityType as bo, Operator as bp, WebhookIdentityType 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 GIFData as c$, type ArrayTypeArrayItems as c0, type ArrayTypeArrayItemsItemsOneOf as c1, type ArrayErrorMessages as c2, type PredefinedValidation as c3, type PredefinedValidationFormatOptionsOneOf as c4, type PaymentType as c5, type QuantityLimit as c6, type FixedPriceOptions as c7, type DynamicPriceOptions as c8, type Product as c9, type Colors as cA, type PluginContainerData as cB, type PluginContainerDataWidth as cC, type PluginContainerDataWidthDataOneOf as cD, type Spoiler as cE, type Height as cF, type Styles as cG, type Link as cH, type LinkDataOneOf as cI, type Rel as cJ, type CodeBlockData as cK, type TextStyle as cL, type DividerData as cM, type FileData as cN, type FileSource as cO, type FileSourceDataOneOf as cP, type PDFSettings as cQ, type GalleryData as cR, type Media as cS, type Image as cT, type Video as cU, type Item as cV, type ItemDataOneOf as cW, type GalleryOptions as cX, type GalleryOptionsLayout as cY, type ItemStyle as cZ, type Thumbnails as c_, type ProductPriceOptionsOneOf as ca, type MultilineAddressValidation as cb, type FieldOverrides as cc, type FieldsOverrides as cd, type ObjectArrayType as ce, type NestedFormFieldOverrides as cf, type Validation as cg, type ValidationValidationOneOf as ch, type DataExtensionsDetails as ci, type NestedFormOverrides as cj, type Field as ck, type FieldFieldTypeOptionsOneOf as cl, type InputField as cm, type InputFieldInputTypeOptionsOneOf as cn, type StringType as co, type StringTypeFormatOptionsOneOf as cp, type DateTimeConstraints as cq, type PhoneConstraints as cr, type ValidationMessages as cs, type TextInput as ct, type RichContent as cu, type Node as cv, type NodeDataOneOf as cw, type NodeStyle as cx, type ButtonData as cy, type Border as cz, type UpdateSubmission as d, type LayoutData as d$, type GIF as d0, type HeadingData as d1, type HTMLData as d2, type HTMLDataDataOneOf as d3, type ImageData as d4, type StylesBorder as d5, type ImageDataStyles as d6, type LinkPreviewData as d7, type LinkPreviewDataStyles as d8, type MapData as d9, type FontFamilyData as dA, type AppEmbedData as dB, type AppEmbedDataAppDataOneOf as dC, type BookingData as dD, type EventData as dE, type ButtonStyles as dF, type ImageStyles as dG, type RibbonStyles as dH, type CardStyles as dI, type PricingData as dJ, type VideoData as dK, type PlaybackOptions as dL, type EmbedData as dM, type Oembed as dN, type CollapsibleListData as dO, type TableData as dP, type Dimensions as dQ, type TableCellData as dR, type CellStyle as dS, type BorderColors as dT, type BorderWidths as dU, type ListValue as dV, type AudioData as dW, type OrderedListData as dX, type BulletedListData as dY, type BlockquoteData as dZ, type CaptionData as d_, type MapSettings as da, type ParagraphData as db, type PollData as dc, type Permissions as dd, type PollOption as de, type Settings as df, type PollLayout as dg, type OptionLayout as dh, type Gradient as di, type Background as dj, type BackgroundBackgroundOneOf as dk, type PollDesign as dl, type OptionDesign as dm, type Poll as dn, type PollDataLayout as dp, type Design as dq, type TextData as dr, type Decoration as ds, type DecorationDataOneOf as dt, type AnchorData as du, type ColorData as dv, type LinkData as dw, type MentionData as dx, type FontSizeData as dy, type SpoilerData as dz, type UpdateSubmissionValidationErrors as e, type InPersonOptions as e$, type BackgroundImage as e0, type LayoutCellData as e1, type Metadata as e2, type DocumentStyle as e3, type TextNodeStyle as e4, type MediaItem as e5, type MediaItemMediaOneOf as e6, type MediaSettings as e7, type RadioGroup as e8, type RadioGroupOption as e9, type ServicesCheckboxGroup as eA, type FileType as eB, type FileUpload as eC, type Signature as eD, type ProductCheckboxGroup as eE, type ProductCheckboxGroupOption as eF, type DonationInput as eG, type DonationInputOption as eH, type PaymentInput as eI, type FixedPayment as eJ, type MultilineAddress as eK, type AddressLine2 as eL, type DefaultCountryConfig as eM, type DefaultCountryConfigOptionsOneOf as eN, type FieldsSettings as eO, type Repeater as eP, type FormLayout as eQ, type BreakPoint as eR, type ItemLayout as eS, type ItemLayoutItemOneOf as eT, type Group as eU, type Margin as eV, type Section as eW, type Appointment as eX, type AppointmentFormatInfoOneOf as eY, type Location as eZ, type LocationLocationInfoOneOf as e_, type CustomOption as ea, type Dropdown as eb, type DropdownOption as ec, type DateTimeInput as ed, type PhoneInput as ee, type DateInput as ef, type TimeInput as eg, type DatePicker as eh, type ServicesDropdown as ei, type ServiceOption as ej, type Password as ek, type NumberType as el, type NumberInput as em, type RatingInput as en, type BooleanType as eo, type Checkbox as ep, type ArrayType as eq, type ObjectType as er, type PropertiesType as es, type PropertiesTypePropertiesTypeOptionsOneOf as et, type ArrayItems as eu, type ArrayItemsItemTypeOptionsOneOf as ev, type CheckboxGroup as ew, type Option as ex, type ComponentsTags as ey, type TagsOption as ez, type ConfirmSubmissionResponse as f, type Condition as f$, type VideoConferenceOptions as f0, type PhoneOptions as f1, type FormFieldContactInfo as f2, type FormFieldContactInfoAdditionalInfoOneOf as f3, type EmailInfo as f4, type PhoneInfo as f5, type AddressInfo as f6, type CustomFieldInfo as f7, type SubscriptionInfo as f8, type _String as f9, type PostSubmissionTriggers as fA, type UpsertContact as fB, type V4FormFieldContactInfo as fC, type V4FormFieldContactInfoAdditionalInfoOneOf as fD, type FormFieldContactInfoEmailInfo as fE, type FormFieldContactInfoPhoneInfo as fF, type FormFieldContactInfoAddressInfo as fG, type FormFieldContactInfoCustomFieldInfo as fH, type FormFieldContactInfoSubscriptionInfo as fI, type NestedForm as fJ, type LimitationRule as fK, type RequiredIndicatorProperties as fL, type SubmitSettings as fM, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fN, type ThankYouMessageOptions as fO, type RedirectOptions as fP, type FieldGroup as fQ, type Rule as fR, type RequiredOptions as fS, type HiddenOptions as fT, type AllowedValuesOptions as fU, type FieldOverride as fV, type FieldOverridePropertyTypeOptionsOneOf as fW, type ConditionNode as fX, type ConditionNodeNodeOneOf as fY, type AndCondition as fZ, type OrCondition as f_, type _StringComponentTypeOptionsOneOf as fa, type _Number as fb, type _NumberComponentTypeOptionsOneOf as fc, type _Boolean as fd, type _BooleanComponentTypeOptionsOneOf as fe, type _Array as ff, type _ArrayComponentTypeOptionsOneOf as fg, type _Object as fh, type WixFile as fi, type WixFileComponentTypeOptionsOneOf as fj, type Payment as fk, type PaymentComponentTypeOptionsOneOf as fl, type Scheduling as fm, type SchedulingComponentTypeOptionsOneOf as fn, type Address as fo, type AddressComponentTypeOptionsOneOf as fp, type ObjectArray as fq, type ObjectArrayComponentTypeOptionsOneOf as fr, type DisplayField as fs, type DisplayFieldDisplayFieldTypeOptionsOneOf as ft, type RichContentOptions as fu, type PageNavigationOptions as fv, type Step as fw, type FormRule as fx, type FormOverride as fy, type FormProperties as fz, type BulkDeleteSubmissionResponse as g, type CursorSearch as g$, type RuleFormOverride as g0, type RuleFormOverrideEntityTypeOptionsOneOf as g1, type Tags as g2, type TagsTagList as g3, type CreateCheckoutFromSubmissionResponse as g4, type Checkout as g5, type IsFormSubmittableRequest as g6, type IsFormSubmittableResponse as g7, type DomainEvent as g8, type DomainEventBodyOneOf as g9, type BulkCreateSubmissionBySubmitterData as gA, type BulkCreateSubmissionBySubmitterResponse as gB, type GetSubmissionRequest as gC, type GetSubmissionResponse as gD, type GetSubmissionByCheckoutIdRequest as gE, type GetSubmissionByCheckoutIdResponse as gF, type UpdateSubmissionRequest as gG, type UpdateSubmissionResponse as gH, type ConfirmSubmissionRequest as gI, type DeleteSubmissionRequest as gJ, type DeleteSubmissionResponse as gK, type BulkDeleteSubmissionRequest as gL, type BulkDeleteSubmissionResult as gM, type RestoreSubmissionFromTrashBinRequest as gN, type RemoveSubmissionFromTrashBinRequest as gO, type RemoveSubmissionFromTrashBinResponse as gP, type BulkRemoveSubmissionFromTrashBinRequest as gQ, type BulkRemoveSubmissionFromTrashBinResult as gR, type ListDeletedSubmissionsRequest as gS, type CursorPaging as gT, type CursorPagingMetadata as gU, type Cursors as gV, type GetDeletedSubmissionRequest as gW, type QuerySubmissionRequest as gX, type CursorQueryPagingMethodOneOf as gY, type Sorting as gZ, type SearchSubmissionsByNamespaceRequest as g_, type EntityCreatedEvent as ga, type RestoreInfo as gb, type EntityUpdatedEvent as gc, type EntityDeletedEvent as gd, type ActionEvent as ge, type Empty as gf, type MessageEnvelope as gg, type IdentificationData as gh, type IdentificationDataIdOneOf as gi, type UpsertContactFromSubmissionRequest as gj, type SubmitContactResponse as gk, type CreateSubmissionRequest as gl, type CreateSubmissionResponse as gm, type SubmissionValidationErrorsDetails as gn, type ValidationError as go, type CreateSubmissionForMigrationRequest as gp, type CreateSubmissionForMigrationResponse as gq, type BulkCreateSubmissionsForMigrationRequest as gr, type BulkCreateSubmissionsForMigrationResponse as gs, type BulkSubmissionResult as gt, type ItemMetadata as gu, type ApplicationError as gv, type BulkActionMetadata as gw, type CreateSubmissionBySubmitterRequest as gx, type CreateSubmissionBySubmitterResponse as gy, type BulkCreateSubmissionBySubmitterRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type CursorSearchPagingMethodOneOf as h0, type SearchDetails as h1, type SearchSubmissionsByNamespaceForExportRequest as h2, type SearchSubmissionsByNamespaceForExportResponse as h3, type QuerySubmissionsByNamespaceRequest as h4, type QuerySubmissionsByNamespaceResponse as h5, type QuerySubmissionsByNamespaceForExportRequest as h6, type QuerySubmissionsByNamespaceForExportResponse as h7, type CountSubmissionsByFilterRequest as h8, type FormSubmissionsCount as h9, type BaseEventMetadata as hA, type EventMetadata as hB, type FormSubmissionSearchSpec as hC, type SubmissionsQueryResult as hD, type FormSubmissionQuerySpec as hE, type SubmissionStatusWithLiterals as hF, type OptInLevelWithLiterals as hG, type StringTypeFormatEnumFormatWithLiterals as hH, type ValidationFormatWithLiterals as hI, type ProductTypeWithLiterals as hJ, type PriceTypeWithLiterals as hK, type FieldTypeWithLiterals as hL, type FormatEnumFormatWithLiterals as hM, type StringComponentTypeWithLiterals as hN, type NodeTypeWithLiterals as hO, type WidthTypeWithLiterals as hP, type PluginContainerDataAlignmentWithLiterals as hQ, type ButtonDataTypeWithLiterals as hR, type LinkTargetWithLiterals as hS, type TextAlignmentWithLiterals as hT, type LineStyleWithLiterals as hU, type WidthWithLiterals as hV, type DividerDataAlignmentWithLiterals as hW, type ViewModeWithLiterals as hX, type LayoutTypeWithLiterals as hY, type OrientationWithLiterals as hZ, type CropWithLiterals as h_, type CountSubmissionsRequest as ha, type CountDeletedSubmissionsRequest as hb, type FormDeletedSubmissionsCount as hc, type GetMediaUploadURLRequest as hd, type BulkMarkSubmissionsAsSeenRequest as he, type GetSubmissionDownloadUrlRequest as hf, type SubmissionDocument as hg, type SubmissionDocumentDocumentOneOf as hh, type DocumentReady as hi, type DownloadSubmissionRequest as hj, type HeadersEntry as hk, type GetFormattedSubmissionRequest as hl, type FormattedSubmission as hm, type ListFormattedSubmissionsRequest as hn, type ListFormattedSubmissionsResponse as ho, type FormattedFormSubmission as hp, type UpdateExtendedFieldsRequest as hq, type BulkUpdateFormSubmissionTagsRequest as hr, type BulkUpdateFormSubmissionTagsResult as hs, type BulkUpdateFormSubmissionTagsByFilterRequest as ht, type ValidateFormSubmissionRequest as hu, type FieldViolation as hv, type FieldViolationErrorDataOneOf as hw, type SubmissionValidationErrors as hx, type SubmissionValidationError as hy, type SubmissionValidationErrorErrorMessageOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type RequiredIndicatorWithLiterals as i$, type GIFTypeWithLiterals as i0, type SourceWithLiterals as i1, type StylesPositionWithLiterals as i2, type MapTypeWithLiterals as i3, type ViewRoleWithLiterals as i4, type VoteRoleWithLiterals as i5, type PollLayoutTypeWithLiterals as i6, type PollLayoutDirectionWithLiterals as i7, type BackgroundTypeWithLiterals as i8, type DecorationTypeWithLiterals as i9, type BooleanComponentTypeWithLiterals as iA, type ItemTypeWithLiterals as iB, type PropertiesTypeEnumWithLiterals as iC, type ArrayComponentTypeWithLiterals as iD, type WixFileComponentTypeWithLiterals as iE, type UploadFileFormatWithLiterals as iF, type PaymentComponentTypeWithLiterals as iG, type ComponentTypeWithLiterals as iH, type TypeWithLiterals as iI, type ObjectArrayComponentTypeWithLiterals as iJ, type SchedulingComponentTypeWithLiterals as iK, type FormatWithLiterals as iL, type InputTypeWithLiterals as iM, type EmailInfoTagWithLiterals as iN, type PhoneInfoTagWithLiterals as iO, type TagWithLiterals as iP, type ConfirmationLevelWithLiterals as iQ, type ContactFieldWithLiterals as iR, type DisplayFieldTypeWithLiterals as iS, type OverrideEntityTypeWithLiterals as iT, type KindWithLiterals as iU, type FormFieldContactInfoEmailInfoTagWithLiterals as iV, type FormFieldContactInfoPhoneInfoTagWithLiterals as iW, type AddressInfoTagWithLiterals as iX, type SubscriptionInfoOptInLevelWithLiterals as iY, type FormFieldContactInfoContactFieldWithLiterals as iZ, type SpamFilterProtectionLevelWithLiterals as i_, type FontTypeWithLiterals as ia, type PositionWithLiterals as ib, type AspectRatioWithLiterals as ic, type ResizingWithLiterals as id, type PlacementWithLiterals as ie, type CardStylesTypeWithLiterals as ig, type CardStylesAlignmentWithLiterals as ih, type LayoutWithLiterals as ii, type AppTypeWithLiterals as ij, type InitialExpandedItemsWithLiterals as ik, type DirectionWithLiterals as il, type VerticalAlignmentWithLiterals as im, type NullValueWithLiterals as io, type ScalingWithLiterals as ip, type LayoutDataImagePositionWithLiterals as iq, type VerticalAlignmentAlignmentWithLiterals as ir, type ResponsivenessBehaviourWithLiterals as is, type DesignTargetWithLiterals as it, type ImagePositionWithLiterals as iu, type AlignmentWithLiterals as iv, type ImageFitWithLiterals as iw, type NumberOfColumnsWithLiterals as ix, type FirstDayOfWeekWithLiterals as iy, type NumberComponentTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type RequiredIndicatorPlacementWithLiterals as j0, type TargetWithLiterals as j1, type SubmitSuccessActionWithLiterals as j2, type ChangeablePropertyWithLiterals as j3, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j4, type OperatorWithLiterals as j5, type WebhookIdentityTypeWithLiterals as j6, type IdentityTypeWithLiterals as j7, type ErrorTypeWithLiterals as j8, type SortOrderWithLiterals as j9, countSubmissionsByFilter as jA, countSubmissions as jB, countDeletedSubmissions as jC, getMediaUploadUrl as jD, bulkMarkSubmissionsAsSeen as jE, getSubmissionDownloadUrl as jF, downloadSubmission as jG, getFormattedSubmission as jH, updateExtendedFields as jI, bulkUpdateFormSubmissionTags as jJ, bulkUpdateFormSubmissionTagsByFilter as jK, validateFormSubmission as jL, type ModeWithLiterals as ja, type StatusWithLiterals as jb, type SubmissionErrorTypeWithLiterals as jc, type CommonSearchWithEntityContext as jd, type CommonQueryWithEntityContext as je, onSubmissionCreated as jf, onSubmissionDeleted as jg, onSubmissionRemovedSubmissionFromTrash as jh, onSubmissionStatusUpdated as ji, onSubmissionContactMapped as jj, onSubmissionContactMappingSkipped as jk, onSubmissionUpdated as jl, upsertContactFromSubmission as jm, createSubmission as jn, getSubmission as jo, updateSubmission as jp, confirmSubmission as jq, deleteSubmission as jr, bulkDeleteSubmission as js, restoreSubmissionFromTrashBin as jt, removeSubmissionFromTrashBin as ju, bulkRemoveSubmissionFromTrashBin as jv, listDeletedSubmissions as jw, getDeletedSubmission as jx, querySubmission as jy, querySubmissionsByNamespace 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 { gd as ActionEvent, fn as Address, fo as AddressComponentTypeOptionsOneOf, f5 as AddressInfo, be as AddressInfoTag, iV as AddressInfoTagWithLiterals, eK as AddressLine2, aO as Alignment, it as AlignmentWithLiterals, fT as AllowedValuesOptions, dt as AnchorData, fY as AndCondition, dA as AppEmbedData, dB as AppEmbedDataAppDataOneOf, aE as AppType, ii as AppTypeWithLiterals, gu as ApplicationError, eW as Appointment, eX as AppointmentFormatInfoOneOf, aW as ArrayComponentType, iB as ArrayComponentTypeWithLiterals, c1 as ArrayErrorMessages, et as ArrayItems, eu as ArrayItemsItemTypeOptionsOneOf, ep as ArrayType, b$ as ArrayTypeArrayItems, c0 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ib as AspectRatioWithLiterals, dV as AudioData, di as Background, dj as BackgroundBackgroundOneOf, d$ as BackgroundImage, au as BackgroundType, i7 as BackgroundTypeWithLiterals, hz as BaseEventMetadata, dY as BlockquoteData, dC as BookingData, aT as BooleanComponentType, iy as BooleanComponentTypeWithLiterals, bV as BooleanErrorMessages, en as BooleanType, cy as Border, dS as BorderColors, dT as BorderWidths, eQ as BreakPoint, gv as BulkActionMetadata, gz as BulkCreateSubmissionBySubmitterData, gy as BulkCreateSubmissionBySubmitterRequest, gA as BulkCreateSubmissionBySubmitterResponse, gq as BulkCreateSubmissionsForMigrationRequest, gr as BulkCreateSubmissionsForMigrationResponse, gK as BulkDeleteSubmissionRequest, gL as BulkDeleteSubmissionResult, hd as BulkMarkSubmissionsAsSeenRequest, gP as BulkRemoveSubmissionFromTrashBinRequest, gQ as BulkRemoveSubmissionFromTrashBinResult, gs as BulkSubmissionResult, hs as BulkUpdateFormSubmissionTagsByFilterRequest, hq as BulkUpdateFormSubmissionTagsRequest, hr as BulkUpdateFormSubmissionTagsResult, dX as BulletedListData, cx as ButtonData, ab as ButtonDataType, hQ as ButtonDataTypeWithLiterals, dE as ButtonStyles, dZ as CaptionData, dH as CardStyles, aC as CardStylesAlignment, ig as CardStylesAlignmentWithLiterals, aB as CardStylesType, ie as CardStylesTypeWithLiterals, dR as CellStyle, bm as ChangeableProperty, j1 as ChangeablePropertyWithLiterals, eo as Checkbox, ev as CheckboxGroup, g4 as Checkout, cJ as CodeBlockData, dN as CollapsibleListData, du as ColorData, cz as Colors, jc as CommonQueryWithEntityContext, jb as CommonSearchWithEntityContext, a_ as ComponentType, iF as ComponentTypeWithLiterals, ex as ComponentsTags, f_ as Condition, fW as ConditionNode, fX as ConditionNodeNodeOneOf, gH as ConfirmSubmissionRequest, b7 as ConfirmationLevel, iO as ConfirmationLevelWithLiterals, b8 as ContactField, iP as ContactFieldWithLiterals, ha as CountDeletedSubmissionsRequest, h7 as CountSubmissionsByFilterRequest, h9 as CountSubmissionsRequest, bH as CreateCheckoutFromSubmissionRequest, bI as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g3 as CreateCheckoutFromSubmissionResponse, gw as CreateSubmissionBySubmitterRequest, gx as CreateSubmissionBySubmitterResponse, go as CreateSubmissionForMigrationRequest, gp as CreateSubmissionForMigrationResponse, gk as CreateSubmissionRequest, gl as CreateSubmissionResponse, ak as Crop, hZ as CropWithLiterals, gS as CursorPaging, gT as CursorPagingMetadata, gX as CursorQueryPagingMethodOneOf, g_ as CursorSearch, g$ as CursorSearchPagingMethodOneOf, gU as Cursors, f6 as CustomFieldInfo, e9 as CustomOption, ch as DataExtensionsDetails, ee as DateInput, eg as DatePicker, cp as DateTimeConstraints, ec as DateTimeInput, dr as Decoration, ds as DecorationDataOneOf, av as DecorationType, i8 as DecorationTypeWithLiterals, eL as DefaultCountryConfig, eM as DefaultCountryConfigOptionsOneOf, gI as DeleteSubmissionRequest, gJ as DeleteSubmissionResponse, dp as Design, dP as Dimensions, aG as Direction, ik as DirectionWithLiterals, fr as DisplayField, fs as DisplayFieldDisplayFieldTypeOptionsOneOf, b9 as DisplayFieldType, iQ as DisplayFieldTypeWithLiterals, cL as DividerData, ag as DividerDataAlignment, hV as DividerDataAlignmentWithLiterals, hh as DocumentReady, e2 as DocumentStyle, g7 as DomainEvent, g8 as DomainEventBodyOneOf, eF as DonationInput, eG as DonationInputOption, hi as DownloadSubmissionRequest, ea as Dropdown, eb as DropdownOption, c7 as DynamicPriceOptions, f3 as EmailInfo, b4 as EmailInfoTag, iL as EmailInfoTagWithLiterals, dL as EmbedData, ge as Empty, g9 as EntityCreatedEvent, gc as EntityDeletedEvent, gb as EntityUpdatedEvent, br as ErrorType, j6 as ErrorTypeWithLiterals, dD as EventData, hA as EventMetadata, by as ExtendedFields, cj as Field, ck as FieldFieldTypeOptionsOneOf, fP as FieldGroup, fU as FieldOverride, fV as FieldOverridePropertyTypeOptionsOneOf, cb as FieldOverrides, a5 as FieldType, hK as FieldTypeWithLiterals, hu as FieldViolation, hv as FieldViolationErrorDataOneOf, cc as FieldsOverrides, eN as FieldsSettings, cM as FileData, cN as FileSource, cO as FileSourceDataOneOf, eA as FileType, eB as FileUpload, aR as FirstDayOfWeek, iw as FirstDayOfWeekWithLiterals, eI as FixedPayment, c6 as FixedPriceOptions, dz as FontFamilyData, dx as FontSizeData, aw as FontType, i9 as FontTypeWithLiterals, bJ as Form, hb as FormDeletedSubmissionsCount, bK as FormField, bW as FormFieldArrayType, bU as FormFieldBooleanType, f1 as FormFieldContactInfo, f2 as FormFieldContactInfoAdditionalInfoOneOf, fF as FormFieldContactInfoAddressInfo, bg as FormFieldContactInfoContactField, iX as FormFieldContactInfoContactFieldWithLiterals, fG as FormFieldContactInfoCustomFieldInfo, fD as FormFieldContactInfoEmailInfo, bc as FormFieldContactInfoEmailInfoTag, iT as FormFieldContactInfoEmailInfoTagWithLiterals, fE as FormFieldContactInfoPhoneInfo, bd as FormFieldContactInfoPhoneInfoTag, iU as FormFieldContactInfoPhoneInfoTagWithLiterals, fH as FormFieldContactInfoSubscriptionInfo, bR as FormFieldNumberType, bX as FormFieldObjectType, bL as FormFieldStringType, bM as FormFieldStringTypeFormatOptionsOneOf, eP as FormLayout, fx as FormOverride, fy as FormProperties, fw as FormRule, hD as FormSubmissionQuerySpec, hB as FormSubmissionSearchSpec, bC as FormSubmissionStatusUpdatedEvent, h8 as FormSubmissionsCount, b2 as Format, a6 as FormatEnumFormat, hL as FormatEnumFormatWithLiterals, iJ as FormatWithLiterals, ho as FormattedFormSubmission, hl as FormattedSubmission, c$ as GIF, c_ as GIFData, am as GIFType, h$ as GIFTypeWithLiterals, cQ as GalleryData, cW as GalleryOptions, cX 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, dh as Gradient, eT as Group, d1 as HTMLData, d2 as HTMLDataDataOneOf, hj as HeadersEntry, d0 as HeadingData, cE as Height, fS as HiddenOptions, gg as IdentificationData, gh as IdentificationDataIdOneOf, bq as IdentityType, j5 as IdentityTypeWithLiterals, cS as Image, d3 as ImageData, d5 as ImageDataStyles, aP as ImageFit, iu as ImageFitWithLiterals, aN as ImagePosition, is as ImagePositionWithLiterals, dF as ImageStyles, e_ as InPersonOptions, aF as InitialExpandedItems, ij as InitialExpandedItemsWithLiterals, cl as InputField, cm as InputFieldInputTypeOptionsOneOf, b3 as InputType, iK as InputTypeWithLiterals, bT as IntegerType, g5 as IsFormSubmittableRequest, g6 as IsFormSubmittableResponse, cU as Item, cV as ItemDataOneOf, eR as ItemLayout, eS as ItemLayoutItemOneOf, gt as ItemMetadata, cY as ItemStyle, aU as ItemType, iz as ItemTypeWithLiterals, bb as Kind, iS as KindWithLiterals, aD as Layout, e0 as LayoutCellData, d_ as LayoutData, aK as LayoutDataImagePosition, ip as LayoutDataImagePositionWithLiterals, ai as LayoutType, hX as LayoutTypeWithLiterals, ih as LayoutWithLiterals, fJ as LimitationRule, ae as LineStyle, hT as LineStyleWithLiterals, cG as Link, dv as LinkData, cH as LinkDataOneOf, d6 as LinkPreviewData, d7 as LinkPreviewDataStyles, ac as LinkTarget, hR as LinkTargetWithLiterals, gR as ListDeletedSubmissionsRequest, hm as ListFormattedSubmissionsRequest, hn as ListFormattedSubmissionsResponse, dU as ListValue, eY as Location, eZ as LocationLocationInfoOneOf, d8 as MapData, d9 as MapSettings, ap as MapType, i2 as MapTypeWithLiterals, eU as Margin, bF as MarketingSubscriptionDetails, cR as Media, e4 as MediaItem, e5 as MediaItemMediaOneOf, e6 as MediaSettings, dw as MentionData, gf as MessageEnvelope, e1 as Metadata, bt as Mode, j8 as ModeWithLiterals, eJ as MultilineAddress, ca as MultilineAddressValidation, fI as NestedForm, ce as NestedFormFieldOverrides, ci as NestedFormOverrides, cu as Node, cv as NodeDataOneOf, cw as NodeStyle, a8 as NodeType, hN as NodeTypeWithLiterals, aI as NullValue, im as NullValueWithLiterals, aS as NumberComponentType, ix as NumberComponentTypeWithLiterals, bS as NumberErrorMessages, el as NumberInput, aQ as NumberOfColumns, iv as NumberOfColumnsWithLiterals, ek as NumberType, fp as ObjectArray, b0 as ObjectArrayComponentType, fq as ObjectArrayComponentTypeOptionsOneOf, iH as ObjectArrayComponentTypeWithLiterals, cd as ObjectArrayType, b_ as ObjectErrorMessages, eq as ObjectType, bY as ObjectTypePropertiesType, bZ as ObjectTypePropertiesTypePropertiesTypeOneOf, dM as Oembed, bo as Operator, j3 as OperatorWithLiterals, a0 as OptInLevel, hF as OptInLevelWithLiterals, ew as Option, dl as OptionDesign, dg as OptionLayout, fZ as OrCondition, bz as OrderDetails, dW as OrderedListData, aj as Orientation, hY as OrientationWithLiterals, ba as OverrideEntityType, bn as OverrideEntityTypeEnumOverrideEntityType, j2 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iR as OverrideEntityTypeWithLiterals, cP as PDFSettings, fu as PageNavigationOptions, da as ParagraphData, ej as Password, fj as Payment, aZ as PaymentComponentType, fk as PaymentComponentTypeOptionsOneOf, iE as PaymentComponentTypeWithLiterals, eH as PaymentInput, c4 as PaymentType, dc as Permissions, cq as PhoneConstraints, f4 as PhoneInfo, b5 as PhoneInfoTag, iM as PhoneInfoTagWithLiterals, ed as PhoneInput, f0 as PhoneOptions, aA as Placement, id as PlacementWithLiterals, dK as PlaybackOptions, cA as PluginContainerData, aa as PluginContainerDataAlignment, hP as PluginContainerDataAlignmentWithLiterals, cB as PluginContainerDataWidth, cC as PluginContainerDataWidthDataOneOf, dm as Poll, db as PollData, dn as PollDataLayout, dk as PollDesign, df as PollLayout, at as PollLayoutDirection, i6 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i5 as PollLayoutTypeWithLiterals, dd as PollOption, ax as Position, ia as PositionWithLiterals, fz as PostSubmissionTriggers, c2 as PredefinedValidation, c3 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hJ as PriceTypeWithLiterals, dI as PricingData, c8 as Product, eD as ProductCheckboxGroup, eE as ProductCheckboxGroupOption, c9 as ProductPriceOptionsOneOf, a3 as ProductType, hI as ProductTypeWithLiterals, er as PropertiesType, aV as PropertiesTypeEnum, iA as PropertiesTypeEnumWithLiterals, es as PropertiesTypePropertiesTypeOptionsOneOf, bA as PublicTags, c5 as QuantityLimit, gW as QuerySubmissionRequest, h5 as QuerySubmissionsByNamespaceForExportRequest, h6 as QuerySubmissionsByNamespaceForExportResponse, h3 as QuerySubmissionsByNamespaceRequest, h4 as QuerySubmissionsByNamespaceResponse, e7 as RadioGroup, e8 as RadioGroupOption, em as RatingInput, fO as RedirectOptions, cI as Rel, gN as RemoveSubmissionFromTrashBinRequest, gO as RemoveSubmissionFromTrashBinResponse, bD as RemovedSubmissionFromTrash, eO as Repeater, bi as RequiredIndicator, bj as RequiredIndicatorPlacement, i_ as RequiredIndicatorPlacementWithLiterals, fK as RequiredIndicatorProperties, iZ as RequiredIndicatorWithLiterals, fR as RequiredOptions, az as Resizing, ic as ResizingWithLiterals, aM as ResponsivenessBehaviour, ir as ResponsivenessBehaviourWithLiterals, ga as RestoreInfo, gM as RestoreSubmissionFromTrashBinRequest, dG as RibbonStyles, ct as RichContent, ft as RichContentOptions, fQ as Rule, f$ as RuleFormOverride, g0 as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, io as ScalingWithLiterals, fl as Scheduling, b1 as SchedulingComponentType, fm as SchedulingComponentTypeOptionsOneOf, iI as SchedulingComponentTypeWithLiterals, h0 as SearchDetails, h1 as SearchSubmissionsByNamespaceForExportRequest, h2 as SearchSubmissionsByNamespaceForExportResponse, gZ as SearchSubmissionsByNamespaceRequest, eV as Section, ei as ServiceOption, ez as ServicesCheckboxGroup, eh as ServicesDropdown, de as Settings, eC as Signature, bs as SortOrder, j7 as SortOrderWithLiterals, gY as Sorting, an as Source, i0 as SourceWithLiterals, bh as SpamFilterProtectionLevel, iY as SpamFilterProtectionLevelWithLiterals, cD as Spoiler, dy as SpoilerData, bu as Status, j9 as StatusWithLiterals, fv as Step, a7 as StringComponentType, hM as StringComponentTypeWithLiterals, bN as StringErrorMessages, cn as StringType, bO as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hG as StringTypeFormatEnumFormatWithLiterals, co as StringTypeFormatOptionsOneOf, bP as StringTypePhoneConstraints, bQ as StringTypeValidationMessages, cF as Styles, d4 as StylesBorder, ao as StylesPosition, i1 as StylesPositionWithLiterals, bE as SubmissionContactMapped, bG as SubmissionContactMappingSkipped, hf as SubmissionDocument, hg as SubmissionDocumentDocumentOneOf, bv as SubmissionErrorType, ja as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hE as SubmissionStatusWithLiterals, hx as SubmissionValidationError, hy as SubmissionValidationErrorErrorMessageOneOf, hw as SubmissionValidationErrors, gm as SubmissionValidationErrorsDetails, hC as SubmissionsQueryResult, gj as SubmitContactResponse, fL as SubmitSettings, fM as SubmitSettingsSubmitSuccessActionOptionsOneOf, bl as SubmitSuccessAction, j0 as SubmitSuccessActionWithLiterals, bw as Submitter, bx as SubmitterSubmitterOneOf, f7 as SubscriptionInfo, bf as SubscriptionInfoOptInLevel, iW as SubscriptionInfoOptInLevelWithLiterals, dQ as TableCellData, dO as TableData, b6 as Tag, bB as TagList, iN as TagWithLiterals, g1 as Tags, ey as TagsOption, g2 as TagsTagList, bk as Target, i$ as TargetWithLiterals, ad as TextAlignment, hS as TextAlignmentWithLiterals, dq as TextData, cs as TextInput, e3 as TextNodeStyle, cK as TextStyle, fN as ThankYouMessageOptions, cZ as Thumbnails, al as ThumbnailsAlignment, h_ as ThumbnailsAlignmentWithLiterals, ef as TimeInput, a$ as Type, iG as TypeWithLiterals, hp as UpdateExtendedFieldsRequest, gF as UpdateSubmissionRequest, gG as UpdateSubmissionResponse, aY as UploadFileFormat, iD as UploadFileFormatWithLiterals, fA as UpsertContact, gi as UpsertContactFromSubmissionRequest, fB as V4FormFieldContactInfo, fC as V4FormFieldContactInfoAdditionalInfoOneOf, ht as ValidateFormSubmissionRequest, cf as Validation, gn as ValidationError, a2 as ValidationFormat, hH as ValidationFormatWithLiterals, cr as ValidationMessages, cg as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, iq as VerticalAlignmentAlignmentWithLiterals, il as VerticalAlignmentWithLiterals, cT as Video, e$ as VideoConferenceOptions, dJ as VideoData, ah as ViewMode, hW as ViewModeWithLiterals, aq as ViewRole, i3 as ViewRoleWithLiterals, ar as VoteRole, i4 as VoteRoleWithLiterals, bp as WebhookIdentityType, j4 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hO as WidthTypeWithLiterals, hU as WidthWithLiterals, fh as WixFile, aX as WixFileComponentType, fi as WixFileComponentTypeOptionsOneOf, iC as WixFileComponentTypeWithLiterals, fe as _Array, ff as _ArrayComponentTypeOptionsOneOf, fc as _Boolean, fd as _BooleanComponentTypeOptionsOneOf, fa as _Number, fb as _NumberComponentTypeOptionsOneOf, fg as _Object, f8 as _String, f9 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-IKRWXge_.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-nj5TA1wa.mjs';
|
|
3
|
+
export { ge as ActionEvent, fo as Address, fp as AddressComponentTypeOptionsOneOf, f6 as AddressInfo, bf as AddressInfoTag, iX as AddressInfoTagWithLiterals, eL as AddressLine2, aP as Alignment, iv as AlignmentWithLiterals, fU as AllowedValuesOptions, du as AnchorData, fZ as AndCondition, dB as AppEmbedData, dC as AppEmbedDataAppDataOneOf, aE as AppType, ij as AppTypeWithLiterals, gv as ApplicationError, eX as Appointment, eY as AppointmentFormatInfoOneOf, aX as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, c2 as ArrayErrorMessages, eu as ArrayItems, ev as ArrayItemsItemTypeOptionsOneOf, eq as ArrayType, c0 as ArrayTypeArrayItems, c1 as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, ic as AspectRatioWithLiterals, dW as AudioData, dj as Background, dk as BackgroundBackgroundOneOf, e0 as BackgroundImage, au as BackgroundType, i8 as BackgroundTypeWithLiterals, hA as BaseEventMetadata, dZ as BlockquoteData, dD as BookingData, aU as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, bW as BooleanErrorMessages, eo as BooleanType, cz as Border, dT as BorderColors, dU as BorderWidths, eR as BreakPoint, gw as BulkActionMetadata, gA as BulkCreateSubmissionBySubmitterData, gz as BulkCreateSubmissionBySubmitterRequest, gB as BulkCreateSubmissionBySubmitterResponse, gr as BulkCreateSubmissionsForMigrationRequest, gs as BulkCreateSubmissionsForMigrationResponse, gL as BulkDeleteSubmissionRequest, gM as BulkDeleteSubmissionResult, he as BulkMarkSubmissionsAsSeenRequest, gQ as BulkRemoveSubmissionFromTrashBinRequest, gR as BulkRemoveSubmissionFromTrashBinResult, gt as BulkSubmissionResult, ht as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsRequest, hs as BulkUpdateFormSubmissionTagsResult, dY as BulletedListData, cy as ButtonData, ab as ButtonDataType, hR as ButtonDataTypeWithLiterals, dF as ButtonStyles, d_ as CaptionData, dI as CardStyles, aC as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, aB as CardStylesType, ig as CardStylesTypeWithLiterals, dS as CellStyle, bn as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, ep as Checkbox, ew as CheckboxGroup, g5 as Checkout, cK as CodeBlockData, dO as CollapsibleListData, dv as ColorData, cA as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, a$ as ComponentType, iH as ComponentTypeWithLiterals, ey as ComponentsTags, f$ as Condition, fX as ConditionNode, fY as ConditionNodeNodeOneOf, gI as ConfirmSubmissionRequest, b8 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, b9 as ContactField, iR as ContactFieldWithLiterals, hb as CountDeletedSubmissionsRequest, h8 as CountSubmissionsByFilterRequest, ha as CountSubmissionsRequest, bI as CreateCheckoutFromSubmissionRequest, bJ as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g4 as CreateCheckoutFromSubmissionResponse, gx as CreateSubmissionBySubmitterRequest, gy as CreateSubmissionBySubmitterResponse, gp as CreateSubmissionForMigrationRequest, gq as CreateSubmissionForMigrationResponse, gl as CreateSubmissionRequest, gm as CreateSubmissionResponse, ak as Crop, h_ as CropWithLiterals, gT as CursorPaging, gU as CursorPagingMetadata, gY as CursorQueryPagingMethodOneOf, g$ as CursorSearch, h0 as CursorSearchPagingMethodOneOf, gV as Cursors, f7 as CustomFieldInfo, ea as CustomOption, ci as DataExtensionsDetails, ef as DateInput, eh as DatePicker, cq as DateTimeConstraints, ed as DateTimeInput, ds as Decoration, dt as DecorationDataOneOf, av as DecorationType, i9 as DecorationTypeWithLiterals, eM as DefaultCountryConfig, eN as DefaultCountryConfigOptionsOneOf, gJ as DeleteSubmissionRequest, gK as DeleteSubmissionResponse, dq as Design, aN as DesignTarget, it as DesignTargetWithLiterals, dQ as Dimensions, aG as Direction, il as DirectionWithLiterals, fs as DisplayField, ft as DisplayFieldDisplayFieldTypeOptionsOneOf, ba as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cM as DividerData, ag as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, hi as DocumentReady, e3 as DocumentStyle, g8 as DomainEvent, g9 as DomainEventBodyOneOf, eG as DonationInput, eH as DonationInputOption, hj as DownloadSubmissionRequest, eb as Dropdown, ec as DropdownOption, c8 as DynamicPriceOptions, f4 as EmailInfo, b5 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dM as EmbedData, gf as Empty, ga as EntityCreatedEvent, gd as EntityDeletedEvent, gc as EntityUpdatedEvent, bs as ErrorType, j8 as ErrorTypeWithLiterals, dE as EventData, hB as EventMetadata, bz as ExtendedFields, ck as Field, cl as FieldFieldTypeOptionsOneOf, fQ as FieldGroup, fV as FieldOverride, fW as FieldOverridePropertyTypeOptionsOneOf, cc as FieldOverrides, a5 as FieldType, hL as FieldTypeWithLiterals, hv as FieldViolation, hw as FieldViolationErrorDataOneOf, cd as FieldsOverrides, eO as FieldsSettings, cN as FileData, cO as FileSource, cP as FileSourceDataOneOf, eB as FileType, eC as FileUpload, aS as FirstDayOfWeek, iy as FirstDayOfWeekWithLiterals, eJ as FixedPayment, c7 as FixedPriceOptions, dA as FontFamilyData, dy as FontSizeData, aw as FontType, ia as FontTypeWithLiterals, bK as Form, hc as FormDeletedSubmissionsCount, bL as FormField, bX as FormFieldArrayType, bV as FormFieldBooleanType, f2 as FormFieldContactInfo, f3 as FormFieldContactInfoAdditionalInfoOneOf, fG as FormFieldContactInfoAddressInfo, bh as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fH as FormFieldContactInfoCustomFieldInfo, fE as FormFieldContactInfoEmailInfo, bd as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fF as FormFieldContactInfoPhoneInfo, be as FormFieldContactInfoPhoneInfoTag, iW as FormFieldContactInfoPhoneInfoTagWithLiterals, fI as FormFieldContactInfoSubscriptionInfo, bS as FormFieldNumberType, bY as FormFieldObjectType, bM as FormFieldStringType, bN as FormFieldStringTypeFormatOptionsOneOf, eQ as FormLayout, fy as FormOverride, fz as FormProperties, fx as FormRule, hE as FormSubmissionQuerySpec, hC as FormSubmissionSearchSpec, bD as FormSubmissionStatusUpdatedEvent, h9 as FormSubmissionsCount, b3 as Format, a6 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, hp as FormattedFormSubmission, hm as FormattedSubmission, d0 as GIF, c$ as GIFData, am as GIFType, i0 as GIFTypeWithLiterals, cR as GalleryData, cX as GalleryOptions, cY as GalleryOptionsLayout, gW as GetDeletedSubmissionRequest, hl as GetFormattedSubmissionRequest, hd as GetMediaUploadURLRequest, gE as GetSubmissionByCheckoutIdRequest, gF as GetSubmissionByCheckoutIdResponse, hf as GetSubmissionDownloadUrlRequest, gC as GetSubmissionRequest, gD as GetSubmissionResponse, di as Gradient, eU as Group, d2 as HTMLData, d3 as HTMLDataDataOneOf, hk as HeadersEntry, d1 as HeadingData, cF as Height, fT as HiddenOptions, gh as IdentificationData, gi as IdentificationDataIdOneOf, br as IdentityType, j7 as IdentityTypeWithLiterals, cT as Image, d4 as ImageData, d6 as ImageDataStyles, aQ as ImageFit, iw as ImageFitWithLiterals, aO as ImagePosition, iu as ImagePositionWithLiterals, dG as ImageStyles, e$ as InPersonOptions, aF as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, cm as InputField, cn as InputFieldInputTypeOptionsOneOf, b4 as InputType, iM as InputTypeWithLiterals, bU as IntegerType, g6 as IsFormSubmittableRequest, g7 as IsFormSubmittableResponse, cV as Item, cW as ItemDataOneOf, eS as ItemLayout, eT as ItemLayoutItemOneOf, gu as ItemMetadata, cZ as ItemStyle, aV as ItemType, iB as ItemTypeWithLiterals, bc as Kind, iU as KindWithLiterals, aD as Layout, e1 as LayoutCellData, d$ as LayoutData, aK as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, ai as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fK as LimitationRule, ae as LineStyle, hU as LineStyleWithLiterals, cH as Link, dw as LinkData, cI as LinkDataOneOf, d7 as LinkPreviewData, d8 as LinkPreviewDataStyles, ac as LinkTarget, hS as LinkTargetWithLiterals, gS as ListDeletedSubmissionsRequest, hn as ListFormattedSubmissionsRequest, ho as ListFormattedSubmissionsResponse, dV as ListValue, eZ as Location, e_ as LocationLocationInfoOneOf, d9 as MapData, da as MapSettings, ap as MapType, i3 as MapTypeWithLiterals, eV as Margin, bG as MarketingSubscriptionDetails, cS as Media, e5 as MediaItem, e6 as MediaItemMediaOneOf, e7 as MediaSettings, dx as MentionData, gg as MessageEnvelope, e2 as Metadata, bu as Mode, ja as ModeWithLiterals, eK as MultilineAddress, cb as MultilineAddressValidation, fJ as NestedForm, cf as NestedFormFieldOverrides, cj as NestedFormOverrides, cv as Node, cw as NodeDataOneOf, cx as NodeStyle, a8 as NodeType, hO as NodeTypeWithLiterals, aI as NullValue, io as NullValueWithLiterals, aT as NumberComponentType, iz as NumberComponentTypeWithLiterals, bT as NumberErrorMessages, em as NumberInput, aR as NumberOfColumns, ix as NumberOfColumnsWithLiterals, el as NumberType, fq as ObjectArray, b1 as ObjectArrayComponentType, fr as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, ce as ObjectArrayType, b$ as ObjectErrorMessages, er as ObjectType, bZ as ObjectTypePropertiesType, b_ as ObjectTypePropertiesTypePropertiesTypeOneOf, dN as Oembed, bp as Operator, j5 as OperatorWithLiterals, a0 as OptInLevel, hG as OptInLevelWithLiterals, ex as Option, dm as OptionDesign, dh as OptionLayout, f_ as OrCondition, bA as OrderDetails, dX as OrderedListData, aj as Orientation, hZ as OrientationWithLiterals, bb as OverrideEntityType, bo as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, cQ as PDFSettings, fv as PageNavigationOptions, db as ParagraphData, ek as Password, fk as Payment, a_ as PaymentComponentType, fl as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eI as PaymentInput, c5 as PaymentType, dd as Permissions, cr as PhoneConstraints, f5 as PhoneInfo, b6 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ee as PhoneInput, f1 as PhoneOptions, aA as Placement, ie as PlacementWithLiterals, dL as PlaybackOptions, cB as PluginContainerData, aa as PluginContainerDataAlignment, hQ as PluginContainerDataAlignmentWithLiterals, cC as PluginContainerDataWidth, cD as PluginContainerDataWidthDataOneOf, dn as Poll, dc as PollData, dp as PollDataLayout, dl as PollDesign, dg as PollLayout, at as PollLayoutDirection, i7 as PollLayoutDirectionWithLiterals, as as PollLayoutType, i6 as PollLayoutTypeWithLiterals, de as PollOption, ax as Position, ib as PositionWithLiterals, fA as PostSubmissionTriggers, c3 as PredefinedValidation, c4 as PredefinedValidationFormatOptionsOneOf, a4 as PriceType, hK as PriceTypeWithLiterals, dJ as PricingData, c9 as Product, eE as ProductCheckboxGroup, eF as ProductCheckboxGroupOption, ca as ProductPriceOptionsOneOf, a3 as ProductType, hJ as ProductTypeWithLiterals, es as PropertiesType, aW as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, et as PropertiesTypePropertiesTypeOptionsOneOf, bB as PublicTags, c6 as QuantityLimit, gX as QuerySubmissionRequest, h6 as QuerySubmissionsByNamespaceForExportRequest, h7 as QuerySubmissionsByNamespaceForExportResponse, h4 as QuerySubmissionsByNamespaceRequest, h5 as QuerySubmissionsByNamespaceResponse, e8 as RadioGroup, e9 as RadioGroupOption, en as RatingInput, fP as RedirectOptions, cJ as Rel, gO as RemoveSubmissionFromTrashBinRequest, gP as RemoveSubmissionFromTrashBinResponse, bE as RemovedSubmissionFromTrash, eP as Repeater, bj as RequiredIndicator, bk as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fL as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, fS as RequiredOptions, az as Resizing, id as ResizingWithLiterals, aM as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, gb as RestoreInfo, gN as RestoreSubmissionFromTrashBinRequest, dH as RibbonStyles, cu as RichContent, fu as RichContentOptions, fR as Rule, g0 as RuleFormOverride, g1 as RuleFormOverrideEntityTypeOptionsOneOf, aJ as Scaling, ip as ScalingWithLiterals, fm as Scheduling, b2 as SchedulingComponentType, fn as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, h1 as SearchDetails, h2 as SearchSubmissionsByNamespaceForExportRequest, h3 as SearchSubmissionsByNamespaceForExportResponse, g_ as SearchSubmissionsByNamespaceRequest, eW as Section, ej as ServiceOption, eA as ServicesCheckboxGroup, ei as ServicesDropdown, df as Settings, eD as Signature, bt as SortOrder, j9 as SortOrderWithLiterals, gZ as Sorting, an as Source, i1 as SourceWithLiterals, bi as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cE as Spoiler, dz as SpoilerData, bv as Status, jb as StatusWithLiterals, fw as Step, a7 as StringComponentType, hN as StringComponentTypeWithLiterals, bO as StringErrorMessages, co as StringType, bP as StringTypeDateTimeConstraints, a1 as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cp as StringTypeFormatOptionsOneOf, bQ as StringTypePhoneConstraints, bR as StringTypeValidationMessages, cG as Styles, d5 as StylesBorder, ao as StylesPosition, i2 as StylesPositionWithLiterals, bF as SubmissionContactMapped, bH as SubmissionContactMappingSkipped, hg as SubmissionDocument, hh as SubmissionDocumentDocumentOneOf, bw as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, $ as SubmissionStatus, hF as SubmissionStatusWithLiterals, hy as SubmissionValidationError, hz as SubmissionValidationErrorErrorMessageOneOf, hx as SubmissionValidationErrors, gn as SubmissionValidationErrorsDetails, hD as SubmissionsQueryResult, gk as SubmitContactResponse, fM as SubmitSettings, fN as SubmitSettingsSubmitSuccessActionOptionsOneOf, bm as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bx as Submitter, by as SubmitterSubmitterOneOf, f8 as SubscriptionInfo, bg as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, dR as TableCellData, dP as TableData, b7 as Tag, bC as TagList, iP as TagWithLiterals, g2 as Tags, ez as TagsOption, g3 as TagsTagList, bl as Target, j1 as TargetWithLiterals, ad as TextAlignment, hT as TextAlignmentWithLiterals, dr as TextData, ct as TextInput, e4 as TextNodeStyle, cL as TextStyle, fO as ThankYouMessageOptions, c_ as Thumbnails, al as ThumbnailsAlignment, h$ as ThumbnailsAlignmentWithLiterals, eg as TimeInput, b0 as Type, iI as TypeWithLiterals, hq as UpdateExtendedFieldsRequest, gG as UpdateSubmissionRequest, gH as UpdateSubmissionResponse, aZ as UploadFileFormat, iF as UploadFileFormatWithLiterals, fB as UpsertContact, gj as UpsertContactFromSubmissionRequest, fC as V4FormFieldContactInfo, fD as V4FormFieldContactInfoAdditionalInfoOneOf, hu as ValidateFormSubmissionRequest, cg as Validation, go as ValidationError, a2 as ValidationFormat, hI as ValidationFormatWithLiterals, cs as ValidationMessages, ch as ValidationValidationOneOf, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, cU as Video, f0 as VideoConferenceOptions, dK as VideoData, ah as ViewMode, hX as ViewModeWithLiterals, aq as ViewRole, i4 as ViewRoleWithLiterals, ar as VoteRole, i5 as VoteRoleWithLiterals, bq as WebhookIdentityType, j6 as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, fi as WixFile, aY as WixFileComponentType, fj as WixFileComponentTypeOptionsOneOf, iE as WixFileComponentTypeWithLiterals, ff as _Array, fg as _ArrayComponentTypeOptionsOneOf, fd as _Boolean, fe as _BooleanComponentTypeOptionsOneOf, fb as _Number, fc as _NumberComponentTypeOptionsOneOf, fh as _Object, f9 as _String, fa as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-nj5TA1wa.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -1228,6 +1228,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
1228
1228
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1229
1229
|
return ResponsivenessBehaviour2;
|
|
1230
1230
|
})(ResponsivenessBehaviour || {});
|
|
1231
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
1232
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
1233
|
+
DesignTarget2["CELL"] = "CELL";
|
|
1234
|
+
return DesignTarget2;
|
|
1235
|
+
})(DesignTarget || {});
|
|
1231
1236
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1232
1237
|
ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
|
|
1233
1238
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
@@ -2737,7 +2742,9 @@ var onSubmissionUpdated = EventDefinition(
|
|
|
2737
2742
|
paths: [
|
|
2738
2743
|
{ path: "entity.createdDate" },
|
|
2739
2744
|
{ path: "entity.updatedDate" },
|
|
2740
|
-
{ path: "metadata.eventTime" }
|
|
2745
|
+
{ path: "metadata.eventTime" },
|
|
2746
|
+
{ path: "modifiedFields.createdDate" },
|
|
2747
|
+
{ path: "modifiedFields.updatedDate" }
|
|
2741
2748
|
]
|
|
2742
2749
|
}
|
|
2743
2750
|
])
|
|
@@ -2824,6 +2831,7 @@ export {
|
|
|
2824
2831
|
ContactField,
|
|
2825
2832
|
Crop,
|
|
2826
2833
|
DecorationType,
|
|
2834
|
+
DesignTarget,
|
|
2827
2835
|
Direction,
|
|
2828
2836
|
DisplayFieldType,
|
|
2829
2837
|
DividerDataAlignment,
|