@wix/forms 1.0.112 → 1.0.113
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.
|
@@ -2401,7 +2401,7 @@ declare enum Tag {
|
|
|
2401
2401
|
UNTAGGED = "UNTAGGED",
|
|
2402
2402
|
HOME = "HOME"
|
|
2403
2403
|
}
|
|
2404
|
-
declare enum OptInLevel$
|
|
2404
|
+
declare enum OptInLevel$2 {
|
|
2405
2405
|
UNKNOWN = "UNKNOWN",
|
|
2406
2406
|
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
2407
2407
|
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
@@ -2441,7 +2441,7 @@ interface SubscriptionInfo {
|
|
|
2441
2441
|
* Subscription consent opt in level, either single or double confirmation.
|
|
2442
2442
|
* Default: SINGLE_CONFIRMATION
|
|
2443
2443
|
*/
|
|
2444
|
-
optInLevel?: OptInLevel$
|
|
2444
|
+
optInLevel?: OptInLevel$2;
|
|
2445
2445
|
}
|
|
2446
2446
|
interface _String extends _StringComponentTypeOptionsOneOf {
|
|
2447
2447
|
/** Text input field */
|
|
@@ -3824,7 +3824,7 @@ interface CustomFieldInfoNonNullableFields {
|
|
|
3824
3824
|
key: string;
|
|
3825
3825
|
}
|
|
3826
3826
|
interface SubscriptionInfoNonNullableFields {
|
|
3827
|
-
optInLevel: OptInLevel$
|
|
3827
|
+
optInLevel: OptInLevel$2;
|
|
3828
3828
|
}
|
|
3829
3829
|
interface FormFieldContactInfoNonNullableFields {
|
|
3830
3830
|
emailInfo?: EmailInfoNonNullableFields;
|
|
@@ -4254,16 +4254,6 @@ type APIMetadata = {
|
|
|
4254
4254
|
packageName?: string;
|
|
4255
4255
|
};
|
|
4256
4256
|
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
4257
|
-
type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
4258
|
-
__type: 'event-definition';
|
|
4259
|
-
type: Type;
|
|
4260
|
-
isDomainEvent?: boolean;
|
|
4261
|
-
transformations?: (envelope: unknown) => Payload;
|
|
4262
|
-
__payload: Payload;
|
|
4263
|
-
};
|
|
4264
|
-
declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
|
|
4265
|
-
type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
|
|
4266
|
-
type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
|
|
4267
4257
|
|
|
4268
4258
|
declare global {
|
|
4269
4259
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
@@ -4723,7 +4713,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4723
4713
|
declare const context$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4724
4714
|
declare const context$2_updateForm: typeof updateForm;
|
|
4725
4715
|
declare namespace context$2 {
|
|
4726
|
-
export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, context$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_Gradient as Gradient, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4716
|
+
export { type ActionEvent$2 as ActionEvent, type context$2_AddressInfo as AddressInfo, type context$2_AddressLine2 as AddressLine2, context$2_Alignment as Alignment, type context$2_AnchorData as AnchorData, type context$2_AppEmbedData as AppEmbedData, type context$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type context$2_ArrayErrorMessages as ArrayErrorMessages, type context$2_ArrayItems as ArrayItems, type context$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type context$2_ArrayType as ArrayType, type context$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type context$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type context$2_AudioData as AudioData, type context$2_Background as Background, type context$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$2_BackgroundType as BackgroundType, type context$2_BlockquoteData as BlockquoteData, type context$2_BookingData as BookingData, context$2_BooleanComponentType as BooleanComponentType, type context$2_BooleanErrorMessages as BooleanErrorMessages, type context$2_BooleanType as BooleanType, type context$2_Border as Border, type context$2_BorderColors as BorderColors, type context$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type context$2_BulkCreateFormOptions as BulkCreateFormOptions, type context$2_BulkCreateFormRequest as BulkCreateFormRequest, type context$2_BulkCreateFormResponse as BulkCreateFormResponse, type context$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type context$2_BulkFormResult as BulkFormResult, type context$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type context$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type context$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type context$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type context$2_BulletedListData as BulletedListData, type context$2_ButtonData as ButtonData, context$2_ButtonDataType as ButtonDataType, type context$2_CellStyle as CellStyle, type context$2_Checkbox as Checkbox, type context$2_CheckboxGroup as CheckboxGroup, type context$2_CloneFormRequest as CloneFormRequest, type context$2_CloneFormResponse as CloneFormResponse, type context$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type context$2_CodeBlockData as CodeBlockData, type context$2_CollapsibleListData as CollapsibleListData, type context$2_ColorData as ColorData, type context$2_Colors as Colors, type context$2_CommonCustomOption as CommonCustomOption, context$2_ComponentType as ComponentType, context$2_ContactField as ContactField, context$2_CountFormsFieldset as CountFormsFieldset, type context$2_CountFormsOptions as CountFormsOptions, type context$2_CountFormsRequest as CountFormsRequest, type context$2_CountFormsResponse as CountFormsResponse, type context$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type context$2_CreateFormRequest as CreateFormRequest, type context$2_CreateFormResponse as CreateFormResponse, type context$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, context$2_Crop as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type context$2_CustomFieldInfo as CustomFieldInfo, type context$2_CustomOption as CustomOption, type context$2_DataExtensionsDetails as DataExtensionsDetails, context$2_DateFormatPart as DateFormatPart, type context$2_DateOptions as DateOptions, type context$2_DatePickerOptions as DatePickerOptions, type context$2_DateTimeConstraints as DateTimeConstraints, type context$2_DateTimeInput as DateTimeInput, type context$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, context$2_DateTimeInputType as DateTimeInputType, type context$2_DateTimeOptions as DateTimeOptions, type context$2_Decoration as Decoration, type context$2_DecorationDataOneOf as DecorationDataOneOf, context$2_DecorationType as DecorationType, type context$2_DefaultCountryConfig as DefaultCountryConfig, type context$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type context$2_DeleteFormOptions as DeleteFormOptions, type context$2_DeleteFormRequest as DeleteFormRequest, type context$2_DeleteFormResponse as DeleteFormResponse, type context$2_Design as Design, type context$2_Dimensions as Dimensions, context$2_Direction as Direction, type context$2_DisplayField as DisplayField, type context$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type context$2_DividerData as DividerData, type context$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type context$2_DonationInput as DonationInput, type context$2_DonationInputOption as DonationInputOption, type context$2_Dropdown as Dropdown, type context$2_DropdownCustomOption as DropdownCustomOption, type context$2_DropdownOption as DropdownOption, type context$2_DynamicPriceOptions as DynamicPriceOptions, type context$2_EmailInfo as EmailInfo, context$2_EmailInfoTag as EmailInfoTag, type context$2_EmbedData as EmbedData, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type context$2_FieldOverrides as FieldOverrides, context$2_FieldType as FieldType, type context$2_FieldsOverrides as FieldsOverrides, type context$2_FieldsSettings as FieldsSettings, context$2_Fieldset as Fieldset, type context$2_FileData as FileData, type context$2_FileSource as FileSource, type context$2_FileSourceDataOneOf as FileSourceDataOneOf, type context$2_FileUpload as FileUpload, context$2_FirstDayOfWeek as FirstDayOfWeek, type context$2_FixedPriceOptions as FixedPriceOptions, type context$2_FontSizeData as FontSizeData, context$2_FontType as FontType, type context$2_Form as Form, type context$2_FormChanged as FormChanged, type context$2_FormDeleted as FormDeleted, type context$2_FormField as FormField, type context$2_FormFieldContactInfo as FormFieldContactInfo, type context$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type context$2_FormFieldV2 as FormFieldV2, type context$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type context$2_FormLayout as FormLayout, type context$2_FormNonNullableFields as FormNonNullableFields, type context$2_FormOverride as FormOverride, type context$2_FormProperties as FormProperties, type context$2_FormRule as FormRule, context$2_Format as Format, context$2_FormatEnumFormat as FormatEnumFormat, type context$2_FormsQueryBuilder as FormsQueryBuilder, type context$2_FormsQueryResult as FormsQueryResult, type context$2_GIF as GIF, type context$2_GIFData as GIFData, type context$2_GalleryData as GalleryData, type context$2_GalleryOptions as GalleryOptions, type context$2_GetDeletedFormRequest as GetDeletedFormRequest, type context$2_GetDeletedFormResponse as GetDeletedFormResponse, type context$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type context$2_GetFormOptions as GetFormOptions, type context$2_GetFormRequest as GetFormRequest, type context$2_GetFormResponse as GetFormResponse, type context$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type context$2_Gradient as Gradient, type context$2_HTMLData as HTMLData, type context$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$2_Header as Header, type context$2_HeadingData as HeadingData, type context$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$2_Image as Image, type context$2_ImageData as ImageData, context$2_InitialExpandedItems as InitialExpandedItems, type context$2_InputField as InputField, type context$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type context$2_InputFieldArrayType as InputFieldArrayType, type context$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type context$2_InputFieldBooleanType as InputFieldBooleanType, type context$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type context$2_InputFieldIntegerType as InputFieldIntegerType, type context$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type context$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type context$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type context$2_InputFieldNumberType as InputFieldNumberType, type context$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type context$2_InputFieldObjectType as InputFieldObjectType, type context$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type context$2_InputFieldStringType as InputFieldStringType, type context$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, context$2_InputType as InputType, type context$2_IntegerType as IntegerType, type context$2_Item as Item, type context$2_ItemDataOneOf as ItemDataOneOf, type context$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type context$2_ItemStyle as ItemStyle, context$2_ItemType as ItemType, context$2_Kind as Kind, type context$2_Layout as Layout, context$2_LayoutType as LayoutType, type context$2_LimitationRule as LimitationRule, context$2_LineStyle as LineStyle, type context$2_Link as Link, type context$2_LinkData as LinkData, type context$2_LinkDataOneOf as LinkDataOneOf, type context$2_LinkPreviewData as LinkPreviewData, context$2_LinkTarget as LinkTarget, type context$2_ListDeletedFormsOptions as ListDeletedFormsOptions, context$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type context$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type context$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type context$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type context$2_ListFormsOptions as ListFormsOptions, context$2_ListFormsOrder as ListFormsOrder, type context$2_ListFormsRequest as ListFormsRequest, type context$2_ListFormsResponse as ListFormsResponse, type context$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type context$2_ListValue as ListValue, type context$2_MapData as MapData, type context$2_MapSettings as MapSettings, context$2_MapType as MapType, type context$2_Margin as Margin, type context$2_Media as Media, type context$2_MediaItem as MediaItem, type context$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type context$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type context$2_Metadata as Metadata, type context$2_MultilineAddress as MultilineAddress, context$2_MultilineAddressComponentType as MultilineAddressComponentType, type context$2_MultilineAddressValidation as MultilineAddressValidation, type context$2_NestedForm as NestedForm, type context$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type context$2_NestedFormOverrides as NestedFormOverrides, type context$2_Node as Node, type context$2_NodeDataOneOf as NodeDataOneOf, type context$2_NodeStyle as NodeStyle, context$2_NodeType as NodeType, context$2_NullValue as NullValue, context$2_NumberComponentType as NumberComponentType, type context$2_NumberErrorMessages as NumberErrorMessages, type context$2_NumberInput as NumberInput, context$2_NumberOfColumns as NumberOfColumns, type context$2_NumberType as NumberType, type context$2_ObjectErrorMessages as ObjectErrorMessages, type context$2_ObjectType as ObjectType, type context$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type context$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type context$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type context$2_Option as Option, type context$2_OptionDesign as OptionDesign, type context$2_OptionLayout as OptionLayout, type context$2_OrderedListData as OrderedListData, context$2_Orientation as Orientation, context$2_OverrideEntityType as OverrideEntityType, type context$2_PDFSettings as PDFSettings, type context$2_ParagraphData as ParagraphData, type context$2_Payment as Payment, context$2_PaymentComponentType as PaymentComponentType, type context$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type context$2_PaymentType as PaymentType, type context$2_Permissions as Permissions, type context$2_PhoneInfo as PhoneInfo, context$2_PhoneInfoTag as PhoneInfoTag, type context$2_PhoneInput as PhoneInput, type context$2_PiiFieldsUpdated as PiiFieldsUpdated, type context$2_PlaybackOptions as PlaybackOptions, type context$2_PluginContainerData as PluginContainerData, context$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$2_PluginContainerDataWidth as PluginContainerDataWidth, type context$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$2_Poll as Poll, type context$2_PollData as PollData, type context$2_PollDataLayout as PollDataLayout, type context$2_PollDesign as PollDesign, type context$2_PollLayout as PollLayout, context$2_PollLayoutDirection as PollLayoutDirection, context$2_PollLayoutType as PollLayoutType, type context$2_PollOption as PollOption, type context$2_PostSubmissionTriggers as PostSubmissionTriggers, type context$2_PredefinedValidation as PredefinedValidation, type context$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, context$2_PriceType as PriceType, type context$2_Product as Product, type context$2_ProductCheckboxGroup as ProductCheckboxGroup, type context$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type context$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, context$2_ProductType as ProductType, type context$2_PropertiesType as PropertiesType, context$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type context$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type context$2_QuantityLimit as QuantityLimit, type context$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type context$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type context$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type context$2_QueryFormsOptions as QueryFormsOptions, type context$2_QueryFormsRequest as QueryFormsRequest, type context$2_QueryFormsResponse as QueryFormsResponse, type context$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type context$2_RadioGroup as RadioGroup, type context$2_RadioGroupCustomOption as RadioGroupCustomOption, type context$2_RadioGroupOption as RadioGroupOption, type context$2_RatingInput as RatingInput, type context$2_Redirect as Redirect, type context$2_Rel as Rel, type context$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type context$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, context$2_RequiredIndicator as RequiredIndicator, context$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type context$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type context$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type context$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type context$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$2_RichContent as RichContent, type context$2_RichText as RichText, type context$2_Section as Section, type context$2_Settings as Settings, type context$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, context$2_Source as Source, context$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type context$2_Spoiler as Spoiler, type context$2_SpoilerData as SpoilerData, type context$2_Step as Step, context$2_StringComponentType as StringComponentType, type context$2_StringErrorMessages as StringErrorMessages, type context$2_StringType as StringType, type context$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type context$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type context$2_Styles as Styles, type context$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type context$2_SubmitButton as SubmitButton, type context$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type context$2_SubscriptionInfo as SubscriptionInfo, type context$2_TableCellData as TableCellData, type context$2_TableData as TableData, context$2_Tag as Tag, context$2_Target as Target, context$2_TextAlignment as TextAlignment, type context$2_TextData as TextData, type context$2_TextInput as TextInput, type context$2_TextNodeStyle as TextNodeStyle, type context$2_TextStyle as TextStyle, type context$2_ThankYouMessage as ThankYouMessage, type context$2_Thumbnails as Thumbnails, context$2_ThumbnailsAlignment as ThumbnailsAlignment, type context$2_TimeOptions as TimeOptions, context$2_Type as Type, type context$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$2_UpdateForm as UpdateForm, type context$2_UpdateFormRequest as UpdateFormRequest, type context$2_UpdateFormResponse as UpdateFormResponse, type context$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, context$2_UploadFileFormat as UploadFileFormat, type context$2_UpsertContact as UpsertContact, type context$2_Validation as Validation, context$2_ValidationFormat as ValidationFormat, type context$2_ValidationValidationOneOf as ValidationValidationOneOf, context$2_VerticalAlignment as VerticalAlignment, type context$2_Video as Video, type context$2_VideoData as VideoData, context$2_ViewMode as ViewMode, context$2_ViewRole as ViewRole, context$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, context$2_Width as Width, context$2_WidthType as WidthType, type context$2_WixFile as WixFile, context$2_WixFileComponentType as WixFileComponentType, type context$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type context$2__Array as _Array, type context$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type context$2__Boolean as _Boolean, type context$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type context$2__Number as _Number, type context$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type context$2__Object as _Object, type context$2__ObjectValidationOneOf as _ObjectValidationOneOf, type context$2__String as _String, type context$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, context$2_bulkCreateForm as bulkCreateForm, context$2_bulkRemoveDeletedField as bulkRemoveDeletedField, context$2_cloneForm as cloneForm, context$2_countForms as countForms, context$2_createForm as createForm, context$2_deleteForm as deleteForm, context$2_getDeletedForm as getDeletedForm, context$2_getForm as getForm, context$2_listDeletedForms as listDeletedForms, context$2_listForms as listForms, context$2_queryDeletedForms as queryDeletedForms, context$2_queryForms as queryForms, context$2_removeFormFromTrashBin as removeFormFromTrashBin, context$2_restoreFromTrashBin as restoreFromTrashBin, context$2_updateExtendedFields as updateExtendedFields, context$2_updateForm as updateForm };
|
|
4727
4717
|
}
|
|
4728
4718
|
|
|
4729
4719
|
/**
|
|
@@ -4824,7 +4814,7 @@ interface ExtendedFields$1 {
|
|
|
4824
4814
|
namespaces?: Record<string, Record<string, any>>;
|
|
4825
4815
|
}
|
|
4826
4816
|
declare enum SubmissionStatus$1 {
|
|
4827
|
-
|
|
4817
|
+
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
4828
4818
|
PENDING = "PENDING",
|
|
4829
4819
|
CONFIRMED = "CONFIRMED",
|
|
4830
4820
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
@@ -4837,9 +4827,11 @@ interface OrderDetails$1 {
|
|
|
4837
4827
|
*/
|
|
4838
4828
|
checkoutId?: string;
|
|
4839
4829
|
}
|
|
4840
|
-
interface
|
|
4841
|
-
/**
|
|
4842
|
-
submission
|
|
4830
|
+
interface FormSubmissionStatusUpdatedEvent$1 {
|
|
4831
|
+
/** Updated submission. */
|
|
4832
|
+
submission?: FormSubmission$1;
|
|
4833
|
+
/** Previous status of the submission. */
|
|
4834
|
+
previousStatus?: SubmissionStatus$1;
|
|
4843
4835
|
}
|
|
4844
4836
|
/** Form submission that was created or retrieved. */
|
|
4845
4837
|
interface FormSubmission$1 {
|
|
@@ -4927,6 +4919,51 @@ interface FormSubmissionOrderDetails {
|
|
|
4927
4919
|
*/
|
|
4928
4920
|
checkoutId?: string;
|
|
4929
4921
|
}
|
|
4922
|
+
interface RemovedSubmissionFromTrash$1 {
|
|
4923
|
+
/** Removed submission. */
|
|
4924
|
+
submission?: FormSubmission$1;
|
|
4925
|
+
}
|
|
4926
|
+
interface SubmissionContactMapped$1 {
|
|
4927
|
+
/**
|
|
4928
|
+
* Mapped upserted contact ID.
|
|
4929
|
+
* @readonly
|
|
4930
|
+
*/
|
|
4931
|
+
contactId?: string;
|
|
4932
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
4933
|
+
namespace?: string;
|
|
4934
|
+
/** Marketing subscription details */
|
|
4935
|
+
marketingSubscriptionDetails?: MarketingSubscriptionDetails$1;
|
|
4936
|
+
}
|
|
4937
|
+
interface MarketingSubscriptionDetails$1 {
|
|
4938
|
+
/** Form id which was submitted */
|
|
4939
|
+
formId?: string;
|
|
4940
|
+
/** Mapped contact emails. */
|
|
4941
|
+
emails?: string[];
|
|
4942
|
+
/**
|
|
4943
|
+
* Date and time the form submission was created.
|
|
4944
|
+
* @readonly
|
|
4945
|
+
*/
|
|
4946
|
+
submittedDate?: Date;
|
|
4947
|
+
/**
|
|
4948
|
+
* Subscription consent opt in level, either single or double confirmation.
|
|
4949
|
+
* Default: SINGLE_CONFIRMATION
|
|
4950
|
+
*/
|
|
4951
|
+
optInLevel?: OptInLevel$1;
|
|
4952
|
+
}
|
|
4953
|
+
declare enum OptInLevel$1 {
|
|
4954
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
4955
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
4956
|
+
}
|
|
4957
|
+
interface SubmissionContactMappingSkipped$1 {
|
|
4958
|
+
/** Form Id. */
|
|
4959
|
+
formId?: string;
|
|
4960
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
4961
|
+
namespace?: string;
|
|
4962
|
+
}
|
|
4963
|
+
interface CheckForSpamRequest {
|
|
4964
|
+
/** Form submission. */
|
|
4965
|
+
submission: FormSubmission$1;
|
|
4966
|
+
}
|
|
4930
4967
|
interface CheckForSpamResponse {
|
|
4931
4968
|
/** Is the submission a spam. */
|
|
4932
4969
|
spam?: boolean;
|
|
@@ -5183,7 +5220,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
5183
5220
|
slug?: string;
|
|
5184
5221
|
/** ID of the entity associated with the event. */
|
|
5185
5222
|
entityId?: string;
|
|
5186
|
-
/** Event timestamp. */
|
|
5223
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
5187
5224
|
eventTime?: Date;
|
|
5188
5225
|
/**
|
|
5189
5226
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -5362,60 +5399,6 @@ interface FormSpamSubmissionReportsCountNonNullableFields {
|
|
|
5362
5399
|
interface CountFormSpamSubmissionReportsResponseNonNullableFields {
|
|
5363
5400
|
formsSpamSubmissionReportsCount: FormSpamSubmissionReportsCountNonNullableFields[];
|
|
5364
5401
|
}
|
|
5365
|
-
interface BaseEventMetadata$1 {
|
|
5366
|
-
/** App instance ID. */
|
|
5367
|
-
instanceId?: string | null;
|
|
5368
|
-
/** Event type. */
|
|
5369
|
-
eventType?: string;
|
|
5370
|
-
/** The identification type and identity data. */
|
|
5371
|
-
identity?: IdentificationData$1;
|
|
5372
|
-
}
|
|
5373
|
-
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
5374
|
-
/**
|
|
5375
|
-
* Unique event ID.
|
|
5376
|
-
* Allows clients to ignore duplicate webhooks.
|
|
5377
|
-
*/
|
|
5378
|
-
_id?: string;
|
|
5379
|
-
/**
|
|
5380
|
-
* Assumes actions are also always typed to an entity_type
|
|
5381
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
5382
|
-
*/
|
|
5383
|
-
entityFqdn?: string;
|
|
5384
|
-
/**
|
|
5385
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
5386
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
5387
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
5388
|
-
*/
|
|
5389
|
-
slug?: string;
|
|
5390
|
-
/** ID of the entity associated with the event. */
|
|
5391
|
-
entityId?: string;
|
|
5392
|
-
/** Event timestamp. */
|
|
5393
|
-
eventTime?: Date;
|
|
5394
|
-
/**
|
|
5395
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
5396
|
-
* (for example, GDPR).
|
|
5397
|
-
*/
|
|
5398
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
5399
|
-
/** If present, indicates the action that triggered the event. */
|
|
5400
|
-
originatedFrom?: string | null;
|
|
5401
|
-
/**
|
|
5402
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
5403
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
5404
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
5405
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
5406
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
5407
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
5408
|
-
*/
|
|
5409
|
-
entityEventSequence?: string | null;
|
|
5410
|
-
}
|
|
5411
|
-
interface FormSpamSubmissionReportCreatedEnvelope {
|
|
5412
|
-
entity: FormSpamSubmissionReport;
|
|
5413
|
-
metadata: EventMetadata$1;
|
|
5414
|
-
}
|
|
5415
|
-
interface FormSpamSubmissionReportDeletedEnvelope {
|
|
5416
|
-
entity: FormSpamSubmissionReport;
|
|
5417
|
-
metadata: EventMetadata$1;
|
|
5418
|
-
}
|
|
5419
5402
|
interface BulkDeleteFormSpamSubmissionReportOptions {
|
|
5420
5403
|
/** Ids of the form spam submission reports to delete. */
|
|
5421
5404
|
formSpamSubmissionReportIds?: string[];
|
|
@@ -5500,8 +5483,6 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
5500
5483
|
|
|
5501
5484
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5502
5485
|
|
|
5503
|
-
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5504
|
-
|
|
5505
5486
|
declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
|
|
5506
5487
|
declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
|
|
5507
5488
|
declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
|
|
@@ -5514,8 +5495,6 @@ declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof
|
|
|
5514
5495
|
declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
|
|
5515
5496
|
declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
|
|
5516
5497
|
declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<typeof publicCountFormSpamSubmissionReports>>;
|
|
5517
|
-
declare const onFormSpamSubmissionReportCreated: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportCreated>>;
|
|
5518
|
-
declare const onFormSpamSubmissionReportDeleted: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportDeleted>>;
|
|
5519
5498
|
|
|
5520
5499
|
type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
|
|
5521
5500
|
type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
|
|
@@ -5547,8 +5526,6 @@ type context$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateF
|
|
|
5547
5526
|
type context$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
|
|
5548
5527
|
type context$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
5549
5528
|
type context$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
5550
|
-
type context$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
|
|
5551
|
-
type context$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
|
|
5552
5529
|
type context$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
5553
5530
|
type context$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
5554
5531
|
type context$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
@@ -5578,13 +5555,11 @@ declare const context$1_countFormSpamSubmissionReports: typeof countFormSpamSubm
|
|
|
5578
5555
|
declare const context$1_createFormSpamSubmissionReport: typeof createFormSpamSubmissionReport;
|
|
5579
5556
|
declare const context$1_deleteFormSpamSubmissionReport: typeof deleteFormSpamSubmissionReport;
|
|
5580
5557
|
declare const context$1_getFormSpamSubmissionReport: typeof getFormSpamSubmissionReport;
|
|
5581
|
-
declare const context$1_onFormSpamSubmissionReportCreated: typeof onFormSpamSubmissionReportCreated;
|
|
5582
|
-
declare const context$1_onFormSpamSubmissionReportDeleted: typeof onFormSpamSubmissionReportDeleted;
|
|
5583
5558
|
declare const context$1_queryFormSpamSubmissionReportsByNamespace: typeof queryFormSpamSubmissionReportsByNamespace;
|
|
5584
5559
|
declare const context$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
5585
5560
|
declare const context$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
5586
5561
|
declare namespace context$1 {
|
|
5587
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type
|
|
5562
|
+
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 FormSubmissionStatusUpdatedEvent$1 as FormSubmissionStatusUpdatedEvent, 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 MarketingSubscriptionDetails$1 as MarketingSubscriptionDetails, type MessageEnvelope$1 as MessageEnvelope, OptInLevel$1 as OptInLevel, type OrderDetails$1 as OrderDetails, type context$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type RemovedSubmissionFromTrash$1 as RemovedSubmissionFromTrash, 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, type SubmissionContactMapped$1 as SubmissionContactMapped, type SubmissionContactMappingSkipped$1 as SubmissionContactMappingSkipped, 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 };
|
|
5588
5563
|
}
|
|
5589
5564
|
|
|
5590
5565
|
/** Form submission that was created or retrieved. */
|
|
@@ -5647,7 +5622,7 @@ interface FormSubmission {
|
|
|
5647
5622
|
contactId?: string | null;
|
|
5648
5623
|
}
|
|
5649
5624
|
declare enum SubmissionStatus {
|
|
5650
|
-
|
|
5625
|
+
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
5651
5626
|
PENDING = "PENDING",
|
|
5652
5627
|
CONFIRMED = "CONFIRMED",
|
|
5653
5628
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
@@ -5712,6 +5687,53 @@ interface OrderDetails {
|
|
|
5712
5687
|
*/
|
|
5713
5688
|
checkoutId?: string;
|
|
5714
5689
|
}
|
|
5690
|
+
interface FormSubmissionStatusUpdatedEvent {
|
|
5691
|
+
/** Updated submission. */
|
|
5692
|
+
submission?: FormSubmission;
|
|
5693
|
+
/** Previous status of the submission. */
|
|
5694
|
+
previousStatus?: SubmissionStatus;
|
|
5695
|
+
}
|
|
5696
|
+
interface RemovedSubmissionFromTrash {
|
|
5697
|
+
/** Removed submission. */
|
|
5698
|
+
submission?: FormSubmission;
|
|
5699
|
+
}
|
|
5700
|
+
interface SubmissionContactMapped {
|
|
5701
|
+
/**
|
|
5702
|
+
* Mapped upserted contact ID.
|
|
5703
|
+
* @readonly
|
|
5704
|
+
*/
|
|
5705
|
+
contactId?: string;
|
|
5706
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
5707
|
+
namespace?: string;
|
|
5708
|
+
/** Marketing subscription details */
|
|
5709
|
+
marketingSubscriptionDetails?: MarketingSubscriptionDetails;
|
|
5710
|
+
}
|
|
5711
|
+
interface MarketingSubscriptionDetails {
|
|
5712
|
+
/** Form id which was submitted */
|
|
5713
|
+
formId?: string;
|
|
5714
|
+
/** Mapped contact emails. */
|
|
5715
|
+
emails?: string[];
|
|
5716
|
+
/**
|
|
5717
|
+
* Date and time the form submission was created.
|
|
5718
|
+
* @readonly
|
|
5719
|
+
*/
|
|
5720
|
+
submittedDate?: Date;
|
|
5721
|
+
/**
|
|
5722
|
+
* Subscription consent opt in level, either single or double confirmation.
|
|
5723
|
+
* Default: SINGLE_CONFIRMATION
|
|
5724
|
+
*/
|
|
5725
|
+
optInLevel?: OptInLevel;
|
|
5726
|
+
}
|
|
5727
|
+
declare enum OptInLevel {
|
|
5728
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
5729
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
5730
|
+
}
|
|
5731
|
+
interface SubmissionContactMappingSkipped {
|
|
5732
|
+
/** Form Id. */
|
|
5733
|
+
formId?: string;
|
|
5734
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
5735
|
+
namespace?: string;
|
|
5736
|
+
}
|
|
5715
5737
|
interface CreateSubmissionRequest {
|
|
5716
5738
|
/** Submission to create. */
|
|
5717
5739
|
submission: FormSubmission;
|
|
@@ -5825,12 +5847,6 @@ interface ConfirmSubmissionResponse {
|
|
|
5825
5847
|
/** The confirmed submission. */
|
|
5826
5848
|
submission?: FormSubmission;
|
|
5827
5849
|
}
|
|
5828
|
-
interface FormSubmissionStatusUpdatedEvent {
|
|
5829
|
-
/** Updated submission. */
|
|
5830
|
-
submission?: FormSubmission;
|
|
5831
|
-
/** Previous status of the submission. */
|
|
5832
|
-
previousStatus?: SubmissionStatus;
|
|
5833
|
-
}
|
|
5834
5850
|
interface DeleteSubmissionRequest {
|
|
5835
5851
|
/** ID of the submission to delete. */
|
|
5836
5852
|
submissionId: string;
|
|
@@ -5883,10 +5899,6 @@ interface RemoveSubmissionFromTrashBinRequest {
|
|
|
5883
5899
|
}
|
|
5884
5900
|
interface RemoveSubmissionFromTrashBinResponse {
|
|
5885
5901
|
}
|
|
5886
|
-
interface RemovedSubmissionFromTrash {
|
|
5887
|
-
/** Removed submission. */
|
|
5888
|
-
submission?: FormSubmission;
|
|
5889
|
-
}
|
|
5890
5902
|
interface BulkRemoveSubmissionFromTrashBinRequest {
|
|
5891
5903
|
/** Form ID. */
|
|
5892
5904
|
formId: string;
|
|
@@ -6186,7 +6198,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
6186
6198
|
slug?: string;
|
|
6187
6199
|
/** ID of the entity associated with the event. */
|
|
6188
6200
|
entityId?: string;
|
|
6189
|
-
/** Event timestamp. */
|
|
6201
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
6190
6202
|
eventTime?: Date;
|
|
6191
6203
|
/**
|
|
6192
6204
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -6315,43 +6327,6 @@ declare enum IdentityType {
|
|
|
6315
6327
|
/** Matching contact is a member, Merge logic won't be applied */
|
|
6316
6328
|
NOT_AUTHENTICATED_MEMBER = "NOT_AUTHENTICATED_MEMBER"
|
|
6317
6329
|
}
|
|
6318
|
-
interface SubmissionContactMapped {
|
|
6319
|
-
/**
|
|
6320
|
-
* Mapped upserted contact ID.
|
|
6321
|
-
* @readonly
|
|
6322
|
-
*/
|
|
6323
|
-
contactId?: string;
|
|
6324
|
-
/** Identifies the namespace that the submission's form belongs to. */
|
|
6325
|
-
namespace?: string;
|
|
6326
|
-
/** Marketing subscription details */
|
|
6327
|
-
marketingSubscriptionDetails?: MarketingSubscriptionDetails;
|
|
6328
|
-
}
|
|
6329
|
-
interface MarketingSubscriptionDetails {
|
|
6330
|
-
/** Form id which was submitted */
|
|
6331
|
-
formId?: string;
|
|
6332
|
-
/** Mapped contact emails. */
|
|
6333
|
-
emails?: string[];
|
|
6334
|
-
/**
|
|
6335
|
-
* Date and time the form submission was created.
|
|
6336
|
-
* @readonly
|
|
6337
|
-
*/
|
|
6338
|
-
submittedDate?: Date;
|
|
6339
|
-
/**
|
|
6340
|
-
* Subscription consent opt in level, either single or double confirmation.
|
|
6341
|
-
* Default: SINGLE_CONFIRMATION
|
|
6342
|
-
*/
|
|
6343
|
-
optInLevel?: OptInLevel;
|
|
6344
|
-
}
|
|
6345
|
-
declare enum OptInLevel {
|
|
6346
|
-
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
6347
|
-
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
6348
|
-
}
|
|
6349
|
-
interface SubmissionContactMappingSkipped {
|
|
6350
|
-
/** Form Id. */
|
|
6351
|
-
formId?: string;
|
|
6352
|
-
/** Identifies the namespace that the submission's form belongs to. */
|
|
6353
|
-
namespace?: string;
|
|
6354
|
-
}
|
|
6355
6330
|
interface OrderDetailsNonNullableFields {
|
|
6356
6331
|
itemSubtotal: string;
|
|
6357
6332
|
checkoutId: string;
|
|
@@ -6459,79 +6434,6 @@ interface SubmitContactResponseNonNullableFields {
|
|
|
6459
6434
|
interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
6460
6435
|
submitContactResponse?: SubmitContactResponseNonNullableFields;
|
|
6461
6436
|
}
|
|
6462
|
-
interface BaseEventMetadata {
|
|
6463
|
-
/** App instance ID. */
|
|
6464
|
-
instanceId?: string | null;
|
|
6465
|
-
/** Event type. */
|
|
6466
|
-
eventType?: string;
|
|
6467
|
-
/** The identification type and identity data. */
|
|
6468
|
-
identity?: IdentificationData;
|
|
6469
|
-
}
|
|
6470
|
-
interface EventMetadata extends BaseEventMetadata {
|
|
6471
|
-
/**
|
|
6472
|
-
* Unique event ID.
|
|
6473
|
-
* Allows clients to ignore duplicate webhooks.
|
|
6474
|
-
*/
|
|
6475
|
-
_id?: string;
|
|
6476
|
-
/**
|
|
6477
|
-
* Assumes actions are also always typed to an entity_type
|
|
6478
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
6479
|
-
*/
|
|
6480
|
-
entityFqdn?: string;
|
|
6481
|
-
/**
|
|
6482
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
6483
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
6484
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
6485
|
-
*/
|
|
6486
|
-
slug?: string;
|
|
6487
|
-
/** ID of the entity associated with the event. */
|
|
6488
|
-
entityId?: string;
|
|
6489
|
-
/** Event timestamp. */
|
|
6490
|
-
eventTime?: Date;
|
|
6491
|
-
/**
|
|
6492
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
6493
|
-
* (for example, GDPR).
|
|
6494
|
-
*/
|
|
6495
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
6496
|
-
/** If present, indicates the action that triggered the event. */
|
|
6497
|
-
originatedFrom?: string | null;
|
|
6498
|
-
/**
|
|
6499
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
6500
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
6501
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
6502
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
6503
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
6504
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
6505
|
-
*/
|
|
6506
|
-
entityEventSequence?: string | null;
|
|
6507
|
-
}
|
|
6508
|
-
interface SubmissionCreatedEnvelope {
|
|
6509
|
-
entity: FormSubmission;
|
|
6510
|
-
metadata: EventMetadata;
|
|
6511
|
-
}
|
|
6512
|
-
interface SubmissionUpdatedEnvelope {
|
|
6513
|
-
entity: FormSubmission;
|
|
6514
|
-
metadata: EventMetadata;
|
|
6515
|
-
}
|
|
6516
|
-
interface SubmissionStatusUpdatedEnvelope {
|
|
6517
|
-
data: FormSubmissionStatusUpdatedEvent;
|
|
6518
|
-
metadata: EventMetadata;
|
|
6519
|
-
}
|
|
6520
|
-
interface SubmissionDeletedEnvelope {
|
|
6521
|
-
metadata: EventMetadata;
|
|
6522
|
-
}
|
|
6523
|
-
interface SubmissionRemovedSubmissionFromTrashEnvelope {
|
|
6524
|
-
data: RemovedSubmissionFromTrash;
|
|
6525
|
-
metadata: EventMetadata;
|
|
6526
|
-
}
|
|
6527
|
-
interface SubmissionContactMappedEnvelope {
|
|
6528
|
-
data: SubmissionContactMapped;
|
|
6529
|
-
metadata: EventMetadata;
|
|
6530
|
-
}
|
|
6531
|
-
interface SubmissionContactMappingSkippedEnvelope {
|
|
6532
|
-
data: SubmissionContactMappingSkipped;
|
|
6533
|
-
metadata: EventMetadata;
|
|
6534
|
-
}
|
|
6535
6437
|
interface CreateSubmissionOptions {
|
|
6536
6438
|
/** Captcha token. */
|
|
6537
6439
|
captchaToken?: string | null;
|
|
@@ -6731,8 +6633,6 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
6731
6633
|
|
|
6732
6634
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
6733
6635
|
|
|
6734
|
-
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
6735
|
-
|
|
6736
6636
|
declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
|
|
6737
6637
|
declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
|
|
6738
6638
|
declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
|
|
@@ -6754,17 +6654,9 @@ declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof
|
|
|
6754
6654
|
declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
|
|
6755
6655
|
declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
|
|
6756
6656
|
declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<typeof publicUpsertContactFromSubmission>>;
|
|
6757
|
-
declare const onSubmissionCreated: ReturnType<typeof createEventModule<typeof publicOnSubmissionCreated>>;
|
|
6758
|
-
declare const onSubmissionUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionUpdated>>;
|
|
6759
|
-
declare const onSubmissionStatusUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionStatusUpdated>>;
|
|
6760
|
-
declare const onSubmissionDeleted: ReturnType<typeof createEventModule<typeof publicOnSubmissionDeleted>>;
|
|
6761
|
-
declare const onSubmissionRemovedSubmissionFromTrash: ReturnType<typeof createEventModule<typeof publicOnSubmissionRemovedSubmissionFromTrash>>;
|
|
6762
|
-
declare const onSubmissionContactMapped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMapped>>;
|
|
6763
|
-
declare const onSubmissionContactMappingSkipped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMappingSkipped>>;
|
|
6764
6657
|
|
|
6765
6658
|
type context_ActionEvent = ActionEvent;
|
|
6766
6659
|
type context_ApplicationError = ApplicationError;
|
|
6767
|
-
type context_BaseEventMetadata = BaseEventMetadata;
|
|
6768
6660
|
type context_BulkActionMetadata = BulkActionMetadata;
|
|
6769
6661
|
type context_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitterData;
|
|
6770
6662
|
type context_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
|
|
@@ -6821,7 +6713,6 @@ type context_Empty = Empty;
|
|
|
6821
6713
|
type context_EntityCreatedEvent = EntityCreatedEvent;
|
|
6822
6714
|
type context_EntityDeletedEvent = EntityDeletedEvent;
|
|
6823
6715
|
type context_EntityUpdatedEvent = EntityUpdatedEvent;
|
|
6824
|
-
type context_EventMetadata = EventMetadata;
|
|
6825
6716
|
type context_ExtendedFields = ExtendedFields;
|
|
6826
6717
|
type context_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
|
|
6827
6718
|
type context_FormSubmission = FormSubmission;
|
|
@@ -6882,16 +6773,9 @@ type context_SortOrder = SortOrder;
|
|
|
6882
6773
|
declare const context_SortOrder: typeof SortOrder;
|
|
6883
6774
|
type context_Sorting = Sorting;
|
|
6884
6775
|
type context_SubmissionContactMapped = SubmissionContactMapped;
|
|
6885
|
-
type context_SubmissionContactMappedEnvelope = SubmissionContactMappedEnvelope;
|
|
6886
6776
|
type context_SubmissionContactMappingSkipped = SubmissionContactMappingSkipped;
|
|
6887
|
-
type context_SubmissionContactMappingSkippedEnvelope = SubmissionContactMappingSkippedEnvelope;
|
|
6888
|
-
type context_SubmissionCreatedEnvelope = SubmissionCreatedEnvelope;
|
|
6889
|
-
type context_SubmissionDeletedEnvelope = SubmissionDeletedEnvelope;
|
|
6890
|
-
type context_SubmissionRemovedSubmissionFromTrashEnvelope = SubmissionRemovedSubmissionFromTrashEnvelope;
|
|
6891
6777
|
type context_SubmissionStatus = SubmissionStatus;
|
|
6892
6778
|
declare const context_SubmissionStatus: typeof SubmissionStatus;
|
|
6893
|
-
type context_SubmissionStatusUpdatedEnvelope = SubmissionStatusUpdatedEnvelope;
|
|
6894
|
-
type context_SubmissionUpdatedEnvelope = SubmissionUpdatedEnvelope;
|
|
6895
6779
|
type context_SubmissionsQueryBuilder = SubmissionsQueryBuilder;
|
|
6896
6780
|
type context_SubmissionsQueryResult = SubmissionsQueryResult;
|
|
6897
6781
|
type context_SubmitContactResponse = SubmitContactResponse;
|
|
@@ -6921,13 +6805,6 @@ declare const context_getDeletedSubmission: typeof getDeletedSubmission;
|
|
|
6921
6805
|
declare const context_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
6922
6806
|
declare const context_getSubmission: typeof getSubmission;
|
|
6923
6807
|
declare const context_listDeletedSubmissions: typeof listDeletedSubmissions;
|
|
6924
|
-
declare const context_onSubmissionContactMapped: typeof onSubmissionContactMapped;
|
|
6925
|
-
declare const context_onSubmissionContactMappingSkipped: typeof onSubmissionContactMappingSkipped;
|
|
6926
|
-
declare const context_onSubmissionCreated: typeof onSubmissionCreated;
|
|
6927
|
-
declare const context_onSubmissionDeleted: typeof onSubmissionDeleted;
|
|
6928
|
-
declare const context_onSubmissionRemovedSubmissionFromTrash: typeof onSubmissionRemovedSubmissionFromTrash;
|
|
6929
|
-
declare const context_onSubmissionStatusUpdated: typeof onSubmissionStatusUpdated;
|
|
6930
|
-
declare const context_onSubmissionUpdated: typeof onSubmissionUpdated;
|
|
6931
6808
|
declare const context_querySubmission: typeof querySubmission;
|
|
6932
6809
|
declare const context_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
6933
6810
|
declare const context_removeSubmissionFromTrashBin: typeof removeSubmissionFromTrashBin;
|
|
@@ -6936,7 +6813,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
6936
6813
|
declare const context_updateSubmission: typeof updateSubmission;
|
|
6937
6814
|
declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
6938
6815
|
declare namespace context {
|
|
6939
|
-
export { type context_ActionEvent as ActionEvent, type context_ApplicationError as ApplicationError, type context_BaseEventMetadata as BaseEventMetadata, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_ItemMetadata as ItemMetadata, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_MessageEnvelope as MessageEnvelope, context_Mode as Mode, context_OptInLevel as OptInLevel, type context_OrderDetails as OrderDetails, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappedEnvelope as SubmissionContactMappedEnvelope, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type context_SubmissionContactMappingSkippedEnvelope as SubmissionContactMappingSkippedEnvelope, type context_SubmissionCreatedEnvelope as SubmissionCreatedEnvelope, type context_SubmissionDeletedEnvelope as SubmissionDeletedEnvelope, type context_SubmissionRemovedSubmissionFromTrashEnvelope as SubmissionRemovedSubmissionFromTrashEnvelope, context_SubmissionStatus as SubmissionStatus, type context_SubmissionStatusUpdatedEnvelope as SubmissionStatusUpdatedEnvelope, type context_SubmissionUpdatedEnvelope as SubmissionUpdatedEnvelope, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitContactResponse as SubmitContactResponse, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_onSubmissionContactMapped as onSubmissionContactMapped, context_onSubmissionContactMappingSkipped as onSubmissionContactMappingSkipped, context_onSubmissionCreated as onSubmissionCreated, context_onSubmissionDeleted as onSubmissionDeleted, context_onSubmissionRemovedSubmissionFromTrash as onSubmissionRemovedSubmissionFromTrash, context_onSubmissionStatusUpdated as onSubmissionStatusUpdated, context_onSubmissionUpdated as onSubmissionUpdated, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
6816
|
+
export { type context_ActionEvent as ActionEvent, type context_ApplicationError as ApplicationError, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type context_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type context_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type context_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type context_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type context_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type context_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type context_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type context_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type context_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type context_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type context_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type context_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type context_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type context_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type context_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type context_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type context_BulkSubmissionResult as BulkSubmissionResult, type context_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type context_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type context_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, type context_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type context_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type context_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type context_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type context_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type context_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type context_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type context_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type context_CountSubmissionsOptions as CountSubmissionsOptions, type context_CountSubmissionsRequest as CountSubmissionsRequest, type context_CountSubmissionsResponse as CountSubmissionsResponse, type context_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type context_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type context_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type context_CreateSubmissionOptions as CreateSubmissionOptions, type context_CreateSubmissionRequest as CreateSubmissionRequest, type context_CreateSubmissionResponse as CreateSubmissionResponse, type context_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_CursorSearch as CursorSearch, type context_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type context_Cursors as Cursors, type context_DeleteSubmissionOptions as DeleteSubmissionOptions, type context_DeleteSubmissionRequest as DeleteSubmissionRequest, type context_DeleteSubmissionResponse as DeleteSubmissionResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_ExtendedFields as ExtendedFields, type context_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type context_FormSubmission as FormSubmission, type context_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type context_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type context_FormSubmissionsCount as FormSubmissionsCount, type context_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type context_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type context_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type context_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type context_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type context_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type context_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type context_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type context_GetSubmissionRequest as GetSubmissionRequest, type context_GetSubmissionResponse as GetSubmissionResponse, type context_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_ItemMetadata as ItemMetadata, type context_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type context_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type context_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type context_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type context_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type context_MessageEnvelope as MessageEnvelope, context_Mode as Mode, context_OptInLevel as OptInLevel, type context_OrderDetails as OrderDetails, type context_QuerySubmissionOptions as QuerySubmissionOptions, type context_QuerySubmissionRequest as QuerySubmissionRequest, type context_QuerySubmissionResponse as QuerySubmissionResponse, type context_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type context_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type context_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type context_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type context_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type context_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type context_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type context_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type context_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type context_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, type context_RestoreInfo as RestoreInfo, type context_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type context_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type context_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type context_SearchDetails as SearchDetails, type context_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type context_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type context_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type context_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type context_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SubmissionContactMapped as SubmissionContactMapped, type context_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, context_SubmissionStatus as SubmissionStatus, type context_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type context_SubmissionsQueryResult as SubmissionsQueryResult, type context_SubmitContactResponse as SubmitContactResponse, type context_Submitter as Submitter, type context_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type context_UpdateSubmission as UpdateSubmission, type context_UpdateSubmissionRequest as UpdateSubmissionRequest, type context_UpdateSubmissionResponse as UpdateSubmissionResponse, type context_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, type context_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type context_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type context_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type context_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, context_bulkDeleteSubmission as bulkDeleteSubmission, context_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, context_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, context_confirmSubmission as confirmSubmission, context_countDeletedSubmissions as countDeletedSubmissions, context_countSubmissions as countSubmissions, context_countSubmissionsByFilter as countSubmissionsByFilter, context_createSubmission as createSubmission, context_deleteSubmission as deleteSubmission, context_getDeletedSubmission as getDeletedSubmission, context_getMediaUploadUrl as getMediaUploadUrl, context_getSubmission as getSubmission, context_listDeletedSubmissions as listDeletedSubmissions, context_querySubmission as querySubmission, context_querySubmissionsByNamespace as querySubmissionsByNamespace, context_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, context_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, context_searchSubmissionsByNamespace as searchSubmissionsByNamespace, context_updateSubmission as updateSubmission, context_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
6940
6817
|
}
|
|
6941
6818
|
|
|
6942
6819
|
export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };
|