@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 index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4532
4674
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4533
4675
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4534
4676
|
declare namespace index_d$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 index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$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 index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$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, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$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 index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$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, index_d$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 index_d$2_FormChanged as FormChanged, type index_d$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 index_d$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 index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$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 index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$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 index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$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 index_d$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 index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$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 index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$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 index_d$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 index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$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 index_d$2__publicBulkCreateFormType as _publicBulkCreateFormType, type index_d$2__publicBulkRemoveDeletedFieldType as _publicBulkRemoveDeletedFieldType, type index_d$2__publicCloneFormType as _publicCloneFormType, type index_d$2__publicCountFormsType as _publicCountFormsType, type index_d$2__publicCreateFormType as _publicCreateFormType, type index_d$2__publicDeleteFormType as _publicDeleteFormType, type index_d$2__publicGetDeletedFormType as _publicGetDeletedFormType, type index_d$2__publicGetFormType as _publicGetFormType, type index_d$2__publicListDeletedFormsType as _publicListDeletedFormsType, type index_d$2__publicListFormsType as _publicListFormsType, type index_d$2__publicQueryDeletedFormsType as _publicQueryDeletedFormsType, type index_d$2__publicQueryFormsType as _publicQueryFormsType, type index_d$2__publicRemoveFormFromTrashBinType as _publicRemoveFormFromTrashBinType, type index_d$2__publicRestoreFromTrashBinType as _publicRestoreFromTrashBinType, type index_d$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type index_d$2__publicUpdateFormType as _publicUpdateFormType, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$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 index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$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 index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$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, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$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 index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$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, index_d$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 index_d$2_FormChanged as FormChanged, type index_d$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 index_d$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 index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$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 index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$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 index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$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 index_d$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 index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$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 index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, RequiredIndicator$1 as RequiredIndicator, RequiredIndicatorPlacement$1 as RequiredIndicatorPlacement, type RequiredIndicatorProperties$1 as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$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 index_d$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 index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$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 index_d$2__publicBulkCreateFormType as _publicBulkCreateFormType, type index_d$2__publicBulkRemoveDeletedFieldType as _publicBulkRemoveDeletedFieldType, type index_d$2__publicCloneFormType as _publicCloneFormType, type index_d$2__publicCountFormsType as _publicCountFormsType, type index_d$2__publicCreateFormType as _publicCreateFormType, type index_d$2__publicDeleteFormType as _publicDeleteFormType, type index_d$2__publicGetDeletedFormType as _publicGetDeletedFormType, type index_d$2__publicGetFormType as _publicGetFormType, type index_d$2__publicListDeletedFormsType as _publicListDeletedFormsType, type index_d$2__publicListFormsType as _publicListFormsType, type index_d$2__publicQueryDeletedFormsType as _publicQueryDeletedFormsType, type index_d$2__publicQueryFormsType as _publicQueryFormsType, type index_d$2__publicRemoveFormFromTrashBinType as _publicRemoveFormFromTrashBinType, type index_d$2__publicRestoreFromTrashBinType as _publicRestoreFromTrashBinType, type index_d$2__publicUpdateExtendedFieldsType as _publicUpdateExtendedFieldsType, type index_d$2__publicUpdateFormType as _publicUpdateFormType, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$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 index_d_PaymentComponentType: typeof PaymentComponentType;
|
|
|
9844
10299
|
type index_d_PaymentComponentTypeOptionsOneOf = PaymentComponentTypeOptionsOneOf;
|
|
9845
10300
|
type index_d_PaymentType = PaymentType;
|
|
9846
10301
|
type index_d_Permissions = Permissions;
|
|
10302
|
+
type index_d_PhoneConstraints = PhoneConstraints;
|
|
9847
10303
|
type index_d_PhoneInfo = PhoneInfo;
|
|
9848
10304
|
type index_d_PhoneInfoTag = PhoneInfoTag;
|
|
9849
10305
|
declare const index_d_PhoneInfoTag: typeof PhoneInfoTag;
|
|
@@ -9936,6 +10392,7 @@ type index_d_StringErrorMessages = StringErrorMessages;
|
|
|
9936
10392
|
type index_d_StringType = StringType;
|
|
9937
10393
|
type index_d_StringTypeDateTimeConstraints = StringTypeDateTimeConstraints;
|
|
9938
10394
|
type index_d_StringTypeFormatOptionsOneOf = StringTypeFormatOptionsOneOf;
|
|
10395
|
+
type index_d_StringTypePhoneConstraints = StringTypePhoneConstraints;
|
|
9939
10396
|
type index_d_Styles = Styles;
|
|
9940
10397
|
type index_d_SubmissionContactMapped = SubmissionContactMapped;
|
|
9941
10398
|
type index_d_SubmissionContactMappingSkipped = SubmissionContactMappingSkipped;
|
|
@@ -10035,7 +10492,6 @@ type index_d__publicDeleteSubmissionType = _publicDeleteSubmissionType;
|
|
|
10035
10492
|
type index_d__publicGetDeletedSubmissionType = _publicGetDeletedSubmissionType;
|
|
10036
10493
|
type index_d__publicGetMediaUploadUrlType = _publicGetMediaUploadUrlType;
|
|
10037
10494
|
type index_d__publicGetSubmissionType = _publicGetSubmissionType;
|
|
10038
|
-
type index_d__publicIsFormSubmittableType = _publicIsFormSubmittableType;
|
|
10039
10495
|
type index_d__publicListDeletedSubmissionsType = _publicListDeletedSubmissionsType;
|
|
10040
10496
|
type index_d__publicQuerySubmissionType = _publicQuerySubmissionType;
|
|
10041
10497
|
type index_d__publicQuerySubmissionsByNamespaceType = _publicQuerySubmissionsByNamespaceType;
|
|
@@ -10057,7 +10513,6 @@ declare const index_d_deleteSubmission: typeof deleteSubmission;
|
|
|
10057
10513
|
declare const index_d_getDeletedSubmission: typeof getDeletedSubmission;
|
|
10058
10514
|
declare const index_d_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
10059
10515
|
declare const index_d_getSubmission: typeof getSubmission;
|
|
10060
|
-
declare const index_d_isFormSubmittable: typeof isFormSubmittable;
|
|
10061
10516
|
declare const index_d_listDeletedSubmissions: typeof listDeletedSubmissions;
|
|
10062
10517
|
declare const index_d_querySubmission: typeof querySubmission;
|
|
10063
10518
|
declare const index_d_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
@@ -10067,7 +10522,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
10067
10522
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
10068
10523
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
10069
10524
|
declare namespace index_d {
|
|
10070
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type index_d__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type index_d__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type index_d__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type index_d__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type index_d__publicConfirmSubmissionType as _publicConfirmSubmissionType, type index_d__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type index_d__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type index_d__publicCountSubmissionsType as _publicCountSubmissionsType, type index_d__publicCreateSubmissionType as _publicCreateSubmissionType, type index_d__publicDeleteSubmissionType as _publicDeleteSubmissionType, type index_d__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type index_d__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type index_d__publicGetSubmissionType as _publicGetSubmissionType, type index_d__publicIsFormSubmittableType as _publicIsFormSubmittableType, type index_d__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type index_d__publicQuerySubmissionType as _publicQuerySubmissionType, type index_d__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type index_d__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type index_d__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type index_d__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type index_d__publicUpdateSubmissionType as _publicUpdateSubmissionType, type index_d__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_isFormSubmittable as isFormSubmittable, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10525
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type index_d__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type index_d__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type index_d__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type index_d__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type index_d__publicConfirmSubmissionType as _publicConfirmSubmissionType, type index_d__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type index_d__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type index_d__publicCountSubmissionsType as _publicCountSubmissionsType, type index_d__publicCreateSubmissionType as _publicCreateSubmissionType, type index_d__publicDeleteSubmissionType as _publicDeleteSubmissionType, type index_d__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type index_d__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type index_d__publicGetSubmissionType as _publicGetSubmissionType, type index_d__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type index_d__publicQuerySubmissionType as _publicQuerySubmissionType, type index_d__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type index_d__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type index_d__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type index_d__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type index_d__publicUpdateSubmissionType as _publicUpdateSubmissionType, type index_d__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10071
10526
|
}
|
|
10072
10527
|
|
|
10073
10528
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|