@wix/auto_sdk_forms_submissions 1.0.107 → 1.0.109
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-rCtTXLP4.d.ts → forms-v4-submission-submissions.universal-DmrA9Uxi.d.ts} +64 -14
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +16 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +16 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +63 -13
- package/build/cjs/meta.js +16 -7
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-rCtTXLP4.d.mts → forms-v4-submission-submissions.universal-DmrA9Uxi.d.mts} +64 -14
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +15 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +15 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +63 -13
- package/build/es/meta.mjs +15 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-DsUYsb7z.d.ts → forms-v4-submission-submissions.universal-DH6N9f2_.d.ts} +64 -14
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +16 -7
- 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 +16 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +63 -13
- package/build/internal/cjs/meta.js +16 -7
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-DsUYsb7z.d.mts → forms-v4-submission-submissions.universal-DH6N9f2_.d.mts} +64 -14
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +15 -7
- 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 +15 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +63 -13
- package/build/internal/es/meta.mjs +15 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -836,11 +836,11 @@ interface FormFieldArrayType {
|
|
|
836
836
|
}
|
|
837
837
|
interface FormFieldObjectType {
|
|
838
838
|
/** Description of object properties. */
|
|
839
|
-
properties?: Record<string,
|
|
839
|
+
properties?: Record<string, FormFieldObjectTypePropertiesType>;
|
|
840
840
|
/** Custom error message when validation fails. */
|
|
841
841
|
errorMessages?: ObjectErrorMessages;
|
|
842
842
|
}
|
|
843
|
-
interface
|
|
843
|
+
interface FormFieldObjectTypePropertiesType extends FormFieldObjectTypePropertiesTypePropertiesTypeOneOf {
|
|
844
844
|
/** String type validation for property. */
|
|
845
845
|
string?: FormFieldStringType;
|
|
846
846
|
/** Number type validation for property. */
|
|
@@ -855,7 +855,7 @@ interface ObjectTypePropertiesType extends ObjectTypePropertiesTypePropertiesTyp
|
|
|
855
855
|
required?: boolean;
|
|
856
856
|
}
|
|
857
857
|
/** @oneof */
|
|
858
|
-
interface
|
|
858
|
+
interface FormFieldObjectTypePropertiesTypePropertiesTypeOneOf {
|
|
859
859
|
/** String type validation for property. */
|
|
860
860
|
string?: FormFieldStringType;
|
|
861
861
|
/** Number type validation for property. */
|
|
@@ -1084,6 +1084,25 @@ interface ObjectArrayType {
|
|
|
1084
1084
|
* @max 1000
|
|
1085
1085
|
*/
|
|
1086
1086
|
minItems?: number | null;
|
|
1087
|
+
/** Definition of item properties and their validation rules. */
|
|
1088
|
+
itemProperties?: Record<string, PropertiesType>;
|
|
1089
|
+
}
|
|
1090
|
+
declare enum PropertiesTypeEnum {
|
|
1091
|
+
/** Property must contain a string value. */
|
|
1092
|
+
STRING = "STRING",
|
|
1093
|
+
/** Property must contain a numeric value. */
|
|
1094
|
+
NUMBER = "NUMBER",
|
|
1095
|
+
/** Property must contain a boolean value. */
|
|
1096
|
+
BOOLEAN = "BOOLEAN"
|
|
1097
|
+
}
|
|
1098
|
+
/** @enumType */
|
|
1099
|
+
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
1100
|
+
interface PropertiesType {
|
|
1101
|
+
/**
|
|
1102
|
+
* Data type of the item property.
|
|
1103
|
+
* @readonly
|
|
1104
|
+
*/
|
|
1105
|
+
propertiesType?: PropertiesTypeEnumWithLiterals;
|
|
1087
1106
|
}
|
|
1088
1107
|
interface NestedFormFieldOverrides {
|
|
1089
1108
|
/** Whether the field is required. Leave blank for no override. */
|
|
@@ -4025,6 +4044,8 @@ interface ServicesDropdown {
|
|
|
4025
4044
|
options?: ServiceOption[];
|
|
4026
4045
|
/** Custom option which can be specified by the submitter. */
|
|
4027
4046
|
customOption?: CustomOption;
|
|
4047
|
+
/** Additional description or instructions for the field. */
|
|
4048
|
+
description?: RichContent;
|
|
4028
4049
|
}
|
|
4029
4050
|
interface ServiceOption {
|
|
4030
4051
|
/**
|
|
@@ -4214,9 +4235,9 @@ declare enum ItemType {
|
|
|
4214
4235
|
type ItemTypeWithLiterals = ItemType | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
4215
4236
|
interface ObjectType {
|
|
4216
4237
|
/** Definition of object properties and their validation rules. */
|
|
4217
|
-
properties?: Record<string,
|
|
4238
|
+
properties?: Record<string, ObjectTypePropertiesType>;
|
|
4218
4239
|
}
|
|
4219
|
-
declare enum
|
|
4240
|
+
declare enum PropertiesTypePropertiesTypeEnum {
|
|
4220
4241
|
/** Property must contain a string value. */
|
|
4221
4242
|
STRING = "STRING",
|
|
4222
4243
|
/** Property must contain a numeric value. */
|
|
@@ -4227,8 +4248,8 @@ declare enum PropertiesTypeEnum {
|
|
|
4227
4248
|
ARRAY = "ARRAY"
|
|
4228
4249
|
}
|
|
4229
4250
|
/** @enumType */
|
|
4230
|
-
type
|
|
4231
|
-
interface
|
|
4251
|
+
type PropertiesTypePropertiesTypeEnumWithLiterals = PropertiesTypePropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
|
|
4252
|
+
interface ObjectTypePropertiesType extends ObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
|
|
4232
4253
|
/** Validation rules for string properties. */
|
|
4233
4254
|
stringOptions?: StringType;
|
|
4234
4255
|
/** Validation rules for numeric properties. */
|
|
@@ -4241,12 +4262,12 @@ interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
|
|
|
4241
4262
|
* Data type of the object property.
|
|
4242
4263
|
* @readonly
|
|
4243
4264
|
*/
|
|
4244
|
-
propertiesType?:
|
|
4265
|
+
propertiesType?: PropertiesTypePropertiesTypeEnumWithLiterals;
|
|
4245
4266
|
/** Whether the object property is required for validation. */
|
|
4246
4267
|
required?: boolean;
|
|
4247
4268
|
}
|
|
4248
4269
|
/** @oneof */
|
|
4249
|
-
interface
|
|
4270
|
+
interface ObjectTypePropertiesTypePropertiesTypeOptionsOneOf {
|
|
4250
4271
|
/** Validation rules for string properties. */
|
|
4251
4272
|
stringOptions?: StringType;
|
|
4252
4273
|
/** Validation rules for numeric properties. */
|
|
@@ -4733,10 +4754,12 @@ declare enum ObjectArrayComponentType {
|
|
|
4733
4754
|
/** Unknown component type. */
|
|
4734
4755
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
4735
4756
|
/** Repeater component. */
|
|
4736
|
-
REPEATER = "REPEATER"
|
|
4757
|
+
REPEATER = "REPEATER",
|
|
4758
|
+
/** Pikachu entity picker component. */
|
|
4759
|
+
PIKACHU = "PIKACHU"
|
|
4737
4760
|
}
|
|
4738
4761
|
/** @enumType */
|
|
4739
|
-
type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER';
|
|
4762
|
+
type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER' | 'PIKACHU';
|
|
4740
4763
|
interface Repeater {
|
|
4741
4764
|
/**
|
|
4742
4765
|
* Field label.
|
|
@@ -4846,6 +4869,29 @@ interface Section {
|
|
|
4846
4869
|
*/
|
|
4847
4870
|
allowedFieldIds?: string[];
|
|
4848
4871
|
}
|
|
4872
|
+
interface Pikachu {
|
|
4873
|
+
/**
|
|
4874
|
+
* Field label.
|
|
4875
|
+
* @maxLength 350
|
|
4876
|
+
*/
|
|
4877
|
+
label?: string | null;
|
|
4878
|
+
/** Additional description or instructions for the field. */
|
|
4879
|
+
description?: RichContent;
|
|
4880
|
+
/**
|
|
4881
|
+
* Whether to display the label.
|
|
4882
|
+
*
|
|
4883
|
+
* Default: `true`
|
|
4884
|
+
*/
|
|
4885
|
+
showLabel?: boolean | null;
|
|
4886
|
+
/**
|
|
4887
|
+
* Items selection provider key.
|
|
4888
|
+
* @minLength 1
|
|
4889
|
+
* @maxLength 255
|
|
4890
|
+
*/
|
|
4891
|
+
providerName?: string;
|
|
4892
|
+
/** Provider filter configuration, e.g. {"eventType": ["Ticketed"]}. */
|
|
4893
|
+
filter?: Record<string, any> | null;
|
|
4894
|
+
}
|
|
4849
4895
|
declare enum SchedulingComponentType {
|
|
4850
4896
|
/** Unknown component type. */
|
|
4851
4897
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -5330,6 +5376,8 @@ interface AddressComponentTypeOptionsOneOf {
|
|
|
5330
5376
|
interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
|
|
5331
5377
|
/** Repeater component settings. */
|
|
5332
5378
|
repeaterOptions?: Repeater;
|
|
5379
|
+
/** Pikachu entity picker component settings. */
|
|
5380
|
+
pikachuOptions?: Pikachu;
|
|
5333
5381
|
/**
|
|
5334
5382
|
* Component type of the object array input.
|
|
5335
5383
|
* @readonly
|
|
@@ -5342,6 +5390,8 @@ interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
|
|
|
5342
5390
|
interface ObjectArrayComponentTypeOptionsOneOf {
|
|
5343
5391
|
/** Repeater component settings. */
|
|
5344
5392
|
repeaterOptions?: Repeater;
|
|
5393
|
+
/** Pikachu entity picker component settings. */
|
|
5394
|
+
pikachuOptions?: Pikachu;
|
|
5345
5395
|
}
|
|
5346
5396
|
interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
5347
5397
|
/** Configuration for rich content display fields. */
|
|
@@ -7818,9 +7868,9 @@ declare const utils: {
|
|
|
7818
7868
|
Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
|
|
7819
7869
|
};
|
|
7820
7870
|
query: {
|
|
7821
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7871
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<FormSubmission, FormSubmissionQuerySpec, FormSubmissionQuery>;
|
|
7822
7872
|
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionQuerySpec>;
|
|
7823
|
-
Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7873
|
+
Sort: _wix_sdk_types.SortFactory<FormSubmissionQuerySpec>;
|
|
7824
7874
|
};
|
|
7825
7875
|
};
|
|
7826
7876
|
/**
|
|
@@ -8194,4 +8244,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8194
8244
|
fieldsToValidate?: string[];
|
|
8195
8245
|
}
|
|
8196
8246
|
|
|
8197
|
-
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, NumberComponentType as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, FieldType as a3, FormatEnumFormat as a4, StringComponentType as a5, NodeType as a6, BackgroundType as a7, GradientType 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, ImageScalingScaling as aJ, LayoutDataImagePosition as aK, Origin as aL, LayoutDataBackgroundType as aM, BackdropType as aN, VerticalAlignmentAlignment as aO, ResponsivenessBehaviour as aP, DesignTarget as aQ, Scaling as aR, ImagePositionPosition as aS, CardDataBackgroundType as aT, ListStyle as aU, Indentation as aV, ImagePosition as aW, Alignment as aX, ImageFit as aY, NumberOfColumns as aZ, FirstDayOfWeek 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, PollDesignBackgroundType as au, DecorationType as av, FontType as aw, Position as ax, AspectRatio as ay, Resizing as az, type CreateSubmissionApplicationErrors as b, type ActionEvent as b$, BooleanComponentType as b0, ItemType as b1, PropertiesTypeEnum as b2, ArrayComponentType as b3, WixFileComponentType as b4, UploadFileFormat as b5, PaymentComponentType as b6, ComponentType as b7, Type as b8, ObjectArrayComponentType as b9, Operator as bA, ResultsDisplay as bB, ContactAutofill as bC, IdentityType as bD, ErrorType as bE, SortOrder as bF, Mode as bG, Status as bH, SubmissionErrorType as bI, type Submitter as bJ, type SubmitterSubmitterOneOf as bK, type ExtendedFields as bL, type OrderDetails as bM, type PublicTags as bN, type TagList as bO, type AppointmentDetails as bP, type FormSubmissionStatusUpdatedEvent as bQ, type RemovedSubmissionFromTrash as bR, type SubmissionContactMapped as bS, type MarketingSubscriptionDetails as bT, type SubmissionContactMappingSkipped as bU, type DomainEvent as bV, type DomainEventBodyOneOf as bW, type EntityCreatedEvent as bX, type RestoreInfo as bY, type EntityUpdatedEvent as bZ, type EntityDeletedEvent as b_, SchedulingComponentType as ba, Format as bb, MeetingType as bc, StaffStrategySelection as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, SubscriptionChannel as bj, ContactField as bk, DisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, FormFieldContactInfoEmailInfoTag as bo, FormFieldContactInfoPhoneInfoTag as bp, AddressInfoTag as bq, SubscriptionInfoOptInLevel as br, FormFieldContactInfoContactField as bs, SpamFilterProtectionLevel as bt, RequiredIndicator as bu, RequiredIndicatorPlacement as bv, Target as bw, SubmitSuccessAction as bx, ChangeableProperty as by, OverrideEntityTypeEnumOverrideEntityType as bz, type CreateSubmissionValidationErrors as c, type ButtonData as c$, type MessageEnvelope as c0, type IdentificationData as c1, type IdentificationDataIdOneOf as c2, type AccountInfo as c3, type CreateCheckoutFromSubmissionRequest as c4, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c5, type Form as c6, type FormField as c7, type FormFieldStringType as c8, type FormFieldStringTypeFormatOptionsOneOf as c9, type Product as cA, type ProductPriceOptionsOneOf as cB, type MultilineAddressValidation as cC, type FieldOverrides as cD, type FieldsOverrides as cE, type ObjectArrayType as cF, type NestedFormFieldOverrides as cG, type Validation as cH, type ValidationValidationOneOf as cI, type DataExtensionsDetails as cJ, type NestedFormOverrides as cK, type Field as cL, type FieldFieldTypeOptionsOneOf as cM, type InputField as cN, type InputFieldInputTypeOptionsOneOf as cO, type StringCorrectAnswersList as cP, type StringType as cQ, type StringTypeFormatOptionsOneOf as cR, type DateTimeConstraints as cS, type PhoneConstraints as cT, type ValidationMessages as cU, type StringQuizFieldSettings as cV, type TextInput as cW, type RichContent as cX, type Node as cY, type NodeDataOneOf as cZ, type NodeStyle as c_, type StringErrorMessages as ca, type StringTypeDateTimeConstraints as cb, type DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypePhoneConstraints as cf, type StringTypeValidationMessages as cg, type FormFieldNumberType as ch, type NumberErrorMessages as ci, type IntegerType as cj, type FormFieldBooleanType as ck, type BooleanErrorMessages as cl, type FormFieldArrayType as cm, type FormFieldObjectType as cn, type ObjectTypePropertiesType as co, type ObjectTypePropertiesTypePropertiesTypeOneOf as cp, type ObjectErrorMessages as cq, type ArrayTypeArrayItems as cr, type ArrayTypeArrayItemsItemsOneOf as cs, type ArrayErrorMessages as ct, type PredefinedValidation as cu, type PredefinedValidationFormatOptionsOneOf as cv, type PaymentType as cw, type QuantityLimit as cx, type FixedPriceOptions as cy, type DynamicPriceOptions as cz, type UpdateSubmission as d, type ColorData as d$, type Gradient as d0, type Stop as d1, type Border as d2, type Colors as d3, type Background as d4, type PluginContainerData as d5, type PluginContainerDataWidth as d6, type PluginContainerDataWidthDataOneOf as d7, type Spoiler as d8, type Height as d9, type HTMLDataDataOneOf as dA, type ImageData as dB, type StylesBorder as dC, type ImageDataStyles as dD, type LinkPreviewData as dE, type LinkPreviewDataStyles as dF, type MapData as dG, type MapSettings as dH, type ParagraphData as dI, type PollData as dJ, type Permissions as dK, type PollOption as dL, type Settings as dM, type PollLayout as dN, type OptionLayout as dO, type BackgroundGradient as dP, type PollDesignBackground as dQ, type PollDesignBackgroundBackgroundOneOf as dR, type PollDesign as dS, type OptionDesign as dT, type Poll as dU, type PollDataLayout as dV, type Design as dW, type TextData as dX, type Decoration as dY, type DecorationDataOneOf as dZ, type AnchorData as d_, type Styles as da, type Link as db, type LinkDataOneOf as dc, type Rel as dd, type CodeBlockData as de, type TextStyle as df, type DividerData as dg, type FileData as dh, type FileSource as di, type FileSourceDataOneOf as dj, type PDFSettings as dk, type GalleryData as dl, type Media as dm, type Image as dn, type Video as dp, type Item as dq, type ItemDataOneOf as dr, type GalleryOptions as ds, type GalleryOptionsLayout as dt, type ItemStyle as du, type Thumbnails as dv, type GIFData as dw, type GIF as dx, type HeadingData as dy, type HTMLData as dz, type UpdateSubmissionValidationErrors as e, type NumberType as e$, type LinkData as e0, type MentionData as e1, type FontSizeData as e2, type SpoilerData as e3, type FontFamilyData as e4, type AppEmbedData as e5, type AppEmbedDataAppDataOneOf as e6, type BookingData as e7, type EventData as e8, type ButtonStyles as e9, type LayoutCellData as eA, type ShapeData as eB, type ShapeDataStyles as eC, type CardData as eD, type CardDataBackground as eE, type BackgroundImage as eF, type TocData as eG, type Metadata as eH, type DocumentStyle as eI, type TextNodeStyle as eJ, type MediaItem as eK, type MediaItemMediaOneOf as eL, type MediaSettings as eM, type RadioGroup as eN, type RadioGroupOption as eO, type CustomOption as eP, type Dropdown as eQ, type DropdownOption as eR, type DateTimeInput as eS, type PhoneInput as eT, type DateInput as eU, type TimeInput as eV, type DatePicker as eW, type ServicesDropdown as eX, type ServiceOption as eY, type Password as eZ, type NumberCorrectAnswersList as e_, type ImageStyles as ea, type RibbonStyles as eb, type CardStyles as ec, type PricingData as ed, type VideoData as ee, type PlaybackOptions as ef, type EmbedData as eg, type Oembed as eh, type CollapsibleListData as ei, type TableData as ej, type Dimensions as ek, type TableCellData as el, type CellStyle as em, type BorderColors as en, type BorderWidths as eo, type ListValue as ep, type AudioData as eq, type OrderedListData as er, type BulletedListData as es, type BlockquoteData as et, type CaptionData as eu, type LayoutData as ev, type LayoutDataBackgroundImage as ew, type Banner as ex, type LayoutDataBackground as ey, type Backdrop as ez, type ConfirmSubmissionResponse as f, type WixFile as f$, type NumberQuizFieldSettings as f0, type NumberInput as f1, type RatingInput as f2, type BooleanType as f3, type Checkbox as f4, type CorrectAnswersList as f5, type ArrayType as f6, type ObjectType as f7, type PropertiesType as f8, type PropertiesTypePropertiesTypeOptionsOneOf as f9, type ItemLayoutItemOneOf as fA, type Group as fB, type Margin as fC, type Section as fD, type Appointment as fE, type AppointmentFormatInfoOneOf as fF, type Location as fG, type LocationLocationInfoOneOf as fH, type InPersonOptions as fI, type VideoConferenceOptions as fJ, type PhoneOptions as fK, type FormFieldContactInfo as fL, type FormFieldContactInfoAdditionalInfoOneOf as fM, type EmailInfo as fN, type PhoneInfo as fO, type AddressInfo as fP, type CustomFieldInfo as fQ, type SubscriptionInfo as fR, type _String as fS, type _StringComponentTypeOptionsOneOf as fT, type _Number as fU, type _NumberComponentTypeOptionsOneOf as fV, type _Boolean as fW, type _BooleanComponentTypeOptionsOneOf as fX, type _Array as fY, type _ArrayComponentTypeOptionsOneOf as fZ, type _Object as f_, type ArrayItems as fa, type ArrayItemsItemTypeOptionsOneOf as fb, type QuizFieldSettings as fc, type CheckboxGroup as fd, type Option as fe, type ComponentsTags as ff, type TagsOption as fg, type ServicesCheckboxGroup as fh, type FileType as fi, type FileUpload as fj, type Signature as fk, type ProductCheckboxGroup as fl, type ProductCheckboxGroupOption as fm, type DonationInput as fn, type DonationInputOption as fo, type PaymentInput as fp, type FixedPayment as fq, type MultilineAddress as fr, type AddressLine2 as fs, type DefaultCountryConfig as ft, type DefaultCountryConfigOptionsOneOf as fu, type FieldsSettings as fv, type Repeater as fw, type FormLayout as fx, type BreakPoint as fy, type ItemLayout as fz, type BulkDeleteSubmissionResponse as g, type ValidationError as g$, type WixFileComponentTypeOptionsOneOf as g0, type Payment as g1, type PaymentComponentTypeOptionsOneOf as g2, type Scheduling as g3, type SchedulingComponentTypeOptionsOneOf as g4, type Address as g5, type AddressComponentTypeOptionsOneOf as g6, type ObjectArray as g7, type ObjectArrayComponentTypeOptionsOneOf as g8, type DisplayField as g9, type HiddenOptions as gA, type AllowedValuesOptions as gB, type FieldOverride as gC, type FieldOverridePropertyTypeOptionsOneOf as gD, type ConditionNode as gE, type ConditionNodeNodeOneOf as gF, type AndCondition as gG, type OrCondition as gH, type Condition as gI, type RuleFormOverride as gJ, type RuleFormOverrideEntityTypeOptionsOneOf as gK, type Tags as gL, type TagsTagList as gM, type QuizSettings as gN, type QuizSettingsPassingCriteriaOneOf as gO, type QuizSettingsResultsDisplayOptionsOneOf as gP, type PassFailMessages as gQ, type CreateCheckoutFromSubmissionResponse as gR, type Checkout as gS, type IsFormSubmittableRequest as gT, type IsFormSubmittableResponse as gU, type Empty as gV, type UpsertContactFromSubmissionRequest as gW, type SubmitContactResponse as gX, type CreateSubmissionRequest as gY, type CreateSubmissionResponse as gZ, type SubmissionValidationErrorsDetails as g_, type DisplayFieldDisplayFieldTypeOptionsOneOf as ga, type RichContentOptions as gb, type PageNavigationOptions as gc, type Step as gd, type FormRule as ge, type FormOverride as gf, type FormProperties as gg, type PostSubmissionTriggers as gh, type UpsertContact as gi, type V4FormFieldContactInfo as gj, type V4FormFieldContactInfoAdditionalInfoOneOf as gk, type FormFieldContactInfoEmailInfo as gl, type FormFieldContactInfoPhoneInfo as gm, type FormFieldContactInfoAddressInfo as gn, type FormFieldContactInfoCustomFieldInfo as go, type FormFieldContactInfoSubscriptionInfo as gp, type NestedForm as gq, type LimitationRule as gr, type RequiredIndicatorProperties as gs, type SubmitSettings as gt, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gu, type ThankYouMessageOptions as gv, type RedirectOptions as gw, type FieldGroup as gx, type Rule as gy, type RequiredOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type BulkUpdateFormSubmissionTagsResponse as h$, type CreateSubmissionBySubmitterRequest as h0, type CreateSubmissionBySubmitterResponse as h1, type BulkCreateSubmissionBySubmitterRequest as h2, type BulkCreateSubmissionBySubmitterData as h3, type BulkCreateSubmissionBySubmitterResponse as h4, type BulkSubmissionResult as h5, type ItemMetadata as h6, type ApplicationError as h7, type BulkActionMetadata as h8, type GetSubmissionRequest as h9, type SearchDetails as hA, type SearchSubmissionsByNamespaceForExportRequest as hB, type SearchSubmissionsByNamespaceForExportResponse as hC, type QuerySubmissionsByNamespaceRequest as hD, type QuerySubmissionsByNamespaceResponse as hE, type QuerySubmissionsByNamespaceForExportRequest as hF, type QuerySubmissionsByNamespaceForExportResponse as hG, type CountSubmissionsByFilterRequest as hH, type FormSubmissionsCount as hI, type CountSubmissionsRequest as hJ, type CountDeletedSubmissionsRequest as hK, type FormDeletedSubmissionsCount as hL, type GetMediaUploadURLRequest as hM, type BulkMarkSubmissionsAsSeenRequest as hN, type GetSubmissionDownloadUrlRequest as hO, type SubmissionDocument as hP, type SubmissionDocumentDocumentOneOf as hQ, type DocumentReady as hR, type DownloadSubmissionRequest as hS, type HeadersEntry as hT, type GetFormattedSubmissionRequest as hU, type FormattedSubmission as hV, type ListFormattedSubmissionsRequest as hW, type ListFormattedSubmissionsResponse as hX, type FormattedFormSubmission as hY, type UpdateExtendedFieldsRequest as hZ, type BulkUpdateFormSubmissionTagsRequest as h_, type GetSubmissionResponse as ha, type GetSubmissionByCheckoutIdRequest as hb, type GetSubmissionByCheckoutIdResponse as hc, type UpdateSubmissionRequest as hd, type UpdateSubmissionResponse as he, type ConfirmSubmissionRequest as hf, type DeleteSubmissionRequest as hg, type DeleteSubmissionResponse as hh, type BulkDeleteSubmissionRequest as hi, type BulkDeleteSubmissionResult as hj, type RestoreSubmissionFromTrashBinRequest as hk, type RemoveSubmissionFromTrashBinRequest as hl, type RemoveSubmissionFromTrashBinResponse as hm, type BulkRemoveSubmissionFromTrashBinRequest as hn, type BulkRemoveSubmissionFromTrashBinResult as ho, type ListDeletedSubmissionsRequest as hp, type CursorPaging as hq, type CursorPagingMetadata as hr, type Cursors as hs, type GetDeletedSubmissionRequest as ht, type QuerySubmissionRequest as hu, type CursorQueryPagingMethodOneOf as hv, type Sorting as hw, type SearchSubmissionsByNamespaceRequest as hx, type CursorSearch as hy, type CursorSearchPagingMethodOneOf as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type CardStylesAlignmentWithLiterals as i$, type BulkUpdateFormSubmissionTagsResult as i0, type BulkUpdateFormSubmissionTagsByFilterRequest as i1, type BulkUpdateFormSubmissionTagsByFilterResponse as i2, type ValidateFormSubmissionRequest as i3, type FieldViolation as i4, type FieldViolationErrorDataOneOf as i5, type SubmissionValidationErrors as i6, type SubmissionValidationError as i7, type SubmissionValidationErrorErrorMessageOneOf as i8, type BaseEventMetadata as i9, type ButtonDataTypeWithLiterals as iA, type LinkTargetWithLiterals as iB, type TextAlignmentWithLiterals as iC, type LineStyleWithLiterals as iD, type WidthWithLiterals as iE, type DividerDataAlignmentWithLiterals as iF, type ViewModeWithLiterals as iG, type LayoutTypeWithLiterals as iH, type OrientationWithLiterals as iI, type CropWithLiterals as iJ, type ThumbnailsAlignmentWithLiterals as iK, type GIFTypeWithLiterals as iL, type SourceWithLiterals as iM, type StylesPositionWithLiterals as iN, type MapTypeWithLiterals as iO, type ViewRoleWithLiterals as iP, type VoteRoleWithLiterals as iQ, type PollLayoutTypeWithLiterals as iR, type PollLayoutDirectionWithLiterals as iS, type PollDesignBackgroundTypeWithLiterals as iT, type DecorationTypeWithLiterals as iU, type FontTypeWithLiterals as iV, type PositionWithLiterals as iW, type AspectRatioWithLiterals as iX, type ResizingWithLiterals as iY, type PlacementWithLiterals as iZ, type CardStylesTypeWithLiterals as i_, type EventMetadata as ia, type AccountInfoMetadata as ib, type FormSubmissionSearchSpec as ic, type SubmissionsQueryResult as id, type FormSubmissionQuerySpec as ie, type BulkUpdateFormSubmissionTagsOptions as ig, type BulkUpdateFormSubmissionTagsByFilterOptions as ih, utils as ii, type SubmissionStatusWithLiterals as ij, type OptInLevelWithLiterals as ik, type WebhookIdentityTypeWithLiterals as il, type StringTypeFormatEnumFormatWithLiterals as im, type DayOfWeekWithLiterals as io, type ValidationFormatWithLiterals as ip, type ProductTypeWithLiterals as iq, type PriceTypeWithLiterals as ir, type FieldTypeWithLiterals as is, type FormatEnumFormatWithLiterals as it, type StringComponentTypeWithLiterals as iu, type NodeTypeWithLiterals as iv, type BackgroundTypeWithLiterals as iw, type GradientTypeWithLiterals as ix, type WidthTypeWithLiterals as iy, type PluginContainerDataAlignmentWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ContactAutofillWithLiterals as j$, type LayoutWithLiterals as j0, type AppTypeWithLiterals as j1, type InitialExpandedItemsWithLiterals as j2, type DirectionWithLiterals as j3, type VerticalAlignmentWithLiterals as j4, type NullValueWithLiterals as j5, type ImageScalingScalingWithLiterals as j6, type LayoutDataImagePositionWithLiterals as j7, type OriginWithLiterals as j8, type LayoutDataBackgroundTypeWithLiterals as j9, type FormatWithLiterals as jA, type MeetingTypeWithLiterals as jB, type StaffStrategySelectionWithLiterals as jC, type InputTypeWithLiterals as jD, type EmailInfoTagWithLiterals as jE, type PhoneInfoTagWithLiterals as jF, type TagWithLiterals as jG, type ConfirmationLevelWithLiterals as jH, type SubscriptionChannelWithLiterals as jI, type ContactFieldWithLiterals as jJ, type DisplayFieldTypeWithLiterals as jK, type OverrideEntityTypeWithLiterals as jL, type KindWithLiterals as jM, type FormFieldContactInfoEmailInfoTagWithLiterals as jN, type FormFieldContactInfoPhoneInfoTagWithLiterals as jO, type AddressInfoTagWithLiterals as jP, type SubscriptionInfoOptInLevelWithLiterals as jQ, type FormFieldContactInfoContactFieldWithLiterals as jR, type SpamFilterProtectionLevelWithLiterals as jS, type RequiredIndicatorWithLiterals as jT, type RequiredIndicatorPlacementWithLiterals as jU, type TargetWithLiterals as jV, type SubmitSuccessActionWithLiterals as jW, type ChangeablePropertyWithLiterals as jX, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jY, type OperatorWithLiterals as jZ, type ResultsDisplayWithLiterals as j_, type BackdropTypeWithLiterals as ja, type VerticalAlignmentAlignmentWithLiterals as jb, type ResponsivenessBehaviourWithLiterals as jc, type DesignTargetWithLiterals as jd, type ScalingWithLiterals as je, type ImagePositionPositionWithLiterals as jf, type CardDataBackgroundTypeWithLiterals as jg, type ListStyleWithLiterals as jh, type IndentationWithLiterals as ji, type ImagePositionWithLiterals as jj, type AlignmentWithLiterals as jk, type ImageFitWithLiterals as jl, type NumberOfColumnsWithLiterals as jm, type FirstDayOfWeekWithLiterals as jn, type NumberComponentTypeWithLiterals as jo, type BooleanComponentTypeWithLiterals as jp, type ItemTypeWithLiterals as jq, type PropertiesTypeEnumWithLiterals as jr, type ArrayComponentTypeWithLiterals as js, type WixFileComponentTypeWithLiterals as jt, type UploadFileFormatWithLiterals as ju, type PaymentComponentTypeWithLiterals as jv, type ComponentTypeWithLiterals as jw, type TypeWithLiterals as jx, type ObjectArrayComponentTypeWithLiterals as jy, type SchedulingComponentTypeWithLiterals as jz, type CursorQuery as k, type IdentityTypeWithLiterals as k0, type ErrorTypeWithLiterals as k1, type SortOrderWithLiterals as k2, type ModeWithLiterals as k3, type StatusWithLiterals as k4, type SubmissionErrorTypeWithLiterals as k5, type CommonSearchWithEntityContext as k6, type CommonQueryWithEntityContext as k7, onSubmissionCreated as k8, onSubmissionDeleted as k9, getFormattedSubmission as kA, updateExtendedFields as kB, validateFormSubmission as kC, onSubmissionRemovedSubmissionFromTrash as ka, onSubmissionStatusUpdated as kb, onSubmissionContactMapped as kc, onSubmissionContactMappingSkipped as kd, onSubmissionUpdated as ke, upsertContactFromSubmission as kf, createSubmission as kg, getSubmission as kh, updateSubmission as ki, confirmSubmission as kj, deleteSubmission as kk, bulkDeleteSubmission as kl, restoreSubmissionFromTrashBin as km, removeSubmissionFromTrashBin as kn, bulkRemoveSubmissionFromTrashBin as ko, listDeletedSubmissions as kp, getDeletedSubmission as kq, querySubmission as kr, querySubmissionsByNamespace as ks, countSubmissionsByFilter as kt, countSubmissions as ku, countDeletedSubmissions as kv, getMediaUploadUrl as kw, bulkMarkSubmissionsAsSeen as kx, getSubmissionDownloadUrl as ky, downloadSubmission as kz, 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 };
|
|
8247
|
+
export { DayOfWeek as $, type ValidateFormSubmissionResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type SubmissionCreatedEnvelope as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type SubmissionDeletedEnvelope as H, type SubmissionRemovedSubmissionFromTrashEnvelope as I, type SubmissionStatusUpdatedEnvelope as J, type SubmissionContactMappedEnvelope as K, type ListDeletedSubmissionsOptions as L, type SubmissionContactMappingSkippedEnvelope as M, type SubmissionUpdatedEnvelope as N, type FormSubmissionQuery as O, type QuerySubmissionsByNamespaceOptions as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, typedQuerySubmissionsByNamespace as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionsQueryBuilder as W, SubmissionStatus as X, OptInLevel as Y, WebhookIdentityType as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FirstDayOfWeek as a$, ValidationFormat as a0, ProductType as a1, PriceType as a2, PropertiesTypeEnum as a3, FieldType as a4, FormatEnumFormat as a5, StringComponentType as a6, NodeType as a7, BackgroundType as a8, GradientType as a9, Resizing as aA, Placement as aB, CardStylesType as aC, CardStylesAlignment as aD, Layout as aE, AppType as aF, InitialExpandedItems as aG, Direction as aH, VerticalAlignment as aI, NullValue as aJ, ImageScalingScaling as aK, LayoutDataImagePosition as aL, Origin as aM, LayoutDataBackgroundType as aN, BackdropType as aO, VerticalAlignmentAlignment as aP, ResponsivenessBehaviour as aQ, DesignTarget as aR, Scaling as aS, ImagePositionPosition as aT, CardDataBackgroundType as aU, ListStyle as aV, Indentation as aW, ImagePosition as aX, Alignment as aY, ImageFit as aZ, NumberOfColumns as a_, WidthType as aa, PluginContainerDataAlignment as ab, ButtonDataType as ac, LinkTarget as ad, TextAlignment as ae, LineStyle as af, Width as ag, DividerDataAlignment as ah, ViewMode as ai, LayoutType as aj, Orientation as ak, Crop as al, ThumbnailsAlignment as am, GIFType as an, Source as ao, StylesPosition as ap, MapType as aq, ViewRole as ar, VoteRole as as, PollLayoutType as at, PollLayoutDirection as au, PollDesignBackgroundType as av, DecorationType as aw, FontType as ax, Position as ay, AspectRatio as az, type CreateSubmissionApplicationErrors as b, type EntityDeletedEvent as b$, NumberComponentType as b0, BooleanComponentType as b1, ItemType as b2, PropertiesTypePropertiesTypeEnum as b3, ArrayComponentType as b4, WixFileComponentType as b5, UploadFileFormat as b6, PaymentComponentType as b7, ComponentType as b8, Type as b9, OverrideEntityTypeEnumOverrideEntityType as bA, Operator as bB, ResultsDisplay as bC, ContactAutofill as bD, IdentityType as bE, ErrorType as bF, SortOrder as bG, Mode as bH, Status as bI, SubmissionErrorType as bJ, type Submitter as bK, type SubmitterSubmitterOneOf as bL, type ExtendedFields as bM, type OrderDetails as bN, type PublicTags as bO, type TagList as bP, type AppointmentDetails as bQ, type FormSubmissionStatusUpdatedEvent as bR, type RemovedSubmissionFromTrash as bS, type SubmissionContactMapped as bT, type MarketingSubscriptionDetails as bU, type SubmissionContactMappingSkipped as bV, type DomainEvent as bW, type DomainEventBodyOneOf as bX, type EntityCreatedEvent as bY, type RestoreInfo as bZ, type EntityUpdatedEvent as b_, ObjectArrayComponentType as ba, SchedulingComponentType as bb, Format as bc, MeetingType as bd, StaffStrategySelection as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, SubscriptionChannel as bk, ContactField as bl, DisplayFieldType as bm, OverrideEntityType as bn, Kind as bo, FormFieldContactInfoEmailInfoTag as bp, FormFieldContactInfoPhoneInfoTag as bq, AddressInfoTag as br, SubscriptionInfoOptInLevel as bs, FormFieldContactInfoContactField as bt, SpamFilterProtectionLevel as bu, RequiredIndicator as bv, RequiredIndicatorPlacement as bw, Target as bx, SubmitSuccessAction as by, ChangeableProperty as bz, type CreateSubmissionValidationErrors as c, type NodeDataOneOf as c$, type ActionEvent as c0, type MessageEnvelope as c1, type IdentificationData as c2, type IdentificationDataIdOneOf as c3, type AccountInfo as c4, type CreateCheckoutFromSubmissionRequest as c5, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as c6, type Form as c7, type FormField as c8, type FormFieldStringType as c9, type DynamicPriceOptions as cA, type Product as cB, type ProductPriceOptionsOneOf as cC, type MultilineAddressValidation as cD, type FieldOverrides as cE, type FieldsOverrides as cF, type ObjectArrayType as cG, type PropertiesType as cH, type NestedFormFieldOverrides as cI, type Validation as cJ, type ValidationValidationOneOf as cK, type DataExtensionsDetails as cL, type NestedFormOverrides as cM, type Field as cN, type FieldFieldTypeOptionsOneOf as cO, type InputField as cP, type InputFieldInputTypeOptionsOneOf as cQ, type StringCorrectAnswersList as cR, type StringType as cS, type StringTypeFormatOptionsOneOf as cT, type DateTimeConstraints as cU, type PhoneConstraints as cV, type ValidationMessages as cW, type StringQuizFieldSettings as cX, type TextInput as cY, type RichContent as cZ, type Node as c_, type FormFieldStringTypeFormatOptionsOneOf as ca, type StringErrorMessages as cb, type StringTypeDateTimeConstraints as cc, type DateTimeAdvancedConstraints as cd, type Availability as ce, type DateRange as cf, type StringTypePhoneConstraints as cg, type StringTypeValidationMessages as ch, type FormFieldNumberType as ci, type NumberErrorMessages as cj, type IntegerType as ck, type FormFieldBooleanType as cl, type BooleanErrorMessages as cm, type FormFieldArrayType as cn, type FormFieldObjectType as co, type FormFieldObjectTypePropertiesType as cp, type FormFieldObjectTypePropertiesTypePropertiesTypeOneOf as cq, type ObjectErrorMessages as cr, type ArrayTypeArrayItems as cs, type ArrayTypeArrayItemsItemsOneOf as ct, type ArrayErrorMessages as cu, type PredefinedValidation as cv, type PredefinedValidationFormatOptionsOneOf as cw, type PaymentType as cx, type QuantityLimit as cy, type FixedPriceOptions as cz, type UpdateSubmission as d, type DecorationDataOneOf as d$, type NodeStyle as d0, type ButtonData as d1, type Gradient as d2, type Stop as d3, type Border as d4, type Colors as d5, type Background as d6, type PluginContainerData as d7, type PluginContainerDataWidth as d8, type PluginContainerDataWidthDataOneOf as d9, type HeadingData as dA, type HTMLData as dB, type HTMLDataDataOneOf as dC, type ImageData as dD, type StylesBorder as dE, type ImageDataStyles as dF, type LinkPreviewData as dG, type LinkPreviewDataStyles as dH, type MapData as dI, type MapSettings as dJ, type ParagraphData as dK, type PollData as dL, type Permissions as dM, type PollOption as dN, type Settings as dO, type PollLayout as dP, type OptionLayout as dQ, type BackgroundGradient as dR, type PollDesignBackground as dS, type PollDesignBackgroundBackgroundOneOf as dT, type PollDesign as dU, type OptionDesign as dV, type Poll as dW, type PollDataLayout as dX, type Design as dY, type TextData as dZ, type Decoration as d_, type Spoiler as da, type Height as db, type Styles as dc, type Link as dd, type LinkDataOneOf as de, type Rel as df, type CodeBlockData as dg, type TextStyle as dh, type DividerData as di, type FileData as dj, type FileSource as dk, type FileSourceDataOneOf as dl, type PDFSettings as dm, type GalleryData as dn, type Media as dp, type Image as dq, type Video as dr, type Item as ds, type ItemDataOneOf as dt, type GalleryOptions as du, type GalleryOptionsLayout as dv, type ItemStyle as dw, type Thumbnails as dx, type GIFData as dy, type GIF as dz, type UpdateSubmissionValidationErrors as e, type Password as e$, type AnchorData as e0, type ColorData as e1, type LinkData as e2, type MentionData as e3, type FontSizeData as e4, type SpoilerData as e5, type FontFamilyData as e6, type AppEmbedData as e7, type AppEmbedDataAppDataOneOf as e8, type BookingData as e9, type LayoutDataBackground as eA, type Backdrop as eB, type LayoutCellData as eC, type ShapeData as eD, type ShapeDataStyles as eE, type CardData as eF, type CardDataBackground as eG, type BackgroundImage as eH, type TocData as eI, type Metadata as eJ, type DocumentStyle as eK, type TextNodeStyle as eL, type MediaItem as eM, type MediaItemMediaOneOf as eN, type MediaSettings as eO, type RadioGroup as eP, type RadioGroupOption as eQ, type CustomOption as eR, type Dropdown as eS, type DropdownOption as eT, type DateTimeInput as eU, type PhoneInput as eV, type DateInput as eW, type TimeInput as eX, type DatePicker as eY, type ServicesDropdown as eZ, type ServiceOption as e_, type EventData as ea, type ButtonStyles as eb, type ImageStyles as ec, type RibbonStyles as ed, type CardStyles as ee, type PricingData as ef, type VideoData as eg, type PlaybackOptions as eh, type EmbedData as ei, type Oembed as ej, type CollapsibleListData as ek, type TableData as el, type Dimensions as em, type TableCellData as en, type CellStyle as eo, type BorderColors as ep, type BorderWidths as eq, type ListValue as er, type AudioData as es, type OrderedListData as et, type BulletedListData as eu, type BlockquoteData as ev, type CaptionData as ew, type LayoutData as ex, type LayoutDataBackgroundImage as ey, type Banner as ez, type ConfirmSubmissionResponse as f, type _Array as f$, type NumberCorrectAnswersList as f0, type NumberType as f1, type NumberQuizFieldSettings as f2, type NumberInput as f3, type RatingInput as f4, type BooleanType as f5, type Checkbox as f6, type CorrectAnswersList as f7, type ArrayType as f8, type ObjectType as f9, type BreakPoint as fA, type ItemLayout as fB, type ItemLayoutItemOneOf as fC, type Group as fD, type Margin as fE, type Section as fF, type Pikachu as fG, type Appointment as fH, type AppointmentFormatInfoOneOf as fI, type Location as fJ, type LocationLocationInfoOneOf as fK, type InPersonOptions as fL, type VideoConferenceOptions as fM, type PhoneOptions as fN, type FormFieldContactInfo as fO, type FormFieldContactInfoAdditionalInfoOneOf as fP, type EmailInfo as fQ, type PhoneInfo as fR, type AddressInfo as fS, type CustomFieldInfo as fT, type SubscriptionInfo as fU, type _String as fV, type _StringComponentTypeOptionsOneOf as fW, type _Number as fX, type _NumberComponentTypeOptionsOneOf as fY, type _Boolean as fZ, type _BooleanComponentTypeOptionsOneOf as f_, type ObjectTypePropertiesType as fa, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as fb, type ArrayItems as fc, type ArrayItemsItemTypeOptionsOneOf as fd, type QuizFieldSettings as fe, type CheckboxGroup as ff, type Option as fg, type ComponentsTags as fh, type TagsOption as fi, type ServicesCheckboxGroup as fj, type FileType as fk, type FileUpload as fl, type Signature as fm, type ProductCheckboxGroup as fn, type ProductCheckboxGroupOption as fo, type DonationInput as fp, type DonationInputOption as fq, type PaymentInput as fr, type FixedPayment as fs, type MultilineAddress as ft, type AddressLine2 as fu, type DefaultCountryConfig as fv, type DefaultCountryConfigOptionsOneOf as fw, type FieldsSettings as fx, type Repeater as fy, type FormLayout as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionRequest as g$, type _ArrayComponentTypeOptionsOneOf as g0, type _Object as g1, type WixFile as g2, type WixFileComponentTypeOptionsOneOf as g3, type Payment as g4, type PaymentComponentTypeOptionsOneOf as g5, type Scheduling as g6, type SchedulingComponentTypeOptionsOneOf as g7, type Address as g8, type AddressComponentTypeOptionsOneOf as g9, type FieldGroup as gA, type Rule as gB, type RequiredOptions as gC, type HiddenOptions as gD, type AllowedValuesOptions as gE, type FieldOverride as gF, type FieldOverridePropertyTypeOptionsOneOf as gG, type ConditionNode as gH, type ConditionNodeNodeOneOf as gI, type AndCondition as gJ, type OrCondition as gK, type Condition as gL, type RuleFormOverride as gM, type RuleFormOverrideEntityTypeOptionsOneOf as gN, type Tags as gO, type TagsTagList as gP, type QuizSettings as gQ, type QuizSettingsPassingCriteriaOneOf as gR, type QuizSettingsResultsDisplayOptionsOneOf as gS, type PassFailMessages as gT, type CreateCheckoutFromSubmissionResponse as gU, type Checkout as gV, type IsFormSubmittableRequest as gW, type IsFormSubmittableResponse as gX, type Empty as gY, type UpsertContactFromSubmissionRequest as gZ, type SubmitContactResponse as g_, type ObjectArray as ga, type ObjectArrayComponentTypeOptionsOneOf as gb, type DisplayField as gc, type DisplayFieldDisplayFieldTypeOptionsOneOf as gd, type RichContentOptions as ge, type PageNavigationOptions as gf, type Step as gg, type FormRule as gh, type FormOverride as gi, type FormProperties as gj, type PostSubmissionTriggers as gk, type UpsertContact as gl, type V4FormFieldContactInfo as gm, type V4FormFieldContactInfoAdditionalInfoOneOf as gn, type FormFieldContactInfoEmailInfo as go, type FormFieldContactInfoPhoneInfo as gp, type FormFieldContactInfoAddressInfo as gq, type FormFieldContactInfoCustomFieldInfo as gr, type FormFieldContactInfoSubscriptionInfo as gs, type NestedForm as gt, type LimitationRule as gu, type RequiredIndicatorProperties as gv, type SubmitSettings as gw, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gx, type ThankYouMessageOptions as gy, type RedirectOptions as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FormattedFormSubmission as h$, type CreateSubmissionResponse as h0, type SubmissionValidationErrorsDetails as h1, type ValidationError as h2, type CreateSubmissionBySubmitterRequest as h3, type CreateSubmissionBySubmitterResponse as h4, type BulkCreateSubmissionBySubmitterRequest as h5, type BulkCreateSubmissionBySubmitterData as h6, type BulkCreateSubmissionBySubmitterResponse as h7, type BulkSubmissionResult as h8, type ItemMetadata as h9, type SearchSubmissionsByNamespaceRequest as hA, type CursorSearch as hB, type CursorSearchPagingMethodOneOf as hC, type SearchDetails as hD, type SearchSubmissionsByNamespaceForExportRequest as hE, type SearchSubmissionsByNamespaceForExportResponse as hF, type QuerySubmissionsByNamespaceRequest as hG, type QuerySubmissionsByNamespaceResponse as hH, type QuerySubmissionsByNamespaceForExportRequest as hI, type QuerySubmissionsByNamespaceForExportResponse as hJ, type CountSubmissionsByFilterRequest as hK, type FormSubmissionsCount as hL, type CountSubmissionsRequest as hM, type CountDeletedSubmissionsRequest as hN, type FormDeletedSubmissionsCount as hO, type GetMediaUploadURLRequest as hP, type BulkMarkSubmissionsAsSeenRequest as hQ, type GetSubmissionDownloadUrlRequest as hR, type SubmissionDocument as hS, type SubmissionDocumentDocumentOneOf as hT, type DocumentReady as hU, type DownloadSubmissionRequest as hV, type HeadersEntry as hW, type GetFormattedSubmissionRequest as hX, type FormattedSubmission as hY, type ListFormattedSubmissionsRequest as hZ, type ListFormattedSubmissionsResponse as h_, type ApplicationError as ha, type BulkActionMetadata as hb, type GetSubmissionRequest as hc, type GetSubmissionResponse as hd, type GetSubmissionByCheckoutIdRequest as he, type GetSubmissionByCheckoutIdResponse as hf, type UpdateSubmissionRequest as hg, type UpdateSubmissionResponse as hh, type ConfirmSubmissionRequest as hi, type DeleteSubmissionRequest as hj, type DeleteSubmissionResponse as hk, type BulkDeleteSubmissionRequest as hl, type BulkDeleteSubmissionResult as hm, type RestoreSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinRequest as ho, type RemoveSubmissionFromTrashBinResponse as hp, type BulkRemoveSubmissionFromTrashBinRequest as hq, type BulkRemoveSubmissionFromTrashBinResult as hr, type ListDeletedSubmissionsRequest as hs, type CursorPaging as ht, type CursorPagingMetadata as hu, type Cursors as hv, type GetDeletedSubmissionRequest as hw, type QuerySubmissionRequest as hx, type CursorQueryPagingMethodOneOf as hy, type Sorting as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type AspectRatioWithLiterals as i$, type UpdateExtendedFieldsRequest as i0, type BulkUpdateFormSubmissionTagsRequest as i1, type BulkUpdateFormSubmissionTagsResponse as i2, type BulkUpdateFormSubmissionTagsResult as i3, type BulkUpdateFormSubmissionTagsByFilterRequest as i4, type BulkUpdateFormSubmissionTagsByFilterResponse as i5, type ValidateFormSubmissionRequest as i6, type FieldViolation as i7, type FieldViolationErrorDataOneOf as i8, type SubmissionValidationErrors as i9, type BackgroundTypeWithLiterals as iA, type GradientTypeWithLiterals as iB, type WidthTypeWithLiterals as iC, type PluginContainerDataAlignmentWithLiterals as iD, type ButtonDataTypeWithLiterals as iE, type LinkTargetWithLiterals as iF, type TextAlignmentWithLiterals as iG, type LineStyleWithLiterals as iH, type WidthWithLiterals as iI, type DividerDataAlignmentWithLiterals as iJ, type ViewModeWithLiterals as iK, type LayoutTypeWithLiterals as iL, type OrientationWithLiterals as iM, type CropWithLiterals as iN, type ThumbnailsAlignmentWithLiterals as iO, type GIFTypeWithLiterals as iP, type SourceWithLiterals as iQ, type StylesPositionWithLiterals as iR, type MapTypeWithLiterals as iS, type ViewRoleWithLiterals as iT, type VoteRoleWithLiterals as iU, type PollLayoutTypeWithLiterals as iV, type PollLayoutDirectionWithLiterals as iW, type PollDesignBackgroundTypeWithLiterals as iX, type DecorationTypeWithLiterals as iY, type FontTypeWithLiterals as iZ, type PositionWithLiterals as i_, type SubmissionValidationError as ia, type SubmissionValidationErrorErrorMessageOneOf as ib, type BaseEventMetadata as ic, type EventMetadata as id, type AccountInfoMetadata as ie, type FormSubmissionSearchSpec as ig, type SubmissionsQueryResult as ih, type FormSubmissionQuerySpec as ii, type BulkUpdateFormSubmissionTagsOptions as ij, type BulkUpdateFormSubmissionTagsByFilterOptions as ik, utils as il, type SubmissionStatusWithLiterals as im, type OptInLevelWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type StringTypeFormatEnumFormatWithLiterals as iq, type DayOfWeekWithLiterals as ir, type ValidationFormatWithLiterals as is, type ProductTypeWithLiterals as it, type PriceTypeWithLiterals as iu, type PropertiesTypeEnumWithLiterals as iv, type FieldTypeWithLiterals as iw, type FormatEnumFormatWithLiterals as ix, type StringComponentTypeWithLiterals as iy, type NodeTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type ChangeablePropertyWithLiterals as j$, type ResizingWithLiterals as j0, type PlacementWithLiterals as j1, type CardStylesTypeWithLiterals as j2, type CardStylesAlignmentWithLiterals as j3, type LayoutWithLiterals as j4, type AppTypeWithLiterals as j5, type InitialExpandedItemsWithLiterals as j6, type DirectionWithLiterals as j7, type VerticalAlignmentWithLiterals as j8, type NullValueWithLiterals as j9, type ComponentTypeWithLiterals as jA, type TypeWithLiterals as jB, type ObjectArrayComponentTypeWithLiterals as jC, type SchedulingComponentTypeWithLiterals as jD, type FormatWithLiterals as jE, type MeetingTypeWithLiterals as jF, type StaffStrategySelectionWithLiterals as jG, type InputTypeWithLiterals as jH, type EmailInfoTagWithLiterals as jI, type PhoneInfoTagWithLiterals as jJ, type TagWithLiterals as jK, type ConfirmationLevelWithLiterals as jL, type SubscriptionChannelWithLiterals as jM, type ContactFieldWithLiterals as jN, type DisplayFieldTypeWithLiterals as jO, type OverrideEntityTypeWithLiterals as jP, type KindWithLiterals as jQ, type FormFieldContactInfoEmailInfoTagWithLiterals as jR, type FormFieldContactInfoPhoneInfoTagWithLiterals as jS, type AddressInfoTagWithLiterals as jT, type SubscriptionInfoOptInLevelWithLiterals as jU, type FormFieldContactInfoContactFieldWithLiterals as jV, type SpamFilterProtectionLevelWithLiterals as jW, type RequiredIndicatorWithLiterals as jX, type RequiredIndicatorPlacementWithLiterals as jY, type TargetWithLiterals as jZ, type SubmitSuccessActionWithLiterals as j_, type ImageScalingScalingWithLiterals as ja, type LayoutDataImagePositionWithLiterals as jb, type OriginWithLiterals as jc, type LayoutDataBackgroundTypeWithLiterals as jd, type BackdropTypeWithLiterals as je, type VerticalAlignmentAlignmentWithLiterals as jf, type ResponsivenessBehaviourWithLiterals as jg, type DesignTargetWithLiterals as jh, type ScalingWithLiterals as ji, type ImagePositionPositionWithLiterals as jj, type CardDataBackgroundTypeWithLiterals as jk, type ListStyleWithLiterals as jl, type IndentationWithLiterals as jm, type ImagePositionWithLiterals as jn, type AlignmentWithLiterals as jo, type ImageFitWithLiterals as jp, type NumberOfColumnsWithLiterals as jq, type FirstDayOfWeekWithLiterals as jr, type NumberComponentTypeWithLiterals as js, type BooleanComponentTypeWithLiterals as jt, type ItemTypeWithLiterals as ju, type PropertiesTypePropertiesTypeEnumWithLiterals as jv, type ArrayComponentTypeWithLiterals as jw, type WixFileComponentTypeWithLiterals as jx, type UploadFileFormatWithLiterals as jy, type PaymentComponentTypeWithLiterals as jz, type CursorQuery as k, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as k0, type OperatorWithLiterals as k1, type ResultsDisplayWithLiterals as k2, type ContactAutofillWithLiterals as k3, type IdentityTypeWithLiterals as k4, type ErrorTypeWithLiterals as k5, type SortOrderWithLiterals as k6, type ModeWithLiterals as k7, type StatusWithLiterals as k8, type SubmissionErrorTypeWithLiterals as k9, getMediaUploadUrl as kA, bulkMarkSubmissionsAsSeen as kB, getSubmissionDownloadUrl as kC, downloadSubmission as kD, getFormattedSubmission as kE, updateExtendedFields as kF, validateFormSubmission as kG, type CommonSearchWithEntityContext as ka, type CommonQueryWithEntityContext as kb, onSubmissionCreated as kc, onSubmissionDeleted as kd, onSubmissionRemovedSubmissionFromTrash as ke, onSubmissionStatusUpdated as kf, onSubmissionContactMapped as kg, onSubmissionContactMappingSkipped as kh, onSubmissionUpdated as ki, upsertContactFromSubmission as kj, createSubmission as kk, getSubmission as kl, updateSubmission as km, confirmSubmission as kn, deleteSubmission as ko, bulkDeleteSubmission as kp, restoreSubmissionFromTrashBin as kq, removeSubmissionFromTrashBin as kr, bulkRemoveSubmissionFromTrashBin as ks, listDeletedSubmissions as kt, getDeletedSubmission as ku, querySubmission as kv, querySubmissionsByNamespace as kw, countSubmissionsByFilter as kx, countSubmissions as ky, countDeletedSubmissions as kz, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type CountSubmissionsByFilterOptions as n, type CountSubmissionsByFilterResponse as o, type CountSubmissionsOptions as p, type CountSubmissionsResponse as q, type CountDeletedSubmissionsOptions as r, type CountDeletedSubmissionsResponse as s, type GetMediaUploadURLResponse as t, type BulkMarkSubmissionsAsSeenResponse as u, type GetSubmissionDownloadUrlResponse as v, type RawHttpResponse as w, type GetFormattedSubmissionResponse as x, type UpdateExtendedFieldsOptions as y, type UpdateExtendedFieldsResponse as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { c3 as AccountInfo, ib as AccountInfoMetadata, b$ as ActionEvent, g5 as Address, g6 as AddressComponentTypeOptionsOneOf, fP as AddressInfo, bq as AddressInfoTag, jP as AddressInfoTagWithLiterals, fs as AddressLine2, aX as Alignment, jk as AlignmentWithLiterals, gB as AllowedValuesOptions, d_ as AnchorData, gG as AndCondition, e5 as AppEmbedData, e6 as AppEmbedDataAppDataOneOf, aE as AppType, j1 as AppTypeWithLiterals, h7 as ApplicationError, fE as Appointment, bP as AppointmentDetails, fF as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, ct as ArrayErrorMessages, fa as ArrayItems, fb as ArrayItemsItemTypeOptionsOneOf, f6 as ArrayType, cr as ArrayTypeArrayItems, cs as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iX as AspectRatioWithLiterals, eq as AudioData, cd as Availability, ez as Backdrop, aN as BackdropType, ja as BackdropTypeWithLiterals, d4 as Background, dP as BackgroundGradient, eF as BackgroundImage, a7 as BackgroundType, iw as BackgroundTypeWithLiterals, ex as Banner, i9 as BaseEventMetadata, et as BlockquoteData, e7 as BookingData, b0 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, cl as BooleanErrorMessages, f3 as BooleanType, d2 as Border, en as BorderColors, eo as BorderWidths, fy as BreakPoint, h8 as BulkActionMetadata, h3 as BulkCreateSubmissionBySubmitterData, h2 as BulkCreateSubmissionBySubmitterRequest, h4 as BulkCreateSubmissionBySubmitterResponse, hi as BulkDeleteSubmissionRequest, hj as BulkDeleteSubmissionResult, hN as BulkMarkSubmissionsAsSeenRequest, hn as BulkRemoveSubmissionFromTrashBinRequest, ho as BulkRemoveSubmissionFromTrashBinResult, h5 as BulkSubmissionResult, ih as BulkUpdateFormSubmissionTagsByFilterOptions, i1 as BulkUpdateFormSubmissionTagsByFilterRequest, i2 as BulkUpdateFormSubmissionTagsByFilterResponse, ig as BulkUpdateFormSubmissionTagsOptions, h_ as BulkUpdateFormSubmissionTagsRequest, h$ as BulkUpdateFormSubmissionTagsResponse, i0 as BulkUpdateFormSubmissionTagsResult, es as BulletedListData, c$ as ButtonData, ab as ButtonDataType, iA as ButtonDataTypeWithLiterals, e9 as ButtonStyles, eu as CaptionData, eD as CardData, eE as CardDataBackground, aT as CardDataBackgroundType, jg as CardDataBackgroundTypeWithLiterals, ec as CardStyles, aC as CardStylesAlignment, i$ as CardStylesAlignmentWithLiterals, aB as CardStylesType, i_ as CardStylesTypeWithLiterals, em as CellStyle, by as ChangeableProperty, jX as ChangeablePropertyWithLiterals, f4 as Checkbox, fd as CheckboxGroup, gS as Checkout, de as CodeBlockData, ei as CollapsibleListData, d$ as ColorData, d3 as Colors, k7 as CommonQueryWithEntityContext, k6 as CommonSearchWithEntityContext, b7 as ComponentType, jw as ComponentTypeWithLiterals, ff as ComponentsTags, gI as Condition, gE as ConditionNode, gF as ConditionNodeNodeOneOf, hf as ConfirmSubmissionRequest, bi as ConfirmationLevel, jH as ConfirmationLevelWithLiterals, bC as ContactAutofill, j$ as ContactAutofillWithLiterals, bk as ContactField, jJ as ContactFieldWithLiterals, f5 as CorrectAnswersList, hK as CountDeletedSubmissionsRequest, hH as CountSubmissionsByFilterRequest, hJ as CountSubmissionsRequest, c4 as CreateCheckoutFromSubmissionRequest, c5 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gR as CreateCheckoutFromSubmissionResponse, h0 as CreateSubmissionBySubmitterRequest, h1 as CreateSubmissionBySubmitterResponse, gY as CreateSubmissionRequest, gZ as CreateSubmissionResponse, ak as Crop, iJ as CropWithLiterals, hq as CursorPaging, hr as CursorPagingMetadata, hv as CursorQueryPagingMethodOneOf, hy as CursorSearch, hz as CursorSearchPagingMethodOneOf, hs as Cursors, fQ as CustomFieldInfo, eP as CustomOption, cJ as DataExtensionsDetails, eU as DateInput, eW as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cS as DateTimeConstraints, eS as DateTimeInput, $ as DayOfWeek, io as DayOfWeekWithLiterals, dY as Decoration, dZ as DecorationDataOneOf, av as DecorationType, iU as DecorationTypeWithLiterals, ft as DefaultCountryConfig, fu as DefaultCountryConfigOptionsOneOf, hg as DeleteSubmissionRequest, hh as DeleteSubmissionResponse, dW as Design, aQ as DesignTarget, jd as DesignTargetWithLiterals, ek as Dimensions, aG as Direction, j3 as DirectionWithLiterals, g9 as DisplayField, ga as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jK as DisplayFieldTypeWithLiterals, dg as DividerData, ag as DividerDataAlignment, iF as DividerDataAlignmentWithLiterals, hR as DocumentReady, eI as DocumentStyle, bV as DomainEvent, bW as DomainEventBodyOneOf, fn as DonationInput, fo as DonationInputOption, hS as DownloadSubmissionRequest, eQ as Dropdown, eR as DropdownOption, cz as DynamicPriceOptions, fN as EmailInfo, bf as EmailInfoTag, jE as EmailInfoTagWithLiterals, eg as EmbedData, gV as Empty, bX as EntityCreatedEvent, b_ as EntityDeletedEvent, bZ as EntityUpdatedEvent, bE as ErrorType, k1 as ErrorTypeWithLiterals, e8 as EventData, ia as EventMetadata, bL as ExtendedFields, cL as Field, cM as FieldFieldTypeOptionsOneOf, gx as FieldGroup, gC as FieldOverride, gD as FieldOverridePropertyTypeOptionsOneOf, cD as FieldOverrides, a3 as FieldType, is as FieldTypeWithLiterals, i4 as FieldViolation, i5 as FieldViolationErrorDataOneOf, cE as FieldsOverrides, fv as FieldsSettings, dh as FileData, di as FileSource, dj as FileSourceDataOneOf, fi as FileType, fj as FileUpload, a_ as FirstDayOfWeek, jn as FirstDayOfWeekWithLiterals, fq as FixedPayment, cy as FixedPriceOptions, e4 as FontFamilyData, e2 as FontSizeData, aw as FontType, iV as FontTypeWithLiterals, c6 as Form, hL as FormDeletedSubmissionsCount, c7 as FormField, cm as FormFieldArrayType, ck as FormFieldBooleanType, fL as FormFieldContactInfo, fM as FormFieldContactInfoAdditionalInfoOneOf, gn as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jR as FormFieldContactInfoContactFieldWithLiterals, go as FormFieldContactInfoCustomFieldInfo, gl as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jN as FormFieldContactInfoEmailInfoTagWithLiterals, gm as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jO as FormFieldContactInfoPhoneInfoTagWithLiterals, gp as FormFieldContactInfoSubscriptionInfo, ch as FormFieldNumberType, cn as FormFieldObjectType, c8 as FormFieldStringType, c9 as FormFieldStringTypeFormatOptionsOneOf, fx as FormLayout, gf as FormOverride, gg as FormProperties, ge as FormRule, ie as FormSubmissionQuerySpec, ic as FormSubmissionSearchSpec, bQ as FormSubmissionStatusUpdatedEvent, hI as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, it as FormatEnumFormatWithLiterals, jA as FormatWithLiterals, hY as FormattedFormSubmission, hV as FormattedSubmission, dx as GIF, dw as GIFData, am as GIFType, iL as GIFTypeWithLiterals, dl as GalleryData, ds as GalleryOptions, dt as GalleryOptionsLayout, ht as GetDeletedSubmissionRequest, hU as GetFormattedSubmissionRequest, hM as GetMediaUploadURLRequest, hb as GetSubmissionByCheckoutIdRequest, hc as GetSubmissionByCheckoutIdResponse, hO as GetSubmissionDownloadUrlRequest, h9 as GetSubmissionRequest, ha as GetSubmissionResponse, d0 as Gradient, a8 as GradientType, ix as GradientTypeWithLiterals, fB as Group, dz as HTMLData, dA as HTMLDataDataOneOf, hT as HeadersEntry, dy as HeadingData, d9 as Height, gA as HiddenOptions, c1 as IdentificationData, c2 as IdentificationDataIdOneOf, bD as IdentityType, k0 as IdentityTypeWithLiterals, dn as Image, dB as ImageData, dD as ImageDataStyles, aY as ImageFit, jl as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jf as ImagePositionPositionWithLiterals, jj as ImagePositionWithLiterals, aJ as ImageScalingScaling, j6 as ImageScalingScalingWithLiterals, ea as ImageStyles, fI as InPersonOptions, aV as Indentation, ji as IndentationWithLiterals, aF as InitialExpandedItems, j2 as InitialExpandedItemsWithLiterals, cN as InputField, cO as InputFieldInputTypeOptionsOneOf, be as InputType, jD as InputTypeWithLiterals, cj as IntegerType, gT as IsFormSubmittableRequest, gU as IsFormSubmittableResponse, dq as Item, dr as ItemDataOneOf, fz as ItemLayout, fA as ItemLayoutItemOneOf, h6 as ItemMetadata, du as ItemStyle, b1 as ItemType, jq as ItemTypeWithLiterals, bn as Kind, jM as KindWithLiterals, aD as Layout, eA as LayoutCellData, ev as LayoutData, ey as LayoutDataBackground, ew as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, j9 as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j7 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iH as LayoutTypeWithLiterals, j0 as LayoutWithLiterals, gr as LimitationRule, ae as LineStyle, iD as LineStyleWithLiterals, db as Link, e0 as LinkData, dc as LinkDataOneOf, dE as LinkPreviewData, dF as LinkPreviewDataStyles, ac as LinkTarget, iB as LinkTargetWithLiterals, hp as ListDeletedSubmissionsRequest, hW as ListFormattedSubmissionsRequest, hX as ListFormattedSubmissionsResponse, aU as ListStyle, jh as ListStyleWithLiterals, ep as ListValue, fG as Location, fH as LocationLocationInfoOneOf, dG as MapData, dH as MapSettings, ap as MapType, iO as MapTypeWithLiterals, fC as Margin, bT as MarketingSubscriptionDetails, dm as Media, eK as MediaItem, eL as MediaItemMediaOneOf, eM as MediaSettings, bc as MeetingType, jB as MeetingTypeWithLiterals, e1 as MentionData, c0 as MessageEnvelope, eH as Metadata, bG as Mode, k3 as ModeWithLiterals, fr as MultilineAddress, cC as MultilineAddressValidation, gq as NestedForm, cG as NestedFormFieldOverrides, cK as NestedFormOverrides, cY as Node, cZ as NodeDataOneOf, c_ as NodeStyle, a6 as NodeType, iv as NodeTypeWithLiterals, aI as NullValue, j5 as NullValueWithLiterals, a$ as NumberComponentType, jo as NumberComponentTypeWithLiterals, e_ as NumberCorrectAnswersList, ci as NumberErrorMessages, f1 as NumberInput, aZ as NumberOfColumns, jm as NumberOfColumnsWithLiterals, f0 as NumberQuizFieldSettings, e$ as NumberType, g7 as ObjectArray, b9 as ObjectArrayComponentType, g8 as ObjectArrayComponentTypeOptionsOneOf, jy as ObjectArrayComponentTypeWithLiterals, cF as ObjectArrayType, cq as ObjectErrorMessages, f7 as ObjectType, co as ObjectTypePropertiesType, cp as ObjectTypePropertiesTypePropertiesTypeOneOf, eh as Oembed, bA as Operator, jZ as OperatorWithLiterals, Y as OptInLevel, ik as OptInLevelWithLiterals, fe as Option, dT as OptionDesign, dO as OptionLayout, gH as OrCondition, bM as OrderDetails, er as OrderedListData, aj as Orientation, iI as OrientationWithLiterals, aL as Origin, j8 as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, jY as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jL as OverrideEntityTypeWithLiterals, dk as PDFSettings, gc as PageNavigationOptions, dI as ParagraphData, gQ as PassFailMessages, eZ as Password, g1 as Payment, b6 as PaymentComponentType, g2 as PaymentComponentTypeOptionsOneOf, jv as PaymentComponentTypeWithLiterals, fp as PaymentInput, cw as PaymentType, dK as Permissions, cT as PhoneConstraints, fO as PhoneInfo, bg as PhoneInfoTag, jF as PhoneInfoTagWithLiterals, eT as PhoneInput, fK as PhoneOptions, aA as Placement, iZ as PlacementWithLiterals, ef as PlaybackOptions, d5 as PluginContainerData, aa as PluginContainerDataAlignment, iz as PluginContainerDataAlignmentWithLiterals, d6 as PluginContainerDataWidth, d7 as PluginContainerDataWidthDataOneOf, dU as Poll, dJ as PollData, dV as PollDataLayout, dS as PollDesign, dQ as PollDesignBackground, dR as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iT as PollDesignBackgroundTypeWithLiterals, dN as PollLayout, at as PollLayoutDirection, iS as PollLayoutDirectionWithLiterals, as as PollLayoutType, iR as PollLayoutTypeWithLiterals, dL as PollOption, ax as Position, iW as PositionWithLiterals, gh as PostSubmissionTriggers, cu as PredefinedValidation, cv as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, ir as PriceTypeWithLiterals, ed as PricingData, cA as Product, fl as ProductCheckboxGroup, fm as ProductCheckboxGroupOption, cB as ProductPriceOptionsOneOf, a1 as ProductType, iq as ProductTypeWithLiterals, f8 as PropertiesType, b2 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, f9 as PropertiesTypePropertiesTypeOptionsOneOf, bN as PublicTags, cx as QuantityLimit, hu as QuerySubmissionRequest, hF as QuerySubmissionsByNamespaceForExportRequest, hG as QuerySubmissionsByNamespaceForExportResponse, hD as QuerySubmissionsByNamespaceRequest, hE as QuerySubmissionsByNamespaceResponse, fc as QuizFieldSettings, gN as QuizSettings, gO as QuizSettingsPassingCriteriaOneOf, gP as QuizSettingsResultsDisplayOptionsOneOf, eN as RadioGroup, eO as RadioGroupOption, f2 as RatingInput, gw as RedirectOptions, dd as Rel, hl as RemoveSubmissionFromTrashBinRequest, hm as RemoveSubmissionFromTrashBinResponse, bR as RemovedSubmissionFromTrash, fw as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jU as RequiredIndicatorPlacementWithLiterals, gs as RequiredIndicatorProperties, jT as RequiredIndicatorWithLiterals, gz as RequiredOptions, az as Resizing, iY as ResizingWithLiterals, aP as ResponsivenessBehaviour, jc as ResponsivenessBehaviourWithLiterals, bY as RestoreInfo, hk as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, j_ as ResultsDisplayWithLiterals, eb as RibbonStyles, cX as RichContent, gb as RichContentOptions, gy as Rule, gJ as RuleFormOverride, gK as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, je as ScalingWithLiterals, g3 as Scheduling, ba as SchedulingComponentType, g4 as SchedulingComponentTypeOptionsOneOf, jz as SchedulingComponentTypeWithLiterals, hA as SearchDetails, hB as SearchSubmissionsByNamespaceForExportRequest, hC as SearchSubmissionsByNamespaceForExportResponse, hx as SearchSubmissionsByNamespaceRequest, fD as Section, eY as ServiceOption, fh as ServicesCheckboxGroup, eX as ServicesDropdown, dM as Settings, eB as ShapeData, eC as ShapeDataStyles, fk as Signature, bF as SortOrder, k2 as SortOrderWithLiterals, hw as Sorting, an as Source, iM as SourceWithLiterals, bt as SpamFilterProtectionLevel, jS as SpamFilterProtectionLevelWithLiterals, d8 as Spoiler, e3 as SpoilerData, bd as StaffStrategySelection, jC as StaffStrategySelectionWithLiterals, bH as Status, k4 as StatusWithLiterals, gd as Step, d1 as Stop, a5 as StringComponentType, iu as StringComponentTypeWithLiterals, cP as StringCorrectAnswersList, ca as StringErrorMessages, cV as StringQuizFieldSettings, cQ as StringType, cb as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, im as StringTypeFormatEnumFormatWithLiterals, cR as StringTypeFormatOptionsOneOf, cf as StringTypePhoneConstraints, cg as StringTypeValidationMessages, da as Styles, dC as StylesBorder, ao as StylesPosition, iN as StylesPositionWithLiterals, bS as SubmissionContactMapped, bU as SubmissionContactMappingSkipped, hP as SubmissionDocument, hQ as SubmissionDocumentDocumentOneOf, bI as SubmissionErrorType, k5 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, ij as SubmissionStatusWithLiterals, i7 as SubmissionValidationError, i8 as SubmissionValidationErrorErrorMessageOneOf, i6 as SubmissionValidationErrors, g_ as SubmissionValidationErrorsDetails, id as SubmissionsQueryResult, gX as SubmitContactResponse, gt as SubmitSettings, gu as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jW as SubmitSuccessActionWithLiterals, bJ as Submitter, bK as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jI as SubscriptionChannelWithLiterals, fR as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jQ as SubscriptionInfoOptInLevelWithLiterals, el as TableCellData, ej as TableData, bh as Tag, bO as TagList, jG as TagWithLiterals, gL as Tags, fg as TagsOption, gM as TagsTagList, bw as Target, jV as TargetWithLiterals, ad as TextAlignment, iC as TextAlignmentWithLiterals, dX as TextData, cW as TextInput, eJ as TextNodeStyle, df as TextStyle, gv as ThankYouMessageOptions, dv as Thumbnails, al as ThumbnailsAlignment, iK as ThumbnailsAlignmentWithLiterals, eV as TimeInput, eG as TocData, b8 as Type, jx as TypeWithLiterals, hZ as UpdateExtendedFieldsRequest, hd as UpdateSubmissionRequest, he as UpdateSubmissionResponse, b5 as UploadFileFormat, ju as UploadFileFormatWithLiterals, gi as UpsertContact, gW as UpsertContactFromSubmissionRequest, gj as V4FormFieldContactInfo, gk as V4FormFieldContactInfoAdditionalInfoOneOf, i3 as ValidateFormSubmissionRequest, cH as Validation, g$ as ValidationError, a0 as ValidationFormat, ip as ValidationFormatWithLiterals, cU as ValidationMessages, cI as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jb as VerticalAlignmentAlignmentWithLiterals, j4 as VerticalAlignmentWithLiterals, dp as Video, fJ as VideoConferenceOptions, ee as VideoData, ah as ViewMode, iG as ViewModeWithLiterals, aq as ViewRole, iP as ViewRoleWithLiterals, ar as VoteRole, iQ as VoteRoleWithLiterals, Z as WebhookIdentityType, il as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iy as WidthTypeWithLiterals, iE as WidthWithLiterals, f$ as WixFile, b4 as WixFileComponentType, g0 as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, fY as _Array, fZ as _ArrayComponentTypeOptionsOneOf, fW as _Boolean, fX as _BooleanComponentTypeOptionsOneOf, fU as _Number, fV as _NumberComponentTypeOptionsOneOf, f_ as _Object, fS as _String, fT as _StringComponentTypeOptionsOneOf, ii as utils } from './forms-v4-submission-submissions.universal-rCtTXLP4.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-DmrA9Uxi.mjs';
|
|
3
|
+
export { c4 as AccountInfo, ie as AccountInfoMetadata, c0 as ActionEvent, g8 as Address, g9 as AddressComponentTypeOptionsOneOf, fS as AddressInfo, br as AddressInfoTag, jT as AddressInfoTagWithLiterals, fu as AddressLine2, aY as Alignment, jo as AlignmentWithLiterals, gE as AllowedValuesOptions, e0 as AnchorData, gJ as AndCondition, e7 as AppEmbedData, e8 as AppEmbedDataAppDataOneOf, aF as AppType, j5 as AppTypeWithLiterals, ha as ApplicationError, fH as Appointment, bQ as AppointmentDetails, fI as AppointmentFormatInfoOneOf, b4 as ArrayComponentType, jw as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fc as ArrayItems, fd as ArrayItemsItemTypeOptionsOneOf, f8 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, az as AspectRatio, i$ as AspectRatioWithLiterals, es as AudioData, ce as Availability, eB as Backdrop, aO as BackdropType, je as BackdropTypeWithLiterals, d6 as Background, dR as BackgroundGradient, eH as BackgroundImage, a8 as BackgroundType, iA as BackgroundTypeWithLiterals, ez as Banner, ic as BaseEventMetadata, ev as BlockquoteData, e9 as BookingData, b1 as BooleanComponentType, jt as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f5 as BooleanType, d4 as Border, ep as BorderColors, eq as BorderWidths, fA as BreakPoint, hb as BulkActionMetadata, h6 as BulkCreateSubmissionBySubmitterData, h5 as BulkCreateSubmissionBySubmitterRequest, h7 as BulkCreateSubmissionBySubmitterResponse, hl as BulkDeleteSubmissionRequest, hm as BulkDeleteSubmissionResult, hQ as BulkMarkSubmissionsAsSeenRequest, hq as BulkRemoveSubmissionFromTrashBinRequest, hr as BulkRemoveSubmissionFromTrashBinResult, h8 as BulkSubmissionResult, ik as BulkUpdateFormSubmissionTagsByFilterOptions, i4 as BulkUpdateFormSubmissionTagsByFilterRequest, i5 as BulkUpdateFormSubmissionTagsByFilterResponse, ij as BulkUpdateFormSubmissionTagsOptions, i1 as BulkUpdateFormSubmissionTagsRequest, i2 as BulkUpdateFormSubmissionTagsResponse, i3 as BulkUpdateFormSubmissionTagsResult, eu as BulletedListData, d1 as ButtonData, ac as ButtonDataType, iE as ButtonDataTypeWithLiterals, eb as ButtonStyles, ew as CaptionData, eF as CardData, eG as CardDataBackground, aU as CardDataBackgroundType, jk as CardDataBackgroundTypeWithLiterals, ee as CardStyles, aD as CardStylesAlignment, j3 as CardStylesAlignmentWithLiterals, aC as CardStylesType, j2 as CardStylesTypeWithLiterals, eo as CellStyle, bz as ChangeableProperty, j$ as ChangeablePropertyWithLiterals, f6 as Checkbox, ff as CheckboxGroup, gV as Checkout, dg as CodeBlockData, ek as CollapsibleListData, e1 as ColorData, d5 as Colors, kb as CommonQueryWithEntityContext, ka as CommonSearchWithEntityContext, b8 as ComponentType, jA as ComponentTypeWithLiterals, fh as ComponentsTags, gL as Condition, gH as ConditionNode, gI as ConditionNodeNodeOneOf, hi as ConfirmSubmissionRequest, bj as ConfirmationLevel, jL as ConfirmationLevelWithLiterals, bD as ContactAutofill, k3 as ContactAutofillWithLiterals, bl as ContactField, jN as ContactFieldWithLiterals, f7 as CorrectAnswersList, hN as CountDeletedSubmissionsRequest, hK as CountSubmissionsByFilterRequest, hM as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gU as CreateCheckoutFromSubmissionResponse, h3 as CreateSubmissionBySubmitterRequest, h4 as CreateSubmissionBySubmitterResponse, g$ as CreateSubmissionRequest, h0 as CreateSubmissionResponse, al as Crop, iN as CropWithLiterals, ht as CursorPaging, hu as CursorPagingMetadata, hy as CursorQueryPagingMethodOneOf, hB as CursorSearch, hC as CursorSearchPagingMethodOneOf, hv as Cursors, fT as CustomFieldInfo, eR as CustomOption, cL as DataExtensionsDetails, eW as DateInput, eY as DatePicker, cf as DateRange, cd as DateTimeAdvancedConstraints, cU as DateTimeConstraints, eU as DateTimeInput, $ as DayOfWeek, ir as DayOfWeekWithLiterals, d_ as Decoration, d$ as DecorationDataOneOf, aw as DecorationType, iY as DecorationTypeWithLiterals, fv as DefaultCountryConfig, fw as DefaultCountryConfigOptionsOneOf, hj as DeleteSubmissionRequest, hk as DeleteSubmissionResponse, dY as Design, aR as DesignTarget, jh as DesignTargetWithLiterals, em as Dimensions, aH as Direction, j7 as DirectionWithLiterals, gc as DisplayField, gd as DisplayFieldDisplayFieldTypeOptionsOneOf, bm as DisplayFieldType, jO as DisplayFieldTypeWithLiterals, di as DividerData, ah as DividerDataAlignment, iJ as DividerDataAlignmentWithLiterals, hU as DocumentReady, eK as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fp as DonationInput, fq as DonationInputOption, hV as DownloadSubmissionRequest, eS as Dropdown, eT as DropdownOption, cA as DynamicPriceOptions, fQ as EmailInfo, bg as EmailInfoTag, jI as EmailInfoTagWithLiterals, ei as EmbedData, gY as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k5 as ErrorTypeWithLiterals, ea as EventData, id as EventMetadata, bM as ExtendedFields, cN as Field, cO as FieldFieldTypeOptionsOneOf, gA as FieldGroup, gF as FieldOverride, gG as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a4 as FieldType, iw as FieldTypeWithLiterals, i7 as FieldViolation, i8 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fx as FieldsSettings, dj as FileData, dk as FileSource, dl as FileSourceDataOneOf, fk as FileType, fl as FileUpload, a$ as FirstDayOfWeek, jr as FirstDayOfWeekWithLiterals, fs as FixedPayment, cz as FixedPriceOptions, e6 as FontFamilyData, e4 as FontSizeData, ax as FontType, iZ as FontTypeWithLiterals, c7 as Form, hO as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fO as FormFieldContactInfo, fP as FormFieldContactInfoAdditionalInfoOneOf, gq as FormFieldContactInfoAddressInfo, bt as FormFieldContactInfoContactField, jV as FormFieldContactInfoContactFieldWithLiterals, gr as FormFieldContactInfoCustomFieldInfo, go as FormFieldContactInfoEmailInfo, bp as FormFieldContactInfoEmailInfoTag, jR as FormFieldContactInfoEmailInfoTagWithLiterals, gp as FormFieldContactInfoPhoneInfo, bq as FormFieldContactInfoPhoneInfoTag, jS as FormFieldContactInfoPhoneInfoTagWithLiterals, gs as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, cp as FormFieldObjectTypePropertiesType, cq as FormFieldObjectTypePropertiesTypePropertiesTypeOneOf, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fz as FormLayout, gi as FormOverride, gj as FormProperties, gh as FormRule, ii as FormSubmissionQuerySpec, ig as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hL as FormSubmissionsCount, bc as Format, a5 as FormatEnumFormat, ix as FormatEnumFormatWithLiterals, jE as FormatWithLiterals, h$ as FormattedFormSubmission, hY as FormattedSubmission, dz as GIF, dy as GIFData, an as GIFType, iP as GIFTypeWithLiterals, dn as GalleryData, du as GalleryOptions, dv as GalleryOptionsLayout, hw as GetDeletedSubmissionRequest, hX as GetFormattedSubmissionRequest, hP as GetMediaUploadURLRequest, he as GetSubmissionByCheckoutIdRequest, hf as GetSubmissionByCheckoutIdResponse, hR as GetSubmissionDownloadUrlRequest, hc as GetSubmissionRequest, hd as GetSubmissionResponse, d2 as Gradient, a9 as GradientType, iB as GradientTypeWithLiterals, fD as Group, dB as HTMLData, dC as HTMLDataDataOneOf, hW as HeadersEntry, dA as HeadingData, db as Height, gD as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k4 as IdentityTypeWithLiterals, dq as Image, dD as ImageData, dF as ImageDataStyles, aZ as ImageFit, jp as ImageFitWithLiterals, aX as ImagePosition, aT as ImagePositionPosition, jj as ImagePositionPositionWithLiterals, jn as ImagePositionWithLiterals, aK as ImageScalingScaling, ja as ImageScalingScalingWithLiterals, ec as ImageStyles, fL as InPersonOptions, aW as Indentation, jm as IndentationWithLiterals, aG as InitialExpandedItems, j6 as InitialExpandedItemsWithLiterals, cP as InputField, cQ as InputFieldInputTypeOptionsOneOf, bf as InputType, jH as InputTypeWithLiterals, ck as IntegerType, gW as IsFormSubmittableRequest, gX as IsFormSubmittableResponse, ds as Item, dt as ItemDataOneOf, fB as ItemLayout, fC as ItemLayoutItemOneOf, h9 as ItemMetadata, dw as ItemStyle, b2 as ItemType, ju as ItemTypeWithLiterals, bo as Kind, jQ as KindWithLiterals, aE as Layout, eC as LayoutCellData, ex as LayoutData, eA as LayoutDataBackground, ey as LayoutDataBackgroundImage, aN as LayoutDataBackgroundType, jd as LayoutDataBackgroundTypeWithLiterals, aL as LayoutDataImagePosition, jb as LayoutDataImagePositionWithLiterals, aj as LayoutType, iL as LayoutTypeWithLiterals, j4 as LayoutWithLiterals, gu as LimitationRule, af as LineStyle, iH as LineStyleWithLiterals, dd as Link, e2 as LinkData, de as LinkDataOneOf, dG as LinkPreviewData, dH as LinkPreviewDataStyles, ad as LinkTarget, iF as LinkTargetWithLiterals, hs as ListDeletedSubmissionsRequest, hZ as ListFormattedSubmissionsRequest, h_ as ListFormattedSubmissionsResponse, aV as ListStyle, jl as ListStyleWithLiterals, er as ListValue, fJ as Location, fK as LocationLocationInfoOneOf, dI as MapData, dJ as MapSettings, aq as MapType, iS as MapTypeWithLiterals, fE as Margin, bU as MarketingSubscriptionDetails, dp as Media, eM as MediaItem, eN as MediaItemMediaOneOf, eO as MediaSettings, bd as MeetingType, jF as MeetingTypeWithLiterals, e3 as MentionData, c1 as MessageEnvelope, eJ as Metadata, bH as Mode, k7 as ModeWithLiterals, ft as MultilineAddress, cD as MultilineAddressValidation, gt as NestedForm, cI as NestedFormFieldOverrides, cM as NestedFormOverrides, c_ as Node, c$ as NodeDataOneOf, d0 as NodeStyle, a7 as NodeType, iz as NodeTypeWithLiterals, aJ as NullValue, j9 as NullValueWithLiterals, b0 as NumberComponentType, js as NumberComponentTypeWithLiterals, f0 as NumberCorrectAnswersList, cj as NumberErrorMessages, f3 as NumberInput, a_ as NumberOfColumns, jq as NumberOfColumnsWithLiterals, f2 as NumberQuizFieldSettings, f1 as NumberType, ga as ObjectArray, ba as ObjectArrayComponentType, gb as ObjectArrayComponentTypeOptionsOneOf, jC as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f9 as ObjectType, fa as ObjectTypePropertiesType, fb as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, ej as Oembed, bB as Operator, k1 as OperatorWithLiterals, Y as OptInLevel, io as OptInLevelWithLiterals, fg as Option, dV as OptionDesign, dQ as OptionLayout, gK as OrCondition, bN as OrderDetails, et as OrderedListData, ak as Orientation, iM as OrientationWithLiterals, aM as Origin, jc as OriginWithLiterals, bn as OverrideEntityType, bA as OverrideEntityTypeEnumOverrideEntityType, k0 as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jP as OverrideEntityTypeWithLiterals, dm as PDFSettings, gf as PageNavigationOptions, dK as ParagraphData, gT as PassFailMessages, e$ as Password, g4 as Payment, b7 as PaymentComponentType, g5 as PaymentComponentTypeOptionsOneOf, jz as PaymentComponentTypeWithLiterals, fr as PaymentInput, cx as PaymentType, dM as Permissions, cV as PhoneConstraints, fR as PhoneInfo, bh as PhoneInfoTag, jJ as PhoneInfoTagWithLiterals, eV as PhoneInput, fN as PhoneOptions, fG as Pikachu, aB as Placement, j1 as PlacementWithLiterals, eh as PlaybackOptions, d7 as PluginContainerData, ab as PluginContainerDataAlignment, iD as PluginContainerDataAlignmentWithLiterals, d8 as PluginContainerDataWidth, d9 as PluginContainerDataWidthDataOneOf, dW as Poll, dL as PollData, dX as PollDataLayout, dU as PollDesign, dS as PollDesignBackground, dT as PollDesignBackgroundBackgroundOneOf, av as PollDesignBackgroundType, iX as PollDesignBackgroundTypeWithLiterals, dP as PollLayout, au as PollLayoutDirection, iW as PollLayoutDirectionWithLiterals, at as PollLayoutType, iV as PollLayoutTypeWithLiterals, dN as PollOption, ay as Position, i_ as PositionWithLiterals, gk as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, iu as PriceTypeWithLiterals, ef as PricingData, cB as Product, fn as ProductCheckboxGroup, fo as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, it as ProductTypeWithLiterals, cH as PropertiesType, a3 as PropertiesTypeEnum, iv as PropertiesTypeEnumWithLiterals, b3 as PropertiesTypePropertiesTypeEnum, jv as PropertiesTypePropertiesTypeEnumWithLiterals, bO as PublicTags, cy as QuantityLimit, hx as QuerySubmissionRequest, hI as QuerySubmissionsByNamespaceForExportRequest, hJ as QuerySubmissionsByNamespaceForExportResponse, hG as QuerySubmissionsByNamespaceRequest, hH as QuerySubmissionsByNamespaceResponse, fe as QuizFieldSettings, gQ as QuizSettings, gR as QuizSettingsPassingCriteriaOneOf, gS as QuizSettingsResultsDisplayOptionsOneOf, eP as RadioGroup, eQ as RadioGroupOption, f4 as RatingInput, gz as RedirectOptions, df as Rel, ho as RemoveSubmissionFromTrashBinRequest, hp as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fy as Repeater, bv as RequiredIndicator, bw as RequiredIndicatorPlacement, jY as RequiredIndicatorPlacementWithLiterals, gv as RequiredIndicatorProperties, jX as RequiredIndicatorWithLiterals, gC as RequiredOptions, aA as Resizing, j0 as ResizingWithLiterals, aQ as ResponsivenessBehaviour, jg as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hn as RestoreSubmissionFromTrashBinRequest, bC as ResultsDisplay, k2 as ResultsDisplayWithLiterals, ed as RibbonStyles, cZ as RichContent, ge as RichContentOptions, gB as Rule, gM as RuleFormOverride, gN as RuleFormOverrideEntityTypeOptionsOneOf, aS as Scaling, ji as ScalingWithLiterals, g6 as Scheduling, bb as SchedulingComponentType, g7 as SchedulingComponentTypeOptionsOneOf, jD as SchedulingComponentTypeWithLiterals, hD as SearchDetails, hE as SearchSubmissionsByNamespaceForExportRequest, hF as SearchSubmissionsByNamespaceForExportResponse, hA as SearchSubmissionsByNamespaceRequest, fF as Section, e_ as ServiceOption, fj as ServicesCheckboxGroup, eZ as ServicesDropdown, dO as Settings, eD as ShapeData, eE as ShapeDataStyles, fm as Signature, bG as SortOrder, k6 as SortOrderWithLiterals, hz as Sorting, ao as Source, iQ as SourceWithLiterals, bu as SpamFilterProtectionLevel, jW as SpamFilterProtectionLevelWithLiterals, da as Spoiler, e5 as SpoilerData, be as StaffStrategySelection, jG as StaffStrategySelectionWithLiterals, bI as Status, k8 as StatusWithLiterals, gg as Step, d3 as Stop, a6 as StringComponentType, iy as StringComponentTypeWithLiterals, cR as StringCorrectAnswersList, cb as StringErrorMessages, cX as StringQuizFieldSettings, cS as StringType, cc as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, iq as StringTypeFormatEnumFormatWithLiterals, cT as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, dc as Styles, dE as StylesBorder, ap as StylesPosition, iR as StylesPositionWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hS as SubmissionDocument, hT as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k9 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, im as SubmissionStatusWithLiterals, ia as SubmissionValidationError, ib as SubmissionValidationErrorErrorMessageOneOf, i9 as SubmissionValidationErrors, h1 as SubmissionValidationErrorsDetails, ih as SubmissionsQueryResult, g_ as SubmitContactResponse, gw as SubmitSettings, gx as SubmitSettingsSubmitSuccessActionOptionsOneOf, by as SubmitSuccessAction, j_ as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bk as SubscriptionChannel, jM as SubscriptionChannelWithLiterals, fU as SubscriptionInfo, bs as SubscriptionInfoOptInLevel, jU as SubscriptionInfoOptInLevelWithLiterals, en as TableCellData, el as TableData, bi as Tag, bP as TagList, jK as TagWithLiterals, gO as Tags, fi as TagsOption, gP as TagsTagList, bx as Target, jZ as TargetWithLiterals, ae as TextAlignment, iG as TextAlignmentWithLiterals, dZ as TextData, cY as TextInput, eL as TextNodeStyle, dh as TextStyle, gy as ThankYouMessageOptions, dx as Thumbnails, am as ThumbnailsAlignment, iO as ThumbnailsAlignmentWithLiterals, eX as TimeInput, eI as TocData, b9 as Type, jB as TypeWithLiterals, i0 as UpdateExtendedFieldsRequest, hg as UpdateSubmissionRequest, hh as UpdateSubmissionResponse, b6 as UploadFileFormat, jy as UploadFileFormatWithLiterals, gl as UpsertContact, gZ as UpsertContactFromSubmissionRequest, gm as V4FormFieldContactInfo, gn as V4FormFieldContactInfoAdditionalInfoOneOf, i6 as ValidateFormSubmissionRequest, cJ as Validation, h2 as ValidationError, a0 as ValidationFormat, is as ValidationFormatWithLiterals, cW as ValidationMessages, cK as ValidationValidationOneOf, aI as VerticalAlignment, aP as VerticalAlignmentAlignment, jf as VerticalAlignmentAlignmentWithLiterals, j8 as VerticalAlignmentWithLiterals, dr as Video, fM as VideoConferenceOptions, eg as VideoData, ai as ViewMode, iK as ViewModeWithLiterals, ar as ViewRole, iT as ViewRoleWithLiterals, as as VoteRole, iU as VoteRoleWithLiterals, Z as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, ag as Width, aa as WidthType, iC as WidthTypeWithLiterals, iI as WidthWithLiterals, g2 as WixFile, b5 as WixFileComponentType, g3 as WixFileComponentTypeOptionsOneOf, jx as WixFileComponentTypeWithLiterals, f$ as _Array, g0 as _ArrayComponentTypeOptionsOneOf, fZ as _Boolean, f_ as _BooleanComponentTypeOptionsOneOf, fX as _Number, fY as _NumberComponentTypeOptionsOneOf, g1 as _Object, fV as _String, fW as _StringComponentTypeOptionsOneOf, il as utils } from './forms-v4-submission-submissions.universal-DmrA9Uxi.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -928,6 +928,12 @@ var PriceType = /* @__PURE__ */ ((PriceType2) => {
|
|
|
928
928
|
PriceType2["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
|
|
929
929
|
return PriceType2;
|
|
930
930
|
})(PriceType || {});
|
|
931
|
+
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
932
|
+
PropertiesTypeEnum2["STRING"] = "STRING";
|
|
933
|
+
PropertiesTypeEnum2["NUMBER"] = "NUMBER";
|
|
934
|
+
PropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
|
|
935
|
+
return PropertiesTypeEnum2;
|
|
936
|
+
})(PropertiesTypeEnum || {});
|
|
931
937
|
var FieldType = /* @__PURE__ */ ((FieldType2) => {
|
|
932
938
|
FieldType2["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
933
939
|
FieldType2["INPUT"] = "INPUT";
|
|
@@ -1374,13 +1380,13 @@ var ItemType = /* @__PURE__ */ ((ItemType2) => {
|
|
|
1374
1380
|
ItemType2["BOOLEAN"] = "BOOLEAN";
|
|
1375
1381
|
return ItemType2;
|
|
1376
1382
|
})(ItemType || {});
|
|
1377
|
-
var
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
return
|
|
1383
|
-
})(
|
|
1383
|
+
var PropertiesTypePropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypePropertiesTypeEnum2) => {
|
|
1384
|
+
PropertiesTypePropertiesTypeEnum2["STRING"] = "STRING";
|
|
1385
|
+
PropertiesTypePropertiesTypeEnum2["NUMBER"] = "NUMBER";
|
|
1386
|
+
PropertiesTypePropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
|
|
1387
|
+
PropertiesTypePropertiesTypeEnum2["ARRAY"] = "ARRAY";
|
|
1388
|
+
return PropertiesTypePropertiesTypeEnum2;
|
|
1389
|
+
})(PropertiesTypePropertiesTypeEnum || {});
|
|
1384
1390
|
var ArrayComponentType = /* @__PURE__ */ ((ArrayComponentType2) => {
|
|
1385
1391
|
ArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1386
1392
|
ArrayComponentType2["CHECKBOX_GROUP"] = "CHECKBOX_GROUP";
|
|
@@ -1424,6 +1430,7 @@ var Type = /* @__PURE__ */ ((Type2) => {
|
|
|
1424
1430
|
var ObjectArrayComponentType = /* @__PURE__ */ ((ObjectArrayComponentType2) => {
|
|
1425
1431
|
ObjectArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1426
1432
|
ObjectArrayComponentType2["REPEATER"] = "REPEATER";
|
|
1433
|
+
ObjectArrayComponentType2["PIKACHU"] = "PIKACHU";
|
|
1427
1434
|
return ObjectArrayComponentType2;
|
|
1428
1435
|
})(ObjectArrayComponentType || {});
|
|
1429
1436
|
var SchedulingComponentType = /* @__PURE__ */ ((SchedulingComponentType2) => {
|
|
@@ -3004,6 +3011,7 @@ export {
|
|
|
3004
3011
|
PriceType,
|
|
3005
3012
|
ProductType,
|
|
3006
3013
|
PropertiesTypeEnum,
|
|
3014
|
+
PropertiesTypePropertiesTypeEnum,
|
|
3007
3015
|
RequiredIndicator,
|
|
3008
3016
|
RequiredIndicatorPlacement,
|
|
3009
3017
|
Resizing,
|