@wix/forms 1.0.111 → 1.0.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -471,8 +471,6 @@ interface FormFieldV2 extends FormFieldV2FieldTypeOptionsOneOf {
|
|
|
471
471
|
* @readonly
|
|
472
472
|
*/
|
|
473
473
|
fieldType?: FieldType;
|
|
474
|
-
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
475
|
-
contactMapping?: FormFieldContactInfo;
|
|
476
474
|
}
|
|
477
475
|
/** @oneof */
|
|
478
476
|
interface FormFieldV2FieldTypeOptionsOneOf {
|
|
@@ -2364,6 +2362,87 @@ declare enum InputType {
|
|
|
2364
2362
|
PAYMENT = "PAYMENT",
|
|
2365
2363
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
2366
2364
|
}
|
|
2365
|
+
interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
|
|
2366
|
+
/** Email info. */
|
|
2367
|
+
emailInfo?: EmailInfo;
|
|
2368
|
+
/** Phone info. */
|
|
2369
|
+
phoneInfo?: PhoneInfo;
|
|
2370
|
+
/** Address info. */
|
|
2371
|
+
addressInfo?: AddressInfo;
|
|
2372
|
+
/** Custom field info. */
|
|
2373
|
+
customFieldInfo?: CustomFieldInfo;
|
|
2374
|
+
/** Subscription info */
|
|
2375
|
+
subscriptionInfo?: SubscriptionInfo;
|
|
2376
|
+
/** Field mapped to contacts. */
|
|
2377
|
+
contactField?: ContactField;
|
|
2378
|
+
}
|
|
2379
|
+
/** @oneof */
|
|
2380
|
+
interface FormFieldContactInfoAdditionalInfoOneOf {
|
|
2381
|
+
/** Email info. */
|
|
2382
|
+
emailInfo?: EmailInfo;
|
|
2383
|
+
/** Phone info. */
|
|
2384
|
+
phoneInfo?: PhoneInfo;
|
|
2385
|
+
/** Address info. */
|
|
2386
|
+
addressInfo?: AddressInfo;
|
|
2387
|
+
/** Custom field info. */
|
|
2388
|
+
customFieldInfo?: CustomFieldInfo;
|
|
2389
|
+
/** Subscription info */
|
|
2390
|
+
subscriptionInfo?: SubscriptionInfo;
|
|
2391
|
+
}
|
|
2392
|
+
declare enum EmailInfoTag {
|
|
2393
|
+
UNTAGGED = "UNTAGGED",
|
|
2394
|
+
MAIN = "MAIN"
|
|
2395
|
+
}
|
|
2396
|
+
declare enum PhoneInfoTag {
|
|
2397
|
+
UNTAGGED = "UNTAGGED",
|
|
2398
|
+
MAIN = "MAIN"
|
|
2399
|
+
}
|
|
2400
|
+
declare enum Tag {
|
|
2401
|
+
UNTAGGED = "UNTAGGED",
|
|
2402
|
+
HOME = "HOME"
|
|
2403
|
+
}
|
|
2404
|
+
declare enum OptInLevel$2 {
|
|
2405
|
+
UNKNOWN = "UNKNOWN",
|
|
2406
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
2407
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
2408
|
+
}
|
|
2409
|
+
declare enum ContactField {
|
|
2410
|
+
UNDEFINED = "UNDEFINED",
|
|
2411
|
+
FIRST_NAME = "FIRST_NAME",
|
|
2412
|
+
LAST_NAME = "LAST_NAME",
|
|
2413
|
+
COMPANY = "COMPANY",
|
|
2414
|
+
POSITION = "POSITION",
|
|
2415
|
+
EMAIL = "EMAIL",
|
|
2416
|
+
PHONE = "PHONE",
|
|
2417
|
+
ADDRESS = "ADDRESS",
|
|
2418
|
+
BIRTHDATE = "BIRTHDATE",
|
|
2419
|
+
CUSTOM_FIELD = "CUSTOM_FIELD",
|
|
2420
|
+
SUBSCRIPTION = "SUBSCRIPTION",
|
|
2421
|
+
VAT_ID = "VAT_ID"
|
|
2422
|
+
}
|
|
2423
|
+
interface EmailInfo {
|
|
2424
|
+
/** Email tag. */
|
|
2425
|
+
tag?: EmailInfoTag;
|
|
2426
|
+
}
|
|
2427
|
+
interface PhoneInfo {
|
|
2428
|
+
/** Phone tag. */
|
|
2429
|
+
tag?: PhoneInfoTag;
|
|
2430
|
+
}
|
|
2431
|
+
interface AddressInfo {
|
|
2432
|
+
/** Address tag. */
|
|
2433
|
+
tag?: Tag;
|
|
2434
|
+
}
|
|
2435
|
+
interface CustomFieldInfo {
|
|
2436
|
+
/** Custom field key. */
|
|
2437
|
+
key?: string;
|
|
2438
|
+
}
|
|
2439
|
+
interface SubscriptionInfo {
|
|
2440
|
+
/**
|
|
2441
|
+
* Subscription consent opt in level, either single or double confirmation.
|
|
2442
|
+
* Default: SINGLE_CONFIRMATION
|
|
2443
|
+
*/
|
|
2444
|
+
optInLevel?: OptInLevel$2;
|
|
2445
|
+
}
|
|
2367
2446
|
interface _String extends _StringComponentTypeOptionsOneOf {
|
|
2368
2447
|
/** Text input field */
|
|
2369
2448
|
textInputOptions?: TextInput;
|
|
@@ -2581,6 +2660,8 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
2581
2660
|
* @readonly
|
|
2582
2661
|
*/
|
|
2583
2662
|
inputType?: InputType;
|
|
2663
|
+
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
2664
|
+
contactMapping?: FormFieldContactInfo;
|
|
2584
2665
|
}
|
|
2585
2666
|
/** @oneof */
|
|
2586
2667
|
interface InputFieldInputTypeOptionsOneOf {
|
|
@@ -2633,87 +2714,6 @@ interface SubmitButtonSubmitActionOneOf {
|
|
|
2633
2714
|
/** Submit action effect is to redirect to */
|
|
2634
2715
|
redirect?: Redirect;
|
|
2635
2716
|
}
|
|
2636
|
-
interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
|
|
2637
|
-
/** Email info. */
|
|
2638
|
-
emailInfo?: EmailInfo;
|
|
2639
|
-
/** Phone info. */
|
|
2640
|
-
phoneInfo?: PhoneInfo;
|
|
2641
|
-
/** Address info. */
|
|
2642
|
-
addressInfo?: AddressInfo;
|
|
2643
|
-
/** Custom field info. */
|
|
2644
|
-
customFieldInfo?: CustomFieldInfo;
|
|
2645
|
-
/** Subscription info */
|
|
2646
|
-
subscriptionInfo?: SubscriptionInfo;
|
|
2647
|
-
/** Field mapped to contacts. */
|
|
2648
|
-
contactField?: ContactField;
|
|
2649
|
-
}
|
|
2650
|
-
/** @oneof */
|
|
2651
|
-
interface FormFieldContactInfoAdditionalInfoOneOf {
|
|
2652
|
-
/** Email info. */
|
|
2653
|
-
emailInfo?: EmailInfo;
|
|
2654
|
-
/** Phone info. */
|
|
2655
|
-
phoneInfo?: PhoneInfo;
|
|
2656
|
-
/** Address info. */
|
|
2657
|
-
addressInfo?: AddressInfo;
|
|
2658
|
-
/** Custom field info. */
|
|
2659
|
-
customFieldInfo?: CustomFieldInfo;
|
|
2660
|
-
/** Subscription info */
|
|
2661
|
-
subscriptionInfo?: SubscriptionInfo;
|
|
2662
|
-
}
|
|
2663
|
-
declare enum EmailInfoTag {
|
|
2664
|
-
UNTAGGED = "UNTAGGED",
|
|
2665
|
-
MAIN = "MAIN"
|
|
2666
|
-
}
|
|
2667
|
-
declare enum PhoneInfoTag {
|
|
2668
|
-
UNTAGGED = "UNTAGGED",
|
|
2669
|
-
MAIN = "MAIN"
|
|
2670
|
-
}
|
|
2671
|
-
declare enum Tag {
|
|
2672
|
-
UNTAGGED = "UNTAGGED",
|
|
2673
|
-
HOME = "HOME"
|
|
2674
|
-
}
|
|
2675
|
-
declare enum OptInLevel$1 {
|
|
2676
|
-
UNKNOWN = "UNKNOWN",
|
|
2677
|
-
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
2678
|
-
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
2679
|
-
}
|
|
2680
|
-
declare enum ContactField {
|
|
2681
|
-
UNDEFINED = "UNDEFINED",
|
|
2682
|
-
FIRST_NAME = "FIRST_NAME",
|
|
2683
|
-
LAST_NAME = "LAST_NAME",
|
|
2684
|
-
COMPANY = "COMPANY",
|
|
2685
|
-
POSITION = "POSITION",
|
|
2686
|
-
EMAIL = "EMAIL",
|
|
2687
|
-
PHONE = "PHONE",
|
|
2688
|
-
ADDRESS = "ADDRESS",
|
|
2689
|
-
BIRTHDATE = "BIRTHDATE",
|
|
2690
|
-
CUSTOM_FIELD = "CUSTOM_FIELD",
|
|
2691
|
-
SUBSCRIPTION = "SUBSCRIPTION",
|
|
2692
|
-
VAT_ID = "VAT_ID"
|
|
2693
|
-
}
|
|
2694
|
-
interface EmailInfo {
|
|
2695
|
-
/** Email tag. */
|
|
2696
|
-
tag?: EmailInfoTag;
|
|
2697
|
-
}
|
|
2698
|
-
interface PhoneInfo {
|
|
2699
|
-
/** Phone tag. */
|
|
2700
|
-
tag?: PhoneInfoTag;
|
|
2701
|
-
}
|
|
2702
|
-
interface AddressInfo {
|
|
2703
|
-
/** Address tag. */
|
|
2704
|
-
tag?: Tag;
|
|
2705
|
-
}
|
|
2706
|
-
interface CustomFieldInfo {
|
|
2707
|
-
/** Custom field key. */
|
|
2708
|
-
key?: string;
|
|
2709
|
-
}
|
|
2710
|
-
interface SubscriptionInfo {
|
|
2711
|
-
/**
|
|
2712
|
-
* Subscription consent opt in level, either single or double confirmation.
|
|
2713
|
-
* Default: SINGLE_CONFIRMATION
|
|
2714
|
-
*/
|
|
2715
|
-
optInLevel?: OptInLevel$1;
|
|
2716
|
-
}
|
|
2717
2717
|
interface Step {
|
|
2718
2718
|
/** Step ID. */
|
|
2719
2719
|
_id?: string;
|
|
@@ -3811,6 +3811,29 @@ interface InputFieldMultilineAddressNonNullableFields {
|
|
|
3811
3811
|
componentType: MultilineAddressComponentType;
|
|
3812
3812
|
validation?: MultilineAddressValidationNonNullableFields;
|
|
3813
3813
|
}
|
|
3814
|
+
interface EmailInfoNonNullableFields {
|
|
3815
|
+
tag: EmailInfoTag;
|
|
3816
|
+
}
|
|
3817
|
+
interface PhoneInfoNonNullableFields {
|
|
3818
|
+
tag: PhoneInfoTag;
|
|
3819
|
+
}
|
|
3820
|
+
interface AddressInfoNonNullableFields {
|
|
3821
|
+
tag: Tag;
|
|
3822
|
+
}
|
|
3823
|
+
interface CustomFieldInfoNonNullableFields {
|
|
3824
|
+
key: string;
|
|
3825
|
+
}
|
|
3826
|
+
interface SubscriptionInfoNonNullableFields {
|
|
3827
|
+
optInLevel: OptInLevel$2;
|
|
3828
|
+
}
|
|
3829
|
+
interface FormFieldContactInfoNonNullableFields {
|
|
3830
|
+
emailInfo?: EmailInfoNonNullableFields;
|
|
3831
|
+
phoneInfo?: PhoneInfoNonNullableFields;
|
|
3832
|
+
addressInfo?: AddressInfoNonNullableFields;
|
|
3833
|
+
customFieldInfo?: CustomFieldInfoNonNullableFields;
|
|
3834
|
+
subscriptionInfo?: SubscriptionInfoNonNullableFields;
|
|
3835
|
+
contactField: ContactField;
|
|
3836
|
+
}
|
|
3814
3837
|
interface InputFieldNonNullableFields {
|
|
3815
3838
|
stringOptions?: _StringNonNullableFields;
|
|
3816
3839
|
numberOptions?: _NumberNonNullableFields;
|
|
@@ -3822,6 +3845,7 @@ interface InputFieldNonNullableFields {
|
|
|
3822
3845
|
pii: boolean;
|
|
3823
3846
|
required: boolean;
|
|
3824
3847
|
inputType: InputType;
|
|
3848
|
+
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
3825
3849
|
}
|
|
3826
3850
|
interface HeaderNonNullableFields {
|
|
3827
3851
|
content?: RichContentNonNullableFields;
|
|
@@ -3843,29 +3867,6 @@ interface SubmitButtonNonNullableFields {
|
|
|
3843
3867
|
thankYouMessage?: ThankYouMessageNonNullableFields;
|
|
3844
3868
|
redirect?: RedirectNonNullableFields;
|
|
3845
3869
|
}
|
|
3846
|
-
interface EmailInfoNonNullableFields {
|
|
3847
|
-
tag: EmailInfoTag;
|
|
3848
|
-
}
|
|
3849
|
-
interface PhoneInfoNonNullableFields {
|
|
3850
|
-
tag: PhoneInfoTag;
|
|
3851
|
-
}
|
|
3852
|
-
interface AddressInfoNonNullableFields {
|
|
3853
|
-
tag: Tag;
|
|
3854
|
-
}
|
|
3855
|
-
interface CustomFieldInfoNonNullableFields {
|
|
3856
|
-
key: string;
|
|
3857
|
-
}
|
|
3858
|
-
interface SubscriptionInfoNonNullableFields {
|
|
3859
|
-
optInLevel: OptInLevel$1;
|
|
3860
|
-
}
|
|
3861
|
-
interface FormFieldContactInfoNonNullableFields {
|
|
3862
|
-
emailInfo?: EmailInfoNonNullableFields;
|
|
3863
|
-
phoneInfo?: PhoneInfoNonNullableFields;
|
|
3864
|
-
addressInfo?: AddressInfoNonNullableFields;
|
|
3865
|
-
customFieldInfo?: CustomFieldInfoNonNullableFields;
|
|
3866
|
-
subscriptionInfo?: SubscriptionInfoNonNullableFields;
|
|
3867
|
-
contactField: ContactField;
|
|
3868
|
-
}
|
|
3869
3870
|
interface FormFieldV2NonNullableFields {
|
|
3870
3871
|
inputOptions?: InputFieldNonNullableFields;
|
|
3871
3872
|
displayOptions?: DisplayFieldNonNullableFields;
|
|
@@ -3873,7 +3874,6 @@ interface FormFieldV2NonNullableFields {
|
|
|
3873
3874
|
_id: string;
|
|
3874
3875
|
hidden: boolean;
|
|
3875
3876
|
fieldType: FieldType;
|
|
3876
|
-
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
3877
3877
|
}
|
|
3878
3878
|
interface ItemLayoutNonNullableFields {
|
|
3879
3879
|
fieldId: string;
|
|
@@ -4254,16 +4254,6 @@ type APIMetadata = {
|
|
|
4254
4254
|
packageName?: string;
|
|
4255
4255
|
};
|
|
4256
4256
|
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
4257
|
-
type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
4258
|
-
__type: 'event-definition';
|
|
4259
|
-
type: Type;
|
|
4260
|
-
isDomainEvent?: boolean;
|
|
4261
|
-
transformations?: (envelope: unknown) => Payload;
|
|
4262
|
-
__payload: Payload;
|
|
4263
|
-
};
|
|
4264
|
-
declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
|
|
4265
|
-
type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
|
|
4266
|
-
type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
|
|
4267
4257
|
|
|
4268
4258
|
declare global {
|
|
4269
4259
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
@@ -4723,7 +4713,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4723
4713
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4724
4714
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4725
4715
|
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 };
|
|
4716
|
+
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_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 };
|
|
4727
4717
|
}
|
|
4728
4718
|
|
|
4729
4719
|
/**
|
|
@@ -4824,7 +4814,7 @@ interface ExtendedFields$1 {
|
|
|
4824
4814
|
namespaces?: Record<string, Record<string, any>>;
|
|
4825
4815
|
}
|
|
4826
4816
|
declare enum SubmissionStatus$1 {
|
|
4827
|
-
|
|
4817
|
+
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
4828
4818
|
PENDING = "PENDING",
|
|
4829
4819
|
CONFIRMED = "CONFIRMED",
|
|
4830
4820
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
@@ -4837,9 +4827,11 @@ interface OrderDetails$1 {
|
|
|
4837
4827
|
*/
|
|
4838
4828
|
checkoutId?: string;
|
|
4839
4829
|
}
|
|
4840
|
-
interface
|
|
4841
|
-
/**
|
|
4842
|
-
submission
|
|
4830
|
+
interface FormSubmissionStatusUpdatedEvent$1 {
|
|
4831
|
+
/** Updated submission. */
|
|
4832
|
+
submission?: FormSubmission$1;
|
|
4833
|
+
/** Previous status of the submission. */
|
|
4834
|
+
previousStatus?: SubmissionStatus$1;
|
|
4843
4835
|
}
|
|
4844
4836
|
/** Form submission that was created or retrieved. */
|
|
4845
4837
|
interface FormSubmission$1 {
|
|
@@ -4927,6 +4919,51 @@ interface FormSubmissionOrderDetails {
|
|
|
4927
4919
|
*/
|
|
4928
4920
|
checkoutId?: string;
|
|
4929
4921
|
}
|
|
4922
|
+
interface RemovedSubmissionFromTrash$1 {
|
|
4923
|
+
/** Removed submission. */
|
|
4924
|
+
submission?: FormSubmission$1;
|
|
4925
|
+
}
|
|
4926
|
+
interface SubmissionContactMapped$1 {
|
|
4927
|
+
/**
|
|
4928
|
+
* Mapped upserted contact ID.
|
|
4929
|
+
* @readonly
|
|
4930
|
+
*/
|
|
4931
|
+
contactId?: string;
|
|
4932
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
4933
|
+
namespace?: string;
|
|
4934
|
+
/** Marketing subscription details */
|
|
4935
|
+
marketingSubscriptionDetails?: MarketingSubscriptionDetails$1;
|
|
4936
|
+
}
|
|
4937
|
+
interface MarketingSubscriptionDetails$1 {
|
|
4938
|
+
/** Form id which was submitted */
|
|
4939
|
+
formId?: string;
|
|
4940
|
+
/** Mapped contact emails. */
|
|
4941
|
+
emails?: string[];
|
|
4942
|
+
/**
|
|
4943
|
+
* Date and time the form submission was created.
|
|
4944
|
+
* @readonly
|
|
4945
|
+
*/
|
|
4946
|
+
submittedDate?: Date;
|
|
4947
|
+
/**
|
|
4948
|
+
* Subscription consent opt in level, either single or double confirmation.
|
|
4949
|
+
* Default: SINGLE_CONFIRMATION
|
|
4950
|
+
*/
|
|
4951
|
+
optInLevel?: OptInLevel$1;
|
|
4952
|
+
}
|
|
4953
|
+
declare enum OptInLevel$1 {
|
|
4954
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
4955
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
4956
|
+
}
|
|
4957
|
+
interface SubmissionContactMappingSkipped$1 {
|
|
4958
|
+
/** Form Id. */
|
|
4959
|
+
formId?: string;
|
|
4960
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
4961
|
+
namespace?: string;
|
|
4962
|
+
}
|
|
4963
|
+
interface CheckForSpamRequest {
|
|
4964
|
+
/** Form submission. */
|
|
4965
|
+
submission: FormSubmission$1;
|
|
4966
|
+
}
|
|
4930
4967
|
interface CheckForSpamResponse {
|
|
4931
4968
|
/** Is the submission a spam. */
|
|
4932
4969
|
spam?: boolean;
|
|
@@ -5183,7 +5220,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
5183
5220
|
slug?: string;
|
|
5184
5221
|
/** ID of the entity associated with the event. */
|
|
5185
5222
|
entityId?: string;
|
|
5186
|
-
/** Event timestamp. */
|
|
5223
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
5187
5224
|
eventTime?: Date;
|
|
5188
5225
|
/**
|
|
5189
5226
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -5362,60 +5399,6 @@ interface FormSpamSubmissionReportsCountNonNullableFields {
|
|
|
5362
5399
|
interface CountFormSpamSubmissionReportsResponseNonNullableFields {
|
|
5363
5400
|
formsSpamSubmissionReportsCount: FormSpamSubmissionReportsCountNonNullableFields[];
|
|
5364
5401
|
}
|
|
5365
|
-
interface BaseEventMetadata$1 {
|
|
5366
|
-
/** App instance ID. */
|
|
5367
|
-
instanceId?: string | null;
|
|
5368
|
-
/** Event type. */
|
|
5369
|
-
eventType?: string;
|
|
5370
|
-
/** The identification type and identity data. */
|
|
5371
|
-
identity?: IdentificationData$1;
|
|
5372
|
-
}
|
|
5373
|
-
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
5374
|
-
/**
|
|
5375
|
-
* Unique event ID.
|
|
5376
|
-
* Allows clients to ignore duplicate webhooks.
|
|
5377
|
-
*/
|
|
5378
|
-
_id?: string;
|
|
5379
|
-
/**
|
|
5380
|
-
* Assumes actions are also always typed to an entity_type
|
|
5381
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
5382
|
-
*/
|
|
5383
|
-
entityFqdn?: string;
|
|
5384
|
-
/**
|
|
5385
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
5386
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
5387
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
5388
|
-
*/
|
|
5389
|
-
slug?: string;
|
|
5390
|
-
/** ID of the entity associated with the event. */
|
|
5391
|
-
entityId?: string;
|
|
5392
|
-
/** Event timestamp. */
|
|
5393
|
-
eventTime?: Date;
|
|
5394
|
-
/**
|
|
5395
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
5396
|
-
* (for example, GDPR).
|
|
5397
|
-
*/
|
|
5398
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
5399
|
-
/** If present, indicates the action that triggered the event. */
|
|
5400
|
-
originatedFrom?: string | null;
|
|
5401
|
-
/**
|
|
5402
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
5403
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
5404
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
5405
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
5406
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
5407
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
5408
|
-
*/
|
|
5409
|
-
entityEventSequence?: string | null;
|
|
5410
|
-
}
|
|
5411
|
-
interface FormSpamSubmissionReportCreatedEnvelope {
|
|
5412
|
-
entity: FormSpamSubmissionReport;
|
|
5413
|
-
metadata: EventMetadata$1;
|
|
5414
|
-
}
|
|
5415
|
-
interface FormSpamSubmissionReportDeletedEnvelope {
|
|
5416
|
-
entity: FormSpamSubmissionReport;
|
|
5417
|
-
metadata: EventMetadata$1;
|
|
5418
|
-
}
|
|
5419
5402
|
interface BulkDeleteFormSpamSubmissionReportOptions {
|
|
5420
5403
|
/** Ids of the form spam submission reports to delete. */
|
|
5421
5404
|
formSpamSubmissionReportIds?: string[];
|
|
@@ -5500,8 +5483,6 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
5500
5483
|
|
|
5501
5484
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5502
5485
|
|
|
5503
|
-
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5504
|
-
|
|
5505
5486
|
declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
|
|
5506
5487
|
declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
|
|
5507
5488
|
declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
|
|
@@ -5514,8 +5495,6 @@ declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof
|
|
|
5514
5495
|
declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
|
|
5515
5496
|
declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
|
|
5516
5497
|
declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<typeof publicCountFormSpamSubmissionReports>>;
|
|
5517
|
-
declare const onFormSpamSubmissionReportCreated: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportCreated>>;
|
|
5518
|
-
declare const onFormSpamSubmissionReportDeleted: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportDeleted>>;
|
|
5519
5498
|
|
|
5520
5499
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
|
|
5521
5500
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
|
|
@@ -5547,8 +5526,6 @@ type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateF
|
|
|
5547
5526
|
type index_d$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
|
|
5548
5527
|
type index_d$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
5549
5528
|
type index_d$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
5550
|
-
type index_d$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
|
|
5551
|
-
type index_d$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
|
|
5552
5529
|
type index_d$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
5553
5530
|
type index_d$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
5554
5531
|
type index_d$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
@@ -5578,13 +5555,11 @@ declare const index_d$1_countFormSpamSubmissionReports: typeof countFormSpamSubm
|
|
|
5578
5555
|
declare const index_d$1_createFormSpamSubmissionReport: typeof createFormSpamSubmissionReport;
|
|
5579
5556
|
declare const index_d$1_deleteFormSpamSubmissionReport: typeof deleteFormSpamSubmissionReport;
|
|
5580
5557
|
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
5558
|
declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryFormSpamSubmissionReportsByNamespace;
|
|
5584
5559
|
declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
5585
5560
|
declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
5586
5561
|
declare namespace index_d$1 {
|
|
5587
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type
|
|
5562
|
+
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BulkActionMetadata$1 as BulkActionMetadata, type 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
5563
|
}
|
|
5589
5564
|
|
|
5590
5565
|
/** Form submission that was created or retrieved. */
|
|
@@ -5647,7 +5622,7 @@ interface FormSubmission {
|
|
|
5647
5622
|
contactId?: string | null;
|
|
5648
5623
|
}
|
|
5649
5624
|
declare enum SubmissionStatus {
|
|
5650
|
-
|
|
5625
|
+
UNKNOWN_SUBMISSION_STATUS = "UNKNOWN_SUBMISSION_STATUS",
|
|
5651
5626
|
PENDING = "PENDING",
|
|
5652
5627
|
CONFIRMED = "CONFIRMED",
|
|
5653
5628
|
PAYMENT_WAITING = "PAYMENT_WAITING",
|
|
@@ -5712,6 +5687,53 @@ interface OrderDetails {
|
|
|
5712
5687
|
*/
|
|
5713
5688
|
checkoutId?: string;
|
|
5714
5689
|
}
|
|
5690
|
+
interface FormSubmissionStatusUpdatedEvent {
|
|
5691
|
+
/** Updated submission. */
|
|
5692
|
+
submission?: FormSubmission;
|
|
5693
|
+
/** Previous status of the submission. */
|
|
5694
|
+
previousStatus?: SubmissionStatus;
|
|
5695
|
+
}
|
|
5696
|
+
interface RemovedSubmissionFromTrash {
|
|
5697
|
+
/** Removed submission. */
|
|
5698
|
+
submission?: FormSubmission;
|
|
5699
|
+
}
|
|
5700
|
+
interface SubmissionContactMapped {
|
|
5701
|
+
/**
|
|
5702
|
+
* Mapped upserted contact ID.
|
|
5703
|
+
* @readonly
|
|
5704
|
+
*/
|
|
5705
|
+
contactId?: string;
|
|
5706
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
5707
|
+
namespace?: string;
|
|
5708
|
+
/** Marketing subscription details */
|
|
5709
|
+
marketingSubscriptionDetails?: MarketingSubscriptionDetails;
|
|
5710
|
+
}
|
|
5711
|
+
interface MarketingSubscriptionDetails {
|
|
5712
|
+
/** Form id which was submitted */
|
|
5713
|
+
formId?: string;
|
|
5714
|
+
/** Mapped contact emails. */
|
|
5715
|
+
emails?: string[];
|
|
5716
|
+
/**
|
|
5717
|
+
* Date and time the form submission was created.
|
|
5718
|
+
* @readonly
|
|
5719
|
+
*/
|
|
5720
|
+
submittedDate?: Date;
|
|
5721
|
+
/**
|
|
5722
|
+
* Subscription consent opt in level, either single or double confirmation.
|
|
5723
|
+
* Default: SINGLE_CONFIRMATION
|
|
5724
|
+
*/
|
|
5725
|
+
optInLevel?: OptInLevel;
|
|
5726
|
+
}
|
|
5727
|
+
declare enum OptInLevel {
|
|
5728
|
+
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
5729
|
+
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
5730
|
+
}
|
|
5731
|
+
interface SubmissionContactMappingSkipped {
|
|
5732
|
+
/** Form Id. */
|
|
5733
|
+
formId?: string;
|
|
5734
|
+
/** Identifies the namespace that the submission's form belongs to. */
|
|
5735
|
+
namespace?: string;
|
|
5736
|
+
}
|
|
5715
5737
|
interface CreateSubmissionRequest {
|
|
5716
5738
|
/** Submission to create. */
|
|
5717
5739
|
submission: FormSubmission;
|
|
@@ -5825,12 +5847,6 @@ interface ConfirmSubmissionResponse {
|
|
|
5825
5847
|
/** The confirmed submission. */
|
|
5826
5848
|
submission?: FormSubmission;
|
|
5827
5849
|
}
|
|
5828
|
-
interface FormSubmissionStatusUpdatedEvent {
|
|
5829
|
-
/** Updated submission. */
|
|
5830
|
-
submission?: FormSubmission;
|
|
5831
|
-
/** Previous status of the submission. */
|
|
5832
|
-
previousStatus?: SubmissionStatus;
|
|
5833
|
-
}
|
|
5834
5850
|
interface DeleteSubmissionRequest {
|
|
5835
5851
|
/** ID of the submission to delete. */
|
|
5836
5852
|
submissionId: string;
|
|
@@ -5883,10 +5899,6 @@ interface RemoveSubmissionFromTrashBinRequest {
|
|
|
5883
5899
|
}
|
|
5884
5900
|
interface RemoveSubmissionFromTrashBinResponse {
|
|
5885
5901
|
}
|
|
5886
|
-
interface RemovedSubmissionFromTrash {
|
|
5887
|
-
/** Removed submission. */
|
|
5888
|
-
submission?: FormSubmission;
|
|
5889
|
-
}
|
|
5890
5902
|
interface BulkRemoveSubmissionFromTrashBinRequest {
|
|
5891
5903
|
/** Form ID. */
|
|
5892
5904
|
formId: string;
|
|
@@ -6186,7 +6198,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
6186
6198
|
slug?: string;
|
|
6187
6199
|
/** ID of the entity associated with the event. */
|
|
6188
6200
|
entityId?: string;
|
|
6189
|
-
/** Event timestamp. */
|
|
6201
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
6190
6202
|
eventTime?: Date;
|
|
6191
6203
|
/**
|
|
6192
6204
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -6315,43 +6327,6 @@ declare enum IdentityType {
|
|
|
6315
6327
|
/** Matching contact is a member, Merge logic won't be applied */
|
|
6316
6328
|
NOT_AUTHENTICATED_MEMBER = "NOT_AUTHENTICATED_MEMBER"
|
|
6317
6329
|
}
|
|
6318
|
-
interface SubmissionContactMapped {
|
|
6319
|
-
/**
|
|
6320
|
-
* Mapped upserted contact ID.
|
|
6321
|
-
* @readonly
|
|
6322
|
-
*/
|
|
6323
|
-
contactId?: string;
|
|
6324
|
-
/** Identifies the namespace that the submission's form belongs to. */
|
|
6325
|
-
namespace?: string;
|
|
6326
|
-
/** Marketing subscription details */
|
|
6327
|
-
marketingSubscriptionDetails?: MarketingSubscriptionDetails;
|
|
6328
|
-
}
|
|
6329
|
-
interface MarketingSubscriptionDetails {
|
|
6330
|
-
/** Form id which was submitted */
|
|
6331
|
-
formId?: string;
|
|
6332
|
-
/** Mapped contact emails. */
|
|
6333
|
-
emails?: string[];
|
|
6334
|
-
/**
|
|
6335
|
-
* Date and time the form submission was created.
|
|
6336
|
-
* @readonly
|
|
6337
|
-
*/
|
|
6338
|
-
submittedDate?: Date;
|
|
6339
|
-
/**
|
|
6340
|
-
* Subscription consent opt in level, either single or double confirmation.
|
|
6341
|
-
* Default: SINGLE_CONFIRMATION
|
|
6342
|
-
*/
|
|
6343
|
-
optInLevel?: OptInLevel;
|
|
6344
|
-
}
|
|
6345
|
-
declare enum OptInLevel {
|
|
6346
|
-
SINGLE_CONFIRMATION = "SINGLE_CONFIRMATION",
|
|
6347
|
-
DOUBLE_CONFIRMATION = "DOUBLE_CONFIRMATION"
|
|
6348
|
-
}
|
|
6349
|
-
interface SubmissionContactMappingSkipped {
|
|
6350
|
-
/** Form Id. */
|
|
6351
|
-
formId?: string;
|
|
6352
|
-
/** Identifies the namespace that the submission's form belongs to. */
|
|
6353
|
-
namespace?: string;
|
|
6354
|
-
}
|
|
6355
6330
|
interface OrderDetailsNonNullableFields {
|
|
6356
6331
|
itemSubtotal: string;
|
|
6357
6332
|
checkoutId: string;
|
|
@@ -6459,79 +6434,6 @@ interface SubmitContactResponseNonNullableFields {
|
|
|
6459
6434
|
interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
6460
6435
|
submitContactResponse?: SubmitContactResponseNonNullableFields;
|
|
6461
6436
|
}
|
|
6462
|
-
interface BaseEventMetadata {
|
|
6463
|
-
/** App instance ID. */
|
|
6464
|
-
instanceId?: string | null;
|
|
6465
|
-
/** Event type. */
|
|
6466
|
-
eventType?: string;
|
|
6467
|
-
/** The identification type and identity data. */
|
|
6468
|
-
identity?: IdentificationData;
|
|
6469
|
-
}
|
|
6470
|
-
interface EventMetadata extends BaseEventMetadata {
|
|
6471
|
-
/**
|
|
6472
|
-
* Unique event ID.
|
|
6473
|
-
* Allows clients to ignore duplicate webhooks.
|
|
6474
|
-
*/
|
|
6475
|
-
_id?: string;
|
|
6476
|
-
/**
|
|
6477
|
-
* Assumes actions are also always typed to an entity_type
|
|
6478
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
6479
|
-
*/
|
|
6480
|
-
entityFqdn?: string;
|
|
6481
|
-
/**
|
|
6482
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
6483
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
6484
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
6485
|
-
*/
|
|
6486
|
-
slug?: string;
|
|
6487
|
-
/** ID of the entity associated with the event. */
|
|
6488
|
-
entityId?: string;
|
|
6489
|
-
/** Event timestamp. */
|
|
6490
|
-
eventTime?: Date;
|
|
6491
|
-
/**
|
|
6492
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
6493
|
-
* (for example, GDPR).
|
|
6494
|
-
*/
|
|
6495
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
6496
|
-
/** If present, indicates the action that triggered the event. */
|
|
6497
|
-
originatedFrom?: string | null;
|
|
6498
|
-
/**
|
|
6499
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
6500
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
6501
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
6502
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
6503
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
6504
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
6505
|
-
*/
|
|
6506
|
-
entityEventSequence?: string | null;
|
|
6507
|
-
}
|
|
6508
|
-
interface SubmissionCreatedEnvelope {
|
|
6509
|
-
entity: FormSubmission;
|
|
6510
|
-
metadata: EventMetadata;
|
|
6511
|
-
}
|
|
6512
|
-
interface SubmissionUpdatedEnvelope {
|
|
6513
|
-
entity: FormSubmission;
|
|
6514
|
-
metadata: EventMetadata;
|
|
6515
|
-
}
|
|
6516
|
-
interface SubmissionStatusUpdatedEnvelope {
|
|
6517
|
-
data: FormSubmissionStatusUpdatedEvent;
|
|
6518
|
-
metadata: EventMetadata;
|
|
6519
|
-
}
|
|
6520
|
-
interface SubmissionDeletedEnvelope {
|
|
6521
|
-
metadata: EventMetadata;
|
|
6522
|
-
}
|
|
6523
|
-
interface SubmissionRemovedSubmissionFromTrashEnvelope {
|
|
6524
|
-
data: RemovedSubmissionFromTrash;
|
|
6525
|
-
metadata: EventMetadata;
|
|
6526
|
-
}
|
|
6527
|
-
interface SubmissionContactMappedEnvelope {
|
|
6528
|
-
data: SubmissionContactMapped;
|
|
6529
|
-
metadata: EventMetadata;
|
|
6530
|
-
}
|
|
6531
|
-
interface SubmissionContactMappingSkippedEnvelope {
|
|
6532
|
-
data: SubmissionContactMappingSkipped;
|
|
6533
|
-
metadata: EventMetadata;
|
|
6534
|
-
}
|
|
6535
6437
|
interface CreateSubmissionOptions {
|
|
6536
6438
|
/** Captcha token. */
|
|
6537
6439
|
captchaToken?: string | null;
|
|
@@ -6731,8 +6633,6 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
6731
6633
|
|
|
6732
6634
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
6733
6635
|
|
|
6734
|
-
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
6735
|
-
|
|
6736
6636
|
declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
|
|
6737
6637
|
declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
|
|
6738
6638
|
declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
|
|
@@ -6754,17 +6654,9 @@ declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof
|
|
|
6754
6654
|
declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
|
|
6755
6655
|
declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
|
|
6756
6656
|
declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<typeof publicUpsertContactFromSubmission>>;
|
|
6757
|
-
declare const onSubmissionCreated: ReturnType<typeof createEventModule<typeof publicOnSubmissionCreated>>;
|
|
6758
|
-
declare const onSubmissionUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionUpdated>>;
|
|
6759
|
-
declare const onSubmissionStatusUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionStatusUpdated>>;
|
|
6760
|
-
declare const onSubmissionDeleted: ReturnType<typeof createEventModule<typeof publicOnSubmissionDeleted>>;
|
|
6761
|
-
declare const onSubmissionRemovedSubmissionFromTrash: ReturnType<typeof createEventModule<typeof publicOnSubmissionRemovedSubmissionFromTrash>>;
|
|
6762
|
-
declare const onSubmissionContactMapped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMapped>>;
|
|
6763
|
-
declare const onSubmissionContactMappingSkipped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMappingSkipped>>;
|
|
6764
6657
|
|
|
6765
6658
|
type index_d_ActionEvent = ActionEvent;
|
|
6766
6659
|
type index_d_ApplicationError = ApplicationError;
|
|
6767
|
-
type index_d_BaseEventMetadata = BaseEventMetadata;
|
|
6768
6660
|
type index_d_BulkActionMetadata = BulkActionMetadata;
|
|
6769
6661
|
type index_d_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitterData;
|
|
6770
6662
|
type index_d_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
|
|
@@ -6821,7 +6713,6 @@ type index_d_Empty = Empty;
|
|
|
6821
6713
|
type index_d_EntityCreatedEvent = EntityCreatedEvent;
|
|
6822
6714
|
type index_d_EntityDeletedEvent = EntityDeletedEvent;
|
|
6823
6715
|
type index_d_EntityUpdatedEvent = EntityUpdatedEvent;
|
|
6824
|
-
type index_d_EventMetadata = EventMetadata;
|
|
6825
6716
|
type index_d_ExtendedFields = ExtendedFields;
|
|
6826
6717
|
type index_d_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
|
|
6827
6718
|
type index_d_FormSubmission = FormSubmission;
|
|
@@ -6882,16 +6773,9 @@ type index_d_SortOrder = SortOrder;
|
|
|
6882
6773
|
declare const index_d_SortOrder: typeof SortOrder;
|
|
6883
6774
|
type index_d_Sorting = Sorting;
|
|
6884
6775
|
type index_d_SubmissionContactMapped = SubmissionContactMapped;
|
|
6885
|
-
type index_d_SubmissionContactMappedEnvelope = SubmissionContactMappedEnvelope;
|
|
6886
6776
|
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
6777
|
type index_d_SubmissionStatus = SubmissionStatus;
|
|
6892
6778
|
declare const index_d_SubmissionStatus: typeof SubmissionStatus;
|
|
6893
|
-
type index_d_SubmissionStatusUpdatedEnvelope = SubmissionStatusUpdatedEnvelope;
|
|
6894
|
-
type index_d_SubmissionUpdatedEnvelope = SubmissionUpdatedEnvelope;
|
|
6895
6779
|
type index_d_SubmissionsQueryBuilder = SubmissionsQueryBuilder;
|
|
6896
6780
|
type index_d_SubmissionsQueryResult = SubmissionsQueryResult;
|
|
6897
6781
|
type index_d_SubmitContactResponse = SubmitContactResponse;
|
|
@@ -6921,13 +6805,6 @@ declare const index_d_getDeletedSubmission: typeof getDeletedSubmission;
|
|
|
6921
6805
|
declare const index_d_getMediaUploadUrl: typeof getMediaUploadUrl;
|
|
6922
6806
|
declare const index_d_getSubmission: typeof getSubmission;
|
|
6923
6807
|
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
6808
|
declare const index_d_querySubmission: typeof querySubmission;
|
|
6932
6809
|
declare const index_d_querySubmissionsByNamespace: typeof querySubmissionsByNamespace;
|
|
6933
6810
|
declare const index_d_removeSubmissionFromTrashBin: typeof removeSubmissionFromTrashBin;
|
|
@@ -6936,7 +6813,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
6936
6813
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
6937
6814
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
6938
6815
|
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 };
|
|
6816
|
+
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
6817
|
}
|
|
6941
6818
|
|
|
6942
6819
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|