@wix/forms 1.0.128 → 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 +500 -87
- package/type-bundles/index.bundle.d.ts +500 -87
- package/type-bundles/meta.bundle.d.ts +1 -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.
|
|
@@ -4365,56 +4399,140 @@ interface UpdateExtendedFieldsOptions {
|
|
|
4365
4399
|
namespaceData: Record<string, any> | null;
|
|
4366
4400
|
}
|
|
4367
4401
|
|
|
4368
|
-
|
|
4369
|
-
interface
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
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>;
|
|
4373
4410
|
}
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
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>;
|
|
4400
4535
|
}
|
|
4401
|
-
|
|
4402
|
-
declare function createForm$1(httpClient: HttpClient): (form: Form$1) => Promise<Form$1 & FormNonNullableFields>;
|
|
4403
|
-
declare function bulkCreateForm$1(httpClient: HttpClient): (options?: BulkCreateFormOptions) => Promise<BulkCreateFormResponse & BulkCreateFormResponseNonNullableFields>;
|
|
4404
|
-
declare function cloneForm$1(httpClient: HttpClient): (formId: string) => Promise<CloneFormResponse & CloneFormResponseNonNullableFields>;
|
|
4405
|
-
declare function getForm$1(httpClient: HttpClient): (formId: string, options?: GetFormOptions) => Promise<Form$1 & FormNonNullableFields>;
|
|
4406
|
-
declare function updateForm$1(httpClient: HttpClient): (_id: string | null, form: UpdateForm) => Promise<Form$1 & FormNonNullableFields>;
|
|
4407
|
-
declare function removeFormFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<void>;
|
|
4408
|
-
declare function deleteForm$1(httpClient: HttpClient): (formId: string, options?: DeleteFormOptions) => Promise<void>;
|
|
4409
|
-
declare function restoreFromTrashBin$1(httpClient: HttpClient): (formId: string) => Promise<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
|
|
4410
|
-
declare function queryForms$1(httpClient: HttpClient): (options?: QueryFormsOptions) => FormsQueryBuilder;
|
|
4411
|
-
declare function countForms$1(httpClient: HttpClient): (namespace: string, options?: CountFormsOptions) => Promise<CountFormsResponse & CountFormsResponseNonNullableFields>;
|
|
4412
|
-
declare function listForms$1(httpClient: HttpClient): (namespace: string, options?: ListFormsOptions) => Promise<ListFormsResponse & ListFormsResponseNonNullableFields>;
|
|
4413
|
-
declare function getDeletedForm$1(httpClient: HttpClient): (formId: string) => Promise<GetDeletedFormResponse & GetDeletedFormResponseNonNullableFields>;
|
|
4414
|
-
declare function queryDeletedForms$1(httpClient: HttpClient): (query: CursorQuery$2) => Promise<QueryDeletedFormsResponse & QueryDeletedFormsResponseNonNullableFields>;
|
|
4415
|
-
declare function listDeletedForms$1(httpClient: HttpClient): (namespace: string, options?: ListDeletedFormsOptions) => Promise<ListDeletedFormsResponse & ListDeletedFormsResponseNonNullableFields>;
|
|
4416
|
-
declare function bulkRemoveDeletedField$1(httpClient: HttpClient): (formId: string, options?: BulkRemoveDeletedFieldOptions) => Promise<BulkRemoveDeletedFieldResponse & BulkRemoveDeletedFieldResponseNonNullableFields>;
|
|
4417
|
-
declare function updateExtendedFields$1(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions) => Promise<UpdateExtendedFieldsResponse & UpdateExtendedFieldsResponseNonNullableFields>;
|
|
4418
4536
|
|
|
4419
4537
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4420
4538
|
|
|
@@ -5321,18 +5439,110 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
5321
5439
|
find: () => Promise<FormSpamSubmissionReportsQueryResult>;
|
|
5322
5440
|
}
|
|
5323
5441
|
|
|
5324
|
-
declare function checkForSpam$1(httpClient: HttpClient):
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
declare function
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
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
|
+
}
|
|
5336
5546
|
|
|
5337
5547
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5338
5548
|
|
|
@@ -9494,33 +9704,238 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
9494
9704
|
emailVerified?: boolean;
|
|
9495
9705
|
}
|
|
9496
9706
|
|
|
9497
|
-
declare function
|
|
9498
|
-
|
|
9499
|
-
|
|
9500
|
-
|
|
9501
|
-
|
|
9502
|
-
|
|
9503
|
-
|
|
9504
|
-
|
|
9505
|
-
|
|
9506
|
-
|
|
9507
|
-
|
|
9508
|
-
|
|
9509
|
-
declare function
|
|
9510
|
-
|
|
9511
|
-
|
|
9512
|
-
|
|
9513
|
-
|
|
9514
|
-
|
|
9515
|
-
|
|
9516
|
-
|
|
9517
|
-
|
|
9518
|
-
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
|
+
}
|
|
9519
9936
|
|
|
9520
9937
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
9521
9938
|
|
|
9522
|
-
type _publicIsFormSubmittableType = typeof isFormSubmittable$1;
|
|
9523
|
-
declare const isFormSubmittable: ReturnType<typeof createRESTModule<_publicIsFormSubmittableType>>;
|
|
9524
9939
|
type _publicCreateSubmissionType = typeof createSubmission$1;
|
|
9525
9940
|
declare const createSubmission: ReturnType<typeof createRESTModule<_publicCreateSubmissionType>>;
|
|
9526
9941
|
type _publicBulkCreateSubmissionBySubmitterType = typeof bulkCreateSubmissionBySubmitter$1;
|
|
@@ -10077,7 +10492,6 @@ type context__publicDeleteSubmissionType = _publicDeleteSubmissionType;
|
|
|
10077
10492
|
type context__publicGetDeletedSubmissionType = _publicGetDeletedSubmissionType;
|
|
10078
10493
|
type context__publicGetMediaUploadUrlType = _publicGetMediaUploadUrlType;
|
|
10079
10494
|
type context__publicGetSubmissionType = _publicGetSubmissionType;
|
|
10080
|
-
type context__publicIsFormSubmittableType = _publicIsFormSubmittableType;
|
|
10081
10495
|
type context__publicListDeletedSubmissionsType = _publicListDeletedSubmissionsType;
|
|
10082
10496
|
type context__publicQuerySubmissionType = _publicQuerySubmissionType;
|
|
10083
10497
|
type context__publicQuerySubmissionsByNamespaceType = _publicQuerySubmissionsByNamespaceType;
|
|
@@ -10099,7 +10513,6 @@ declare const context_deleteSubmission: typeof deleteSubmission;
|
|
|
10099
10513
|
declare const context_getDeletedSubmission: typeof getDeletedSubmission;
|
|
10100
10514
|
declare const context_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
10101
10515
|
declare const context_getSubmission: typeof getSubmission;
|
|
10102
|
-
declare const context_isFormSubmittable: typeof isFormSubmittable;
|
|
10103
10516
|
declare const context_listDeletedSubmissions: typeof listDeletedSubmissions;
|
|
10104
10517
|
declare const context_querySubmission: typeof querySubmission;
|
|
10105
10518
|
declare const context_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
@@ -10109,7 +10522,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
10109
10522
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
10110
10523
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
10111
10524
|
declare namespace context {
|
|
10112
|
-
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, context_DateFormatPart as DateFormatPart, type context_DateOptions as DateOptions, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type context__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type context__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type context__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type context__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type context__publicConfirmSubmissionType as _publicConfirmSubmissionType, type context__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type context__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type context__publicCountSubmissionsType as _publicCountSubmissionsType, type context__publicCreateSubmissionType as _publicCreateSubmissionType, type context__publicDeleteSubmissionType as _publicDeleteSubmissionType, type context__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type context__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type context__publicGetSubmissionType as _publicGetSubmissionType, type context__publicIsFormSubmittableType as _publicIsFormSubmittableType, type context__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type context__publicQuerySubmissionType as _publicQuerySubmissionType, type context__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type context__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type context__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type context__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type context__publicUpdateSubmissionType as _publicUpdateSubmissionType, type context__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_isFormSubmittable as isFormSubmittable, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10525
|
+
export { type context_ActionEvent as ActionEvent, type context_AddressInfo as AddressInfo, type context_AddressLine2 as AddressLine2, context_Alignment as Alignment, type context_AnchorData as AnchorData, type context_AppEmbedData as AppEmbedData, type context_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context_AppType as AppType, type context_ApplicationError as ApplicationError, type context_ArrayErrorMessages as ArrayErrorMessages, type context_ArrayItems as ArrayItems, type context_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context_ArrayType as ArrayType, type context_ArrayTypeArrayItems as ArrayTypeArrayItems, type context_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context_AudioData as AudioData, type context_Background as Background, type context_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context_BackgroundType as BackgroundType, type context_BlockquoteData as BlockquoteData, type context_BookingData as BookingData, context_BooleanComponentType as BooleanComponentType, type context_BooleanErrorMessages as BooleanErrorMessages, type context_BooleanType as BooleanType, type context_Border as Border, type context_BorderColors as BorderColors, type context_BreakPoint as BreakPoint, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_BulletedListData as BulletedListData, type context_ButtonData as ButtonData, context_ButtonDataType as ButtonDataType, type context_CellStyle as CellStyle, type context_Checkbox as Checkbox, type context_CheckboxGroup as CheckboxGroup, type context_Checkout as Checkout, type context_CodeBlockData as CodeBlockData, type context_CollapsibleListData as CollapsibleListData, type context_ColorData as ColorData, type context_Colors as Colors, type context_CommonCustomOption as CommonCustomOption, context_ComponentType as ComponentType, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, context_ContactField as ContactField, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type context_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type context_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, context_Crop as Crop, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_CustomFieldInfo as CustomFieldInfo, type context_CustomOption as CustomOption, type context_DataExtensionsDetails as DataExtensionsDetails, context_DateFormatPart as DateFormatPart, type context_DateOptions as DateOptions, type context_DatePickerOptions as DatePickerOptions, type context_DateTimeConstraints as DateTimeConstraints, type context_DateTimeInput as DateTimeInput, type context_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context_DateTimeInputType as DateTimeInputType, type context_DateTimeOptions as DateTimeOptions, type context_Decoration as Decoration, type context_DecorationDataOneOf as DecorationDataOneOf, context_DecorationType as DecorationType, type context_DefaultCountryConfig as DefaultCountryConfig, type context_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_Design as Design, type context_Dimensions as Dimensions, context_Direction as Direction, type context_DisplayField as DisplayField, type context_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context_DividerData as DividerData, type context_DocumentStyle as DocumentStyle, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_DonationInput as DonationInput, type context_DonationInputOption as DonationInputOption, type context_Dropdown as Dropdown, type context_DropdownCustomOption as DropdownCustomOption, type context_DropdownOption as DropdownOption, type context_DynamicPriceOptions as DynamicPriceOptions, type context_EmailInfo as EmailInfo, context_EmailInfoTag as EmailInfoTag, type context_EmbedData as EmbedData, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventData as EventData, type context_ExtendedFields as ExtendedFields, type context_FieldGroup as FieldGroup, type context_FieldOverrides as FieldOverrides, context_FieldType as FieldType, type context_FieldsOverrides as FieldsOverrides, type context_FieldsSettings as FieldsSettings, type context_FileData as FileData, type context_FileSource as FileSource, type context_FileSourceDataOneOf as FileSourceDataOneOf, type context_FileUpload as FileUpload, context_FirstDayOfWeek as FirstDayOfWeek, type context_FixedPriceOptions as FixedPriceOptions, type context_FontSizeData as FontSizeData, context_FontType as FontType, type context_Form as Form, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormField as FormField, type context_FormFieldContactInfo as FormFieldContactInfo, type context_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context_FormFieldV2 as FormFieldV2, type context_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context_FormLayout as FormLayout, type context_FormOverride as FormOverride, type context_FormProperties as FormProperties, type context_FormRule as FormRule, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, context_Format as Format, context_FormatEnumFormat as FormatEnumFormat, type context_GIF as GIF, type context_GIFData as GIFData, type context_GalleryData as GalleryData, type context_GalleryOptions as GalleryOptions, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_Gradient as Gradient, type context_Group as Group, type context_HTMLData as HTMLData, type context_HTMLDataDataOneOf as HTMLDataDataOneOf, type context_Header as Header, type context_HeadingData as HeadingData, type context_Height as Height, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Image as Image, type context_ImageData as ImageData, context_InitialExpandedItems as InitialExpandedItems, type context_InputField as InputField, type context_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context_InputFieldArrayType as InputFieldArrayType, type context_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context_InputFieldBooleanType as InputFieldBooleanType, type context_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context_InputFieldIntegerType as InputFieldIntegerType, type context_InputFieldMultilineAddress as InputFieldMultilineAddress, type context_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context_InputFieldNumberType as InputFieldNumberType, type context_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context_InputFieldObjectType as InputFieldObjectType, type context_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context_InputFieldStringType as InputFieldStringType, type context_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context_InputType as InputType, type context_IntegerType as IntegerType, type context_IsFormSubmittableRequest as IsFormSubmittableRequest, type context_IsFormSubmittableResponse as IsFormSubmittableResponse, type context_Item as Item, type context_ItemDataOneOf as ItemDataOneOf, type context_ItemLayout as ItemLayout, type context_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type context_ItemMetadata as ItemMetadata, type context_ItemStyle as ItemStyle, context_ItemType as ItemType, context_Kind as Kind, type context_Layout as Layout, context_LayoutType as LayoutType, type context_LimitationRule as LimitationRule, context_LineStyle as LineStyle, type context_Link as Link, type context_LinkData as LinkData, type context_LinkDataOneOf as LinkDataOneOf, type context_LinkPreviewData as LinkPreviewData, context_LinkTarget as LinkTarget, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_ListValue as ListValue, type context_MapData as MapData, type context_MapSettings as MapSettings, context_MapType as MapType, type context_Margin as Margin, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemMediaOneOf as MediaItemMediaOneOf, type context_MentionData as MentionData, type context_MessageEnvelope as MessageEnvelope, type context_Metadata as Metadata, context_Mode as Mode, type context_MultilineAddress as MultilineAddress, context_MultilineAddressComponentType as MultilineAddressComponentType, type context_MultilineAddressValidation as MultilineAddressValidation, type context_NestedForm as NestedForm, type context_NestedFormFieldOverrides as NestedFormFieldOverrides, type context_NestedFormOverrides as NestedFormOverrides, type context_Node as Node, type context_NodeDataOneOf as NodeDataOneOf, type context_NodeStyle as NodeStyle, context_NodeType as NodeType, context_NullValue as NullValue, context_NumberComponentType as NumberComponentType, type context_NumberErrorMessages as NumberErrorMessages, type context_NumberInput as NumberInput, context_NumberOfColumns as NumberOfColumns, type context_NumberType as NumberType, type context_ObjectErrorMessages as ObjectErrorMessages, type context_ObjectType as ObjectType, type context_ObjectTypePropertiesType as ObjectTypePropertiesType, type context_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context_Oembed as Oembed, context_OptInLevel as OptInLevel, type context_Option as Option, type context_OptionDesign as OptionDesign, type context_OptionLayout as OptionLayout, type context_OrderDetails as OrderDetails, type context_OrderedListData as OrderedListData, context_Orientation as Orientation, context_OverrideEntityType as OverrideEntityType, type context_PDFSettings as PDFSettings, type context_ParagraphData as ParagraphData, type context_Payment as Payment, context_PaymentComponentType as PaymentComponentType, type context_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context_PaymentType as PaymentType, type context_Permissions as Permissions, type context_PhoneConstraints as PhoneConstraints, type context_PhoneInfo as PhoneInfo, context_PhoneInfoTag as PhoneInfoTag, type context_PhoneInput as PhoneInput, type context_PlaybackOptions as PlaybackOptions, type context_PluginContainerData as PluginContainerData, context_PluginContainerDataAlignment as PluginContainerDataAlignment, type context_PluginContainerDataWidth as PluginContainerDataWidth, type context_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context_Poll as Poll, type context_PollData as PollData, type context_PollDataLayout as PollDataLayout, type context_PollDesign as PollDesign, type context_PollLayout as PollLayout, context_PollLayoutDirection as PollLayoutDirection, context_PollLayoutType as PollLayoutType, type context_PollOption as PollOption, type context_PostSubmissionTriggers as PostSubmissionTriggers, type context_PredefinedValidation as PredefinedValidation, type context_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context_PriceType as PriceType, type context_Product as Product, type context_ProductCheckboxGroup as ProductCheckboxGroup, type context_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context_ProductType as ProductType, type context_PropertiesType as PropertiesType, context_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context_QuantityLimit as QuantityLimit, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RadioGroup as RadioGroup, type context_RadioGroupCustomOption as RadioGroupCustomOption, type context_RadioGroupOption as RadioGroupOption, type context_RatingInput as RatingInput, type context_Redirect as Redirect, type context_RedirectOptions as RedirectOptions, type context_Rel as Rel, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, context_RequiredIndicator as RequiredIndicator, context_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context_RequiredIndicatorProperties as RequiredIndicatorProperties, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_RichContent as RichContent, type context_RichText as RichText, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type context_Section as Section, type context_Settings as Settings, type context_Signature as Signature, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, context_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context_Spoiler as Spoiler, type context_SpoilerData as SpoilerData, type context_Step as Step, context_StringComponentType as StringComponentType, type context_StringErrorMessages as StringErrorMessages, type context_StringType as StringType, type context_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context_StringTypePhoneConstraints as StringTypePhoneConstraints, type context_Styles as Styles, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitButton as SubmitButton, type context_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context_SubmitContactResponse as SubmitContactResponse, type context_SubmitSettings as SubmitSettings, type context_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context_SubmitSuccessAction as SubmitSuccessAction, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_SubscriptionInfo as SubscriptionInfo, context_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type context_TableCellData as TableCellData, type context_TableData as TableData, context_Tag as Tag, context_Target as Target, context_TextAlignment as TextAlignment, type context_TextData as TextData, type context_TextInput as TextInput, type context_TextNodeStyle as TextNodeStyle, type context_TextStyle as TextStyle, type context_ThankYouMessage as ThankYouMessage, type context_ThankYouMessageOptions as ThankYouMessageOptions, type context_Thumbnails as Thumbnails, context_ThumbnailsAlignment as ThumbnailsAlignment, type context_TimeOptions as TimeOptions, context_Type as Type, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, context_UploadFileFormat as UploadFileFormat, type context_UpsertContact as UpsertContact, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_UrlTargetEnumTarget as UrlTargetEnumTarget, type context_Validation as Validation, context_ValidationFormat as ValidationFormat, type context_ValidationValidationOneOf as ValidationValidationOneOf, context_VerticalAlignment as VerticalAlignment, type context_Video as Video, type context_VideoData as VideoData, context_ViewMode as ViewMode, context_ViewRole as ViewRole, context_VoteRole as VoteRole, context_WebhookIdentityType as WebhookIdentityType, context_Width as Width, context_WidthType as WidthType, type context_WixFile as WixFile, context_WixFileComponentType as WixFileComponentType, type context_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context__Array as _Array, type context__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context__Boolean as _Boolean, type context__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context__Number as _Number, type context__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context__Object as _Object, type context__ObjectValidationOneOf as _ObjectValidationOneOf, type context__String as _String, type context__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type context__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type context__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type context__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type context__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type context__publicConfirmSubmissionType as _publicConfirmSubmissionType, type context__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type context__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type context__publicCountSubmissionsType as _publicCountSubmissionsType, type context__publicCreateSubmissionType as _publicCreateSubmissionType, type context__publicDeleteSubmissionType as _publicDeleteSubmissionType, type context__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type context__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type context__publicGetSubmissionType as _publicGetSubmissionType, type context__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type context__publicQuerySubmissionType as _publicQuerySubmissionType, type context__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type context__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type context__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type context__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type context__publicUpdateSubmissionType as _publicUpdateSubmissionType, type context__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
10113
10526
|
}
|
|
10114
10527
|
|
|
10115
10528
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|