@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.
@@ -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
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
4369
- interface HttpClient {
4370
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4371
- fetchWithAuth: typeof fetch;
4372
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
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
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
4375
- type HttpResponse<T = any> = {
4376
- data: T;
4377
- status: number;
4378
- statusText: string;
4379
- headers: any;
4380
- request?: any;
4381
- };
4382
- type RequestOptions<_TResponse = any, Data = any> = {
4383
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
4384
- url: string;
4385
- data?: Data;
4386
- params?: URLSearchParams;
4387
- } & APIMetadata;
4388
- type APIMetadata = {
4389
- methodFqn?: string;
4390
- entityFqdn?: string;
4391
- packageName?: string;
4392
- };
4393
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
4394
-
4395
- declare global {
4396
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
4397
- interface SymbolConstructor {
4398
- readonly observable: symbol;
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): (submission: FormSubmission$1) => Promise<CheckForSpamResponse & CheckForSpamResponseNonNullableFields>;
5325
- declare function createFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReport: FormSpamSubmissionReport) => Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5326
- declare function getFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<FormSpamSubmissionReport & FormSpamSubmissionReportNonNullableFields>;
5327
- declare function deleteFormSpamSubmissionReport$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<void>;
5328
- declare function bulkDeleteFormSpamSubmissionReport$1(httpClient: HttpClient): (formId: string, options?: BulkDeleteFormSpamSubmissionReportOptions) => Promise<BulkDeleteFormSpamSubmissionReportResponse & BulkDeleteFormSpamSubmissionReportResponseNonNullableFields>;
5329
- declare function bulkDeleteFormSpamSubmissionReportByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null) => Promise<BulkDeleteFormSpamSubmissionReportByFilterResponse & BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields>;
5330
- declare function reportNotSpamSubmission$1(httpClient: HttpClient): (formSpamSubmissionReportId: string) => Promise<ReportNotSpamSubmissionResponse & ReportNotSpamSubmissionResponseNonNullableFields>;
5331
- declare function bulkReportNotSpamSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkReportNotSpamSubmissionOptions) => Promise<BulkReportNotSpamSubmissionResponse & BulkReportNotSpamSubmissionResponseNonNullableFields>;
5332
- declare function reportSpamSubmission$1(httpClient: HttpClient): (submissionId: string, reportReason: ReportReason) => Promise<ReportSpamSubmissionResponse & ReportSpamSubmissionResponseNonNullableFields>;
5333
- declare function bulkReportSpamSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkReportSpamSubmissionOptions) => Promise<BulkReportSpamSubmissionResponse & BulkReportSpamSubmissionResponseNonNullableFields>;
5334
- declare function queryFormSpamSubmissionReportsByNamespace$1(httpClient: HttpClient): () => FormSpamSubmissionReportsQueryBuilder;
5335
- declare function countFormSpamSubmissionReports$1(httpClient: HttpClient): (formIds: string[], namespace: string) => Promise<CountFormSpamSubmissionReportsResponse & CountFormSpamSubmissionReportsResponseNonNullableFields>;
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 isFormSubmittable$1(httpClient: HttpClient): () => Promise<void>;
9498
- declare function createSubmission$1(httpClient: HttpClient): (submission: FormSubmission, options?: CreateSubmissionOptions) => Promise<CreateSubmissionResponse & CreateSubmissionResponseNonNullableFields>;
9499
- declare function bulkCreateSubmissionBySubmitter$1(httpClient: HttpClient): (formId: string, options?: BulkCreateSubmissionBySubmitterOptions) => Promise<BulkCreateSubmissionBySubmitterResponse & BulkCreateSubmissionBySubmitterResponseNonNullableFields>;
9500
- declare function getSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<GetSubmissionResponse & GetSubmissionResponseNonNullableFields>;
9501
- declare function updateSubmission$1(httpClient: HttpClient): (_id: string | null, submission: UpdateSubmission) => Promise<FormSubmission & FormSubmissionNonNullableFields>;
9502
- declare function confirmSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<ConfirmSubmissionResponse & ConfirmSubmissionResponseNonNullableFields>;
9503
- declare function deleteSubmission$1(httpClient: HttpClient): (submissionId: string, options?: DeleteSubmissionOptions) => Promise<void>;
9504
- declare function bulkDeleteSubmission$1(httpClient: HttpClient): (formId: string, options?: BulkDeleteSubmissionOptions) => Promise<BulkDeleteSubmissionResponse & BulkDeleteSubmissionResponseNonNullableFields>;
9505
- declare function restoreSubmissionFromTrashBin$1(httpClient: HttpClient): (submissionId: string) => Promise<RestoreSubmissionFromTrashBinResponse & RestoreSubmissionFromTrashBinResponseNonNullableFields>;
9506
- declare function removeSubmissionFromTrashBin$1(httpClient: HttpClient): (submissionId: string) => Promise<void>;
9507
- declare function bulkRemoveSubmissionFromTrashBin$1(httpClient: HttpClient): (formId: string, options?: BulkRemoveSubmissionFromTrashBinOptions) => Promise<BulkRemoveSubmissionFromTrashBinResponse & BulkRemoveSubmissionFromTrashBinResponseNonNullableFields>;
9508
- declare function listDeletedSubmissions$1(httpClient: HttpClient): (formId: string, options?: ListDeletedSubmissionsOptions) => Promise<ListDeletedSubmissionsResponse & ListDeletedSubmissionsResponseNonNullableFields>;
9509
- declare function getDeletedSubmission$1(httpClient: HttpClient): (submissionId: string) => Promise<GetDeletedSubmissionResponse & GetDeletedSubmissionResponseNonNullableFields>;
9510
- declare function querySubmission$1(httpClient: HttpClient): (query: CursorQuery, options?: QuerySubmissionOptions) => Promise<QuerySubmissionResponse & QuerySubmissionResponseNonNullableFields>;
9511
- declare function searchSubmissionsByNamespace$1(httpClient: HttpClient): (search: CursorSearch) => Promise<SearchSubmissionsByNamespaceResponse & SearchSubmissionsByNamespaceResponseNonNullableFields>;
9512
- declare function querySubmissionsByNamespace$1(httpClient: HttpClient): (options?: QuerySubmissionsByNamespaceOptions) => SubmissionsQueryBuilder;
9513
- declare function countSubmissionsByFilter$1(httpClient: HttpClient): (filter: Record<string, any> | null, options?: CountSubmissionsByFilterOptions) => Promise<CountSubmissionsByFilterResponse & CountSubmissionsByFilterResponseNonNullableFields>;
9514
- declare function countSubmissions$1(httpClient: HttpClient): (formIds: string[], namespace: string, options?: CountSubmissionsOptions) => Promise<CountSubmissionsResponse & CountSubmissionsResponseNonNullableFields>;
9515
- declare function countDeletedSubmissions$1(httpClient: HttpClient): (formIds: string[], namespace: string, options?: CountDeletedSubmissionsOptions) => Promise<CountDeletedSubmissionsResponse & CountDeletedSubmissionsResponseNonNullableFields>;
9516
- declare function getMediaUploadUrl$1(httpClient: HttpClient): (formId: string, filename: string, mimeType: string) => Promise<GetMediaUploadURLResponse & GetMediaUploadURLResponseNonNullableFields>;
9517
- declare function bulkMarkSubmissionsAsSeen$1(httpClient: HttpClient): (ids: string[], formId: string) => Promise<void>;
9518
- declare function upsertContactFromSubmission$1(httpClient: HttpClient): (submissionId: string, options?: UpsertContactFromSubmissionOptions) => Promise<UpsertContactFromSubmissionResponse & UpsertContactFromSubmissionResponseNonNullableFields>;
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 index_d__publicDeleteSubmissionType = _publicDeleteSubmissionType;
10077
10492
  type index_d__publicGetDeletedSubmissionType = _publicGetDeletedSubmissionType;
