@wix/forms 1.0.112 → 1.0.114

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.
@@ -71,6 +71,8 @@ interface Form {
71
71
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
72
72
  /** Required indicator properties. */
73
73
  requiredIndicatorProperties?: RequiredIndicatorProperties;
74
+ /** Settings for actions to be taken after form submission. */
75
+ submitSettings?: SubmitSettings;
74
76
  }
75
77
  declare enum RequiredIndicator {
76
78
  UNKNOWN_INDICATOR = "UNKNOWN_INDICATOR",
@@ -2401,7 +2403,7 @@ declare enum Tag {
2401
2403
  UNTAGGED = "UNTAGGED",
2402
2404
  HOME = "HOME"
2403
2405
  }
2404
- declare enum OptInLevel$1 {
2406
+ declare enum OptInLevel$2 {
2405
2407
  UNKNOWN = "UNKNOWN",
2406
2408
  SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
2407
2409
  DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
@@ -2441,7 +2443,7 @@ interface SubscriptionInfo {
2441
2443
  * Subscription consent opt in level, either single or double confirmation.
2442
2444
  * Default: SINGLE_CONFIRMATION
2443
2445
  */
2444
- optInLevel?: OptInLevel$1;
2446
+ optInLevel?: OptInLevel$2;
2445
2447
  }
2446
2448
  interface _String extends _StringComponentTypeOptionsOneOf {
2447
2449
  /** Text input field */
@@ -2696,9 +2698,19 @@ interface DisplayFieldComponentTypeOneOf {
2696
2698
  richText?: RichText;
2697
2699
  }
2698
2700
  interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2699
- /** Submit action effect is to show message */
2701
+ /**
2702
+ * Submit action effect is to show message
2703
+ * @deprecated Submit action effect is to show message
2704
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2705
+ * @targetRemovalDate 2025-01-06
2706
+ */
2700
2707
  thankYouMessage?: ThankYouMessage;
2701
- /** Submit action effect is to redirect to */
2708
+ /**
2709
+ * Submit action effect is to redirect to
2710
+ * @deprecated Submit action effect is to redirect to
2711
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2712
+ * @targetRemovalDate 2025-01-06
2713
+ */
2702
2714
  redirect?: Redirect;
2703
2715
  /** When button is not on last page it behaves as switch between pages page, text of label to go to next page. */
2704
2716
  nextText?: string | null;
@@ -2709,9 +2721,19 @@ interface SubmitButton extends SubmitButtonSubmitActionOneOf {
2709
2721
  }
2710
2722
  /** @oneof */
2711
2723
  interface SubmitButtonSubmitActionOneOf {
2712
- /** Submit action effect is to show message */
2724
+ /**
2725
+ * Submit action effect is to show message
2726
+ * @deprecated Submit action effect is to show message
2727
+ * @replacedBy wix.forms.v4.SubmitSettings.ThankYouMessageOptions
2728
+ * @targetRemovalDate 2025-01-06
2729
+ */
2713
2730
  thankYouMessage?: ThankYouMessage;
2714
- /** Submit action effect is to redirect to */
2731
+ /**
2732
+ * Submit action effect is to redirect to
2733
+ * @deprecated Submit action effect is to redirect to
2734
+ * @replacedBy wix.forms.v4.SubmitSettings.RedirectOptions
2735
+ * @targetRemovalDate 2025-01-06
2736
+ */
2715
2737
  redirect?: Redirect;
2716
2738
  }
2717
2739
  interface Step {
@@ -2867,6 +2889,49 @@ interface RequiredIndicatorProperties {
2867
2889
  /** Required indicator placement. */
2868
2890
  requiredIndicatorPlacement?: RequiredIndicatorPlacement;
2869
2891
  }
2892
+ interface SubmitSettings extends SubmitSettingsSubmitSuccessActionOptionsOneOf {
2893
+ /** Options for showing a thank you message after submission. */
2894
+ thankYouMessageOptions?: ThankYouMessageOptions;
2895
+ /** Options for redirecting to a URL after submission. */
2896
+ redirectOptions?: RedirectOptions;
2897
+ /** Action that is triggered after a successful form submission. */
2898
+ submitSuccessAction?: SubmitSuccessAction;
2899
+ }
2900
+ /** @oneof */
2901
+ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
2902
+ /** Options for showing a thank you message after submission. */
2903
+ thankYouMessageOptions?: ThankYouMessageOptions;
2904
+ /** Options for redirecting to a URL after submission. */
2905
+ redirectOptions?: RedirectOptions;
2906
+ }
2907
+ declare enum UrlTargetEnumTarget {
2908
+ UNKNOWN_TARGET = "UNKNOWN_TARGET",
2909
+ /** Open in the same browser tab. */
2910
+ SELF = "SELF",
2911
+ /** Open in a new browser tab. */
2912
+ BLANK = "BLANK"
2913
+ }
2914
+ declare enum SubmitSuccessAction {
2915
+ UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
2916
+ /** No action will be taken after submission. */
2917
+ NO_ACTION = "NO_ACTION",
2918
+ /** A thank you message will be shown after submission. */
2919
+ THANK_YOU_MESSAGE = "THANK_YOU_MESSAGE",
2920
+ /** The user will be redirected to a URL after submission. */
2921
+ REDIRECT = "REDIRECT"
2922
+ }
2923
+ interface ThankYouMessageOptions {
2924
+ /** The message shown after form submission. */
2925
+ messageContent?: RichContent;
2926
+ /** Duration in seconds after which the message should disappear. If 0, the message will stay forever. */
2927
+ durationInSeconds?: number | null;
2928
+ }
2929
+ interface RedirectOptions {
2930
+ /** The URL to which the user should be redirected after a successful form submission. */
2931
+ redirectUrl?: string | null;
2932
+ /** How the URL should be opened. */
2933
+ target?: UrlTargetEnumTarget;
2934
+ }
2870
2935
  interface PiiFieldsUpdated {
2871
2936
  /** Collection of fields which are marked as PII */
2872
2937
  piiFields?: string[];
@@ -3824,7 +3889,7 @@ interface CustomFieldInfoNonNullableFields {
3824
3889
  key: string;
3825
3890
  }
3826
3891
  interface SubscriptionInfoNonNullableFields {
3827
- optInLevel: OptInLevel$1;
3892
+ optInLevel: OptInLevel$2;
3828
3893
  }
3829
3894
  interface FormFieldContactInfoNonNullableFields {
3830
3895
  emailInfo?: EmailInfoNonNullableFields;
@@ -3920,6 +3985,17 @@ interface RequiredIndicatorPropertiesNonNullableFields {
3920
3985
  requiredIndicator: RequiredIndicator;
3921
3986
  requiredIndicatorPlacement: RequiredIndicatorPlacement;
3922
3987
  }
3988
+ interface ThankYouMessageOptionsNonNullableFields {
3989
+ messageContent?: RichContentNonNullableFields;
3990
+ }
3991
+ interface RedirectOptionsNonNullableFields {
3992
+ target: UrlTargetEnumTarget;
3993
+ }
3994
+ interface SubmitSettingsNonNullableFields {
3995
+ thankYouMessageOptions?: ThankYouMessageOptionsNonNullableFields;
3996
+ redirectOptions?: RedirectOptionsNonNullableFields;
3997
+ submitSuccessAction: SubmitSuccessAction;
3998
+ }
3923
3999
  interface FormNonNullableFields {
3924
4000
  fields: FormFieldNonNullableFields[];
3925
4001
  fieldsV2: FormFieldV2NonNullableFields[];
@@ -3934,6 +4010,7 @@ interface FormNonNullableFields {
3934
4010
  nestedForms: NestedFormNonNullableFields[];
3935
4011
  spamFilterProtectionLevel: SpamFilterProtectionLevel;
3936
4012
  requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
4013
+ submitSettings?: SubmitSettingsNonNullableFields;
3937
4014
  }
3938
4015
  interface CreateFormResponseNonNullableFields {
3939
4016
  form?: FormNonNullableFields;
@@ -4083,6 +4160,8 @@ interface UpdateForm {
4083
4160
  spamFilterProtectionLevel?: SpamFilterProtectionLevel;
4084
4161
  /** Required indicator properties. */
4085
4162
  requiredIndicatorProperties?: RequiredIndicatorProperties;
4163
+ /** Settings for actions to be taken after form submission. */
4164
+ submitSettings?: SubmitSettings;
4086
4165
  }
4087
4166
  interface DeleteFormOptions {
4088
4167
  /**
@@ -4254,16 +4333,6 @@ type APIMetadata = {
4254
4333
  packageName?: string;
4255
4334
  };
4256
4335
  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
4336
 
4268
4337
  declare global {
4269
4338
  // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
@@ -4610,6 +4679,7 @@ type context$2_RadioGroupCustomOption = RadioGroupCustomOption;
4610
4679
  type context$2_RadioGroupOption = RadioGroupOption;
4611
4680
  type context$2_RatingInput = RatingInput;
4612
4681
  type context$2_Redirect = Redirect;
4682
+ type context$2_RedirectOptions = RedirectOptions;
4613
4683
  type context$2_Rel = Rel;
4614
4684
  type context$2_RemoveFormFromTrashBinRequest = RemoveFormFromTrashBinRequest;
4615
4685
  type context$2_RemoveFormFromTrashBinResponse = RemoveFormFromTrashBinResponse;
@@ -4643,6 +4713,10 @@ type context$2_Styles = Styles;
4643
4713
  type context$2_SubmissionKeysPermanentlyDeleted = SubmissionKeysPermanentlyDeleted;
4644
4714
  type context$2_SubmitButton = SubmitButton;
4645
4715
  type context$2_SubmitButtonSubmitActionOneOf = SubmitButtonSubmitActionOneOf;
4716
+ type context$2_SubmitSettings = SubmitSettings;
4717
+ type context$2_SubmitSettingsSubmitSuccessActionOptionsOneOf = SubmitSettingsSubmitSuccessActionOptionsOneOf;
4718
+ type context$2_SubmitSuccessAction = SubmitSuccessAction;
4719
+ declare const context$2_SubmitSuccessAction: typeof SubmitSuccessAction;
4646
4720
  type context$2_SubscriptionInfo = SubscriptionInfo;
4647
4721
  type context$2_TableCellData = TableCellData;
4648
4722
  type context$2_TableData = TableData;
@@ -4657,6 +4731,7 @@ type context$2_TextInput = TextInput;
4657
4731
  type context$2_TextNodeStyle = TextNodeStyle;
4658
4732
  type context$2_TextStyle = TextStyle;
4659
4733
  type context$2_ThankYouMessage = ThankYouMessage;
4734
+ type context$2_ThankYouMessageOptions = ThankYouMessageOptions;
4660
4735
  type context$2_Thumbnails = Thumbnails;
4661
4736
  type context$2_ThumbnailsAlignment = ThumbnailsAlignment;
4662
4737
  declare const context$2_ThumbnailsAlignment: typeof ThumbnailsAlignment;
@@ -4674,6 +4749,8 @@ type context$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullab
4674
4749
  type context$2_UploadFileFormat = UploadFileFormat;
4675
4750
  declare const context$2_UploadFileFormat: typeof UploadFileFormat;
4676
4751
  type context$2_UpsertContact = UpsertContact;
4752
+ type context$2_UrlTargetEnumTarget = UrlTargetEnumTarget;
4753
+ declare const context$2_UrlTargetEnumTarget: typeof UrlTargetEnumTarget;
4677
4754
  type context$2_Validation = Validation;
4678
4755
  type context$2_ValidationFormat = ValidationFormat;
4679
4756
  declare const context$2_ValidationFormat: typeof ValidationFormat;
@@ -4723,7 +4800,7 @@ declare const context$2_restoreFromTrashBin: typeof restoreFromTrashBin;
4723
4800
  declare const context$2_updateExtendedFields: typeof updateExtendedFields;
4724
4801
  declare const context$2_updateForm: typeof updateForm;
4725
4802
  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 };
4803
+ 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_RedirectOptions as RedirectOptions, 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_SubmitSettings as SubmitSettings, type context$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, context$2_SubmitSuccessAction as SubmitSuccessAction, 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_ThankYouMessageOptions as ThankYouMessageOptions, 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, context$2_UrlTargetEnumTarget as UrlTargetEnumTarget, 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
4804
  }
4728
4805
 
4729
4806
  /**
@@ -4824,7 +4901,7 @@ interface ExtendedFields$1 {
4824
4901
  namespaces?: Record<string, Record<string, any>>;
4825
4902
  }
4826
4903
  declare enum SubmissionStatus$1 {
4827
- UNDEFINED = "UNDEFINED",
4904
+ UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
4828
4905
  PENDING = "PENDING",
4829
4906
  CONFIRMED = "CONFIRMED",
4830
4907
  PAYMENT_WAITING = "PAYMENT_WAITING",
@@ -4837,9 +4914,11 @@ interface OrderDetails$1 {
4837
4914
  */
4838
4915
  checkoutId?: string;
4839
4916
  }
4840
- interface CheckForSpamRequest {
4841
- /** Form submission. */
4842
- submission: FormSubmission$1;
4917
+ interface FormSubmissionStatusUpdatedEvent$1 {
4918
+ /** Updated submission. */
4919
+ submission?: FormSubmission$1;
4920
+ /** Previous status of the submission. */
4921
+ previousStatus?: SubmissionStatus$1;
4843
4922
  }
4844
4923
  /** Form submission that was created or retrieved. */
4845
4924
  interface FormSubmission$1 {
@@ -4927,6 +5006,51 @@ interface FormSubmissionOrderDetails {
4927
5006
  */
4928
5007
  checkoutId?: string;
4929
5008
  }
5009
+ interface RemovedSubmissionFromTrash$1 {
5010
+ /** Removed submission. */
5011
+ submission?: FormSubmission$1;
5012
+ }
5013
+ interface SubmissionContactMapped$1 {
5014
+ /**
5015
+ * Mapped upserted contact ID.
5016
+ * @readonly
5017
+ */
5018
+ contactId?: string;
5019
+ /** Identifies the namespace that the submission's form belongs to. */
5020
+ namespace?: string;
5021
+ /** Marketing subscription details */
5022
+ marketingSubscriptionDetails?: MarketingSubscriptionDetails$1;
5023
+ }
5024
+ interface MarketingSubscriptionDetails$1 {
5025
+ /** Form id which was submitted */
5026
+ formId?: string;
5027
+ /** Mapped contact emails. */
5028
+ emails?: string[];
5029
+ /**
5030
+ * Date and time the form submission was created.
5031
+ * @readonly
5032
+ */
5033
+ submittedDate?: Date;
5034
+ /**
5035
+ * Subscription consent opt in level, either single or double confirmation.
5036
+ * Default: SINGLE_CONFIRMATION
5037
+ */
5038
+ optInLevel?: OptInLevel$1;
5039
+ }
5040
+ declare enum OptInLevel$1 {
5041
+ SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
5042
+ DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
5043
+ }
5044
+ interface SubmissionContactMappingSkipped$1 {
5045
+ /** Form Id. */
5046
+ formId?: string;
5047
+ /** Identifies the namespace that the submission's form belongs to. */
5048
+ namespace?: string;
5049
+ }
5050
+ interface CheckForSpamRequest {
5051
+ /** Form submission. */
5052
+ submission: FormSubmission$1;
5053
+ }
4930
5054
  interface CheckForSpamResponse {
4931
5055
  /** Is the submission a spam. */
4932
5056
  spam?: boolean;
@@ -5183,7 +5307,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
5183
5307
  slug?: string;
5184
5308
  /** ID of the entity associated with the event. */
5185
5309
  entityId?: string;
5186
- /** Event timestamp. */
5310
+ /** 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
5311
  eventTime?: Date;
5188
5312
  /**
5189
5313
  * Whether the event was triggered as a result of a privacy regulation application
@@ -5362,60 +5486,6 @@ interface FormSpamSubmissionReportsCountNonNullableFields {
5362
5486
  interface CountFormSpamSubmissionReportsResponseNonNullableFields {
5363
5487
  formsSpamSubmissionReportsCount: FormSpamSubmissionReportsCountNonNullableFields[];
5364
5488
  }
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
5489
  interface BulkDeleteFormSpamSubmissionReportOptions {
5420
5490
  /** Ids of the form spam submission reports to delete. */
5421
5491
  formSpamSubmissionReportIds?: string[];
@@ -5500,8 +5570,6 @@ interface FormSpamSubmissionReportsQueryBuilder {
5500
5570
 
5501
5571
  declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
5502
5572
 
5503
- declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
5504
-
5505
5573
  declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
5506
5574
  declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
5507
5575
  declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
@@ -5514,8 +5582,6 @@ declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof
5514
5582
  declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
5515
5583
  declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
5516
5584
  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
5585
 
5520
5586
  type context$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
5521
5587
  type context$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
@@ -5547,8 +5613,6 @@ type context$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateF
5547
5613
  type context$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
5548
5614
  type context$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
5549
5615
  type context$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
5550
- type context$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
5551
- type context$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
5552
5616
  type context$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
5553
5617
  type context$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
5554
5618
  type context$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
@@ -5578,13 +5642,11 @@ declare const context$1_countFormSpamSubmissionReports: typeof countFormSpamSubm
5578
5642
  declare const context$1_createFormSpamSubmissionReport: typeof createFormSpamSubmissionReport;
5579
5643
  declare const context$1_deleteFormSpamSubmissionReport: typeof deleteFormSpamSubmissionReport;
5580
5644
  declare const context$1_getFormSpamSubmissionReport: typeof getFormSpamSubmissionReport;
5581
- declare const context$1_onFormSpamSubmissionReportCreated: typeof onFormSpamSubmissionReportCreated;
5582
- declare const context$1_onFormSpamSubmissionReportDeleted: typeof onFormSpamSubmissionReportDeleted;
5583
5645
  declare const context$1_queryFormSpamSubmissionReportsByNamespace: typeof queryFormSpamSubmissionReportsByNamespace;
5584
5646
  declare const context$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
5585
5647
  declare const context$1_reportSpamSubmission: typeof reportSpamSubmission;
5586
5648
  declare namespace context$1 {
5587
- export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, 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 EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type context$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type context$1_FormSpamSubmissionReportCreatedEnvelope as FormSpamSubmissionReportCreatedEnvelope, type context$1_FormSpamSubmissionReportDeletedEnvelope as FormSpamSubmissionReportDeletedEnvelope, type context$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type context$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type context$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type context$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type context$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type context$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type context$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type context$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type context$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type context$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type context$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type context$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type context$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, context$1_ReportReason as ReportReason, type context$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type context$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type context$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type context$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, context$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, context$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, context$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, context$1_bulkReportSpamSubmission as bulkReportSpamSubmission, context$1_checkForSpam as checkForSpam, context$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, context$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, context$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, context$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, context$1_onFormSpamSubmissionReportCreated as onFormSpamSubmissionReportCreated, context$1_onFormSpamSubmissionReportDeleted as onFormSpamSubmissionReportDeleted, context$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, context$1_reportNotSpamSubmission as reportNotSpamSubmission, context$1_reportSpamSubmission as reportSpamSubmission };
5649
+ 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
5650
  }
5589
5651
 
5590
5652
  /** Form submission that was created or retrieved. */
@@ -5647,7 +5709,7 @@ interface FormSubmission {
5647
5709
  contactId?: string | null;
5648
5710
  }
5649
5711
  declare enum SubmissionStatus {
5650
- UNDEFINED = "UNDEFINED",
5712
+ UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
5651
5713
  PENDING = "PENDING",
5652
5714
  CONFIRMED = "CONFIRMED",
5653
5715
  PAYMENT_WAITING = "PAYMENT_WAITING",
@@ -5712,6 +5774,53 @@ interface OrderDetails {
5712
5774
  */
5713
5775
  checkoutId?: string;
5714
5776
  }
5777
+ interface FormSubmissionStatusUpdatedEvent {
5778
+ /** Updated submission. */
5779
+ submission?: FormSubmission;
5780
+ /** Previous status of the submission. */
5781
+ previousStatus?: SubmissionStatus;
5782
+ }
5783
+ interface RemovedSubmissionFromTrash {
5784
+ /** Removed submission. */
5785
+ submission?: FormSubmission;
5786
+ }
5787
+ interface SubmissionContactMapped {
5788
+ /**
5789
+ * Mapped upserted contact ID.
5790
+ * @readonly
5791
+ */
5792
+ contactId?: string;
5793
+ /** Identifies the namespace that the submission's form belongs to. */
5794
+ namespace?: string;
5795
+ /** Marketing subscription details */
5796
+ marketingSubscriptionDetails?: MarketingSubscriptionDetails;
5797
+ }
5798
+ interface MarketingSubscriptionDetails {
5799
+ /** Form id which was submitted */
5800
+ formId?: string;
5801
+ /** Mapped contact emails. */
5802
+ emails?: string[];
5803
+ /**
5804
+ * Date and time the form submission was created.
5805
+ * @readonly
5806
+ */
5807
+ submittedDate?: Date;
5808
+ /**
5809
+ * Subscription consent opt in level, either single or double confirmation.
5810
+ * Default: SINGLE_CONFIRMATION
5811
+ */
5812
+ optInLevel?: OptInLevel;
5813
+ }
5814
+ declare enum OptInLevel {
5815
+ SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
5816
+ DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
5817
+ }
5818
+ interface SubmissionContactMappingSkipped {
5819
+ /** Form Id. */
5820
+ formId?: string;
5821
+ /** Identifies the namespace that the submission's form belongs to. */
5822
+ namespace?: string;
5823
+ }
5715
5824
  interface CreateSubmissionRequest {
5716
5825
  /** Submission to create. */
5717
5826
  submission: FormSubmission;
@@ -5825,12 +5934,6 @@ interface ConfirmSubmissionResponse {
5825
5934
  /** The confirmed submission. */
5826
5935
  submission?: FormSubmission;
5827
5936
  }
5828
- interface FormSubmissionStatusUpdatedEvent {
5829
- /** Updated submission. */
5830
- submission?: FormSubmission;
5831
- /** Previous status of the submission. */
5832
- previousStatus?: SubmissionStatus;
5833
- }
5834
5937
  interface DeleteSubmissionRequest {
5835
5938
  /** ID of the submission to delete. */
5836
5939
  submissionId: string;
@@ -5883,10 +5986,6 @@ interface RemoveSubmissionFromTrashBinRequest {
5883
5986
  }
5884
5987
  interface RemoveSubmissionFromTrashBinResponse {
5885
5988
  }
5886
- interface RemovedSubmissionFromTrash {
5887
- /** Removed submission. */
5888
- submission?: FormSubmission;
5889
- }
5890
5989
  interface BulkRemoveSubmissionFromTrashBinRequest {
5891
5990
  /** Form ID. */
5892
5991
  formId: string;
@@ -6186,7 +6285,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
6186
6285
  slug?: string;
6187
6286
  /** ID of the entity associated with the event. */
6188
6287
  entityId?: string;
6189
- /** Event timestamp. */
6288
+ /** 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
6289
  eventTime?: Date;
6191
6290
  /**
6192
6291
  * Whether the event was triggered as a result of a privacy regulation application
@@ -6315,43 +6414,6 @@ declare enum IdentityType {
6315
6414
  /** Matching contact is a member, Merge logic won't be applied */
6316
6415
  NOT_AUTHENTICATED_MEMBER = "NOT_AUTHENTICATED_MEMBER"
6317
6416
  }
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
6417
  interface OrderDetailsNonNullableFields {
6356
6418
  itemSubtotal: string;
6357
6419
  checkoutId: string;
@@ -6459,79 +6521,6 @@ interface SubmitContactResponseNonNullableFields {
6459
6521
  interface UpsertContactFromSubmissionResponseNonNullableFields {
6460
6522
  submitContactResponse?: SubmitContactResponseNonNullableFields;
6461
6523
  }
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
6524
  interface CreateSubmissionOptions {
6536
6525
  /** Captcha token. */
6537
6526
  captchaToken?: string | null;
@@ -6731,8 +6720,6 @@ interface UpsertContactFromSubmissionOptions {
6731
6720
 
6732
6721
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
6733
6722
 
6734
- declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
6735
-
6736
6723
  declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
6737
6724
  declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
6738
6725
  declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
@@ -6754,17 +6741,9 @@ declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof
6754
6741
  declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
6755
6742
  declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
6756
6743
  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
6744
 
6765
6745
  type context_ActionEvent = ActionEvent;
6766
6746
  type context_ApplicationError = ApplicationError;
6767
- type context_BaseEventMetadata = BaseEventMetadata;
6768
6747
  type context_BulkActionMetadata = BulkActionMetadata;
6769
6748
  type context_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitterData;
6770
6749
  type context_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
@@ -6821,7 +6800,6 @@ type context_Empty = Empty;
6821
6800
  type context_EntityCreatedEvent = EntityCreatedEvent;
6822
6801
  type context_EntityDeletedEvent = EntityDeletedEvent;
6823
6802
  type context_EntityUpdatedEvent = EntityUpdatedEvent;
6824
- type context_EventMetadata = EventMetadata;
6825
6803
  type context_ExtendedFields = ExtendedFields;
6826
6804
  type context_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
6827
6805
  type context_FormSubmission = FormSubmission;
@@ -6882,16 +6860,9 @@ type context_SortOrder = SortOrder;
6882
6860
  declare const context_SortOrder: typeof SortOrder;
6883
6861
  type context_Sorting = Sorting;
6884
6862
  type context_SubmissionContactMapped = SubmissionContactMapped;
6885
- type context_SubmissionContactMappedEnvelope = SubmissionContactMappedEnvelope;
6886
6863
  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
6864
  type context_SubmissionStatus = SubmissionStatus;
6892
6865
  declare const context_SubmissionStatus: typeof SubmissionStatus;
6893
- type context_SubmissionStatusUpdatedEnvelope = SubmissionStatusUpdatedEnvelope;
6894
- type context_SubmissionUpdatedEnvelope = SubmissionUpdatedEnvelope;
6895
6866
  type context_SubmissionsQueryBuilder = SubmissionsQueryBuilder;
6896
6867
  type context_SubmissionsQueryResult = SubmissionsQueryResult;
6897
6868
  type context_SubmitContactResponse = SubmitContactResponse;
@@ -6921,13 +6892,6 @@ declare const context_getDeletedSubmission: typeof getDeletedSubmission;
6921
6892
  declare const context_getMediaUploadUrl: typeof getMediaUploadUrl;
6922
6893
  declare const context_getSubmission: typeof getSubmission;
6923
6894
  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
6895
  declare const context_querySubmission: typeof querySubmission;
6932
6896
  declare const context_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
6933
6897
  declare const context_removeSubmissionFromTrashBin: typeof removeSubmissionFromTrashBin;
@@ -6936,7 +6900,7 @@ declare const context_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
6936
6900
  declare const context_updateSubmission: typeof updateSubmission;
6937
6901
  declare const context_upsertContactFromSubmission: typeof upsertContactFromSubmission;
6938
6902
  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 };
6903
+ 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
6904
  }
6941
6905
 
6942
6906
  export { context$1 as formSpamSubmissionReports, context$2 as forms, context as submissions };