@wix/forms 1.0.162 → 1.0.164
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.164",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/forms_form-spam-submission-reports": "1.0.
|
|
22
|
+
"@wix/forms_form-spam-submission-reports": "1.0.21",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.28",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
25
|
-
"@wix/forms_submissions": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.36",
|
|
25
|
+
"@wix/forms_submissions": "1.0.69"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "7c830228253a5477001c6256e303e04a3738fa3eb9649e69bdfd9ba1"
|
|
51
51
|
}
|
|
@@ -553,6 +553,8 @@ interface Form$1 {
|
|
|
553
553
|
submitSettings?: SubmitSettings$1;
|
|
554
554
|
/** Settings for field groups */
|
|
555
555
|
fieldGroups?: FieldGroup$1[];
|
|
556
|
+
/** Message shown when the form is disabled */
|
|
557
|
+
disabledFormMessage?: RichContent$1;
|
|
556
558
|
}
|
|
557
559
|
declare enum RequiredIndicator$1 {
|
|
558
560
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4821,6 +4823,7 @@ interface FormNonNullableFields {
|
|
|
4821
4823
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
4822
4824
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
4823
4825
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
4826
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
4824
4827
|
}
|
|
4825
4828
|
interface CreateFormResponseNonNullableFields {
|
|
4826
4829
|
form?: FormNonNullableFields;
|
|
@@ -4986,6 +4989,8 @@ interface UpdateForm {
|
|
|
4986
4989
|
submitSettings?: SubmitSettings$1;
|
|
4987
4990
|
/** Settings for field groups */
|
|
4988
4991
|
fieldGroups?: FieldGroup$1[];
|
|
4992
|
+
/** Message shown when the form is disabled */
|
|
4993
|
+
disabledFormMessage?: RichContent$1;
|
|
4989
4994
|
}
|
|
4990
4995
|
interface DeleteFormOptions {
|
|
4991
4996
|
/**
|
|
@@ -5614,6 +5619,72 @@ interface CreateFormSpamSubmissionReportResponse {
|
|
|
5614
5619
|
/** The created form spam submission report. */
|
|
5615
5620
|
formSpamSubmissionReport?: FormSpamSubmissionReport;
|
|
5616
5621
|
}
|
|
5622
|
+
interface FormSpamSubmissionReportValidationErrorsDetails {
|
|
5623
|
+
/** Submission validation errors details. */
|
|
5624
|
+
errors?: ValidationError$1[];
|
|
5625
|
+
}
|
|
5626
|
+
interface ValidationError$1 {
|
|
5627
|
+
/** Path indicating the source of the error, such as `submission.submissions.email`` */
|
|
5628
|
+
errorPath?: string;
|
|
5629
|
+
/** Error type. */
|
|
5630
|
+
errorType?: ErrorType$1;
|
|
5631
|
+
/** Error message. */
|
|
5632
|
+
errorMessage?: string;
|
|
5633
|
+
/** Additional error parameters, to help identify additional info. */
|
|
5634
|
+
params?: Record<string, any> | null;
|
|
5635
|
+
/**
|
|
5636
|
+
* Whether to use a custom error message.
|
|
5637
|
+
* If `false`, the API takes the message from the `errorType` field.
|
|
5638
|
+
* Default: `false`
|
|
5639
|
+
*/
|
|
5640
|
+
useCustomErrorMessage?: boolean;
|
|
5641
|
+
}
|
|
5642
|
+
declare enum ErrorType$1 {
|
|
5643
|
+
/** Error is unknown or not suitable for any of options bellow */
|
|
5644
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
5645
|
+
/** Type of submitted value is incorrect */
|
|
5646
|
+
TYPE_ERROR = "TYPE_ERROR",
|
|
5647
|
+
/** Value is required to be provided */
|
|
5648
|
+
REQUIRED_VALUE_ERROR = "REQUIRED_VALUE_ERROR",
|
|
5649
|
+
/** Value contains additional properties not expected in schema */
|
|
5650
|
+
UNKNOWN_VALUE_ERROR = "UNKNOWN_VALUE_ERROR",
|
|
5651
|
+
/** Text value exceeds max length */
|
|
5652
|
+
MAX_LENGTH_ERROR = "MAX_LENGTH_ERROR",
|
|
5653
|
+
/** Text value not reaches min length */
|
|
5654
|
+
MIN_LENGTH_ERROR = "MIN_LENGTH_ERROR",
|
|
5655
|
+
/** Text value not applicable for expected pattern */
|
|
5656
|
+
PATTERN_ERROR = "PATTERN_ERROR",
|
|
5657
|
+
/** Text value not applicable for expected format */
|
|
5658
|
+
FORMAT_ERROR = "FORMAT_ERROR",
|
|
5659
|
+
/** Number value is too big */
|
|
5660
|
+
MAX_VALUE_ERROR = "MAX_VALUE_ERROR",
|
|
5661
|
+
/** Number value is too small */
|
|
5662
|
+
MIN_VALUE_ERROR = "MIN_VALUE_ERROR",
|
|
5663
|
+
/** Number value is not multiple of expected number */
|
|
5664
|
+
MULTIPLE_OF_VALUE_ERROR = "MULTIPLE_OF_VALUE_ERROR",
|
|
5665
|
+
/** Array value has too much items */
|
|
5666
|
+
MIN_ITEMS_ERROR = "MIN_ITEMS_ERROR",
|
|
5667
|
+
/** Array value has not enough items */
|
|
5668
|
+
MAX_ITEMS_ERROR = "MAX_ITEMS_ERROR",
|
|
5669
|
+
/** Value is not in list of allowed values */
|
|
5670
|
+
NOT_ALLOWED_VALUE_ERROR = "NOT_ALLOWED_VALUE_ERROR",
|
|
5671
|
+
/** Form fields are incompatible */
|
|
5672
|
+
FIELDS_COMPATIBILITY_ERROR = "FIELDS_COMPATIBILITY_ERROR",
|
|
5673
|
+
/** Submitted form is disabled */
|
|
5674
|
+
DISABLED_FORM_ERROR = "DISABLED_FORM_ERROR",
|
|
5675
|
+
/** Too much forms */
|
|
5676
|
+
FORMS_COUNT_RESTRICTIONS_ERROR = "FORMS_COUNT_RESTRICTIONS_ERROR",
|
|
5677
|
+
/** Too much fields on form */
|
|
5678
|
+
FIELDS_COUNT_RESTRICTIONS_ERROR = "FIELDS_COUNT_RESTRICTIONS_ERROR",
|
|
5679
|
+
/** Too much steps on forms */
|
|
5680
|
+
STEPS_COUNT_RESTRICTIONS_ERROR = "STEPS_COUNT_RESTRICTIONS_ERROR",
|
|
5681
|
+
/** Too much rules on forms */
|
|
5682
|
+
RULES_COUNT_RESTRICTIONS_ERROR = "RULES_COUNT_RESTRICTIONS_ERROR",
|
|
5683
|
+
/** File upload is not allowed */
|
|
5684
|
+
FILE_UPLOAD_RESTRICTIONS_ERROR = "FILE_UPLOAD_RESTRICTIONS_ERROR",
|
|
5685
|
+
/** Country code is not correct or missing from the phone number */
|
|
5686
|
+
INVALID_PHONE_COUNTRY_CODE_ERROR = "INVALID_PHONE_COUNTRY_CODE_ERROR"
|
|
5687
|
+
}
|
|
5617
5688
|
interface GetFormSpamSubmissionReportRequest {
|
|
5618
5689
|
/** Id of the form spam submission report to retrieve. */
|
|
5619
5690
|
formSpamSubmissionReportId: string;
|
|
@@ -6262,6 +6333,7 @@ type context$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionR
|
|
|
6262
6333
|
type context$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
6263
6334
|
type context$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
6264
6335
|
type context$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
6336
|
+
type context$1_FormSpamSubmissionReportValidationErrorsDetails = FormSpamSubmissionReportValidationErrorsDetails;
|
|
6265
6337
|
type context$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
6266
6338
|
type context$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
6267
6339
|
type context$1_FormSpamSubmissionReportsQueryResult = FormSpamSubmissionReportsQueryResult;
|
|
@@ -6294,7 +6366,7 @@ declare const context$1_queryFormSpamSubmissionReportsByNamespace: typeof queryF
|
|
|
6294
6366
|
declare const context$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
6295
6367
|
declare const context$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
6296
6368
|
declare namespace context$1 {
|
|
6297
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type context$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type context$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type context$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type context$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type context$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type context$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type context$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type context$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type context$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type context$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type context$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type context$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type context$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type context$1_CheckForSpamRequest as CheckForSpamRequest, type context$1_CheckForSpamResponse as CheckForSpamResponse, type context$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type context$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type context$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type context$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type context$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type context$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type context$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type context$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type context$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type context$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type context$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type context$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type context$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type context$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type context$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type context$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type context$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type context$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type context$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type context$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type context$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, context$1_ReportReason as ReportReason, type context$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type context$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type context$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, context$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, context$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, context$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, context$1_bulkReportSpamSubmission as bulkReportSpamSubmission, context$1_checkForSpam as checkForSpam, context$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, context$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, context$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, context$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, context$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, context$1_reportNotSpamSubmission as reportNotSpamSubmission, context$1_reportSpamSubmission as reportSpamSubmission };
|
|
6369
|
+
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type context$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type context$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type context$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type context$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type context$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type context$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type context$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type context$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type context$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type context$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type context$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type context$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type context$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type context$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type context$1_CheckForSpamRequest as CheckForSpamRequest, type context$1_CheckForSpamResponse as CheckForSpamResponse, type context$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type context$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type context$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type context$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type context$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type context$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type context$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type context$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, ErrorType$1 as ErrorType, type ExtendedFields$1 as ExtendedFields, type context$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type context$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type context$1_FormSpamSubmissionReportValidationErrorsDetails as FormSpamSubmissionReportValidationErrorsDetails, type context$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type context$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type context$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type context$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type context$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type context$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type context$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type context$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type context$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type context$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type context$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, context$1_ReportReason as ReportReason, type context$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type context$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type context$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, type ValidationError$1 as ValidationError, WebhookIdentityType$1 as WebhookIdentityType, context$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, context$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, context$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, context$1_bulkReportSpamSubmission as bulkReportSpamSubmission, context$1_checkForSpam as checkForSpam, context$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, context$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, context$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, context$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, context$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, context$1_reportNotSpamSubmission as reportNotSpamSubmission, context$1_reportSpamSubmission as reportSpamSubmission };
|
|
6298
6370
|
}
|
|
6299
6371
|
|
|
6300
6372
|
/** Form submission that was created or retrieved. */
|
|
@@ -6556,6 +6628,8 @@ interface Form {
|
|
|
6556
6628
|
submitSettings?: SubmitSettings;
|
|
6557
6629
|
/** Settings for field groups */
|
|
6558
6630
|
fieldGroups?: FieldGroup[];
|
|
6631
|
+
/** Message shown when the form is disabled */
|
|
6632
|
+
disabledFormMessage?: RichContent;
|
|
6559
6633
|
}
|
|
6560
6634
|
declare enum RequiredIndicator {
|
|
6561
6635
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -553,6 +553,8 @@ interface Form$1 {
|
|
|
553
553
|
submitSettings?: SubmitSettings$1;
|
|
554
554
|
/** Settings for field groups */
|
|
555
555
|
fieldGroups?: FieldGroup$1[];
|
|
556
|
+
/** Message shown when the form is disabled */
|
|
557
|
+
disabledFormMessage?: RichContent$1;
|
|
556
558
|
}
|
|
557
559
|
declare enum RequiredIndicator$1 {
|
|
558
560
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4821,6 +4823,7 @@ interface FormNonNullableFields {
|
|
|
4821
4823
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
4822
4824
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
4823
4825
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
4826
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
4824
4827
|
}
|
|
4825
4828
|
interface CreateFormResponseNonNullableFields {
|
|
4826
4829
|
form?: FormNonNullableFields;
|
|
@@ -4986,6 +4989,8 @@ interface UpdateForm {
|
|
|
4986
4989
|
submitSettings?: SubmitSettings$1;
|
|
4987
4990
|
/** Settings for field groups */
|
|
4988
4991
|
fieldGroups?: FieldGroup$1[];
|
|
4992
|
+
/** Message shown when the form is disabled */
|
|
4993
|
+
disabledFormMessage?: RichContent$1;
|
|
4989
4994
|
}
|
|
4990
4995
|
interface DeleteFormOptions {
|
|
4991
4996
|
/**
|
|
@@ -5614,6 +5619,72 @@ interface CreateFormSpamSubmissionReportResponse {
|
|
|
5614
5619
|
/** The created form spam submission report. */
|
|
5615
5620
|
formSpamSubmissionReport?: FormSpamSubmissionReport;
|
|
5616
5621
|
}
|
|
5622
|
+
interface FormSpamSubmissionReportValidationErrorsDetails {
|
|
5623
|
+
/** Submission validation errors details. */
|
|
5624
|
+
errors?: ValidationError$1[];
|
|
5625
|
+
}
|
|
5626
|
+
interface ValidationError$1 {
|
|
5627
|
+
/** Path indicating the source of the error, such as `submission.submissions.email`` */
|
|
5628
|
+
errorPath?: string;
|
|
5629
|
+
/** Error type. */
|
|
5630
|
+
errorType?: ErrorType$1;
|
|
5631
|
+
/** Error message. */
|
|
5632
|
+
errorMessage?: string;
|
|
5633
|
+
/** Additional error parameters, to help identify additional info. */
|
|
5634
|
+
params?: Record<string, any> | null;
|
|
5635
|
+
/**
|
|
5636
|
+
* Whether to use a custom error message.
|
|
5637
|
+
* If `false`, the API takes the message from the `errorType` field.
|
|
5638
|
+
* Default: `false`
|
|
5639
|
+
*/
|
|
5640
|
+
useCustomErrorMessage?: boolean;
|
|
5641
|
+
}
|
|
5642
|
+
declare enum ErrorType$1 {
|
|
5643
|
+
/** Error is unknown or not suitable for any of options bellow */
|
|
5644
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
5645
|
+
/** Type of submitted value is incorrect */
|
|
5646
|
+
TYPE_ERROR = "TYPE_ERROR",
|
|
5647
|
+
/** Value is required to be provided */
|
|
5648
|
+
REQUIRED_VALUE_ERROR = "REQUIRED_VALUE_ERROR",
|
|
5649
|
+
/** Value contains additional properties not expected in schema */
|
|
5650
|
+
UNKNOWN_VALUE_ERROR = "UNKNOWN_VALUE_ERROR",
|
|
5651
|
+
/** Text value exceeds max length */
|
|
5652
|
+
MAX_LENGTH_ERROR = "MAX_LENGTH_ERROR",
|
|
5653
|
+
/** Text value not reaches min length */
|
|
5654
|
+
MIN_LENGTH_ERROR = "MIN_LENGTH_ERROR",
|
|
5655
|
+
/** Text value not applicable for expected pattern */
|
|
5656
|
+
PATTERN_ERROR = "PATTERN_ERROR",
|
|
5657
|
+
/** Text value not applicable for expected format */
|
|
5658
|
+
FORMAT_ERROR = "FORMAT_ERROR",
|
|
5659
|
+
/** Number value is too big */
|
|
5660
|
+
MAX_VALUE_ERROR = "MAX_VALUE_ERROR",
|
|
5661
|
+
/** Number value is too small */
|
|
5662
|
+
MIN_VALUE_ERROR = "MIN_VALUE_ERROR",
|
|
5663
|
+
/** Number value is not multiple of expected number */
|
|
5664
|
+
MULTIPLE_OF_VALUE_ERROR = "MULTIPLE_OF_VALUE_ERROR",
|
|
5665
|
+
/** Array value has too much items */
|
|
5666
|
+
MIN_ITEMS_ERROR = "MIN_ITEMS_ERROR",
|
|
5667
|
+
/** Array value has not enough items */
|
|
5668
|
+
MAX_ITEMS_ERROR = "MAX_ITEMS_ERROR",
|
|
5669
|
+
/** Value is not in list of allowed values */
|
|
5670
|
+
NOT_ALLOWED_VALUE_ERROR = "NOT_ALLOWED_VALUE_ERROR",
|
|
5671
|
+
/** Form fields are incompatible */
|
|
5672
|
+
FIELDS_COMPATIBILITY_ERROR = "FIELDS_COMPATIBILITY_ERROR",
|
|
5673
|
+
/** Submitted form is disabled */
|
|
5674
|
+
DISABLED_FORM_ERROR = "DISABLED_FORM_ERROR",
|
|
5675
|
+
/** Too much forms */
|
|
5676
|
+
FORMS_COUNT_RESTRICTIONS_ERROR = "FORMS_COUNT_RESTRICTIONS_ERROR",
|
|
5677
|
+
/** Too much fields on form */
|
|
5678
|
+
FIELDS_COUNT_RESTRICTIONS_ERROR = "FIELDS_COUNT_RESTRICTIONS_ERROR",
|
|
5679
|
+
/** Too much steps on forms */
|
|
5680
|
+
STEPS_COUNT_RESTRICTIONS_ERROR = "STEPS_COUNT_RESTRICTIONS_ERROR",
|
|
5681
|
+
/** Too much rules on forms */
|
|
5682
|
+
RULES_COUNT_RESTRICTIONS_ERROR = "RULES_COUNT_RESTRICTIONS_ERROR",
|
|
5683
|
+
/** File upload is not allowed */
|
|
5684
|
+
FILE_UPLOAD_RESTRICTIONS_ERROR = "FILE_UPLOAD_RESTRICTIONS_ERROR",
|
|
5685
|
+
/** Country code is not correct or missing from the phone number */
|
|
5686
|
+
INVALID_PHONE_COUNTRY_CODE_ERROR = "INVALID_PHONE_COUNTRY_CODE_ERROR"
|
|
5687
|
+
}
|
|
5617
5688
|
interface GetFormSpamSubmissionReportRequest {
|
|
5618
5689
|
/** Id of the form spam submission report to retrieve. */
|
|
5619
5690
|
formSpamSubmissionReportId: string;
|
|
@@ -6262,6 +6333,7 @@ type index_d$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionR
|
|
|
6262
6333
|
type index_d$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
6263
6334
|
type index_d$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
6264
6335
|
type index_d$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
6336
|
+
type index_d$1_FormSpamSubmissionReportValidationErrorsDetails = FormSpamSubmissionReportValidationErrorsDetails;
|
|
6265
6337
|
type index_d$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
6266
6338
|
type index_d$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
6267
6339
|
type index_d$1_FormSpamSubmissionReportsQueryResult = FormSpamSubmissionReportsQueryResult;
|
|
@@ -6294,7 +6366,7 @@ declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryF
|
|
|
6294
6366
|
declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
6295
6367
|
declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
6296
6368
|
declare namespace index_d$1 {
|
|
6297
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type index_d$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type index_d$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type index_d$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type index_d$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type index_d$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type index_d$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type index_d$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type index_d$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
|
|
6369
|
+
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type index_d$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type index_d$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type index_d$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type index_d$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type index_d$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type index_d$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type index_d$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type index_d$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, ErrorType$1 as ErrorType, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportValidationErrorsDetails as FormSpamSubmissionReportValidationErrorsDetails, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, type ValidationError$1 as ValidationError, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
|
|
6298
6370
|
}
|
|
6299
6371
|
|
|
6300
6372
|
/** Form submission that was created or retrieved. */
|
|
@@ -6556,6 +6628,8 @@ interface Form {
|
|
|
6556
6628
|
submitSettings?: SubmitSettings;
|
|
6557
6629
|
/** Settings for field groups */
|
|
6558
6630
|
fieldGroups?: FieldGroup[];
|
|
6631
|
+
/** Message shown when the form is disabled */
|
|
6632
|
+
disabledFormMessage?: RichContent;
|
|
6559
6633
|
}
|
|
6560
6634
|
declare enum RequiredIndicator {
|
|
6561
6635
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -75,6 +75,8 @@ interface Form$1 {
|
|
|
75
75
|
submitSettings?: SubmitSettings$1;
|
|
76
76
|
/** Settings for field groups */
|
|
77
77
|
fieldGroups?: FieldGroup$1[];
|
|
78
|
+
/** Message shown when the form is disabled */
|
|
79
|
+
disabledFormMessage?: RichContent$1;
|
|
78
80
|
}
|
|
79
81
|
declare enum RequiredIndicator$1 {
|
|
80
82
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -4167,6 +4169,7 @@ interface FormNonNullableFields$1 {
|
|
|
4167
4169
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields$1;
|
|
4168
4170
|
submitSettings?: SubmitSettingsNonNullableFields$1;
|
|
4169
4171
|
fieldGroups: FieldGroupNonNullableFields$1[];
|
|
4172
|
+
disabledFormMessage?: RichContentNonNullableFields$1;
|
|
4170
4173
|
}
|
|
4171
4174
|
interface CreateFormResponseNonNullableFields$1 {
|
|
4172
4175
|
form?: FormNonNullableFields$1;
|
|
@@ -4319,6 +4322,8 @@ interface Form {
|
|
|
4319
4322
|
submitSettings?: SubmitSettings;
|
|
4320
4323
|
/** Settings for field groups */
|
|
4321
4324
|
fieldGroups?: FieldGroup[];
|
|
4325
|
+
/** Message shown when the form is disabled */
|
|
4326
|
+
disabledFormMessage?: RichContent;
|
|
4322
4327
|
}
|
|
4323
4328
|
declare enum RequiredIndicator {
|
|
4324
4329
|
UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
|
|
@@ -8382,6 +8387,7 @@ interface FormNonNullableFields {
|
|
|
8382
8387
|
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
8383
8388
|
submitSettings?: SubmitSettingsNonNullableFields;
|
|
8384
8389
|
fieldGroups: FieldGroupNonNullableFields[];
|
|
8390
|
+
disabledFormMessage?: RichContentNonNullableFields;
|
|
8385
8391
|
}
|
|
8386
8392
|
interface CreateFormResponseNonNullableFields {
|
|
8387
8393
|
form?: FormNonNullableFields;
|