@wix/auto_sdk_forms_submissions 1.0.54 → 1.0.55
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-DjDjo-gt.d.ts → forms-v4-submission-submissions.universal-BW4xE-Oq.d.ts} +146 -88
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/{forms-v4-submission-submissions.universal-DjDjo-gt.d.mts → forms-v4-submission-submissions.universal-BW4xE-Oq.d.mts} +146 -88
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/{forms-v4-submission-submissions.universal-BBNQW7g1.d.ts → forms-v4-submission-submissions.universal-C2nk1vxO.d.ts} +146 -88
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +7 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{forms-v4-submission-submissions.universal-BBNQW7g1.d.mts → forms-v4-submission-submissions.universal-C2nk1vxO.d.mts} +146 -88
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { gV as UpsertContactFromSubmissionRequest$1, a as UpsertContactFromSubmissionResponse$1, gX as CreateSubmissionRequest$1, gY as CreateSubmissionResponse$1, ha as GetSubmissionRequest$1, hb as GetSubmissionResponse$1, he as UpdateSubmissionRequest$1, hf as UpdateSubmissionResponse$1, hg as ConfirmSubmissionRequest$1, f as ConfirmSubmissionResponse$1, hh as DeleteSubmissionRequest$1, hi as DeleteSubmissionResponse$1, hj as BulkDeleteSubmissionRequest$1, g as BulkDeleteSubmissionResponse$1, hl as RestoreSubmissionFromTrashBinRequest$1, R as RestoreSubmissionFromTrashBinResponse$1, hm as RemoveSubmissionFromTrashBinRequest$1, hn as RemoveSubmissionFromTrashBinResponse$1, ho as BulkRemoveSubmissionFromTrashBinRequest$1, i as BulkRemoveSubmissionFromTrashBinResponse$1, hq as ListDeletedSubmissionsRequest$1, j as ListDeletedSubmissionsResponse$1, hu as GetDeletedSubmissionRequest$1, G as GetDeletedSubmissionResponse$1, hv as QuerySubmissionRequest$1, l as QuerySubmissionResponse$1, hy as SearchSubmissionsByNamespaceRequest$1, S as SearchSubmissionsByNamespaceResponse$1, hE as QuerySubmissionsByNamespaceRequest$1, hF as QuerySubmissionsByNamespaceResponse$1, hI as CountSubmissionsByFilterRequest$1, q as CountSubmissionsByFilterResponse$1, hK as CountSubmissionsRequest$1, s as CountSubmissionsResponse$1, hL as CountDeletedSubmissionsRequest$1, u as CountDeletedSubmissionsResponse$1, hN as GetMediaUploadURLRequest$1, v as GetMediaUploadURLResponse$1, hO as BulkMarkSubmissionsAsSeenRequest$1, hP as BulkMarkSubmissionsAsSeenResponse$1, hQ as GetSubmissionDownloadUrlRequest$1, w as GetSubmissionDownloadUrlResponse$1, hU as DownloadSubmissionRequest$1, x as RawHttpResponse$1, hW as GetFormattedSubmissionRequest$1, y as GetFormattedSubmissionResponse$1, h$ as UpdateExtendedFieldsRequest$1, A as UpdateExtendedFieldsResponse$1, i0 as BulkUpdateFormSubmissionTagsRequest$1, H as BulkUpdateFormSubmissionTagsResponse$1, i2 as BulkUpdateFormSubmissionTagsByFilterRequest$1, J as BulkUpdateFormSubmissionTagsByFilterResponse$1, i3 as ValidateFormSubmissionRequest$1, K as ValidateFormSubmissionResponse$1 } from './forms-v4-submission-submissions.universal-C2nk1vxO.js';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
/** Form submission that was created or retrieved. */
|
|
@@ -4860,6 +4860,135 @@ declare enum ComponentType {
|
|
|
4860
4860
|
}
|
|
4861
4861
|
/** @enumType */
|
|
4862
4862
|
type ComponentTypeWithLiterals = ComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
|
|
4863
|
+
declare enum ObjectArrayComponentType {
|
|
4864
|
+
/** Unknown component type. */
|
|
4865
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
4866
|
+
/** Repeater component. */
|
|
4867
|
+
REPEATER = "REPEATER"
|
|
4868
|
+
}
|
|
4869
|
+
/** @enumType */
|
|
4870
|
+
type ObjectArrayComponentTypeWithLiterals = ObjectArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'REPEATER';
|
|
4871
|
+
interface ObjectArrayType {
|
|
4872
|
+
/**
|
|
4873
|
+
* Maximum number of elements allowed in the array.
|
|
4874
|
+
* @max 1000
|
|
4875
|
+
*/
|
|
4876
|
+
maxItems?: number | null;
|
|
4877
|
+
/**
|
|
4878
|
+
* Minimum number of elements required in the array.
|
|
4879
|
+
* @max 1000
|
|
4880
|
+
*/
|
|
4881
|
+
minItems?: number | null;
|
|
4882
|
+
}
|
|
4883
|
+
interface Repeater {
|
|
4884
|
+
/**
|
|
4885
|
+
* Field label.
|
|
4886
|
+
* @maxLength 350
|
|
4887
|
+
*/
|
|
4888
|
+
label?: string | null;
|
|
4889
|
+
/** Additional description or instructions for the field. */
|
|
4890
|
+
description?: RichContent;
|
|
4891
|
+
/**
|
|
4892
|
+
* Whether to display the label.
|
|
4893
|
+
*
|
|
4894
|
+
* Default: `true`
|
|
4895
|
+
*/
|
|
4896
|
+
showLabel?: boolean | null;
|
|
4897
|
+
/**
|
|
4898
|
+
* Form fields that define the input elements inside repeater.
|
|
4899
|
+
* @maxSize 10
|
|
4900
|
+
*/
|
|
4901
|
+
fields?: Field[];
|
|
4902
|
+
/** Layout configuration that defines how form fields are arranged within this repeater. */
|
|
4903
|
+
layout?: FormLayout;
|
|
4904
|
+
}
|
|
4905
|
+
interface FormLayout {
|
|
4906
|
+
/** Layout configuration for large screen breakpoints (desktop). */
|
|
4907
|
+
large?: BreakPoint;
|
|
4908
|
+
/** Layout configuration for medium screen breakpoints (tablet). */
|
|
4909
|
+
medium?: BreakPoint;
|
|
4910
|
+
/** Layout configuration for small screen breakpoints (mobile). */
|
|
4911
|
+
small?: BreakPoint;
|
|
4912
|
+
}
|
|
4913
|
+
interface BreakPoint {
|
|
4914
|
+
/**
|
|
4915
|
+
* Configuration for the layout of items in the breakpoint.
|
|
4916
|
+
* @maxSize 500
|
|
4917
|
+
*/
|
|
4918
|
+
items?: ItemLayout[];
|
|
4919
|
+
/** Number of columns in the layout grid. */
|
|
4920
|
+
columns?: number | null;
|
|
4921
|
+
/** Height of each row in the layout grid, measured in pixels. */
|
|
4922
|
+
rowHeight?: number | null;
|
|
4923
|
+
/** Margin spacing configuration for the form elements. */
|
|
4924
|
+
margin?: Margin;
|
|
4925
|
+
/** Padding spacing inside form elements in pixels. */
|
|
4926
|
+
padding?: Margin;
|
|
4927
|
+
}
|
|
4928
|
+
interface ItemLayout extends ItemLayoutItemOneOf {
|
|
4929
|
+
/**
|
|
4930
|
+
* ID of the form field to be positioned in the layout.
|
|
4931
|
+
* @format GUID
|
|
4932
|
+
*/
|
|
4933
|
+
fieldId?: string;
|
|
4934
|
+
/** Group configuration for positioning multiple fields as a single layout unit. */
|
|
4935
|
+
group?: Group;
|
|
4936
|
+
/** Row position in the grid where this item is placed. */
|
|
4937
|
+
row?: number | null;
|
|
4938
|
+
/** Column position in the grid where this item is placed. */
|
|
4939
|
+
column?: number | null;
|
|
4940
|
+
/** Width of the item in grid units. */
|
|
4941
|
+
width?: number | null;
|
|
4942
|
+
/** Height of the item in grid units. */
|
|
4943
|
+
height?: number | null;
|
|
4944
|
+
}
|
|
4945
|
+
/** @oneof */
|
|
4946
|
+
interface ItemLayoutItemOneOf {
|
|
4947
|
+
/**
|
|
4948
|
+
* ID of the form field to be positioned in the layout.
|
|
4949
|
+
* @format GUID
|
|
4950
|
+
*/
|
|
4951
|
+
fieldId?: string;
|
|
4952
|
+
/** Group configuration for positioning multiple fields as a single layout unit. */
|
|
4953
|
+
group?: Group;
|
|
4954
|
+
}
|
|
4955
|
+
interface Group {
|
|
4956
|
+
/**
|
|
4957
|
+
* ID of the field group.
|
|
4958
|
+
* @format GUID
|
|
4959
|
+
*/
|
|
4960
|
+
groupId?: string;
|
|
4961
|
+
/**
|
|
4962
|
+
* Layout configuration for individual items within this group.
|
|
4963
|
+
* @minSize 1
|
|
4964
|
+
* @maxSize 500
|
|
4965
|
+
*/
|
|
4966
|
+
items?: ItemLayout[];
|
|
4967
|
+
}
|
|
4968
|
+
interface Margin {
|
|
4969
|
+
/** Horizontal spacing in pixels. */
|
|
4970
|
+
horizontal?: number | null;
|
|
4971
|
+
/** Vertical spacing in pixels. */
|
|
4972
|
+
vertical?: number | null;
|
|
4973
|
+
}
|
|
4974
|
+
interface Section {
|
|
4975
|
+
/**
|
|
4976
|
+
* Section ID.
|
|
4977
|
+
* @format GUID
|
|
4978
|
+
* @minLength 1
|
|
4979
|
+
*/
|
|
4980
|
+
_id?: string;
|
|
4981
|
+
/** Row position where this section is placed in the grid. */
|
|
4982
|
+
row?: number | null;
|
|
4983
|
+
/**
|
|
4984
|
+
* A list of field IDs that can be placed within the section.
|
|
4985
|
+
* The section only accepts fields with IDs specified in this list.
|
|
4986
|
+
* If the `$new` key is contained in this list, the section allows the inclusion of fields not explicitly listed, enabling dynamic addition of new fields.
|
|
4987
|
+
* @maxSize 100
|
|
4988
|
+
* @maxLength 100
|
|
4989
|
+
*/
|
|
4990
|
+
allowedFieldIds?: string[];
|
|
4991
|
+
}
|
|
4863
4992
|
declare enum SchedulingComponentType {
|
|
4864
4993
|
/** Unknown component type. */
|
|
4865
4994
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
@@ -5197,6 +5326,22 @@ interface AddressComponentTypeOptionsOneOf {
|
|
|
5197
5326
|
/** Multiline address component settings. */
|
|
5198
5327
|
multilineAddressOptions?: MultilineAddress;
|
|
5199
5328
|
}
|
|
5329
|
+
interface ObjectArray extends ObjectArrayComponentTypeOptionsOneOf {
|
|
5330
|
+
/** Repeater component settings. */
|
|
5331
|
+
repeaterOptions?: Repeater;
|
|
5332
|
+
/**
|
|
5333
|
+
* Component type of the object array input.
|
|
5334
|
+
* @readonly
|
|
5335
|
+
*/
|
|
5336
|
+
componentType?: ObjectArrayComponentTypeWithLiterals;
|
|
5337
|
+
/** Validation configuration for the object array input. */
|
|
5338
|
+
validation?: ObjectArrayType;
|
|
5339
|
+
}
|
|
5340
|
+
/** @oneof */
|
|
5341
|
+
interface ObjectArrayComponentTypeOptionsOneOf {
|
|
5342
|
+
/** Repeater component settings. */
|
|
5343
|
+
repeaterOptions?: Repeater;
|
|
5344
|
+
}
|
|
5200
5345
|
interface FieldsDisplayField extends FieldsDisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
5201
5346
|
/** Configuration for rich content display fields. */
|
|
5202
5347
|
richContentOptions?: RichContentOptions;
|
|
@@ -5270,93 +5415,6 @@ interface Step {
|
|
|
5270
5415
|
/** Layout configuration that defines how form fields are arranged within this step. */
|
|
5271
5416
|
layout?: FormLayout;
|
|
5272
5417
|
}
|
|
5273
|
-
interface FormLayout {
|
|
5274
|
-
/** Layout configuration for large screen breakpoints (desktop). */
|
|
5275
|
-
large?: BreakPoint;
|
|
5276
|
-
/** Layout configuration for medium screen breakpoints (tablet). */
|
|
5277
|
-
medium?: BreakPoint;
|
|
5278
|
-
/** Layout configuration for small screen breakpoints (mobile). */
|
|
5279
|
-
small?: BreakPoint;
|
|
5280
|
-
}
|
|
5281
|
-
interface BreakPoint {
|
|
5282
|
-
/**
|
|
5283
|
-
* Configuration for the layout of items in the breakpoint.
|
|
5284
|
-
* @maxSize 500
|
|
5285
|
-
*/
|
|
5286
|
-
items?: ItemLayout[];
|
|
5287
|
-
/** Number of columns in the layout grid. */
|
|
5288
|
-
columns?: number | null;
|
|
5289
|
-
/** Height of each row in the layout grid, measured in pixels. */
|
|
5290
|
-
rowHeight?: number | null;
|
|
5291
|
-
/** Margin spacing configuration for the form elements. */
|
|
5292
|
-
margin?: Margin;
|
|
5293
|
-
/** Padding spacing inside form elements in pixels. */
|
|
5294
|
-
padding?: Margin;
|
|
5295
|
-
}
|
|
5296
|
-
interface ItemLayout extends ItemLayoutItemOneOf {
|
|
5297
|
-
/**
|
|
5298
|
-
* ID of the form field to be positioned in the layout.
|
|
5299
|
-
* @format GUID
|
|
5300
|
-
*/
|
|
5301
|
-
fieldId?: string;
|
|
5302
|
-
/** Group configuration for positioning multiple fields as a single layout unit. */
|
|
5303
|
-
group?: Group;
|
|
5304
|
-
/** Row position in the grid where this item is placed. */
|
|
5305
|
-
row?: number | null;
|
|
5306
|
-
/** Column position in the grid where this item is placed. */
|
|
5307
|
-
column?: number | null;
|
|
5308
|
-
/** Width of the item in grid units. */
|
|
5309
|
-
width?: number | null;
|
|
5310
|
-
/** Height of the item in grid units. */
|
|
5311
|
-
height?: number | null;
|
|
5312
|
-
}
|
|
5313
|
-
/** @oneof */
|
|
5314
|
-
interface ItemLayoutItemOneOf {
|
|
5315
|
-
/**
|
|
5316
|
-
* ID of the form field to be positioned in the layout.
|
|
5317
|
-
* @format GUID
|
|
5318
|
-
*/
|
|
5319
|
-
fieldId?: string;
|
|
5320
|
-
/** Group configuration for positioning multiple fields as a single layout unit. */
|
|
5321
|
-
group?: Group;
|
|
5322
|
-
}
|
|
5323
|
-
interface Group {
|
|
5324
|
-
/**
|
|
5325
|
-
* ID of the field group.
|
|
5326
|
-
* @format GUID
|
|
5327
|
-
*/
|
|
5328
|
-
groupId?: string;
|
|
5329
|
-
/**
|
|
5330
|
-
* Layout configuration for individual items within this group.
|
|
5331
|
-
* @minSize 1
|
|
5332
|
-
* @maxSize 500
|
|
5333
|
-
*/
|
|
5334
|
-
items?: ItemLayout[];
|
|
5335
|
-
}
|
|
5336
|
-
interface Margin {
|
|
5337
|
-
/** Horizontal spacing in pixels. */
|
|
5338
|
-
horizontal?: number | null;
|
|
5339
|
-
/** Vertical spacing in pixels. */
|
|
5340
|
-
vertical?: number | null;
|
|
5341
|
-
}
|
|
5342
|
-
interface Section {
|
|
5343
|
-
/**
|
|
5344
|
-
* Section ID.
|
|
5345
|
-
* @format GUID
|
|
5346
|
-
* @minLength 1
|
|
5347
|
-
*/
|
|
5348
|
-
_id?: string;
|
|
5349
|
-
/** Row position where this section is placed in the grid. */
|
|
5350
|
-
row?: number | null;
|
|
5351
|
-
/**
|
|
5352
|
-
* A list of field IDs that can be placed within the section.
|
|
5353
|
-
* The section only accepts fields with IDs specified in this list.
|
|
5354
|
-
* If the `$new` key is contained in this list, the section allows the inclusion of fields not explicitly listed, enabling dynamic addition of new fields.
|
|
5355
|
-
* @maxSize 100
|
|
5356
|
-
* @maxLength 100
|
|
5357
|
-
*/
|
|
5358
|
-
allowedFieldIds?: string[];
|
|
5359
|
-
}
|
|
5360
5418
|
interface FormRule {
|
|
5361
5419
|
/**
|
|
5362
5420
|
* Rule ID.
|
|
@@ -7920,4 +7978,4 @@ interface ValidateFormSubmissionOptions {
|
|
|
7920
7978
|
fieldsToValidate?: string[];
|
|
7921
7979
|
}
|
|
7922
7980
|
|
|
7923
|
-
export { ValidationFormat as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsOptions as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsResponse as H, type BulkUpdateFormSubmissionTagsByFilterOptions as I, type BulkUpdateFormSubmissionTagsByFilterResponse as J, type ValidateFormSubmissionResponse as K, type ListDeletedSubmissionsOptions as L, type SubmissionCreatedEnvelope as M, type SubmissionDeletedEnvelope as N, type SubmissionRemovedSubmissionFromTrashEnvelope as O, type SubmissionStatusUpdatedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionContactMappingSkippedEnvelope as W, type SubmissionUpdatedEnvelope as X, SubmissionStatus as Y, OptInLevel as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, ProductType as a0, PriceType as a1, InputFieldStringTypeFormatEnumFormat as a2, InputFieldStringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, ImagePosition as aF, Alignment as aG, ImageFit as aH, NumberOfColumns as aI, FirstDayOfWeek as aJ, InputFieldNumberComponentType as aK, InputFieldBooleanComponentType as aL, ArrayItemsItemType as aM, PropertiesTypePropertiesTypeEnum as aN, InputFieldArrayComponentType as aO, InputFieldWixFileComponentType as aP, UploadFileFormat as aQ, InputFieldPaymentComponentType as aR, InputFieldSchedulingComponentType as aS, Format as aT, MultilineAddressComponentType as aU, Type as aV, InputFieldInputType as aW, FormFieldContactInfoEmailInfoTag as aX, FormFieldContactInfoPhoneInfoTag as aY, AddressInfoTag as aZ, SubscriptionInfoOptInLevel as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type BooleanErrorMessages as b$, FormFieldV2FieldType as b0, DisplayFieldType as b1, FieldType as b2, FormatEnumFormat as b3, StringComponentType as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, Status as bA, SubmissionErrorType as bB, type Submitter as bC, type SubmitterSubmitterOneOf as bD, type ExtendedFields as bE, type OrderDetails as bF, type PublicTags as bG, type TagList as bH, type FormSubmissionStatusUpdatedEvent as bI, type RemovedSubmissionFromTrash as bJ, type SubmissionContactMapped as bK, type MarketingSubscriptionDetails as bL, type SubmissionContactMappingSkipped as bM, type CreateCheckoutFromSubmissionRequest as bN, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bO, type Form as bP, type FormField as bQ, type FormFieldStringType as bR, type FormFieldStringTypeFormatOptionsOneOf as bS, type StringErrorMessages as bT, type StringTypeDateTimeConstraints as bU, type StringTypePhoneConstraints as bV, type StringTypeValidationMessages as bW, type FormFieldNumberType as bX, type NumberErrorMessages as bY, type IntegerType as bZ, type FormFieldBooleanType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, SchedulingComponentType as bd, InputType as be, EmailInfoTag as bf, PhoneInfoTag as bg, Tag as bh, ConfirmationLevel as bi, ContactField as bj, DisplayFieldDisplayFieldType as bk, OverrideEntityType as bl, Kind as bm, SpamFilterProtectionLevel as bn, RequiredIndicator as bo, RequiredIndicatorPlacement as bp, Target as bq, SubmitSuccessAction as br, ChangeableProperty as bs, OverrideEntityTypeEnumOverrideEntityType as bt, Operator as bu, WebhookIdentityType as bv, IdentityType as bw, ErrorType as bx, SortOrder as by, Mode as bz, type CreateSubmissionValidationErrors as c, type Thumbnails as c$, type FormFieldArrayType as c0, type FormFieldObjectType as c1, type ObjectTypePropertiesType as c2, type ObjectTypePropertiesTypePropertiesTypeOneOf as c3, type ObjectErrorMessages as c4, type ArrayTypeArrayItems as c5, type ArrayTypeArrayItemsItemsOneOf as c6, type ArrayErrorMessages as c7, type PredefinedValidation as c8, type PredefinedValidationFormatOptionsOneOf as c9, type Border as cA, type Colors as cB, type PluginContainerData as cC, type PluginContainerDataWidth as cD, type PluginContainerDataWidthDataOneOf as cE, type Spoiler as cF, type Height as cG, type Styles as cH, type Link as cI, type LinkDataOneOf as cJ, type Rel as cK, type CodeBlockData as cL, type TextStyle as cM, type DividerData as cN, type FileData as cO, type FileSource as cP, type FileSourceDataOneOf as cQ, type PDFSettings as cR, type GalleryData as cS, type Media as cT, type Image as cU, type Video as cV, type Item as cW, type ItemDataOneOf as cX, type GalleryOptions as cY, type GalleryOptionsLayout as cZ, type ItemStyle as c_, type PaymentType as ca, type QuantityLimit as cb, type FixedPriceOptions as cc, type DynamicPriceOptions as cd, type Product as ce, type ProductPriceOptionsOneOf as cf, type MultilineAddressValidation as cg, type FieldOverrides as ch, type FieldsOverrides as ci, type NestedFormFieldOverrides as cj, type Validation as ck, type ValidationValidationOneOf as cl, type DataExtensionsDetails as cm, type NestedFormOverrides as cn, type FormFieldV2 as co, type FormFieldV2FieldTypeOptionsOneOf as cp, type InputFieldStringType as cq, type InputFieldStringTypeFormatOptionsOneOf as cr, type InputFieldStringTypeDateTimeConstraints as cs, type InputFieldStringTypePhoneConstraints as ct, type TextInput as cu, type RichContent as cv, type Node as cw, type NodeDataOneOf as cx, type NodeStyle as cy, type ButtonData as cz, type UpdateSubmission as d, type Metadata as d$, type GIFData as d0, type GIF as d1, type HeadingData as d2, type HTMLData as d3, type HTMLDataDataOneOf as d4, type ImageData as d5, type StylesBorder as d6, type ImageDataStyles as d7, type LinkPreviewData as d8, type LinkPreviewDataStyles as d9, type SpoilerData as dA, type AppEmbedData as dB, type AppEmbedDataAppDataOneOf as dC, type BookingData as dD, type EventData as dE, type ButtonStyles as dF, type ImageStyles as dG, type RibbonStyles as dH, type CardStyles as dI, type PricingData as dJ, type VideoData as dK, type PlaybackOptions as dL, type EmbedData as dM, type Oembed as dN, type CollapsibleListData as dO, type TableData as dP, type Dimensions as dQ, type TableCellData as dR, type CellStyle as dS, type BorderColors as dT, type ListValue as dU, type AudioData as dV, type OrderedListData as dW, type BulletedListData as dX, type BlockquoteData as dY, type CaptionData as dZ, type LayoutCellData as d_, type MapData as da, type MapSettings as db, type ParagraphData as dc, type PollData as dd, type Permissions as de, type PollOption as df, type Settings as dg, type PollLayout as dh, type OptionLayout as di, type Gradient as dj, type Background as dk, type BackgroundBackgroundOneOf as dl, type PollDesign as dm, type OptionDesign as dn, type Poll as dp, type PollDataLayout as dq, type Design as dr, type TextData as ds, type Decoration as dt, type DecorationDataOneOf as du, type AnchorData as dv, type ColorData as dw, type LinkData as dx, type MentionData as dy, type FontSizeData as dz, type UpdateSubmissionValidationErrors as e, type InputField_StringComponentTypeOptionsOneOf as e$, type DocumentStyle as e0, type TextNodeStyle as e1, type MediaItem as e2, type MediaItemMediaOneOf as e3, type MediaSettings as e4, type RadioGroup as e5, type RadioGroupOption as e6, type CustomOption as e7, type Dropdown as e8, type DropdownOption as e9, type Signature as eA, type ProductCheckboxGroup as eB, type ProductCheckboxGroupOption as eC, type DonationInput as eD, type DonationInputOption as eE, type PaymentInput as eF, type FixedPayment as eG, type Appointment as eH, type AppointmentFormatInfoOneOf as eI, type Location as eJ, type LocationLocationInfoOneOf as eK, type InPersonOptions as eL, type VideoConferenceOptions as eM, type PhoneOptions as eN, type MultilineAddress as eO, type AddressLine2 as eP, type DefaultCountryConfig as eQ, type DefaultCountryConfigOptionsOneOf as eR, type FieldsSettings as eS, type V4FormFieldContactInfo as eT, type V4FormFieldContactInfoAdditionalInfoOneOf as eU, type FormFieldContactInfoEmailInfo as eV, type FormFieldContactInfoPhoneInfo as eW, type FormFieldContactInfoAddressInfo as eX, type FormFieldContactInfoCustomFieldInfo as eY, type FormFieldContactInfoSubscriptionInfo as eZ, type InputField_String as e_, type DateTimeInput as ea, type PhoneInput as eb, type DateInput as ec, type TimeInput as ed, type DatePicker as ee, type ServicesDropdown as ef, type ServiceOption as eg, type InputFieldNumberType as eh, type NumberInput as ei, type RatingInput as ej, type InputFieldBooleanType as ek, type Checkbox as el, type InputFieldArrayType as em, type InputFieldIntegerType as en, type InputFieldObjectType as eo, type InputFieldObjectTypePropertiesType as ep, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as eq, type InputFieldArrayTypeArrayItems as er, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as es, type CheckboxGroup as et, type Option as eu, type Tags as ev, type TagsOption as ew, type ServicesCheckboxGroup as ex, type FileType as ey, type FileUpload as ez, type ConfirmSubmissionResponse as f, type FieldsDisplayField as f$, type InputField_Number as f0, type InputField_NumberComponentTypeOptionsOneOf as f1, type InputField_Boolean as f2, type InputField_BooleanComponentTypeOptionsOneOf as f3, type InputField_Array as f4, type InputField_ArrayComponentTypeOptionsOneOf as f5, type InputField_Object as f6, type InputField_ObjectValidationOneOf as f7, type InputFieldWixFile as f8, type InputFieldWixFileComponentTypeOptionsOneOf as f9, type PropertiesTypePropertiesTypeOptionsOneOf as fA, type ArrayItems as fB, type ArrayItemsItemTypeOptionsOneOf as fC, type FormFieldContactInfo as fD, type FormFieldContactInfoAdditionalInfoOneOf as fE, type EmailInfo as fF, type PhoneInfo as fG, type AddressInfo as fH, type CustomFieldInfo as fI, type SubscriptionInfo as fJ, type _String as fK, type _StringComponentTypeOptionsOneOf as fL, type _Number as fM, type _NumberComponentTypeOptionsOneOf as fN, type _Boolean as fO, type _BooleanComponentTypeOptionsOneOf as fP, type _Array as fQ, type _ArrayComponentTypeOptionsOneOf as fR, type _Object as fS, type WixFile as fT, type WixFileComponentTypeOptionsOneOf as fU, type Payment as fV, type PaymentComponentTypeOptionsOneOf as fW, type Scheduling as fX, type SchedulingComponentTypeOptionsOneOf as fY, type Address as fZ, type AddressComponentTypeOptionsOneOf as f_, type InputFieldPayment as fa, type InputFieldPaymentComponentTypeOptionsOneOf as fb, type InputFieldMultilineAddress as fc, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fd, type InputFieldScheduling as fe, type InputFieldSchedulingComponentTypeOptionsOneOf as ff, type FormFieldV2InputField as fg, type FormFieldV2InputFieldInputTypeOptionsOneOf as fh, type DisplayField as fi, type DisplayFieldDisplayFieldTypeOptionsOneOf as fj, type V4RichContentOptions as fk, type V4PageNavigationOptions as fl, type Field as fm, type FieldFieldTypeOptionsOneOf as fn, type InputField as fo, type InputFieldInputTypeOptionsOneOf as fp, type StringType as fq, type StringTypeFormatOptionsOneOf as fr, type DateTimeConstraints as fs, type PhoneConstraints as ft, type ValidationMessages as fu, type NumberType as fv, type BooleanType as fw, type ArrayType as fx, type ObjectType as fy, type PropertiesType as fz, type BulkDeleteSubmissionResponse as g, type BulkCreateSubmissionBySubmitterData as g$, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as g0, type RichContentOptions as g1, type PageNavigationOptions as g2, type Step as g3, type FormLayout as g4, type BreakPoint as g5, type ItemLayout as g6, type ItemLayoutItemOneOf as g7, type Group as g8, type Margin as g9, type RuleFormOverrideEntityTypeOptionsOneOf as gA, type CreateCheckoutFromSubmissionResponse as gB, type Checkout as gC, type IsFormSubmittableRequest as gD, type IsFormSubmittableResponse as gE, type DomainEvent as gF, type DomainEventBodyOneOf as gG, type EntityCreatedEvent as gH, type RestoreInfo as gI, type EntityUpdatedEvent as gJ, type EntityDeletedEvent as gK, type ActionEvent as gL, type Empty as gM, type MessageEnvelope as gN, type IdentificationData as gO, type IdentificationDataIdOneOf as gP, type UpsertContactFromSubmissionRequest as gQ, type SubmitContactResponse as gR, type CreateSubmissionRequest as gS, type CreateSubmissionResponse as gT, type SubmissionValidationErrorsDetails as gU, type ValidationError as gV, type CreateSubmissionForMigrationRequest as gW, type CreateSubmissionForMigrationResponse as gX, type CreateSubmissionBySubmitterRequest as gY, type CreateSubmissionBySubmitterResponse as gZ, type BulkCreateSubmissionBySubmitterRequest as g_, type Section as ga, type FormRule as gb, type FormOverride as gc, type FormProperties as gd, type PostSubmissionTriggers as ge, type UpsertContact as gf, type NestedForm as gg, type LimitationRule as gh, type RequiredIndicatorProperties as gi, type SubmitSettings as gj, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gk, type ThankYouMessageOptions as gl, type RedirectOptions as gm, type FieldGroup as gn, type Rule as go, type RequiredOptions as gp, type HiddenOptions as gq, type AllowedValuesOptions as gr, type FieldOverride as gs, type FieldOverridePropertyTypeOptionsOneOf as gt, type ConditionNode as gu, type ConditionNodeNodeOneOf as gv, type AndCondition as gw, type OrCondition as gx, type Condition as gy, type RuleFormOverride as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type FieldViolation as h$, type BulkCreateSubmissionBySubmitterResponse as h0, type BulkSubmissionResult as h1, type ItemMetadata as h2, type ApplicationError as h3, type BulkActionMetadata as h4, type GetSubmissionRequest as h5, type GetSubmissionResponse as h6, type GetSubmissionByCheckoutIdRequest as h7, type GetSubmissionByCheckoutIdResponse as h8, type UpdateSubmissionRequest as h9, type QuerySubmissionsByNamespaceResponse as hA, type QuerySubmissionsByNamespaceForExportRequest as hB, type QuerySubmissionsByNamespaceForExportResponse as hC, type CountSubmissionsByFilterRequest as hD, type FormSubmissionsCount as hE, type CountSubmissionsRequest as hF, type CountDeletedSubmissionsRequest as hG, type FormDeletedSubmissionsCount as hH, type GetMediaUploadURLRequest as hI, type BulkMarkSubmissionsAsSeenRequest as hJ, type BulkMarkSubmissionsAsSeenResponse as hK, type GetSubmissionDownloadUrlRequest as hL, type SubmissionDocument as hM, type SubmissionDocumentDocumentOneOf as hN, type DocumentReady as hO, type DownloadSubmissionRequest as hP, type HeadersEntry as hQ, type GetFormattedSubmissionRequest as hR, type FormattedSubmission as hS, type ListFormattedSubmissionsRequest as hT, type ListFormattedSubmissionsResponse as hU, type FormattedFormSubmission as hV, type UpdateExtendedFieldsRequest as hW, type BulkUpdateFormSubmissionTagsRequest as hX, type BulkUpdateFormSubmissionTagsResult as hY, type BulkUpdateFormSubmissionTagsByFilterRequest as hZ, type ValidateFormSubmissionRequest as h_, type UpdateSubmissionResponse as ha, type ConfirmSubmissionRequest as hb, type DeleteSubmissionRequest as hc, type DeleteSubmissionResponse as hd, type BulkDeleteSubmissionRequest as he, type BulkDeleteSubmissionResult as hf, type RestoreSubmissionFromTrashBinRequest as hg, type RemoveSubmissionFromTrashBinRequest as hh, type RemoveSubmissionFromTrashBinResponse as hi, type BulkRemoveSubmissionFromTrashBinRequest as hj, type BulkRemoveSubmissionFromTrashBinResult as hk, type ListDeletedSubmissionsRequest as hl, type CursorPaging as hm, type CursorPagingMetadata as hn, type Cursors as ho, type GetDeletedSubmissionRequest as hp, type QuerySubmissionRequest as hq, type CursorQueryPagingMethodOneOf as hr, type Sorting as hs, type SearchSubmissionsByNamespaceRequest as ht, type CursorSearch as hu, type CursorSearchPagingMethodOneOf as hv, type SearchDetails as hw, type SearchSubmissionsByNamespaceForExportRequest as hx, type SearchSubmissionsByNamespaceForExportResponse as hy, type QuerySubmissionsByNamespaceRequest as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type PropertiesTypePropertiesTypeEnumWithLiterals as i$, type FieldViolationErrorDataOneOf as i0, type SubmissionValidationErrors as i1, type SubmissionValidationError as i2, type SubmissionValidationErrorErrorMessageOneOf as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type FormSubmissionSearchSpec as i6, type SubmissionsQueryResult as i7, type SubmissionStatusWithLiterals as i8, type OptInLevelWithLiterals as i9, type ViewRoleWithLiterals as iA, type VoteRoleWithLiterals as iB, type PollLayoutTypeWithLiterals as iC, type PollLayoutDirectionWithLiterals as iD, type BackgroundTypeWithLiterals as iE, type DecorationTypeWithLiterals as iF, type FontTypeWithLiterals as iG, type PositionWithLiterals as iH, type AspectRatioWithLiterals as iI, type ResizingWithLiterals as iJ, type PlacementWithLiterals as iK, type CardStylesTypeWithLiterals as iL, type CardStylesAlignmentWithLiterals as iM, type LayoutWithLiterals as iN, type AppTypeWithLiterals as iO, type InitialExpandedItemsWithLiterals as iP, type DirectionWithLiterals as iQ, type VerticalAlignmentWithLiterals as iR, type NullValueWithLiterals as iS, type ImagePositionWithLiterals as iT, type AlignmentWithLiterals as iU, type ImageFitWithLiterals as iV, type NumberOfColumnsWithLiterals as iW, type FirstDayOfWeekWithLiterals as iX, type InputFieldNumberComponentTypeWithLiterals as iY, type InputFieldBooleanComponentTypeWithLiterals as iZ, type ArrayItemsItemTypeWithLiterals as i_, type StringTypeFormatEnumFormatWithLiterals as ia, type ValidationFormatWithLiterals as ib, type ProductTypeWithLiterals as ic, type PriceTypeWithLiterals as id, type InputFieldStringTypeFormatEnumFormatWithLiterals as ie, type InputFieldStringComponentTypeWithLiterals as ig, type NodeTypeWithLiterals as ih, type WidthTypeWithLiterals as ii, type PluginContainerDataAlignmentWithLiterals as ij, type ButtonDataTypeWithLiterals as ik, type LinkTargetWithLiterals as il, type TextAlignmentWithLiterals as im, type LineStyleWithLiterals as io, type WidthWithLiterals as ip, type DividerDataAlignmentWithLiterals as iq, type ViewModeWithLiterals as ir, type LayoutTypeWithLiterals as is, type OrientationWithLiterals as it, type CropWithLiterals as iu, type ThumbnailsAlignmentWithLiterals as iv, type GIFTypeWithLiterals as iw, type SourceWithLiterals as ix, type StylesPositionWithLiterals as iy, type MapTypeWithLiterals as iz, type ListDeletedSubmissionsResponse as j, updateSubmission as j$, type InputFieldArrayComponentTypeWithLiterals as j0, type InputFieldWixFileComponentTypeWithLiterals as j1, type UploadFileFormatWithLiterals as j2, type InputFieldPaymentComponentTypeWithLiterals as j3, type InputFieldSchedulingComponentTypeWithLiterals as j4, type FormatWithLiterals as j5, type MultilineAddressComponentTypeWithLiterals as j6, type TypeWithLiterals as j7, type InputFieldInputTypeWithLiterals as j8, type FormFieldContactInfoEmailInfoTagWithLiterals as j9, type KindWithLiterals as jA, type SpamFilterProtectionLevelWithLiterals as jB, type RequiredIndicatorWithLiterals as jC, type RequiredIndicatorPlacementWithLiterals as jD, type TargetWithLiterals as jE, type SubmitSuccessActionWithLiterals as jF, type ChangeablePropertyWithLiterals as jG, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jH, type OperatorWithLiterals as jI, type WebhookIdentityTypeWithLiterals as jJ, type IdentityTypeWithLiterals as jK, type ErrorTypeWithLiterals as jL, type SortOrderWithLiterals as jM, type ModeWithLiterals as jN, type StatusWithLiterals as jO, type SubmissionErrorTypeWithLiterals as jP, type CommonSearchWithEntityContext as jQ, onSubmissionCreated as jR, onSubmissionDeleted as jS, onSubmissionRemovedSubmissionFromTrash as jT, onSubmissionStatusUpdated as jU, onSubmissionContactMapped as jV, onSubmissionContactMappingSkipped as jW, onSubmissionUpdated as jX, upsertContactFromSubmission as jY, createSubmission as jZ, getSubmission as j_, type FormFieldContactInfoPhoneInfoTagWithLiterals as ja, type AddressInfoTagWithLiterals as jb, type SubscriptionInfoOptInLevelWithLiterals as jc, type FormFieldContactInfoContactFieldWithLiterals as jd, type FormFieldV2FieldTypeWithLiterals as je, type DisplayFieldTypeWithLiterals as jf, type FieldTypeWithLiterals as jg, type FormatEnumFormatWithLiterals as jh, type StringComponentTypeWithLiterals as ji, type NumberComponentTypeWithLiterals as jj, type BooleanComponentTypeWithLiterals as jk, type ItemTypeWithLiterals as jl, type PropertiesTypeEnumWithLiterals as jm, type ArrayComponentTypeWithLiterals as jn, type WixFileComponentTypeWithLiterals as jo, type PaymentComponentTypeWithLiterals as jp, type ComponentTypeWithLiterals as jq, type SchedulingComponentTypeWithLiterals as jr, type InputTypeWithLiterals as js, type EmailInfoTagWithLiterals as jt, type PhoneInfoTagWithLiterals as ju, type TagWithLiterals as jv, type ConfirmationLevelWithLiterals as jw, type ContactFieldWithLiterals as jx, type DisplayFieldDisplayFieldTypeWithLiterals as jy, type OverrideEntityTypeWithLiterals as jz, type CursorQuery as k, confirmSubmission as k0, deleteSubmission as k1, bulkDeleteSubmission as k2, restoreSubmissionFromTrashBin as k3, removeSubmissionFromTrashBin as k4, bulkRemoveSubmissionFromTrashBin as k5, listDeletedSubmissions as k6, getDeletedSubmission as k7, querySubmission as k8, querySubmissionsByNamespace as k9, countSubmissionsByFilter as ka, countSubmissions as kb, countDeletedSubmissions as kc, getMediaUploadUrl as kd, bulkMarkSubmissionsAsSeen as ke, getSubmissionDownloadUrl as kf, downloadSubmission as kg, getFormattedSubmission as kh, updateExtendedFields as ki, bulkUpdateFormSubmissionTags as kj, bulkUpdateFormSubmissionTagsByFilter as kk, validateFormSubmission as kl, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
|
|
7981
|
+
export { ValidationFormat as $, type UpdateExtendedFieldsResponse as A, type BulkDeleteSubmissionOptions as B, type CreateSubmissionOptions as C, type DeleteSubmissionOptions as D, type BulkUpdateFormSubmissionTagsOptions as E, type FormSubmission as F, type GetDeletedSubmissionResponse as G, type BulkUpdateFormSubmissionTagsResponse as H, type BulkUpdateFormSubmissionTagsByFilterOptions as I, type BulkUpdateFormSubmissionTagsByFilterResponse as J, type ValidateFormSubmissionResponse as K, type ListDeletedSubmissionsOptions as L, type SubmissionCreatedEnvelope as M, type SubmissionDeletedEnvelope as N, type SubmissionRemovedSubmissionFromTrashEnvelope as O, type SubmissionStatusUpdatedEnvelope as P, type QuerySubmissionOptions as Q, type RestoreSubmissionFromTrashBinResponse as R, type SearchSubmissionsByNamespaceResponse as S, type SubmissionContactMappedEnvelope as T, type UpsertContactFromSubmissionOptions as U, type ValidateFormSubmissionOptions as V, type SubmissionContactMappingSkippedEnvelope as W, type SubmissionUpdatedEnvelope as X, SubmissionStatus as Y, OptInLevel as Z, StringTypeFormatEnumFormat as _, type UpsertContactFromSubmissionResponse as a, FormFieldContactInfoContactField as a$, ProductType as a0, PriceType as a1, InputFieldStringTypeFormatEnumFormat as a2, InputFieldStringComponentType as a3, NodeType as a4, WidthType as a5, PluginContainerDataAlignment as a6, ButtonDataType as a7, LinkTarget as a8, TextAlignment as a9, AppType as aA, InitialExpandedItems as aB, Direction as aC, VerticalAlignment as aD, NullValue as aE, ImagePosition as aF, Alignment as aG, ImageFit as aH, NumberOfColumns as aI, FirstDayOfWeek as aJ, InputFieldNumberComponentType as aK, InputFieldBooleanComponentType as aL, ArrayItemsItemType as aM, PropertiesTypePropertiesTypeEnum as aN, InputFieldArrayComponentType as aO, InputFieldWixFileComponentType as aP, UploadFileFormat as aQ, InputFieldPaymentComponentType as aR, InputFieldSchedulingComponentType as aS, Format as aT, MultilineAddressComponentType as aU, Type as aV, InputFieldInputType as aW, FormFieldContactInfoEmailInfoTag as aX, FormFieldContactInfoPhoneInfoTag as aY, AddressInfoTag as aZ, SubscriptionInfoOptInLevel as a_, LineStyle as aa, Width as ab, DividerDataAlignment as ac, ViewMode as ad, LayoutType as ae, Orientation as af, Crop as ag, ThumbnailsAlignment as ah, GIFType as ai, Source as aj, StylesPosition as ak, MapType as al, ViewRole as am, VoteRole as an, PollLayoutType as ao, PollLayoutDirection as ap, BackgroundType as aq, DecorationType as ar, FontType as as, Position as at, AspectRatio as au, Resizing as av, Placement as aw, CardStylesType as ax, CardStylesAlignment as ay, Layout as az, type CreateSubmissionApplicationErrors as b, type FormFieldBooleanType as b$, FormFieldV2FieldType as b0, DisplayFieldType as b1, FieldType as b2, FormatEnumFormat as b3, StringComponentType as b4, NumberComponentType as b5, BooleanComponentType as b6, ItemType as b7, PropertiesTypeEnum as b8, ArrayComponentType as b9, Mode as bA, Status as bB, SubmissionErrorType as bC, type Submitter as bD, type SubmitterSubmitterOneOf as bE, type ExtendedFields as bF, type OrderDetails as bG, type PublicTags as bH, type TagList as bI, type FormSubmissionStatusUpdatedEvent as bJ, type RemovedSubmissionFromTrash as bK, type SubmissionContactMapped as bL, type MarketingSubscriptionDetails as bM, type SubmissionContactMappingSkipped as bN, type CreateCheckoutFromSubmissionRequest as bO, type CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as bP, type Form as bQ, type FormField as bR, type FormFieldStringType as bS, type FormFieldStringTypeFormatOptionsOneOf as bT, type StringErrorMessages as bU, type StringTypeDateTimeConstraints as bV, type StringTypePhoneConstraints as bW, type StringTypeValidationMessages as bX, type FormFieldNumberType as bY, type NumberErrorMessages as bZ, type IntegerType as b_, WixFileComponentType as ba, PaymentComponentType as bb, ComponentType as bc, ObjectArrayComponentType as bd, SchedulingComponentType as be, InputType as bf, EmailInfoTag as bg, PhoneInfoTag as bh, Tag as bi, ConfirmationLevel as bj, ContactField as bk, DisplayFieldDisplayFieldType as bl, OverrideEntityType as bm, Kind as bn, SpamFilterProtectionLevel as bo, RequiredIndicator as bp, RequiredIndicatorPlacement as bq, Target as br, SubmitSuccessAction as bs, ChangeableProperty as bt, OverrideEntityTypeEnumOverrideEntityType as bu, Operator as bv, WebhookIdentityType as bw, IdentityType as bx, ErrorType as by, SortOrder as bz, type CreateSubmissionValidationErrors as c, type ItemStyle as c$, type BooleanErrorMessages as c0, type FormFieldArrayType as c1, type FormFieldObjectType as c2, type ObjectTypePropertiesType as c3, type ObjectTypePropertiesTypePropertiesTypeOneOf as c4, type ObjectErrorMessages as c5, type ArrayTypeArrayItems as c6, type ArrayTypeArrayItemsItemsOneOf as c7, type ArrayErrorMessages as c8, type PredefinedValidation as c9, type ButtonData as cA, type Border as cB, type Colors as cC, type PluginContainerData as cD, type PluginContainerDataWidth as cE, type PluginContainerDataWidthDataOneOf as cF, type Spoiler as cG, type Height as cH, type Styles as cI, type Link as cJ, type LinkDataOneOf as cK, type Rel as cL, type CodeBlockData as cM, type TextStyle as cN, type DividerData as cO, type FileData as cP, type FileSource as cQ, type FileSourceDataOneOf as cR, type PDFSettings as cS, type GalleryData as cT, type Media as cU, type Image as cV, type Video as cW, type Item as cX, type ItemDataOneOf as cY, type GalleryOptions as cZ, type GalleryOptionsLayout as c_, type PredefinedValidationFormatOptionsOneOf as ca, type PaymentType as cb, type QuantityLimit as cc, type FixedPriceOptions as cd, type DynamicPriceOptions as ce, type Product as cf, type ProductPriceOptionsOneOf as cg, type MultilineAddressValidation as ch, type FieldOverrides as ci, type FieldsOverrides as cj, type NestedFormFieldOverrides as ck, type Validation as cl, type ValidationValidationOneOf as cm, type DataExtensionsDetails as cn, type NestedFormOverrides as co, type FormFieldV2 as cp, type FormFieldV2FieldTypeOptionsOneOf as cq, type InputFieldStringType as cr, type InputFieldStringTypeFormatOptionsOneOf as cs, type InputFieldStringTypeDateTimeConstraints as ct, type InputFieldStringTypePhoneConstraints as cu, type TextInput as cv, type RichContent as cw, type Node as cx, type NodeDataOneOf as cy, type NodeStyle as cz, type UpdateSubmission as d, type LayoutCellData as d$, type Thumbnails as d0, type GIFData as d1, type GIF as d2, type HeadingData as d3, type HTMLData as d4, type HTMLDataDataOneOf as d5, type ImageData as d6, type StylesBorder as d7, type ImageDataStyles as d8, type LinkPreviewData as d9, type FontSizeData as dA, type SpoilerData as dB, type AppEmbedData as dC, type AppEmbedDataAppDataOneOf as dD, type BookingData as dE, type EventData as dF, type ButtonStyles as dG, type ImageStyles as dH, type RibbonStyles as dI, type CardStyles as dJ, type PricingData as dK, type VideoData as dL, type PlaybackOptions as dM, type EmbedData as dN, type Oembed as dO, type CollapsibleListData as dP, type TableData as dQ, type Dimensions as dR, type TableCellData as dS, type CellStyle as dT, type BorderColors as dU, type ListValue as dV, type AudioData as dW, type OrderedListData as dX, type BulletedListData as dY, type BlockquoteData as dZ, type CaptionData as d_, type LinkPreviewDataStyles as da, type MapData as db, type MapSettings as dc, type ParagraphData as dd, type PollData as de, type Permissions as df, type PollOption as dg, type Settings as dh, type PollLayout as di, type OptionLayout as dj, type Gradient as dk, type Background as dl, type BackgroundBackgroundOneOf as dm, type PollDesign as dn, type OptionDesign as dp, type Poll as dq, type PollDataLayout as dr, type Design as ds, type TextData as dt, type Decoration as du, type DecorationDataOneOf as dv, type AnchorData as dw, type ColorData as dx, type LinkData as dy, type MentionData as dz, type UpdateSubmissionValidationErrors as e, type InputField_String as e$, type Metadata as e0, type DocumentStyle as e1, type TextNodeStyle as e2, type MediaItem as e3, type MediaItemMediaOneOf as e4, type MediaSettings as e5, type RadioGroup as e6, type RadioGroupOption as e7, type CustomOption as e8, type Dropdown as e9, type FileUpload as eA, type Signature as eB, type ProductCheckboxGroup as eC, type ProductCheckboxGroupOption as eD, type DonationInput as eE, type DonationInputOption as eF, type PaymentInput as eG, type FixedPayment as eH, type Appointment as eI, type AppointmentFormatInfoOneOf as eJ, type Location as eK, type LocationLocationInfoOneOf as eL, type InPersonOptions as eM, type VideoConferenceOptions as eN, type PhoneOptions as eO, type MultilineAddress as eP, type AddressLine2 as eQ, type DefaultCountryConfig as eR, type DefaultCountryConfigOptionsOneOf as eS, type FieldsSettings as eT, type V4FormFieldContactInfo as eU, type V4FormFieldContactInfoAdditionalInfoOneOf as eV, type FormFieldContactInfoEmailInfo as eW, type FormFieldContactInfoPhoneInfo as eX, type FormFieldContactInfoAddressInfo as eY, type FormFieldContactInfoCustomFieldInfo as eZ, type FormFieldContactInfoSubscriptionInfo as e_, type DropdownOption as ea, type DateTimeInput as eb, type PhoneInput as ec, type DateInput as ed, type TimeInput as ee, type DatePicker as ef, type ServicesDropdown as eg, type ServiceOption as eh, type InputFieldNumberType as ei, type NumberInput as ej, type RatingInput as ek, type InputFieldBooleanType as el, type Checkbox as em, type InputFieldArrayType as en, type InputFieldIntegerType as eo, type InputFieldObjectType as ep, type InputFieldObjectTypePropertiesType as eq, type InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf as er, type InputFieldArrayTypeArrayItems as es, type InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf as et, type CheckboxGroup as eu, type Option as ev, type Tags as ew, type TagsOption as ex, type ServicesCheckboxGroup as ey, type FileType as ez, type ConfirmSubmissionResponse as f, type _ArrayComponentTypeOptionsOneOf as f$, type InputField_StringComponentTypeOptionsOneOf as f0, type InputField_Number as f1, type InputField_NumberComponentTypeOptionsOneOf as f2, type InputField_Boolean as f3, type InputField_BooleanComponentTypeOptionsOneOf as f4, type InputField_Array as f5, type InputField_ArrayComponentTypeOptionsOneOf as f6, type InputField_Object as f7, type InputField_ObjectValidationOneOf as f8, type InputFieldWixFile as f9, type PropertiesType as fA, type PropertiesTypePropertiesTypeOptionsOneOf as fB, type ArrayItems as fC, type ArrayItemsItemTypeOptionsOneOf as fD, type ObjectArrayType as fE, type Repeater as fF, type FormLayout as fG, type BreakPoint as fH, type ItemLayout as fI, type ItemLayoutItemOneOf as fJ, type Group as fK, type Margin as fL, type Section as fM, type FormFieldContactInfo as fN, type FormFieldContactInfoAdditionalInfoOneOf as fO, type EmailInfo as fP, type PhoneInfo as fQ, type AddressInfo as fR, type CustomFieldInfo as fS, type SubscriptionInfo as fT, type _String as fU, type _StringComponentTypeOptionsOneOf as fV, type _Number as fW, type _NumberComponentTypeOptionsOneOf as fX, type _Boolean as fY, type _BooleanComponentTypeOptionsOneOf as fZ, type _Array as f_, type InputFieldWixFileComponentTypeOptionsOneOf as fa, type InputFieldPayment as fb, type InputFieldPaymentComponentTypeOptionsOneOf as fc, type InputFieldMultilineAddress as fd, type InputFieldMultilineAddressComponentTypeOptionsOneOf as fe, type InputFieldScheduling as ff, type InputFieldSchedulingComponentTypeOptionsOneOf as fg, type FormFieldV2InputField as fh, type FormFieldV2InputFieldInputTypeOptionsOneOf as fi, type DisplayField as fj, type DisplayFieldDisplayFieldTypeOptionsOneOf as fk, type V4RichContentOptions as fl, type V4PageNavigationOptions as fm, type Field as fn, type FieldFieldTypeOptionsOneOf as fo, type InputField as fp, type InputFieldInputTypeOptionsOneOf as fq, type StringType as fr, type StringTypeFormatOptionsOneOf as fs, type DateTimeConstraints as ft, type PhoneConstraints as fu, type ValidationMessages as fv, type NumberType as fw, type BooleanType as fx, type ArrayType as fy, type ObjectType as fz, type BulkDeleteSubmissionResponse as g, type CreateSubmissionForMigrationRequest as g$, type _Object as g0, type WixFile as g1, type WixFileComponentTypeOptionsOneOf as g2, type Payment as g3, type PaymentComponentTypeOptionsOneOf as g4, type Scheduling as g5, type SchedulingComponentTypeOptionsOneOf as g6, type Address as g7, type AddressComponentTypeOptionsOneOf as g8, type ObjectArray as g9, type ConditionNodeNodeOneOf as gA, type AndCondition as gB, type OrCondition as gC, type Condition as gD, type RuleFormOverride as gE, type RuleFormOverrideEntityTypeOptionsOneOf as gF, type CreateCheckoutFromSubmissionResponse as gG, type Checkout as gH, type IsFormSubmittableRequest as gI, type IsFormSubmittableResponse as gJ, type DomainEvent as gK, type DomainEventBodyOneOf as gL, type EntityCreatedEvent as gM, type RestoreInfo as gN, type EntityUpdatedEvent as gO, type EntityDeletedEvent as gP, type ActionEvent as gQ, type Empty as gR, type MessageEnvelope as gS, type IdentificationData as gT, type IdentificationDataIdOneOf as gU, type UpsertContactFromSubmissionRequest as gV, type SubmitContactResponse as gW, type CreateSubmissionRequest as gX, type CreateSubmissionResponse as gY, type SubmissionValidationErrorsDetails as gZ, type ValidationError as g_, type ObjectArrayComponentTypeOptionsOneOf as ga, type FieldsDisplayField as gb, type FieldsDisplayFieldDisplayFieldTypeOptionsOneOf as gc, type RichContentOptions as gd, type PageNavigationOptions as ge, type Step as gf, type FormRule as gg, type FormOverride as gh, type FormProperties as gi, type PostSubmissionTriggers as gj, type UpsertContact as gk, type NestedForm as gl, type LimitationRule as gm, type RequiredIndicatorProperties as gn, type SubmitSettings as go, type SubmitSettingsSubmitSuccessActionOptionsOneOf as gp, type ThankYouMessageOptions as gq, type RedirectOptions as gr, type FieldGroup as gs, type Rule as gt, type RequiredOptions as gu, type HiddenOptions as gv, type AllowedValuesOptions as gw, type FieldOverride as gx, type FieldOverridePropertyTypeOptionsOneOf as gy, type ConditionNode as gz, type BulkRemoveSubmissionFromTrashBinOptions as h, type UpdateExtendedFieldsRequest as h$, type CreateSubmissionForMigrationResponse as h0, type CreateSubmissionBySubmitterRequest as h1, type CreateSubmissionBySubmitterResponse as h2, type BulkCreateSubmissionBySubmitterRequest as h3, type BulkCreateSubmissionBySubmitterData as h4, type BulkCreateSubmissionBySubmitterResponse as h5, type BulkSubmissionResult as h6, type ItemMetadata as h7, type ApplicationError as h8, type BulkActionMetadata as h9, type CursorSearchPagingMethodOneOf as hA, type SearchDetails as hB, type SearchSubmissionsByNamespaceForExportRequest as hC, type SearchSubmissionsByNamespaceForExportResponse as hD, type QuerySubmissionsByNamespaceRequest as hE, type QuerySubmissionsByNamespaceResponse as hF, type QuerySubmissionsByNamespaceForExportRequest as hG, type QuerySubmissionsByNamespaceForExportResponse as hH, type CountSubmissionsByFilterRequest as hI, type FormSubmissionsCount as hJ, type CountSubmissionsRequest as hK, type CountDeletedSubmissionsRequest as hL, type FormDeletedSubmissionsCount as hM, type GetMediaUploadURLRequest as hN, type BulkMarkSubmissionsAsSeenRequest as hO, type BulkMarkSubmissionsAsSeenResponse 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 GetSubmissionRequest as ha, type GetSubmissionResponse as hb, type GetSubmissionByCheckoutIdRequest as hc, type GetSubmissionByCheckoutIdResponse as hd, type UpdateSubmissionRequest as he, type UpdateSubmissionResponse as hf, type ConfirmSubmissionRequest as hg, type DeleteSubmissionRequest as hh, type DeleteSubmissionResponse as hi, type BulkDeleteSubmissionRequest as hj, type BulkDeleteSubmissionResult as hk, type RestoreSubmissionFromTrashBinRequest as hl, type RemoveSubmissionFromTrashBinRequest as hm, type RemoveSubmissionFromTrashBinResponse as hn, type BulkRemoveSubmissionFromTrashBinRequest as ho, type BulkRemoveSubmissionFromTrashBinResult as hp, type ListDeletedSubmissionsRequest as hq, type CursorPaging as hr, type CursorPagingMetadata as hs, type Cursors as ht, type GetDeletedSubmissionRequest as hu, type QuerySubmissionRequest as hv, type CursorQueryPagingMethodOneOf as hw, type Sorting as hx, type SearchSubmissionsByNamespaceRequest as hy, type CursorSearch as hz, type BulkRemoveSubmissionFromTrashBinResponse as i, type NumberOfColumnsWithLiterals as i$, type BulkUpdateFormSubmissionTagsRequest as i0, type BulkUpdateFormSubmissionTagsResult as i1, type BulkUpdateFormSubmissionTagsByFilterRequest as i2, type ValidateFormSubmissionRequest as i3, type FieldViolation as i4, type FieldViolationErrorDataOneOf as i5, type SubmissionValidationErrors as i6, type SubmissionValidationError as i7, type SubmissionValidationErrorErrorMessageOneOf as i8, type BaseEventMetadata as i9, type ThumbnailsAlignmentWithLiterals as iA, type GIFTypeWithLiterals as iB, type SourceWithLiterals as iC, type StylesPositionWithLiterals as iD, type MapTypeWithLiterals as iE, type ViewRoleWithLiterals as iF, type VoteRoleWithLiterals as iG, type PollLayoutTypeWithLiterals as iH, type PollLayoutDirectionWithLiterals as iI, type BackgroundTypeWithLiterals as iJ, type DecorationTypeWithLiterals as iK, type FontTypeWithLiterals as iL, type PositionWithLiterals as iM, type AspectRatioWithLiterals as iN, type ResizingWithLiterals as iO, type PlacementWithLiterals as iP, type CardStylesTypeWithLiterals as iQ, type CardStylesAlignmentWithLiterals as iR, type LayoutWithLiterals as iS, type AppTypeWithLiterals as iT, type InitialExpandedItemsWithLiterals as iU, type DirectionWithLiterals as iV, type VerticalAlignmentWithLiterals as iW, type NullValueWithLiterals as iX, type ImagePositionWithLiterals as iY, type AlignmentWithLiterals as iZ, type ImageFitWithLiterals as i_, type EventMetadata as ia, type FormSubmissionSearchSpec as ib, type SubmissionsQueryResult as ic, type SubmissionStatusWithLiterals as id, type OptInLevelWithLiterals as ie, type StringTypeFormatEnumFormatWithLiterals as ig, type ValidationFormatWithLiterals as ih, type ProductTypeWithLiterals as ii, type PriceTypeWithLiterals as ij, type InputFieldStringTypeFormatEnumFormatWithLiterals as ik, type InputFieldStringComponentTypeWithLiterals as il, type NodeTypeWithLiterals as im, type WidthTypeWithLiterals as io, type PluginContainerDataAlignmentWithLiterals as ip, type ButtonDataTypeWithLiterals as iq, type LinkTargetWithLiterals as ir, type TextAlignmentWithLiterals as is, type LineStyleWithLiterals as it, type WidthWithLiterals as iu, type DividerDataAlignmentWithLiterals as iv, type ViewModeWithLiterals as iw, type LayoutTypeWithLiterals as ix, type OrientationWithLiterals as iy, type CropWithLiterals as iz, type ListDeletedSubmissionsResponse as j, onSubmissionContactMapped as j$, type FirstDayOfWeekWithLiterals as j0, type InputFieldNumberComponentTypeWithLiterals as j1, type InputFieldBooleanComponentTypeWithLiterals as j2, type ArrayItemsItemTypeWithLiterals as j3, type PropertiesTypePropertiesTypeEnumWithLiterals as j4, type InputFieldArrayComponentTypeWithLiterals as j5, type InputFieldWixFileComponentTypeWithLiterals as j6, type UploadFileFormatWithLiterals as j7, type InputFieldPaymentComponentTypeWithLiterals as j8, type InputFieldSchedulingComponentTypeWithLiterals as j9, type PhoneInfoTagWithLiterals as jA, type TagWithLiterals as jB, type ConfirmationLevelWithLiterals as jC, type ContactFieldWithLiterals as jD, type DisplayFieldDisplayFieldTypeWithLiterals as jE, type OverrideEntityTypeWithLiterals as jF, type KindWithLiterals as jG, type SpamFilterProtectionLevelWithLiterals as jH, type RequiredIndicatorWithLiterals as jI, type RequiredIndicatorPlacementWithLiterals as jJ, type TargetWithLiterals as jK, type SubmitSuccessActionWithLiterals as jL, type ChangeablePropertyWithLiterals as jM, type OverrideEntityTypeEnumOverrideEntityTypeWithLiterals as jN, type OperatorWithLiterals as jO, type WebhookIdentityTypeWithLiterals as jP, type IdentityTypeWithLiterals as jQ, type ErrorTypeWithLiterals as jR, type SortOrderWithLiterals as jS, type ModeWithLiterals as jT, type StatusWithLiterals as jU, type SubmissionErrorTypeWithLiterals as jV, type CommonSearchWithEntityContext as jW, onSubmissionCreated as jX, onSubmissionDeleted as jY, onSubmissionRemovedSubmissionFromTrash as jZ, onSubmissionStatusUpdated as j_, type FormatWithLiterals as ja, type MultilineAddressComponentTypeWithLiterals as jb, type TypeWithLiterals as jc, type InputFieldInputTypeWithLiterals as jd, type FormFieldContactInfoEmailInfoTagWithLiterals as je, type FormFieldContactInfoPhoneInfoTagWithLiterals as jf, type AddressInfoTagWithLiterals as jg, type SubscriptionInfoOptInLevelWithLiterals as jh, type FormFieldContactInfoContactFieldWithLiterals as ji, type FormFieldV2FieldTypeWithLiterals as jj, type DisplayFieldTypeWithLiterals as jk, type FieldTypeWithLiterals as jl, type FormatEnumFormatWithLiterals as jm, type StringComponentTypeWithLiterals as jn, type NumberComponentTypeWithLiterals as jo, type BooleanComponentTypeWithLiterals as jp, type ItemTypeWithLiterals as jq, type PropertiesTypeEnumWithLiterals as jr, type ArrayComponentTypeWithLiterals as js, type WixFileComponentTypeWithLiterals as jt, type PaymentComponentTypeWithLiterals as ju, type ComponentTypeWithLiterals as jv, type ObjectArrayComponentTypeWithLiterals as jw, type SchedulingComponentTypeWithLiterals as jx, type InputTypeWithLiterals as jy, type EmailInfoTagWithLiterals as jz, type CursorQuery as k, onSubmissionContactMappingSkipped as k0, onSubmissionUpdated as k1, upsertContactFromSubmission as k2, createSubmission as k3, getSubmission as k4, updateSubmission as k5, confirmSubmission as k6, deleteSubmission as k7, bulkDeleteSubmission as k8, restoreSubmissionFromTrashBin as k9, removeSubmissionFromTrashBin as ka, bulkRemoveSubmissionFromTrashBin as kb, listDeletedSubmissions as kc, getDeletedSubmission as kd, querySubmission as ke, querySubmissionsByNamespace as kf, countSubmissionsByFilter as kg, countSubmissions as kh, countDeletedSubmissions as ki, getMediaUploadUrl as kj, bulkMarkSubmissionsAsSeen as kk, getSubmissionDownloadUrl as kl, downloadSubmission as km, getFormattedSubmission as kn, updateExtendedFields as ko, bulkUpdateFormSubmissionTags as kp, bulkUpdateFormSubmissionTagsByFilter as kq, validateFormSubmission as kr, type QuerySubmissionResponse as l, type FormSubmissionSearch as m, type QuerySubmissionsByNamespaceOptions as n, type SubmissionsQueryBuilder as o, type CountSubmissionsByFilterOptions as p, type CountSubmissionsByFilterResponse as q, type CountSubmissionsOptions as r, type CountSubmissionsResponse as s, type CountDeletedSubmissionsOptions as t, type CountDeletedSubmissionsResponse as u, type GetMediaUploadURLResponse as v, type GetSubmissionDownloadUrlResponse as w, type RawHttpResponse as x, type GetFormattedSubmissionResponse as y, type UpdateExtendedFieldsOptions as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-
|
|
3
|
-
export { gL as ActionEvent, fZ as Address, f_ as AddressComponentTypeOptionsOneOf, fH as AddressInfo, aZ as AddressInfoTag, jb as AddressInfoTagWithLiterals, eP as AddressLine2, aG as Alignment, iU as AlignmentWithLiterals, gr as AllowedValuesOptions, dv as AnchorData, gw as AndCondition, dB as AppEmbedData, dC as AppEmbedDataAppDataOneOf, aA as AppType, iO as AppTypeWithLiterals, h3 as ApplicationError, eH as Appointment, eI as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, jn as ArrayComponentTypeWithLiterals, c7 as ArrayErrorMessages, fB as ArrayItems, aM as ArrayItemsItemType, fC as ArrayItemsItemTypeOptionsOneOf, i_ as ArrayItemsItemTypeWithLiterals, fx as ArrayType, c5 as ArrayTypeArrayItems, c6 as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iI as AspectRatioWithLiterals, dV as AudioData, dk as Background, dl as BackgroundBackgroundOneOf, aq as BackgroundType, iE as BackgroundTypeWithLiterals, i4 as BaseEventMetadata, dY as BlockquoteData, dD as BookingData, b6 as BooleanComponentType, jk as BooleanComponentTypeWithLiterals, b$ as BooleanErrorMessages, fw as BooleanType, cA as Border, dT as BorderColors, g5 as BreakPoint, h4 as BulkActionMetadata, g$ as BulkCreateSubmissionBySubmitterData, g_ as BulkCreateSubmissionBySubmitterRequest, h0 as BulkCreateSubmissionBySubmitterResponse, he as BulkDeleteSubmissionRequest, hf as BulkDeleteSubmissionResult, hJ as BulkMarkSubmissionsAsSeenRequest, hK as BulkMarkSubmissionsAsSeenResponse, hj as BulkRemoveSubmissionFromTrashBinRequest, hk as BulkRemoveSubmissionFromTrashBinResult, h1 as BulkSubmissionResult, hZ as BulkUpdateFormSubmissionTagsByFilterRequest, hX as BulkUpdateFormSubmissionTagsRequest, hY as BulkUpdateFormSubmissionTagsResult, dX as BulletedListData, cz as ButtonData, a7 as ButtonDataType, ik as ButtonDataTypeWithLiterals, dF as ButtonStyles, dZ as CaptionData, dI as CardStyles, ay as CardStylesAlignment, iM as CardStylesAlignmentWithLiterals, ax as CardStylesType, iL as CardStylesTypeWithLiterals, dS as CellStyle, bs as ChangeableProperty, jG as ChangeablePropertyWithLiterals, el as Checkbox, et as CheckboxGroup, gC as Checkout, cL as CodeBlockData, dO as CollapsibleListData, dw as ColorData, cB as Colors, jQ as CommonSearchWithEntityContext, bc as ComponentType, jq as ComponentTypeWithLiterals, gy as Condition, gu as ConditionNode, gv as ConditionNodeNodeOneOf, hb as ConfirmSubmissionRequest, bi as ConfirmationLevel, jw as ConfirmationLevelWithLiterals, bj as ContactField, jx as ContactFieldWithLiterals, hG as CountDeletedSubmissionsRequest, hD as CountSubmissionsByFilterRequest, hF as CountSubmissionsRequest, bN as CreateCheckoutFromSubmissionRequest, bO as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gB as CreateCheckoutFromSubmissionResponse, gY as CreateSubmissionBySubmitterRequest, gZ as CreateSubmissionBySubmitterResponse, gW as CreateSubmissionForMigrationRequest, gX as CreateSubmissionForMigrationResponse, gS as CreateSubmissionRequest, gT as CreateSubmissionResponse, ag as Crop, iu as CropWithLiterals, hm as CursorPaging, hn as CursorPagingMetadata, hr as CursorQueryPagingMethodOneOf, hu as CursorSearch, hv as CursorSearchPagingMethodOneOf, ho as Cursors, fI as CustomFieldInfo, e7 as CustomOption, cm as DataExtensionsDetails, ec as DateInput, ee as DatePicker, fs as DateTimeConstraints, ea as DateTimeInput, dt as Decoration, du as DecorationDataOneOf, ar as DecorationType, iF as DecorationTypeWithLiterals, eQ as DefaultCountryConfig, eR as DefaultCountryConfigOptionsOneOf, hc as DeleteSubmissionRequest, hd as DeleteSubmissionResponse, dr as Design, dQ as Dimensions, aC as Direction, iQ as DirectionWithLiterals, fi as DisplayField, bk as DisplayFieldDisplayFieldType, fj as DisplayFieldDisplayFieldTypeOptionsOneOf, jy as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, jf as DisplayFieldTypeWithLiterals, cN as DividerData, ac as DividerDataAlignment, iq as DividerDataAlignmentWithLiterals, hO as DocumentReady, e0 as DocumentStyle, gF as DomainEvent, gG as DomainEventBodyOneOf, eD as DonationInput, eE as DonationInputOption, hP as DownloadSubmissionRequest, e8 as Dropdown, e9 as DropdownOption, cd as DynamicPriceOptions, fF as EmailInfo, bf as EmailInfoTag, jt as EmailInfoTagWithLiterals, dM as EmbedData, gM as Empty, gH as EntityCreatedEvent, gK as EntityDeletedEvent, gJ as EntityUpdatedEvent, bx as ErrorType, jL as ErrorTypeWithLiterals, dE as EventData, i5 as EventMetadata, bE as ExtendedFields, fm as Field, fn as FieldFieldTypeOptionsOneOf, gn as FieldGroup, gs as FieldOverride, gt as FieldOverridePropertyTypeOptionsOneOf, ch as FieldOverrides, b2 as FieldType, jg as FieldTypeWithLiterals, h$ as FieldViolation, i0 as FieldViolationErrorDataOneOf, f$ as FieldsDisplayField, g0 as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, ci as FieldsOverrides, eS as FieldsSettings, cO as FileData, cP as FileSource, cQ as FileSourceDataOneOf, ey as FileType, ez as FileUpload, aJ as FirstDayOfWeek, iX as FirstDayOfWeekWithLiterals, eG as FixedPayment, cc as FixedPriceOptions, dz as FontSizeData, as as FontType, iG as FontTypeWithLiterals, bP as Form, hH as FormDeletedSubmissionsCount, bQ as FormField, c0 as FormFieldArrayType, b_ as FormFieldBooleanType, fD as FormFieldContactInfo, fE as FormFieldContactInfoAdditionalInfoOneOf, eX as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, jd as FormFieldContactInfoContactFieldWithLiterals, eY as FormFieldContactInfoCustomFieldInfo, eV as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, j9 as FormFieldContactInfoEmailInfoTagWithLiterals, eW as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, ja as FormFieldContactInfoPhoneInfoTagWithLiterals, eZ as FormFieldContactInfoSubscriptionInfo, bX as FormFieldNumberType, c1 as FormFieldObjectType, bR as FormFieldStringType, bS as FormFieldStringTypeFormatOptionsOneOf, co as FormFieldV2, b0 as FormFieldV2FieldType, cp as FormFieldV2FieldTypeOptionsOneOf, je as FormFieldV2FieldTypeWithLiterals, fg as FormFieldV2InputField, fh as FormFieldV2InputFieldInputTypeOptionsOneOf, g4 as FormLayout, gc as FormOverride, gd as FormProperties, gb as FormRule, i6 as FormSubmissionSearchSpec, bI as FormSubmissionStatusUpdatedEvent, hE as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jh as FormatEnumFormatWithLiterals, j5 as FormatWithLiterals, hV as FormattedFormSubmission, hS as FormattedSubmission, d1 as GIF, d0 as GIFData, ai as GIFType, iw as GIFTypeWithLiterals, cS as GalleryData, cY as GalleryOptions, cZ as GalleryOptionsLayout, hp as GetDeletedSubmissionRequest, hR as GetFormattedSubmissionRequest, hI as GetMediaUploadURLRequest, h7 as GetSubmissionByCheckoutIdRequest, h8 as GetSubmissionByCheckoutIdResponse, hL as GetSubmissionDownloadUrlRequest, h5 as GetSubmissionRequest, h6 as GetSubmissionResponse, dj as Gradient, g8 as Group, d3 as HTMLData, d4 as HTMLDataDataOneOf, hQ as HeadersEntry, d2 as HeadingData, cG as Height, gq as HiddenOptions, gO as IdentificationData, gP as IdentificationDataIdOneOf, bw as IdentityType, jK as IdentityTypeWithLiterals, cU as Image, d5 as ImageData, d7 as ImageDataStyles, aH as ImageFit, iV as ImageFitWithLiterals, aF as ImagePosition, iT as ImagePositionWithLiterals, dG as ImageStyles, eL as InPersonOptions, aB as InitialExpandedItems, iP as InitialExpandedItemsWithLiterals, fo as InputField, aO as InputFieldArrayComponentType, j0 as InputFieldArrayComponentTypeWithLiterals, em as InputFieldArrayType, er as InputFieldArrayTypeArrayItems, es as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, iZ as InputFieldBooleanComponentTypeWithLiterals, ek as InputFieldBooleanType, aW as InputFieldInputType, fp as InputFieldInputTypeOptionsOneOf, j8 as InputFieldInputTypeWithLiterals, en as InputFieldIntegerType, fc as InputFieldMultilineAddress, fd as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, iY as InputFieldNumberComponentTypeWithLiterals, eh as InputFieldNumberType, eo as InputFieldObjectType, ep as InputFieldObjectTypePropertiesType, eq as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fa as InputFieldPayment, aR as InputFieldPaymentComponentType, fb as InputFieldPaymentComponentTypeOptionsOneOf, j3 as InputFieldPaymentComponentTypeWithLiterals, fe as InputFieldScheduling, aS as InputFieldSchedulingComponentType, ff as InputFieldSchedulingComponentTypeOptionsOneOf, j4 as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, ig as InputFieldStringComponentTypeWithLiterals, cq as InputFieldStringType, cs as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ie as InputFieldStringTypeFormatEnumFormatWithLiterals, cr as InputFieldStringTypeFormatOptionsOneOf, ct as InputFieldStringTypePhoneConstraints, f8 as InputFieldWixFile, aP as InputFieldWixFileComponentType, f9 as InputFieldWixFileComponentTypeOptionsOneOf, j1 as InputFieldWixFileComponentTypeWithLiterals, f4 as InputField_Array, f5 as InputField_ArrayComponentTypeOptionsOneOf, f2 as InputField_Boolean, f3 as InputField_BooleanComponentTypeOptionsOneOf, f0 as InputField_Number, f1 as InputField_NumberComponentTypeOptionsOneOf, f6 as InputField_Object, f7 as InputField_ObjectValidationOneOf, e_ as InputField_String, e$ as InputField_StringComponentTypeOptionsOneOf, be as InputType, js as InputTypeWithLiterals, bZ as IntegerType, gD as IsFormSubmittableRequest, gE as IsFormSubmittableResponse, cW as Item, cX as ItemDataOneOf, g6 as ItemLayout, g7 as ItemLayoutItemOneOf, h2 as ItemMetadata, c_ as ItemStyle, b7 as ItemType, jl as ItemTypeWithLiterals, bm as Kind, jA as KindWithLiterals, az as Layout, d_ as LayoutCellData, ae as LayoutType, is as LayoutTypeWithLiterals, iN as LayoutWithLiterals, gh as LimitationRule, aa as LineStyle, io as LineStyleWithLiterals, cI as Link, dx as LinkData, cJ as LinkDataOneOf, d8 as LinkPreviewData, d9 as LinkPreviewDataStyles, a8 as LinkTarget, il as LinkTargetWithLiterals, hl as ListDeletedSubmissionsRequest, hT as ListFormattedSubmissionsRequest, hU as ListFormattedSubmissionsResponse, dU as ListValue, eJ as Location, eK as LocationLocationInfoOneOf, da as MapData, db as MapSettings, al as MapType, iz as MapTypeWithLiterals, g9 as Margin, bL as MarketingSubscriptionDetails, cT as Media, e2 as MediaItem, e3 as MediaItemMediaOneOf, e4 as MediaSettings, dy as MentionData, gN as MessageEnvelope, d$ as Metadata, bz as Mode, jN as ModeWithLiterals, eO as MultilineAddress, aU as MultilineAddressComponentType, j6 as MultilineAddressComponentTypeWithLiterals, cg as MultilineAddressValidation, gg as NestedForm, cj as NestedFormFieldOverrides, cn as NestedFormOverrides, cw as Node, cx as NodeDataOneOf, cy as NodeStyle, a4 as NodeType, ih as NodeTypeWithLiterals, aE as NullValue, iS as NullValueWithLiterals, b5 as NumberComponentType, jj as NumberComponentTypeWithLiterals, bY as NumberErrorMessages, ei as NumberInput, aI as NumberOfColumns, iW as NumberOfColumnsWithLiterals, fv as NumberType, c4 as ObjectErrorMessages, fy as ObjectType, c2 as ObjectTypePropertiesType, c3 as ObjectTypePropertiesTypePropertiesTypeOneOf, dN as Oembed, bu as Operator, jI as OperatorWithLiterals, Z as OptInLevel, i9 as OptInLevelWithLiterals, eu as Option, dn as OptionDesign, di as OptionLayout, gx as OrCondition, bF as OrderDetails, dW as OrderedListData, af as Orientation, it as OrientationWithLiterals, bl as OverrideEntityType, bt as OverrideEntityTypeEnumOverrideEntityType, jH as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jz as OverrideEntityTypeWithLiterals, cR as PDFSettings, g2 as PageNavigationOptions, dc as ParagraphData, fV as Payment, bb as PaymentComponentType, fW as PaymentComponentTypeOptionsOneOf, jp as PaymentComponentTypeWithLiterals, eF as PaymentInput, ca as PaymentType, de as Permissions, ft as PhoneConstraints, fG as PhoneInfo, bg as PhoneInfoTag, ju as PhoneInfoTagWithLiterals, eb as PhoneInput, eN as PhoneOptions, aw as Placement, iK as PlacementWithLiterals, dL as PlaybackOptions, cC as PluginContainerData, a6 as PluginContainerDataAlignment, ij as PluginContainerDataAlignmentWithLiterals, cD as PluginContainerDataWidth, cE as PluginContainerDataWidthDataOneOf, dp as Poll, dd as PollData, dq as PollDataLayout, dm as PollDesign, dh as PollLayout, ap as PollLayoutDirection, iD as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iC as PollLayoutTypeWithLiterals, df as PollOption, at as Position, iH as PositionWithLiterals, ge as PostSubmissionTriggers, c8 as PredefinedValidation, c9 as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, id as PriceTypeWithLiterals, dJ as PricingData, ce as Product, eB as ProductCheckboxGroup, eC as ProductCheckboxGroupOption, cf as ProductPriceOptionsOneOf, a0 as ProductType, ic as ProductTypeWithLiterals, fz as PropertiesType, b8 as PropertiesTypeEnum, jm as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, i$ as PropertiesTypePropertiesTypeEnumWithLiterals, fA as PropertiesTypePropertiesTypeOptionsOneOf, bG as PublicTags, cb as QuantityLimit, hq as QuerySubmissionRequest, hB as QuerySubmissionsByNamespaceForExportRequest, hC as QuerySubmissionsByNamespaceForExportResponse, hz as QuerySubmissionsByNamespaceRequest, hA as QuerySubmissionsByNamespaceResponse, e5 as RadioGroup, e6 as RadioGroupOption, ej as RatingInput, gm as RedirectOptions, cK as Rel, hh as RemoveSubmissionFromTrashBinRequest, hi as RemoveSubmissionFromTrashBinResponse, bJ as RemovedSubmissionFromTrash, bo as RequiredIndicator, bp as RequiredIndicatorPlacement, jD as RequiredIndicatorPlacementWithLiterals, gi as RequiredIndicatorProperties, jC as RequiredIndicatorWithLiterals, gp as RequiredOptions, av as Resizing, iJ as ResizingWithLiterals, gI as RestoreInfo, hg as RestoreSubmissionFromTrashBinRequest, dH as RibbonStyles, cv as RichContent, g1 as RichContentOptions, go as Rule, gz as RuleFormOverride, gA as RuleFormOverrideEntityTypeOptionsOneOf, fX as Scheduling, bd as SchedulingComponentType, fY as SchedulingComponentTypeOptionsOneOf, jr as SchedulingComponentTypeWithLiterals, hw as SearchDetails, hx as SearchSubmissionsByNamespaceForExportRequest, hy as SearchSubmissionsByNamespaceForExportResponse, ht as SearchSubmissionsByNamespaceRequest, ga as Section, eg as ServiceOption, ex as ServicesCheckboxGroup, ef as ServicesDropdown, dg as Settings, eA as Signature, by as SortOrder, jM as SortOrderWithLiterals, hs as Sorting, aj as Source, ix as SourceWithLiterals, bn as SpamFilterProtectionLevel, jB as SpamFilterProtectionLevelWithLiterals, cF as Spoiler, dA as SpoilerData, bA as Status, jO as StatusWithLiterals, g3 as Step, b4 as StringComponentType, ji as StringComponentTypeWithLiterals, bT as StringErrorMessages, fq as StringType, bU as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ia as StringTypeFormatEnumFormatWithLiterals, fr as StringTypeFormatOptionsOneOf, bV as StringTypePhoneConstraints, bW as StringTypeValidationMessages, cH as Styles, d6 as StylesBorder, ak as StylesPosition, iy as StylesPositionWithLiterals, bK as SubmissionContactMapped, bM as SubmissionContactMappingSkipped, hM as SubmissionDocument, hN as SubmissionDocumentDocumentOneOf, bB as SubmissionErrorType, jP as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, i8 as SubmissionStatusWithLiterals, i2 as SubmissionValidationError, i3 as SubmissionValidationErrorErrorMessageOneOf, i1 as SubmissionValidationErrors, gU as SubmissionValidationErrorsDetails, i7 as SubmissionsQueryResult, gR as SubmitContactResponse, gj as SubmitSettings, gk as SubmitSettingsSubmitSuccessActionOptionsOneOf, br as SubmitSuccessAction, jF as SubmitSuccessActionWithLiterals, bC as Submitter, bD as SubmitterSubmitterOneOf, fJ as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jc as SubscriptionInfoOptInLevelWithLiterals, dR as TableCellData, dP as TableData, bh as Tag, bH as TagList, jv as TagWithLiterals, ev as Tags, ew as TagsOption, bq as Target, jE as TargetWithLiterals, a9 as TextAlignment, im as TextAlignmentWithLiterals, ds as TextData, cu as TextInput, e1 as TextNodeStyle, cM as TextStyle, gl as ThankYouMessageOptions, c$ as Thumbnails, ah as ThumbnailsAlignment, iv as ThumbnailsAlignmentWithLiterals, ed as TimeInput, aV as Type, j7 as TypeWithLiterals, hW as UpdateExtendedFieldsRequest, h9 as UpdateSubmissionRequest, ha as UpdateSubmissionResponse, aQ as UploadFileFormat, j2 as UploadFileFormatWithLiterals, gf as UpsertContact, gQ as UpsertContactFromSubmissionRequest, eT as V4FormFieldContactInfo, eU as V4FormFieldContactInfoAdditionalInfoOneOf, fl as V4PageNavigationOptions, fk as V4RichContentOptions, h_ as ValidateFormSubmissionRequest, ck as Validation, gV as ValidationError, $ as ValidationFormat, ib as ValidationFormatWithLiterals, fu as ValidationMessages, cl as ValidationValidationOneOf, aD as VerticalAlignment, iR as VerticalAlignmentWithLiterals, cV as Video, eM as VideoConferenceOptions, dK as VideoData, ad as ViewMode, ir as ViewModeWithLiterals, am as ViewRole, iA as ViewRoleWithLiterals, an as VoteRole, iB as VoteRoleWithLiterals, bv as WebhookIdentityType, jJ as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, ii as WidthTypeWithLiterals, ip as WidthWithLiterals, fT as WixFile, ba as WixFileComponentType, fU as WixFileComponentTypeOptionsOneOf, jo as WixFileComponentTypeWithLiterals, fQ as _Array, fR as _ArrayComponentTypeOptionsOneOf, fO as _Boolean, fP as _BooleanComponentTypeOptionsOneOf, fM as _Number, fN as _NumberComponentTypeOptionsOneOf, fS as _Object, fK as _String, fL as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-BBNQW7g1.mjs';
|
|
2
|
+
import { U as UpsertContactFromSubmissionOptions, a as UpsertContactFromSubmissionResponse, F as FormSubmission, C as CreateSubmissionOptions, b as CreateSubmissionApplicationErrors, c as CreateSubmissionValidationErrors, d as UpdateSubmission, e as UpdateSubmissionValidationErrors, f as ConfirmSubmissionResponse, D as DeleteSubmissionOptions, B as BulkDeleteSubmissionOptions, g as BulkDeleteSubmissionResponse, R as RestoreSubmissionFromTrashBinResponse, h as BulkRemoveSubmissionFromTrashBinOptions, i as BulkRemoveSubmissionFromTrashBinResponse, L as ListDeletedSubmissionsOptions, j as ListDeletedSubmissionsResponse, G as GetDeletedSubmissionResponse, k as CursorQuery, Q as QuerySubmissionOptions, l as QuerySubmissionResponse, m as FormSubmissionSearch, S as SearchSubmissionsByNamespaceResponse, n as QuerySubmissionsByNamespaceOptions, o as SubmissionsQueryBuilder, p as CountSubmissionsByFilterOptions, q as CountSubmissionsByFilterResponse, r as CountSubmissionsOptions, s as CountSubmissionsResponse, t as CountDeletedSubmissionsOptions, u as CountDeletedSubmissionsResponse, v as GetMediaUploadURLResponse, w as GetSubmissionDownloadUrlResponse, x as RawHttpResponse, y as GetFormattedSubmissionResponse, z as UpdateExtendedFieldsOptions, A as UpdateExtendedFieldsResponse, E as BulkUpdateFormSubmissionTagsOptions, H as BulkUpdateFormSubmissionTagsResponse, I as BulkUpdateFormSubmissionTagsByFilterOptions, J as BulkUpdateFormSubmissionTagsByFilterResponse, V as ValidateFormSubmissionOptions, K as ValidateFormSubmissionResponse, M as SubmissionCreatedEnvelope, N as SubmissionDeletedEnvelope, O as SubmissionRemovedSubmissionFromTrashEnvelope, P as SubmissionStatusUpdatedEnvelope, T as SubmissionContactMappedEnvelope, W as SubmissionContactMappingSkippedEnvelope, X as SubmissionUpdatedEnvelope } from './forms-v4-submission-submissions.universal-C2nk1vxO.mjs';
|
|
3
|
+
export { gQ as ActionEvent, g7 as Address, g8 as AddressComponentTypeOptionsOneOf, fR as AddressInfo, aZ as AddressInfoTag, jg as AddressInfoTagWithLiterals, eQ as AddressLine2, aG as Alignment, iZ as AlignmentWithLiterals, gw as AllowedValuesOptions, dw as AnchorData, gB as AndCondition, dC as AppEmbedData, dD as AppEmbedDataAppDataOneOf, aA as AppType, iT as AppTypeWithLiterals, h8 as ApplicationError, eI as Appointment, eJ as AppointmentFormatInfoOneOf, b9 as ArrayComponentType, js as ArrayComponentTypeWithLiterals, c8 as ArrayErrorMessages, fC as ArrayItems, aM as ArrayItemsItemType, fD as ArrayItemsItemTypeOptionsOneOf, j3 as ArrayItemsItemTypeWithLiterals, fy as ArrayType, c6 as ArrayTypeArrayItems, c7 as ArrayTypeArrayItemsItemsOneOf, au as AspectRatio, iN as AspectRatioWithLiterals, dW as AudioData, dl as Background, dm as BackgroundBackgroundOneOf, aq as BackgroundType, iJ as BackgroundTypeWithLiterals, i9 as BaseEventMetadata, dZ as BlockquoteData, dE as BookingData, b6 as BooleanComponentType, jp as BooleanComponentTypeWithLiterals, c0 as BooleanErrorMessages, fx as BooleanType, cB as Border, dU as BorderColors, fH as BreakPoint, h9 as BulkActionMetadata, h4 as BulkCreateSubmissionBySubmitterData, h3 as BulkCreateSubmissionBySubmitterRequest, h5 as BulkCreateSubmissionBySubmitterResponse, hj as BulkDeleteSubmissionRequest, hk as BulkDeleteSubmissionResult, hO as BulkMarkSubmissionsAsSeenRequest, hP as BulkMarkSubmissionsAsSeenResponse, ho as BulkRemoveSubmissionFromTrashBinRequest, hp as BulkRemoveSubmissionFromTrashBinResult, h6 as BulkSubmissionResult, i2 as BulkUpdateFormSubmissionTagsByFilterRequest, i0 as BulkUpdateFormSubmissionTagsRequest, i1 as BulkUpdateFormSubmissionTagsResult, dY as BulletedListData, cA as ButtonData, a7 as ButtonDataType, iq as ButtonDataTypeWithLiterals, dG as ButtonStyles, d_ as CaptionData, dJ as CardStyles, ay as CardStylesAlignment, iR as CardStylesAlignmentWithLiterals, ax as CardStylesType, iQ as CardStylesTypeWithLiterals, dT as CellStyle, bt as ChangeableProperty, jM as ChangeablePropertyWithLiterals, em as Checkbox, eu as CheckboxGroup, gH as Checkout, cM as CodeBlockData, dP as CollapsibleListData, dx as ColorData, cC as Colors, jW as CommonSearchWithEntityContext, bc as ComponentType, jv as ComponentTypeWithLiterals, gD as Condition, gz as ConditionNode, gA as ConditionNodeNodeOneOf, hg as ConfirmSubmissionRequest, bj as ConfirmationLevel, jC as ConfirmationLevelWithLiterals, bk as ContactField, jD as ContactFieldWithLiterals, hL as CountDeletedSubmissionsRequest, hI as CountSubmissionsByFilterRequest, hK as CountSubmissionsRequest, bO as CreateCheckoutFromSubmissionRequest, bP as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, gG as CreateCheckoutFromSubmissionResponse, h1 as CreateSubmissionBySubmitterRequest, h2 as CreateSubmissionBySubmitterResponse, g$ as CreateSubmissionForMigrationRequest, h0 as CreateSubmissionForMigrationResponse, gX as CreateSubmissionRequest, gY as CreateSubmissionResponse, ag as Crop, iz as CropWithLiterals, hr as CursorPaging, hs as CursorPagingMetadata, hw as CursorQueryPagingMethodOneOf, hz as CursorSearch, hA as CursorSearchPagingMethodOneOf, ht as Cursors, fS as CustomFieldInfo, e8 as CustomOption, cn as DataExtensionsDetails, ed as DateInput, ef as DatePicker, ft as DateTimeConstraints, eb as DateTimeInput, du as Decoration, dv as DecorationDataOneOf, ar as DecorationType, iK as DecorationTypeWithLiterals, eR as DefaultCountryConfig, eS as DefaultCountryConfigOptionsOneOf, hh as DeleteSubmissionRequest, hi as DeleteSubmissionResponse, ds as Design, dR as Dimensions, aC as Direction, iV as DirectionWithLiterals, fj as DisplayField, bl as DisplayFieldDisplayFieldType, fk as DisplayFieldDisplayFieldTypeOptionsOneOf, jE as DisplayFieldDisplayFieldTypeWithLiterals, b1 as DisplayFieldType, jk as DisplayFieldTypeWithLiterals, cO as DividerData, ac as DividerDataAlignment, iv as DividerDataAlignmentWithLiterals, hT as DocumentReady, e1 as DocumentStyle, gK as DomainEvent, gL as DomainEventBodyOneOf, eE as DonationInput, eF as DonationInputOption, hU as DownloadSubmissionRequest, e9 as Dropdown, ea as DropdownOption, ce as DynamicPriceOptions, fP as EmailInfo, bg as EmailInfoTag, jz as EmailInfoTagWithLiterals, dN as EmbedData, gR as Empty, gM as EntityCreatedEvent, gP as EntityDeletedEvent, gO as EntityUpdatedEvent, by as ErrorType, jR as ErrorTypeWithLiterals, dF as EventData, ia as EventMetadata, bF as ExtendedFields, fn as Field, fo as FieldFieldTypeOptionsOneOf, gs as FieldGroup, gx as FieldOverride, gy as FieldOverridePropertyTypeOptionsOneOf, ci as FieldOverrides, b2 as FieldType, jl as FieldTypeWithLiterals, i4 as FieldViolation, i5 as FieldViolationErrorDataOneOf, gb as FieldsDisplayField, gc as FieldsDisplayFieldDisplayFieldTypeOptionsOneOf, cj as FieldsOverrides, eT as FieldsSettings, cP as FileData, cQ as FileSource, cR as FileSourceDataOneOf, ez as FileType, eA as FileUpload, aJ as FirstDayOfWeek, j0 as FirstDayOfWeekWithLiterals, eH as FixedPayment, cd as FixedPriceOptions, dA as FontSizeData, as as FontType, iL as FontTypeWithLiterals, bQ as Form, hM as FormDeletedSubmissionsCount, bR as FormField, c1 as FormFieldArrayType, b$ as FormFieldBooleanType, fN as FormFieldContactInfo, fO as FormFieldContactInfoAdditionalInfoOneOf, eY as FormFieldContactInfoAddressInfo, a$ as FormFieldContactInfoContactField, ji as FormFieldContactInfoContactFieldWithLiterals, eZ as FormFieldContactInfoCustomFieldInfo, eW as FormFieldContactInfoEmailInfo, aX as FormFieldContactInfoEmailInfoTag, je as FormFieldContactInfoEmailInfoTagWithLiterals, eX as FormFieldContactInfoPhoneInfo, aY as FormFieldContactInfoPhoneInfoTag, jf as FormFieldContactInfoPhoneInfoTagWithLiterals, e_ as FormFieldContactInfoSubscriptionInfo, bY as FormFieldNumberType, c2 as FormFieldObjectType, bS as FormFieldStringType, bT as FormFieldStringTypeFormatOptionsOneOf, cp as FormFieldV2, b0 as FormFieldV2FieldType, cq as FormFieldV2FieldTypeOptionsOneOf, jj as FormFieldV2FieldTypeWithLiterals, fh as FormFieldV2InputField, fi as FormFieldV2InputFieldInputTypeOptionsOneOf, fG as FormLayout, gh as FormOverride, gi as FormProperties, gg as FormRule, ib as FormSubmissionSearchSpec, bJ as FormSubmissionStatusUpdatedEvent, hJ as FormSubmissionsCount, aT as Format, b3 as FormatEnumFormat, jm as FormatEnumFormatWithLiterals, ja as FormatWithLiterals, h_ as FormattedFormSubmission, hX as FormattedSubmission, d2 as GIF, d1 as GIFData, ai as GIFType, iB as GIFTypeWithLiterals, cT as GalleryData, cZ as GalleryOptions, c_ as GalleryOptionsLayout, hu as GetDeletedSubmissionRequest, hW as GetFormattedSubmissionRequest, hN as GetMediaUploadURLRequest, hc as GetSubmissionByCheckoutIdRequest, hd as GetSubmissionByCheckoutIdResponse, hQ as GetSubmissionDownloadUrlRequest, ha as GetSubmissionRequest, hb as GetSubmissionResponse, dk as Gradient, fK as Group, d4 as HTMLData, d5 as HTMLDataDataOneOf, hV as HeadersEntry, d3 as HeadingData, cH as Height, gv as HiddenOptions, gT as IdentificationData, gU as IdentificationDataIdOneOf, bx as IdentityType, jQ as IdentityTypeWithLiterals, cV as Image, d6 as ImageData, d8 as ImageDataStyles, aH as ImageFit, i_ as ImageFitWithLiterals, aF as ImagePosition, iY as ImagePositionWithLiterals, dH as ImageStyles, eM as InPersonOptions, aB as InitialExpandedItems, iU as InitialExpandedItemsWithLiterals, fp as InputField, aO as InputFieldArrayComponentType, j5 as InputFieldArrayComponentTypeWithLiterals, en as InputFieldArrayType, es as InputFieldArrayTypeArrayItems, et as InputFieldArrayTypeArrayItemsItemTypeOptionsOneOf, aL as InputFieldBooleanComponentType, j2 as InputFieldBooleanComponentTypeWithLiterals, el as InputFieldBooleanType, aW as InputFieldInputType, fq as InputFieldInputTypeOptionsOneOf, jd as InputFieldInputTypeWithLiterals, eo as InputFieldIntegerType, fd as InputFieldMultilineAddress, fe as InputFieldMultilineAddressComponentTypeOptionsOneOf, aK as InputFieldNumberComponentType, j1 as InputFieldNumberComponentTypeWithLiterals, ei as InputFieldNumberType, ep as InputFieldObjectType, eq as InputFieldObjectTypePropertiesType, er as InputFieldObjectTypePropertiesTypePropertiesTypeOptionsOneOf, fb as InputFieldPayment, aR as InputFieldPaymentComponentType, fc as InputFieldPaymentComponentTypeOptionsOneOf, j8 as InputFieldPaymentComponentTypeWithLiterals, ff as InputFieldScheduling, aS as InputFieldSchedulingComponentType, fg as InputFieldSchedulingComponentTypeOptionsOneOf, j9 as InputFieldSchedulingComponentTypeWithLiterals, a3 as InputFieldStringComponentType, il as InputFieldStringComponentTypeWithLiterals, cr as InputFieldStringType, ct as InputFieldStringTypeDateTimeConstraints, a2 as InputFieldStringTypeFormatEnumFormat, ik as InputFieldStringTypeFormatEnumFormatWithLiterals, cs as InputFieldStringTypeFormatOptionsOneOf, cu as InputFieldStringTypePhoneConstraints, f9 as InputFieldWixFile, aP as InputFieldWixFileComponentType, fa as InputFieldWixFileComponentTypeOptionsOneOf, j6 as InputFieldWixFileComponentTypeWithLiterals, f5 as InputField_Array, f6 as InputField_ArrayComponentTypeOptionsOneOf, f3 as InputField_Boolean, f4 as InputField_BooleanComponentTypeOptionsOneOf, f1 as InputField_Number, f2 as InputField_NumberComponentTypeOptionsOneOf, f7 as InputField_Object, f8 as InputField_ObjectValidationOneOf, e$ as InputField_String, f0 as InputField_StringComponentTypeOptionsOneOf, bf as InputType, jy as InputTypeWithLiterals, b_ as IntegerType, gI as IsFormSubmittableRequest, gJ as IsFormSubmittableResponse, cX as Item, cY as ItemDataOneOf, fI as ItemLayout, fJ as ItemLayoutItemOneOf, h7 as ItemMetadata, c$ as ItemStyle, b7 as ItemType, jq as ItemTypeWithLiterals, bn as Kind, jG as KindWithLiterals, az as Layout, d$ as LayoutCellData, ae as LayoutType, ix as LayoutTypeWithLiterals, iS as LayoutWithLiterals, gm as LimitationRule, aa as LineStyle, it as LineStyleWithLiterals, cJ as Link, dy as LinkData, cK as LinkDataOneOf, d9 as LinkPreviewData, da as LinkPreviewDataStyles, a8 as LinkTarget, ir as LinkTargetWithLiterals, hq as ListDeletedSubmissionsRequest, hY as ListFormattedSubmissionsRequest, hZ as ListFormattedSubmissionsResponse, dV as ListValue, eK as Location, eL as LocationLocationInfoOneOf, db as MapData, dc as MapSettings, al as MapType, iE as MapTypeWithLiterals, fL as Margin, bM as MarketingSubscriptionDetails, cU as Media, e3 as MediaItem, e4 as MediaItemMediaOneOf, e5 as MediaSettings, dz as MentionData, gS as MessageEnvelope, e0 as Metadata, bA as Mode, jT as ModeWithLiterals, eP as MultilineAddress, aU as MultilineAddressComponentType, jb as MultilineAddressComponentTypeWithLiterals, ch as MultilineAddressValidation, gl as NestedForm, ck as NestedFormFieldOverrides, co as NestedFormOverrides, cx as Node, cy as NodeDataOneOf, cz as NodeStyle, a4 as NodeType, im as NodeTypeWithLiterals, aE as NullValue, iX as NullValueWithLiterals, b5 as NumberComponentType, jo as NumberComponentTypeWithLiterals, bZ as NumberErrorMessages, ej as NumberInput, aI as NumberOfColumns, i$ as NumberOfColumnsWithLiterals, fw as NumberType, g9 as ObjectArray, bd as ObjectArrayComponentType, ga as ObjectArrayComponentTypeOptionsOneOf, jw as ObjectArrayComponentTypeWithLiterals, fE as ObjectArrayType, c5 as ObjectErrorMessages, fz as ObjectType, c3 as ObjectTypePropertiesType, c4 as ObjectTypePropertiesTypePropertiesTypeOneOf, dO as Oembed, bv as Operator, jO as OperatorWithLiterals, Z as OptInLevel, ie as OptInLevelWithLiterals, ev as Option, dp as OptionDesign, dj as OptionLayout, gC as OrCondition, bG as OrderDetails, dX as OrderedListData, af as Orientation, iy as OrientationWithLiterals, bm as OverrideEntityType, bu as OverrideEntityTypeEnumOverrideEntityType, jN as OverrideEntityTypeEnumOverrideEntityTypeWithLiterals, jF as OverrideEntityTypeWithLiterals, cS as PDFSettings, ge as PageNavigationOptions, dd as ParagraphData, g3 as Payment, bb as PaymentComponentType, g4 as PaymentComponentTypeOptionsOneOf, ju as PaymentComponentTypeWithLiterals, eG as PaymentInput, cb as PaymentType, df as Permissions, fu as PhoneConstraints, fQ as PhoneInfo, bh as PhoneInfoTag, jA as PhoneInfoTagWithLiterals, ec as PhoneInput, eO as PhoneOptions, aw as Placement, iP as PlacementWithLiterals, dM as PlaybackOptions, cD as PluginContainerData, a6 as PluginContainerDataAlignment, ip as PluginContainerDataAlignmentWithLiterals, cE as PluginContainerDataWidth, cF as PluginContainerDataWidthDataOneOf, dq as Poll, de as PollData, dr as PollDataLayout, dn as PollDesign, di as PollLayout, ap as PollLayoutDirection, iI as PollLayoutDirectionWithLiterals, ao as PollLayoutType, iH as PollLayoutTypeWithLiterals, dg as PollOption, at as Position, iM as PositionWithLiterals, gj as PostSubmissionTriggers, c9 as PredefinedValidation, ca as PredefinedValidationFormatOptionsOneOf, a1 as PriceType, ij as PriceTypeWithLiterals, dK as PricingData, cf as Product, eC as ProductCheckboxGroup, eD as ProductCheckboxGroupOption, cg as ProductPriceOptionsOneOf, a0 as ProductType, ii as ProductTypeWithLiterals, fA as PropertiesType, b8 as PropertiesTypeEnum, jr as PropertiesTypeEnumWithLiterals, aN as PropertiesTypePropertiesTypeEnum, j4 as PropertiesTypePropertiesTypeEnumWithLiterals, fB as PropertiesTypePropertiesTypeOptionsOneOf, bH as PublicTags, cc as QuantityLimit, hv as QuerySubmissionRequest, hG as QuerySubmissionsByNamespaceForExportRequest, hH as QuerySubmissionsByNamespaceForExportResponse, hE as QuerySubmissionsByNamespaceRequest, hF as QuerySubmissionsByNamespaceResponse, e6 as RadioGroup, e7 as RadioGroupOption, ek as RatingInput, gr as RedirectOptions, cL as Rel, hm as RemoveSubmissionFromTrashBinRequest, hn as RemoveSubmissionFromTrashBinResponse, bK as RemovedSubmissionFromTrash, fF as Repeater, bp as RequiredIndicator, bq as RequiredIndicatorPlacement, jJ as RequiredIndicatorPlacementWithLiterals, gn as RequiredIndicatorProperties, jI as RequiredIndicatorWithLiterals, gu as RequiredOptions, av as Resizing, iO as ResizingWithLiterals, gN as RestoreInfo, hl as RestoreSubmissionFromTrashBinRequest, dI as RibbonStyles, cw as RichContent, gd as RichContentOptions, gt as Rule, gE as RuleFormOverride, gF as RuleFormOverrideEntityTypeOptionsOneOf, g5 as Scheduling, be as SchedulingComponentType, g6 as SchedulingComponentTypeOptionsOneOf, jx as SchedulingComponentTypeWithLiterals, hB as SearchDetails, hC as SearchSubmissionsByNamespaceForExportRequest, hD as SearchSubmissionsByNamespaceForExportResponse, hy as SearchSubmissionsByNamespaceRequest, fM as Section, eh as ServiceOption, ey as ServicesCheckboxGroup, eg as ServicesDropdown, dh as Settings, eB as Signature, bz as SortOrder, jS as SortOrderWithLiterals, hx as Sorting, aj as Source, iC as SourceWithLiterals, bo as SpamFilterProtectionLevel, jH as SpamFilterProtectionLevelWithLiterals, cG as Spoiler, dB as SpoilerData, bB as Status, jU as StatusWithLiterals, gf as Step, b4 as StringComponentType, jn as StringComponentTypeWithLiterals, bU as StringErrorMessages, fr as StringType, bV as StringTypeDateTimeConstraints, _ as StringTypeFormatEnumFormat, ig as StringTypeFormatEnumFormatWithLiterals, fs as StringTypeFormatOptionsOneOf, bW as StringTypePhoneConstraints, bX as StringTypeValidationMessages, cI as Styles, d7 as StylesBorder, ak as StylesPosition, iD as StylesPositionWithLiterals, bL as SubmissionContactMapped, bN as SubmissionContactMappingSkipped, hR as SubmissionDocument, hS as SubmissionDocumentDocumentOneOf, bC as SubmissionErrorType, jV as SubmissionErrorTypeWithLiterals, Y as SubmissionStatus, id as SubmissionStatusWithLiterals, i7 as SubmissionValidationError, i8 as SubmissionValidationErrorErrorMessageOneOf, i6 as SubmissionValidationErrors, gZ as SubmissionValidationErrorsDetails, ic as SubmissionsQueryResult, gW as SubmitContactResponse, go as SubmitSettings, gp as SubmitSettingsSubmitSuccessActionOptionsOneOf, bs as SubmitSuccessAction, jL as SubmitSuccessActionWithLiterals, bD as Submitter, bE as SubmitterSubmitterOneOf, fT as SubscriptionInfo, a_ as SubscriptionInfoOptInLevel, jh as SubscriptionInfoOptInLevelWithLiterals, dS as TableCellData, dQ as TableData, bi as Tag, bI as TagList, jB as TagWithLiterals, ew as Tags, ex as TagsOption, br as Target, jK as TargetWithLiterals, a9 as TextAlignment, is as TextAlignmentWithLiterals, dt as TextData, cv as TextInput, e2 as TextNodeStyle, cN as TextStyle, gq as ThankYouMessageOptions, d0 as Thumbnails, ah as ThumbnailsAlignment, iA as ThumbnailsAlignmentWithLiterals, ee as TimeInput, aV as Type, jc as TypeWithLiterals, h$ as UpdateExtendedFieldsRequest, he as UpdateSubmissionRequest, hf as UpdateSubmissionResponse, aQ as UploadFileFormat, j7 as UploadFileFormatWithLiterals, gk as UpsertContact, gV as UpsertContactFromSubmissionRequest, eU as V4FormFieldContactInfo, eV as V4FormFieldContactInfoAdditionalInfoOneOf, fm as V4PageNavigationOptions, fl as V4RichContentOptions, i3 as ValidateFormSubmissionRequest, cl as Validation, g_ as ValidationError, $ as ValidationFormat, ih as ValidationFormatWithLiterals, fv as ValidationMessages, cm as ValidationValidationOneOf, aD as VerticalAlignment, iW as VerticalAlignmentWithLiterals, cW as Video, eN as VideoConferenceOptions, dL as VideoData, ad as ViewMode, iw as ViewModeWithLiterals, am as ViewRole, iF as ViewRoleWithLiterals, an as VoteRole, iG as VoteRoleWithLiterals, bw as WebhookIdentityType, jP as WebhookIdentityTypeWithLiterals, ab as Width, a5 as WidthType, io as WidthTypeWithLiterals, iu as WidthWithLiterals, g1 as WixFile, ba as WixFileComponentType, g2 as WixFileComponentTypeOptionsOneOf, jt as WixFileComponentTypeWithLiterals, f_ as _Array, f$ as _ArrayComponentTypeOptionsOneOf, fY as _Boolean, fZ as _BooleanComponentTypeOptionsOneOf, fW as _Number, fX as _NumberComponentTypeOptionsOneOf, g0 as _Object, fU as _String, fV as _StringComponentTypeOptionsOneOf } from './forms-v4-submission-submissions.universal-C2nk1vxO.mjs';
|
|
4
4
|
|
|
5
5
|
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
6
6
|
interface UpsertContactFromSubmissionSignature {
|
|
@@ -1371,6 +1371,11 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1371
1371
|
ComponentType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
|
|
1372
1372
|
return ComponentType2;
|
|
1373
1373
|
})(ComponentType || {});
|
|
1374
|
+
var ObjectArrayComponentType = /* @__PURE__ */ ((ObjectArrayComponentType2) => {
|
|
1375
|
+
ObjectArrayComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1376
|
+
ObjectArrayComponentType2["REPEATER"] = "REPEATER";
|
|
1377
|
+
return ObjectArrayComponentType2;
|
|
1378
|
+
})(ObjectArrayComponentType || {});
|
|
1374
1379
|
var SchedulingComponentType = /* @__PURE__ */ ((SchedulingComponentType2) => {
|
|
1375
1380
|
SchedulingComponentType2["UNKNOWN_COMPONENT_TYPE"] = "UNKNOWN_COMPONENT_TYPE";
|
|
1376
1381
|
SchedulingComponentType2["APPOINTMENT"] = "APPOINTMENT";
|
|
@@ -2810,6 +2815,7 @@ export {
|
|
|
2810
2815
|
NullValue,
|
|
2811
2816
|
NumberComponentType,
|
|
2812
2817
|
NumberOfColumns,
|
|
2818
|
+
ObjectArrayComponentType,
|
|
2813
2819
|
Operator,
|
|
2814
2820
|
OptInLevel,
|
|
2815
2821
|
Orientation,
|