10078
10493
  type index_d__publicGetMediaUploadUrlType = _publicGetMediaUploadUrlType;
10079
10494
  type index_d__publicGetSubmissionType = _publicGetSubmissionType;
10080
- type index_d__publicIsFormSubmittableType = _publicIsFormSubmittableType;
10081
10495
  type index_d__publicListDeletedSubmissionsType = _publicListDeletedSubmissionsType;
10082
10496
  type index_d__publicQuerySubmissionType = _publicQuerySubmissionType;
10083
10497
  type index_d__publicQuerySubmissionsByNamespaceType = _publicQuerySubmissionsByNamespaceType;
@@ -10099,7 +10513,6 @@ declare const index_d_deleteSubmission: typeof deleteSubmission;
10099
10513
  declare const index_d_getDeletedSubmission: typeof getDeletedSubmission;
10100
10514
  declare const index_d_getMediaUploadUrl: typeof getMediaUploadUrl;
10101
10515
  declare const index_d_getSubmission: typeof getSubmission;
10102
- declare const index_d_isFormSubmittable: typeof isFormSubmittable;
10103
10516
  declare const index_d_listDeletedSubmissions: typeof listDeletedSubmissions;
10104
10517
  declare const index_d_querySubmission: typeof querySubmission;
10105
10518
  declare const index_d_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
