@wix/forms 1.0.127 → 1.0.129
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/index.d.ts +4 -3
- package/build/cjs/index.js +6 -3
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +4 -3
- package/build/es/index.js +4 -3
- package/build/es/index.js.map +1 -1
- package/package.json +5 -5
- package/type-bundles/context.bundle.d.ts +543 -88
- package/type-bundles/index.bundle.d.ts +543 -88
- package/type-bundles/meta.bundle.d.ts +49 -11
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
|
2
|
+
interface HttpClient {
|
|
3
|
+
request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
|
|
4
|
+
fetchWithAuth: typeof fetch;
|
|
5
|
+
wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
|
|
6
|
+
}
|
|
7
|
+
type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
|
|
8
|
+
type HttpResponse<T = any> = {
|
|
9
|
+
data: T;
|
|
10
|
+
status: number;
|
|
11
|
+
statusText: string;
|
|
12
|
+
headers: any;
|
|
13
|
+
request?: any;
|
|
14
|
+
};
|
|
15
|
+
type RequestOptions<_TResponse = any, Data = any> = {
|
|
16
|
+
method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
|
|
17
|
+
url: string;
|
|
18
|
+
data?: Data;
|
|
19
|
+
params?: URLSearchParams;
|
|
20
|
+
} & APIMetadata;
|
|
21
|
+
type APIMetadata = {
|
|
22
|
+
methodFqn?: string;
|
|
23
|
+
entityFqdn?: string;
|
|
24
|
+
packageName?: string;
|
|
25
|
+
};
|
|
26
|
+
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
27
|
+
|
|
28
|
+
declare global {
|
|
29
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
30
|
+
interface SymbolConstructor {
|
|
31
|
+
readonly observable: symbol;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
1
35
|
interface Form$1 {
|
|
2
36
|
/**
|
|
3
37
|
* Form ID.
|
|
@@ -117,6 +151,8 @@ interface StringType$1 extends StringTypeFormatOptionsOneOf$1 {
|
|
|
117
151
|
timeOptions?: DateTimeConstraints$1;
|
|
118
152
|
/** DATE_OPTIONAL_TIME format options */
|
|
119
153
|
dateOptionalTimeOptions?: DateTimeConstraints$1;
|
|
154
|
+
/** PHONE format options */
|
|
155
|
+
phoneOptions?: PhoneConstraints$1;
|
|
120
156
|
/** Minimum length. */
|
|
121
157
|
minLength?: number | null;
|
|
122
158
|
/** Maximum length. */
|
|
@@ -140,6 +176,8 @@ interface StringTypeFormatOptionsOneOf$1 {
|
|
|
140
176
|
timeOptions?: DateTimeConstraints$1;
|
|
141
177
|
/** DATE_OPTIONAL_TIME format options */
|
|
142
178
|
dateOptionalTimeOptions?: DateTimeConstraints$1;
|
|
179
|
+
/** PHONE format options */
|
|
180
|
+
phoneOptions?: PhoneConstraints$1;
|
|
143
181
|
}
|
|
144
182
|
declare enum Format$1 {
|
|
145
183
|
UNDEFINED = "UNDEFINED",
|
|
@@ -177,6 +215,10 @@ interface DateTimeConstraints$1 {
|
|
|
177
215
|
*/
|
|
178
216
|
maximum?: string | null;
|
|
179
217
|
}
|
|
218
|
+
interface PhoneConstraints$1 {
|
|
219
|
+
/** Country codes for phone number that are allowed */
|
|
220
|
+
allowedCountryCodes?: string[];
|
|
221
|
+
}
|
|
180
222
|
interface NumberType$1 {
|
|
181
223
|
/** Inclusive maximum value. */
|
|
182
224
|
maximum?: number | null;
|
|
@@ -494,6 +536,8 @@ interface InputFieldStringType$1 extends InputFieldStringTypeFormatOptionsOneOf$
|
|
|
494
536
|
timeOptions?: StringTypeDateTimeConstraints$1;
|
|
495
537
|
/** DATE_OPTIONAL_TIME format options */
|
|
496
538
|
dateOptionalTimeOptions?: StringTypeDateTimeConstraints$1;
|
|
539
|
+
/** PHONE format options */
|
|
540
|
+
phoneOptions?: StringTypePhoneConstraints$1;
|
|
497
541
|
/** Minimum length. */
|
|
498
542
|
minLength?: number | null;
|
|
499
543
|
/** Maximum length. */
|
|
@@ -517,6 +561,8 @@ interface InputFieldStringTypeFormatOptionsOneOf$1 {
|
|
|
517
561
|
timeOptions?: StringTypeDateTimeConstraints$1;
|
|
518
562
|
/** DATE_OPTIONAL_TIME format options */
|
|
519
563
|
dateOptionalTimeOptions?: StringTypeDateTimeConstraints$1;
|
|
564
|
+
/** PHONE format options */
|
|
565
|
+
phoneOptions?: StringTypePhoneConstraints$1;
|
|
520
566
|
}
|
|
521
567
|
declare enum FormatEnumFormat$1 {
|
|
522
568
|
UNDEFINED = "UNDEFINED",
|
|
@@ -554,6 +600,10 @@ interface StringTypeDateTimeConstraints$1 {
|
|
|
554
600
|
*/
|
|
555
601
|
maximum?: string | null;
|
|
556
602
|
}
|
|
603
|
+
interface StringTypePhoneConstraints$1 {
|
|
604
|
+
/** Country codes for phone number that are allowed */
|
|
605
|
+
allowedCountryCodes?: string[];
|
|
606
|
+
}
|
|
557
607
|
declare enum StringComponentType$1 {
|
|
558
608
|
UNKNOWN = "UNKNOWN",
|
|
559
609
|
TEXT_INPUT = "TEXT_INPUT",
|
|
@@ -3427,7 +3477,11 @@ declare enum WebhookIdentityType$2 {
|
|
|
3427
3477
|
WIX_USER = "WIX_USER",
|
|
3428
3478
|
APP = "APP"
|
|
3429
3479
|
}
|
|
3480
|
+
interface PhoneConstraintsNonNullableFields {
|
|
3481
|
+
allowedCountryCodes: string[];
|
|
3482
|
+
}
|
|
3430
3483
|
interface StringTypeNonNullableFields {
|
|
3484
|
+
phoneOptions?: PhoneConstraintsNonNullableFields;
|
|
3431
3485
|
format: Format$1;
|
|
3432
3486
|
}
|
|
3433
3487
|
interface BooleanTypeNonNullableFields {
|
|
@@ -3781,7 +3835,11 @@ interface DateTimeInputNonNullableFields {
|
|
|
3781
3835
|
interface PhoneInputNonNullableFields {
|
|
3782
3836
|
description?: RichContentNonNullableFields;
|
|
3783
3837
|
}
|
|
3838
|
+
interface StringTypePhoneConstraintsNonNullableFields {
|
|
3839
|
+
allowedCountryCodes: string[];
|
|
3840
|
+
}
|
|
3784
3841
|
interface InputFieldStringTypeNonNullableFields {
|
|
3842
|
+
phoneOptions?: StringTypePhoneConstraintsNonNullableFields;
|
|
3785
3843
|
format: FormatEnumFormat$1;
|
|
3786
3844
|
}
|
|
3787
3845
|
interface _StringNonNullableFields {
|
|
@@ -4341,56 +4399,140 @@ interface UpdateExtendedFieldsOptions {
|
|
|
4341
4399
|
namespaceData: Record<string, any> | null;
|
|
4342
4400
|
}
|
|
4343
4401
|
|
|
4344
|
-
|
|
4345
|
-
interface
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4402
|
+
declare function createForm$1(httpClient: HttpClient): CreateFormSignature;
|
|
4403
|
+
interface CreateFormSignature {
|
|
4404
|
+
/**
|
|
4405
|
+
* Creates a new form.
|
|
4406
|
+
* @param - Form to be created.
|
|
4407
|
+
* @returns The created form.
|
|
4408
|
+
*/
|
|
4409
|
+
(form: Form$1): Promise<Form$1 & FormNonNullableFields>;
|
|
4349
4410
|
}
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4411
|
+
declare function bulkCreateForm$1(httpClient: HttpClient): BulkCreateFormSignature;
|
|
4412
|
+
interface BulkCreateFormSignature {
|
|
4413
|
+
/**
|
|
4414
|
+
* Creates multiple new forms.
|
|
4415
|
+
*/
|
|
4416
|
+
(options?: BulkCreateFormOptions | undefined): Promise<BulkCreateFormResponse & BulkCreateFormResponseNonNullableFields>;
|
|
4417
|
+
}
|
|
4418
|
+
declare function cloneForm$1(httpClient: HttpClient): CloneFormSignature;
|
|
4419
|
+
interface CloneFormSignature {
|
|
4420
|
+
/**
|
|
4421
|
+
* Clones an existing form.
|
|
4422
|
+
* @param - Id of the form to clone.
|
|
4423
|
+
*/
|
|
4424
|
+
(formId: string): Promise<CloneFormResponse & CloneFormResponseNonNullableFields>;
|
|
4425
|
+
}
|
|
4426
|
+
declare function getForm$1(httpClient: HttpClient): GetFormSignature;
|
|
4427
|
+
interface GetFormSignature {
|
|
4428
|
+
/**
|
|
4429
|
+
* Gets a form by id.
|
|
4430
|
+
* @param - Id of the form to retrieve.
|
|
4431
|
+
* @returns The retrieved form.
|
|
4432
|
+
*/
|
|
4433
|
+
(formId: string, options?: GetFormOptions | undefined): Promise<Form$1 & FormNonNullableFields>;
|
|
4434
|
+
}
|
|
4435
|
+
declare function updateForm$1(httpClient: HttpClient): UpdateFormSignature;
|
|
4436
|
+
interface UpdateFormSignature {
|
|
4437
|
+
/**
|
|
4438
|
+
* Updates a form, supports partial update.
|
|
4439
|
+
* Pass the latest `revision` for a successful update.
|
|
4440
|
+
* @param - Form ID.
|
|
4441
|
+
* @returns The updated form.
|
|
4442
|
+
*/
|
|
4443
|
+
(_id: string | null, form: UpdateForm): Promise<Form$1 & FormNonNullableFields>;
|
|
4444
|
+
}
|
|
4445
|
+
declare function removeFormFromTrashBin$1(httpClient: HttpClient): RemoveFormFromTrashBinSignature;
|
|
4446
|
+
interface RemoveFormFromTrashBinSignature {
|
|
4447
|
+
/**
|
|
4448
|
+
* Deletes a form. It is stored in trash for 90 days.
|
|
4449
|
+
* On form permanent deletion, all submissions are also deleted.
|
|
4450
|
+
* @param - Id of the form to delete.
|
|
4451
|
+
*/
|
|
4452
|
+
(formId: string): Promise<void>;
|
|
4453
|
+
}
|
|
4454
|
+
declare function deleteForm$1(httpClient: HttpClient): DeleteFormSignature;
|
|
4455
|
+
interface DeleteFormSignature {
|
|
4456
|
+
/**
|
|
4457
|
+
* Deletes a form. It is stored in trash for 90 days.
|
|
4458
|
+
* On form permanent deletion, all submissions are also deleted.
|
|
4459
|
+
* @param - Id of the form to delete.
|
|
4460
|
+
*/
|
|
4461
|
+
(formId: string, options?: DeleteFormOptions | undefined): Promise<void>;
|
|
4462
|
+
}
|
|
4463
|
+
declare function restoreFromTrashBin$1(httpClient: HttpClient): RestoreFromTrashBinSignature;
|
|
4464
|
+
interface RestoreFromTrashBinSignature {
|
|
4465
|
+
/**
|
|
4466
|
+
* Restores a form from trash.
|
|
4467
|
+
* @param - Id of the form to restore.
|
|
4468
|
+
*/
|
|
4469
|
+
(formId: string): Promise<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
|
|
4470
|
+
}
|
|
4471
|
+
declare function queryForms$1(httpClient: HttpClient): QueryFormsSignature;
|
|
4472
|
+
interface QueryFormsSignature {
|
|
4473
|
+
/**
|
|
4474
|
+
* Query forms using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
4475
|
+
*/
|
|
4476
|
+
(options?: QueryFormsOptions | undefined): FormsQueryBuilder;
|
|
4477
|
+
}
|
|
4478
|
+
declare function countForms$1(httpClient: HttpClient): CountFormsSignature;
|
|
4479
|
+
interface CountFormsSignature {
|
|
4480
|
+
/**
|
|
4481
|
+
* Counts forms.
|
|
4482
|
+
* @param - Namespace name.
|
|
4483
|
+
*/
|
|
4484
|
+
(namespace: string, options?: CountFormsOptions | undefined): Promise<CountFormsResponse & CountFormsResponseNonNullableFields>;
|
|
4485
|
+
}
|
|
4486
|
+
declare function listForms$1(httpClient: HttpClient): ListFormsSignature;
|
|
4487
|
+
interface ListFormsSignature {
|
|
4488
|
+
/**
|
|
4489
|
+
* Lists forms, filtered by namespace and its disabled status. If specified, sorts forms in the desired order.
|
|
4490
|
+
* Provides a subset of QueryForms supported capabilities.
|
|
4491
|
+
* @param - Namespace name.
|
|
4492
|
+
*/
|
|
4493
|
+
(namespace: string, options?: ListFormsOptions | undefined): Promise<ListFormsResponse & ListFormsResponseNonNullableFields>;
|
|
4494
|
+
}
|
|
4495
|
+
declare function getDeletedForm$1(httpClient: HttpClient): GetDeletedFormSignature;
|
|
4496
|
+
interface GetDeletedFormSignature {
|
|
4497
|
+
/**
|
|
4498
|
+
* Get a deleted Form by id
|
|
4499
|
+
* @param - Id of the Form to retrieve
|
|
4500
|
+
*/
|
|
4501
|
+
(formId: string): Promise<GetDeletedFormResponse & GetDeletedFormResponseNonNullableFields>;
|
|
4502
|
+
}
|
|
4503
|
+
declare function queryDeletedForms$1(httpClient: HttpClient): QueryDeletedFormsSignature;
|
|
4504
|
+
interface QueryDeletedFormsSignature {
|
|
4505
|
+
/**
|
|
4506
|
+
* Query deleted Forms using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language)
|
|
4507
|
+
* @param - WQL expression, namespace equality filter is required.
|
|
4508
|
+
*/
|
|
4509
|
+
(query: CursorQuery$2): Promise<QueryDeletedFormsResponse & QueryDeletedFormsResponseNonNullableFields>;
|
|
4510
|
+
}
|
|
4511
|
+
declare function listDeletedForms$1(httpClient: HttpClient): ListDeletedFormsSignature;
|
|
4512
|
+
interface ListDeletedFormsSignature {
|
|
4513
|
+
/**
|
|
4514
|
+
* List deleted Forms
|
|
4515
|
+
* @param - Namespace name.
|
|
4516
|
+
*/
|
|
4517
|
+
(namespace: string, options?: ListDeletedFormsOptions | undefined): Promise<ListDeletedFormsResponse & ListDeletedFormsResponseNonNullableFields>;
|
|
4518
|
+
}
|
|
4519
|
+
declare function bulkRemoveDeletedField$1(httpClient: HttpClient): BulkRemoveDeletedFieldSignature;
|
|
4520
|
+
interface BulkRemoveDeletedFieldSignature {
|
|
4521
|
+
/**
|
|
4522
|
+
* Remove delete field by its target
|
|
4523
|
+
* @param - Id of the form to delete.
|
|
4524
|
+
*/
|
|
4525
|
+
(formId: string, options?: BulkRemoveDeletedFieldOptions | undefined): Promise<BulkRemoveDeletedFieldResponse & BulkRemoveDeletedFieldResponseNonNullableFields>;
|
|
4526
|
+
}
|
|
4527
|
+
declare function updateExtendedFields$1(httpClient: HttpClient): UpdateExtendedFieldsSignature;
|
|
4528
|
+
interface UpdateExtendedFieldsSignature {
|
|
4529
|
+
/**
|
|
4530
|
+
* Update Extended Fields of the Form
|
|
4531
|
+
* @param - ID of the entity to update.
|
|
4532
|
+
* @param - Identifier for the app whose extended fields are being updated.
|
|
4533
|
+
*/
|
|
4534
|
+
(_id: string, namespace: string, options: UpdateExtendedFieldsOptions): Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
|
|
4376
4535
|
}
|
|
4377
|
-
|
|
4378
|
-
declare function createForm$1(httpClient: HttpClient): (form: Form$1) => Promise<Form$1 & FormNonNullableFields>;
|
|
4379
|
-
declare function bulkCreateForm$1(httpClient: HttpClient): (options?: BulkCreateFormOptions) => Promise<BulkCreateFormResponse & BulkCreateFormResponseNonNullableFields>;
|
|
4380
|
-
declare function cloneForm$1(httpClient: HttpClient): (formId: string) => Promise<CloneFormResponse & CloneFormResponseNonNullableFields>;
|
|
4381
|
-
declare function getForm$1(httpClient: HttpClient): (formId: string, options?: GetFormOptions) => Promise<Form$1 & FormNonNullableFields>;
|
|
4382
|
-
declare function updateForm$1(httpClient: HttpClient): (_id: string | null, form: UpdateForm) => Promise<Form$1 & FormNonNullableFields>;
|
|
4383
|
-
declare function removeFormFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<void>;
|
|
4384
|
-
declare function deleteForm$1(httpClient: HttpClient): (formId: string, options?: DeleteFormOptions) => Promise<void>;
|
|
4385
|
-
declare function restoreFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
|
|
4386
|
-
declare function queryForms$1(httpClient: HttpClient): (options?: QueryFormsOptions) => FormsQueryBuilder;
|
|
4387
|
-
declare function countForms$1(httpClient: HttpClient): (namespace: string, options?: CountFormsOptions) => Promise<CountFormsResponse & CountFormsResponseNonNullableFields>;
|
|
4388
|
-
declare function listForms$1(httpClient: HttpClient): (namespace: string, options?: ListFormsOptions) => Promise<ListFormsResponse & ListFormsResponseNonNullableFields>;
|
|
4389
|
-
declare function getDeletedForm$1(httpClient: HttpClient): (formId: string) => Promise<GetDeletedFormResponse & GetDeletedFormResponseNonNullableFields>;
|
|
4390
|
-
declare function queryDeletedForms$1(httpClient: HttpClient): (query: CursorQuery$2) => Promise<QueryDeletedFormsResponse & QueryDeletedFormsResponseNonNullableFields>;
|
|
4391
|
-
declare function listDeletedForms$1(httpClient: HttpClient): (namespace: string, options?: ListDeletedFormsOptions) => Promise<ListDeletedFormsResponse & ListDeletedFormsResponseNonNullableFields>;
|
|
4392
|
-
declare function bulkRemoveDeletedField$1(httpClient: HttpClient): (formId: string, options?: BulkRemoveDeletedFieldOptions) => Promise<BulkRemoveDeletedFieldResponse & BulkRemoveDeletedFieldResponseNonNullableFields>;
|
|
4393
|
-
declare function updateExtendedFields$1(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions) => Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
|
|
4394
4536
|
|
|
4395
4537
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4396
4538
|
|
|
@@ -4532,7 +4674,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4532
4674
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4533
4675
|
declare const context$2_updateForm: typeof updateForm;
|
|
4534
4676
|
declare namespace context$2 {
|
|
4535
|
-
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, DateFormatPart$1 as DateFormatPart, type DateOptions$1 as DateOptions, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypePropertiesType$1 as PropertiesTypePropertiesType, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, type context$2__publicBulkCreateFormType as _publicBulkCreateFormType, type context$2__publicBulkRemoveDeletedFieldType as _publicBulkRemoveDeletedFieldType, type context$2__publicCloneFormType as _publicCloneFormType, type context$2__publicCountFormsType as _publicCountFormsType, type context$2__publicCreateFormType as _publicCreateFormType, type context$2__publicDeleteFormType as _publicDeleteFormType, type context$2__publicGetDeletedFormType as _publicGetDeletedFormType, type context$2__publicGetFormType as _publicGetFormType, type context$2__publicListDeletedFormsType as _publicListDeletedFormsType, type context$2__publicListFormsType as _publicListFormsType, type context$2__publicQueryDeletedFormsType as _publicQueryDeletedFormsType, type context$2__publicQueryFormsType as _publicQueryFormsType, type context$2__publicRemoveFormFromTrashBinType as _publicRemoveFormFromTrashBinType, type context$2__publicRestoreFromTrashBinType as _publicRestoreFromTrashBinType, type context$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type context$2__publicUpdateFormType as _publicUpdateFormType, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4677
|
+
export { type ActionEvent$2 as ActionEvent, type AddressInfo$1 as AddressInfo, type AddressLine2$1 as AddressLine2, Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$2 as ApplicationError, type ArrayErrorMessages$1 as ArrayErrorMessages, type ArrayItems$1 as ArrayItems, type ArrayItemsItemsOneOf$1 as ArrayItemsItemsOneOf, type ArrayType$1 as ArrayType, type ArrayTypeArrayItems$1 as ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf$1 as ArrayTypeArrayItemsItemTypeOptionsOneOf, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, BooleanComponentType$1 as BooleanComponentType, type BooleanErrorMessages$1 as BooleanErrorMessages, type BooleanType$1 as BooleanType, type Border$1 as Border, type BorderColors$1 as BorderColors, type BreakPoint$1 as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, ButtonDataType$1 as ButtonDataType, type CellStyle$1 as CellStyle, type Checkbox$1 as Checkbox, type CheckboxGroup$1 as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, type CommonCustomOption$1 as CommonCustomOption, ComponentType$1 as ComponentType, ContactField$1 as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, Crop$1 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type CustomFieldInfo$1 as CustomFieldInfo, type CustomOption$1 as CustomOption, type DataExtensionsDetails$1 as DataExtensionsDetails, DateFormatPart$1 as DateFormatPart, type DateOptions$1 as DateOptions, type DatePickerOptions$1 as DatePickerOptions, type DateTimeConstraints$1 as DateTimeConstraints, type DateTimeInput$1 as DateTimeInput, type DateTimeInputDateTimeInputTypeOptionsOneOf$1 as DateTimeInputDateTimeInputTypeOptionsOneOf, DateTimeInputType$1 as DateTimeInputType, type DateTimeOptions$1 as DateTimeOptions, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type DefaultCountryConfig$1 as DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf$1 as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DisplayField$1 as DisplayField, type DisplayFieldComponentTypeOneOf$1 as DisplayFieldComponentTypeOneOf, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DonationInput$1 as DonationInput, type DonationInputOption$1 as DonationInputOption, type Dropdown$1 as Dropdown, type DropdownCustomOption$1 as DropdownCustomOption, type DropdownOption$1 as DropdownOption, type DynamicPriceOptions$1 as DynamicPriceOptions, type EmailInfo$1 as EmailInfo, EmailInfoTag$1 as EmailInfoTag, type EmbedData$1 as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$1 as EventData, type ExtendedFields$2 as ExtendedFields, type FieldGroup$1 as FieldGroup, type FieldOverrides$1 as FieldOverrides, FieldType$1 as FieldType, type FieldsOverrides$1 as FieldsOverrides, type FieldsSettings$1 as FieldsSettings, context$2_Fieldset as Fieldset, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FileUpload$1 as FileUpload, FirstDayOfWeek$1 as FirstDayOfWeek, type FixedPriceOptions$1 as FixedPriceOptions, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, type Form$1 as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type FormField$1 as FormField, type FormFieldContactInfo$1 as FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf$1 as FormFieldContactInfoAdditionalInfoOneOf, type FormFieldV2$1 as FormFieldV2, type FormFieldV2FieldTypeOptionsOneOf$1 as FormFieldV2FieldTypeOptionsOneOf, type FormLayout$1 as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type FormOverride$1 as FormOverride, type FormProperties$1 as FormProperties, type FormRule$1 as FormRule, Format$1 as Format, FormatEnumFormat$1 as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type Gradient$1 as Gradient, type Group$1 as Group, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type Header$1 as Header, type HeadingData$1 as HeadingData, type Height$1 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type InputField$1 as InputField, type InputFieldArrayErrorMessages$1 as InputFieldArrayErrorMessages, type InputFieldArrayType$1 as InputFieldArrayType, type InputFieldBooleanErrorMessages$1 as InputFieldBooleanErrorMessages, type InputFieldBooleanType$1 as InputFieldBooleanType, type InputFieldInputTypeOptionsOneOf$1 as InputFieldInputTypeOptionsOneOf, type InputFieldIntegerType$1 as InputFieldIntegerType, type InputFieldMultilineAddress$1 as InputFieldMultilineAddress, type InputFieldMultilineAddressComponentTypeOptionsOneOf$1 as InputFieldMultilineAddressComponentTypeOptionsOneOf, type InputFieldNumberErrorMessages$1 as InputFieldNumberErrorMessages, type InputFieldNumberType$1 as InputFieldNumberType, type InputFieldObjectErrorMessages$1 as InputFieldObjectErrorMessages, type InputFieldObjectType$1 as InputFieldObjectType, type InputFieldStringErrorMessages$1 as InputFieldStringErrorMessages, type InputFieldStringType$1 as InputFieldStringType, type InputFieldStringTypeFormatOptionsOneOf$1 as InputFieldStringTypeFormatOptionsOneOf, InputType$1 as InputType, type IntegerType$1 as IntegerType, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemLayout$1 as ItemLayout, type ItemLayoutItemOneOf$1 as ItemLayoutItemOneOf, type ItemMetadata$2 as ItemMetadata, type ItemStyle$1 as ItemStyle, ItemType$1 as ItemType, Kind$1 as Kind, type Layout$1 as Layout, LayoutType$1 as LayoutType, type LimitationRule$1 as LimitationRule, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, LinkTarget$1 as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type ListValue$1 as ListValue, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Margin$1 as Margin, type Media$1 as Media, type MediaItem$1 as MediaItem, type MediaItemMediaOneOf$1 as MediaItemMediaOneOf, type MentionData$1 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$1 as Metadata, type MultilineAddress$1 as MultilineAddress, MultilineAddressComponentType$1 as MultilineAddressComponentType, type MultilineAddressValidation$1 as MultilineAddressValidation, type NestedForm$1 as NestedForm, type NestedFormFieldOverrides$1 as NestedFormFieldOverrides, type NestedFormOverrides$1 as NestedFormOverrides, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, NullValue$1 as NullValue, NumberComponentType$1 as NumberComponentType, type NumberErrorMessages$1 as NumberErrorMessages, type NumberInput$1 as NumberInput, NumberOfColumns$1 as NumberOfColumns, type NumberType$1 as NumberType, type ObjectErrorMessages$1 as ObjectErrorMessages, type ObjectType$1 as ObjectType, type ObjectTypePropertiesType$1 as ObjectTypePropertiesType, type ObjectTypePropertiesTypePropertiesTypeOptionsOneOf$1 as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type Oembed$1 as Oembed, OptInLevel$2 as OptInLevel, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, OverrideEntityType$1 as OverrideEntityType, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Payment$1 as Payment, PaymentComponentType$1 as PaymentComponentType, type PaymentComponentTypeOptionsOneOf$1 as PaymentComponentTypeOptionsOneOf, type PaymentType$1 as PaymentType, type Permissions$1 as Permissions, type PhoneConstraints$1 as PhoneConstraints, type PhoneInfo$1 as PhoneInfo, PhoneInfoTag$1 as PhoneInfoTag, type PhoneInput$1 as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type PollOption$1 as PollOption, type PostSubmissionTriggers$1 as PostSubmissionTriggers, type PredefinedValidation$1 as PredefinedValidation, type PredefinedValidationFormatOptionsOneOf$1 as PredefinedValidationFormatOptionsOneOf, PriceType$1 as PriceType, type Product$1 as Product, type ProductCheckboxGroup$1 as ProductCheckboxGroup, type ProductCheckboxGroupOption$1 as ProductCheckboxGroupOption, type ProductPriceOptionsOneOf$1 as ProductPriceOptionsOneOf, ProductType$1 as ProductType, type PropertiesType$1 as PropertiesType, PropertiesTypePropertiesType$1 as PropertiesTypePropertiesType, type PropertiesTypePropertiesTypeOneOf$1 as PropertiesTypePropertiesTypeOneOf, type QuantityLimit$1 as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type RadioGroup$1 as RadioGroup, type RadioGroupCustomOption$1 as RadioGroupCustomOption, type RadioGroupOption$1 as RadioGroupOption, type RatingInput$1 as RatingInput, type Redirect$1 as Redirect, type RedirectOptions$1 as RedirectOptions, type Rel$1 as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type RichContent$1 as RichContent, type RichText$1 as RichText, type Section$1 as Section, type Settings$1 as Settings, type Signature$1 as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$1 as Source, SpamFilterProtectionLevel$1 as SpamFilterProtectionLevel, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Step$1 as Step, StringComponentType$1 as StringComponentType, type StringErrorMessages$1 as StringErrorMessages, type StringType$1 as StringType, type StringTypeDateTimeConstraints$1 as StringTypeDateTimeConstraints, type StringTypeFormatOptionsOneOf$1 as StringTypeFormatOptionsOneOf, type StringTypePhoneConstraints$1 as StringTypePhoneConstraints, type Styles$1 as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type SubmitButton$1 as SubmitButton, type SubmitButtonSubmitActionOneOf$1 as SubmitButtonSubmitActionOneOf, type SubmitSettings$1 as SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf$1 as SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction$1 as SubmitSuccessAction, type SubscriptionInfo$1 as SubscriptionInfo, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Tag$1 as Tag, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextInput$1 as TextInput, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type ThankYouMessage$1 as ThankYouMessage, type ThankYouMessageOptions$1 as ThankYouMessageOptions, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type TimeOptions$1 as TimeOptions, Type$1 as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, UploadFileFormat$1 as UploadFileFormat, type UpsertContact$1 as UpsertContact, UrlTargetEnumTarget$1 as UrlTargetEnumTarget, type Validation$1 as Validation, ValidationFormat$1 as ValidationFormat, type ValidationValidationOneOf$1 as ValidationValidationOneOf, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$1 as Width, WidthType$1 as WidthType, type WixFile$1 as WixFile, WixFileComponentType$1 as WixFileComponentType, type WixFileComponentTypeOptionsOneOf$1 as WixFileComponentTypeOptionsOneOf, type _Array$1 as _Array, type _ArrayComponentTypeOptionsOneOf$1 as _ArrayComponentTypeOptionsOneOf, type _Boolean$1 as _Boolean, type _BooleanComponentTypeOptionsOneOf$1 as _BooleanComponentTypeOptionsOneOf, type _Number$1 as _Number, type _NumberComponentTypeOptionsOneOf$1 as _NumberComponentTypeOptionsOneOf, type _Object$1 as _Object, type _ObjectValidationOneOf$1 as _ObjectValidationOneOf, type _String$1 as _String, type _StringComponentTypeOptionsOneOf$1 as _StringComponentTypeOptionsOneOf, type context$2__publicBulkCreateFormType as _publicBulkCreateFormType, type context$2__publicBulkRemoveDeletedFieldType as _publicBulkRemoveDeletedFieldType, type context$2__publicCloneFormType as _publicCloneFormType, type context$2__publicCountFormsType as _publicCountFormsType, type context$2__publicCreateFormType as _publicCreateFormType, type context$2__publicDeleteFormType as _publicDeleteFormType, type context$2__publicGetDeletedFormType as _publicGetDeletedFormType, type context$2__publicGetFormType as _publicGetFormType, type context$2__publicListDeletedFormsType as _publicListDeletedFormsType, type context$2__publicListFormsType as _publicListFormsType, type context$2__publicQueryDeletedFormsType as _publicQueryDeletedFormsType, type context$2__publicQueryFormsType as _publicQueryFormsType, type context$2__publicRemoveFormFromTrashBinType as _publicRemoveFormFromTrashBinType, type context$2__publicRestoreFromTrashBinType as _publicRestoreFromTrashBinType, type context$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type context$2__publicUpdateFormType as _publicUpdateFormType, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4536
4678
|
}
|
|
4537
4679
|
|
|
4538
4680
|
/**
|
|
@@ -5297,18 +5439,110 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
5297
5439
|
find: () => Promise<FormSpamSubmissionReportsQueryResult>;
|
|
5298
5440
|
}
|
|
5299
5441
|
|
|
5300
|
-
declare function checkForSpam$1(httpClient: HttpClient):
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
declare function
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5442
|
+
declare function checkForSpam$1(httpClient: HttpClient): CheckForSpamSignature;
|
|
5443
|
+
interface CheckForSpamSignature {
|
|
5444
|
+
/**
|
|
5445
|
+
* Checks if submission is a spam.
|
|
5446
|
+
* @param - Form submission.
|
|
5447
|
+
*/
|
|
5448
|
+
(submission: FormSubmission$1): Promise<CheckForSpamResponse & CheckForSpamResponseNonNullableFields>;
|
|
5449
|
+
}
|
|
5450
|
+
declare function createFormSpamSubmissionReport$1(httpClient: HttpClient): CreateFormSpamSubmissionReportSignature;
|
|
5451
|
+
interface CreateFormSpamSubmissionReportSignature {
|
|
5452
|
+
/**
|
|
5453
|
+
* Creates a new spam submission.
|
|
5454
|
+
* To upload submission media, use the FormSubmissionService.getMediaUploadUrl endpoint.
|
|
5455
|
+
* @param - Form spam submission report to be created.
|
|
5456
|
+
* @returns The created form spam submission report.
|
|
5457
|
+
*/
|
|
5458
|
+
(formSpamSubmissionReport: FormSpamSubmissionReport): Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
|
|
5459
|
+
}
|
|
5460
|
+
declare function getFormSpamSubmissionReport$1(httpClient: HttpClient): GetFormSpamSubmissionReportSignature;
|
|
5461
|
+
interface GetFormSpamSubmissionReportSignature {
|
|
5462
|
+
/**
|
|
5463
|
+
* Get a spam submission by id.
|
|
5464
|
+
* @param - Id of the form spam submission report to retrieve.
|
|
5465
|
+
* @returns The retrieved form spam submission report.
|
|
5466
|
+
*/
|
|
5467
|
+
(formSpamSubmissionReportId: string): Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
|
|
5468
|
+
}
|
|
5469
|
+
declare function deleteFormSpamSubmissionReport$1(httpClient: HttpClient): DeleteFormSpamSubmissionReportSignature;
|
|
5470
|
+
interface DeleteFormSpamSubmissionReportSignature {
|
|
5471
|
+
/**
|
|
5472
|
+
* Delete a spam submission report.
|
|
5473
|
+
* @param - Id of the form spam submission report to delete.
|
|
5474
|
+
*/
|
|
5475
|
+
(formSpamSubmissionReportId: string): Promise<void>;
|
|
5476
|
+
}
|
|
5477
|
+
declare function bulkDeleteFormSpamSubmissionReport$1(httpClient: HttpClient): BulkDeleteFormSpamSubmissionReportSignature;
|
|
5478
|
+
interface BulkDeleteFormSpamSubmissionReportSignature {
|
|
5479
|
+
/**
|
|
5480
|
+
* Deletes report by IDS or all for specific form.
|
|
5481
|
+
* @param - Form ID.
|
|
5482
|
+
*/
|
|
5483
|
+
(formId: string, options?: BulkDeleteFormSpamSubmissionReportOptions | undefined): Promise<BulkDeleteFormSpamSubmissionReportResponse & BulkDeleteFormSpamSubmissionReportResponseNonNullableFields>;
|
|
5484
|
+
}
|
|
5485
|
+
declare function bulkDeleteFormSpamSubmissionReportByFilter$1(httpClient: HttpClient): BulkDeleteFormSpamSubmissionReportByFilterSignature;
|
|
5486
|
+
interface BulkDeleteFormSpamSubmissionReportByFilterSignature {
|
|
5487
|
+
/**
|
|
5488
|
+
* Deletes reports by filter for specific form.
|
|
5489
|
+
* @param - Filter object.
|
|
5490
|
+
*
|
|
5491
|
+
* See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
|
|
5492
|
+
*/
|
|
5493
|
+
(filter: Record<string, any> | null): Promise<BulkDeleteFormSpamSubmissionReportByFilterResponse & BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields>;
|
|
5494
|
+
}
|
|
5495
|
+
declare function reportNotSpamSubmission$1(httpClient: HttpClient): ReportNotSpamSubmissionSignature;
|
|
5496
|
+
interface ReportNotSpamSubmissionSignature {
|
|
5497
|
+
/**
|
|
5498
|
+
* Report a spam submission as not spam. The submission is created, and the spam report is deleted.
|
|
5499
|
+
* Submission automations are triggered the same way as in standard submission creation flow.
|
|
5500
|
+
* @param - Id of the form spam submission report to report as not spam.
|
|
5501
|
+
*/
|
|
5502
|
+
(formSpamSubmissionReportId: string): Promise<ReportNotSpamSubmissionResponse & ReportNotSpamSubmissionResponseNonNullableFields>;
|
|
5503
|
+
}
|
|
5504
|
+
declare function bulkReportNotSpamSubmission$1(httpClient: HttpClient): BulkReportNotSpamSubmissionSignature;
|
|
5505
|
+
interface BulkReportNotSpamSubmissionSignature {
|
|
5506
|
+
/**
|
|
5507
|
+
* Report a spam submissions as not spam. The submissions is created, and the spam reports is deleted.
|
|
5508
|
+
* Submissions automations are triggered the same way as in standard submission creation flow.
|
|
5509
|
+
* @param - Id of the form to which belong reports
|
|
5510
|
+
*/
|
|
5511
|
+
(formId: string, options?: BulkReportNotSpamSubmissionOptions | undefined): Promise<BulkReportNotSpamSubmissionResponse & BulkReportNotSpamSubmissionResponseNonNullableFields>;
|
|
5512
|
+
}
|
|
5513
|
+
declare function reportSpamSubmission$1(httpClient: HttpClient): ReportSpamSubmissionSignature;
|
|
5514
|
+
interface ReportSpamSubmissionSignature {
|
|
5515
|
+
/**
|
|
5516
|
+
* Report a submission as spam. The spam submission report is created, and the submission is deleted.
|
|
5517
|
+
* @param - Id of the submission to report as spam.
|
|
5518
|
+
* @param - Identifies the reason why the submission was reported as spam.
|
|
5519
|
+
*/
|
|
5520
|
+
(submissionId: string, reportReason: ReportReason): Promise<ReportSpamSubmissionResponse & ReportSpamSubmissionResponseNonNullableFields>;
|
|
5521
|
+
}
|
|
5522
|
+
declare function bulkReportSpamSubmission$1(httpClient: HttpClient): BulkReportSpamSubmissionSignature;
|
|
5523
|
+
interface BulkReportSpamSubmissionSignature {
|
|
5524
|
+
/**
|
|
5525
|
+
* Report multiple submissions as spam. The spam submission reports is created, and the submissions is deleted.
|
|
5526
|
+
* @param - Id of the form to which belong submissions to report as spam.
|
|
5527
|
+
*/
|
|
5528
|
+
(formId: string, options?: BulkReportSpamSubmissionOptions | undefined): Promise<BulkReportSpamSubmissionResponse & BulkReportSpamSubmissionResponseNonNullableFields>;
|
|
5529
|
+
}
|
|
5530
|
+
declare function queryFormSpamSubmissionReportsByNamespace$1(httpClient: HttpClient): QueryFormSpamSubmissionReportsByNamespaceSignature;
|
|
5531
|
+
interface QueryFormSpamSubmissionReportsByNamespaceSignature {
|
|
5532
|
+
/**
|
|
5533
|
+
* Query form spam submission reports using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
5534
|
+
*/
|
|
5535
|
+
(): FormSpamSubmissionReportsQueryBuilder;
|
|
5536
|
+
}
|
|
5537
|
+
declare function countFormSpamSubmissionReports$1(httpClient: HttpClient): CountFormSpamSubmissionReportsSignature;
|
|
5538
|
+
interface CountFormSpamSubmissionReportsSignature {
|
|
5539
|
+
/**
|
|
5540
|
+
* Counts the number of spam submission reports belonging to the specified forms.
|
|
5541
|
+
* @param - Form IDs.
|
|
5542
|
+
* @param - Identifies the app which the form submissions belong to. For example, the namespace for the Wix Forms App is `"wix.form_app.form"`. The namespace of a submission can be retrieved using the Get Submission endpoint.
|
|
5543
|
+
*/
|
|
5544
|
+
(formIds: string[], namespace: string): Promise<CountFormSpamSubmissionReportsResponse & CountFormSpamSubmissionReportsResponseNonNullableFields>;
|
|
5545
|
+
}
|
|
5312
5546
|
|
|
5313
5547
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5314
5548
|
|
|
@@ -5714,6 +5948,8 @@ interface StringType extends StringTypeFormatOptionsOneOf {
|
|
|
5714
5948
|
timeOptions?: DateTimeConstraints;
|
|
5715
5949
|
/** DATE_OPTIONAL_TIME format options */
|
|
5716
5950
|
dateOptionalTimeOptions?: DateTimeConstraints;
|
|
5951
|
+
/** PHONE format options */
|
|
5952
|
+
phoneOptions?: PhoneConstraints;
|
|
5717
5953
|
/** Minimum length. */
|
|
5718
5954
|
minLength?: number | null;
|
|
5719
5955
|
/** Maximum length. */
|
|
@@ -5737,6 +5973,8 @@ interface StringTypeFormatOptionsOneOf {
|
|
|
5737
5973
|
timeOptions?: DateTimeConstraints;
|
|
5738
5974
|
/** DATE_OPTIONAL_TIME format options */
|
|
5739
5975
|
dateOptionalTimeOptions?: DateTimeConstraints;
|
|
5976
|
+
/** PHONE format options */
|
|
5977
|
+
phoneOptions?: PhoneConstraints;
|
|
5740
5978
|
}
|
|
5741
5979
|
declare enum Format {
|
|
5742
5980
|
UNDEFINED = "UNDEFINED",
|
|
@@ -5774,6 +6012,10 @@ interface DateTimeConstraints {
|
|
|
5774
6012
|
*/
|
|
5775
6013
|
maximum?: string | null;
|
|
5776
6014
|
}
|
|
6015
|
+
interface PhoneConstraints {
|
|
6016
|
+
/** Country codes for phone number that are allowed */
|
|
6017
|
+
allowedCountryCodes?: string[];
|
|
6018
|
+
}
|
|
5777
6019
|
interface NumberType {
|
|
5778
6020
|
/** Inclusive maximum value. */
|
|
5779
6021
|
maximum?: number | null;
|
|
@@ -6091,6 +6333,8 @@ interface InputFieldStringType extends InputFieldStringTypeFormatOptionsOneOf {
|
|
|
6091
6333
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
6092
6334
|
/** DATE_OPTIONAL_TIME format options */
|
|
6093
6335
|
dateOptionalTimeOptions?: StringTypeDateTimeConstraints;
|
|
6336
|
+
/** PHONE format options */
|
|
6337
|
+
phoneOptions?: StringTypePhoneConstraints;
|
|
6094
6338
|
/** Minimum length. */
|
|
6095
6339
|
minLength?: number | null;
|
|
6096
6340
|
/** Maximum length. */
|
|
@@ -6114,6 +6358,8 @@ interface InputFieldStringTypeFormatOptionsOneOf {
|
|
|
6114
6358
|
timeOptions?: StringTypeDateTimeConstraints;
|
|
6115
6359
|
/** DATE_OPTIONAL_TIME format options */
|
|
6116
6360
|
dateOptionalTimeOptions?: StringTypeDateTimeConstraints;
|
|
6361
|
+
/** PHONE format options */
|
|
6362
|
+
phoneOptions?: StringTypePhoneConstraints;
|
|
6117
6363
|
}
|
|
6118
6364
|
declare enum FormatEnumFormat {
|
|
6119
6365
|
UNDEFINED = "UNDEFINED",
|
|
@@ -6151,6 +6397,10 @@ interface StringTypeDateTimeConstraints {
|
|
|
6151
6397
|
*/
|
|
6152
6398
|
maximum?: string | null;
|
|
6153
6399
|
}
|
|
6400
|
+
interface StringTypePhoneConstraints {
|
|
6401
|
+
/** Country codes for phone number that are allowed */
|
|
6402
|
+
allowedCountryCodes?: string[];
|
|
6403
|
+
}
|
|
6154
6404
|
declare enum StringComponentType {
|
|
6155
6405
|
UNKNOWN = "UNKNOWN",
|
|
6156
6406
|
TEXT_INPUT = "TEXT_INPUT",
|
|
@@ -9454,33 +9704,238 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
9454
9704
|
emailVerified?: boolean;
|
|
9455
9705
|
}
|
|
9456
9706
|
|
|
9457
|
-
declare function
|
|
9458
|
-
|
|
9459
|
-
|
|
9460
|
-
|
|
9461
|
-
|
|
9462
|
-
|
|
9463
|
-
|
|
9464
|
-
|
|
9465
|
-
|
|
9466
|
-
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
declare function
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9473
|
-
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
declare function
|
|
9707
|
+
declare function createSubmission$1(httpClient: HttpClient): CreateSubmissionSignature;
|
|
9708
|
+
interface CreateSubmissionSignature {
|
|
9709
|
+
/**
|
|
9710
|
+
* Creates a submission.
|
|
9711
|
+
*
|
|
9712
|
+
*
|
|
9713
|
+
* The `createSubmission()` function is an alternative way to the [`WixFormsV2`](https://www.wix.com/velo/reference/$w/wixformsv2/submit) element for submitting a form. In this case, clicking the submit button is unnecessary, the submission is automatically created when calling this function.
|
|
9714
|
+
* @param - Submission to create.
|
|
9715
|
+
* @param - Optional fields.
|
|
9716
|
+
*/
|
|
9717
|
+
(submission: FormSubmission, options?: CreateSubmissionOptions | undefined): Promise<CreateSubmissionResponse & CreateSubmissionResponseNonNullableFields>;
|
|
9718
|
+
}
|
|
9719
|
+
declare function bulkCreateSubmissionBySubmitter$1(httpClient: HttpClient): BulkCreateSubmissionBySubmitterSignature;
|
|
9720
|
+
interface BulkCreateSubmissionBySubmitterSignature {
|
|
9721
|
+
/**
|
|
9722
|
+
* Creates multiple submissions with specified submitters.
|
|
9723
|
+
* Internal, migration only.
|
|
9724
|
+
* @param - Form id. Restricts submissions creation for a single form.
|
|
9725
|
+
*/
|
|
9726
|
+
(formId: string, options?: BulkCreateSubmissionBySubmitterOptions | undefined): Promise<BulkCreateSubmissionBySubmitterResponse & BulkCreateSubmissionBySubmitterResponseNonNullableFields>;
|
|
9727
|
+
}
|
|
9728
|
+
declare function getSubmission$1(httpClient: HttpClient): GetSubmissionSignature;
|
|
9729
|
+
interface GetSubmissionSignature {
|
|
9730
|
+
/**
|
|
9731
|
+
* Retrieves a submission by ID.
|
|
9732
|
+
* @param - ID of the submission to retrieve.
|
|
9733
|
+
*/
|
|
9734
|
+
(submissionId: string): Promise<GetSubmissionResponse & GetSubmissionResponseNonNullableFields>;
|
|
9735
|
+
}
|
|
9736
|
+
declare function updateSubmission$1(httpClient: HttpClient): UpdateSubmissionSignature;
|
|
9737
|
+
interface UpdateSubmissionSignature {
|
|
9738
|
+
/**
|
|
9739
|
+
* Updates a submission.
|
|
9740
|
+
*
|
|
9741
|
+
*
|
|
9742
|
+
* Each time the submission is updated, `revision` increments by 1. The existing `revision` must be included when updating the submission. This ensures you're working with the latest submission information, and prevents unintended overwrites.
|
|
9743
|
+
* @param - Submission ID.
|
|
9744
|
+
* @param - Submission to update.
|
|
9745
|
+
* @returns The updated submission.
|
|
9746
|
+
*/
|
|
9747
|
+
(_id: string | null, submission: UpdateSubmission): Promise<FormSubmission & FormSubmissionNonNullableFields>;
|
|
9748
|
+
}
|
|
9749
|
+
declare function confirmSubmission$1(httpClient: HttpClient): ConfirmSubmissionSignature;
|
|
9750
|
+
interface ConfirmSubmissionSignature {
|
|
9751
|
+
/**
|
|
9752
|
+
* Confirms a submission.
|
|
9753
|
+
*
|
|
9754
|
+
*
|
|
9755
|
+
* You can only confirm a submission that has a `PENDING` status.
|
|
9756
|
+
* When using forms from the [Wix Pricing Plans](https://www.wix.com/app-market/paid-plans?referral=collection&appIndex=42&referralTag=made-by-wix&referralSectionName=made-by-wix) app, the default submission status is `PENDING`.
|
|
9757
|
+
* When using forms from the [Wix Forms]() app, the default form submission status is `CONFIRMED`. You can change the default status for individual submissions using the `updateSubmission()` method.
|
|
9758
|
+
* @param - Submission ID to confirm.
|
|
9759
|
+
*/
|
|
9760
|
+
(submissionId: string): Promise<ConfirmSubmissionResponse & ConfirmSubmissionResponseNonNullableFields>;
|
|
9761
|
+
}
|
|
9762
|
+
declare function deleteSubmission$1(httpClient: HttpClient): DeleteSubmissionSignature;
|
|
9763
|
+
interface DeleteSubmissionSignature {
|
|
9764
|
+
/**
|
|
9765
|
+
* Deletes a submission.
|
|
9766
|
+
*
|
|
9767
|
+
*
|
|
9768
|
+
* This function moves the form submission into the trash bin. To delete the submission permanently, change the default `permanent` field value to `true.`
|
|
9769
|
+
* @param - ID of the submission to delete.
|
|
9770
|
+
* @param - Optional fields.
|
|
9771
|
+
*/
|
|
9772
|
+
(submissionId: string, options?: DeleteSubmissionOptions | undefined): Promise<void>;
|
|
9773
|
+
}
|
|
9774
|
+
declare function bulkDeleteSubmission$1(httpClient: HttpClient): BulkDeleteSubmissionSignature;
|
|
9775
|
+
interface BulkDeleteSubmissionSignature {
|
|
9776
|
+
/**
|
|
9777
|
+
* Deletes submissions by IDS for specific form.
|
|
9778
|
+
* @param - Form ID.
|
|
9779
|
+
*/
|
|
9780
|
+
(formId: string, options?: BulkDeleteSubmissionOptions | undefined): Promise<BulkDeleteSubmissionResponse & BulkDeleteSubmissionResponseNonNullableFields>;
|
|
9781
|
+
}
|
|
9782
|
+
declare function restoreSubmissionFromTrashBin$1(httpClient: HttpClient): RestoreSubmissionFromTrashBinSignature;
|
|
9783
|
+
interface RestoreSubmissionFromTrashBinSignature {
|
|
9784
|
+
/**
|
|
9785
|
+
* Restores deleted submission
|
|
9786
|
+
* @param - ID of the submission to restore.
|
|
9787
|
+
*/
|
|
9788
|
+
(submissionId: string): Promise<RestoreSubmissionFromTrashBinResponse & RestoreSubmissionFromTrashBinResponseNonNullableFields>;
|
|
9789
|
+
}
|
|
9790
|
+
declare function removeSubmissionFromTrashBin$1(httpClient: HttpClient): RemoveSubmissionFromTrashBinSignature;
|
|
9791
|
+
interface RemoveSubmissionFromTrashBinSignature {
|
|
9792
|
+
/**
|
|
9793
|
+
* Remove deleted submission
|
|
9794
|
+
* @param - ID of the submission to restore.
|
|
9795
|
+
*/
|
|
9796
|
+
(submissionId: string): Promise<void>;
|
|
9797
|
+
}
|
|
9798
|
+
declare function bulkRemoveSubmissionFromTrashBin$1(httpClient: HttpClient): BulkRemoveSubmissionFromTrashBinSignature;
|
|
9799
|
+
interface BulkRemoveSubmissionFromTrashBinSignature {
|
|
9800
|
+
/**
|
|
9801
|
+
* Remove multiple deleted submissions
|
|
9802
|
+
* @param - Form ID.
|
|
9803
|
+
*/
|
|
9804
|
+
(formId: string, options?: BulkRemoveSubmissionFromTrashBinOptions | undefined): Promise<BulkRemoveSubmissionFromTrashBinResponse & BulkRemoveSubmissionFromTrashBinResponseNonNullableFields>;
|
|
9805
|
+
}
|
|
9806
|
+
declare function listDeletedSubmissions$1(httpClient: HttpClient): ListDeletedSubmissionsSignature;
|
|
9807
|
+
interface ListDeletedSubmissionsSignature {
|
|
9808
|
+
/**
|
|
9809
|
+
* List deleted submissions
|
|
9810
|
+
* @param - Form ID.
|
|
9811
|
+
*/
|
|
9812
|
+
(formId: string, options?: ListDeletedSubmissionsOptions | undefined): Promise<ListDeletedSubmissionsResponse & ListDeletedSubmissionsResponseNonNullableFields>;
|
|
9813
|
+
}
|
|
9814
|
+
declare function getDeletedSubmission$1(httpClient: HttpClient): GetDeletedSubmissionSignature;
|
|
9815
|
+
interface GetDeletedSubmissionSignature {
|
|
9816
|
+
/**
|
|
9817
|
+
* Get deleted submission
|
|
9818
|
+
* @param - Submission id.
|
|
9819
|
+
*/
|
|
9820
|
+
(submissionId: string): Promise<GetDeletedSubmissionResponse & GetDeletedSubmissionResponseNonNullableFields>;
|
|
9821
|
+
}
|
|
9822
|
+
declare function querySubmission$1(httpClient: HttpClient): QuerySubmissionSignature;
|
|
9823
|
+
interface QuerySubmissionSignature {
|
|
9824
|
+
/**
|
|
9825
|
+
* Deprecated on '2023-08-08'. Use QuerySubmissionsByNamespace.
|
|
9826
|
+
* @param - Query options.
|
|
9827
|
+
* @deprecated
|
|
9828
|
+
*/
|
|
9829
|
+
(query: CursorQuery, options?: QuerySubmissionOptions | undefined): Promise<QuerySubmissionResponse & QuerySubmissionResponseNonNullableFields>;
|
|
9830
|
+
}
|
|
9831
|
+
declare function searchSubmissionsByNamespace$1(httpClient: HttpClient): SearchSubmissionsByNamespaceSignature;
|
|
9832
|
+
interface SearchSubmissionsByNamespaceSignature {
|
|
9833
|
+
/**
|
|
9834
|
+
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
9835
|
+
* <br>
|
|
9836
|
+
*
|
|
9837
|
+
* Returns a list of up to 100 submissions, given the provided paging, filtering, and sorting.
|
|
9838
|
+
*
|
|
9839
|
+
* You can only query submissions from a specified namespace. Use the query filter on the `namespace` field, otherwise you will receive an error.
|
|
9840
|
+
*
|
|
9841
|
+
* For field support for filters and sorting, see [Form Submissions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/api-reference/wix-forms/form-submissions/sort-and-filter).option
|
|
9842
|
+
*
|
|
9843
|
+
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
9844
|
+
* @param - Query options.
|
|
9845
|
+
*/
|
|
9846
|
+
(search: CursorSearch): Promise<SearchSubmissionsByNamespaceResponse & SearchSubmissionsByNamespaceResponseNonNullableFields>;
|
|
9847
|
+
}
|
|
9848
|
+
declare function querySubmissionsByNamespace$1(httpClient: HttpClient): QuerySubmissionsByNamespaceSignature;
|
|
9849
|
+
interface QuerySubmissionsByNamespaceSignature {
|
|
9850
|
+
/**
|
|
9851
|
+
* Creates a query to retrieve a list of submissions.
|
|
9852
|
+
*
|
|
9853
|
+
*
|
|
9854
|
+
* The `querySubmissionsByNamespace()` method builds a query to retrieve a list of submissions from the specified namespace and returns a [`SubmissionsQueryBuilder`](#submissionsquerybuilder) object.
|
|
9855
|
+
* >**Note:** You can only query submissions from a specified namespace. Use the query filter on the `namespace` field, otherwise you will receive an error.
|
|
9856
|
+
*
|
|
9857
|
+
* The returned object contains the query definition, which is typically used to run the query using the [`find()`](#submissionsquerybuilder/find) method.
|
|
9858
|
+
*
|
|
9859
|
+
* You can refine the query by chaining `SubmissionsQueryBuilder` methods onto the query. `SubmissionsQueryBuilder` methods enable you to sort, filter, and control the results that `querySubmissionsByNamespace()` returns.
|
|
9860
|
+
*
|
|
9861
|
+
* The following `SubmissionsQueryBuilder` methods are supported for `querySubmissionsByNamespace()`. For a full description of the Submissions object, see the object returned for the [`items`](#submissionsqueryresult/items) property in [`SubmissionsQueryResult`](#submissionsqueryresult).
|
|
9862
|
+
* @param - Query options.
|
|
9863
|
+
*/
|
|
9864
|
+
(options?: QuerySubmissionsByNamespaceOptions | undefined): SubmissionsQueryBuilder;
|
|
9865
|
+
}
|
|
9866
|
+
declare function countSubmissionsByFilter$1(httpClient: HttpClient): CountSubmissionsByFilterSignature;
|
|
9867
|
+
interface CountSubmissionsByFilterSignature {
|
|
9868
|
+
/**
|
|
9869
|
+
* > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
|
|
9870
|
+
* <br>
|
|
9871
|
+
* Counts the number of submissions belonging to forms that were filtered and contain a provided expression.
|
|
9872
|
+
* @param - A filter object. Must filter by namespace.
|
|
9873
|
+
*/
|
|
9874
|
+
(filter: Record<string, any> | null, options?: CountSubmissionsByFilterOptions | undefined): Promise<CountSubmissionsByFilterResponse & CountSubmissionsByFilterResponseNonNullableFields>;
|
|
9875
|
+
}
|
|
9876
|
+
declare function countSubmissions$1(httpClient: HttpClient): CountSubmissionsSignature;
|
|
9877
|
+
interface CountSubmissionsSignature {
|
|
9878
|
+
/**
|
|
9879
|
+
* Counts the number of submissions belonging to the specified forms.
|
|
9880
|
+
*
|
|
9881
|
+
*
|
|
9882
|
+
* The `countSubmissions()` function is useful for analytics and tracking purposes. For example, if you have a contact form on your website, you can use this function to track how many submissions it receives daily, weekly, or monthly.
|
|
9883
|
+
* @param - The app which the form submissions belong to. For example, the namespace for the Wix Forms app is `wix.form_app.form`. Call `getSubmission()` to retrieve the namespace.
|
|
9884
|
+
* @param - Form IDs which submissions should be counted.
|
|
9885
|
+
*/
|
|
9886
|
+
(formIds: string[], namespace: string, options?: CountSubmissionsOptions | undefined): Promise<CountSubmissionsResponse & CountSubmissionsResponseNonNullableFields>;
|
|
9887
|
+
}
|
|
9888
|
+
declare function countDeletedSubmissions$1(httpClient: HttpClient): CountDeletedSubmissionsSignature;
|
|
9889
|
+
interface CountDeletedSubmissionsSignature {
|
|
9890
|
+
/**
|
|
9891
|
+
* > **Note:**
|
|
9892
|
+
* > The Submissions API is only available in the Wix Studio editor.
|
|
9893
|
+
*
|
|
9894
|
+
* Counts the number of submissions belonging to the specified forms.
|
|
9895
|
+
* @param - Form IDs.
|
|
9896
|
+
* @param - Identifies the app which the form submissions belong to. For example, the namespace for the Wix Forms App is `"wix.form_app.form"`. The namespace of a submission can be retrieved using the Get Submission endpoint.
|
|
9897
|
+
*/
|
|
9898
|
+
(formIds: string[], namespace: string, options?: CountDeletedSubmissionsOptions | undefined): Promise<CountDeletedSubmissionsResponse & CountDeletedSubmissionsResponseNonNullableFields>;
|
|
9899
|
+
}
|
|
9900
|
+
declare function getMediaUploadUrl$1(httpClient: HttpClient): GetMediaUploadUrlSignature;
|
|
9901
|
+
interface GetMediaUploadUrlSignature {
|
|
9902
|
+
/**
|
|
9903
|
+
* Retrieves a URL generated by the [Media Manager](https://www.wix.com/velo/reference/wix-media-v2/files/generatefileuploadurl) to use when creating a submission that includes a field for uploading files.
|
|
9904
|
+
* > **Note:** You need at least a [Standard Premium](https://support.wix.com/en/article/choosing-a-premium-plan) plan for your site to upload files.
|
|
9905
|
+
*
|
|
9906
|
+
*
|
|
9907
|
+
* To learn how external clients can use the generated upload URL to upload a file to the Media Manager, see [Upload API](https://www.wix.com/velo/reference/wix-media-v2/files/upload-api).
|
|
9908
|
+
* @param - Form ID.
|
|
9909
|
+
* @param - Name of file to upload.
|
|
9910
|
+
* @param - [Mime type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types#) of file to upload.
|
|
9911
|
+
*
|
|
9912
|
+
* For example, `'image/png'`
|
|
9913
|
+
*/
|
|
9914
|
+
(formId: string, filename: string, mimeType: string): Promise<GetMediaUploadURLResponse & GetMediaUploadURLResponseNonNullableFields>;
|
|
9915
|
+
}
|
|
9916
|
+
declare function bulkMarkSubmissionsAsSeen$1(httpClient: HttpClient): BulkMarkSubmissionsAsSeenSignature;
|
|
9917
|
+
interface BulkMarkSubmissionsAsSeenSignature {
|
|
9918
|
+
/**
|
|
9919
|
+
* Marks form submissions as "seen".
|
|
9920
|
+
*
|
|
9921
|
+
*
|
|
9922
|
+
* This function marks the submissions as if they were seen by the site owner. Only site collaborators with the **[Manage Submission](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions)** permissions can mark submissions.
|
|
9923
|
+
* @param - IDs of submissions to mark as seen.
|
|
9924
|
+
* @param - ID of the form which the submissions belong to.
|
|
9925
|
+
*/
|
|
9926
|
+
(ids: string[], formId: string): Promise<void>;
|
|
9927
|
+
}
|
|
9928
|
+
declare function upsertContactFromSubmission$1(httpClient: HttpClient): UpsertContactFromSubmissionSignature;
|
|
9929
|
+
interface UpsertContactFromSubmissionSignature {
|
|
9930
|
+
/**
|
|
9931
|
+
* Upserts contact from submission.
|
|
9932
|
+
* @param - Submission from which contact needs to be upserted.
|
|
9933
|
+
*/
|
|
9934
|
+
(submissionId: string, options?: UpsertContactFromSubmissionOptions | undefined): Promise<UpsertContactFromSubmissionResponse & UpsertContactFromSubmissionResponseNonNullableFields>;
|
|
9935
|
+
}
|
|
9479
9936
|
|
|
9480
9937
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
9481
9938
|
|
|
9482
|
-
type _publicIsFormSubmittableType = typeof isFormSubmittable$1;
|
|
9483
|
-
declare const isFormSubmittable: ReturnType<typeof createRESTModule<_publicIsFormSubmittableType>>;
|
|
9484
9939
|
type _publicCreateSubmissionType = typeof createSubmission$1;
|
|
9485
9940
|
declare const createSubmission: ReturnType<typeof createRESTModule<_publicCreateSubmissionType>>;
|
|
9486
9941
|
type _publicBulkCreateSubmissionBySubmitterType = typeof bulkCreateSubmissionBySubmitter$1;
|
|
@@ -9844,6 +10299,7 @@ declare const context_PaymentComponentType: typeof PaymentComponentType;
|
|
|
9844
10299
|
type context_PaymentComponentTypeOptionsOneOf = PaymentComponentTypeOptionsOneOf;
|
|
9845
10300
|
type context_PaymentType = PaymentType;
|
|
9846
10301
|
type context_Permissions = Permissions;
|
|
10302
|
+
type context_PhoneConstraints = PhoneConstraints;
|
|
9847
10303
|
type context_PhoneInfo = PhoneInfo;
|
|
9848
10304
|
type context_PhoneInfoTag = PhoneInfoTag;
|
|
9849
10305
|
declare const context_PhoneInfoTag: typeof PhoneInfoTag;
|
|
@@ -9936,6 +10392,7 @@ type context_StringErrorMessages = StringErrorMessages;
|
|
|
9936
10392
|
type context_StringType = StringType;
|
|
9937
10393
|
type context_StringTypeDateTimeConstraints = StringTypeDateTimeConstraints;
|
|
9938
10394
|
type context_StringTypeFormatOptionsOneOf = StringTypeFormatOptionsOneOf;
|
|
10395
|
+
type context_StringTypePhoneConstraints = StringTypePhoneConstraints;
|
|
9939
10396
|
type context_Styles = Styles;
|
|
9940
10397
|
type context_SubmissionContactMapped = SubmissionContactMapped;
|
|
9941
10398
|
type context_SubmissionContactMappingSkipped = SubmissionContactMappingSkipped;
|
|
@@ -10035,7 +10492,6 @@ type context__publicDeleteSubmissionType = _publicDeleteSubmissionType;
|
|
|
10035
10492
|
type context__publicGetDeletedSubmissionType = _publicGetDeletedSubmissionType;
|
|
10036
10493
|
type context__publicGetMediaUploadUrlType = _publicGetMediaUploadUrlType;
|
|
10037
10494
|
type context__publicGetSubmissionType = _publicGetSubmissionType;
|
|
10038
|
-
type context__publicIsFormSubmittableType = _publicIsFormSubmittableType;
|
|
10039
10495
|
type context__publicListDeletedSubmissionsType = _publicListDeletedSubmissionsType;
|
|
10040
10496
|
type context__publicQuerySubmissionType = _publicQuerySubmissionType;
|
|
10041
10497
|
type context__publicQuerySubmissionsByNamespaceType = _publicQuerySubmissionsByNamespaceType;
|
|
@@ -10057,7 +10513,6 @@ declare const context_deleteSubmission: typeof deleteSubmission;
|
|
|
10057
10513
|
declare const context_getDeletedSubmission: typeof getDeletedSubmission;
|
|
10058
10514
|
declare const context_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
10059
10515
|
declare const context_getSubmission: typeof getSubmission;
|
|
10060
|
-
declare const context_isFormSubmittable: typeof isFormSubmittable;
|
|
10061
10516
|
declare const context_listDeletedSubmissions: typeof listDeletedSubmissions;
|
|
10062
10517
|
declare const context_querySubmission: typeof querySubmission;
|
|
10063
10518
|
declare const context_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
@@ -10067,7 +10522,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
10067
10522
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
10068
10523
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
10069
10524
|
declare namespace context {
|
|
10070
|
-
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, context_DateFormatPart as DateFormatPart, type context_DateOptions as DateOptions, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type context__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type context__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type context__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type context__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type context__publicConfirmSubmissionType as _publicConfirmSubmissionType, type context__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type context__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type context__publicCountSubmissionsType as _publicCountSubmissionsType, type context__publicCreateSubmissionType as _publicCreateSubmissionType, type context__publicDeleteSubmissionType as _publicDeleteSubmissionType, type context__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type context__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type context__publicGetSubmissionType as _publicGetSubmissionType, type context__publicIsFormSubmittableType as _publicIsFormSubmittableType, type context__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type context__publicQuerySubmissionType as _publicQuerySubmissionType, type context__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type context__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type context__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type context__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type context__publicUpdateSubmissionType as _publicUpdateSubmissionType, type context__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_isFormSubmittable as isFormSubmittable, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10525
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, context_DateFormatPart as DateFormatPart, type context_DateOptions as DateOptions, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type context__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type context__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type context__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type context__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type context__publicConfirmSubmissionType as _publicConfirmSubmissionType, type context__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type context__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type context__publicCountSubmissionsType as _publicCountSubmissionsType, type context__publicCreateSubmissionType as _publicCreateSubmissionType, type context__publicDeleteSubmissionType as _publicDeleteSubmissionType, type context__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type context__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type context__publicGetSubmissionType as _publicGetSubmissionType, type context__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type context__publicQuerySubmissionType as _publicQuerySubmissionType, type context__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type context__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type context__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type context__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type context__publicUpdateSubmissionType as _publicUpdateSubmissionType, type context__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10071
10526
|
}
|
|
10072
10527
|
|
|
10073
10528
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|