@wix/auto_sdk_forms_submissions 1.0.112 → 1.0.114
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-uvhhiFaH.d.ts → forms-v4-submission-submissions.universal-CYE5689M.d.ts} +56 -62
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +17 -16
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +17 -16
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +47 -63
- package/build/cjs/meta.js +17 -16
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-uvhhiFaH.d.mts → forms-v4-submission-submissions.universal-CYE5689M.d.mts} +56 -62
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +16 -15
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +16 -15
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +47 -63
- package/build/es/meta.mjs +16 -15
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-CiTwM6RK.d.ts → forms-v4-submission-submissions.universal-CvrBrUxn.d.ts} +56 -62
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +17 -16
- 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 +17 -16
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +47 -63
- package/build/internal/cjs/meta.js +17 -16
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-CiTwM6RK.d.mts → forms-v4-submission-submissions.universal-CvrBrUxn.d.mts} +56 -62
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +16 -15
- 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 +16 -15
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +47 -63
- package/build/internal/es/meta.mjs +16 -15
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -562,6 +562,12 @@ interface Form {
|
|
|
562
562
|
tags?: Tags;
|
|
563
563
|
/** Source used for contact autofill when filling form fields. Default: FORM_INPUT. */
|
|
564
564
|
autoFillContact?: ContactAutofillWithLiterals;
|
|
565
|
+
/**
|
|
566
|
+
* Controls who can read submissions of this form beyond the standard permission.
|
|
567
|
+
*
|
|
568
|
+
* Default: `OWNER_AND_COLLABORATORS`
|
|
569
|
+
*/
|
|
570
|
+
submissionAccess?: SubmissionAccessWithLiterals;
|
|
565
571
|
}
|
|
566
572
|
interface FormField {
|
|
567
573
|
/**
|
|
@@ -836,11 +842,11 @@ interface FormFieldArrayType {
|
|
|
836
842
|
}
|
|
837
843
|
interface FormFieldObjectType {
|
|
838
844
|
/** Description of object properties. */
|
|
839
|
-
properties?: Record<string,
|
|
845
|
+
properties?: Record<string, ObjectTypePropertiesType>;
|
|
840
846
|
/** Custom error message when validation fails. */
|
|
841
847
|
errorMessages?: ObjectErrorMessages;
|
|
842
848
|
}
|
|
843
|
-
interface
|
|
849
|
+
interface ObjectTypePropertiesType extends ObjectTypePropertiesTypePropertiesTypeOneOf {
|
|
844
850
|
/** String type validation for property. */
|
|
845
851
|
string?: FormFieldStringType;
|
|
846
852
|
/** Number type validation for property. */
|
|
@@ -855,7 +861,7 @@ interface FormFieldObjectTypePropertiesType extends FormFieldObjectTypePropertie
|
|
|
855
861
|
required?: boolean;
|
|
856
862
|
}
|
|
857
863
|
/** @oneof */
|
|
858
|
-
interface
|
|
864
|
+
interface ObjectTypePropertiesTypePropertiesTypeOneOf {
|
|
859
865
|
/** String type validation for property. */
|
|
860
866
|
string?: FormFieldStringType;
|
|
861
867
|
/** Number type validation for property. */
|
|
@@ -1084,25 +1090,6 @@ interface ObjectArrayType {
|
|
|
1084
1090
|
* @max 1000
|
|
1085
1091
|
*/
|
|
1086
1092
|
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;
|
|
1106
1093
|
}
|
|
1107
1094
|
interface NestedFormFieldOverrides {
|
|
1108
1095
|
/** Whether the field is required. Leave blank for no override. */
|
|
@@ -4239,9 +4226,9 @@ declare enum ItemType {
|
|
|
4239
4226
|
type ItemTypeWithLiterals = ItemType | 'STRING' | 'NUMBER' | 'BOOLEAN';
|
|
4240
4227
|
interface ObjectType {
|
|
4241
4228
|
/** Definition of object properties and their validation rules. */
|
|
4242
|
-
properties?: Record<string,
|
|
4229
|
+
properties?: Record<string, PropertiesType>;
|
|
4243
4230
|
}
|
|
4244
|
-
declare enum
|
|
4231
|
+
declare enum PropertiesTypeEnum {
|
|
4245
4232
|
/** Property must contain a string value. */
|
|
4246
4233
|
STRING = "STRING",
|
|
4247
4234
|
/** Property must contain a numeric value. */
|
|
@@ -4252,8 +4239,8 @@ declare enum PropertiesTypePropertiesTypeEnum {
|
|
|
4252
4239
|
ARRAY = "ARRAY"
|
|
4253
4240
|
}
|
|
4254
4241
|
/** @enumType */
|
|
4255
|
-
type
|
|
4256
|
-
interface
|
|
4242
|
+
type PropertiesTypeEnumWithLiterals = PropertiesTypeEnum | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY';
|
|
4243
|
+
interface PropertiesType extends PropertiesTypePropertiesTypeOptionsOneOf {
|
|
4257
4244
|
/** Validation rules for string properties. */
|
|
4258
4245
|
stringOptions?: StringType;
|
|
4259
4246
|
/** Validation rules for numeric properties. */
|
|
@@ -4266,12 +4253,12 @@ interface ObjectTypePropertiesType extends ObjectTypePropertiesTypePropertiesTyp
|
|
|
4266
4253
|
* Data type of the object property.
|
|
4267
4254
|
* @readonly
|
|
4268
4255
|
*/
|
|
4269
|
-
propertiesType?:
|
|
4256
|
+
propertiesType?: PropertiesTypeEnumWithLiterals;
|
|
4270
4257
|
/** Whether the object property is required for validation. */
|
|
4271
4258
|
required?: boolean;
|
|
4272
4259
|
}
|
|
4273
4260
|
/** @oneof */
|
|
4274
|
-
interface
|
|
4261
|
+
interface PropertiesTypePropertiesTypeOptionsOneOf {
|
|
4275
4262
|
/** Validation rules for string properties. */
|
|
4276
4263
|
stringOptions?: StringType;
|
|
4277
4264
|
/** Validation rules for numeric properties. */
|
|
@@ -4760,12 +4747,10 @@ declare enum ObjectArrayComponentType {
|
|
|
4760
4747
|
/** Unknown component type. */
|
|
4761
4748
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
4762
4749
|
/** Repeater component. */
|
|
4763
|
-
REPEATER = "REPEATER"
|
|
4764
|
-
/** Pikachu entity picker component. */
|
|
4765
|
-
PIKACHU = "PIKACHU"
|
|
4750
|
+
REPEATER = "REPEATER"
|
|
4766
4751
|
}
|
|
4767
4752
|
/** @enumType */
|
|
4768
|
-
type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER'
|
|
4753
|
+
type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER';
|
|
4769
4754
|
interface Repeater {
|
|
4770
4755
|
/**
|
|
4771
4756
|
* Field label.
|
|
@@ -4875,29 +4860,6 @@ interface Section {
|
|
|
4875
4860
|
*/
|
|
4876
4861
|
allowedFieldIds?: string[];
|
|
4877
4862
|
}
|
|
4878
|
-
interface Pikachu {
|
|
4879
|
-
/**
|
|
4880
|
-
* Field label.
|
|
4881
|
-
* @maxLength 350
|
|
4882
|
-
*/
|
|
4883
|
-
label?: string | null;
|
|
4884
|
-
/** Additional description or instructions for the field. */
|
|
4885
|
-
description?: RichContent;
|
|
4886
|
-
/**
|
|
4887
|
-
* Whether to display the label.
|
|
4888
|
-
*
|
|
4889
|
-
* Default: `true`
|
|
4890
|
-
*/
|
|
4891
|
-
showLabel?: boolean | null;
|
|
4892
|
-
/**
|
|
4893
|
-
* Items selection provider key.
|
|
4894
|
-
* @minLength 1
|
|
4895
|
-
* @maxLength 255
|
|
4896
|
-
*/
|
|
4897
|
-
providerName?: string;
|
|
4898
|
-
/** Provider filter configuration, e.g. {"eventType": ["Ticketed"]}. */
|
|
4899
|
-
filter?: Record<string, any> | null;
|
|
4900
|
-
}
|
|
4901
4863
|
declare enum SchedulingComponentType {
|
|
4902
4864
|
/** Unknown component type. */
|
|
4903
4865
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -5382,8 +5344,6 @@ interface AddressComponentTypeOptionsOneOf {
|
|
|
5382
5344
|
interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
|
|
5383
5345
|
/** Repeater component settings. */
|
|
5384
5346
|
repeaterOptions?: Repeater;
|
|
5385
|
-
/** Pikachu entity picker component settings. */
|
|
5386
|
-
pikachuOptions?: Pikachu;
|
|
5387
5347
|
/**
|
|
5388
5348
|
* Component type of the object array input.
|
|
5389
5349
|
* @readonly
|
|
@@ -5396,8 +5356,6 @@ interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
|
|
|
5396
5356
|
interface ObjectArrayComponentTypeOptionsOneOf {
|
|
5397
5357
|
/** Repeater component settings. */
|
|
5398
5358
|
repeaterOptions?: Repeater;
|
|
5399
|
-
/** Pikachu entity picker component settings. */
|
|
5400
|
-
pikachuOptions?: Pikachu;
|
|
5401
5359
|
}
|
|
5402
5360
|
interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
5403
5361
|
/** Configuration for rich content display fields. */
|
|
@@ -5753,6 +5711,8 @@ interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
|
5753
5711
|
thankYouMessageOptions?: ThankYouMessageOptions;
|
|
5754
5712
|
/** Configuration for redirecting submitters to a URL after submission. */
|
|
5755
5713
|
redirectOptions?: RedirectOptions;
|
|
5714
|
+
/** Configuration for displaying a popup after submission. */
|
|
5715
|
+
popupOptions?: PopupOptions;
|
|
5756
5716
|
/** Action that's triggered after a form is successfully submitted. */
|
|
5757
5717
|
submitSuccessAction?: SubmitSuccessActionWithLiterals;
|
|
5758
5718
|
}
|
|
@@ -5762,6 +5722,8 @@ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
|
5762
5722
|
thankYouMessageOptions?: ThankYouMessageOptions;
|
|
5763
5723
|
/** Configuration for redirecting submitters to a URL after submission. */
|
|
5764
5724
|
redirectOptions?: RedirectOptions;
|
|
5725
|
+
/** Configuration for displaying a popup after submission. */
|
|
5726
|
+
popupOptions?: PopupOptions;
|
|
5765
5727
|
}
|
|
5766
5728
|
declare enum Target {
|
|
5767
5729
|
/** Unknown target behavior. */
|
|
@@ -5779,10 +5741,12 @@ declare enum SubmitSuccessAction {
|
|
|
5779
5741
|
/** Display a thank you message after form submission. */
|
|
5780
5742
|
THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
|
|
5781
5743
|
/** Redirect the user to a specified URL after form submission. */
|
|
5782
|
-
REDIRECT = "REDIRECT"
|
|
5744
|
+
REDIRECT = "REDIRECT",
|
|
5745
|
+
/** Display a popup after form submission. */
|
|
5746
|
+
POPUP = "POPUP"
|
|
5783
5747
|
}
|
|
5784
5748
|
/** @enumType */
|
|
5785
|
-
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT';
|
|
5749
|
+
type SubmitSuccessActionWithLiterals = SubmitSuccessAction | 'NO_ACTION' | 'THANK_YOU_MESSAGE' | 'REDIRECT' | 'POPUP';
|
|
5786
5750
|
interface ThankYouMessageOptions {
|
|
5787
5751
|
/**
|
|
5788
5752
|
* Duration in seconds before the thank you message automatically disappears.
|
|
@@ -5801,6 +5765,13 @@ interface RedirectOptions {
|
|
|
5801
5765
|
/** How the redirect URL should be opened in the browser. */
|
|
5802
5766
|
target?: TargetWithLiterals;
|
|
5803
5767
|
}
|
|
5768
|
+
interface PopupOptions {
|
|
5769
|
+
/**
|
|
5770
|
+
* ID of the site popup to open after successful form submission.
|
|
5771
|
+
* @maxLength 100
|
|
5772
|
+
*/
|
|
5773
|
+
popupId?: string;
|
|
5774
|
+
}
|
|
5804
5775
|
interface FieldGroup {
|
|
5805
5776
|
/**
|
|
5806
5777
|
* Id of group, on layout
|
|
@@ -6115,6 +6086,19 @@ declare enum ContactAutofill {
|
|
|
6115
6086
|
}
|
|
6116
6087
|
/** @enumType */
|
|
6117
6088
|
type ContactAutofillWithLiterals = ContactAutofill | 'MEMBER_DATA' | 'FORM_INPUT';
|
|
6089
|
+
/** Controls who can read submissions of this form. */
|
|
6090
|
+
declare enum SubmissionAccess {
|
|
6091
|
+
/** Unknown submission access. */
|
|
6092
|
+
UNKNOWN_SUBMISSION_ACCESS = "UNKNOWN_SUBMISSION_ACCESS",
|
|
6093
|
+
/** Only users with `WIX_FORM.SUBMISSIONS_READ_ANY` permission. Default behavior. */
|
|
6094
|
+
OWNER_AND_COLLABORATORS = "OWNER_AND_COLLABORATORS",
|
|
6095
|
+
/** Logged-in site members can read submissions. */
|
|
6096
|
+
MEMBERS = "MEMBERS",
|
|
6097
|
+
/** Any site visitor with a valid Wix session can read submissions. */
|
|
6098
|
+
PUBLIC = "PUBLIC"
|
|
6099
|
+
}
|
|
6100
|
+
/** @enumType */
|
|
6101
|
+
type SubmissionAccessWithLiterals = SubmissionAccess | 'UNKNOWN_SUBMISSION_ACCESS' | 'OWNER_AND_COLLABORATORS' | 'MEMBERS' | 'PUBLIC';
|
|
6118
6102
|
interface CreateCheckoutFromSubmissionResponse {
|
|
6119
6103
|
/**
|
|
6120
6104
|
* Checkout ID (applicable for form involving payments).
|
|
@@ -7869,6 +7853,16 @@ declare const utils: {
|
|
|
7869
7853
|
search: {
|
|
7870
7854
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<FormSubmission, FormSubmissionSearchSpec, FormSubmissionSearch>;
|
|
7871
7855
|
Filter: _wix_sdk_types.FilterFactory<FormSubmission, FormSubmissionSearchSpec>;
|
|
7856
|
+
/**
|
|
7857
|
+
* Maximum allowed datetime value.
|
|
7858
|
+
*
|
|
7859
|
+
* Supports ISO datetime format or dynamic calculations using "$now" keyword.
|
|
7860
|
+
* The dynamic calculation supports times in the future and past.
|
|
7861
|
+
* The pattern for dynamic calculations: $now([+-]\d{1,2})([yMdmh]).
|
|
7862
|
+
*
|
|
7863
|
+
* Examples: `"2023-01-01"`, `"$now-1d"` (1 day ago), `"$now+2h"` (2 hours from now).
|
|
7864
|
+
* @maxLength 50
|
|
7865
|
+
*/
|
|
7872
7866
|
Sort: _wix_sdk_types.SortFactory<FormSubmissionSearchSpec>;
|
|
7873
7867
|
SearchParams: _wix_sdk_types.SearchParamsFactory<FormSubmissionSearchSpec>;
|
|
7874
7868
|
Aggregation: _wix_sdk_types.AggregationFactory<FormSubmissionSearchSpec>;
|
|
@@ -8250,4 +8244,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
8250
8244
|
fieldsToValidate?: string[];
|
|
8251
8245
|
}
|
|
8252
8246
|
|
|
8253
|
-
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 DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypeDateTimeConstraints 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 };
|
|
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, 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 EntityDeletedEvent 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, SubmissionAccess 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_, 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 NodeStyle 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 NestedFormFieldOverrides as cH, type Validation as cI, type ValidationValidationOneOf as cJ, type DataExtensionsDetails as cK, type NestedFormOverrides as cL, type Field as cM, type FieldFieldTypeOptionsOneOf as cN, type InputField as cO, type InputFieldInputTypeOptionsOneOf as cP, type StringCorrectAnswersList as cQ, type StringType as cR, type StringTypeFormatOptionsOneOf as cS, type DateTimeConstraints as cT, type PhoneConstraints as cU, type ValidationMessages as cV, type StringQuizFieldSettings as cW, type TextInput as cX, type RichContent as cY, type Node as cZ, type NodeDataOneOf as c_, type FormFieldStringTypeFormatOptionsOneOf as ca, type StringErrorMessages as cb, type DateTimeAdvancedConstraints as cc, type Availability as cd, type DateRange as ce, type StringTypeDateTimeConstraints 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 ObjectTypePropertiesType as cp, type ObjectTypePropertiesTypePropertiesTypeOneOf 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 AnchorData as d$, type ButtonData as d0, type Gradient as d1, type Stop as d2, type Border as d3, type Colors as d4, type Background as d5, type PluginContainerData as d6, type PluginContainerDataWidth as d7, type PluginContainerDataWidthDataOneOf as d8, type Spoiler as d9, type HTMLData as dA, type HTMLDataDataOneOf as dB, type ImageData as dC, type StylesBorder as dD, type ImageDataStyles as dE, type LinkPreviewData as dF, type LinkPreviewDataStyles as dG, type MapData as dH, type MapSettings as dI, type ParagraphData as dJ, type PollData as dK, type Permissions as dL, type PollOption as dM, type Settings as dN, type PollLayout as dO, type OptionLayout as dP, type BackgroundGradient as dQ, type PollDesignBackground as dR, type PollDesignBackgroundBackgroundOneOf as dS, type PollDesign as dT, type OptionDesign as dU, type Poll as dV, type PollDataLayout as dW, type Design as dX, type TextData as dY, type Decoration as dZ, type DecorationDataOneOf as d_, type Height as da, type Styles as db, type Link as dc, type LinkDataOneOf as dd, type Rel as de, type CodeBlockData as df, type TextStyle as dg, type DividerData as dh, type FileData as di, type FileSource as dj, type FileSourceDataOneOf as dk, type PDFSettings as dl, type GalleryData as dm, type Media as dn, type Image as dp, type Video as dq, type Item as dr, type ItemDataOneOf as ds, type GalleryOptions as dt, type GalleryOptionsLayout as du, type ItemStyle as dv, type Thumbnails as dw, type GIFData as dx, type GIF as dy, type HeadingData as dz, type UpdateSubmissionValidationErrors as e, type NumberCorrectAnswersList as e$, type ColorData as e0, type LinkData as e1, type MentionData as e2, type FontSizeData as e3, type SpoilerData as e4, type FontFamilyData as e5, type AppEmbedData as e6, type AppEmbedDataAppDataOneOf as e7, type BookingData as e8, type EventData as e9, type Backdrop as eA, type LayoutCellData as eB, type ShapeData as eC, type ShapeDataStyles as eD, type CardData as eE, type CardDataBackground as eF, type BackgroundImage as eG, type TocData as eH, type Metadata as eI, type DocumentStyle as eJ, type TextNodeStyle as eK, type MediaItem as eL, type MediaItemMediaOneOf as eM, type MediaSettings as eN, type RadioGroup as eO, type RadioGroupOption as eP, type CustomOption as eQ, type Dropdown as eR, type DropdownOption as eS, type DateTimeInput as eT, type PhoneInput as eU, type DateInput as eV, type TimeInput as eW, type DatePicker as eX, type ServicesDropdown as eY, type ServiceOption as eZ, type Password as e_, type ButtonStyles as ea, type ImageStyles as eb, type RibbonStyles as ec, type CardStyles as ed, type PricingData as ee, type VideoData as ef, type PlaybackOptions as eg, type EmbedData as eh, type Oembed as ei, type CollapsibleListData as ej, type TableData as ek, type Dimensions as el, type TableCellData as em, type CellStyle as en, type BorderColors as eo, type BorderWidths as ep, type ListValue as eq, type AudioData as er, type OrderedListData as es, type BulletedListData as et, type BlockquoteData as eu, type CaptionData as ev, type LayoutData as ew, type LayoutDataBackgroundImage as ex, type Banner as ey, type LayoutDataBackground as ez, type ConfirmSubmissionResponse as f, type _Object as f$, type NumberType as f0, type NumberQuizFieldSettings as f1, type NumberInput as f2, type RatingInput as f3, type BooleanType as f4, type Checkbox as f5, type CorrectAnswersList as f6, type ArrayType as f7, type ObjectType as f8, type PropertiesType as f9, type ItemLayout as fA, type ItemLayoutItemOneOf as fB, type Group as fC, type Margin as fD, type Section as fE, type Appointment as fF, type AppointmentFormatInfoOneOf as fG, type Location as fH, type LocationLocationInfoOneOf as fI, type InPersonOptions as fJ, type VideoConferenceOptions as fK, type PhoneOptions as fL, type FormFieldContactInfo as fM, type FormFieldContactInfoAdditionalInfoOneOf as fN, type EmailInfo as fO, type PhoneInfo as fP, type AddressInfo as fQ, type CustomFieldInfo as fR, type SubscriptionInfo as fS, type _String as fT, type _StringComponentTypeOptionsOneOf as fU, type _Number as fV, type _NumberComponentTypeOptionsOneOf as fW, type _Boolean as fX, type _BooleanComponentTypeOptionsOneOf as fY, type _Array as fZ, type _ArrayComponentTypeOptionsOneOf as f_, type PropertiesTypePropertiesTypeOptionsOneOf as fa, type ArrayItems as fb, type ArrayItemsItemTypeOptionsOneOf as fc, type QuizFieldSettings as fd, type CheckboxGroup as fe, type Option as ff, type ComponentsTags as fg, type TagsOption as fh, type ServicesCheckboxGroup as fi, type FileType as fj, type FileUpload as fk, type Signature as fl, type ProductCheckboxGroup as fm, type ProductCheckboxGroupOption as fn, type DonationInput as fo, type DonationInputOption as fp, type PaymentInput as fq, type FixedPayment as fr, type MultilineAddress as fs, type AddressLine2 as ft, type DefaultCountryConfig as fu, type DefaultCountryConfigOptionsOneOf as fv, type FieldsSettings as fw, type Repeater as fx, type FormLayout as fy, type BreakPoint as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionResponse as g$, type WixFile as g0, type WixFileComponentTypeOptionsOneOf as g1, type Payment as g2, type PaymentComponentTypeOptionsOneOf as g3, type Scheduling as g4, type SchedulingComponentTypeOptionsOneOf as g5, type Address as g6, type AddressComponentTypeOptionsOneOf as g7, type ObjectArray as g8, type ObjectArrayComponentTypeOptionsOneOf as g9, type Rule as gA, type RequiredOptions as gB, type HiddenOptions as gC, type AllowedValuesOptions as gD, type FieldOverride as gE, type FieldOverridePropertyTypeOptionsOneOf as gF, type ConditionNode as gG, type ConditionNodeNodeOneOf as gH, type AndCondition as gI, type OrCondition as gJ, type Condition as gK, type RuleFormOverride as gL, type RuleFormOverrideEntityTypeOptionsOneOf as gM, type Tags as gN, type TagsTagList as gO, type QuizSettings as gP, type QuizSettingsPassingCriteriaOneOf as gQ, type QuizSettingsResultsDisplayOptionsOneOf as gR, type PassFailMessages as gS, type CreateCheckoutFromSubmissionResponse as gT, type Checkout as gU, type IsFormSubmittableRequest as gV, type IsFormSubmittableResponse as gW, type Empty as gX, type UpsertContactFromSubmissionRequest as gY, type SubmitContactResponse as gZ, type CreateSubmissionRequest as g_, type DisplayField as ga, type DisplayFieldDisplayFieldTypeOptionsOneOf as gb, type RichContentOptions as gc, type PageNavigationOptions as gd, type Step as ge, type FormRule as gf, type FormOverride as gg, type FormProperties as gh, type PostSubmissionTriggers as gi, type UpsertContact as gj, type V4FormFieldContactInfo as gk, type V4FormFieldContactInfoAdditionalInfoOneOf as gl, type FormFieldContactInfoEmailInfo as gm, type FormFieldContactInfoPhoneInfo as gn, type FormFieldContactInfoAddressInfo as go, type FormFieldContactInfoCustomFieldInfo as gp, type FormFieldContactInfoSubscriptionInfo as gq, type NestedForm as gr, type LimitationRule as gs, type RequiredIndicatorProperties as gt, type SubmitSettings as gu, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gv, type ThankYouMessageOptions as gw, type RedirectOptions as gx, type PopupOptions as gy, type FieldGroup as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type UpdateExtendedFieldsRequest as h$, type SubmissionValidationErrorsDetails as h0, type ValidationError as h1, type CreateSubmissionBySubmitterRequest as h2, type CreateSubmissionBySubmitterResponse as h3, type BulkCreateSubmissionBySubmitterRequest as h4, type BulkCreateSubmissionBySubmitterData as h5, type BulkCreateSubmissionBySubmitterResponse as h6, type BulkSubmissionResult as h7, type ItemMetadata as h8, type ApplicationError as h9, type CursorSearch as hA, type CursorSearchPagingMethodOneOf as hB, type SearchDetails as hC, type SearchSubmissionsByNamespaceForExportRequest as hD, type SearchSubmissionsByNamespaceForExportResponse as hE, type QuerySubmissionsByNamespaceRequest as hF, type QuerySubmissionsByNamespaceResponse as hG, type QuerySubmissionsByNamespaceForExportRequest as hH, type QuerySubmissionsByNamespaceForExportResponse as hI, type CountSubmissionsByFilterRequest as hJ, type FormSubmissionsCount as hK, type CountSubmissionsRequest as hL, type CountDeletedSubmissionsRequest as hM, type FormDeletedSubmissionsCount as hN, type GetMediaUploadURLRequest as hO, type BulkMarkSubmissionsAsSeenRequest as hP, type GetSubmissionDownloadUrlRequest as hQ, type SubmissionDocument as hR, type SubmissionDocumentDocumentOneOf as hS, type DocumentReady as hT, type DownloadSubmissionRequest as hU, type HeadersEntry as hV, type GetFormattedSubmissionRequest as hW, type FormattedSubmission as hX, type ListFormattedSubmissionsRequest as hY, type ListFormattedSubmissionsResponse as hZ, type FormattedFormSubmission as h_, type BulkActionMetadata as ha, type GetSubmissionRequest as hb, type GetSubmissionResponse as hc, type GetSubmissionByCheckoutIdRequest as hd, type GetSubmissionByCheckoutIdResponse as he, type UpdateSubmissionRequest as hf, type UpdateSubmissionResponse as hg, type ConfirmSubmissionRequest as hh, type DeleteSubmissionRequest as hi, type DeleteSubmissionResponse as hj, type BulkDeleteSubmissionRequest as hk, type BulkDeleteSubmissionResult as hl, type RestoreSubmissionFromTrashBinRequest as hm, type RemoveSubmissionFromTrashBinRequest as hn, type RemoveSubmissionFromTrashBinResponse as ho, type BulkRemoveSubmissionFromTrashBinRequest as hp, type BulkRemoveSubmissionFromTrashBinResult as hq, type ListDeletedSubmissionsRequest as hr, type CursorPaging as hs, type CursorPagingMetadata as ht, type Cursors as hu, type GetDeletedSubmissionRequest as hv, type QuerySubmissionRequest as hw, type CursorQueryPagingMethodOneOf as hx, type Sorting as hy, type SearchSubmissionsByNamespaceRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PlacementWithLiterals as i$, type BulkUpdateFormSubmissionTagsRequest as i0, type BulkUpdateFormSubmissionTagsResponse as i1, type BulkUpdateFormSubmissionTagsResult as i2, type BulkUpdateFormSubmissionTagsByFilterRequest as i3, type BulkUpdateFormSubmissionTagsByFilterResponse as i4, type ValidateFormSubmissionRequest as i5, type FieldViolation as i6, type FieldViolationErrorDataOneOf as i7, type SubmissionValidationErrors as i8, type SubmissionValidationError as i9, type WidthTypeWithLiterals as iA, type PluginContainerDataAlignmentWithLiterals as iB, type ButtonDataTypeWithLiterals as iC, type LinkTargetWithLiterals as iD, type TextAlignmentWithLiterals as iE, type LineStyleWithLiterals as iF, type WidthWithLiterals as iG, type DividerDataAlignmentWithLiterals as iH, type ViewModeWithLiterals as iI, type LayoutTypeWithLiterals as iJ, type OrientationWithLiterals as iK, type CropWithLiterals as iL, type ThumbnailsAlignmentWithLiterals as iM, type GIFTypeWithLiterals as iN, type SourceWithLiterals as iO, type StylesPositionWithLiterals as iP, type MapTypeWithLiterals as iQ, type ViewRoleWithLiterals as iR, type VoteRoleWithLiterals as iS, type PollLayoutTypeWithLiterals as iT, type PollLayoutDirectionWithLiterals as iU, type PollDesignBackgroundTypeWithLiterals as iV, type DecorationTypeWithLiterals as iW, type FontTypeWithLiterals as iX, type PositionWithLiterals as iY, type AspectRatioWithLiterals as iZ, type ResizingWithLiterals as i_, type SubmissionValidationErrorErrorMessageOneOf as ia, type BaseEventMetadata as ib, type EventMetadata as ic, type AccountInfoMetadata as id, type FormSubmissionSearchSpec as ie, type SubmissionsQueryResult as ig, type FormSubmissionQuerySpec as ih, type BulkUpdateFormSubmissionTagsOptions as ii, type BulkUpdateFormSubmissionTagsByFilterOptions as ij, utils as ik, type SubmissionStatusWithLiterals as il, type OptInLevelWithLiterals as im, type WebhookIdentityTypeWithLiterals as io, type StringTypeFormatEnumFormatWithLiterals as ip, type DayOfWeekWithLiterals as iq, type ValidationFormatWithLiterals as ir, type ProductTypeWithLiterals as is, type PriceTypeWithLiterals as it, type FieldTypeWithLiterals as iu, type FormatEnumFormatWithLiterals as iv, type StringComponentTypeWithLiterals as iw, type NodeTypeWithLiterals as ix, type BackgroundTypeWithLiterals as iy, type GradientTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, type OperatorWithLiterals as j$, type CardStylesTypeWithLiterals as j0, type CardStylesAlignmentWithLiterals as j1, type LayoutWithLiterals as j2, type AppTypeWithLiterals as j3, type InitialExpandedItemsWithLiterals as j4, type DirectionWithLiterals as j5, type VerticalAlignmentWithLiterals as j6, type NullValueWithLiterals as j7, type ImageScalingScalingWithLiterals as j8, type LayoutDataImagePositionWithLiterals as j9, type ObjectArrayComponentTypeWithLiterals as jA, type SchedulingComponentTypeWithLiterals as jB, type FormatWithLiterals as jC, type MeetingTypeWithLiterals as jD, type StaffStrategySelectionWithLiterals as jE, type InputTypeWithLiterals as jF, type EmailInfoTagWithLiterals as jG, type PhoneInfoTagWithLiterals as jH, type TagWithLiterals as jI, type ConfirmationLevelWithLiterals as jJ, type SubscriptionChannelWithLiterals as jK, type ContactFieldWithLiterals as jL, type DisplayFieldTypeWithLiterals as jM, type OverrideEntityTypeWithLiterals as jN, type KindWithLiterals as jO, type FormFieldContactInfoEmailInfoTagWithLiterals as jP, type FormFieldContactInfoPhoneInfoTagWithLiterals as jQ, type AddressInfoTagWithLiterals as jR, type SubscriptionInfoOptInLevelWithLiterals as jS, type FormFieldContactInfoContactFieldWithLiterals as jT, type SpamFilterProtectionLevelWithLiterals as jU, type RequiredIndicatorWithLiterals as jV, type RequiredIndicatorPlacementWithLiterals as jW, type TargetWithLiterals as jX, type SubmitSuccessActionWithLiterals as jY, type ChangeablePropertyWithLiterals as jZ, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as j_, type OriginWithLiterals as ja, type LayoutDataBackgroundTypeWithLiterals as jb, type BackdropTypeWithLiterals as jc, type VerticalAlignmentAlignmentWithLiterals as jd, type ResponsivenessBehaviourWithLiterals as je, type DesignTargetWithLiterals as jf, type ScalingWithLiterals as jg, type ImagePositionPositionWithLiterals as jh, type CardDataBackgroundTypeWithLiterals as ji, type ListStyleWithLiterals as jj, type IndentationWithLiterals as jk, type ImagePositionWithLiterals as jl, type AlignmentWithLiterals as jm, type ImageFitWithLiterals as jn, type NumberOfColumnsWithLiterals as jo, type FirstDayOfWeekWithLiterals as jp, type NumberComponentTypeWithLiterals as jq, type BooleanComponentTypeWithLiterals as jr, type ItemTypeWithLiterals as js, type PropertiesTypeEnumWithLiterals as jt, type ArrayComponentTypeWithLiterals as ju, type WixFileComponentTypeWithLiterals as jv, type UploadFileFormatWithLiterals as jw, type PaymentComponentTypeWithLiterals as jx, type ComponentTypeWithLiterals as jy, type TypeWithLiterals as jz, type CursorQuery as k, type ResultsDisplayWithLiterals as k0, type ContactAutofillWithLiterals as k1, type SubmissionAccessWithLiterals as k2, type IdentityTypeWithLiterals as k3, type ErrorTypeWithLiterals as k4, type SortOrderWithLiterals as k5, type ModeWithLiterals as k6, type StatusWithLiterals as k7, type SubmissionErrorTypeWithLiterals as k8, type CommonSearchWithEntityContext as k9, bulkMarkSubmissionsAsSeen as kA, getSubmissionDownloadUrl as kB, downloadSubmission as kC, getFormattedSubmission as kD, updateExtendedFields as kE, validateFormSubmission as kF, type CommonQueryWithEntityContext as ka, onSubmissionCreated as kb, onSubmissionDeleted as kc, onSubmissionRemovedSubmissionFromTrash as kd, onSubmissionStatusUpdated as ke, onSubmissionContactMapped as kf, onSubmissionContactMappingSkipped as kg, onSubmissionUpdated as kh, upsertContactFromSubmission as ki, createSubmission as kj, getSubmission as kk, updateSubmission as kl, confirmSubmission as km, deleteSubmission as kn, bulkDeleteSubmission as ko, restoreSubmissionFromTrashBin as kp, removeSubmissionFromTrashBin as kq, bulkRemoveSubmissionFromTrashBin as kr, listDeletedSubmissions as ks, getDeletedSubmission as kt, querySubmission as ku, querySubmissionsByNamespace as kv, countSubmissionsByFilter as kw, countSubmissions as kx, countDeletedSubmissions as ky, getMediaUploadUrl 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/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { 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, cd 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, ce as DateRange, cc 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, cf 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-uvhhiFaH.js';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as CountSubmissionsByFilterOptions, o as CountSubmissionsByFilterResponse, p as CountSubmissionsOptions, q as CountSubmissionsResponse, r as CountDeletedSubmissionsOptions, s as CountDeletedSubmissionsResponse, t as GetMediaUploadURLResponse, u as BulkMarkSubmissionsAsSeenResponse, v as GetSubmissionDownloadUrlResponse, w as RawHttpResponse, x as GetFormattedSubmissionResponse, y as UpdateExtendedFieldsOptions, z as UpdateExtendedFieldsResponse, V as ValidateFormSubmissionOptions, A as ValidateFormSubmissionResponse, E as SubmissionCreatedEnvelope, H as SubmissionDeletedEnvelope, I as SubmissionRemovedSubmissionFromTrashEnvelope, J as SubmissionStatusUpdatedEnvelope, K as SubmissionContactMappedEnvelope, M as SubmissionContactMappingSkippedEnvelope, N as SubmissionUpdatedEnvelope, O as FormSubmissionQuery, P as QuerySubmissionsByNamespaceOptions, T as typedQuerySubmissionsByNamespace, W as SubmissionsQueryBuilder } from './forms-v4-submission-submissions.universal-CYE5689M.js';
|
|
3
|
+
export { c4 as AccountInfo, id as AccountInfoMetadata, c0 as ActionEvent, g6 as Address, g7 as AddressComponentTypeOptionsOneOf, fQ as AddressInfo, bq as AddressInfoTag, jR as AddressInfoTagWithLiterals, ft as AddressLine2, aX as Alignment, jm as AlignmentWithLiterals, gD as AllowedValuesOptions, d$ as AnchorData, gI as AndCondition, e6 as AppEmbedData, e7 as AppEmbedDataAppDataOneOf, aE as AppType, j3 as AppTypeWithLiterals, h9 as ApplicationError, fF as Appointment, bQ as AppointmentDetails, fG as AppointmentFormatInfoOneOf, b3 as ArrayComponentType, ju as ArrayComponentTypeWithLiterals, cu as ArrayErrorMessages, fb as ArrayItems, fc as ArrayItemsItemTypeOptionsOneOf, f7 as ArrayType, cs as ArrayTypeArrayItems, ct as ArrayTypeArrayItemsItemsOneOf, ay as AspectRatio, iZ as AspectRatioWithLiterals, er as AudioData, cd as Availability, eA as Backdrop, aN as BackdropType, jc as BackdropTypeWithLiterals, d5 as Background, dQ as BackgroundGradient, eG as BackgroundImage, a7 as BackgroundType, iy as BackgroundTypeWithLiterals, ey as Banner, ib as BaseEventMetadata, eu as BlockquoteData, e8 as BookingData, b0 as BooleanComponentType, jr as BooleanComponentTypeWithLiterals, cm as BooleanErrorMessages, f4 as BooleanType, d3 as Border, eo as BorderColors, ep as BorderWidths, fz as BreakPoint, ha as BulkActionMetadata, h5 as BulkCreateSubmissionBySubmitterData, h4 as BulkCreateSubmissionBySubmitterRequest, h6 as BulkCreateSubmissionBySubmitterResponse, hk as BulkDeleteSubmissionRequest, hl as BulkDeleteSubmissionResult, hP as BulkMarkSubmissionsAsSeenRequest, hp as BulkRemoveSubmissionFromTrashBinRequest, hq as BulkRemoveSubmissionFromTrashBinResult, h7 as BulkSubmissionResult, ij as BulkUpdateFormSubmissionTagsByFilterOptions, i3 as BulkUpdateFormSubmissionTagsByFilterRequest, i4 as BulkUpdateFormSubmissionTagsByFilterResponse, ii as BulkUpdateFormSubmissionTagsOptions, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResponse, i2 as BulkUpdateFormSubmissionTagsResult, et as BulletedListData, d0 as ButtonData, ab as ButtonDataType, iC as ButtonDataTypeWithLiterals, ea as ButtonStyles, ev as CaptionData, eE as CardData, eF as CardDataBackground, aT as CardDataBackgroundType, ji as CardDataBackgroundTypeWithLiterals, ed as CardStyles, aC as CardStylesAlignment, j1 as CardStylesAlignmentWithLiterals, aB as CardStylesType, j0 as CardStylesTypeWithLiterals, en as CellStyle, by as ChangeableProperty, jZ as ChangeablePropertyWithLiterals, f5 as Checkbox, fe as CheckboxGroup, gU as Checkout, df as CodeBlockData, ej as CollapsibleListData, e0 as ColorData, d4 as Colors, ka as CommonQueryWithEntityContext, k9 as CommonSearchWithEntityContext, b7 as ComponentType, jy as ComponentTypeWithLiterals, fg as ComponentsTags, gK as Condition, gG as ConditionNode, gH as ConditionNodeNodeOneOf, hh as ConfirmSubmissionRequest, bi as ConfirmationLevel, jJ as ConfirmationLevelWithLiterals, bC as ContactAutofill, k1 as ContactAutofillWithLiterals, bk as ContactField, jL as ContactFieldWithLiterals, f6 as CorrectAnswersList, hM as CountDeletedSubmissionsRequest, hJ as CountSubmissionsByFilterRequest, hL as CountSubmissionsRequest, c5 as CreateCheckoutFromSubmissionRequest, c6 as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gT as CreateCheckoutFromSubmissionResponse, h2 as CreateSubmissionBySubmitterRequest, h3 as CreateSubmissionBySubmitterResponse, g_ as CreateSubmissionRequest, g$ as CreateSubmissionResponse, ak as Crop, iL as CropWithLiterals, hs as CursorPaging, ht as CursorPagingMetadata, hx as CursorQueryPagingMethodOneOf, hA as CursorSearch, hB as CursorSearchPagingMethodOneOf, hu as Cursors, fR as CustomFieldInfo, eQ as CustomOption, cK as DataExtensionsDetails, eV as DateInput, eX as DatePicker, ce as DateRange, cc as DateTimeAdvancedConstraints, cT as DateTimeConstraints, eT as DateTimeInput, $ as DayOfWeek, iq as DayOfWeekWithLiterals, dZ as Decoration, d_ as DecorationDataOneOf, av as DecorationType, iW as DecorationTypeWithLiterals, fu as DefaultCountryConfig, fv as DefaultCountryConfigOptionsOneOf, hi as DeleteSubmissionRequest, hj as DeleteSubmissionResponse, dX as Design, aQ as DesignTarget, jf as DesignTargetWithLiterals, el as Dimensions, aG as Direction, j5 as DirectionWithLiterals, ga as DisplayField, gb as DisplayFieldDisplayFieldTypeOptionsOneOf, bl as DisplayFieldType, jM as DisplayFieldTypeWithLiterals, dh as DividerData, ag as DividerDataAlignment, iH as DividerDataAlignmentWithLiterals, hT as DocumentReady, eJ as DocumentStyle, bW as DomainEvent, bX as DomainEventBodyOneOf, fo as DonationInput, fp as DonationInputOption, hU as DownloadSubmissionRequest, eR as Dropdown, eS as DropdownOption, cA as DynamicPriceOptions, fO as EmailInfo, bf as EmailInfoTag, jG as EmailInfoTagWithLiterals, eh as EmbedData, gX as Empty, bY as EntityCreatedEvent, b$ as EntityDeletedEvent, b_ as EntityUpdatedEvent, bF as ErrorType, k4 as ErrorTypeWithLiterals, e9 as EventData, ic as EventMetadata, bM as ExtendedFields, cM as Field, cN as FieldFieldTypeOptionsOneOf, gz as FieldGroup, gE as FieldOverride, gF as FieldOverridePropertyTypeOptionsOneOf, cE as FieldOverrides, a3 as FieldType, iu as FieldTypeWithLiterals, i6 as FieldViolation, i7 as FieldViolationErrorDataOneOf, cF as FieldsOverrides, fw as FieldsSettings, di as FileData, dj as FileSource, dk as FileSourceDataOneOf, fj as FileType, fk as FileUpload, a_ as FirstDayOfWeek, jp as FirstDayOfWeekWithLiterals, fr as FixedPayment, cz as FixedPriceOptions, e5 as FontFamilyData, e3 as FontSizeData, aw as FontType, iX as FontTypeWithLiterals, c7 as Form, hN as FormDeletedSubmissionsCount, c8 as FormField, cn as FormFieldArrayType, cl as FormFieldBooleanType, fM as FormFieldContactInfo, fN as FormFieldContactInfoAdditionalInfoOneOf, go as FormFieldContactInfoAddressInfo, bs as FormFieldContactInfoContactField, jT as FormFieldContactInfoContactFieldWithLiterals, gp as FormFieldContactInfoCustomFieldInfo, gm as FormFieldContactInfoEmailInfo, bo as FormFieldContactInfoEmailInfoTag, jP as FormFieldContactInfoEmailInfoTagWithLiterals, gn as FormFieldContactInfoPhoneInfo, bp as FormFieldContactInfoPhoneInfoTag, jQ as FormFieldContactInfoPhoneInfoTagWithLiterals, gq as FormFieldContactInfoSubscriptionInfo, ci as FormFieldNumberType, co as FormFieldObjectType, c9 as FormFieldStringType, ca as FormFieldStringTypeFormatOptionsOneOf, fy as FormLayout, gg as FormOverride, gh as FormProperties, gf as FormRule, ih as FormSubmissionQuerySpec, ie as FormSubmissionSearchSpec, bR as FormSubmissionStatusUpdatedEvent, hK as FormSubmissionsCount, bb as Format, a4 as FormatEnumFormat, iv as FormatEnumFormatWithLiterals, jC as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, dy as GIF, dx as GIFData, am as GIFType, iN as GIFTypeWithLiterals, dm as GalleryData, dt as GalleryOptions, du as GalleryOptionsLayout, hv as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hO as GetMediaUploadURLRequest, hd as GetSubmissionByCheckoutIdRequest, he as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, hb as GetSubmissionRequest, hc as GetSubmissionResponse, d1 as Gradient, a8 as GradientType, iz as GradientTypeWithLiterals, fC as Group, dA as HTMLData, dB as HTMLDataDataOneOf, hV as HeadersEntry, dz as HeadingData, da as Height, gC as HiddenOptions, c2 as IdentificationData, c3 as IdentificationDataIdOneOf, bE as IdentityType, k3 as IdentityTypeWithLiterals, dp as Image, dC as ImageData, dE as ImageDataStyles, aY as ImageFit, jn as ImageFitWithLiterals, aW as ImagePosition, aS as ImagePositionPosition, jh as ImagePositionPositionWithLiterals, jl as ImagePositionWithLiterals, aJ as ImageScalingScaling, j8 as ImageScalingScalingWithLiterals, eb as ImageStyles, fJ as InPersonOptions, aV as Indentation, jk as IndentationWithLiterals, aF as InitialExpandedItems, j4 as InitialExpandedItemsWithLiterals, cO as InputField, cP as InputFieldInputTypeOptionsOneOf, be as InputType, jF as InputTypeWithLiterals, ck as IntegerType, gV as IsFormSubmittableRequest, gW as IsFormSubmittableResponse, dr as Item, ds as ItemDataOneOf, fA as ItemLayout, fB as ItemLayoutItemOneOf, h8 as ItemMetadata, dv as ItemStyle, b1 as ItemType, js as ItemTypeWithLiterals, bn as Kind, jO as KindWithLiterals, aD as Layout, eB as LayoutCellData, ew as LayoutData, ez as LayoutDataBackground, ex as LayoutDataBackgroundImage, aM as LayoutDataBackgroundType, jb as LayoutDataBackgroundTypeWithLiterals, aK as LayoutDataImagePosition, j9 as LayoutDataImagePositionWithLiterals, ai as LayoutType, iJ as LayoutTypeWithLiterals, j2 as LayoutWithLiterals, gs as LimitationRule, ae as LineStyle, iF as LineStyleWithLiterals, dc as Link, e1 as LinkData, dd as LinkDataOneOf, dF as LinkPreviewData, dG as LinkPreviewDataStyles, ac as LinkTarget, iD as LinkTargetWithLiterals, hr as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, aU as ListStyle, jj as ListStyleWithLiterals, eq as ListValue, fH as Location, fI as LocationLocationInfoOneOf, dH as MapData, dI as MapSettings, ap as MapType, iQ as MapTypeWithLiterals, fD as Margin, bU as MarketingSubscriptionDetails, dn as Media, eL as MediaItem, eM as MediaItemMediaOneOf, eN as MediaSettings, bc as MeetingType, jD as MeetingTypeWithLiterals, e2 as MentionData, c1 as MessageEnvelope, eI as Metadata, bH as Mode, k6 as ModeWithLiterals, fs as MultilineAddress, cD as MultilineAddressValidation, gr as NestedForm, cH as NestedFormFieldOverrides, cL as NestedFormOverrides, cZ as Node, c_ as NodeDataOneOf, c$ as NodeStyle, a6 as NodeType, ix as NodeTypeWithLiterals, aI as NullValue, j7 as NullValueWithLiterals, a$ as NumberComponentType, jq as NumberComponentTypeWithLiterals, e$ as NumberCorrectAnswersList, cj as NumberErrorMessages, f2 as NumberInput, aZ as NumberOfColumns, jo as NumberOfColumnsWithLiterals, f1 as NumberQuizFieldSettings, f0 as NumberType, g8 as ObjectArray, b9 as ObjectArrayComponentType, g9 as ObjectArrayComponentTypeOptionsOneOf, jA as ObjectArrayComponentTypeWithLiterals, cG as ObjectArrayType, cr as ObjectErrorMessages, f8 as ObjectType, cp as ObjectTypePropertiesType, cq as ObjectTypePropertiesTypePropertiesTypeOneOf, ei as Oembed, bA as Operator, j$ as OperatorWithLiterals, Y as OptInLevel, im as OptInLevelWithLiterals, ff as Option, dU as OptionDesign, dP as OptionLayout, gJ as OrCondition, bN as OrderDetails, es as OrderedListData, aj as Orientation, iK as OrientationWithLiterals, aL as Origin, ja as OriginWithLiterals, bm as OverrideEntityType, bz as OverrideEntityTypeEnumOverrideEntityType, j_ as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jN as OverrideEntityTypeWithLiterals, dl as PDFSettings, gd as PageNavigationOptions, dJ as ParagraphData, gS as PassFailMessages, e_ as Password, g2 as Payment, b6 as PaymentComponentType, g3 as PaymentComponentTypeOptionsOneOf, jx as PaymentComponentTypeWithLiterals, fq as PaymentInput, cx as PaymentType, dL as Permissions, cU as PhoneConstraints, fP as PhoneInfo, bg as PhoneInfoTag, jH as PhoneInfoTagWithLiterals, eU as PhoneInput, fL as PhoneOptions, aA as Placement, i$ as PlacementWithLiterals, eg as PlaybackOptions, d6 as PluginContainerData, aa as PluginContainerDataAlignment, iB as PluginContainerDataAlignmentWithLiterals, d7 as PluginContainerDataWidth, d8 as PluginContainerDataWidthDataOneOf, dV as Poll, dK as PollData, dW as PollDataLayout, dT as PollDesign, dR as PollDesignBackground, dS as PollDesignBackgroundBackgroundOneOf, au as PollDesignBackgroundType, iV as PollDesignBackgroundTypeWithLiterals, dO as PollLayout, at as PollLayoutDirection, iU as PollLayoutDirectionWithLiterals, as as PollLayoutType, iT as PollLayoutTypeWithLiterals, dM as PollOption, gy as PopupOptions, ax as Position, iY as PositionWithLiterals, gi as PostSubmissionTriggers, cv as PredefinedValidation, cw as PredefinedValidationFormatOptionsOneOf, a2 as PriceType, it as PriceTypeWithLiterals, ee as PricingData, cB as Product, fm as ProductCheckboxGroup, fn as ProductCheckboxGroupOption, cC as ProductPriceOptionsOneOf, a1 as ProductType, is as ProductTypeWithLiterals, f9 as PropertiesType, b2 as PropertiesTypeEnum, jt as PropertiesTypeEnumWithLiterals, fa as PropertiesTypePropertiesTypeOptionsOneOf, bO as PublicTags, cy as QuantityLimit, hw as QuerySubmissionRequest, hH as QuerySubmissionsByNamespaceForExportRequest, hI as QuerySubmissionsByNamespaceForExportResponse, hF as QuerySubmissionsByNamespaceRequest, hG as QuerySubmissionsByNamespaceResponse, fd as QuizFieldSettings, gP as QuizSettings, gQ as QuizSettingsPassingCriteriaOneOf, gR as QuizSettingsResultsDisplayOptionsOneOf, eO as RadioGroup, eP as RadioGroupOption, f3 as RatingInput, gx as RedirectOptions, de as Rel, hn as RemoveSubmissionFromTrashBinRequest, ho as RemoveSubmissionFromTrashBinResponse, bS as RemovedSubmissionFromTrash, fx as Repeater, bu as RequiredIndicator, bv as RequiredIndicatorPlacement, jW as RequiredIndicatorPlacementWithLiterals, gt as RequiredIndicatorProperties, jV as RequiredIndicatorWithLiterals, gB as RequiredOptions, az as Resizing, i_ as ResizingWithLiterals, aP as ResponsivenessBehaviour, je as ResponsivenessBehaviourWithLiterals, bZ as RestoreInfo, hm as RestoreSubmissionFromTrashBinRequest, bB as ResultsDisplay, k0 as ResultsDisplayWithLiterals, ec as RibbonStyles, cY as RichContent, gc as RichContentOptions, gA as Rule, gL as RuleFormOverride, gM as RuleFormOverrideEntityTypeOptionsOneOf, aR as Scaling, jg as ScalingWithLiterals, g4 as Scheduling, ba as SchedulingComponentType, g5 as SchedulingComponentTypeOptionsOneOf, jB as SchedulingComponentTypeWithLiterals, hC as SearchDetails, hD as SearchSubmissionsByNamespaceForExportRequest, hE as SearchSubmissionsByNamespaceForExportResponse, hz as SearchSubmissionsByNamespaceRequest, fE as Section, eZ as ServiceOption, fi as ServicesCheckboxGroup, eY as ServicesDropdown, dN as Settings, eC as ShapeData, eD as ShapeDataStyles, fl as Signature, bG as SortOrder, k5 as SortOrderWithLiterals, hy as Sorting, an as Source, iO as SourceWithLiterals, bt as SpamFilterProtectionLevel, jU as SpamFilterProtectionLevelWithLiterals, d9 as Spoiler, e4 as SpoilerData, bd as StaffStrategySelection, jE as StaffStrategySelectionWithLiterals, bI as Status, k7 as StatusWithLiterals, ge as Step, d2 as Stop, a5 as StringComponentType, iw as StringComponentTypeWithLiterals, cQ as StringCorrectAnswersList, cb as StringErrorMessages, cW as StringQuizFieldSettings, cR as StringType, cf as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ip as StringTypeFormatEnumFormatWithLiterals, cS as StringTypeFormatOptionsOneOf, cg as StringTypePhoneConstraints, ch as StringTypeValidationMessages, db as Styles, dD as StylesBorder, ao as StylesPosition, iP as StylesPositionWithLiterals, bD as SubmissionAccess, k2 as SubmissionAccessWithLiterals, bT as SubmissionContactMapped, bV as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bJ as SubmissionErrorType, k8 as SubmissionErrorTypeWithLiterals, X as SubmissionStatus, il as SubmissionStatusWithLiterals, i9 as SubmissionValidationError, ia as SubmissionValidationErrorErrorMessageOneOf, i8 as SubmissionValidationErrors, h0 as SubmissionValidationErrorsDetails, ig as SubmissionsQueryResult, gZ as SubmitContactResponse, gu as SubmitSettings, gv as SubmitSettingsSubmitSuccessActionOptionsOneOf, bx as SubmitSuccessAction, jY as SubmitSuccessActionWithLiterals, bK as Submitter, bL as SubmitterSubmitterOneOf, bj as SubscriptionChannel, jK as SubscriptionChannelWithLiterals, fS as SubscriptionInfo, br as SubscriptionInfoOptInLevel, jS as SubscriptionInfoOptInLevelWithLiterals, em as TableCellData, ek as TableData, bh as Tag, bP as TagList, jI as TagWithLiterals, gN as Tags, fh as TagsOption, gO as TagsTagList, bw as Target, jX as TargetWithLiterals, ad as TextAlignment, iE as TextAlignmentWithLiterals, dY as TextData, cX as TextInput, eK as TextNodeStyle, dg as TextStyle, gw as ThankYouMessageOptions, dw as Thumbnails, al as ThumbnailsAlignment, iM as ThumbnailsAlignmentWithLiterals, eW as TimeInput, eH as TocData, b8 as Type, jz as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, hf as UpdateSubmissionRequest, hg as UpdateSubmissionResponse, b5 as UploadFileFormat, jw as UploadFileFormatWithLiterals, gj as UpsertContact, gY as UpsertContactFromSubmissionRequest, gk as V4FormFieldContactInfo, gl as V4FormFieldContactInfoAdditionalInfoOneOf, i5 as ValidateFormSubmissionRequest, cI as Validation, h1 as ValidationError, a0 as ValidationFormat, ir as ValidationFormatWithLiterals, cV as ValidationMessages, cJ as ValidationValidationOneOf, aH as VerticalAlignment, aO as VerticalAlignmentAlignment, jd as VerticalAlignmentAlignmentWithLiterals, j6 as VerticalAlignmentWithLiterals, dq as Video, fK as VideoConferenceOptions, ef as VideoData, ah as ViewMode, iI as ViewModeWithLiterals, aq as ViewRole, iR as ViewRoleWithLiterals, ar as VoteRole, iS as VoteRoleWithLiterals, Z as WebhookIdentityType, io as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, iA as WidthTypeWithLiterals, iG as WidthWithLiterals, g0 as WixFile, b4 as WixFileComponentType, g1 as WixFileComponentTypeOptionsOneOf, jv as WixFileComponentTypeWithLiterals, fZ as _Array, f_ as _ArrayComponentTypeOptionsOneOf, fX as _Boolean, fY as _BooleanComponentTypeOptionsOneOf, fV as _Number, fW as _NumberComponentTypeOptionsOneOf, f$ as _Object, fT as _String, fU as _StringComponentTypeOptionsOneOf, ik as utils } from './forms-v4-submission-submissions.universal-CYE5689M.js';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -98,7 +98,6 @@ __export(index_exports, {
|
|
|
98
98
|
PriceType: () => PriceType,
|
|
99
99
|
ProductType: () => ProductType,
|
|
100
100
|
PropertiesTypeEnum: () => PropertiesTypeEnum,
|
|
101
|
-
PropertiesTypePropertiesTypeEnum: () => PropertiesTypePropertiesTypeEnum,
|
|
102
101
|
RequiredIndicator: () => RequiredIndicator,
|
|
103
102
|
RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
|
|
104
103
|
Resizing: () => Resizing,
|
|
@@ -114,6 +113,7 @@ __export(index_exports, {
|
|
|
114
113
|
StringComponentType: () => StringComponentType,
|
|
115
114
|
StringTypeFormatEnumFormat: () => StringTypeFormatEnumFormat,
|
|
116
115
|
StylesPosition: () => StylesPosition,
|
|
116
|
+
SubmissionAccess: () => SubmissionAccess,
|
|
117
117
|
SubmissionErrorType: () => SubmissionErrorType,
|
|
118
118
|
SubmissionStatus: () => SubmissionStatus,
|
|
119
119
|
SubmitSuccessAction: () => SubmitSuccessAction,
|
|
@@ -1100,12 +1100,6 @@ var PriceType = /* @__PURE__ */ ((PriceType2) => {
|
|
|
1100
1100
|
PriceType2["DYNAMIC_PRICE"] = "DYNAMIC_PRICE";
|
|
1101
1101
|
return PriceType2;
|
|
1102
1102
|
})(PriceType || {});
|
|
1103
|
-
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
1104
|
-
PropertiesTypeEnum2["STRING"] = "STRING";
|
|
1105
|
-
PropertiesTypeEnum2["NUMBER"] = "NUMBER";
|
|
1106
|
-
PropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
|
|
1107
|
-
return PropertiesTypeEnum2;
|
|
1108
|
-
})(PropertiesTypeEnum || {});
|
|
1109
1103
|
var FieldType = /* @__PURE__ */ ((FieldType2) => {
|
|
1110
1104
|
FieldType2["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
1111
1105
|
FieldType2["INPUT"] = "INPUT";
|
|
@@ -1552,13 +1546,13 @@ var ItemType = /* @__PURE__ */ ((ItemType2) => {
|
|
|
1552
1546
|
ItemType2["BOOLEAN"] = "BOOLEAN";
|
|
1553
1547
|
return ItemType2;
|
|
1554
1548
|
})(ItemType || {});
|
|
1555
|
-
var
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
return
|
|
1561
|
-
})(
|
|
1549
|
+
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
1550
|
+
PropertiesTypeEnum2["STRING"] = "STRING";
|
|
1551
|
+
PropertiesTypeEnum2["NUMBER"] = "NUMBER";
|
|
1552
|
+
PropertiesTypeEnum2["BOOLEAN"] = "BOOLEAN";
|
|
1553
|
+
PropertiesTypeEnum2["ARRAY"] = "ARRAY";
|
|
1554
|
+
return PropertiesTypeEnum2;
|
|
1555
|
+
})(PropertiesTypeEnum || {});
|
|
1562
1556
|
var ArrayComponentType = /* @__PURE__ */ ((ArrayComponentType2) => {
|
|
1563
1557
|
ArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1564
1558
|
ArrayComponentType2["CHECKBOX_GROUP"] = "CHECKBOX_GROUP";
|
|
@@ -1603,7 +1597,6 @@ var Type = /* @__PURE__ */ ((Type2) => {
|
|
|
1603
1597
|
var ObjectArrayComponentType = /* @__PURE__ */ ((ObjectArrayComponentType2) => {
|
|
1604
1598
|
ObjectArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1605
1599
|
ObjectArrayComponentType2["REPEATER"] = "REPEATER";
|
|
1606
|
-
ObjectArrayComponentType2["PIKACHU"] = "PIKACHU";
|
|
1607
1600
|
return ObjectArrayComponentType2;
|
|
1608
1601
|
})(ObjectArrayComponentType || {});
|
|
1609
1602
|
var SchedulingComponentType = /* @__PURE__ */ ((SchedulingComponentType2) => {
|
|
@@ -1761,6 +1754,7 @@ var SubmitSuccessAction = /* @__PURE__ */ ((SubmitSuccessAction2) => {
|
|
|
1761
1754
|
SubmitSuccessAction2["NO_ACTION"] = "NO_ACTION";
|
|
1762
1755
|
SubmitSuccessAction2["THANK_YOU_MESSAGE"] = "THANK_YOU_MESSAGE";
|
|
1763
1756
|
SubmitSuccessAction2["REDIRECT"] = "REDIRECT";
|
|
1757
|
+
SubmitSuccessAction2["POPUP"] = "POPUP";
|
|
1764
1758
|
return SubmitSuccessAction2;
|
|
1765
1759
|
})(SubmitSuccessAction || {});
|
|
1766
1760
|
var ChangeableProperty = /* @__PURE__ */ ((ChangeableProperty2) => {
|
|
@@ -1814,6 +1808,13 @@ var ContactAutofill = /* @__PURE__ */ ((ContactAutofill2) => {
|
|
|
1814
1808
|
ContactAutofill2["FORM_INPUT"] = "FORM_INPUT";
|
|
1815
1809
|
return ContactAutofill2;
|
|
1816
1810
|
})(ContactAutofill || {});
|
|
1811
|
+
var SubmissionAccess = /* @__PURE__ */ ((SubmissionAccess2) => {
|
|
1812
|
+
SubmissionAccess2["UNKNOWN_SUBMISSION_ACCESS"] = "UNKNOWN_SUBMISSION_ACCESS";
|
|
1813
|
+
SubmissionAccess2["OWNER_AND_COLLABORATORS"] = "OWNER_AND_COLLABORATORS";
|
|
1814
|
+
SubmissionAccess2["MEMBERS"] = "MEMBERS";
|
|
1815
|
+
SubmissionAccess2["PUBLIC"] = "PUBLIC";
|
|
1816
|
+
return SubmissionAccess2;
|
|
1817
|
+
})(SubmissionAccess || {});
|
|
1817
1818
|
var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
|
|
1818
1819
|
IdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1819
1820
|
IdentityType2["CONTACT"] = "CONTACT";
|
|
@@ -3185,7 +3186,6 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3185
3186
|
PriceType,
|
|
3186
3187
|
ProductType,
|
|
3187
3188
|
PropertiesTypeEnum,
|
|
3188
|
-
PropertiesTypePropertiesTypeEnum,
|
|
3189
3189
|
RequiredIndicator,
|
|
3190
3190
|
RequiredIndicatorPlacement,
|
|
3191
3191
|
Resizing,
|
|
@@ -3201,6 +3201,7 @@ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule
|
|
|
3201
3201
|
StringComponentType,
|
|
3202
3202
|
StringTypeFormatEnumFormat,
|
|
3203
3203
|
StylesPosition,
|
|
3204
|
+
SubmissionAccess,
|
|
3204
3205
|
SubmissionErrorType,
|
|
3205
3206
|
SubmissionStatus,
|
|
3206
3207
|
SubmitSuccessAction,
|