@wix/auto_sdk_forms_submissions 1.0.77 → 1.0.78
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-C2J-TaQm.d.ts} +12 -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-C2J-TaQm.d.mts} +12 -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-utyxsDjV.d.ts} +12 -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-utyxsDjV.d.mts} +12 -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;
|
|
@@ -6855,6 +6865,7 @@ declare function onSubmissionContactMappingSkipped(handler: (event: SubmissionCo
|
|
|
6855
6865
|
interface SubmissionUpdatedEnvelope {
|
|
6856
6866
|
entity: FormSubmission;
|
|
6857
6867
|
metadata: EventMetadata;
|
|
6868
|
+
modifiedFields: Record<string, any>;
|
|
6858
6869
|
}
|
|
6859
6870
|
/**
|
|
6860
6871
|
* > **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.
|
|
@@ -7651,4 +7662,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7651
7662
|
fieldsToValidate?: string[];
|
|
7652
7663
|
}
|
|
7653
7664
|
|
|
7654
|
-
export { ProductType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, StringTypeFormatEnumFormat as Z, ValidationFormat as _, type UpsertContactFromSubmissionResponse as a, InputType as a$, PriceType as a0, FieldType as a1, FormatEnumFormat as a2, StringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, Scaling as aF, LayoutDataImagePosition as aG, VerticalAlignmentAlignment as aH, ResponsivenessBehaviour as aI, ImagePosition as aJ, Alignment as aK, ImageFit as aL, NumberOfColumns as aM, FirstDayOfWeek as aN, NumberComponentType as aO, BooleanComponentType as aP, ItemType as aQ, PropertiesTypeEnum as aR, ArrayComponentType as aS, WixFileComponentType as aT, UploadFileFormat as aU, PaymentComponentType as aV, ComponentType as aW, Type as aX, ObjectArrayComponentType as aY, SchedulingComponentType as aZ, Format as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type PredefinedValidationFormatOptionsOneOf as b$, EmailInfoTag as b0, PhoneInfoTag as b1, Tag as b2, ConfirmationLevel as b3, ContactField as b4, DisplayFieldType as b5, OverrideEntityType as b6, Kind as b7, FormFieldContactInfoEmailInfoTag as b8, FormFieldContactInfoPhoneInfoTag as b9, type SubmissionContactMapped as bA, type MarketingSubscriptionDetails as bB, type SubmissionContactMappingSkipped as bC, type CreateCheckoutFromSubmissionRequest as bD, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bE, type Form as bF, type FormField as bG, type FormFieldStringType as bH, type FormFieldStringTypeFormatOptionsOneOf as bI, type StringErrorMessages as bJ, type StringTypeDateTimeConstraints as bK, type StringTypePhoneConstraints as bL, type StringTypeValidationMessages as bM, type FormFieldNumberType as bN, type NumberErrorMessages as bO, type IntegerType as bP, type FormFieldBooleanType as bQ, type BooleanErrorMessages as bR, type FormFieldArrayType as bS, type FormFieldObjectType as bT, type ObjectTypePropertiesType as bU, type ObjectTypePropertiesTypePropertiesTypeOneOf as bV, type ObjectErrorMessages as bW, type ArrayTypeArrayItems as bX, type ArrayTypeArrayItemsItemsOneOf as bY, type ArrayErrorMessages as bZ, type PredefinedValidation as b_, AddressInfoTag as ba, SubscriptionInfoOptInLevel as bb, FormFieldContactInfoContactField as bc, SpamFilterProtectionLevel as bd, RequiredIndicator as be, RequiredIndicatorPlacement as bf, Target as bg, SubmitSuccessAction as bh, ChangeableProperty as bi, OverrideEntityTypeEnumOverrideEntityType as bj, Operator as bk, WebhookIdentityType as bl, IdentityType as bm, ErrorType as bn, SortOrder as bo, Mode as bp, Status as bq, SubmissionErrorType as br, type Submitter as bs, type SubmitterSubmitterOneOf as bt, type ExtendedFields as bu, type OrderDetails as bv, type PublicTags as bw, type TagList as bx, type FormSubmissionStatusUpdatedEvent as by, type RemovedSubmissionFromTrash as bz, type CreateSubmissionValidationErrors as c, type ImageData as c$, type PaymentType as c0, type QuantityLimit as c1, type FixedPriceOptions as c2, type DynamicPriceOptions as c3, type Product as c4, type ProductPriceOptionsOneOf as c5, type MultilineAddressValidation as c6, type FieldOverrides as c7, type FieldsOverrides as c8, type ObjectArrayType as c9, type Height as cA, type Styles as cB, type Link as cC, type LinkDataOneOf as cD, type Rel as cE, type CodeBlockData as cF, type TextStyle as cG, type DividerData as cH, type FileData as cI, type FileSource as cJ, type FileSourceDataOneOf as cK, type PDFSettings as cL, type GalleryData as cM, type Media as cN, type Image as cO, type Video as cP, type Item as cQ, type ItemDataOneOf as cR, type GalleryOptions as cS, type GalleryOptionsLayout as cT, type ItemStyle as cU, type Thumbnails as cV, type GIFData as cW, type GIF as cX, type HeadingData as cY, type HTMLData as cZ, type HTMLDataDataOneOf as c_, type NestedFormFieldOverrides as ca, type Validation as cb, type ValidationValidationOneOf as cc, type DataExtensionsDetails as cd, type NestedFormOverrides as ce, type Field as cf, type FieldFieldTypeOptionsOneOf as cg, type InputField as ch, type InputFieldInputTypeOptionsOneOf as ci, type StringType as cj, type StringTypeFormatOptionsOneOf as ck, type DateTimeConstraints as cl, type PhoneConstraints as cm, type ValidationMessages as cn, type TextInput as co, type RichContent as cp, type Node as cq, type NodeDataOneOf as cr, type NodeStyle as cs, type ButtonData as ct, type Border as cu, type Colors as cv, type PluginContainerData as cw, type PluginContainerDataWidth as cx, type PluginContainerDataWidthDataOneOf as cy, type Spoiler as cz, type UpdateSubmission as d, type TextNodeStyle as d$, type StylesBorder as d0, type ImageDataStyles as d1, type LinkPreviewData as d2, type LinkPreviewDataStyles as d3, type MapData as d4, type MapSettings as d5, type ParagraphData as d6, type PollData as d7, type Permissions as d8, type PollOption as d9, type ButtonStyles as dA, type ImageStyles as dB, type RibbonStyles as dC, type CardStyles as dD, type PricingData as dE, type VideoData as dF, type PlaybackOptions as dG, type EmbedData as dH, type Oembed as dI, type CollapsibleListData as dJ, type TableData as dK, type Dimensions as dL, type TableCellData as dM, type CellStyle as dN, type BorderColors as dO, type BorderWidths as dP, type ListValue as dQ, type AudioData as dR, type OrderedListData as dS, type BulletedListData as dT, type BlockquoteData as dU, type CaptionData as dV, type LayoutData as dW, type BackgroundImage as dX, type LayoutCellData as dY, type Metadata as dZ, type DocumentStyle as d_, type Settings as da, type PollLayout as db, type OptionLayout as dc, type Gradient as dd, type Background as de, type BackgroundBackgroundOneOf as df, type PollDesign as dg, type OptionDesign as dh, type Poll as di, type PollDataLayout as dj, type Design as dk, type TextData as dl, type Decoration as dm, type DecorationDataOneOf as dn, type AnchorData as dp, type ColorData as dq, type LinkData as dr, type MentionData as ds, type FontSizeData as dt, type SpoilerData as du, type FontFamilyData as dv, type AppEmbedData as dw, type AppEmbedDataAppDataOneOf as dx, type BookingData as dy, type EventData as dz, type UpdateSubmissionValidationErrors as e, type EmailInfo as e$, type MediaItem as e0, type MediaItemMediaOneOf as e1, type MediaSettings as e2, type RadioGroup as e3, type RadioGroupOption as e4, type CustomOption as e5, type Dropdown as e6, type DropdownOption as e7, type DateTimeInput as e8, type PhoneInput as e9, type ProductCheckboxGroupOption as eA, type DonationInput as eB, type DonationInputOption as eC, type PaymentInput as eD, type FixedPayment as eE, type MultilineAddress as eF, type AddressLine2 as eG, type DefaultCountryConfig as eH, type DefaultCountryConfigOptionsOneOf as eI, type FieldsSettings as eJ, type Repeater as eK, type FormLayout as eL, type BreakPoint as eM, type ItemLayout as eN, type ItemLayoutItemOneOf as eO, type Group as eP, type Margin as eQ, type Section as eR, type Appointment as eS, type AppointmentFormatInfoOneOf as eT, type Location as eU, type LocationLocationInfoOneOf as eV, type InPersonOptions as eW, type VideoConferenceOptions as eX, type PhoneOptions as eY, type FormFieldContactInfo as eZ, type FormFieldContactInfoAdditionalInfoOneOf as e_, type DateInput as ea, type TimeInput as eb, type DatePicker as ec, type ServicesDropdown as ed, type ServiceOption as ee, type Password as ef, type NumberType as eg, type NumberInput as eh, type RatingInput as ei, type BooleanType as ej, type Checkbox as ek, type ArrayType as el, type ObjectType as em, type PropertiesType as en, type PropertiesTypePropertiesTypeOptionsOneOf as eo, type ArrayItems as ep, type ArrayItemsItemTypeOptionsOneOf as eq, type CheckboxGroup as er, type Option as es, type ComponentsTags as et, type TagsOption as eu, type ServicesCheckboxGroup as ev, type FileType as ew, type FileUpload as ex, type Signature as ey, type ProductCheckboxGroup as ez, type ConfirmSubmissionResponse as f, type CreateCheckoutFromSubmissionResponse as f$, type PhoneInfo as f0, type AddressInfo as f1, type CustomFieldInfo as f2, type SubscriptionInfo as f3, type _String as f4, type _StringComponentTypeOptionsOneOf as f5, type _Number as f6, type _NumberComponentTypeOptionsOneOf as f7, type _Boolean as f8, type _BooleanComponentTypeOptionsOneOf as f9, type FormFieldContactInfoPhoneInfo as fA, type FormFieldContactInfoAddressInfo as fB, type FormFieldContactInfoCustomFieldInfo as fC, type FormFieldContactInfoSubscriptionInfo as fD, type NestedForm as fE, type LimitationRule as fF, type RequiredIndicatorProperties as fG, type SubmitSettings as fH, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fI, type ThankYouMessageOptions as fJ, type RedirectOptions as fK, type FieldGroup as fL, type Rule as fM, type RequiredOptions as fN, type HiddenOptions as fO, type AllowedValuesOptions as fP, type FieldOverride as fQ, type FieldOverridePropertyTypeOptionsOneOf as fR, type ConditionNode as fS, type ConditionNodeNodeOneOf as fT, type AndCondition as fU, type OrCondition as fV, type Condition as fW, type RuleFormOverride as fX, type RuleFormOverrideEntityTypeOptionsOneOf as fY, type Tags as fZ, type TagsTagList as f_, type _Array as fa, type _ArrayComponentTypeOptionsOneOf as fb, type _Object as fc, type WixFile as fd, type WixFileComponentTypeOptionsOneOf as fe, type Payment as ff, type PaymentComponentTypeOptionsOneOf as fg, type Scheduling as fh, type SchedulingComponentTypeOptionsOneOf as fi, type Address as fj, type AddressComponentTypeOptionsOneOf as fk, type ObjectArray as fl, type ObjectArrayComponentTypeOptionsOneOf as fm, type DisplayField as fn, type DisplayFieldDisplayFieldTypeOptionsOneOf as fo, type RichContentOptions as fp, type PageNavigationOptions as fq, type Step as fr, type FormRule as fs, type FormOverride as ft, type FormProperties as fu, type PostSubmissionTriggers as fv, type UpsertContact as fw, type V4FormFieldContactInfo as fx, type V4FormFieldContactInfoAdditionalInfoOneOf as fy, type FormFieldContactInfoEmailInfo as fz, type BulkDeleteSubmissionResponse as g, type QuerySubmissionsByNamespaceRequest as g$, type Checkout as g0, type IsFormSubmittableRequest as g1, type IsFormSubmittableResponse as g2, type DomainEvent as g3, type DomainEventBodyOneOf as g4, type EntityCreatedEvent as g5, type RestoreInfo as g6, type EntityUpdatedEvent as g7, type EntityDeletedEvent as g8, type ActionEvent as g9, type GetSubmissionByCheckoutIdResponse as gA, type UpdateSubmissionRequest as gB, type UpdateSubmissionResponse as gC, type ConfirmSubmissionRequest as gD, type DeleteSubmissionRequest as gE, type DeleteSubmissionResponse as gF, type BulkDeleteSubmissionRequest as gG, type BulkDeleteSubmissionResult as gH, type RestoreSubmissionFromTrashBinRequest as gI, type RemoveSubmissionFromTrashBinRequest as gJ, type RemoveSubmissionFromTrashBinResponse as gK, type BulkRemoveSubmissionFromTrashBinRequest as gL, type BulkRemoveSubmissionFromTrashBinResult as gM, type ListDeletedSubmissionsRequest as gN, type CursorPaging as gO, type CursorPagingMetadata as gP, type Cursors as gQ, type GetDeletedSubmissionRequest as gR, type QuerySubmissionRequest as gS, type CursorQueryPagingMethodOneOf as gT, type Sorting as gU, type SearchSubmissionsByNamespaceRequest as gV, type CursorSearch as gW, type CursorSearchPagingMethodOneOf as gX, type SearchDetails as gY, type SearchSubmissionsByNamespaceForExportRequest as gZ, type SearchSubmissionsByNamespaceForExportResponse as g_, type Empty as ga, type MessageEnvelope as gb, type IdentificationData as gc, type IdentificationDataIdOneOf as gd, type UpsertContactFromSubmissionRequest as ge, type SubmitContactResponse as gf, type CreateSubmissionRequest as gg, type CreateSubmissionResponse as gh, type SubmissionValidationErrorsDetails as gi, type ValidationError as gj, type CreateSubmissionForMigrationRequest as gk, type CreateSubmissionForMigrationResponse as gl, type BulkCreateSubmissionsForMigrationRequest as gm, type BulkCreateSubmissionsForMigrationResponse as gn, type BulkSubmissionResult as go, type ItemMetadata as gp, type ApplicationError as gq, type BulkActionMetadata as gr, type CreateSubmissionBySubmitterRequest as gs, type CreateSubmissionBySubmitterResponse as gt, type BulkCreateSubmissionBySubmitterRequest as gu, type BulkCreateSubmissionBySubmitterData as gv, type BulkCreateSubmissionBySubmitterResponse as gw, type GetSubmissionRequest as gx, type GetSubmissionResponse as gy, type GetSubmissionByCheckoutIdRequest as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type GIFTypeWithLiterals as h$, type QuerySubmissionsByNamespaceResponse as h0, type QuerySubmissionsByNamespaceForExportRequest as h1, type QuerySubmissionsByNamespaceForExportResponse as h2, type CountSubmissionsByFilterRequest as h3, type FormSubmissionsCount as h4, type CountSubmissionsRequest as h5, type CountDeletedSubmissionsRequest as h6, type FormDeletedSubmissionsCount as h7, type GetMediaUploadURLRequest as h8, type BulkMarkSubmissionsAsSeenRequest as h9, type SubmissionsQueryResult as hA, type FormSubmissionQuerySpec as hB, type BulkUpdateFormSubmissionTagsOptions as hC, type BulkUpdateFormSubmissionTagsByFilterOptions 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 GetSubmissionDownloadUrlRequest as ha, type SubmissionDocument as hb, type SubmissionDocumentDocumentOneOf as hc, type DocumentReady as hd, type DownloadSubmissionRequest as he, type HeadersEntry as hf, type GetFormattedSubmissionRequest as hg, type FormattedSubmission as hh, type ListFormattedSubmissionsRequest as hi, type ListFormattedSubmissionsResponse as hj, type FormattedFormSubmission as hk, type UpdateExtendedFieldsRequest as hl, type BulkUpdateFormSubmissionTagsRequest as hm, type BulkUpdateFormSubmissionTagsResponse as hn, type BulkUpdateFormSubmissionTagsResult as ho, type BulkUpdateFormSubmissionTagsByFilterRequest as hp, type BulkUpdateFormSubmissionTagsByFilterResponse as hq, type ValidateFormSubmissionRequest as hr, type FieldViolation as hs, type FieldViolationErrorDataOneOf as ht, type SubmissionValidationErrors as hu, type SubmissionValidationError as hv, type SubmissionValidationErrorErrorMessageOneOf as hw, type BaseEventMetadata as hx, type EventMetadata as hy, type FormSubmissionSearchSpec 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, validateFormSubmission as jH, 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 };
|
|
7665
|
+
export { ProductType as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, StringTypeFormatEnumFormat as Z, ValidationFormat as _, type UpsertContactFromSubmissionResponse as a, Format as a$, PriceType as a0, FieldType as a1, FormatEnumFormat as a2, StringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, Scaling as aF, LayoutDataImagePosition as aG, VerticalAlignmentAlignment as aH, ResponsivenessBehaviour as aI, DesignTarget as aJ, ImagePosition as aK, Alignment as aL, ImageFit as aM, NumberOfColumns as aN, FirstDayOfWeek as aO, NumberComponentType as aP, BooleanComponentType as aQ, ItemType as aR, PropertiesTypeEnum as aS, ArrayComponentType as aT, WixFileComponentType as aU, UploadFileFormat as aV, PaymentComponentType as aW, ComponentType as aX, Type as aY, ObjectArrayComponentType as aZ, SchedulingComponentType as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type PredefinedValidation as b$, InputType as b0, EmailInfoTag as b1, PhoneInfoTag as b2, Tag as b3, ConfirmationLevel as b4, ContactField as b5, DisplayFieldType as b6, OverrideEntityType as b7, Kind as b8, FormFieldContactInfoEmailInfoTag as b9, type RemovedSubmissionFromTrash as bA, type SubmissionContactMapped as bB, type MarketingSubscriptionDetails as bC, type SubmissionContactMappingSkipped as bD, type CreateCheckoutFromSubmissionRequest as bE, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bF, type Form as bG, type FormField as bH, type FormFieldStringType as bI, type FormFieldStringTypeFormatOptionsOneOf as bJ, type StringErrorMessages as bK, type StringTypeDateTimeConstraints as bL, type StringTypePhoneConstraints as bM, type StringTypeValidationMessages as bN, type FormFieldNumberType as bO, type NumberErrorMessages as bP, type IntegerType as bQ, type FormFieldBooleanType as bR, type BooleanErrorMessages as bS, type FormFieldArrayType as bT, type FormFieldObjectType as bU, type ObjectTypePropertiesType as bV, type ObjectTypePropertiesTypePropertiesTypeOneOf as bW, type ObjectErrorMessages as bX, type ArrayTypeArrayItems as bY, type ArrayTypeArrayItemsItemsOneOf as bZ, type ArrayErrorMessages as b_, FormFieldContactInfoPhoneInfoTag as ba, AddressInfoTag as bb, SubscriptionInfoOptInLevel as bc, FormFieldContactInfoContactField as bd, SpamFilterProtectionLevel as be, RequiredIndicator as bf, RequiredIndicatorPlacement as bg, Target as bh, SubmitSuccessAction as bi, ChangeableProperty as bj, OverrideEntityTypeEnumOverrideEntityType as bk, Operator as bl, WebhookIdentityType as bm, IdentityType as bn, ErrorType as bo, SortOrder as bp, Mode as bq, Status as br, SubmissionErrorType as bs, type Submitter as bt, type SubmitterSubmitterOneOf as bu, type ExtendedFields as bv, type OrderDetails as bw, type PublicTags as bx, type TagList as by, type FormSubmissionStatusUpdatedEvent as bz, type CreateSubmissionValidationErrors as c, type HTMLDataDataOneOf as c$, type PredefinedValidationFormatOptionsOneOf as c0, type PaymentType as c1, type QuantityLimit as c2, type FixedPriceOptions as c3, type DynamicPriceOptions as c4, type Product as c5, type ProductPriceOptionsOneOf as c6, type MultilineAddressValidation as c7, type FieldOverrides as c8, type FieldsOverrides as c9, type Spoiler as cA, type Height as cB, type Styles as cC, type Link as cD, type LinkDataOneOf as cE, type Rel as cF, type CodeBlockData as cG, type TextStyle as cH, type DividerData as cI, type FileData as cJ, type FileSource as cK, type FileSourceDataOneOf as cL, type PDFSettings as cM, type GalleryData as cN, type Media as cO, type Image as cP, type Video as cQ, type Item as cR, type ItemDataOneOf as cS, type GalleryOptions as cT, type GalleryOptionsLayout as cU, type ItemStyle as cV, type Thumbnails as cW, type GIFData as cX, type GIF as cY, type HeadingData as cZ, type HTMLData as c_, type ObjectArrayType as ca, type NestedFormFieldOverrides as cb, type Validation as cc, type ValidationValidationOneOf as cd, type DataExtensionsDetails as ce, type NestedFormOverrides as cf, type Field as cg, type FieldFieldTypeOptionsOneOf as ch, type InputField as ci, type InputFieldInputTypeOptionsOneOf as cj, type StringType as ck, type StringTypeFormatOptionsOneOf as cl, type DateTimeConstraints as cm, type PhoneConstraints as cn, type ValidationMessages as co, type TextInput as cp, type RichContent as cq, type Node as cr, type NodeDataOneOf as cs, type NodeStyle as ct, type ButtonData as cu, type Border as cv, type Colors as cw, type PluginContainerData as cx, type PluginContainerDataWidth as cy, type PluginContainerDataWidthDataOneOf as cz, type UpdateSubmission as d, type DocumentStyle as d$, type ImageData as d0, type StylesBorder as d1, type ImageDataStyles as d2, type LinkPreviewData as d3, type LinkPreviewDataStyles as d4, type MapData as d5, type MapSettings as d6, type ParagraphData as d7, type PollData as d8, type Permissions as d9, type EventData as dA, type ButtonStyles as dB, type ImageStyles as dC, type RibbonStyles as dD, type CardStyles as dE, type PricingData as dF, type VideoData as dG, type PlaybackOptions as dH, type EmbedData as dI, type Oembed as dJ, type CollapsibleListData as dK, type TableData as dL, type Dimensions as dM, type TableCellData as dN, type CellStyle as dO, type BorderColors as dP, type BorderWidths as dQ, type ListValue as dR, type AudioData as dS, type OrderedListData as dT, type BulletedListData as dU, type BlockquoteData as dV, type CaptionData as dW, type LayoutData as dX, type BackgroundImage as dY, type LayoutCellData as dZ, type Metadata as d_, type PollOption as da, type Settings as db, type PollLayout as dc, type OptionLayout as dd, type Gradient as de, type Background as df, type BackgroundBackgroundOneOf as dg, type PollDesign as dh, type OptionDesign as di, type Poll as dj, type PollDataLayout as dk, type Design as dl, type TextData as dm, type Decoration as dn, type DecorationDataOneOf as dp, type AnchorData as dq, type ColorData as dr, type LinkData as ds, type MentionData as dt, type FontSizeData as du, type SpoilerData as dv, type FontFamilyData as dw, type AppEmbedData as dx, type AppEmbedDataAppDataOneOf as dy, type BookingData as dz, type UpdateSubmissionValidationErrors as e, type FormFieldContactInfoAdditionalInfoOneOf as e$, type TextNodeStyle as e0, type MediaItem as e1, type MediaItemMediaOneOf as e2, type MediaSettings as e3, type RadioGroup as e4, type RadioGroupOption as e5, type CustomOption as e6, type Dropdown as e7, type DropdownOption as e8, type DateTimeInput as e9, type ProductCheckboxGroup as eA, type ProductCheckboxGroupOption as eB, type DonationInput as eC, type DonationInputOption as eD, type PaymentInput as eE, type FixedPayment as eF, type MultilineAddress as eG, type AddressLine2 as eH, type DefaultCountryConfig as eI, type DefaultCountryConfigOptionsOneOf as eJ, type FieldsSettings as eK, type Repeater as eL, type FormLayout as eM, type BreakPoint as eN, type ItemLayout as eO, type ItemLayoutItemOneOf as eP, type Group as eQ, type Margin as eR, type Section as eS, type Appointment as eT, type AppointmentFormatInfoOneOf as eU, type Location as eV, type LocationLocationInfoOneOf as eW, type InPersonOptions as eX, type VideoConferenceOptions as eY, type PhoneOptions as eZ, type FormFieldContactInfo as e_, type PhoneInput as ea, type DateInput as eb, type TimeInput as ec, type DatePicker as ed, type ServicesDropdown as ee, type ServiceOption as ef, type Password as eg, type NumberType as eh, type NumberInput as ei, type RatingInput as ej, type BooleanType as ek, type Checkbox as el, type ArrayType as em, type ObjectType as en, type PropertiesType as eo, type PropertiesTypePropertiesTypeOptionsOneOf as ep, type ArrayItems as eq, type ArrayItemsItemTypeOptionsOneOf as er, type CheckboxGroup as es, type Option as et, type ComponentsTags as eu, type TagsOption as ev, type ServicesCheckboxGroup as ew, type FileType as ex, type FileUpload as ey, type Signature as ez, type ConfirmSubmissionResponse as f, type TagsTagList as f$, type EmailInfo as f0, type PhoneInfo as f1, type AddressInfo as f2, type CustomFieldInfo as f3, type SubscriptionInfo as f4, type _String as f5, type _StringComponentTypeOptionsOneOf as f6, type _Number as f7, type _NumberComponentTypeOptionsOneOf as f8, type _Boolean as f9, type FormFieldContactInfoEmailInfo as fA, type FormFieldContactInfoPhoneInfo as fB, type FormFieldContactInfoAddressInfo as fC, type FormFieldContactInfoCustomFieldInfo as fD, type FormFieldContactInfoSubscriptionInfo as fE, type NestedForm as fF, type LimitationRule as fG, type RequiredIndicatorProperties as fH, type SubmitSettings as fI, type SubmitSettingsSubmitSuccessActionOptionsOneOf as fJ, type ThankYouMessageOptions as fK, type RedirectOptions as fL, type FieldGroup as fM, type Rule as fN, type RequiredOptions as fO, type HiddenOptions as fP, type AllowedValuesOptions as fQ, type FieldOverride as fR, type FieldOverridePropertyTypeOptionsOneOf as fS, type ConditionNode as fT, type ConditionNodeNodeOneOf as fU, type AndCondition as fV, type OrCondition as fW, type Condition as fX, type RuleFormOverride as fY, type RuleFormOverrideEntityTypeOptionsOneOf as fZ, type Tags as f_, type _BooleanComponentTypeOptionsOneOf as fa, type _Array as fb, type _ArrayComponentTypeOptionsOneOf as fc, type _Object as fd, type WixFile as fe, type WixFileComponentTypeOptionsOneOf as ff, type Payment as fg, type PaymentComponentTypeOptionsOneOf as fh, type Scheduling as fi, type SchedulingComponentTypeOptionsOneOf as fj, type Address as fk, type AddressComponentTypeOptionsOneOf as fl, type ObjectArray as fm, type ObjectArrayComponentTypeOptionsOneOf as fn, type DisplayField as fo, type DisplayFieldDisplayFieldTypeOptionsOneOf as fp, type RichContentOptions as fq, type PageNavigationOptions as fr, type Step as fs, type FormRule as ft, type FormOverride as fu, type FormProperties as fv, type PostSubmissionTriggers as fw, type UpsertContact as fx, type V4FormFieldContactInfo as fy, type V4FormFieldContactInfoAdditionalInfoOneOf as fz, type BulkDeleteSubmissionResponse as g, type SearchSubmissionsByNamespaceForExportResponse as g$, type CreateCheckoutFromSubmissionResponse as g0, type Checkout as g1, type IsFormSubmittableRequest as g2, type IsFormSubmittableResponse as g3, type DomainEvent as g4, type DomainEventBodyOneOf as g5, type EntityCreatedEvent as g6, type RestoreInfo as g7, type EntityUpdatedEvent as g8, type EntityDeletedEvent as g9, type GetSubmissionByCheckoutIdRequest as gA, type GetSubmissionByCheckoutIdResponse as gB, type UpdateSubmissionRequest as gC, type UpdateSubmissionResponse as gD, type ConfirmSubmissionRequest as gE, type DeleteSubmissionRequest as gF, type DeleteSubmissionResponse as gG, type BulkDeleteSubmissionRequest as gH, type BulkDeleteSubmissionResult as gI, type RestoreSubmissionFromTrashBinRequest as gJ, type RemoveSubmissionFromTrashBinRequest as gK, type RemoveSubmissionFromTrashBinResponse as gL, type BulkRemoveSubmissionFromTrashBinRequest as gM, type BulkRemoveSubmissionFromTrashBinResult as gN, type ListDeletedSubmissionsRequest as gO, type CursorPaging as gP, type CursorPagingMetadata as gQ, type Cursors as gR, type GetDeletedSubmissionRequest as gS, type QuerySubmissionRequest as gT, type CursorQueryPagingMethodOneOf as gU, type Sorting as gV, type SearchSubmissionsByNamespaceRequest as gW, type CursorSearch as gX, type CursorSearchPagingMethodOneOf as gY, type SearchDetails as gZ, type SearchSubmissionsByNamespaceForExportRequest as g_, type ActionEvent as ga, type Empty as gb, type MessageEnvelope as gc, type IdentificationData as gd, type IdentificationDataIdOneOf as ge, type UpsertContactFromSubmissionRequest as gf, type SubmitContactResponse as gg, type CreateSubmissionRequest as gh, type CreateSubmissionResponse as gi, type SubmissionValidationErrorsDetails as gj, type ValidationError as gk, type CreateSubmissionForMigrationRequest as gl, type CreateSubmissionForMigrationResponse as gm, type BulkCreateSubmissionsForMigrationRequest as gn, type BulkCreateSubmissionsForMigrationResponse as go, type BulkSubmissionResult as gp, type ItemMetadata as gq, type ApplicationError as gr, type BulkActionMetadata as gs, type CreateSubmissionBySubmitterRequest as gt, type CreateSubmissionBySubmitterResponse as gu, type BulkCreateSubmissionBySubmitterRequest as gv, type BulkCreateSubmissionBySubmitterData as gw, type BulkCreateSubmissionBySubmitterResponse as gx, type GetSubmissionRequest as gy, type GetSubmissionResponse as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type ThumbnailsAlignmentWithLiterals as h$, type QuerySubmissionsByNamespaceRequest as h0, type QuerySubmissionsByNamespaceResponse as h1, type QuerySubmissionsByNamespaceForExportRequest as h2, type QuerySubmissionsByNamespaceForExportResponse as h3, type CountSubmissionsByFilterRequest as h4, type FormSubmissionsCount as h5, type CountSubmissionsRequest as h6, type CountDeletedSubmissionsRequest as h7, type FormDeletedSubmissionsCount as h8, type GetMediaUploadURLRequest as h9, type FormSubmissionSearchSpec as hA, type SubmissionsQueryResult as hB, type FormSubmissionQuerySpec as hC, type BulkUpdateFormSubmissionTagsOptions as hD, type BulkUpdateFormSubmissionTagsByFilterOptions 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 BulkMarkSubmissionsAsSeenRequest as ha, type GetSubmissionDownloadUrlRequest as hb, type SubmissionDocument as hc, type SubmissionDocumentDocumentOneOf as hd, type DocumentReady as he, type DownloadSubmissionRequest as hf, type HeadersEntry as hg, type GetFormattedSubmissionRequest as hh, type FormattedSubmission as hi, type ListFormattedSubmissionsRequest as hj, type ListFormattedSubmissionsResponse as hk, type FormattedFormSubmission as hl, type UpdateExtendedFieldsRequest as hm, type BulkUpdateFormSubmissionTagsRequest as hn, type BulkUpdateFormSubmissionTagsResponse as ho, type BulkUpdateFormSubmissionTagsResult as hp, type BulkUpdateFormSubmissionTagsByFilterRequest as hq, type BulkUpdateFormSubmissionTagsByFilterResponse as hr, type ValidateFormSubmissionRequest as hs, type FieldViolation as ht, type FieldViolationErrorDataOneOf as hu, type SubmissionValidationErrors as hv, type SubmissionValidationError as hw, type SubmissionValidationErrorErrorMessageOneOf as hx, type BaseEventMetadata as hy, type EventMetadata 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, validateFormSubmission as jJ, 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 };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { g9 as ActionEvent, fj as Address, fk as AddressComponentTypeOptionsOneOf, f1 as AddressInfo, ba as AddressInfoTag, iV as AddressInfoTagWithLiterals, eG as AddressLine2, aK as Alignment, it as AlignmentWithLiterals, fP as AllowedValuesOptions, dp as AnchorData, fU as AndCondition, dw as AppEmbedData, dx as AppEmbedDataAppDataOneOf, aA as AppType, ii as AppTypeWithLiterals, gq as ApplicationError, eS as Appointment, eT as AppointmentFormatInfoOneOf, aS as ArrayComponentType, iB as ArrayComponentTypeWithLiterals, bZ as ArrayErrorMessages, ep as ArrayItems, eq as ArrayItemsItemTypeOptionsOneOf, el as ArrayType, bX as ArrayTypeArrayItems, bY as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, ib as AspectRatioWithLiterals, dR as AudioData, de as Background, df as BackgroundBackgroundOneOf, dX as BackgroundImage, aq as BackgroundType, i7 as BackgroundTypeWithLiterals, hx as BaseEventMetadata, dU as BlockquoteData, dy as BookingData, aP as BooleanComponentType, iy as BooleanComponentTypeWithLiterals, bR as BooleanErrorMessages, ej as BooleanType, cu as Border, dO as BorderColors, dP as BorderWidths, eM as BreakPoint, gr as BulkActionMetadata, gv as BulkCreateSubmissionBySubmitterData, gu as BulkCreateSubmissionBySubmitterRequest, gw as BulkCreateSubmissionBySubmitterResponse, gm as BulkCreateSubmissionsForMigrationRequest, gn as BulkCreateSubmissionsForMigrationResponse, gG as BulkDeleteSubmissionRequest, gH as BulkDeleteSubmissionResult, h9 as BulkMarkSubmissionsAsSeenRequest, gL as BulkRemoveSubmissionFromTrashBinRequest, gM as BulkRemoveSubmissionFromTrashBinResult, go as BulkSubmissionResult, hD as BulkUpdateFormSubmissionTagsByFilterOptions, hp as BulkUpdateFormSubmissionTagsByFilterRequest, hq as BulkUpdateFormSubmissionTagsByFilterResponse, hC as BulkUpdateFormSubmissionTagsOptions, hm as BulkUpdateFormSubmissionTagsRequest, hn as BulkUpdateFormSubmissionTagsResponse, ho as BulkUpdateFormSubmissionTagsResult, dT as BulletedListData, ct as ButtonData, a7 as ButtonDataType, hQ as ButtonDataTypeWithLiterals, dA as ButtonStyles, dV as CaptionData, dD as CardStyles, ay as CardStylesAlignment, ig as CardStylesAlignmentWithLiterals, ax as CardStylesType, ie as CardStylesTypeWithLiterals, dN as CellStyle, bi as ChangeableProperty, j1 as ChangeablePropertyWithLiterals, ek as Checkbox, er as CheckboxGroup, g0 as Checkout, cF as CodeBlockData, dJ as CollapsibleListData, dq as ColorData, cv as Colors, jc as CommonQueryWithEntityContext, jb as CommonSearchWithEntityContext, aW as ComponentType, iF as ComponentTypeWithLiterals, et as ComponentsTags, fW as Condition, fS as ConditionNode, fT as ConditionNodeNodeOneOf, gD as ConfirmSubmissionRequest, b3 as ConfirmationLevel, iO as ConfirmationLevelWithLiterals, b4 as ContactField, iP as ContactFieldWithLiterals, h6 as CountDeletedSubmissionsRequest, h3 as CountSubmissionsByFilterRequest, h5 as CountSubmissionsRequest, bD as CreateCheckoutFromSubmissionRequest, bE as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, f$ as CreateCheckoutFromSubmissionResponse, gs as CreateSubmissionBySubmitterRequest, gt as CreateSubmissionBySubmitterResponse, gk as CreateSubmissionForMigrationRequest, gl as CreateSubmissionForMigrationResponse, gg as CreateSubmissionRequest, gh as CreateSubmissionResponse, ag as Crop, hZ as CropWithLiterals, gO as CursorPaging, gP as CursorPagingMetadata, gT as CursorQueryPagingMethodOneOf, gW as CursorSearch, gX as CursorSearchPagingMethodOneOf, gQ as Cursors, f2 as CustomFieldInfo, e5 as CustomOption, cd as DataExtensionsDetails, ea as DateInput, ec as DatePicker, cl as DateTimeConstraints, e8 as DateTimeInput, dm as Decoration, dn as DecorationDataOneOf, ar as DecorationType, i8 as DecorationTypeWithLiterals, eH as DefaultCountryConfig, eI as DefaultCountryConfigOptionsOneOf, gE as DeleteSubmissionRequest, gF as DeleteSubmissionResponse, dk as Design, dL as Dimensions, aC as Direction, ik as DirectionWithLiterals, fn as DisplayField, fo as DisplayFieldDisplayFieldTypeOptionsOneOf, b5 as DisplayFieldType, iQ as DisplayFieldTypeWithLiterals, cH as DividerData, ac as DividerDataAlignment, hV as DividerDataAlignmentWithLiterals, hd as DocumentReady, d_ as DocumentStyle, g3 as DomainEvent, g4 as DomainEventBodyOneOf, eB as DonationInput, eC as DonationInputOption, he as DownloadSubmissionRequest, e6 as Dropdown, e7 as DropdownOption, c3 as DynamicPriceOptions, e$ as EmailInfo, b0 as EmailInfoTag, iL as EmailInfoTagWithLiterals, dH as EmbedData, ga as Empty, g5 as EntityCreatedEvent, g8 as EntityDeletedEvent, g7 as EntityUpdatedEvent, bn as ErrorType, j6 as ErrorTypeWithLiterals, dz as EventData, hy as EventMetadata, bu as ExtendedFields, cf as Field, cg as FieldFieldTypeOptionsOneOf, fL as FieldGroup, fQ as FieldOverride, fR as FieldOverridePropertyTypeOptionsOneOf, c7 as FieldOverrides, a1 as FieldType, hK as FieldTypeWithLiterals, hs as FieldViolation, ht as FieldViolationErrorDataOneOf, c8 as FieldsOverrides, eJ as FieldsSettings, cI as FileData, cJ as FileSource, cK as FileSourceDataOneOf, ew as FileType, ex as FileUpload, aN as FirstDayOfWeek, iw as FirstDayOfWeekWithLiterals, eE as FixedPayment, c2 as FixedPriceOptions, dv as FontFamilyData, dt as FontSizeData, as as FontType, i9 as FontTypeWithLiterals, bF as Form, h7 as FormDeletedSubmissionsCount, bG as FormField, bS as FormFieldArrayType, bQ as FormFieldBooleanType, eZ as FormFieldContactInfo, e_ as FormFieldContactInfoAdditionalInfoOneOf, fB as FormFieldContactInfoAddressInfo, bc as FormFieldContactInfoContactField, iX as FormFieldContactInfoContactFieldWithLiterals, fC as FormFieldContactInfoCustomFieldInfo, fz as FormFieldContactInfoEmailInfo, b8 as FormFieldContactInfoEmailInfoTag, iT as FormFieldContactInfoEmailInfoTagWithLiterals, fA as FormFieldContactInfoPhoneInfo, b9 as FormFieldContactInfoPhoneInfoTag, iU as FormFieldContactInfoPhoneInfoTagWithLiterals, fD as FormFieldContactInfoSubscriptionInfo, bN as FormFieldNumberType, bT as FormFieldObjectType, bH as FormFieldStringType, bI as FormFieldStringTypeFormatOptionsOneOf, eL as FormLayout, ft as FormOverride, fu as FormProperties, fs as FormRule, hB as FormSubmissionQuerySpec, hz as FormSubmissionSearchSpec, by as FormSubmissionStatusUpdatedEvent, h4 as FormSubmissionsCount, a_ as Format, a2 as FormatEnumFormat, hL as FormatEnumFormatWithLiterals, iJ as FormatWithLiterals, hk as FormattedFormSubmission, hh as FormattedSubmission, cX as GIF, cW as GIFData, ai as GIFType, h$ as GIFTypeWithLiterals, cM as GalleryData, cS as GalleryOptions, cT as GalleryOptionsLayout, gR as GetDeletedSubmissionRequest, hg as GetFormattedSubmissionRequest, h8 as GetMediaUploadURLRequest, gz as GetSubmissionByCheckoutIdRequest, gA as GetSubmissionByCheckoutIdResponse, ha as GetSubmissionDownloadUrlRequest, gx as GetSubmissionRequest, gy as GetSubmissionResponse, dd as Gradient, eP as Group, cZ as HTMLData, c_ as HTMLDataDataOneOf, hf as HeadersEntry, cY as HeadingData, cA as Height, fO as HiddenOptions, gc as IdentificationData, gd as IdentificationDataIdOneOf, bm as IdentityType, j5 as IdentityTypeWithLiterals, cO as Image, c$ as ImageData, d1 as ImageDataStyles, aL as ImageFit, iu as ImageFitWithLiterals, aJ as ImagePosition, is as ImagePositionWithLiterals, dB as ImageStyles, eW as InPersonOptions, aB as InitialExpandedItems, ij as InitialExpandedItemsWithLiterals, ch as InputField, ci as InputFieldInputTypeOptionsOneOf, a$ as InputType, iK as InputTypeWithLiterals, bP as IntegerType, g1 as IsFormSubmittableRequest, g2 as IsFormSubmittableResponse, cQ as Item, cR as ItemDataOneOf, eN as ItemLayout, eO as ItemLayoutItemOneOf, gp as ItemMetadata, cU as ItemStyle, aQ as ItemType, iz as ItemTypeWithLiterals, b7 as Kind, iS as KindWithLiterals, az as Layout, dY as LayoutCellData, dW as LayoutData, aG as LayoutDataImagePosition, ip as LayoutDataImagePositionWithLiterals, ae as LayoutType, hX as LayoutTypeWithLiterals, ih as LayoutWithLiterals, fF as LimitationRule, aa as LineStyle, hT as LineStyleWithLiterals, cC as Link, dr as LinkData, cD as LinkDataOneOf, d2 as LinkPreviewData, d3 as LinkPreviewDataStyles, a8 as LinkTarget, hR as LinkTargetWithLiterals, gN as ListDeletedSubmissionsRequest, hi as ListFormattedSubmissionsRequest, hj as ListFormattedSubmissionsResponse, dQ as ListValue, eU as Location, eV as LocationLocationInfoOneOf, d4 as MapData, d5 as MapSettings, al as MapType, i2 as MapTypeWithLiterals, eQ as Margin, bB as MarketingSubscriptionDetails, cN as Media, e0 as MediaItem, e1 as MediaItemMediaOneOf, e2 as MediaSettings, ds as MentionData, gb as MessageEnvelope, dZ as Metadata, bp as Mode, j8 as ModeWithLiterals, eF as MultilineAddress, c6 as MultilineAddressValidation, fE as NestedForm, ca as NestedFormFieldOverrides, ce as NestedFormOverrides, cq as Node, cr as NodeDataOneOf, cs as NodeStyle, a4 as NodeType, hN as NodeTypeWithLiterals, aE as NullValue, im as NullValueWithLiterals, aO as NumberComponentType, ix as NumberComponentTypeWithLiterals, bO as NumberErrorMessages, eh as NumberInput, aM as NumberOfColumns, iv as NumberOfColumnsWithLiterals, eg as NumberType, fl as ObjectArray, aY as ObjectArrayComponentType, fm as ObjectArrayComponentTypeOptionsOneOf, iH as ObjectArrayComponentTypeWithLiterals, c9 as ObjectArrayType, bW as ObjectErrorMessages, em as ObjectType, bU as ObjectTypePropertiesType, bV as ObjectTypePropertiesTypePropertiesTypeOneOf, dI as Oembed, bk as Operator, j3 as OperatorWithLiterals, Y as OptInLevel, hF as OptInLevelWithLiterals, es as Option, dh as OptionDesign, dc as OptionLayout, fV as OrCondition, bv as OrderDetails, dS as OrderedListData, af as Orientation, hY as OrientationWithLiterals, b6 as OverrideEntityType, bj as OverrideEntityTypeEnumOverrideEntityType, j2 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iR as OverrideEntityTypeWithLiterals, cL as PDFSettings, fq as PageNavigationOptions, d6 as ParagraphData, ef as Password, ff as Payment, aV as PaymentComponentType, fg as PaymentComponentTypeOptionsOneOf, iE as PaymentComponentTypeWithLiterals, eD as PaymentInput, c0 as PaymentType, d8 as Permissions, cm as PhoneConstraints, f0 as PhoneInfo, b1 as PhoneInfoTag, iM as PhoneInfoTagWithLiterals, e9 as PhoneInput, eY as PhoneOptions, aw as Placement, id as PlacementWithLiterals, dG as PlaybackOptions, cw as PluginContainerData, a6 as PluginContainerDataAlignment, hP as PluginContainerDataAlignmentWithLiterals, cx as PluginContainerDataWidth, cy as PluginContainerDataWidthDataOneOf, di as Poll, d7 as PollData, dj as PollDataLayout, dg as PollDesign, db as PollLayout, ap as PollLayoutDirection, i6 as PollLayoutDirectionWithLiterals, ao as PollLayoutType, i5 as PollLayoutTypeWithLiterals, d9 as PollOption, at as Position, ia as PositionWithLiterals, fv as PostSubmissionTriggers, b_ as PredefinedValidation, b$ as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, hJ as PriceTypeWithLiterals, dE as PricingData, c4 as Product, ez as ProductCheckboxGroup, eA as ProductCheckboxGroupOption, c5 as ProductPriceOptionsOneOf, $ as ProductType, hI as ProductTypeWithLiterals, en as PropertiesType, aR as PropertiesTypeEnum, iA as PropertiesTypeEnumWithLiterals, eo as PropertiesTypePropertiesTypeOptionsOneOf, bw as PublicTags, c1 as QuantityLimit, gS as QuerySubmissionRequest, h1 as QuerySubmissionsByNamespaceForExportRequest, h2 as QuerySubmissionsByNamespaceForExportResponse, g$ as QuerySubmissionsByNamespaceRequest, h0 as QuerySubmissionsByNamespaceResponse, e3 as RadioGroup, e4 as RadioGroupOption, ei as RatingInput, fK as RedirectOptions, cE as Rel, gJ as RemoveSubmissionFromTrashBinRequest, gK as RemoveSubmissionFromTrashBinResponse, bz as RemovedSubmissionFromTrash, eK as Repeater, be as RequiredIndicator, bf as RequiredIndicatorPlacement, i_ as RequiredIndicatorPlacementWithLiterals, fG as RequiredIndicatorProperties, iZ as RequiredIndicatorWithLiterals, fN as RequiredOptions, av as Resizing, ic as ResizingWithLiterals, aI as ResponsivenessBehaviour, ir as ResponsivenessBehaviourWithLiterals, g6 as RestoreInfo, gI as RestoreSubmissionFromTrashBinRequest, dC as RibbonStyles, cp as RichContent, fp as RichContentOptions, fM as Rule, fX as RuleFormOverride, fY as RuleFormOverrideEntityTypeOptionsOneOf, aF as Scaling, io as ScalingWithLiterals, fh as Scheduling, aZ as SchedulingComponentType, fi as SchedulingComponentTypeOptionsOneOf, iI as SchedulingComponentTypeWithLiterals, gY as SearchDetails, gZ as SearchSubmissionsByNamespaceForExportRequest, g_ as SearchSubmissionsByNamespaceForExportResponse, gV as SearchSubmissionsByNamespaceRequest, eR as Section, ee as ServiceOption, ev as ServicesCheckboxGroup, ed as ServicesDropdown, da as Settings, ey as Signature, bo as SortOrder, j7 as SortOrderWithLiterals, gU as Sorting, aj as Source, i0 as SourceWithLiterals, bd as SpamFilterProtectionLevel, iY as SpamFilterProtectionLevelWithLiterals, cz as Spoiler, du as SpoilerData, bq as Status, j9 as StatusWithLiterals, fr as Step, a3 as StringComponentType, hM as StringComponentTypeWithLiterals, bJ as StringErrorMessages, cj as StringType, bK as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, hG as StringTypeFormatEnumFormatWithLiterals, ck as StringTypeFormatOptionsOneOf, bL as StringTypePhoneConstraints, bM as StringTypeValidationMessages, cB as Styles, d0 as StylesBorder, ak as StylesPosition, i1 as StylesPositionWithLiterals, bA as SubmissionContactMapped, bC as SubmissionContactMappingSkipped, hb as SubmissionDocument, hc as SubmissionDocumentDocumentOneOf, br as SubmissionErrorType, ja as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hE as SubmissionStatusWithLiterals, hv as SubmissionValidationError, hw as SubmissionValidationErrorErrorMessageOneOf, hu as SubmissionValidationErrors, gi as SubmissionValidationErrorsDetails, hA as SubmissionsQueryResult, gf as SubmitContactResponse, fH as SubmitSettings, fI as SubmitSettingsSubmitSuccessActionOptionsOneOf, bh as SubmitSuccessAction, j0 as SubmitSuccessActionWithLiterals, bs as Submitter, bt as SubmitterSubmitterOneOf, f3 as SubscriptionInfo, bb as SubscriptionInfoOptInLevel, iW as SubscriptionInfoOptInLevelWithLiterals, dM as TableCellData, dK as TableData, b2 as Tag, bx as TagList, iN as TagWithLiterals, fZ as Tags, eu as TagsOption, f_ as TagsTagList, bg as Target, i$ as TargetWithLiterals, a9 as TextAlignment, hS as TextAlignmentWithLiterals, dl as TextData, co as TextInput, d$ as TextNodeStyle, cG as TextStyle, fJ as ThankYouMessageOptions, cV as Thumbnails, ah as ThumbnailsAlignment, h_ as ThumbnailsAlignmentWithLiterals, eb as TimeInput, aX as Type, iG as TypeWithLiterals, hl as UpdateExtendedFieldsRequest, gB as UpdateSubmissionRequest, gC as UpdateSubmissionResponse, aU as UploadFileFormat, iD as UploadFileFormatWithLiterals, fw as UpsertContact, ge as UpsertContactFromSubmissionRequest, fx as V4FormFieldContactInfo, fy as V4FormFieldContactInfoAdditionalInfoOneOf, hr as ValidateFormSubmissionRequest, cb as Validation, gj as ValidationError, _ as ValidationFormat, hH as ValidationFormatWithLiterals, cn as ValidationMessages, cc as ValidationValidationOneOf, aD as VerticalAlignment, aH as VerticalAlignmentAlignment, iq as VerticalAlignmentAlignmentWithLiterals, il as VerticalAlignmentWithLiterals, cP as Video, eX as VideoConferenceOptions, dF as VideoData, ad as ViewMode, hW as ViewModeWithLiterals, am as ViewRole, i3 as ViewRoleWithLiterals, an as VoteRole, i4 as VoteRoleWithLiterals, bl as WebhookIdentityType, j4 as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, hO as WidthTypeWithLiterals, hU as WidthWithLiterals, fd as WixFile, aT as WixFileComponentType, fe as WixFileComponentTypeOptionsOneOf, iC as WixFileComponentTypeWithLiterals, fa as _Array, fb as _ArrayComponentTypeOptionsOneOf, f8 as _Boolean, f9 as _BooleanComponentTypeOptionsOneOf, f6 as _Number, f7 as _NumberComponentTypeOptionsOneOf, fc as _Object, f4 as _String, f5 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-p9UgjNSI.js';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-C2J-TaQm.js';
|
|
3
|
+
export { ga as ActionEvent, fk as Address, fl as AddressComponentTypeOptionsOneOf, f2 as AddressInfo, bb as AddressInfoTag, iX as AddressInfoTagWithLiterals, eH as AddressLine2, aL as Alignment, iv as AlignmentWithLiterals, fQ as AllowedValuesOptions, dq as AnchorData, fV as AndCondition, dx as AppEmbedData, dy as AppEmbedDataAppDataOneOf, aA as AppType, ij as AppTypeWithLiterals, gr as ApplicationError, eT as Appointment, eU as AppointmentFormatInfoOneOf, aT as ArrayComponentType, iD as ArrayComponentTypeWithLiterals, b_ as ArrayErrorMessages, eq as ArrayItems, er as ArrayItemsItemTypeOptionsOneOf, em as ArrayType, bY as ArrayTypeArrayItems, bZ as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, ic as AspectRatioWithLiterals, dS as AudioData, df as Background, dg as BackgroundBackgroundOneOf, dY as BackgroundImage, aq as BackgroundType, i8 as BackgroundTypeWithLiterals, hy as BaseEventMetadata, dV as BlockquoteData, dz as BookingData, aQ as BooleanComponentType, iA as BooleanComponentTypeWithLiterals, bS as BooleanErrorMessages, ek as BooleanType, cv as Border, dP as BorderColors, dQ as BorderWidths, eN as BreakPoint, gs as BulkActionMetadata, gw as BulkCreateSubmissionBySubmitterData, gv as BulkCreateSubmissionBySubmitterRequest, gx as BulkCreateSubmissionBySubmitterResponse, gn as BulkCreateSubmissionsForMigrationRequest, go as BulkCreateSubmissionsForMigrationResponse, gH as BulkDeleteSubmissionRequest, gI as BulkDeleteSubmissionResult, ha as BulkMarkSubmissionsAsSeenRequest, gM as BulkRemoveSubmissionFromTrashBinRequest, gN as BulkRemoveSubmissionFromTrashBinResult, gp as BulkSubmissionResult, hE as BulkUpdateFormSubmissionTagsByFilterOptions, hq as BulkUpdateFormSubmissionTagsByFilterRequest, hr as BulkUpdateFormSubmissionTagsByFilterResponse, hD as BulkUpdateFormSubmissionTagsOptions, hn as BulkUpdateFormSubmissionTagsRequest, ho as BulkUpdateFormSubmissionTagsResponse, hp as BulkUpdateFormSubmissionTagsResult, dU as BulletedListData, cu as ButtonData, a7 as ButtonDataType, hR as ButtonDataTypeWithLiterals, dB as ButtonStyles, dW as CaptionData, dE as CardStyles, ay as CardStylesAlignment, ih as CardStylesAlignmentWithLiterals, ax as CardStylesType, ig as CardStylesTypeWithLiterals, dO as CellStyle, bj as ChangeableProperty, j3 as ChangeablePropertyWithLiterals, el as Checkbox, es as CheckboxGroup, g1 as Checkout, cG as CodeBlockData, dK as CollapsibleListData, dr as ColorData, cw as Colors, je as CommonQueryWithEntityContext, jd as CommonSearchWithEntityContext, aX as ComponentType, iH as ComponentTypeWithLiterals, eu as ComponentsTags, fX as Condition, fT as ConditionNode, fU as ConditionNodeNodeOneOf, gE as ConfirmSubmissionRequest, b4 as ConfirmationLevel, iQ as ConfirmationLevelWithLiterals, b5 as ContactField, iR as ContactFieldWithLiterals, h7 as CountDeletedSubmissionsRequest, h4 as CountSubmissionsByFilterRequest, h6 as CountSubmissionsRequest, bE as CreateCheckoutFromSubmissionRequest, bF as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, g0 as CreateCheckoutFromSubmissionResponse, gt as CreateSubmissionBySubmitterRequest, gu as CreateSubmissionBySubmitterResponse, gl as CreateSubmissionForMigrationRequest, gm as CreateSubmissionForMigrationResponse, gh as CreateSubmissionRequest, gi as CreateSubmissionResponse, ag as Crop, h_ as CropWithLiterals, gP as CursorPaging, gQ as CursorPagingMetadata, gU as CursorQueryPagingMethodOneOf, gX as CursorSearch, gY as CursorSearchPagingMethodOneOf, gR as Cursors, f3 as CustomFieldInfo, e6 as CustomOption, ce as DataExtensionsDetails, eb as DateInput, ed as DatePicker, cm as DateTimeConstraints, e9 as DateTimeInput, dn as Decoration, dp as DecorationDataOneOf, ar as DecorationType, i9 as DecorationTypeWithLiterals, eI as DefaultCountryConfig, eJ as DefaultCountryConfigOptionsOneOf, gF as DeleteSubmissionRequest, gG as DeleteSubmissionResponse, dl as Design, aJ as DesignTarget, it as DesignTargetWithLiterals, dM as Dimensions, aC as Direction, il as DirectionWithLiterals, fo as DisplayField, fp as DisplayFieldDisplayFieldTypeOptionsOneOf, b6 as DisplayFieldType, iS as DisplayFieldTypeWithLiterals, cI as DividerData, ac as DividerDataAlignment, hW as DividerDataAlignmentWithLiterals, he as DocumentReady, d$ as DocumentStyle, g4 as DomainEvent, g5 as DomainEventBodyOneOf, eC as DonationInput, eD as DonationInputOption, hf as DownloadSubmissionRequest, e7 as Dropdown, e8 as DropdownOption, c4 as DynamicPriceOptions, f0 as EmailInfo, b1 as EmailInfoTag, iN as EmailInfoTagWithLiterals, dI as EmbedData, gb as Empty, g6 as EntityCreatedEvent, g9 as EntityDeletedEvent, g8 as EntityUpdatedEvent, bo as ErrorType, j8 as ErrorTypeWithLiterals, dA as EventData, hz as EventMetadata, bv as ExtendedFields, cg as Field, ch as FieldFieldTypeOptionsOneOf, fM as FieldGroup, fR as FieldOverride, fS as FieldOverridePropertyTypeOptionsOneOf, c8 as FieldOverrides, a1 as FieldType, hL as FieldTypeWithLiterals, ht as FieldViolation, hu as FieldViolationErrorDataOneOf, c9 as FieldsOverrides, eK as FieldsSettings, cJ as FileData, cK as FileSource, cL as FileSourceDataOneOf, ex as FileType, ey as FileUpload, aO as FirstDayOfWeek, iy as FirstDayOfWeekWithLiterals, eF as FixedPayment, c3 as FixedPriceOptions, dw as FontFamilyData, du as FontSizeData, as as FontType, ia as FontTypeWithLiterals, bG as Form, h8 as FormDeletedSubmissionsCount, bH as FormField, bT as FormFieldArrayType, bR as FormFieldBooleanType, e_ as FormFieldContactInfo, e$ as FormFieldContactInfoAdditionalInfoOneOf, fC as FormFieldContactInfoAddressInfo, bd as FormFieldContactInfoContactField, iZ as FormFieldContactInfoContactFieldWithLiterals, fD as FormFieldContactInfoCustomFieldInfo, fA as FormFieldContactInfoEmailInfo, b9 as FormFieldContactInfoEmailInfoTag, iV as FormFieldContactInfoEmailInfoTagWithLiterals, fB as FormFieldContactInfoPhoneInfo, ba as FormFieldContactInfoPhoneInfoTag, iW as FormFieldContactInfoPhoneInfoTagWithLiterals, fE as FormFieldContactInfoSubscriptionInfo, bO as FormFieldNumberType, bU as FormFieldObjectType, bI as FormFieldStringType, bJ as FormFieldStringTypeFormatOptionsOneOf, eM as FormLayout, fu as FormOverride, fv as FormProperties, ft as FormRule, hC as FormSubmissionQuerySpec, hA as FormSubmissionSearchSpec, bz as FormSubmissionStatusUpdatedEvent, h5 as FormSubmissionsCount, a$ as Format, a2 as FormatEnumFormat, hM as FormatEnumFormatWithLiterals, iL as FormatWithLiterals, hl as FormattedFormSubmission, hi as FormattedSubmission, cY as GIF, cX as GIFData, ai as GIFType, i0 as GIFTypeWithLiterals, cN as GalleryData, cT as GalleryOptions, cU as GalleryOptionsLayout, gS as GetDeletedSubmissionRequest, hh as GetFormattedSubmissionRequest, h9 as GetMediaUploadURLRequest, gA as GetSubmissionByCheckoutIdRequest, gB as GetSubmissionByCheckoutIdResponse, hb as GetSubmissionDownloadUrlRequest, gy as GetSubmissionRequest, gz as GetSubmissionResponse, de as Gradient, eQ as Group, c_ as HTMLData, c$ as HTMLDataDataOneOf, hg as HeadersEntry, cZ as HeadingData, cB as Height, fP as HiddenOptions, gd as IdentificationData, ge as IdentificationDataIdOneOf, bn as IdentityType, j7 as IdentityTypeWithLiterals, cP as Image, d0 as ImageData, d2 as ImageDataStyles, aM as ImageFit, iw as ImageFitWithLiterals, aK as ImagePosition, iu as ImagePositionWithLiterals, dC as ImageStyles, eX as InPersonOptions, aB as InitialExpandedItems, ik as InitialExpandedItemsWithLiterals, ci as InputField, cj as InputFieldInputTypeOptionsOneOf, b0 as InputType, iM as InputTypeWithLiterals, bQ as IntegerType, g2 as IsFormSubmittableRequest, g3 as IsFormSubmittableResponse, cR as Item, cS as ItemDataOneOf, eO as ItemLayout, eP as ItemLayoutItemOneOf, gq as ItemMetadata, cV as ItemStyle, aR as ItemType, iB as ItemTypeWithLiterals, b8 as Kind, iU as KindWithLiterals, az as Layout, dZ as LayoutCellData, dX as LayoutData, aG as LayoutDataImagePosition, iq as LayoutDataImagePositionWithLiterals, ae as LayoutType, hY as LayoutTypeWithLiterals, ii as LayoutWithLiterals, fG as LimitationRule, aa as LineStyle, hU as LineStyleWithLiterals, cD as Link, ds as LinkData, cE as LinkDataOneOf, d3 as LinkPreviewData, d4 as LinkPreviewDataStyles, a8 as LinkTarget, hS as LinkTargetWithLiterals, gO as ListDeletedSubmissionsRequest, hj as ListFormattedSubmissionsRequest, hk as ListFormattedSubmissionsResponse, dR as ListValue, eV as Location, eW as LocationLocationInfoOneOf, d5 as MapData, d6 as MapSettings, al as MapType, i3 as MapTypeWithLiterals, eR as Margin, bC as MarketingSubscriptionDetails, cO as Media, e1 as MediaItem, e2 as MediaItemMediaOneOf, e3 as MediaSettings, dt as MentionData, gc as MessageEnvelope, d_ as Metadata, bq as Mode, ja as ModeWithLiterals, eG as MultilineAddress, c7 as MultilineAddressValidation, fF as NestedForm, cb as NestedFormFieldOverrides, cf as NestedFormOverrides, cr as Node, cs as NodeDataOneOf, ct as NodeStyle, a4 as NodeType, hO as NodeTypeWithLiterals, aE as NullValue, io as NullValueWithLiterals, aP as NumberComponentType, iz as NumberComponentTypeWithLiterals, bP as NumberErrorMessages, ei as NumberInput, aN as NumberOfColumns, ix as NumberOfColumnsWithLiterals, eh as NumberType, fm as ObjectArray, aZ as ObjectArrayComponentType, fn as ObjectArrayComponentTypeOptionsOneOf, iJ as ObjectArrayComponentTypeWithLiterals, ca as ObjectArrayType, bX as ObjectErrorMessages, en as ObjectType, bV as ObjectTypePropertiesType, bW as ObjectTypePropertiesTypePropertiesTypeOneOf, dJ as Oembed, bl as Operator, j5 as OperatorWithLiterals, Y as OptInLevel, hG as OptInLevelWithLiterals, et as Option, di as OptionDesign, dd as OptionLayout, fW as OrCondition, bw as OrderDetails, dT as OrderedListData, af as Orientation, hZ as OrientationWithLiterals, b7 as OverrideEntityType, bk as OverrideEntityTypeEnumOverrideEntityType, j4 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, iT as OverrideEntityTypeWithLiterals, cM as PDFSettings, fr as PageNavigationOptions, d7 as ParagraphData, eg as Password, fg as Payment, aW as PaymentComponentType, fh as PaymentComponentTypeOptionsOneOf, iG as PaymentComponentTypeWithLiterals, eE as PaymentInput, c1 as PaymentType, d9 as Permissions, cn as PhoneConstraints, f1 as PhoneInfo, b2 as PhoneInfoTag, iO as PhoneInfoTagWithLiterals, ea as PhoneInput, eZ as PhoneOptions, aw as Placement, ie as PlacementWithLiterals, dH as PlaybackOptions, cx as PluginContainerData, a6 as PluginContainerDataAlignment, hQ as PluginContainerDataAlignmentWithLiterals, cy as PluginContainerDataWidth, cz as PluginContainerDataWidthDataOneOf, dj as Poll, d8 as PollData, dk as PollDataLayout, dh as PollDesign, dc as PollLayout, ap as PollLayoutDirection, i7 as PollLayoutDirectionWithLiterals, ao as PollLayoutType, i6 as PollLayoutTypeWithLiterals, da as PollOption, at as Position, ib as PositionWithLiterals, fw as PostSubmissionTriggers, b$ as PredefinedValidation, c0 as PredefinedValidationFormatOptionsOneOf, a0 as PriceType, hK as PriceTypeWithLiterals, dF as PricingData, c5 as Product, eA as ProductCheckboxGroup, eB as ProductCheckboxGroupOption, c6 as ProductPriceOptionsOneOf, $ as ProductType, hJ as ProductTypeWithLiterals, eo as PropertiesType, aS as PropertiesTypeEnum, iC as PropertiesTypeEnumWithLiterals, ep as PropertiesTypePropertiesTypeOptionsOneOf, bx as PublicTags, c2 as QuantityLimit, gT as QuerySubmissionRequest, h2 as QuerySubmissionsByNamespaceForExportRequest, h3 as QuerySubmissionsByNamespaceForExportResponse, h0 as QuerySubmissionsByNamespaceRequest, h1 as QuerySubmissionsByNamespaceResponse, e4 as RadioGroup, e5 as RadioGroupOption, ej as RatingInput, fL as RedirectOptions, cF as Rel, gK as RemoveSubmissionFromTrashBinRequest, gL as RemoveSubmissionFromTrashBinResponse, bA as RemovedSubmissionFromTrash, eL as Repeater, bf as RequiredIndicator, bg as RequiredIndicatorPlacement, j0 as RequiredIndicatorPlacementWithLiterals, fH as RequiredIndicatorProperties, i$ as RequiredIndicatorWithLiterals, fO as RequiredOptions, av as Resizing, id as ResizingWithLiterals, aI as ResponsivenessBehaviour, is as ResponsivenessBehaviourWithLiterals, g7 as RestoreInfo, gJ as RestoreSubmissionFromTrashBinRequest, dD as RibbonStyles, cq as RichContent, fq as RichContentOptions, fN as Rule, fY as RuleFormOverride, fZ as RuleFormOverrideEntityTypeOptionsOneOf, aF as Scaling, ip as ScalingWithLiterals, fi as Scheduling, a_ as SchedulingComponentType, fj as SchedulingComponentTypeOptionsOneOf, iK as SchedulingComponentTypeWithLiterals, gZ as SearchDetails, g_ as SearchSubmissionsByNamespaceForExportRequest, g$ as SearchSubmissionsByNamespaceForExportResponse, gW as SearchSubmissionsByNamespaceRequest, eS as Section, ef as ServiceOption, ew as ServicesCheckboxGroup, ee as ServicesDropdown, db as Settings, ez as Signature, bp as SortOrder, j9 as SortOrderWithLiterals, gV as Sorting, aj as Source, i1 as SourceWithLiterals, be as SpamFilterProtectionLevel, i_ as SpamFilterProtectionLevelWithLiterals, cA as Spoiler, dv as SpoilerData, br as Status, jb as StatusWithLiterals, fs as Step, a3 as StringComponentType, hN as StringComponentTypeWithLiterals, bK as StringErrorMessages, ck as StringType, bL as StringTypeDateTimeConstraints, Z as StringTypeFormatEnumFormat, hH as StringTypeFormatEnumFormatWithLiterals, cl as StringTypeFormatOptionsOneOf, bM as StringTypePhoneConstraints, bN as StringTypeValidationMessages, cC as Styles, d1 as StylesBorder, ak as StylesPosition, i2 as StylesPositionWithLiterals, bB as SubmissionContactMapped, bD as SubmissionContactMappingSkipped, hc as SubmissionDocument, hd as SubmissionDocumentDocumentOneOf, bs as SubmissionErrorType, jc as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, hF as SubmissionStatusWithLiterals, hw as SubmissionValidationError, hx as SubmissionValidationErrorErrorMessageOneOf, hv as SubmissionValidationErrors, gj as SubmissionValidationErrorsDetails, hB as SubmissionsQueryResult, gg as SubmitContactResponse, fI as SubmitSettings, fJ as SubmitSettingsSubmitSuccessActionOptionsOneOf, bi as SubmitSuccessAction, j2 as SubmitSuccessActionWithLiterals, bt as Submitter, bu as SubmitterSubmitterOneOf, f4 as SubscriptionInfo, bc as SubscriptionInfoOptInLevel, iY as SubscriptionInfoOptInLevelWithLiterals, dN as TableCellData, dL as TableData, b3 as Tag, by as TagList, iP as TagWithLiterals, f_ as Tags, ev as TagsOption, f$ as TagsTagList, bh as Target, j1 as TargetWithLiterals, a9 as TextAlignment, hT as TextAlignmentWithLiterals, dm as TextData, cp as TextInput, e0 as TextNodeStyle, cH as TextStyle, fK as ThankYouMessageOptions, cW as Thumbnails, ah as ThumbnailsAlignment, h$ as ThumbnailsAlignmentWithLiterals, ec as TimeInput, aY as Type, iI as TypeWithLiterals, hm as UpdateExtendedFieldsRequest, gC as UpdateSubmissionRequest, gD as UpdateSubmissionResponse, aV as UploadFileFormat, iF as UploadFileFormatWithLiterals, fx as UpsertContact, gf as UpsertContactFromSubmissionRequest, fy as V4FormFieldContactInfo, fz as V4FormFieldContactInfoAdditionalInfoOneOf, hs as ValidateFormSubmissionRequest, cc as Validation, gk as ValidationError, _ as ValidationFormat, hI as ValidationFormatWithLiterals, co as ValidationMessages, cd as ValidationValidationOneOf, aD as VerticalAlignment, aH as VerticalAlignmentAlignment, ir as VerticalAlignmentAlignmentWithLiterals, im as VerticalAlignmentWithLiterals, cQ as Video, eY as VideoConferenceOptions, dG as VideoData, ad as ViewMode, hX as ViewModeWithLiterals, am as ViewRole, i4 as ViewRoleWithLiterals, an as VoteRole, i5 as VoteRoleWithLiterals, bm as WebhookIdentityType, j6 as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, hP as WidthTypeWithLiterals, hV as WidthWithLiterals, fe as WixFile, aU as WixFileComponentType, ff as WixFileComponentTypeOptionsOneOf, iE as WixFileComponentTypeWithLiterals, fb as _Array, fc as _ArrayComponentTypeOptionsOneOf, f9 as _Boolean, fa as _BooleanComponentTypeOptionsOneOf, f7 as _Number, f8 as _NumberComponentTypeOptionsOneOf, fd as _Object, f5 as _String, f6 as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-C2J-TaQm.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -36,6 +36,7 @@ __export(index_exports, {
|
|
|
36
36
|
ContactField: () => ContactField,
|
|
37
37
|
Crop: () => Crop,
|
|
38
38
|
DecorationType: () => DecorationType,
|
|
39
|
+
DesignTarget: () => DesignTarget,
|
|
39
40
|
Direction: () => Direction,
|
|
40
41
|
DisplayFieldType: () => DisplayFieldType,
|
|
41
42
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
@@ -1381,6 +1382,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
1381
1382
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1382
1383
|
return ResponsivenessBehaviour2;
|
|
1383
1384
|
})(ResponsivenessBehaviour || {});
|
|
1385
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
1386
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
1387
|
+
DesignTarget2["CELL"] = "CELL";
|
|
1388
|
+
return DesignTarget2;
|
|
1389
|
+
})(DesignTarget || {});
|
|
1384
1390
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1385
1391
|
ImagePosition2["UNKNOWN_IMAGE_POSITION"] = "UNKNOWN_IMAGE_POSITION";
|
|
1386
1392
|
ImagePosition2["ABOVE"] = "ABOVE";
|
|
@@ -2890,7 +2896,9 @@ var onSubmissionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
2890
2896
|
paths: [
|
|
2891
2897
|
{ path: "entity.createdDate" },
|
|
2892
2898
|
{ path: "entity.updatedDate" },
|
|
2893
|
-
{ path: "metadata.eventTime" }
|
|
2899
|
+
{ path: "metadata.eventTime" },
|
|
2900
|
+
{ path: "modifiedFields.createdDate" },
|
|
2901
|
+
{ path: "modifiedFields.updatedDate" }
|
|
2894
2902
|
]
|
|
2895
2903
|
}
|
|
2896
2904
|
])
|
|
@@ -2978,6 +2986,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
2978
2986
|
ContactField,
|
|
2979
2987
|
Crop,
|
|
2980
2988
|
DecorationType,
|
|
2989
|
+
DesignTarget,
|
|
2981
2990
|
Direction,
|
|
2982
2991
|
DisplayFieldType,
|
|
2983
2992
|
DividerDataAlignment,
|