@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$
|
|
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$
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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$
|
|
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 index_d$2_RadioGroupCustomOption = RadioGroupCustomOption;
|
|
|
4610
4679
|
type index_d$2_RadioGroupOption = RadioGroupOption;
|
|
4611
4680
|
type index_d$2_RatingInput = RatingInput;
|
|
4612
4681
|
type index_d$2_Redirect = Redirect;
|
|
4682
|
+
type index_d$2_RedirectOptions = RedirectOptions;
|
|
4613
4683
|
type index_d$2_Rel = Rel;
|
|
4614
4684
|
type index_d$2_RemoveFormFromTrashBinRequest = RemoveFormFromTrashBinRequest;
|
|
4615
4685
|
type index_d$2_RemoveFormFromTrashBinResponse = RemoveFormFromTrashBinResponse;
|
|
@@ -4643,6 +4713,10 @@ type index_d$2_Styles = Styles;
|
|
|
4643
4713
|
type index_d$2_SubmissionKeysPermanentlyDeleted = SubmissionKeysPermanentlyDeleted;
|
|
4644
4714
|
type index_d$2_SubmitButton = SubmitButton;
|
|
4645
4715
|
type index_d$2_SubmitButtonSubmitActionOneOf = SubmitButtonSubmitActionOneOf;
|
|
4716
|
+
type index_d$2_SubmitSettings = SubmitSettings;
|
|
4717
|
+
type index_d$2_SubmitSettingsSubmitSuccessActionOptionsOneOf = SubmitSettingsSubmitSuccessActionOptionsOneOf;
|
|
4718
|
+
type index_d$2_SubmitSuccessAction = SubmitSuccessAction;
|
|
4719
|
+
declare const index_d$2_SubmitSuccessAction: typeof SubmitSuccessAction;
|
|
4646
4720
|
type index_d$2_SubscriptionInfo = SubscriptionInfo;
|
|
4647
4721
|
type index_d$2_TableCellData = TableCellData;
|
|
4648
4722
|
type index_d$2_TableData = TableData;
|
|
@@ -4657,6 +4731,7 @@ type index_d$2_TextInput = TextInput;
|
|
|
4657
4731
|
type index_d$2_TextNodeStyle = TextNodeStyle;
|
|
4658
4732
|
type index_d$2_TextStyle = TextStyle;
|
|
4659
4733
|
type index_d$2_ThankYouMessage = ThankYouMessage;
|
|
4734
|
+
type index_d$2_ThankYouMessageOptions = ThankYouMessageOptions;
|
|
4660
4735
|
type index_d$2_Thumbnails = Thumbnails;
|
|
4661
4736
|
type index_d$2_ThumbnailsAlignment = ThumbnailsAlignment;
|
|
4662
4737
|
declare const index_d$2_ThumbnailsAlignment: typeof ThumbnailsAlignment;
|
|
@@ -4674,6 +4749,8 @@ type index_d$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullab
|
|
|
4674
4749
|
type index_d$2_UploadFileFormat = UploadFileFormat;
|
|
4675
4750
|
declare const index_d$2_UploadFileFormat: typeof UploadFileFormat;
|
|
4676
4751
|
type index_d$2_UpsertContact = UpsertContact;
|
|
4752
|
+
type index_d$2_UrlTargetEnumTarget = UrlTargetEnumTarget;
|
|
4753
|
+
declare const index_d$2_UrlTargetEnumTarget: typeof UrlTargetEnumTarget;
|
|
4677
4754
|
type index_d$2_Validation = Validation;
|
|
4678
4755
|
type index_d$2_ValidationFormat = ValidationFormat;
|
|
4679
4756
|
declare const index_d$2_ValidationFormat: typeof ValidationFormat;
|
|
@@ -4723,7 +4800,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4723
4800
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4724
4801
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4725
4802
|
declare namespace index_d$2 {
|
|
4726
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$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 index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$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 index_d$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$1 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$2_updateForm as updateForm };
|
|
4803
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$2_AddressInfo as AddressInfo, type index_d$2_AddressLine2 as AddressLine2, index_d$2_Alignment as Alignment, type index_d$2_AnchorData as AnchorData, type index_d$2_AppEmbedData as AppEmbedData, type index_d$2_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$2_AppType as AppType, type ApplicationError$2 as ApplicationError, type index_d$2_ArrayErrorMessages as ArrayErrorMessages, type index_d$2_ArrayItems as ArrayItems, type index_d$2_ArrayItemsItemsOneOf as ArrayItemsItemsOneOf, type index_d$2_ArrayType as ArrayType, type index_d$2_ArrayTypeArrayItems as ArrayTypeArrayItems, type index_d$2_ArrayTypeArrayItemsItemTypeOptionsOneOf as ArrayTypeArrayItemsItemTypeOptionsOneOf, type index_d$2_AudioData as AudioData, type index_d$2_Background as Background, type index_d$2_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$2_BackgroundType as BackgroundType, type index_d$2_BlockquoteData as BlockquoteData, type index_d$2_BookingData as BookingData, index_d$2_BooleanComponentType as BooleanComponentType, type index_d$2_BooleanErrorMessages as BooleanErrorMessages, type index_d$2_BooleanType as BooleanType, type index_d$2_Border as Border, type index_d$2_BorderColors as BorderColors, type index_d$2_BreakPoint as BreakPoint, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$2_BulkCreateFormOptions as BulkCreateFormOptions, type index_d$2_BulkCreateFormRequest as BulkCreateFormRequest, type index_d$2_BulkCreateFormResponse as BulkCreateFormResponse, type index_d$2_BulkCreateFormResponseNonNullableFields as BulkCreateFormResponseNonNullableFields, type index_d$2_BulkFormResult as BulkFormResult, type index_d$2_BulkRemoveDeletedFieldOptions as BulkRemoveDeletedFieldOptions, type index_d$2_BulkRemoveDeletedFieldRequest as BulkRemoveDeletedFieldRequest, type index_d$2_BulkRemoveDeletedFieldResponse as BulkRemoveDeletedFieldResponse, type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields as BulkRemoveDeletedFieldResponseNonNullableFields, type index_d$2_BulletedListData as BulletedListData, type index_d$2_ButtonData as ButtonData, index_d$2_ButtonDataType as ButtonDataType, type index_d$2_CellStyle as CellStyle, type index_d$2_Checkbox as Checkbox, type index_d$2_CheckboxGroup as CheckboxGroup, type index_d$2_CloneFormRequest as CloneFormRequest, type index_d$2_CloneFormResponse as CloneFormResponse, type index_d$2_CloneFormResponseNonNullableFields as CloneFormResponseNonNullableFields, type index_d$2_CodeBlockData as CodeBlockData, type index_d$2_CollapsibleListData as CollapsibleListData, type index_d$2_ColorData as ColorData, type index_d$2_Colors as Colors, type index_d$2_CommonCustomOption as CommonCustomOption, index_d$2_ComponentType as ComponentType, index_d$2_ContactField as ContactField, index_d$2_CountFormsFieldset as CountFormsFieldset, type index_d$2_CountFormsOptions as CountFormsOptions, type index_d$2_CountFormsRequest as CountFormsRequest, type index_d$2_CountFormsResponse as CountFormsResponse, type index_d$2_CountFormsResponseNonNullableFields as CountFormsResponseNonNullableFields, type index_d$2_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, type index_d$2_CreateFormResponseNonNullableFields as CreateFormResponseNonNullableFields, index_d$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 index_d$2_CustomFieldInfo as CustomFieldInfo, type index_d$2_CustomOption as CustomOption, type index_d$2_DataExtensionsDetails as DataExtensionsDetails, index_d$2_DateFormatPart as DateFormatPart, type index_d$2_DateOptions as DateOptions, type index_d$2_DatePickerOptions as DatePickerOptions, type index_d$2_DateTimeConstraints as DateTimeConstraints, type index_d$2_DateTimeInput as DateTimeInput, type index_d$2_DateTimeInputDateTimeInputTypeOptionsOneOf as DateTimeInputDateTimeInputTypeOptionsOneOf, index_d$2_DateTimeInputType as DateTimeInputType, type index_d$2_DateTimeOptions as DateTimeOptions, type index_d$2_Decoration as Decoration, type index_d$2_DecorationDataOneOf as DecorationDataOneOf, index_d$2_DecorationType as DecorationType, type index_d$2_DefaultCountryConfig as DefaultCountryConfig, type index_d$2_DefaultCountryConfigOptionsOneOf as DefaultCountryConfigOptionsOneOf, type index_d$2_DeleteFormOptions as DeleteFormOptions, type index_d$2_DeleteFormRequest as DeleteFormRequest, type index_d$2_DeleteFormResponse as DeleteFormResponse, type index_d$2_Design as Design, type index_d$2_Dimensions as Dimensions, index_d$2_Direction as Direction, type index_d$2_DisplayField as DisplayField, type index_d$2_DisplayFieldComponentTypeOneOf as DisplayFieldComponentTypeOneOf, type index_d$2_DividerData as DividerData, type index_d$2_DocumentStyle as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$2_DonationInput as DonationInput, type index_d$2_DonationInputOption as DonationInputOption, type index_d$2_Dropdown as Dropdown, type index_d$2_DropdownCustomOption as DropdownCustomOption, type index_d$2_DropdownOption as DropdownOption, type index_d$2_DynamicPriceOptions as DynamicPriceOptions, type index_d$2_EmailInfo as EmailInfo, index_d$2_EmailInfoTag as EmailInfoTag, type index_d$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 index_d$2_EventData as EventData, type ExtendedFields$2 as ExtendedFields, type index_d$2_FieldOverrides as FieldOverrides, index_d$2_FieldType as FieldType, type index_d$2_FieldsOverrides as FieldsOverrides, type index_d$2_FieldsSettings as FieldsSettings, index_d$2_Fieldset as Fieldset, type index_d$2_FileData as FileData, type index_d$2_FileSource as FileSource, type index_d$2_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$2_FileUpload as FileUpload, index_d$2_FirstDayOfWeek as FirstDayOfWeek, type index_d$2_FixedPriceOptions as FixedPriceOptions, type index_d$2_FontSizeData as FontSizeData, index_d$2_FontType as FontType, type index_d$2_Form as Form, type index_d$2_FormChanged as FormChanged, type index_d$2_FormDeleted as FormDeleted, type index_d$2_FormField as FormField, type index_d$2_FormFieldContactInfo as FormFieldContactInfo, type index_d$2_FormFieldContactInfoAdditionalInfoOneOf as FormFieldContactInfoAdditionalInfoOneOf, type index_d$2_FormFieldV2 as FormFieldV2, type index_d$2_FormFieldV2FieldTypeOptionsOneOf as FormFieldV2FieldTypeOptionsOneOf, type index_d$2_FormLayout as FormLayout, type index_d$2_FormNonNullableFields as FormNonNullableFields, type index_d$2_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, index_d$2_Format as Format, index_d$2_FormatEnumFormat as FormatEnumFormat, type index_d$2_FormsQueryBuilder as FormsQueryBuilder, type index_d$2_FormsQueryResult as FormsQueryResult, type index_d$2_GIF as GIF, type index_d$2_GIFData as GIFData, type index_d$2_GalleryData as GalleryData, type index_d$2_GalleryOptions as GalleryOptions, type index_d$2_GetDeletedFormRequest as GetDeletedFormRequest, type index_d$2_GetDeletedFormResponse as GetDeletedFormResponse, type index_d$2_GetDeletedFormResponseNonNullableFields as GetDeletedFormResponseNonNullableFields, type index_d$2_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, type index_d$2_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type index_d$2_Gradient as Gradient, type index_d$2_HTMLData as HTMLData, type index_d$2_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$2_Header as Header, type index_d$2_HeadingData as HeadingData, type index_d$2_Height as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_Image as Image, type index_d$2_ImageData as ImageData, index_d$2_InitialExpandedItems as InitialExpandedItems, type index_d$2_InputField as InputField, type index_d$2_InputFieldArrayErrorMessages as InputFieldArrayErrorMessages, type index_d$2_InputFieldArrayType as InputFieldArrayType, type index_d$2_InputFieldBooleanErrorMessages as InputFieldBooleanErrorMessages, type index_d$2_InputFieldBooleanType as InputFieldBooleanType, type index_d$2_InputFieldInputTypeOptionsOneOf as InputFieldInputTypeOptionsOneOf, type index_d$2_InputFieldIntegerType as InputFieldIntegerType, type index_d$2_InputFieldMultilineAddress as InputFieldMultilineAddress, type index_d$2_InputFieldMultilineAddressComponentTypeOptionsOneOf as InputFieldMultilineAddressComponentTypeOptionsOneOf, type index_d$2_InputFieldNumberErrorMessages as InputFieldNumberErrorMessages, type index_d$2_InputFieldNumberType as InputFieldNumberType, type index_d$2_InputFieldObjectErrorMessages as InputFieldObjectErrorMessages, type index_d$2_InputFieldObjectType as InputFieldObjectType, type index_d$2_InputFieldStringErrorMessages as InputFieldStringErrorMessages, type index_d$2_InputFieldStringType as InputFieldStringType, type index_d$2_InputFieldStringTypeFormatOptionsOneOf as InputFieldStringTypeFormatOptionsOneOf, index_d$2_InputType as InputType, type index_d$2_IntegerType as IntegerType, type index_d$2_Item as Item, type index_d$2_ItemDataOneOf as ItemDataOneOf, type index_d$2_ItemLayout as ItemLayout, type ItemMetadata$2 as ItemMetadata, type index_d$2_ItemStyle as ItemStyle, index_d$2_ItemType as ItemType, index_d$2_Kind as Kind, type index_d$2_Layout as Layout, index_d$2_LayoutType as LayoutType, type index_d$2_LimitationRule as LimitationRule, index_d$2_LineStyle as LineStyle, type index_d$2_Link as Link, type index_d$2_LinkData as LinkData, type index_d$2_LinkDataOneOf as LinkDataOneOf, type index_d$2_LinkPreviewData as LinkPreviewData, index_d$2_LinkTarget as LinkTarget, type index_d$2_ListDeletedFormsOptions as ListDeletedFormsOptions, index_d$2_ListDeletedFormsOrder as ListDeletedFormsOrder, type index_d$2_ListDeletedFormsRequest as ListDeletedFormsRequest, type index_d$2_ListDeletedFormsResponse as ListDeletedFormsResponse, type index_d$2_ListDeletedFormsResponseNonNullableFields as ListDeletedFormsResponseNonNullableFields, type index_d$2_ListFormsOptions as ListFormsOptions, index_d$2_ListFormsOrder as ListFormsOrder, type index_d$2_ListFormsRequest as ListFormsRequest, type index_d$2_ListFormsResponse as ListFormsResponse, type index_d$2_ListFormsResponseNonNullableFields as ListFormsResponseNonNullableFields, type index_d$2_ListValue as ListValue, type index_d$2_MapData as MapData, type index_d$2_MapSettings as MapSettings, index_d$2_MapType as MapType, type index_d$2_Margin as Margin, type index_d$2_Media as Media, type index_d$2_MediaItem as MediaItem, type index_d$2_MediaItemMediaOneOf as MediaItemMediaOneOf, type index_d$2_MentionData as MentionData, type MessageEnvelope$2 as MessageEnvelope, type index_d$2_Metadata as Metadata, type index_d$2_MultilineAddress as MultilineAddress, index_d$2_MultilineAddressComponentType as MultilineAddressComponentType, type index_d$2_MultilineAddressValidation as MultilineAddressValidation, type index_d$2_NestedForm as NestedForm, type index_d$2_NestedFormFieldOverrides as NestedFormFieldOverrides, type index_d$2_NestedFormOverrides as NestedFormOverrides, type index_d$2_Node as Node, type index_d$2_NodeDataOneOf as NodeDataOneOf, type index_d$2_NodeStyle as NodeStyle, index_d$2_NodeType as NodeType, index_d$2_NullValue as NullValue, index_d$2_NumberComponentType as NumberComponentType, type index_d$2_NumberErrorMessages as NumberErrorMessages, type index_d$2_NumberInput as NumberInput, index_d$2_NumberOfColumns as NumberOfColumns, type index_d$2_NumberType as NumberType, type index_d$2_ObjectErrorMessages as ObjectErrorMessages, type index_d$2_ObjectType as ObjectType, type index_d$2_ObjectTypePropertiesType as ObjectTypePropertiesType, type index_d$2_ObjectTypePropertiesTypePropertiesTypeOptionsOneOf as ObjectTypePropertiesTypePropertiesTypeOptionsOneOf, type index_d$2_Oembed as Oembed, OptInLevel$2 as OptInLevel, type index_d$2_Option as Option, type index_d$2_OptionDesign as OptionDesign, type index_d$2_OptionLayout as OptionLayout, type index_d$2_OrderedListData as OrderedListData, index_d$2_Orientation as Orientation, index_d$2_OverrideEntityType as OverrideEntityType, type index_d$2_PDFSettings as PDFSettings, type index_d$2_ParagraphData as ParagraphData, type index_d$2_Payment as Payment, index_d$2_PaymentComponentType as PaymentComponentType, type index_d$2_PaymentComponentTypeOptionsOneOf as PaymentComponentTypeOptionsOneOf, type index_d$2_PaymentType as PaymentType, type index_d$2_Permissions as Permissions, type index_d$2_PhoneInfo as PhoneInfo, index_d$2_PhoneInfoTag as PhoneInfoTag, type index_d$2_PhoneInput as PhoneInput, type index_d$2_PiiFieldsUpdated as PiiFieldsUpdated, type index_d$2_PlaybackOptions as PlaybackOptions, type index_d$2_PluginContainerData as PluginContainerData, index_d$2_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$2_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$2_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$2_Poll as Poll, type index_d$2_PollData as PollData, type index_d$2_PollDataLayout as PollDataLayout, type index_d$2_PollDesign as PollDesign, type index_d$2_PollLayout as PollLayout, index_d$2_PollLayoutDirection as PollLayoutDirection, index_d$2_PollLayoutType as PollLayoutType, type index_d$2_PollOption as PollOption, type index_d$2_PostSubmissionTriggers as PostSubmissionTriggers, type index_d$2_PredefinedValidation as PredefinedValidation, type index_d$2_PredefinedValidationFormatOptionsOneOf as PredefinedValidationFormatOptionsOneOf, index_d$2_PriceType as PriceType, type index_d$2_Product as Product, type index_d$2_ProductCheckboxGroup as ProductCheckboxGroup, type index_d$2_ProductCheckboxGroupOption as ProductCheckboxGroupOption, type index_d$2_ProductPriceOptionsOneOf as ProductPriceOptionsOneOf, index_d$2_ProductType as ProductType, type index_d$2_PropertiesType as PropertiesType, index_d$2_PropertiesTypePropertiesType as PropertiesTypePropertiesType, type index_d$2_PropertiesTypePropertiesTypeOneOf as PropertiesTypePropertiesTypeOneOf, type index_d$2_QuantityLimit as QuantityLimit, type index_d$2_QueryDeletedFormsRequest as QueryDeletedFormsRequest, type index_d$2_QueryDeletedFormsResponse as QueryDeletedFormsResponse, type index_d$2_QueryDeletedFormsResponseNonNullableFields as QueryDeletedFormsResponseNonNullableFields, type index_d$2_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, type index_d$2_QueryFormsResponseNonNullableFields as QueryFormsResponseNonNullableFields, type index_d$2_RadioGroup as RadioGroup, type index_d$2_RadioGroupCustomOption as RadioGroupCustomOption, type index_d$2_RadioGroupOption as RadioGroupOption, type index_d$2_RatingInput as RatingInput, type index_d$2_Redirect as Redirect, type index_d$2_RedirectOptions as RedirectOptions, type index_d$2_Rel as Rel, type index_d$2_RemoveFormFromTrashBinRequest as RemoveFormFromTrashBinRequest, type index_d$2_RemoveFormFromTrashBinResponse as RemoveFormFromTrashBinResponse, index_d$2_RequiredIndicator as RequiredIndicator, index_d$2_RequiredIndicatorPlacement as RequiredIndicatorPlacement, type index_d$2_RequiredIndicatorProperties as RequiredIndicatorProperties, type index_d$2_RestoreFromTrashBinRequest as RestoreFromTrashBinRequest, type index_d$2_RestoreFromTrashBinResponse as RestoreFromTrashBinResponse, type index_d$2_RestoreFromTrashBinResponseNonNullableFields as RestoreFromTrashBinResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type index_d$2_RichContent as RichContent, type index_d$2_RichText as RichText, type index_d$2_Section as Section, type index_d$2_Settings as Settings, type index_d$2_Signature as Signature, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$2_Source as Source, index_d$2_SpamFilterProtectionLevel as SpamFilterProtectionLevel, type index_d$2_Spoiler as Spoiler, type index_d$2_SpoilerData as SpoilerData, type index_d$2_Step as Step, index_d$2_StringComponentType as StringComponentType, type index_d$2_StringErrorMessages as StringErrorMessages, type index_d$2_StringType as StringType, type index_d$2_StringTypeDateTimeConstraints as StringTypeDateTimeConstraints, type index_d$2_StringTypeFormatOptionsOneOf as StringTypeFormatOptionsOneOf, type index_d$2_Styles as Styles, type index_d$2_SubmissionKeysPermanentlyDeleted as SubmissionKeysPermanentlyDeleted, type index_d$2_SubmitButton as SubmitButton, type index_d$2_SubmitButtonSubmitActionOneOf as SubmitButtonSubmitActionOneOf, type index_d$2_SubmitSettings as SubmitSettings, type index_d$2_SubmitSettingsSubmitSuccessActionOptionsOneOf as SubmitSettingsSubmitSuccessActionOptionsOneOf, index_d$2_SubmitSuccessAction as SubmitSuccessAction, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_TableCellData as TableCellData, type index_d$2_TableData as TableData, index_d$2_Tag as Tag, index_d$2_Target as Target, index_d$2_TextAlignment as TextAlignment, type index_d$2_TextData as TextData, type index_d$2_TextInput as TextInput, type index_d$2_TextNodeStyle as TextNodeStyle, type index_d$2_TextStyle as TextStyle, type index_d$2_ThankYouMessage as ThankYouMessage, type index_d$2_ThankYouMessageOptions as ThankYouMessageOptions, type index_d$2_Thumbnails as Thumbnails, index_d$2_ThumbnailsAlignment as ThumbnailsAlignment, type index_d$2_TimeOptions as TimeOptions, index_d$2_Type as Type, type index_d$2_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$2_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$2_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$2_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$2_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, type index_d$2_UpdateFormResponseNonNullableFields as UpdateFormResponseNonNullableFields, index_d$2_UploadFileFormat as UploadFileFormat, type index_d$2_UpsertContact as UpsertContact, index_d$2_UrlTargetEnumTarget as UrlTargetEnumTarget, type index_d$2_Validation as Validation, index_d$2_ValidationFormat as ValidationFormat, type index_d$2_ValidationValidationOneOf as ValidationValidationOneOf, index_d$2_VerticalAlignment as VerticalAlignment, type index_d$2_Video as Video, type index_d$2_VideoData as VideoData, index_d$2_ViewMode as ViewMode, index_d$2_ViewRole as ViewRole, index_d$2_VoteRole as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_Width as Width, index_d$2_WidthType as WidthType, type index_d$2_WixFile as WixFile, index_d$2_WixFileComponentType as WixFileComponentType, type index_d$2_WixFileComponentTypeOptionsOneOf as WixFileComponentTypeOptionsOneOf, type index_d$2__Array as _Array, type index_d$2__ArrayComponentTypeOptionsOneOf as _ArrayComponentTypeOptionsOneOf, type index_d$2__Boolean as _Boolean, type index_d$2__BooleanComponentTypeOptionsOneOf as _BooleanComponentTypeOptionsOneOf, type index_d$2__Number as _Number, type index_d$2__NumberComponentTypeOptionsOneOf as _NumberComponentTypeOptionsOneOf, type index_d$2__Object as _Object, type index_d$2__ObjectValidationOneOf as _ObjectValidationOneOf, type index_d$2__String as _String, type index_d$2__StringComponentTypeOptionsOneOf as _StringComponentTypeOptionsOneOf, index_d$2_bulkCreateForm as bulkCreateForm, index_d$2_bulkRemoveDeletedField as bulkRemoveDeletedField, index_d$2_cloneForm as cloneForm, index_d$2_countForms as countForms, index_d$2_createForm as createForm, index_d$2_deleteForm as deleteForm, index_d$2_getDeletedForm as getDeletedForm, index_d$2_getForm as getForm, index_d$2_listDeletedForms as listDeletedForms, index_d$2_listForms as listForms, index_d$2_queryDeletedForms as queryDeletedForms, index_d$2_queryForms as queryForms, index_d$2_removeFormFromTrashBin as removeFormFromTrashBin, index_d$2_restoreFromTrashBin as restoreFromTrashBin, index_d$2_updateExtendedFields as updateExtendedFields, index_d$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
|
-
|
|
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
|
|
4841
|
-
/**
|
|
4842
|
-
submission
|
|
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 index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
|
|
5521
5587
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
|
|
@@ -5547,8 +5613,6 @@ type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateF
|
|
|
5547
5613
|
type index_d$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
|
|
5548
5614
|
type index_d$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
5549
5615
|
type index_d$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
5550
|
-
type index_d$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
|
|
5551
|
-
type index_d$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
|
|
5552
5616
|
type index_d$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
5553
5617
|
type index_d$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
5554
5618
|
type index_d$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
@@ -5578,13 +5642,11 @@ declare const index_d$1_countFormSpamSubmissionReports: typeof countFormSpamSubm
|
|
|
5578
5642
|
declare const index_d$1_createFormSpamSubmissionReport: typeof createFormSpamSubmissionReport;
|
|
5579
5643
|
declare const index_d$1_deleteFormSpamSubmissionReport: typeof deleteFormSpamSubmissionReport;
|
|
5580
5644
|
declare const index_d$1_getFormSpamSubmissionReport: typeof getFormSpamSubmissionReport;
|
|
5581
|
-
declare const index_d$1_onFormSpamSubmissionReportCreated: typeof onFormSpamSubmissionReportCreated;
|
|
5582
|
-
declare const index_d$1_onFormSpamSubmissionReportDeleted: typeof onFormSpamSubmissionReportDeleted;
|
|
5583
5645
|
declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryFormSpamSubmissionReportsByNamespace;
|
|
5584
5646
|
declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
5585
5647
|
declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
5586
5648
|
declare namespace index_d$1 {
|
|
5587
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type
|
|
5649
|
+
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportOptions as BulkDeleteFormSpamSubmissionReportOptions, type index_d$1_BulkDeleteFormSpamSubmissionReportRequest as BulkDeleteFormSpamSubmissionReportRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportResponse as BulkDeleteFormSpamSubmissionReportResponse, type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields as BulkDeleteFormSpamSubmissionReportResponseNonNullableFields, type index_d$1_BulkDeleteFormSpamSubmissionReportResult as BulkDeleteFormSpamSubmissionReportResult, type index_d$1_BulkReportNotSpamSubmissionOptions as BulkReportNotSpamSubmissionOptions, type index_d$1_BulkReportNotSpamSubmissionRequest as BulkReportNotSpamSubmissionRequest, type index_d$1_BulkReportNotSpamSubmissionResponse as BulkReportNotSpamSubmissionResponse, type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields as BulkReportNotSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportNotSpamSubmissionResult as BulkReportNotSpamSubmissionResult, type index_d$1_BulkReportSpamSubmissionOptions as BulkReportSpamSubmissionOptions, type index_d$1_BulkReportSpamSubmissionRequest as BulkReportSpamSubmissionRequest, type index_d$1_BulkReportSpamSubmissionResponse as BulkReportSpamSubmissionResponse, type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields as BulkReportSpamSubmissionResponseNonNullableFields, type index_d$1_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CheckForSpamResponseNonNullableFields as CheckForSpamResponseNonNullableFields, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields as CountFormSpamSubmissionReportsResponseNonNullableFields, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields as CreateFormSpamSubmissionReportResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteFormSpamSubmissionReportRequest as DeleteFormSpamSubmissionReportRequest, type index_d$1_DeleteFormSpamSubmissionReportResponse as DeleteFormSpamSubmissionReportResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type FormSubmissionStatusUpdatedEvent$1 as FormSubmissionStatusUpdatedEvent, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MarketingSubscriptionDetails$1 as MarketingSubscriptionDetails, type MessageEnvelope$1 as MessageEnvelope, OptInLevel$1 as OptInLevel, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type RemovedSubmissionFromTrash$1 as RemovedSubmissionFromTrash, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, 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, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
|
|
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
|
-
|
|
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 index_d_ActionEvent = ActionEvent;
|
|
6766
6746
|
type index_d_ApplicationError = ApplicationError;
|
|
6767
|
-
type index_d_BaseEventMetadata = BaseEventMetadata;
|
|
6768
6747
|
type index_d_BulkActionMetadata = BulkActionMetadata;
|
|
6769
6748
|
type index_d_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitterData;
|
|
6770
6749
|
type index_d_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
|
|
@@ -6821,7 +6800,6 @@ type index_d_Empty = Empty;
|
|
|
6821
6800
|
type index_d_EntityCreatedEvent = EntityCreatedEvent;
|
|
6822
6801
|
type index_d_EntityDeletedEvent = EntityDeletedEvent;
|
|
6823
6802
|
type index_d_EntityUpdatedEvent = EntityUpdatedEvent;
|
|
6824
|
-
type index_d_EventMetadata = EventMetadata;
|
|
6825
6803
|
type index_d_ExtendedFields = ExtendedFields;
|
|
6826
6804
|
type index_d_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
|
|
6827
6805
|
type index_d_FormSubmission = FormSubmission;
|
|
@@ -6882,16 +6860,9 @@ type index_d_SortOrder = SortOrder;
|
|
|
6882
6860
|
declare const index_d_SortOrder: typeof SortOrder;
|
|
6883
6861
|
type index_d_Sorting = Sorting;
|
|
6884
6862
|
type index_d_SubmissionContactMapped = SubmissionContactMapped;
|
|
6885
|
-
type index_d_SubmissionContactMappedEnvelope = SubmissionContactMappedEnvelope;
|
|
6886
6863
|
type index_d_SubmissionContactMappingSkipped = SubmissionContactMappingSkipped;
|
|
6887
|
-
type index_d_SubmissionContactMappingSkippedEnvelope = SubmissionContactMappingSkippedEnvelope;
|
|
6888
|
-
type index_d_SubmissionCreatedEnvelope = SubmissionCreatedEnvelope;
|
|
6889
|
-
type index_d_SubmissionDeletedEnvelope = SubmissionDeletedEnvelope;
|
|
6890
|
-
type index_d_SubmissionRemovedSubmissionFromTrashEnvelope = SubmissionRemovedSubmissionFromTrashEnvelope;
|
|
6891
6864
|
type index_d_SubmissionStatus = SubmissionStatus;
|
|
6892
6865
|
declare const index_d_SubmissionStatus: typeof SubmissionStatus;
|
|
6893
|
-
type index_d_SubmissionStatusUpdatedEnvelope = SubmissionStatusUpdatedEnvelope;
|
|
6894
|
-
type index_d_SubmissionUpdatedEnvelope = SubmissionUpdatedEnvelope;
|
|
6895
6866
|
type index_d_SubmissionsQueryBuilder = SubmissionsQueryBuilder;
|
|
6896
6867
|
type index_d_SubmissionsQueryResult = SubmissionsQueryResult;
|
|
6897
6868
|
type index_d_SubmitContactResponse = SubmitContactResponse;
|
|
@@ -6921,13 +6892,6 @@ declare const index_d_getDeletedSubmission: typeof getDeletedSubmission;
|
|
|
6921
6892
|
declare const index_d_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
6922
6893
|
declare const index_d_getSubmission: typeof getSubmission;
|
|
6923
6894
|
declare const index_d_listDeletedSubmissions: typeof listDeletedSubmissions;
|
|
6924
|
-
declare const index_d_onSubmissionContactMapped: typeof onSubmissionContactMapped;
|
|
6925
|
-
declare const index_d_onSubmissionContactMappingSkipped: typeof onSubmissionContactMappingSkipped;
|
|
6926
|
-
declare const index_d_onSubmissionCreated: typeof onSubmissionCreated;
|
|
6927
|
-
declare const index_d_onSubmissionDeleted: typeof onSubmissionDeleted;
|
|
6928
|
-
declare const index_d_onSubmissionRemovedSubmissionFromTrash: typeof onSubmissionRemovedSubmissionFromTrash;
|
|
6929
|
-
declare const index_d_onSubmissionStatusUpdated: typeof onSubmissionStatusUpdated;
|
|
6930
|
-
declare const index_d_onSubmissionUpdated: typeof onSubmissionUpdated;
|
|
6931
6895
|
declare const index_d_querySubmission: typeof querySubmission;
|
|
6932
6896
|
declare const index_d_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
6933
6897
|
declare const index_d_removeSubmissionFromTrashBin: typeof removeSubmissionFromTrashBin;
|
|
@@ -6936,7 +6900,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
6936
6900
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
6937
6901
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
6938
6902
|
declare namespace index_d {
|
|
6939
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_ApplicationError as ApplicationError, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_ItemMetadata as ItemMetadata, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_MessageEnvelope as MessageEnvelope, index_d_Mode as Mode, index_d_OptInLevel as OptInLevel, type index_d_OrderDetails as OrderDetails, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappedEnvelope as SubmissionContactMappedEnvelope, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, type index_d_SubmissionContactMappingSkippedEnvelope as SubmissionContactMappingSkippedEnvelope, type index_d_SubmissionCreatedEnvelope as SubmissionCreatedEnvelope, type index_d_SubmissionDeletedEnvelope as SubmissionDeletedEnvelope, type index_d_SubmissionRemovedSubmissionFromTrashEnvelope as SubmissionRemovedSubmissionFromTrashEnvelope, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionStatusUpdatedEnvelope as SubmissionStatusUpdatedEnvelope, type index_d_SubmissionUpdatedEnvelope as SubmissionUpdatedEnvelope, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_onSubmissionContactMapped as onSubmissionContactMapped, index_d_onSubmissionContactMappingSkipped as onSubmissionContactMappingSkipped, index_d_onSubmissionCreated as onSubmissionCreated, index_d_onSubmissionDeleted as onSubmissionDeleted, index_d_onSubmissionRemovedSubmissionFromTrash as onSubmissionRemovedSubmissionFromTrash, index_d_onSubmissionStatusUpdated as onSubmissionStatusUpdated, index_d_onSubmissionUpdated as onSubmissionUpdated, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
6903
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_ApplicationError as ApplicationError, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateSubmissionBySubmitterData as BulkCreateSubmissionBySubmitterData, type index_d_BulkCreateSubmissionBySubmitterOptions as BulkCreateSubmissionBySubmitterOptions, type index_d_BulkCreateSubmissionBySubmitterRequest as BulkCreateSubmissionBySubmitterRequest, type index_d_BulkCreateSubmissionBySubmitterResponse as BulkCreateSubmissionBySubmitterResponse, type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields as BulkCreateSubmissionBySubmitterResponseNonNullableFields, type index_d_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, type index_d_BulkDeleteSubmissionResponseNonNullableFields as BulkDeleteSubmissionResponseNonNullableFields, type index_d_BulkDeleteSubmissionResult as BulkDeleteSubmissionResult, type index_d_BulkMarkSubmissionsAsSeenRequest as BulkMarkSubmissionsAsSeenRequest, type index_d_BulkMarkSubmissionsAsSeenResponse as BulkMarkSubmissionsAsSeenResponse, type index_d_BulkRemoveSubmissionFromTrashBinOptions as BulkRemoveSubmissionFromTrashBinOptions, type index_d_BulkRemoveSubmissionFromTrashBinRequest as BulkRemoveSubmissionFromTrashBinRequest, type index_d_BulkRemoveSubmissionFromTrashBinResponse as BulkRemoveSubmissionFromTrashBinResponse, type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields as BulkRemoveSubmissionFromTrashBinResponseNonNullableFields, type index_d_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_ConfirmSubmissionResponseNonNullableFields as ConfirmSubmissionResponseNonNullableFields, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountDeletedSubmissionsResponseNonNullableFields as CountDeletedSubmissionsResponseNonNullableFields, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsByFilterResponseNonNullableFields as CountSubmissionsByFilterResponseNonNullableFields, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, type index_d_CountSubmissionsResponseNonNullableFields as CountSubmissionsResponseNonNullableFields, type index_d_CreateSubmissionBySubmitterRequest as CreateSubmissionBySubmitterRequest, type index_d_CreateSubmissionBySubmitterResponse as CreateSubmissionBySubmitterResponse, type index_d_CreateSubmissionOptions as CreateSubmissionOptions, type index_d_CreateSubmissionRequest as CreateSubmissionRequest, type index_d_CreateSubmissionResponse as CreateSubmissionResponse, type index_d_CreateSubmissionResponseNonNullableFields as CreateSubmissionResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_CursorPagingMetadata as CursorPagingMetadata, type index_d_CursorQuery as CursorQuery, type index_d_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d_CursorSearch as CursorSearch, type index_d_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d_Cursors as Cursors, type index_d_DeleteSubmissionOptions as DeleteSubmissionOptions, type index_d_DeleteSubmissionRequest as DeleteSubmissionRequest, type index_d_DeleteSubmissionResponse as DeleteSubmissionResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_ExtendedFields as ExtendedFields, type index_d_FormDeletedSubmissionsCount as FormDeletedSubmissionsCount, type index_d_FormSubmission as FormSubmission, type index_d_FormSubmissionNonNullableFields as FormSubmissionNonNullableFields, type index_d_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetDeletedSubmissionResponseNonNullableFields as GetDeletedSubmissionResponseNonNullableFields, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, type index_d_GetMediaUploadURLResponseNonNullableFields as GetMediaUploadURLResponseNonNullableFields, type index_d_GetSubmissionByCheckoutIdRequest as GetSubmissionByCheckoutIdRequest, type index_d_GetSubmissionByCheckoutIdResponse as GetSubmissionByCheckoutIdResponse, type index_d_GetSubmissionRequest as GetSubmissionRequest, type index_d_GetSubmissionResponse as GetSubmissionResponse, type index_d_GetSubmissionResponseNonNullableFields as GetSubmissionResponseNonNullableFields, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, index_d_IdentityType as IdentityType, type index_d_ItemMetadata as ItemMetadata, type index_d_ListDeletedSubmissionsOptions as ListDeletedSubmissionsOptions, type index_d_ListDeletedSubmissionsRequest as ListDeletedSubmissionsRequest, type index_d_ListDeletedSubmissionsResponse as ListDeletedSubmissionsResponse, type index_d_ListDeletedSubmissionsResponseNonNullableFields as ListDeletedSubmissionsResponseNonNullableFields, type index_d_MarketingSubscriptionDetails as MarketingSubscriptionDetails, type index_d_MessageEnvelope as MessageEnvelope, index_d_Mode as Mode, index_d_OptInLevel as OptInLevel, type index_d_OrderDetails as OrderDetails, type index_d_QuerySubmissionOptions as QuerySubmissionOptions, type index_d_QuerySubmissionRequest as QuerySubmissionRequest, type index_d_QuerySubmissionResponse as QuerySubmissionResponse, type index_d_QuerySubmissionResponseNonNullableFields as QuerySubmissionResponseNonNullableFields, type index_d_QuerySubmissionsByNamespaceForExportRequest as QuerySubmissionsByNamespaceForExportRequest, type index_d_QuerySubmissionsByNamespaceForExportResponse as QuerySubmissionsByNamespaceForExportResponse, type index_d_QuerySubmissionsByNamespaceOptions as QuerySubmissionsByNamespaceOptions, type index_d_QuerySubmissionsByNamespaceRequest as QuerySubmissionsByNamespaceRequest, type index_d_QuerySubmissionsByNamespaceResponse as QuerySubmissionsByNamespaceResponse, type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields as QuerySubmissionsByNamespaceResponseNonNullableFields, type index_d_RemoveSubmissionFromTrashBinRequest as RemoveSubmissionFromTrashBinRequest, type index_d_RemoveSubmissionFromTrashBinResponse as RemoveSubmissionFromTrashBinResponse, type index_d_RemovedSubmissionFromTrash as RemovedSubmissionFromTrash, type index_d_RestoreInfo as RestoreInfo, type index_d_RestoreSubmissionFromTrashBinRequest as RestoreSubmissionFromTrashBinRequest, type index_d_RestoreSubmissionFromTrashBinResponse as RestoreSubmissionFromTrashBinResponse, type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields as RestoreSubmissionFromTrashBinResponseNonNullableFields, type index_d_SearchDetails as SearchDetails, type index_d_SearchSubmissionsByNamespaceForExportRequest as SearchSubmissionsByNamespaceForExportRequest, type index_d_SearchSubmissionsByNamespaceForExportResponse as SearchSubmissionsByNamespaceForExportResponse, type index_d_SearchSubmissionsByNamespaceRequest as SearchSubmissionsByNamespaceRequest, type index_d_SearchSubmissionsByNamespaceResponse as SearchSubmissionsByNamespaceResponse, type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields as SearchSubmissionsByNamespaceResponseNonNullableFields, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, type index_d_SubmissionContactMapped as SubmissionContactMapped, type index_d_SubmissionContactMappingSkipped as SubmissionContactMappingSkipped, index_d_SubmissionStatus as SubmissionStatus, type index_d_SubmissionsQueryBuilder as SubmissionsQueryBuilder, type index_d_SubmissionsQueryResult as SubmissionsQueryResult, type index_d_SubmitContactResponse as SubmitContactResponse, type index_d_Submitter as Submitter, type index_d_SubmitterSubmitterOneOf as SubmitterSubmitterOneOf, type index_d_UpdateSubmission as UpdateSubmission, type index_d_UpdateSubmissionRequest as UpdateSubmissionRequest, type index_d_UpdateSubmissionResponse as UpdateSubmissionResponse, type index_d_UpdateSubmissionResponseNonNullableFields as UpdateSubmissionResponseNonNullableFields, type index_d_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, type index_d_UpsertContactFromSubmissionResponseNonNullableFields as UpsertContactFromSubmissionResponseNonNullableFields, index_d_WebhookIdentityType as WebhookIdentityType, index_d_bulkCreateSubmissionBySubmitter as bulkCreateSubmissionBySubmitter, index_d_bulkDeleteSubmission as bulkDeleteSubmission, index_d_bulkMarkSubmissionsAsSeen as bulkMarkSubmissionsAsSeen, index_d_bulkRemoveSubmissionFromTrashBin as bulkRemoveSubmissionFromTrashBin, index_d_confirmSubmission as confirmSubmission, index_d_countDeletedSubmissions as countDeletedSubmissions, index_d_countSubmissions as countSubmissions, index_d_countSubmissionsByFilter as countSubmissionsByFilter, index_d_createSubmission as createSubmission, index_d_deleteSubmission as deleteSubmission, index_d_getDeletedSubmission as getDeletedSubmission, index_d_getMediaUploadUrl as getMediaUploadUrl, index_d_getSubmission as getSubmission, index_d_listDeletedSubmissions as listDeletedSubmissions, index_d_querySubmission as querySubmission, index_d_querySubmissionsByNamespace as querySubmissionsByNamespace, index_d_removeSubmissionFromTrashBin as removeSubmissionFromTrashBin, index_d_restoreSubmissionFromTrashBin as restoreSubmissionFromTrashBin, index_d_searchSubmissionsByNamespace as searchSubmissionsByNamespace, index_d_updateSubmission as updateSubmission, index_d_upsertContactFromSubmission as upsertContactFromSubmission };
|
|
6940
6904
|
}
|
|
6941
6905
|
|
|
6942
6906
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|