@@ -10109,7 +10522,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
10109
10522
  declare const index_d_updateSubmission: typeof updateSubmission;
10110
10523
  declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
10111
10524
  declare namespace index_d {
10112
- export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type index_d__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type index_d__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type index_d__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type index_d__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type index_d__publicConfirmSubmissionType as _publicConfirmSubmissionType, type index_d__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type index_d__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type index_d__publicCountSubmissionsType as _publicCountSubmissionsType, type index_d__publicCreateSubmissionType as _publicCreateSubmissionType, type index_d__publicDeleteSubmissionType as _publicDeleteSubmissionType, type index_d__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type index_d__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type index_d__publicGetSubmissionType as _publicGetSubmissionType, type index_d__publicIsFormSubmittableType as _publicIsFormSubmittableType, type index_d__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type index_d__publicQuerySubmissionType as _publicQuerySubmissionType, type index_d__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type index_d__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type index_d__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type index_d__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type index_d__publicUpdateSubmissionType as _publicUpdateSubmissionType, type index_d__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_isFormSubmittable as isFormSubmittable, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
10525
+ export { type index_d_ActionEvent as ActionEvent, type index_d_AddressInfo as AddressInfo, type index_d_AddressLine2 as AddressLine2, index_d_Alignment as Alignment, type index_d_AnchorData as AnchorData, type index_d_AppEmbedData as AppEmbedData, type index_d_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d_AppType as AppType, type index_d_ApplicationError as ApplicationError, type index_d_ArrayErrorMessages as ArrayErrorMessages, type index_d_ArrayItems as ArrayItems, type index_d_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d_ArrayType as ArrayType, type index_d_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d_AudioData as AudioData, type index_d_Background as Background, type index_d_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d_BackgroundType as BackgroundType, type index_d_BlockquoteData as BlockquoteData, type index_d_BookingData as BookingData, index_d_BooleanComponentType as BooleanComponentType, type index_d_BooleanErrorMessages as BooleanErrorMessages, type index_d_BooleanType as BooleanType, type index_d_Border as Border, type index_d_BorderColors as BorderColors, type index_d_BreakPoint as BreakPoint, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_BulletedListData as BulletedListData, type index_d_ButtonData as ButtonData, index_d_ButtonDataType as ButtonDataType, type index_d_CellStyle as CellStyle, type index_d_Checkbox as Checkbox, type index_d_CheckboxGroup as CheckboxGroup, type index_d_Checkout as Checkout, type index_d_CodeBlockData as CodeBlockData, type index_d_CollapsibleListData as CollapsibleListData, type index_d_ColorData as ColorData, type index_d_Colors as Colors, type index_d_CommonCustomOption as CommonCustomOption, index_d_ComponentType as ComponentType, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, index_d_ContactField as ContactField, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateCheckoutFromSubmissionRequest as CreateCheckoutFromSubmissionRequest, type index_d_CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf as CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf, type index_d_CreateCheckoutFromSubmissionResponse as CreateCheckoutFromSubmissionResponse, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, index_d_Crop as Crop, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_CustomFieldInfo as CustomFieldInfo, type index_d_CustomOption as CustomOption, type index_d_DataExtensionsDetails as DataExtensionsDetails, index_d_DateFormatPart as DateFormatPart, type index_d_DateOptions as DateOptions, type index_d_DatePickerOptions as DatePickerOptions, type index_d_DateTimeConstraints as DateTimeConstraints, type index_d_DateTimeInput as DateTimeInput, type index_d_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d_DateTimeInputType as DateTimeInputType, type index_d_DateTimeOptions as DateTimeOptions, type index_d_Decoration as Decoration, type index_d_DecorationDataOneOf as DecorationDataOneOf, index_d_DecorationType as DecorationType, type index_d_DefaultCountryConfig as DefaultCountryConfig, type index_d_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_Design as Design, type index_d_Dimensions as Dimensions, index_d_Direction as Direction, type index_d_DisplayField as DisplayField, type index_d_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d_DividerData as DividerData, type index_d_DocumentStyle as DocumentStyle, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_DonationInput as DonationInput, type index_d_DonationInputOption as DonationInputOption, type index_d_Dropdown as Dropdown, type index_d_DropdownCustomOption as DropdownCustomOption, type index_d_DropdownOption as DropdownOption, type index_d_DynamicPriceOptions as DynamicPriceOptions, type index_d_EmailInfo as EmailInfo, index_d_EmailInfoTag as EmailInfoTag, type index_d_EmbedData as EmbedData, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventData as EventData, type index_d_ExtendedFields as ExtendedFields, type index_d_FieldGroup as FieldGroup, type index_d_FieldOverrides as FieldOverrides, index_d_FieldType as FieldType, type index_d_FieldsOverrides as FieldsOverrides, type index_d_FieldsSettings as FieldsSettings, type index_d_FileData as FileData, type index_d_FileSource as FileSource, type index_d_FileSourceDataOneOf as FileSourceDataOneOf, type index_d_FileUpload as FileUpload, index_d_FirstDayOfWeek as FirstDayOfWeek, type index_d_FixedPriceOptions as FixedPriceOptions, type index_d_FontSizeData as FontSizeData, index_d_FontType as FontType, type index_d_Form as Form, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormField as FormField, type index_d_FormFieldContactInfo as FormFieldContactInfo, type index_d_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d_FormFieldV2 as FormFieldV2, type index_d_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d_FormLayout as FormLayout, type index_d_FormOverride as FormOverride, type index_d_FormProperties as FormProperties, type index_d_FormRule as FormRule, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, index_d_Format as Format, index_d_FormatEnumFormat as FormatEnumFormat, type index_d_GIF as GIF, type index_d_GIFData as GIFData, type index_d_GalleryData as GalleryData, type index_d_GalleryOptions as GalleryOptions, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_Gradient as Gradient, type index_d_Group as Group, type index_d_HTMLData as HTMLData, type index_d_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d_Header as Header, type index_d_HeadingData as HeadingData, type index_d_Height as Height, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_Image as Image, type index_d_ImageData as ImageData, index_d_InitialExpandedItems as InitialExpandedItems, type index_d_InputField as InputField, type index_d_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d_InputFieldArrayType as InputFieldArrayType, type index_d_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d_InputFieldBooleanType as InputFieldBooleanType, type index_d_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d_InputFieldIntegerType as InputFieldIntegerType, type index_d_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d_InputFieldNumberType as InputFieldNumberType, type index_d_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d_InputFieldObjectType as InputFieldObjectType, type index_d_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d_InputFieldStringType as InputFieldStringType, type index_d_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d_InputType as InputType, type index_d_IntegerType as IntegerType, type index_d_IsFormSubmittableRequest as IsFormSubmittableRequest, type index_d_IsFormSubmittableResponse as IsFormSubmittableResponse, type index_d_Item as Item, type index_d_ItemDataOneOf as ItemDataOneOf, type index_d_ItemLayout as ItemLayout, type index_d_ItemLayoutItemOneOf as ItemLayoutItemOneOf, type index_d_ItemMetadata as ItemMetadata, type index_d_ItemStyle as ItemStyle, index_d_ItemType as ItemType, index_d_Kind as Kind, type index_d_Layout as Layout, index_d_LayoutType as LayoutType, type index_d_LimitationRule as LimitationRule, index_d_LineStyle as LineStyle, type index_d_Link as Link, type index_d_LinkData as LinkData, type index_d_LinkDataOneOf as LinkDataOneOf, type index_d_LinkPreviewData as LinkPreviewData, index_d_LinkTarget as LinkTarget, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_ListValue as ListValue, type index_d_MapData as MapData, type index_d_MapSettings as MapSettings, index_d_MapType as MapType, type index_d_Margin as Margin, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d_MentionData as MentionData, type index_d_MessageEnvelope as MessageEnvelope, type index_d_Metadata as Metadata, index_d_Mode as Mode, type index_d_MultilineAddress as MultilineAddress, index_d_MultilineAddressComponentType as MultilineAddressComponentType, type index_d_MultilineAddressValidation as MultilineAddressValidation, type index_d_NestedForm as NestedForm, type index_d_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d_NestedFormOverrides as NestedFormOverrides, type index_d_Node as Node, type index_d_NodeDataOneOf as NodeDataOneOf, type index_d_NodeStyle as NodeStyle, index_d_NodeType as NodeType, index_d_NullValue as NullValue, index_d_NumberComponentType as NumberComponentType, type index_d_NumberErrorMessages as NumberErrorMessages, type index_d_NumberInput as NumberInput, index_d_NumberOfColumns as NumberOfColumns, type index_d_NumberType as NumberType, type index_d_ObjectErrorMessages as ObjectErrorMessages, type index_d_ObjectType as ObjectType, type index_d_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d_Oembed as Oembed, index_d_OptInLevel as OptInLevel, type index_d_Option as Option, type index_d_OptionDesign as OptionDesign, type index_d_OptionLayout as OptionLayout, type index_d_OrderDetails as OrderDetails, type index_d_OrderedListData as OrderedListData, index_d_Orientation as Orientation, index_d_OverrideEntityType as OverrideEntityType, type index_d_PDFSettings as PDFSettings, type index_d_ParagraphData as ParagraphData, type index_d_Payment as Payment, index_d_PaymentComponentType as PaymentComponentType, type index_d_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d_PaymentType as PaymentType, type index_d_Permissions as Permissions, type index_d_PhoneConstraints as PhoneConstraints, type index_d_PhoneInfo as PhoneInfo, index_d_PhoneInfoTag as PhoneInfoTag, type index_d_PhoneInput as PhoneInput, type index_d_PlaybackOptions as PlaybackOptions, type index_d_PluginContainerData as PluginContainerData, index_d_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d_PluginContainerDataWidth as PluginContainerDataWidth, type index_d_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d_Poll as Poll, type index_d_PollData as PollData, type index_d_PollDataLayout as PollDataLayout, type index_d_PollDesign as PollDesign, type index_d_PollLayout as PollLayout, index_d_PollLayoutDirection as PollLayoutDirection, index_d_PollLayoutType as PollLayoutType, type index_d_PollOption as PollOption, type index_d_PostSubmissionTriggers as PostSubmissionTriggers, type index_d_PredefinedValidation as PredefinedValidation, type index_d_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d_PriceType as PriceType, type index_d_Product as Product, type index_d_ProductCheckboxGroup as ProductCheckboxGroup, type index_d_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d_ProductType as ProductType, type index_d_PropertiesType as PropertiesType, index_d_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d_QuantityLimit as QuantityLimit, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RadioGroup as RadioGroup, type index_d_RadioGroupCustomOption as RadioGroupCustomOption, type index_d_RadioGroupOption as RadioGroupOption, type index_d_RatingInput as RatingInput, type index_d_Redirect as Redirect, type index_d_RedirectOptions as RedirectOptions, type index_d_Rel as Rel, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, index_d_RequiredIndicator as RequiredIndicator, index_d_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_RichContent as RichContent, type index_d_RichText as RichText, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, type index_d_Section as Section, type index_d_Settings as Settings, type index_d_Signature as Signature, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Source as Source, index_d_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d_Spoiler as Spoiler, type index_d_SpoilerData as SpoilerData, type index_d_Step as Step, index_d_StringComponentType as StringComponentType, type index_d_StringErrorMessages as StringErrorMessages, type index_d_StringType as StringType, type index_d_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d_StringTypePhoneConstraints as StringTypePhoneConstraints, type index_d_Styles as Styles, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitButton as SubmitButton, type index_d_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_SubmitSettings as SubmitSettings, type index_d_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d_SubmitSuccessAction as SubmitSuccessAction, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_SubscriptionInfo as SubscriptionInfo, index_d_SubscriptionInfoOptInLevel as SubscriptionInfoOptInLevel, type index_d_TableCellData as TableCellData, type index_d_TableData as TableData, index_d_Tag as Tag, index_d_Target as Target, index_d_TextAlignment as TextAlignment, type index_d_TextData as TextData, type index_d_TextInput as TextInput, type index_d_TextNodeStyle as TextNodeStyle, type index_d_TextStyle as TextStyle, type index_d_ThankYouMessage as ThankYouMessage, type index_d_ThankYouMessageOptions as ThankYouMessageOptions, type index_d_Thumbnails as Thumbnails, index_d_ThumbnailsAlignment as ThumbnailsAlignment, type index_d_TimeOptions as TimeOptions, index_d_Type as Type, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, index_d_UploadFileFormat as UploadFileFormat, type index_d_UpsertContact as UpsertContact, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d_Validation as Validation, index_d_ValidationFormat as ValidationFormat, type index_d_ValidationValidationOneOf as ValidationValidationOneOf, index_d_VerticalAlignment as VerticalAlignment, type index_d_Video as Video, type index_d_VideoData as VideoData, index_d_ViewMode as ViewMode, index_d_ViewRole as ViewRole, index_d_VoteRole as VoteRole, index_d_WebhookIdentityType as WebhookIdentityType, index_d_Width as Width, index_d_WidthType as WidthType, type index_d_WixFile as WixFile, index_d_WixFileComponentType as WixFileComponentType, type index_d_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d__Array as _Array, type index_d__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d__Boolean as _Boolean, type index_d__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d__Number as _Number, type index_d__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d__Object as _Object, type index_d__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d__String as _String, type index_d__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, type index_d__publicBulkCreateSubmissionBySubmitterType as _publicBulkCreateSubmissionBySubmitterType, type index_d__publicBulkDeleteSubmissionType as _publicBulkDeleteSubmissionType, type index_d__publicBulkMarkSubmissionsAsSeenType as _publicBulkMarkSubmissionsAsSeenType, type index_d__publicBulkRemoveSubmissionFromTrashBinType as _publicBulkRemoveSubmissionFromTrashBinType, type index_d__publicConfirmSubmissionType as _publicConfirmSubmissionType, type index_d__publicCountDeletedSubmissionsType as _publicCountDeletedSubmissionsType, type index_d__publicCountSubmissionsByFilterType as _publicCountSubmissionsByFilterType, type index_d__publicCountSubmissionsType as _publicCountSubmissionsType, type index_d__publicCreateSubmissionType as _publicCreateSubmissionType, type index_d__publicDeleteSubmissionType as _publicDeleteSubmissionType, type index_d__publicGetDeletedSubmissionType as _publicGetDeletedSubmissionType, type index_d__publicGetMediaUploadUrlType as _publicGetMediaUploadUrlType, type index_d__publicGetSubmissionType as _publicGetSubmissionType, type index_d__publicListDeletedSubmissionsType as _publicListDeletedSubmissionsType, type index_d__publicQuerySubmissionType as _publicQuerySubmissionType, type index_d__publicQuerySubmissionsByNamespaceType as _publicQuerySubmissionsByNamespaceType, type index_d__publicRemoveSubmissionFromTrashBinType as _publicRemoveSubmissionFromTrashBinType, type index_d__publicRestoreSubmissionFromTrashBinType as _publicRestoreSubmissionFromTrashBinType, type index_d__publicSearchSubmissionsByNamespaceType as _publicSearchSubmissionsByNamespaceType, type index_d__publicUpdateSubmissionType as _publicUpdateSubmissionType, type index_d__publicUpsertContactFromSubmissionType as _publicUpsertContactFromSubmissionType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
10113
10526
  }
10114
10527
 
10115
10528
  export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };