@wix/forms 1.0.106 → 1.0.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/type-bundles/context.bundle.d.ts +932 -94
- package/type-bundles/index.bundle.d.ts +1004 -160
- package/type-bundles/meta.bundle.d.ts +1775 -47
|
@@ -951,7 +951,10 @@ interface FileData {
|
|
|
951
951
|
name?: string | null;
|
|
952
952
|
/** File type. */
|
|
953
953
|
type?: string | null;
|
|
954
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Use `sizeInKb` instead.
|
|
956
|
+
* @deprecated
|
|
957
|
+
*/
|
|
955
958
|
size?: number | null;
|
|
956
959
|
/** Settings for PDF files. */
|
|
957
960
|
pdfSettings?: PDFSettings;
|
|
@@ -959,6 +962,8 @@ interface FileData {
|
|
|
959
962
|
mimeType?: string | null;
|
|
960
963
|
/** File path. */
|
|
961
964
|
path?: string | null;
|
|
965
|
+
/** File size in KB. */
|
|
966
|
+
sizeInKb?: string | null;
|
|
962
967
|
}
|
|
963
968
|
declare enum ViewMode {
|
|
964
969
|
/** No PDF view */
|
|
@@ -2221,7 +2226,9 @@ declare enum UploadFileFormat {
|
|
|
2221
2226
|
/** Audio files */
|
|
2222
2227
|
AUDIO = "AUDIO",
|
|
2223
2228
|
/** Document files */
|
|
2224
|
-
DOCUMENT = "DOCUMENT"
|
|
2229
|
+
DOCUMENT = "DOCUMENT",
|
|
2230
|
+
/** Archive files */
|
|
2231
|
+
ARCHIVE = "ARCHIVE"
|
|
2225
2232
|
}
|
|
2226
2233
|
interface Signature {
|
|
2227
2234
|
/** Selectable option label */
|
|
@@ -2855,6 +2862,30 @@ interface RequiredIndicatorProperties {
|
|
|
2855
2862
|
/** Required indicator placement. */
|
|
2856
2863
|
requiredIndicatorPlacement?: RequiredIndicatorPlacement;
|
|
2857
2864
|
}
|
|
2865
|
+
interface PiiFieldsUpdated {
|
|
2866
|
+
/** Collection of fields which are marked as PII */
|
|
2867
|
+
piiFields?: string[];
|
|
2868
|
+
/** Collection of fields which are non PII */
|
|
2869
|
+
nonPiiFields?: string[];
|
|
2870
|
+
}
|
|
2871
|
+
interface FormChanged {
|
|
2872
|
+
/** Form namespace */
|
|
2873
|
+
namespace?: string;
|
|
2874
|
+
/** Form after update */
|
|
2875
|
+
form?: Form;
|
|
2876
|
+
/** Form before update */
|
|
2877
|
+
formBeforeUpdate?: Form;
|
|
2878
|
+
}
|
|
2879
|
+
interface FormDeleted {
|
|
2880
|
+
/** Form namespace */
|
|
2881
|
+
namespace?: string;
|
|
2882
|
+
/** Form state on delete moment */
|
|
2883
|
+
form?: Form;
|
|
2884
|
+
}
|
|
2885
|
+
interface SubmissionKeysPermanentlyDeleted {
|
|
2886
|
+
/** Keys which should be deleted */
|
|
2887
|
+
keys?: string[] | null;
|
|
2888
|
+
}
|
|
2858
2889
|
interface CreateFormRequest {
|
|
2859
2890
|
/** Form to be created. */
|
|
2860
2891
|
form: Form;
|
|
@@ -2942,20 +2973,6 @@ interface UpdateFormResponse {
|
|
|
2942
2973
|
/** The updated form. */
|
|
2943
2974
|
form?: Form;
|
|
2944
2975
|
}
|
|
2945
|
-
interface PiiFieldsUpdated {
|
|
2946
|
-
/** Collection of fields which are marked as PII */
|
|
2947
|
-
piiFields?: string[];
|
|
2948
|
-
/** Collection of fields which are non PII */
|
|
2949
|
-
nonPiiFields?: string[];
|
|
2950
|
-
}
|
|
2951
|
-
interface FormChanged {
|
|
2952
|
-
/** Form namespace */
|
|
2953
|
-
namespace?: string;
|
|
2954
|
-
/** Form after update */
|
|
2955
|
-
form?: Form;
|
|
2956
|
-
/** Form before update */
|
|
2957
|
-
formBeforeUpdate?: Form;
|
|
2958
|
-
}
|
|
2959
2976
|
interface RemoveFormFromTrashBinRequest {
|
|
2960
2977
|
/** Id of the form to delete. */
|
|
2961
2978
|
formId: string;
|
|
@@ -2975,12 +2992,6 @@ interface DeleteFormRequest {
|
|
|
2975
2992
|
}
|
|
2976
2993
|
interface DeleteFormResponse {
|
|
2977
2994
|
}
|
|
2978
|
-
interface FormDeleted {
|
|
2979
|
-
/** Form namespace */
|
|
2980
|
-
namespace?: string;
|
|
2981
|
-
/** Form state on delete moment */
|
|
2982
|
-
form?: Form;
|
|
2983
|
-
}
|
|
2984
2995
|
interface RestoreFromTrashBinRequest {
|
|
2985
2996
|
/** Id of the form to restore. */
|
|
2986
2997
|
formId: string;
|
|
@@ -3199,10 +3210,6 @@ interface BulkRemoveDeletedFieldResponse {
|
|
|
3199
3210
|
/** Form with the deleted fields. */
|
|
3200
3211
|
form?: Form;
|
|
3201
3212
|
}
|
|
3202
|
-
interface SubmissionKeysPermanentlyDeleted {
|
|
3203
|
-
/** Keys which should be deleted */
|
|
3204
|
-
keys?: string[] | null;
|
|
3205
|
-
}
|
|
3206
3213
|
interface UpdateExtendedFieldsRequest {
|
|
3207
3214
|
/** ID of the entity to update. */
|
|
3208
3215
|
_id: string;
|
|
@@ -3240,7 +3247,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
3240
3247
|
slug?: string;
|
|
3241
3248
|
/** ID of the entity associated with the event. */
|
|
3242
3249
|
entityId?: string;
|
|
3243
|
-
/** Event timestamp. */
|
|
3250
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3244
3251
|
eventTime?: Date;
|
|
3245
3252
|
/**
|
|
3246
3253
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -3329,63 +3336,662 @@ declare enum WebhookIdentityType$2 {
|
|
|
3329
3336
|
WIX_USER = "WIX_USER",
|
|
3330
3337
|
APP = "APP"
|
|
3331
3338
|
}
|
|
3332
|
-
interface
|
|
3333
|
-
|
|
3334
|
-
instanceId?: string | null;
|
|
3335
|
-
/** Event type. */
|
|
3336
|
-
eventType?: string;
|
|
3337
|
-
/** The identification type and identity data. */
|
|
3338
|
-
identity?: IdentificationData$2;
|
|
3339
|
+
interface StringTypeNonNullableFields {
|
|
3340
|
+
format: Format;
|
|
3339
3341
|
}
|
|
3340
|
-
interface
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3342
|
+
interface BooleanTypeNonNullableFields {
|
|
3343
|
+
enum: boolean[];
|
|
3344
|
+
}
|
|
3345
|
+
interface ArrayItemsNonNullableFields {
|
|
3346
|
+
string?: StringTypeNonNullableFields;
|
|
3347
|
+
boolean?: BooleanTypeNonNullableFields;
|
|
3348
|
+
}
|
|
3349
|
+
interface ArrayTypeNonNullableFields {
|
|
3350
|
+
items?: ArrayItemsNonNullableFields;
|
|
3351
|
+
}
|
|
3352
|
+
interface FixedPriceOptionsNonNullableFields {
|
|
3353
|
+
price: string;
|
|
3354
|
+
}
|
|
3355
|
+
interface DynamicPriceOptionsNonNullableFields {
|
|
3356
|
+
minPrice: string;
|
|
3357
|
+
}
|
|
3358
|
+
interface ProductNonNullableFields {
|
|
3359
|
+
fixedPriceOptions?: FixedPriceOptionsNonNullableFields;
|
|
3360
|
+
dynamicPriceOptions?: DynamicPriceOptionsNonNullableFields;
|
|
3361
|
+
_id: string;
|
|
3362
|
+
productType: ProductType;
|
|
3363
|
+
priceType: PriceType;
|
|
3364
|
+
}
|
|
3365
|
+
interface PaymentTypeNonNullableFields {
|
|
3366
|
+
products: ProductNonNullableFields[];
|
|
3367
|
+
}
|
|
3368
|
+
interface FieldOverridesNonNullableFields {
|
|
3369
|
+
required: boolean;
|
|
3370
|
+
}
|
|
3371
|
+
interface FieldsOverridesNonNullableFields {
|
|
3372
|
+
subdivision?: FieldOverridesNonNullableFields;
|
|
3373
|
+
city?: FieldOverridesNonNullableFields;
|
|
3374
|
+
postalCode?: FieldOverridesNonNullableFields;
|
|
3375
|
+
streetName?: FieldOverridesNonNullableFields;
|
|
3376
|
+
streetNumber?: FieldOverridesNonNullableFields;
|
|
3377
|
+
addressLine?: FieldOverridesNonNullableFields;
|
|
3378
|
+
addressLine2?: FieldOverridesNonNullableFields;
|
|
3379
|
+
country?: FieldOverridesNonNullableFields;
|
|
3380
|
+
}
|
|
3381
|
+
interface MultilineAddressValidationNonNullableFields {
|
|
3382
|
+
allowedCountries: string[];
|
|
3383
|
+
fields?: FieldsOverridesNonNullableFields;
|
|
3384
|
+
}
|
|
3385
|
+
interface PredefinedValidationNonNullableFields {
|
|
3386
|
+
paymentOptions?: PaymentTypeNonNullableFields;
|
|
3387
|
+
multilineAddressOptions?: MultilineAddressValidationNonNullableFields;
|
|
3388
|
+
format: ValidationFormat;
|
|
3389
|
+
}
|
|
3390
|
+
interface ValidationNonNullableFields {
|
|
3391
|
+
string?: StringTypeNonNullableFields;
|
|
3392
|
+
boolean?: BooleanTypeNonNullableFields;
|
|
3393
|
+
array?: ArrayTypeNonNullableFields;
|
|
3394
|
+
predefined?: PredefinedValidationNonNullableFields;
|
|
3395
|
+
required: boolean;
|
|
3396
|
+
}
|
|
3397
|
+
interface DataExtensionsDetailsNonNullableFields {
|
|
3398
|
+
fqdns: string[];
|
|
3399
|
+
}
|
|
3400
|
+
interface FormFieldNonNullableFields {
|
|
3401
|
+
_id: string;
|
|
3402
|
+
validation?: ValidationNonNullableFields;
|
|
3403
|
+
pii: boolean;
|
|
3404
|
+
hidden: boolean;
|
|
3405
|
+
dataExtensionsDetails?: DataExtensionsDetailsNonNullableFields;
|
|
3406
|
+
}
|
|
3407
|
+
interface PluginContainerDataWidthNonNullableFields {
|
|
3408
|
+
size: WidthType;
|
|
3409
|
+
}
|
|
3410
|
+
interface PluginContainerDataNonNullableFields {
|
|
3411
|
+
width?: PluginContainerDataWidthNonNullableFields;
|
|
3412
|
+
alignment: PluginContainerDataAlignment;
|
|
3413
|
+
}
|
|
3414
|
+
interface LinkNonNullableFields {
|
|
3415
|
+
url: string;
|
|
3416
|
+
anchor: string;
|
|
3417
|
+
target: LinkTarget;
|
|
3418
|
+
}
|
|
3419
|
+
interface ButtonDataNonNullableFields {
|
|
3420
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3421
|
+
type: ButtonDataType;
|
|
3422
|
+
link?: LinkNonNullableFields;
|
|
3423
|
+
}
|
|
3424
|
+
interface TextStyleNonNullableFields {
|
|
3425
|
+
textAlignment: TextAlignment;
|
|
3426
|
+
}
|
|
3427
|
+
interface CodeBlockDataNonNullableFields {
|
|
3428
|
+
textStyle?: TextStyleNonNullableFields;
|
|
3429
|
+
}
|
|
3430
|
+
interface DividerDataNonNullableFields {
|
|
3431
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3432
|
+
lineStyle: LineStyle;
|
|
3433
|
+
width: Width;
|
|
3434
|
+
alignment: Alignment;
|
|
3435
|
+
}
|
|
3436
|
+
interface PDFSettingsNonNullableFields {
|
|
3437
|
+
viewMode: ViewMode;
|
|
3438
|
+
}
|
|
3439
|
+
interface FileDataNonNullableFields {
|
|
3440
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3441
|
+
pdfSettings?: PDFSettingsNonNullableFields;
|
|
3442
|
+
}
|
|
3443
|
+
interface ImageNonNullableFields {
|
|
3444
|
+
link?: LinkNonNullableFields;
|
|
3445
|
+
}
|
|
3446
|
+
interface ItemNonNullableFields {
|
|
3447
|
+
image?: ImageNonNullableFields;
|
|
3448
|
+
}
|
|
3449
|
+
interface LayoutNonNullableFields {
|
|
3450
|
+
type: LayoutType;
|
|
3451
|
+
orientation: Orientation;
|
|
3452
|
+
}
|
|
3453
|
+
interface ItemStyleNonNullableFields {
|
|
3454
|
+
crop: Crop;
|
|
3455
|
+
}
|
|
3456
|
+
interface ThumbnailsNonNullableFields {
|
|
3457
|
+
placement: ThumbnailsAlignment;
|
|
3458
|
+
}
|
|
3459
|
+
interface GalleryOptionsNonNullableFields {
|
|
3460
|
+
layout?: LayoutNonNullableFields;
|
|
3461
|
+
item?: ItemStyleNonNullableFields;
|
|
3462
|
+
thumbnails?: ThumbnailsNonNullableFields;
|
|
3463
|
+
}
|
|
3464
|
+
interface GalleryDataNonNullableFields {
|
|
3465
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3466
|
+
items: ItemNonNullableFields[];
|
|
3467
|
+
options?: GalleryOptionsNonNullableFields;
|
|
3468
|
+
}
|
|
3469
|
+
interface GIFDataNonNullableFields {
|
|
3470
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3471
|
+
height: number;
|
|
3472
|
+
width: number;
|
|
3473
|
+
}
|
|
3474
|
+
interface HeadingDataNonNullableFields {
|
|
3475
|
+
level: number;
|
|
3476
|
+
textStyle?: TextStyleNonNullableFields;
|
|
3477
|
+
}
|
|
3478
|
+
interface HTMLDataNonNullableFields {
|
|
3479
|
+
url: string;
|
|
3480
|
+
html: string;
|
|
3481
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3482
|
+
source: Source;
|
|
3483
|
+
}
|
|
3484
|
+
interface ImageDataNonNullableFields {
|
|
3485
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3486
|
+
link?: LinkNonNullableFields;
|
|
3487
|
+
}
|
|
3488
|
+
interface LinkPreviewDataNonNullableFields {
|
|
3489
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3490
|
+
link?: LinkNonNullableFields;
|
|
3491
|
+
}
|
|
3492
|
+
interface MapSettingsNonNullableFields {
|
|
3493
|
+
mapType: MapType;
|
|
3494
|
+
}
|
|
3495
|
+
interface MapDataNonNullableFields {
|
|
3496
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3497
|
+
mapSettings?: MapSettingsNonNullableFields;
|
|
3498
|
+
}
|
|
3499
|
+
interface ParagraphDataNonNullableFields {
|
|
3500
|
+
textStyle?: TextStyleNonNullableFields;
|
|
3501
|
+
}
|
|
3502
|
+
interface PermissionsNonNullableFields {
|
|
3503
|
+
view: ViewRole;
|
|
3504
|
+
vote: VoteRole;
|
|
3505
|
+
}
|
|
3506
|
+
interface SettingsNonNullableFields {
|
|
3507
|
+
permissions?: PermissionsNonNullableFields;
|
|
3508
|
+
}
|
|
3509
|
+
interface PollNonNullableFields {
|
|
3510
|
+
settings?: SettingsNonNullableFields;
|
|
3511
|
+
}
|
|
3512
|
+
interface PollLayoutNonNullableFields {
|
|
3513
|
+
type: PollLayoutType;
|
|
3514
|
+
direction: PollLayoutDirection;
|
|
3515
|
+
}
|
|
3516
|
+
interface PollDataLayoutNonNullableFields {
|
|
3517
|
+
poll?: PollLayoutNonNullableFields;
|
|
3518
|
+
}
|
|
3519
|
+
interface BackgroundNonNullableFields {
|
|
3520
|
+
type: BackgroundType;
|
|
3521
|
+
}
|
|
3522
|
+
interface PollDesignNonNullableFields {
|
|
3523
|
+
background?: BackgroundNonNullableFields;
|
|
3524
|
+
}
|
|
3525
|
+
interface DesignNonNullableFields {
|
|
3526
|
+
poll?: PollDesignNonNullableFields;
|
|
3527
|
+
}
|
|
3528
|
+
interface PollDataNonNullableFields {
|
|
3529
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3530
|
+
poll?: PollNonNullableFields;
|
|
3531
|
+
layout?: PollDataLayoutNonNullableFields;
|
|
3532
|
+
design?: DesignNonNullableFields;
|
|
3533
|
+
}
|
|
3534
|
+
interface AnchorDataNonNullableFields {
|
|
3535
|
+
anchor: string;
|
|
3536
|
+
}
|
|
3537
|
+
interface LinkDataNonNullableFields {
|
|
3538
|
+
link?: LinkNonNullableFields;
|
|
3539
|
+
}
|
|
3540
|
+
interface MentionDataNonNullableFields {
|
|
3541
|
+
name: string;
|
|
3542
|
+
slug: string;
|
|
3543
|
+
}
|
|
3544
|
+
interface FontSizeDataNonNullableFields {
|
|
3545
|
+
unit: FontType;
|
|
3546
|
+
}
|
|
3547
|
+
interface DecorationNonNullableFields {
|
|
3548
|
+
anchorData?: AnchorDataNonNullableFields;
|
|
3549
|
+
linkData?: LinkDataNonNullableFields;
|
|
3550
|
+
mentionData?: MentionDataNonNullableFields;
|
|
3551
|
+
fontSizeData?: FontSizeDataNonNullableFields;
|
|
3552
|
+
type: DecorationType;
|
|
3553
|
+
}
|
|
3554
|
+
interface TextDataNonNullableFields {
|
|
3555
|
+
text: string;
|
|
3556
|
+
decorations: DecorationNonNullableFields[];
|
|
3557
|
+
}
|
|
3558
|
+
interface AppEmbedDataNonNullableFields {
|
|
3559
|
+
type: AppType;
|
|
3560
|
+
}
|
|
3561
|
+
interface VideoDataNonNullableFields {
|
|
3562
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3563
|
+
}
|
|
3564
|
+
interface EmbedDataNonNullableFields {
|
|
3565
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3566
|
+
}
|
|
3567
|
+
interface CollapsibleListDataNonNullableFields {
|
|
3568
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3569
|
+
initialExpandedItems: InitialExpandedItems;
|
|
3570
|
+
direction: Direction;
|
|
3571
|
+
}
|
|
3572
|
+
interface DimensionsNonNullableFields {
|
|
3573
|
+
colsWidthRatio: number[];
|
|
3574
|
+
rowsHeight: number[];
|
|
3575
|
+
colsMinWidth: number[];
|
|
3576
|
+
}
|
|
3577
|
+
interface TableDataNonNullableFields {
|
|
3578
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3579
|
+
dimensions?: DimensionsNonNullableFields;
|
|
3580
|
+
}
|
|
3581
|
+
interface CellStyleNonNullableFields {
|
|
3582
|
+
verticalAlignment: VerticalAlignment;
|
|
3583
|
+
}
|
|
3584
|
+
interface TableCellDataNonNullableFields {
|
|
3585
|
+
cellStyle?: CellStyleNonNullableFields;
|
|
3586
|
+
}
|
|
3587
|
+
interface AudioDataNonNullableFields {
|
|
3588
|
+
containerData?: PluginContainerDataNonNullableFields;
|
|
3589
|
+
}
|
|
3590
|
+
interface OrderedListDataNonNullableFields {
|
|
3591
|
+
indentation: number;
|
|
3592
|
+
}
|
|
3593
|
+
interface BulletedListDataNonNullableFields {
|
|
3594
|
+
indentation: number;
|
|
3595
|
+
}
|
|
3596
|
+
interface BlockquoteDataNonNullableFields {
|
|
3597
|
+
indentation: number;
|
|
3598
|
+
}
|
|
3599
|
+
interface NodeNonNullableFields {
|
|
3600
|
+
buttonData?: ButtonDataNonNullableFields;
|
|
3601
|
+
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
3602
|
+
dividerData?: DividerDataNonNullableFields;
|
|
3603
|
+
fileData?: FileDataNonNullableFields;
|
|
3604
|
+
galleryData?: GalleryDataNonNullableFields;
|
|
3605
|
+
gifData?: GIFDataNonNullableFields;
|
|
3606
|
+
headingData?: HeadingDataNonNullableFields;
|
|
3607
|
+
htmlData?: HTMLDataNonNullableFields;
|
|
3608
|
+
imageData?: ImageDataNonNullableFields;
|
|
3609
|
+
linkPreviewData?: LinkPreviewDataNonNullableFields;
|
|
3610
|
+
mapData?: MapDataNonNullableFields;
|
|
3611
|
+
paragraphData?: ParagraphDataNonNullableFields;
|
|
3612
|
+
pollData?: PollDataNonNullableFields;
|
|
3613
|
+
textData?: TextDataNonNullableFields;
|
|
3614
|
+
appEmbedData?: AppEmbedDataNonNullableFields;
|
|
3615
|
+
videoData?: VideoDataNonNullableFields;
|
|
3616
|
+
embedData?: EmbedDataNonNullableFields;
|
|
3617
|
+
collapsibleListData?: CollapsibleListDataNonNullableFields;
|
|
3618
|
+
tableData?: TableDataNonNullableFields;
|
|
3619
|
+
tableCellData?: TableCellDataNonNullableFields;
|
|
3620
|
+
audioData?: AudioDataNonNullableFields;
|
|
3621
|
+
orderedListData?: OrderedListDataNonNullableFields;
|
|
3622
|
+
bulletedListData?: BulletedListDataNonNullableFields;
|
|
3623
|
+
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
3624
|
+
type: NodeType;
|
|
3625
|
+
_id: string;
|
|
3626
|
+
nodes: NodeNonNullableFields[];
|
|
3627
|
+
}
|
|
3628
|
+
interface MetadataNonNullableFields {
|
|
3629
|
+
version: number;
|
|
3630
|
+
}
|
|
3631
|
+
interface TextNodeStyleNonNullableFields {
|
|
3632
|
+
decorations: DecorationNonNullableFields[];
|
|
3633
|
+
}
|
|
3634
|
+
interface DocumentStyleNonNullableFields {
|
|
3635
|
+
headerOne?: TextNodeStyleNonNullableFields;
|
|
3636
|
+
headerTwo?: TextNodeStyleNonNullableFields;
|
|
3637
|
+
headerThree?: TextNodeStyleNonNullableFields;
|
|
3638
|
+
headerFour?: TextNodeStyleNonNullableFields;
|
|
3639
|
+
headerFive?: TextNodeStyleNonNullableFields;
|
|
3640
|
+
headerSix?: TextNodeStyleNonNullableFields;
|
|
3641
|
+
paragraph?: TextNodeStyleNonNullableFields;
|
|
3642
|
+
blockquote?: TextNodeStyleNonNullableFields;
|
|
3643
|
+
codeBlock?: TextNodeStyleNonNullableFields;
|
|
3644
|
+
}
|
|
3645
|
+
interface RichContentNonNullableFields {
|
|
3646
|
+
nodes: NodeNonNullableFields[];
|
|
3647
|
+
metadata?: MetadataNonNullableFields;
|
|
3648
|
+
documentStyle?: DocumentStyleNonNullableFields;
|
|
3649
|
+
}
|
|
3650
|
+
interface TextInputNonNullableFields {
|
|
3651
|
+
description?: RichContentNonNullableFields;
|
|
3652
|
+
}
|
|
3653
|
+
interface RadioGroupOptionNonNullableFields {
|
|
3654
|
+
default: boolean;
|
|
3655
|
+
_id: string;
|
|
3656
|
+
}
|
|
3657
|
+
interface RadioGroupNonNullableFields {
|
|
3658
|
+
description?: RichContentNonNullableFields;
|
|
3659
|
+
options: RadioGroupOptionNonNullableFields[];
|
|
3377
3660
|
}
|
|
3378
|
-
interface
|
|
3379
|
-
|
|
3380
|
-
|
|
3661
|
+
interface DropdownOptionNonNullableFields {
|
|
3662
|
+
default: boolean;
|
|
3663
|
+
_id: string;
|
|
3664
|
+
}
|
|
3665
|
+
interface DropdownNonNullableFields {
|
|
3666
|
+
description?: RichContentNonNullableFields;
|
|
3667
|
+
options: DropdownOptionNonNullableFields[];
|
|
3668
|
+
}
|
|
3669
|
+
interface DateTimeOptionsNonNullableFields {
|
|
3670
|
+
dateFormatParts: DateFormatPart[];
|
|
3671
|
+
use24HourFormat: boolean;
|
|
3672
|
+
}
|
|
3673
|
+
interface DateOptionsNonNullableFields {
|
|
3674
|
+
dateFormatParts: DateFormatPart[];
|
|
3675
|
+
}
|
|
3676
|
+
interface TimeOptionsNonNullableFields {
|
|
3677
|
+
use24HourFormat: boolean;
|
|
3678
|
+
}
|
|
3679
|
+
interface DatePickerOptionsNonNullableFields {
|
|
3680
|
+
firstDayOfWeek: FirstDayOfWeek;
|
|
3681
|
+
}
|
|
3682
|
+
interface DateTimeInputNonNullableFields {
|
|
3683
|
+
dateTimeOptions?: DateTimeOptionsNonNullableFields;
|
|
3684
|
+
dateOptions?: DateOptionsNonNullableFields;
|
|
3685
|
+
timeOptions?: TimeOptionsNonNullableFields;
|
|
3686
|
+
datePickerOptions?: DatePickerOptionsNonNullableFields;
|
|
3687
|
+
description?: RichContentNonNullableFields;
|
|
3688
|
+
dateTimeInputType: DateTimeInputType;
|
|
3689
|
+
}
|
|
3690
|
+
interface PhoneInputNonNullableFields {
|
|
3691
|
+
description?: RichContentNonNullableFields;
|
|
3692
|
+
}
|
|
3693
|
+
interface InputFieldStringTypeNonNullableFields {
|
|
3694
|
+
format: FormatEnumFormat;
|
|
3695
|
+
}
|
|
3696
|
+
interface _StringNonNullableFields {
|
|
3697
|
+
textInputOptions?: TextInputNonNullableFields;
|
|
3698
|
+
radioGroupOptions?: RadioGroupNonNullableFields;
|
|
3699
|
+
dropdownOptions?: DropdownNonNullableFields;
|
|
3700
|
+
dateTimeOptions?: DateTimeInputNonNullableFields;
|
|
3701
|
+
phoneInputOptions?: PhoneInputNonNullableFields;
|
|
3702
|
+
validation?: InputFieldStringTypeNonNullableFields;
|
|
3703
|
+
componentType: StringComponentType;
|
|
3704
|
+
}
|
|
3705
|
+
interface NumberInputNonNullableFields {
|
|
3706
|
+
description?: RichContentNonNullableFields;
|
|
3707
|
+
}
|
|
3708
|
+
interface RatingInputNonNullableFields {
|
|
3709
|
+
description?: RichContentNonNullableFields;
|
|
3710
|
+
}
|
|
3711
|
+
interface _NumberNonNullableFields {
|
|
3712
|
+
numberInputOptions?: NumberInputNonNullableFields;
|
|
3713
|
+
ratingInputOptions?: RatingInputNonNullableFields;
|
|
3714
|
+
componentType: NumberComponentType;
|
|
3715
|
+
}
|
|
3716
|
+
interface CheckboxNonNullableFields {
|
|
3717
|
+
label?: RichContentNonNullableFields;
|
|
3718
|
+
}
|
|
3719
|
+
interface InputFieldBooleanTypeNonNullableFields {
|
|
3720
|
+
enum: boolean[];
|
|
3721
|
+
}
|
|
3722
|
+
interface _BooleanNonNullableFields {
|
|
3723
|
+
checkboxOptions?: CheckboxNonNullableFields;
|
|
3724
|
+
validation?: InputFieldBooleanTypeNonNullableFields;
|
|
3725
|
+
componentType: BooleanComponentType;
|
|
3726
|
+
}
|
|
3727
|
+
interface MediaItemNonNullableFields {
|
|
3728
|
+
image: string;
|
|
3729
|
+
}
|
|
3730
|
+
interface OptionNonNullableFields {
|
|
3731
|
+
default: boolean;
|
|
3732
|
+
_id: string;
|
|
3733
|
+
media?: MediaItemNonNullableFields;
|
|
3734
|
+
}
|
|
3735
|
+
interface CheckboxGroupNonNullableFields {
|
|
3736
|
+
description?: RichContentNonNullableFields;
|
|
3737
|
+
options: OptionNonNullableFields[];
|
|
3738
|
+
}
|
|
3739
|
+
interface ArrayTypeArrayItemsNonNullableFields {
|
|
3740
|
+
stringOptions?: InputFieldStringTypeNonNullableFields;
|
|
3741
|
+
booleanOptions?: InputFieldBooleanTypeNonNullableFields;
|
|
3742
|
+
itemType: ItemType;
|
|
3743
|
+
}
|
|
3744
|
+
interface InputFieldArrayTypeNonNullableFields {
|
|
3745
|
+
items?: ArrayTypeArrayItemsNonNullableFields;
|
|
3746
|
+
}
|
|
3747
|
+
interface _ArrayNonNullableFields {
|
|
3748
|
+
checkboxGroupOptions?: CheckboxGroupNonNullableFields;
|
|
3749
|
+
validation?: InputFieldArrayTypeNonNullableFields;
|
|
3750
|
+
componentType: ComponentType;
|
|
3751
|
+
}
|
|
3752
|
+
interface FileUploadNonNullableFields {
|
|
3753
|
+
description?: RichContentNonNullableFields;
|
|
3754
|
+
fileLimit: number;
|
|
3755
|
+
uploadFileFormats: UploadFileFormat[];
|
|
3756
|
+
}
|
|
3757
|
+
interface SignatureNonNullableFields {
|
|
3758
|
+
description?: RichContentNonNullableFields;
|
|
3759
|
+
imageUploadEnabled: boolean;
|
|
3760
|
+
}
|
|
3761
|
+
interface WixFileNonNullableFields {
|
|
3762
|
+
fileUploadOptions?: FileUploadNonNullableFields;
|
|
3763
|
+
signatureOptions?: SignatureNonNullableFields;
|
|
3764
|
+
componentType: WixFileComponentType;
|
|
3765
|
+
}
|
|
3766
|
+
interface ProductCheckboxGroupOptionNonNullableFields {
|
|
3767
|
+
_id: string;
|
|
3768
|
+
media?: MediaItemNonNullableFields;
|
|
3769
|
+
}
|
|
3770
|
+
interface ProductCheckboxGroupNonNullableFields {
|
|
3771
|
+
description?: RichContentNonNullableFields;
|
|
3772
|
+
options: ProductCheckboxGroupOptionNonNullableFields[];
|
|
3773
|
+
}
|
|
3774
|
+
interface DonationInputOptionNonNullableFields {
|
|
3775
|
+
value: string;
|
|
3776
|
+
default: boolean;
|
|
3777
|
+
}
|
|
3778
|
+
interface DonationInputNonNullableFields {
|
|
3779
|
+
description?: RichContentNonNullableFields;
|
|
3780
|
+
options: DonationInputOptionNonNullableFields[];
|
|
3781
|
+
numberOfColumns: NumberOfColumns;
|
|
3782
|
+
}
|
|
3783
|
+
interface PaymentNonNullableFields {
|
|
3784
|
+
checkboxGroupOptions?: ProductCheckboxGroupNonNullableFields;
|
|
3785
|
+
donationInputOptions?: DonationInputNonNullableFields;
|
|
3786
|
+
componentType: PaymentComponentType;
|
|
3787
|
+
validation?: PaymentTypeNonNullableFields;
|
|
3788
|
+
}
|
|
3789
|
+
interface DefaultCountryConfigNonNullableFields {
|
|
3790
|
+
countryOptions: string;
|
|
3791
|
+
type: Type;
|
|
3381
3792
|
}
|
|
3382
|
-
interface
|
|
3383
|
-
|
|
3384
|
-
|
|
3793
|
+
interface AddressLine2NonNullableFields {
|
|
3794
|
+
show: boolean;
|
|
3795
|
+
}
|
|
3796
|
+
interface FieldsSettingsNonNullableFields {
|
|
3797
|
+
addressLine2?: AddressLine2NonNullableFields;
|
|
3798
|
+
}
|
|
3799
|
+
interface MultilineAddressNonNullableFields {
|
|
3800
|
+
description?: RichContentNonNullableFields;
|
|
3801
|
+
showCountryFlags: boolean;
|
|
3802
|
+
defaultCountryConfig?: DefaultCountryConfigNonNullableFields;
|
|
3803
|
+
fieldSettings?: FieldsSettingsNonNullableFields;
|
|
3804
|
+
autocompleteEnabled: boolean;
|
|
3805
|
+
}
|
|
3806
|
+
interface InputFieldMultilineAddressNonNullableFields {
|
|
3807
|
+
multilineAddressOptions?: MultilineAddressNonNullableFields;
|
|
3808
|
+
componentType: MultilineAddressComponentType;
|
|
3809
|
+
validation?: MultilineAddressValidationNonNullableFields;
|
|
3810
|
+
}
|
|
3811
|
+
interface InputFieldNonNullableFields {
|
|
3812
|
+
stringOptions?: _StringNonNullableFields;
|
|
3813
|
+
numberOptions?: _NumberNonNullableFields;
|
|
3814
|
+
booleanOptions?: _BooleanNonNullableFields;
|
|
3815
|
+
arrayOptions?: _ArrayNonNullableFields;
|
|
3816
|
+
wixFileOptions?: WixFileNonNullableFields;
|
|
3817
|
+
paymentOptions?: PaymentNonNullableFields;
|
|
3818
|
+
multilineAddressOptions?: InputFieldMultilineAddressNonNullableFields;
|
|
3819
|
+
pii: boolean;
|
|
3820
|
+
required: boolean;
|
|
3821
|
+
inputType: InputType;
|
|
3822
|
+
}
|
|
3823
|
+
interface HeaderNonNullableFields {
|
|
3824
|
+
content?: RichContentNonNullableFields;
|
|
3825
|
+
}
|
|
3826
|
+
interface RichTextNonNullableFields {
|
|
3827
|
+
content?: RichContentNonNullableFields;
|
|
3828
|
+
}
|
|
3829
|
+
interface DisplayFieldNonNullableFields {
|
|
3830
|
+
header?: HeaderNonNullableFields;
|
|
3831
|
+
richText?: RichTextNonNullableFields;
|
|
3832
|
+
}
|
|
3833
|
+
interface ThankYouMessageNonNullableFields {
|
|
3834
|
+
text?: RichContentNonNullableFields;
|
|
3835
|
+
}
|
|
3836
|
+
interface RedirectNonNullableFields {
|
|
3837
|
+
target: Target;
|
|
3838
|
+
}
|
|
3839
|
+
interface SubmitButtonNonNullableFields {
|
|
3840
|
+
thankYouMessage?: ThankYouMessageNonNullableFields;
|
|
3841
|
+
redirect?: RedirectNonNullableFields;
|
|
3842
|
+
}
|
|
3843
|
+
interface EmailInfoNonNullableFields {
|
|
3844
|
+
tag: EmailInfoTag;
|
|
3845
|
+
}
|
|
3846
|
+
interface PhoneInfoNonNullableFields {
|
|
3847
|
+
tag: PhoneInfoTag;
|
|
3848
|
+
}
|
|
3849
|
+
interface AddressInfoNonNullableFields {
|
|
3850
|
+
tag: Tag;
|
|
3851
|
+
}
|
|
3852
|
+
interface CustomFieldInfoNonNullableFields {
|
|
3853
|
+
key: string;
|
|
3854
|
+
}
|
|
3855
|
+
interface SubscriptionInfoNonNullableFields {
|
|
3856
|
+
optInLevel: OptInLevel$1;
|
|
3857
|
+
}
|
|
3858
|
+
interface FormFieldContactInfoNonNullableFields {
|
|
3859
|
+
emailInfo?: EmailInfoNonNullableFields;
|
|
3860
|
+
phoneInfo?: PhoneInfoNonNullableFields;
|
|
3861
|
+
addressInfo?: AddressInfoNonNullableFields;
|
|
3862
|
+
customFieldInfo?: CustomFieldInfoNonNullableFields;
|
|
3863
|
+
subscriptionInfo?: SubscriptionInfoNonNullableFields;
|
|
3864
|
+
contactField: ContactField;
|
|
3865
|
+
}
|
|
3866
|
+
interface FormFieldV2NonNullableFields {
|
|
3867
|
+
inputOptions?: InputFieldNonNullableFields;
|
|
3868
|
+
displayOptions?: DisplayFieldNonNullableFields;
|
|
3869
|
+
submitOptions?: SubmitButtonNonNullableFields;
|
|
3870
|
+
_id: string;
|
|
3871
|
+
hidden: boolean;
|
|
3872
|
+
fieldType: FieldType;
|
|
3873
|
+
contactMapping?: FormFieldContactInfoNonNullableFields;
|
|
3874
|
+
}
|
|
3875
|
+
interface ItemLayoutNonNullableFields {
|
|
3876
|
+
fieldId: string;
|
|
3877
|
+
}
|
|
3878
|
+
interface SectionNonNullableFields {
|
|
3879
|
+
_id: string;
|
|
3880
|
+
allowedFieldIds: string[];
|
|
3881
|
+
}
|
|
3882
|
+
interface BreakPointNonNullableFields {
|
|
3883
|
+
items: ItemLayoutNonNullableFields[];
|
|
3884
|
+
sections: SectionNonNullableFields[];
|
|
3885
|
+
}
|
|
3886
|
+
interface FormLayoutNonNullableFields {
|
|
3887
|
+
large?: BreakPointNonNullableFields;
|
|
3888
|
+
medium?: BreakPointNonNullableFields;
|
|
3889
|
+
small?: BreakPointNonNullableFields;
|
|
3890
|
+
}
|
|
3891
|
+
interface StepNonNullableFields {
|
|
3892
|
+
_id: string;
|
|
3893
|
+
hidden: boolean;
|
|
3894
|
+
layout?: FormLayoutNonNullableFields;
|
|
3895
|
+
}
|
|
3896
|
+
interface FormOverrideNonNullableFields {
|
|
3897
|
+
entityType: OverrideEntityType;
|
|
3898
|
+
}
|
|
3899
|
+
interface FormRuleNonNullableFields {
|
|
3900
|
+
_id: string;
|
|
3901
|
+
overrides: FormOverrideNonNullableFields[];
|
|
3902
|
+
}
|
|
3903
|
+
interface FormPropertiesNonNullableFields {
|
|
3904
|
+
disabled: boolean;
|
|
3905
|
+
}
|
|
3906
|
+
interface UpsertContactNonNullableFields {
|
|
3907
|
+
labels: string[];
|
|
3908
|
+
}
|
|
3909
|
+
interface PostSubmissionTriggersNonNullableFields {
|
|
3910
|
+
upsertContact?: UpsertContactNonNullableFields;
|
|
3911
|
+
}
|
|
3912
|
+
interface NestedFormNonNullableFields {
|
|
3913
|
+
targets: string[];
|
|
3914
|
+
form?: FormNonNullableFields;
|
|
3915
|
+
}
|
|
3916
|
+
interface RequiredIndicatorPropertiesNonNullableFields {
|
|
3917
|
+
requiredIndicator: RequiredIndicator;
|
|
3918
|
+
requiredIndicatorPlacement: RequiredIndicatorPlacement;
|
|
3919
|
+
}
|
|
3920
|
+
interface FormNonNullableFields {
|
|
3921
|
+
fields: FormFieldNonNullableFields[];
|
|
3922
|
+
fieldsV2: FormFieldV2NonNullableFields[];
|
|
3923
|
+
steps: StepNonNullableFields[];
|
|
3924
|
+
rules: FormRuleNonNullableFields[];
|
|
3925
|
+
properties?: FormPropertiesNonNullableFields;
|
|
3926
|
+
deletedFields: FormFieldNonNullableFields[];
|
|
3927
|
+
deletedFieldsV2: FormFieldV2NonNullableFields[];
|
|
3928
|
+
kind: Kind;
|
|
3929
|
+
postSubmissionTriggers?: PostSubmissionTriggersNonNullableFields;
|
|
3930
|
+
namespace: string;
|
|
3931
|
+
nestedForms: NestedFormNonNullableFields[];
|
|
3932
|
+
spamFilterProtectionLevel: SpamFilterProtectionLevel;
|
|
3933
|
+
requiredIndicatorProperties?: RequiredIndicatorPropertiesNonNullableFields;
|
|
3934
|
+
}
|
|
3935
|
+
interface CreateFormResponseNonNullableFields {
|
|
3936
|
+
form?: FormNonNullableFields;
|
|
3937
|
+
}
|
|
3938
|
+
interface ApplicationErrorNonNullableFields$2 {
|
|
3939
|
+
code: string;
|
|
3940
|
+
description: string;
|
|
3941
|
+
}
|
|
3942
|
+
interface ItemMetadataNonNullableFields$2 {
|
|
3943
|
+
originalIndex: number;
|
|
3944
|
+
success: boolean;
|
|
3945
|
+
error?: ApplicationErrorNonNullableFields$2;
|
|
3946
|
+
}
|
|
3947
|
+
interface BulkFormResultNonNullableFields {
|
|
3948
|
+
itemMetadata?: ItemMetadataNonNullableFields$2;
|
|
3949
|
+
item?: FormNonNullableFields;
|
|
3950
|
+
}
|
|
3951
|
+
interface BulkActionMetadataNonNullableFields$2 {
|
|
3952
|
+
totalSuccesses: number;
|
|
3953
|
+
totalFailures: number;
|
|
3954
|
+
undetailedFailures: number;
|
|
3385
3955
|
}
|
|
3386
|
-
interface
|
|
3387
|
-
|
|
3388
|
-
|
|
3956
|
+
interface BulkCreateFormResponseNonNullableFields {
|
|
3957
|
+
results: BulkFormResultNonNullableFields[];
|
|
3958
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$2;
|
|
3959
|
+
}
|
|
3960
|
+
interface CloneFormResponseNonNullableFields {
|
|
3961
|
+
form?: FormNonNullableFields;
|
|
3962
|
+
}
|
|
3963
|
+
interface GetFormResponseNonNullableFields {
|
|
3964
|
+
form?: FormNonNullableFields;
|
|
3965
|
+
}
|
|
3966
|
+
interface UpdateFormResponseNonNullableFields {
|
|
3967
|
+
form?: FormNonNullableFields;
|
|
3968
|
+
}
|
|
3969
|
+
interface RestoreFromTrashBinResponseNonNullableFields {
|
|
3970
|
+
form?: FormNonNullableFields;
|
|
3971
|
+
}
|
|
3972
|
+
interface QueryFormsResponseNonNullableFields {
|
|
3973
|
+
forms: FormNonNullableFields[];
|
|
3974
|
+
}
|
|
3975
|
+
interface CountFormsResponseNonNullableFields {
|
|
3976
|
+
activeCount: number;
|
|
3977
|
+
}
|
|
3978
|
+
interface ListFormsResponseNonNullableFields {
|
|
3979
|
+
forms: FormNonNullableFields[];
|
|
3980
|
+
}
|
|
3981
|
+
interface GetDeletedFormResponseNonNullableFields {
|
|
3982
|
+
form?: FormNonNullableFields;
|
|
3983
|
+
}
|
|
3984
|
+
interface QueryDeletedFormsResponseNonNullableFields {
|
|
3985
|
+
forms: FormNonNullableFields[];
|
|
3986
|
+
}
|
|
3987
|
+
interface ListDeletedFormsResponseNonNullableFields {
|
|
3988
|
+
forms: FormNonNullableFields[];
|
|
3989
|
+
}
|
|
3990
|
+
interface BulkRemoveDeletedFieldResponseNonNullableFields {
|
|
3991
|
+
form?: FormNonNullableFields;
|
|
3992
|
+
}
|
|
3993
|
+
interface UpdateExtendedFieldsResponseNonNullableFields {
|
|
3994
|
+
namespace: string;
|
|
3389
3995
|
}
|
|
3390
3996
|
interface BulkCreateFormOptions {
|
|
3391
3997
|
/** Forms to be created. */
|
|
@@ -3621,6 +4227,7 @@ interface UpdateExtendedFieldsOptions {
|
|
|
3621
4227
|
namespaceData: Record<string, any> | null;
|
|
3622
4228
|
}
|
|
3623
4229
|
|
|
4230
|
+
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
|
3624
4231
|
interface HttpClient {
|
|
3625
4232
|
request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
|
|
3626
4233
|
fetchWithAuth: typeof fetch;
|
|
@@ -3645,6 +4252,7 @@ type APIMetadata = {
|
|
|
3645
4252
|
entityFqdn?: string;
|
|
3646
4253
|
packageName?: string;
|
|
3647
4254
|
};
|
|
4255
|
+
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
3648
4256
|
type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
3649
4257
|
__type: 'event-definition';
|
|
3650
4258
|
type: Type;
|
|
@@ -3653,6 +4261,8 @@ type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
|
3653
4261
|
__payload: Payload;
|
|
3654
4262
|
};
|
|
3655
4263
|
declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
|
|
4264
|
+
type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
|
|
4265
|
+
type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
|
|
3656
4266
|
|
|
3657
4267
|
declare global {
|
|
3658
4268
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
@@ -3661,28 +4271,24 @@ declare global {
|
|
|
3661
4271
|
}
|
|
3662
4272
|
}
|
|
3663
4273
|
|
|
3664
|
-
declare
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
declare
|
|
3668
|
-
declare
|
|
3669
|
-
declare
|
|
3670
|
-
declare
|
|
3671
|
-
declare
|
|
3672
|
-
declare
|
|
3673
|
-
declare
|
|
3674
|
-
declare
|
|
3675
|
-
declare
|
|
3676
|
-
declare
|
|
3677
|
-
declare
|
|
3678
|
-
declare
|
|
3679
|
-
declare
|
|
3680
|
-
declare
|
|
3681
|
-
declare
|
|
3682
|
-
declare function updateExtendedFields(httpClient: HttpClient): (_id: string, namespace: string, options: UpdateExtendedFieldsOptions) => Promise<UpdateExtendedFieldsResponse>;
|
|
3683
|
-
declare const onFormCreated: EventDefinition<FormCreatedEnvelope, "wix.forms.v4.form_created">;
|
|
3684
|
-
declare const onFormUpdated: EventDefinition<FormUpdatedEnvelope, "wix.forms.v4.form_updated">;
|
|
3685
|
-
declare const onFormSubmissionKeysPermanentlyDeleted: EventDefinition<FormSubmissionKeysPermanentlyDeletedEnvelope, "wix.forms.v4.form_submission_keys_permanently_deleted">;
|
|
4274
|
+
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4275
|
+
|
|
4276
|
+
declare const createForm: ReturnType<typeof createRESTModule$2<typeof publicCreateForm>>;
|
|
4277
|
+
declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<typeof publicBulkCreateForm>>;
|
|
4278
|
+
declare const cloneForm: ReturnType<typeof createRESTModule$2<typeof publicCloneForm>>;
|
|
4279
|
+
declare const getForm: ReturnType<typeof createRESTModule$2<typeof publicGetForm>>;
|
|
4280
|
+
declare const updateForm: ReturnType<typeof createRESTModule$2<typeof publicUpdateForm>>;
|
|
4281
|
+
declare const removeFormFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRemoveFormFromTrashBin>>;
|
|
4282
|
+
declare const deleteForm: ReturnType<typeof createRESTModule$2<typeof publicDeleteForm>>;
|
|
4283
|
+
declare const restoreFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRestoreFromTrashBin>>;
|
|
4284
|
+
declare const queryForms: ReturnType<typeof createRESTModule$2<typeof publicQueryForms>>;
|
|
4285
|
+
declare const countForms: ReturnType<typeof createRESTModule$2<typeof publicCountForms>>;
|
|
4286
|
+
declare const listForms: ReturnType<typeof createRESTModule$2<typeof publicListForms>>;
|
|
4287
|
+
declare const getDeletedForm: ReturnType<typeof createRESTModule$2<typeof publicGetDeletedForm>>;
|
|
4288
|
+
declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicQueryDeletedForms>>;
|
|
4289
|
+
declare const listDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicListDeletedForms>>;
|
|
4290
|
+
declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<typeof publicBulkRemoveDeletedField>>;
|
|
4291
|
+
declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<typeof publicUpdateExtendedFields>>;
|
|
3686
4292
|
|
|
3687
4293
|
type index_d$2_AddressInfo = AddressInfo;
|
|
3688
4294
|
type index_d$2_AddressLine2 = AddressLine2;
|
|
@@ -3716,10 +4322,12 @@ type index_d$2_BreakPoint = BreakPoint;
|
|
|
3716
4322
|
type index_d$2_BulkCreateFormOptions = BulkCreateFormOptions;
|
|
3717
4323
|
type index_d$2_BulkCreateFormRequest = BulkCreateFormRequest;
|
|
3718
4324
|
type index_d$2_BulkCreateFormResponse = BulkCreateFormResponse;
|
|
4325
|
+
type index_d$2_BulkCreateFormResponseNonNullableFields = BulkCreateFormResponseNonNullableFields;
|
|
3719
4326
|
type index_d$2_BulkFormResult = BulkFormResult;
|
|
3720
4327
|
type index_d$2_BulkRemoveDeletedFieldOptions = BulkRemoveDeletedFieldOptions;
|
|
3721
4328
|
type index_d$2_BulkRemoveDeletedFieldRequest = BulkRemoveDeletedFieldRequest;
|
|
3722
4329
|
type index_d$2_BulkRemoveDeletedFieldResponse = BulkRemoveDeletedFieldResponse;
|
|
4330
|
+
type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields = BulkRemoveDeletedFieldResponseNonNullableFields;
|
|
3723
4331
|
type index_d$2_BulletedListData = BulletedListData;
|
|
3724
4332
|
type index_d$2_ButtonData = ButtonData;
|
|
3725
4333
|
type index_d$2_ButtonDataType = ButtonDataType;
|
|
@@ -3729,6 +4337,7 @@ type index_d$2_Checkbox = Checkbox;
|
|
|
3729
4337
|
type index_d$2_CheckboxGroup = CheckboxGroup;
|
|
3730
4338
|
type index_d$2_CloneFormRequest = CloneFormRequest;
|
|
3731
4339
|
type index_d$2_CloneFormResponse = CloneFormResponse;
|
|
4340
|
+
type index_d$2_CloneFormResponseNonNullableFields = CloneFormResponseNonNullableFields;
|
|
3732
4341
|
type index_d$2_CodeBlockData = CodeBlockData;
|
|
3733
4342
|
type index_d$2_CollapsibleListData = CollapsibleListData;
|
|
3734
4343
|
type index_d$2_ColorData = ColorData;
|
|
@@ -3743,8 +4352,10 @@ declare const index_d$2_CountFormsFieldset: typeof CountFormsFieldset;
|
|
|
3743
4352
|
type index_d$2_CountFormsOptions = CountFormsOptions;
|
|
3744
4353
|
type index_d$2_CountFormsRequest = CountFormsRequest;
|
|
3745
4354
|
type index_d$2_CountFormsResponse = CountFormsResponse;
|
|
4355
|
+
type index_d$2_CountFormsResponseNonNullableFields = CountFormsResponseNonNullableFields;
|
|
3746
4356
|
type index_d$2_CreateFormRequest = CreateFormRequest;
|
|
3747
4357
|
type index_d$2_CreateFormResponse = CreateFormResponse;
|
|
4358
|
+
type index_d$2_CreateFormResponseNonNullableFields = CreateFormResponseNonNullableFields;
|
|
3748
4359
|
type index_d$2_Crop = Crop;
|
|
3749
4360
|
declare const index_d$2_Crop: typeof Crop;
|
|
3750
4361
|
type index_d$2_CustomFieldInfo = CustomFieldInfo;
|
|
@@ -3807,7 +4418,6 @@ type index_d$2_FontType = FontType;
|
|
|
3807
4418
|
declare const index_d$2_FontType: typeof FontType;
|
|
3808
4419
|
type index_d$2_Form = Form;
|
|
3809
4420
|
type index_d$2_FormChanged = FormChanged;
|
|
3810
|
-
type index_d$2_FormCreatedEnvelope = FormCreatedEnvelope;
|
|
3811
4421
|
type index_d$2_FormDeleted = FormDeleted;
|
|
3812
4422
|
type index_d$2_FormField = FormField;
|
|
3813
4423
|
type index_d$2_FormFieldContactInfo = FormFieldContactInfo;
|
|
@@ -3815,11 +4425,10 @@ type index_d$2_FormFieldContactInfoAdditionalInfoOneOf = FormFieldContactInfoAdd
|
|
|
3815
4425
|
type index_d$2_FormFieldV2 = FormFieldV2;
|
|
3816
4426
|
type index_d$2_FormFieldV2FieldTypeOptionsOneOf = FormFieldV2FieldTypeOptionsOneOf;
|
|
3817
4427
|
type index_d$2_FormLayout = FormLayout;
|
|
4428
|
+
type index_d$2_FormNonNullableFields = FormNonNullableFields;
|
|
3818
4429
|
type index_d$2_FormOverride = FormOverride;
|
|
3819
4430
|
type index_d$2_FormProperties = FormProperties;
|
|
3820
4431
|
type index_d$2_FormRule = FormRule;
|
|
3821
|
-
type index_d$2_FormSubmissionKeysPermanentlyDeletedEnvelope = FormSubmissionKeysPermanentlyDeletedEnvelope;
|
|
3822
|
-
type index_d$2_FormUpdatedEnvelope = FormUpdatedEnvelope;
|
|
3823
4432
|
type index_d$2_Format = Format;
|
|
3824
4433
|
declare const index_d$2_Format: typeof Format;
|
|
3825
4434
|
type index_d$2_FormatEnumFormat = FormatEnumFormat;
|
|
@@ -3832,9 +4441,11 @@ type index_d$2_GalleryData = GalleryData;
|
|
|
3832
4441
|
type index_d$2_GalleryOptions = GalleryOptions;
|
|
3833
4442
|
type index_d$2_GetDeletedFormRequest = GetDeletedFormRequest;
|
|
3834
4443
|
type index_d$2_GetDeletedFormResponse = GetDeletedFormResponse;
|
|
4444
|
+
type index_d$2_GetDeletedFormResponseNonNullableFields = GetDeletedFormResponseNonNullableFields;
|
|
3835
4445
|
type index_d$2_GetFormOptions = GetFormOptions;
|
|
3836
4446
|
type index_d$2_GetFormRequest = GetFormRequest;
|
|
3837
4447
|
type index_d$2_GetFormResponse = GetFormResponse;
|
|
4448
|
+
type index_d$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
3838
4449
|
type index_d$2_Gradient = Gradient;
|
|
3839
4450
|
type index_d$2_HTMLData = HTMLData;
|
|
3840
4451
|
type index_d$2_HTMLDataDataOneOf = HTMLDataDataOneOf;
|
|
@@ -3889,11 +4500,13 @@ type index_d$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
|
3889
4500
|
declare const index_d$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
3890
4501
|
type index_d$2_ListDeletedFormsRequest = ListDeletedFormsRequest;
|
|
3891
4502
|
type index_d$2_ListDeletedFormsResponse = ListDeletedFormsResponse;
|
|
4503
|
+
type index_d$2_ListDeletedFormsResponseNonNullableFields = ListDeletedFormsResponseNonNullableFields;
|
|
3892
4504
|
type index_d$2_ListFormsOptions = ListFormsOptions;
|
|
3893
4505
|
type index_d$2_ListFormsOrder = ListFormsOrder;
|
|
3894
4506
|
declare const index_d$2_ListFormsOrder: typeof ListFormsOrder;
|
|
3895
4507
|
type index_d$2_ListFormsRequest = ListFormsRequest;
|
|
3896
4508
|
type index_d$2_ListFormsResponse = ListFormsResponse;
|
|
4509
|
+
type index_d$2_ListFormsResponseNonNullableFields = ListFormsResponseNonNullableFields;
|
|
3897
4510
|
type index_d$2_ListValue = ListValue;
|
|
3898
4511
|
type index_d$2_MapData = MapData;
|
|
3899
4512
|
type index_d$2_MapSettings = MapSettings;
|
|
@@ -3986,9 +4599,11 @@ type index_d$2_PropertiesTypePropertiesTypeOneOf = PropertiesTypePropertiesTypeO
|
|
|
3986
4599
|
type index_d$2_QuantityLimit = QuantityLimit;
|
|
3987
4600
|
type index_d$2_QueryDeletedFormsRequest = QueryDeletedFormsRequest;
|
|
3988
4601
|
type index_d$2_QueryDeletedFormsResponse = QueryDeletedFormsResponse;
|
|
4602
|
+
type index_d$2_QueryDeletedFormsResponseNonNullableFields = QueryDeletedFormsResponseNonNullableFields;
|
|
3989
4603
|
type index_d$2_QueryFormsOptions = QueryFormsOptions;
|
|
3990
4604
|
type index_d$2_QueryFormsRequest = QueryFormsRequest;
|
|
3991
4605
|
type index_d$2_QueryFormsResponse = QueryFormsResponse;
|
|
4606
|
+
type index_d$2_QueryFormsResponseNonNullableFields = QueryFormsResponseNonNullableFields;
|
|
3992
4607
|
type index_d$2_RadioGroup = RadioGroup;
|
|
3993
4608
|
type index_d$2_RadioGroupCustomOption = RadioGroupCustomOption;
|
|
3994
4609
|
type index_d$2_RadioGroupOption = RadioGroupOption;
|
|
@@ -4004,6 +4619,7 @@ declare const index_d$2_RequiredIndicatorPlacement: typeof RequiredIndicatorPlac
|
|
|
4004
4619
|
type index_d$2_RequiredIndicatorProperties = RequiredIndicatorProperties;
|
|
4005
4620
|
type index_d$2_RestoreFromTrashBinRequest = RestoreFromTrashBinRequest;
|
|
4006
4621
|
type index_d$2_RestoreFromTrashBinResponse = RestoreFromTrashBinResponse;
|
|
4622
|
+
type index_d$2_RestoreFromTrashBinResponseNonNullableFields = RestoreFromTrashBinResponseNonNullableFields;
|
|
4007
4623
|
type index_d$2_RichContent = RichContent;
|
|
4008
4624
|
type index_d$2_RichText = RichText;
|
|
4009
4625
|
type index_d$2_Section = Section;
|
|
@@ -4049,9 +4665,11 @@ declare const index_d$2_Type: typeof Type;
|
|
|
4049
4665
|
type index_d$2_UpdateExtendedFieldsOptions = UpdateExtendedFieldsOptions;
|
|
4050
4666
|
type index_d$2_UpdateExtendedFieldsRequest = UpdateExtendedFieldsRequest;
|
|
4051
4667
|
type index_d$2_UpdateExtendedFieldsResponse = UpdateExtendedFieldsResponse;
|
|
4668
|
+
type index_d$2_UpdateExtendedFieldsResponseNonNullableFields = UpdateExtendedFieldsResponseNonNullableFields;
|
|
4052
4669
|
type index_d$2_UpdateForm = UpdateForm;
|
|
4053
4670
|
type index_d$2_UpdateFormRequest = UpdateFormRequest;
|
|
4054
4671
|
type index_d$2_UpdateFormResponse = UpdateFormResponse;
|
|
4672
|
+
type index_d$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullableFields;
|
|
4055
4673
|
type index_d$2_UploadFileFormat = UploadFileFormat;
|
|
4056
4674
|
declare const index_d$2_UploadFileFormat: typeof UploadFileFormat;
|
|
4057
4675
|
type index_d$2_UpsertContact = UpsertContact;
|
|
@@ -4097,9 +4715,6 @@ declare const index_d$2_getDeletedForm: typeof getDeletedForm;
|
|
|
4097
4715
|
declare const index_d$2_getForm: typeof getForm;
|
|
4098
4716
|
declare const index_d$2_listDeletedForms: typeof listDeletedForms;
|
|
4099
4717
|
declare const index_d$2_listForms: typeof listForms;
|
|
4100
|
-
declare const index_d$2_onFormCreated: typeof onFormCreated;
|
|
4101
|
-
declare const index_d$2_onFormSubmissionKeysPermanentlyDeleted: typeof onFormSubmissionKeysPermanentlyDeleted;
|
|
4102
|
-
declare const index_d$2_onFormUpdated: typeof onFormUpdated;
|
|
4103
4718
|
declare const index_d$2_queryDeletedForms: typeof queryDeletedForms;
|
|
4104
4719
|
declare const index_d$2_queryForms: typeof queryForms;
|
|
4105
4720
|
declare const index_d$2_removeFormFromTrashBin: typeof removeFormFromTrashBin;
|
|
@@ -4107,7 +4722,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4107
4722
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4108
4723
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4109
4724
|
declare namespace index_d$2 {
|
|
4110
|
-
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 BaseEventMetadata$2 as BaseEventMetadata, 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_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_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_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_CreateFormRequest as CreateFormRequest, type index_d$2_CreateFormResponse as CreateFormResponse, 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 EventMetadata$2 as EventMetadata, 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_FormCreatedEnvelope as FormCreatedEnvelope, 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_FormOverride as FormOverride, type index_d$2_FormProperties as FormProperties, type index_d$2_FormRule as FormRule, type index_d$2_FormSubmissionKeysPermanentlyDeletedEnvelope as FormSubmissionKeysPermanentlyDeletedEnvelope, type index_d$2_FormUpdatedEnvelope as FormUpdatedEnvelope, 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_GetFormOptions as GetFormOptions, type index_d$2_GetFormRequest as GetFormRequest, type index_d$2_GetFormResponse as GetFormResponse, 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_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_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_QueryFormsOptions as QueryFormsOptions, type index_d$2_QueryFormsRequest as QueryFormsRequest, type index_d$2_QueryFormsResponse as QueryFormsResponse, 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 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_UpdateForm as UpdateForm, type index_d$2_UpdateFormRequest as UpdateFormRequest, type index_d$2_UpdateFormResponse as UpdateFormResponse, 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, __metadata$2 as __metadata, 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_onFormCreated as onFormCreated, index_d$2_onFormSubmissionKeysPermanentlyDeleted as onFormSubmissionKeysPermanentlyDeleted, index_d$2_onFormUpdated as onFormUpdated, 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 };
|
|
4725
|
+
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 };
|
|
4111
4726
|
}
|
|
4112
4727
|
|
|
4113
4728
|
/**
|
|
@@ -4656,6 +5271,96 @@ declare enum WebhookIdentityType$1 {
|
|
|
4656
5271
|
WIX_USER = "WIX_USER",
|
|
4657
5272
|
APP = "APP"
|
|
4658
5273
|
}
|
|
5274
|
+
interface SpamReportNonNullableFields {
|
|
5275
|
+
reportReason: ReportReason;
|
|
5276
|
+
}
|
|
5277
|
+
interface CheckForSpamResponseNonNullableFields {
|
|
5278
|
+
spam: boolean;
|
|
5279
|
+
spamReport?: SpamReportNonNullableFields;
|
|
5280
|
+
}
|
|
5281
|
+
interface OrderDetailsNonNullableFields$1 {
|
|
5282
|
+
checkoutId: string;
|
|
5283
|
+
}
|
|
5284
|
+
interface FormSpamSubmissionReportNonNullableFields {
|
|
5285
|
+
formId: string;
|
|
5286
|
+
namespace: string;
|
|
5287
|
+
reportReason: ReportReason;
|
|
5288
|
+
submissionStatusAtReport: SubmissionStatus$1;
|
|
5289
|
+
orderDetails?: OrderDetailsNonNullableFields$1;
|
|
5290
|
+
}
|
|
5291
|
+
interface CreateFormSpamSubmissionReportResponseNonNullableFields {
|
|
5292
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5293
|
+
}
|
|
5294
|
+
interface GetFormSpamSubmissionReportResponseNonNullableFields {
|
|
5295
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5296
|
+
}
|
|
5297
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
5298
|
+
code: string;
|
|
5299
|
+
description: string;
|
|
5300
|
+
}
|
|
5301
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
5302
|
+
originalIndex: number;
|
|
5303
|
+
success: boolean;
|
|
5304
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
5305
|
+
}
|
|
5306
|
+
interface BulkDeleteFormSpamSubmissionReportResultNonNullableFields {
|
|
5307
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5308
|
+
}
|
|
5309
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
5310
|
+
totalSuccesses: number;
|
|
5311
|
+
totalFailures: number;
|
|
5312
|
+
undetailedFailures: number;
|
|
5313
|
+
}
|
|
5314
|
+
interface BulkDeleteFormSpamSubmissionReportResponseNonNullableFields {
|
|
5315
|
+
results: BulkDeleteFormSpamSubmissionReportResultNonNullableFields[];
|
|
5316
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5317
|
+
}
|
|
5318
|
+
interface BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields {
|
|
5319
|
+
jobId: string;
|
|
5320
|
+
}
|
|
5321
|
+
interface FormSubmissionOrderDetailsNonNullableFields {
|
|
5322
|
+
itemSubtotal: string;
|
|
5323
|
+
checkoutId: string;
|
|
5324
|
+
}
|
|
5325
|
+
interface FormSubmissionNonNullableFields$1 {
|
|
5326
|
+
formId: string;
|
|
5327
|
+
namespace: string;
|
|
5328
|
+
status: SubmissionStatus$1;
|
|
5329
|
+
seen: boolean;
|
|
5330
|
+
orderDetails?: FormSubmissionOrderDetailsNonNullableFields;
|
|
5331
|
+
}
|
|
5332
|
+
interface ReportNotSpamSubmissionResponseNonNullableFields {
|
|
5333
|
+
submission?: FormSubmissionNonNullableFields$1;
|
|
5334
|
+
}
|
|
5335
|
+
interface BulkReportNotSpamSubmissionResultNonNullableFields {
|
|
5336
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5337
|
+
formSpamSubmissionReportId: string;
|
|
5338
|
+
}
|
|
5339
|
+
interface BulkReportNotSpamSubmissionResponseNonNullableFields {
|
|
5340
|
+
results: BulkReportNotSpamSubmissionResultNonNullableFields[];
|
|
5341
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5342
|
+
}
|
|
5343
|
+
interface ReportSpamSubmissionResponseNonNullableFields {
|
|
5344
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5345
|
+
}
|
|
5346
|
+
interface BulkReportSpamSubmissionResultNonNullableFields {
|
|
5347
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5348
|
+
item?: FormSpamSubmissionReportNonNullableFields;
|
|
5349
|
+
}
|
|
5350
|
+
interface BulkReportSpamSubmissionResponseNonNullableFields {
|
|
5351
|
+
results: BulkReportSpamSubmissionResultNonNullableFields[];
|
|
5352
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5353
|
+
}
|
|
5354
|
+
interface QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields {
|
|
5355
|
+
formSpamSubmissionReports: FormSpamSubmissionReportNonNullableFields[];
|
|
5356
|
+
}
|
|
5357
|
+
interface FormSpamSubmissionReportsCountNonNullableFields {
|
|
5358
|
+
formId: string;
|
|
5359
|
+
totalCount: number;
|
|
5360
|
+
}
|
|
5361
|
+
interface CountFormSpamSubmissionReportsResponseNonNullableFields {
|
|
5362
|
+
formsSpamSubmissionReportsCount: FormSpamSubmissionReportsCountNonNullableFields[];
|
|
5363
|
+
}
|
|
4659
5364
|
interface BaseEventMetadata$1 {
|
|
4660
5365
|
/** App instance ID. */
|
|
4661
5366
|
instanceId?: string | null;
|
|
@@ -4792,63 +5497,76 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
4792
5497
|
find: () => Promise<FormSpamSubmissionReportsQueryResult>;
|
|
4793
5498
|
}
|
|
4794
5499
|
|
|
4795
|
-
declare
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
declare
|
|
4800
|
-
declare
|
|
4801
|
-
declare
|
|
4802
|
-
declare
|
|
4803
|
-
declare
|
|
4804
|
-
declare
|
|
4805
|
-
declare
|
|
4806
|
-
declare
|
|
4807
|
-
declare
|
|
4808
|
-
declare
|
|
4809
|
-
declare
|
|
4810
|
-
declare const
|
|
4811
|
-
declare const
|
|
5500
|
+
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5501
|
+
|
|
5502
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5503
|
+
|
|
5504
|
+
declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
|
|
5505
|
+
declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
|
|
5506
|
+
declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
|
|
5507
|
+
declare const deleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicDeleteFormSpamSubmissionReport>>;
|
|
5508
|
+
declare const bulkDeleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReport>>;
|
|
5509
|
+
declare const bulkDeleteFormSpamSubmissionReportByFilter: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReportByFilter>>;
|
|
5510
|
+
declare const reportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportNotSpamSubmission>>;
|
|
5511
|
+
declare const bulkReportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportNotSpamSubmission>>;
|
|
5512
|
+
declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportSpamSubmission>>;
|
|
5513
|
+
declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
|
|
5514
|
+
declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
|
|
5515
|
+
declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<typeof publicCountFormSpamSubmissionReports>>;
|
|
5516
|
+
declare const onFormSpamSubmissionReportCreated: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportCreated>>;
|
|
5517
|
+
declare const onFormSpamSubmissionReportDeleted: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportDeleted>>;
|
|
4812
5518
|
|
|
4813
5519
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
|
|
4814
5520
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
|
|
5521
|
+
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields = BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields;
|
|
4815
5522
|
type index_d$1_BulkDeleteFormSpamSubmissionReportOptions = BulkDeleteFormSpamSubmissionReportOptions;
|
|
4816
5523
|
type index_d$1_BulkDeleteFormSpamSubmissionReportRequest = BulkDeleteFormSpamSubmissionReportRequest;
|
|
4817
5524
|
type index_d$1_BulkDeleteFormSpamSubmissionReportResponse = BulkDeleteFormSpamSubmissionReportResponse;
|
|
5525
|
+
type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields = BulkDeleteFormSpamSubmissionReportResponseNonNullableFields;
|
|
4818
5526
|
type index_d$1_BulkDeleteFormSpamSubmissionReportResult = BulkDeleteFormSpamSubmissionReportResult;
|
|
4819
5527
|
type index_d$1_BulkReportNotSpamSubmissionOptions = BulkReportNotSpamSubmissionOptions;
|
|
4820
5528
|
type index_d$1_BulkReportNotSpamSubmissionRequest = BulkReportNotSpamSubmissionRequest;
|
|
4821
5529
|
type index_d$1_BulkReportNotSpamSubmissionResponse = BulkReportNotSpamSubmissionResponse;
|
|
5530
|
+
type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields = BulkReportNotSpamSubmissionResponseNonNullableFields;
|
|
4822
5531
|
type index_d$1_BulkReportNotSpamSubmissionResult = BulkReportNotSpamSubmissionResult;
|
|
4823
5532
|
type index_d$1_BulkReportSpamSubmissionOptions = BulkReportSpamSubmissionOptions;
|
|
4824
5533
|
type index_d$1_BulkReportSpamSubmissionRequest = BulkReportSpamSubmissionRequest;
|
|
4825
5534
|
type index_d$1_BulkReportSpamSubmissionResponse = BulkReportSpamSubmissionResponse;
|
|
5535
|
+
type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields = BulkReportSpamSubmissionResponseNonNullableFields;
|
|
4826
5536
|
type index_d$1_BulkReportSpamSubmissionResult = BulkReportSpamSubmissionResult;
|
|
4827
5537
|
type index_d$1_CheckForSpamRequest = CheckForSpamRequest;
|
|
4828
5538
|
type index_d$1_CheckForSpamResponse = CheckForSpamResponse;
|
|
5539
|
+
type index_d$1_CheckForSpamResponseNonNullableFields = CheckForSpamResponseNonNullableFields;
|
|
4829
5540
|
type index_d$1_CountFormSpamSubmissionReportsRequest = CountFormSpamSubmissionReportsRequest;
|
|
4830
5541
|
type index_d$1_CountFormSpamSubmissionReportsResponse = CountFormSpamSubmissionReportsResponse;
|
|
5542
|
+
type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields = CountFormSpamSubmissionReportsResponseNonNullableFields;
|
|
4831
5543
|
type index_d$1_CreateFormSpamSubmissionReportRequest = CreateFormSpamSubmissionReportRequest;
|
|
4832
5544
|
type index_d$1_CreateFormSpamSubmissionReportResponse = CreateFormSpamSubmissionReportResponse;
|
|
5545
|
+
type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateFormSpamSubmissionReportResponseNonNullableFields;
|
|
4833
5546
|
type index_d$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
|
|
4834
5547
|
type index_d$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
4835
5548
|
type index_d$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
4836
5549
|
type index_d$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
|
|
4837
5550
|
type index_d$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
|
|
5551
|
+
type index_d$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
4838
5552
|
type index_d$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
4839
5553
|
type index_d$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
4840
5554
|
type index_d$1_FormSpamSubmissionReportsQueryResult = FormSpamSubmissionReportsQueryResult;
|
|
4841
5555
|
type index_d$1_FormSubmissionOrderDetails = FormSubmissionOrderDetails;
|
|
4842
5556
|
type index_d$1_GetFormSpamSubmissionReportRequest = GetFormSpamSubmissionReportRequest;
|
|
4843
5557
|
type index_d$1_GetFormSpamSubmissionReportResponse = GetFormSpamSubmissionReportResponse;
|
|
5558
|
+
type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields = GetFormSpamSubmissionReportResponseNonNullableFields;
|
|
4844
5559
|
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest = QueryFormSpamSubmissionReportsByNamespaceRequest;
|
|
4845
5560
|
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse = QueryFormSpamSubmissionReportsByNamespaceResponse;
|
|
5561
|
+
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields = QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields;
|
|
4846
5562
|
type index_d$1_ReportNotSpamSubmissionRequest = ReportNotSpamSubmissionRequest;
|
|
4847
5563
|
type index_d$1_ReportNotSpamSubmissionResponse = ReportNotSpamSubmissionResponse;
|
|
5564
|
+
type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields = ReportNotSpamSubmissionResponseNonNullableFields;
|
|
4848
5565
|
type index_d$1_ReportReason = ReportReason;
|
|
4849
5566
|
declare const index_d$1_ReportReason: typeof ReportReason;
|
|
4850
5567
|
type index_d$1_ReportSpamSubmissionRequest = ReportSpamSubmissionRequest;
|
|
4851
5568
|
type index_d$1_ReportSpamSubmissionResponse = ReportSpamSubmissionResponse;
|
|
5569
|
+
type index_d$1_ReportSpamSubmissionResponseNonNullableFields = ReportSpamSubmissionResponseNonNullableFields;
|
|
4852
5570
|
type index_d$1_SpamReport = SpamReport;
|
|
4853
5571
|
declare const index_d$1_bulkDeleteFormSpamSubmissionReport: typeof bulkDeleteFormSpamSubmissionReport;
|
|
4854
5572
|
declare const index_d$1_bulkDeleteFormSpamSubmissionReportByFilter: typeof bulkDeleteFormSpamSubmissionReportByFilter;
|
|
@@ -4865,7 +5583,7 @@ declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryF
|
|
|
4865
5583
|
declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
4866
5584
|
declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
4867
5585
|
declare namespace index_d$1 {
|
|
4868
|
-
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest as BulkDeleteFormSpamSubmissionReportByFilterRequest, type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse as BulkDeleteFormSpamSubmissionReportByFilterResponse, 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_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_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_BulkReportSpamSubmissionResult as BulkReportSpamSubmissionResult, type index_d$1_CheckForSpamRequest as CheckForSpamRequest, type index_d$1_CheckForSpamResponse as CheckForSpamResponse, type index_d$1_CountFormSpamSubmissionReportsRequest as CountFormSpamSubmissionReportsRequest, type index_d$1_CountFormSpamSubmissionReportsResponse as CountFormSpamSubmissionReportsResponse, type index_d$1_CreateFormSpamSubmissionReportRequest as CreateFormSpamSubmissionReportRequest, type index_d$1_CreateFormSpamSubmissionReportResponse as CreateFormSpamSubmissionReportResponse, 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 EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportCreatedEnvelope as FormSpamSubmissionReportCreatedEnvelope, type index_d$1_FormSpamSubmissionReportDeletedEnvelope as FormSpamSubmissionReportDeletedEnvelope, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType,
|
|
5586
|
+
export { type ActionEvent$1 as ActionEvent, type ApplicationError$1 as ApplicationError, type BaseEventMetadata$1 as BaseEventMetadata, 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 EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type index_d$1_FormSpamSubmissionReport as FormSpamSubmissionReport, type index_d$1_FormSpamSubmissionReportCreatedEnvelope as FormSpamSubmissionReportCreatedEnvelope, type index_d$1_FormSpamSubmissionReportDeletedEnvelope as FormSpamSubmissionReportDeletedEnvelope, type index_d$1_FormSpamSubmissionReportNonNullableFields as FormSpamSubmissionReportNonNullableFields, type index_d$1_FormSpamSubmissionReportsCount as FormSpamSubmissionReportsCount, type index_d$1_FormSpamSubmissionReportsQueryBuilder as FormSpamSubmissionReportsQueryBuilder, type index_d$1_FormSpamSubmissionReportsQueryResult as FormSpamSubmissionReportsQueryResult, type FormSubmission$1 as FormSubmission, type index_d$1_FormSubmissionOrderDetails as FormSubmissionOrderDetails, type index_d$1_GetFormSpamSubmissionReportRequest as GetFormSpamSubmissionReportRequest, type index_d$1_GetFormSpamSubmissionReportResponse as GetFormSpamSubmissionReportResponse, type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields as GetFormSpamSubmissionReportResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type ItemMetadata$1 as ItemMetadata, type MessageEnvelope$1 as MessageEnvelope, type OrderDetails$1 as OrderDetails, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest as QueryFormSpamSubmissionReportsByNamespaceRequest, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse as QueryFormSpamSubmissionReportsByNamespaceResponse, type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields as QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields, type index_d$1_ReportNotSpamSubmissionRequest as ReportNotSpamSubmissionRequest, type index_d$1_ReportNotSpamSubmissionResponse as ReportNotSpamSubmissionResponse, type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields as ReportNotSpamSubmissionResponseNonNullableFields, index_d$1_ReportReason as ReportReason, type index_d$1_ReportSpamSubmissionRequest as ReportSpamSubmissionRequest, type index_d$1_ReportSpamSubmissionResponse as ReportSpamSubmissionResponse, type index_d$1_ReportSpamSubmissionResponseNonNullableFields as ReportSpamSubmissionResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$1_SpamReport as SpamReport, SubmissionStatus$1 as SubmissionStatus, type Submitter$1 as Submitter, type SubmitterSubmitterOneOf$1 as SubmitterSubmitterOneOf, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_bulkDeleteFormSpamSubmissionReport as bulkDeleteFormSpamSubmissionReport, index_d$1_bulkDeleteFormSpamSubmissionReportByFilter as bulkDeleteFormSpamSubmissionReportByFilter, index_d$1_bulkReportNotSpamSubmission as bulkReportNotSpamSubmission, index_d$1_bulkReportSpamSubmission as bulkReportSpamSubmission, index_d$1_checkForSpam as checkForSpam, index_d$1_countFormSpamSubmissionReports as countFormSpamSubmissionReports, index_d$1_createFormSpamSubmissionReport as createFormSpamSubmissionReport, index_d$1_deleteFormSpamSubmissionReport as deleteFormSpamSubmissionReport, index_d$1_getFormSpamSubmissionReport as getFormSpamSubmissionReport, index_d$1_onFormSpamSubmissionReportCreated as onFormSpamSubmissionReportCreated, index_d$1_onFormSpamSubmissionReportDeleted as onFormSpamSubmissionReportDeleted, index_d$1_queryFormSpamSubmissionReportsByNamespace as queryFormSpamSubmissionReportsByNamespace, index_d$1_reportNotSpamSubmission as reportNotSpamSubmission, index_d$1_reportSpamSubmission as reportSpamSubmission };
|
|
4869
5587
|
}
|
|
4870
5588
|
|
|
4871
5589
|
/** Form submission that was created or retrieved. */
|
|
@@ -5633,6 +6351,113 @@ interface SubmissionContactMappingSkipped {
|
|
|
5633
6351
|
/** Identifies the namespace that the submission's form belongs to. */
|
|
5634
6352
|
namespace?: string;
|
|
5635
6353
|
}
|
|
6354
|
+
interface OrderDetailsNonNullableFields {
|
|
6355
|
+
itemSubtotal: string;
|
|
6356
|
+
checkoutId: string;
|
|
6357
|
+
}
|
|
6358
|
+
interface FormSubmissionNonNullableFields {
|
|
6359
|
+
formId: string;
|
|
6360
|
+
namespace: string;
|
|
6361
|
+
status: SubmissionStatus;
|
|
6362
|
+
seen: boolean;
|
|
6363
|
+
orderDetails?: OrderDetailsNonNullableFields;
|
|
6364
|
+
}
|
|
6365
|
+
interface CreateSubmissionResponseNonNullableFields {
|
|
6366
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6367
|
+
}
|
|
6368
|
+
interface ApplicationErrorNonNullableFields {
|
|
6369
|
+
code: string;
|
|
6370
|
+
description: string;
|
|
6371
|
+
}
|
|
6372
|
+
interface ItemMetadataNonNullableFields {
|
|
6373
|
+
originalIndex: number;
|
|
6374
|
+
success: boolean;
|
|
6375
|
+
error?: ApplicationErrorNonNullableFields;
|
|
6376
|
+
}
|
|
6377
|
+
interface BulkSubmissionResultNonNullableFields {
|
|
6378
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6379
|
+
item?: FormSubmissionNonNullableFields;
|
|
6380
|
+
}
|
|
6381
|
+
interface BulkActionMetadataNonNullableFields {
|
|
6382
|
+
totalSuccesses: number;
|
|
6383
|
+
totalFailures: number;
|
|
6384
|
+
undetailedFailures: number;
|
|
6385
|
+
}
|
|
6386
|
+
interface BulkCreateSubmissionBySubmitterResponseNonNullableFields {
|
|
6387
|
+
results: BulkSubmissionResultNonNullableFields[];
|
|
6388
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6389
|
+
}
|
|
6390
|
+
interface GetSubmissionResponseNonNullableFields {
|
|
6391
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6392
|
+
}
|
|
6393
|
+
interface UpdateSubmissionResponseNonNullableFields {
|
|
6394
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6395
|
+
}
|
|
6396
|
+
interface ConfirmSubmissionResponseNonNullableFields {
|
|
6397
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6398
|
+
}
|
|
6399
|
+
interface BulkDeleteSubmissionResultNonNullableFields {
|
|
6400
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6401
|
+
}
|
|
6402
|
+
interface BulkDeleteSubmissionResponseNonNullableFields {
|
|
6403
|
+
results: BulkDeleteSubmissionResultNonNullableFields[];
|
|
6404
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6405
|
+
}
|
|
6406
|
+
interface RestoreSubmissionFromTrashBinResponseNonNullableFields {
|
|
6407
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6408
|
+
}
|
|
6409
|
+
interface BulkRemoveSubmissionFromTrashBinResultNonNullableFields {
|
|
6410
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6411
|
+
}
|
|
6412
|
+
interface BulkRemoveSubmissionFromTrashBinResponseNonNullableFields {
|
|
6413
|
+
results: BulkRemoveSubmissionFromTrashBinResultNonNullableFields[];
|
|
6414
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6415
|
+
}
|
|
6416
|
+
interface ListDeletedSubmissionsResponseNonNullableFields {
|
|
6417
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6418
|
+
}
|
|
6419
|
+
interface GetDeletedSubmissionResponseNonNullableFields {
|
|
6420
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6421
|
+
}
|
|
6422
|
+
interface QuerySubmissionResponseNonNullableFields {
|
|
6423
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6424
|
+
}
|
|
6425
|
+
interface SearchSubmissionsByNamespaceResponseNonNullableFields {
|
|
6426
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6427
|
+
}
|
|
6428
|
+
interface QuerySubmissionsByNamespaceResponseNonNullableFields {
|
|
6429
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6430
|
+
}
|
|
6431
|
+
interface FormSubmissionsCountNonNullableFields {
|
|
6432
|
+
formId: string;
|
|
6433
|
+
totalCount: number;
|
|
6434
|
+
unseenCount: number;
|
|
6435
|
+
}
|
|
6436
|
+
interface CountSubmissionsByFilterResponseNonNullableFields {
|
|
6437
|
+
formsSubmissionsCount: FormSubmissionsCountNonNullableFields[];
|
|
6438
|
+
}
|
|
6439
|
+
interface CountSubmissionsResponseNonNullableFields {
|
|
6440
|
+
formsSubmissionsCount: FormSubmissionsCountNonNullableFields[];
|
|
6441
|
+
}
|
|
6442
|
+
interface FormDeletedSubmissionsCountNonNullableFields {
|
|
6443
|
+
formId: string;
|
|
6444
|
+
totalCount: number;
|
|
6445
|
+
}
|
|
6446
|
+
interface CountDeletedSubmissionsResponseNonNullableFields {
|
|
6447
|
+
formsDeletedSubmissionsCount: FormDeletedSubmissionsCountNonNullableFields[];
|
|
6448
|
+
}
|
|
6449
|
+
interface GetMediaUploadURLResponseNonNullableFields {
|
|
6450
|
+
uploadUrl: string;
|
|
6451
|
+
generatedByMediaPlatform: boolean;
|
|
6452
|
+
}
|
|
6453
|
+
interface SubmitContactResponseNonNullableFields {
|
|
6454
|
+
contactId: string;
|
|
6455
|
+
identityType: IdentityType;
|
|
6456
|
+
newContact: boolean;
|
|
6457
|
+
}
|
|
6458
|
+
interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
6459
|
+
submitContactResponse?: SubmitContactResponseNonNullableFields;
|
|
6460
|
+
}
|
|
5636
6461
|
interface BaseEventMetadata {
|
|
5637
6462
|
/** App instance ID. */
|
|
5638
6463
|
instanceId?: string | null;
|
|
@@ -5903,37 +6728,38 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
5903
6728
|
emailVerified?: boolean;
|
|
5904
6729
|
}
|
|
5905
6730
|
|
|
5906
|
-
declare
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
declare
|
|
5911
|
-
declare
|
|
5912
|
-
declare
|
|
5913
|
-
declare
|
|
5914
|
-
declare
|
|
5915
|
-
declare
|
|
5916
|
-
declare
|
|
5917
|
-
declare
|
|
5918
|
-
declare
|
|
5919
|
-
declare
|
|
5920
|
-
declare
|
|
5921
|
-
declare
|
|
5922
|
-
declare
|
|
5923
|
-
declare
|
|
5924
|
-
declare
|
|
5925
|
-
declare
|
|
5926
|
-
declare
|
|
5927
|
-
declare
|
|
5928
|
-
declare
|
|
5929
|
-
declare
|
|
5930
|
-
declare const
|
|
5931
|
-
declare const
|
|
5932
|
-
declare const
|
|
5933
|
-
declare const
|
|
5934
|
-
declare const
|
|
5935
|
-
declare const
|
|
5936
|
-
declare const
|
|
6731
|
+
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
6732
|
+
|
|
6733
|
+
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
6734
|
+
|
|
6735
|
+
declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
|
|
6736
|
+
declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
|
|
6737
|
+
declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
|
|
6738
|
+
declare const updateSubmission: ReturnType<typeof createRESTModule<typeof publicUpdateSubmission>>;
|
|
6739
|
+
declare const confirmSubmission: ReturnType<typeof createRESTModule<typeof publicConfirmSubmission>>;
|
|
6740
|
+
declare const deleteSubmission: ReturnType<typeof createRESTModule<typeof publicDeleteSubmission>>;
|
|
6741
|
+
declare const bulkDeleteSubmission: ReturnType<typeof createRESTModule<typeof publicBulkDeleteSubmission>>;
|
|
6742
|
+
declare const restoreSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRestoreSubmissionFromTrashBin>>;
|
|
6743
|
+
declare const removeSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRemoveSubmissionFromTrashBin>>;
|
|
6744
|
+
declare const bulkRemoveSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicBulkRemoveSubmissionFromTrashBin>>;
|
|
6745
|
+
declare const listDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicListDeletedSubmissions>>;
|
|
6746
|
+
declare const getDeletedSubmission: ReturnType<typeof createRESTModule<typeof publicGetDeletedSubmission>>;
|
|
6747
|
+
declare const querySubmission: ReturnType<typeof createRESTModule<typeof publicQuerySubmission>>;
|
|
6748
|
+
declare const searchSubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicSearchSubmissionsByNamespace>>;
|
|
6749
|
+
declare const querySubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicQuerySubmissionsByNamespace>>;
|
|
6750
|
+
declare const countSubmissionsByFilter: ReturnType<typeof createRESTModule<typeof publicCountSubmissionsByFilter>>;
|
|
6751
|
+
declare const countSubmissions: ReturnType<typeof createRESTModule<typeof publicCountSubmissions>>;
|
|
6752
|
+
declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicCountDeletedSubmissions>>;
|
|
6753
|
+
declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
|
|
6754
|
+
declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
|
|
6755
|
+
declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<typeof publicUpsertContactFromSubmission>>;
|
|
6756
|
+
declare const onSubmissionCreated: ReturnType<typeof createEventModule<typeof publicOnSubmissionCreated>>;
|
|
6757
|
+
declare const onSubmissionUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionUpdated>>;
|
|
6758
|
+
declare const onSubmissionStatusUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionStatusUpdated>>;
|
|
6759
|
+
declare const onSubmissionDeleted: ReturnType<typeof createEventModule<typeof publicOnSubmissionDeleted>>;
|
|
6760
|
+
declare const onSubmissionRemovedSubmissionFromTrash: ReturnType<typeof createEventModule<typeof publicOnSubmissionRemovedSubmissionFromTrash>>;
|
|
6761
|
+
declare const onSubmissionContactMapped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMapped>>;
|
|
6762
|
+
declare const onSubmissionContactMappingSkipped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMappingSkipped>>;
|
|
5937
6763
|
|
|
5938
6764
|
type index_d_ActionEvent = ActionEvent;
|
|
5939
6765
|
type index_d_ApplicationError = ApplicationError;
|
|
@@ -5943,33 +6769,41 @@ type index_d_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitt
|
|
|
5943
6769
|
type index_d_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
|
|
5944
6770
|
type index_d_BulkCreateSubmissionBySubmitterRequest = BulkCreateSubmissionBySubmitterRequest;
|
|
5945
6771
|
type index_d_BulkCreateSubmissionBySubmitterResponse = BulkCreateSubmissionBySubmitterResponse;
|
|
6772
|
+
type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields = BulkCreateSubmissionBySubmitterResponseNonNullableFields;
|
|
5946
6773
|
type index_d_BulkDeleteSubmissionOptions = BulkDeleteSubmissionOptions;
|
|
5947
6774
|
type index_d_BulkDeleteSubmissionRequest = BulkDeleteSubmissionRequest;
|
|
5948
6775
|
type index_d_BulkDeleteSubmissionResponse = BulkDeleteSubmissionResponse;
|
|
6776
|
+
type index_d_BulkDeleteSubmissionResponseNonNullableFields = BulkDeleteSubmissionResponseNonNullableFields;
|
|
5949
6777
|
type index_d_BulkDeleteSubmissionResult = BulkDeleteSubmissionResult;
|
|
5950
6778
|
type index_d_BulkMarkSubmissionsAsSeenRequest = BulkMarkSubmissionsAsSeenRequest;
|
|
5951
6779
|
type index_d_BulkMarkSubmissionsAsSeenResponse = BulkMarkSubmissionsAsSeenResponse;
|
|
5952
6780
|
type index_d_BulkRemoveSubmissionFromTrashBinOptions = BulkRemoveSubmissionFromTrashBinOptions;
|
|
5953
6781
|
type index_d_BulkRemoveSubmissionFromTrashBinRequest = BulkRemoveSubmissionFromTrashBinRequest;
|
|
5954
6782
|
type index_d_BulkRemoveSubmissionFromTrashBinResponse = BulkRemoveSubmissionFromTrashBinResponse;
|
|
6783
|
+
type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields = BulkRemoveSubmissionFromTrashBinResponseNonNullableFields;
|
|
5955
6784
|
type index_d_BulkRemoveSubmissionFromTrashBinResult = BulkRemoveSubmissionFromTrashBinResult;
|
|
5956
6785
|
type index_d_BulkSubmissionResult = BulkSubmissionResult;
|
|
5957
6786
|
type index_d_ConfirmSubmissionRequest = ConfirmSubmissionRequest;
|
|
5958
6787
|
type index_d_ConfirmSubmissionResponse = ConfirmSubmissionResponse;
|
|
6788
|
+
type index_d_ConfirmSubmissionResponseNonNullableFields = ConfirmSubmissionResponseNonNullableFields;
|
|
5959
6789
|
type index_d_CountDeletedSubmissionsOptions = CountDeletedSubmissionsOptions;
|
|
5960
6790
|
type index_d_CountDeletedSubmissionsRequest = CountDeletedSubmissionsRequest;
|
|
5961
6791
|
type index_d_CountDeletedSubmissionsResponse = CountDeletedSubmissionsResponse;
|
|
6792
|
+
type index_d_CountDeletedSubmissionsResponseNonNullableFields = CountDeletedSubmissionsResponseNonNullableFields;
|
|
5962
6793
|
type index_d_CountSubmissionsByFilterOptions = CountSubmissionsByFilterOptions;
|
|
5963
6794
|
type index_d_CountSubmissionsByFilterRequest = CountSubmissionsByFilterRequest;
|
|
5964
6795
|
type index_d_CountSubmissionsByFilterResponse = CountSubmissionsByFilterResponse;
|
|
6796
|
+
type index_d_CountSubmissionsByFilterResponseNonNullableFields = CountSubmissionsByFilterResponseNonNullableFields;
|
|
5965
6797
|
type index_d_CountSubmissionsOptions = CountSubmissionsOptions;
|
|
5966
6798
|
type index_d_CountSubmissionsRequest = CountSubmissionsRequest;
|
|
5967
6799
|
type index_d_CountSubmissionsResponse = CountSubmissionsResponse;
|
|
6800
|
+
type index_d_CountSubmissionsResponseNonNullableFields = CountSubmissionsResponseNonNullableFields;
|
|
5968
6801
|
type index_d_CreateSubmissionBySubmitterRequest = CreateSubmissionBySubmitterRequest;
|
|
5969
6802
|
type index_d_CreateSubmissionBySubmitterResponse = CreateSubmissionBySubmitterResponse;
|
|
5970
6803
|
type index_d_CreateSubmissionOptions = CreateSubmissionOptions;
|
|
5971
6804
|
type index_d_CreateSubmissionRequest = CreateSubmissionRequest;
|
|
5972
6805
|
type index_d_CreateSubmissionResponse = CreateSubmissionResponse;
|
|
6806
|
+
type index_d_CreateSubmissionResponseNonNullableFields = CreateSubmissionResponseNonNullableFields;
|
|
5973
6807
|
type index_d_CursorPaging = CursorPaging;
|
|
5974
6808
|
type index_d_CursorPagingMetadata = CursorPagingMetadata;
|
|
5975
6809
|
type index_d_CursorQuery = CursorQuery;
|
|
@@ -5990,16 +6824,20 @@ type index_d_EventMetadata = EventMetadata;
|
|
|
5990
6824
|
type index_d_ExtendedFields = ExtendedFields;
|
|
5991
6825
|
type index_d_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
|
|
5992
6826
|
type index_d_FormSubmission = FormSubmission;
|
|
6827
|
+
type index_d_FormSubmissionNonNullableFields = FormSubmissionNonNullableFields;
|
|
5993
6828
|
type index_d_FormSubmissionStatusUpdatedEvent = FormSubmissionStatusUpdatedEvent;
|
|
5994
6829
|
type index_d_FormSubmissionsCount = FormSubmissionsCount;
|
|
5995
6830
|
type index_d_GetDeletedSubmissionRequest = GetDeletedSubmissionRequest;
|
|
5996
6831
|
type index_d_GetDeletedSubmissionResponse = GetDeletedSubmissionResponse;
|
|
6832
|
+
type index_d_GetDeletedSubmissionResponseNonNullableFields = GetDeletedSubmissionResponseNonNullableFields;
|
|
5997
6833
|
type index_d_GetMediaUploadURLRequest = GetMediaUploadURLRequest;
|
|
5998
6834
|
type index_d_GetMediaUploadURLResponse = GetMediaUploadURLResponse;
|
|
6835
|
+
type index_d_GetMediaUploadURLResponseNonNullableFields = GetMediaUploadURLResponseNonNullableFields;
|
|
5999
6836
|
type index_d_GetSubmissionByCheckoutIdRequest = GetSubmissionByCheckoutIdRequest;
|
|
6000
6837
|
type index_d_GetSubmissionByCheckoutIdResponse = GetSubmissionByCheckoutIdResponse;
|
|
6001
6838
|
type index_d_GetSubmissionRequest = GetSubmissionRequest;
|
|
6002
6839
|
type index_d_GetSubmissionResponse = GetSubmissionResponse;
|
|
6840
|
+
type index_d_GetSubmissionResponseNonNullableFields = GetSubmissionResponseNonNullableFields;
|
|
6003
6841
|
type index_d_IdentificationData = IdentificationData;
|
|
6004
6842
|
type index_d_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
|
|
6005
6843
|
type index_d_IdentityType = IdentityType;
|
|
@@ -6008,6 +6846,7 @@ type index_d_ItemMetadata = ItemMetadata;
|
|
|
6008
6846
|
type index_d_ListDeletedSubmissionsOptions = ListDeletedSubmissionsOptions;
|
|
6009
6847
|
type index_d_ListDeletedSubmissionsRequest = ListDeletedSubmissionsRequest;
|
|
6010
6848
|
type index_d_ListDeletedSubmissionsResponse = ListDeletedSubmissionsResponse;
|
|
6849
|
+
type index_d_ListDeletedSubmissionsResponseNonNullableFields = ListDeletedSubmissionsResponseNonNullableFields;
|
|
6011
6850
|
type index_d_MarketingSubscriptionDetails = MarketingSubscriptionDetails;
|
|
6012
6851
|
type index_d_MessageEnvelope = MessageEnvelope;
|
|
6013
6852
|
type index_d_Mode = Mode;
|
|
@@ -6018,22 +6857,26 @@ type index_d_OrderDetails = OrderDetails;
|
|
|
6018
6857
|
type index_d_QuerySubmissionOptions = QuerySubmissionOptions;
|
|
6019
6858
|
type index_d_QuerySubmissionRequest = QuerySubmissionRequest;
|
|
6020
6859
|
type index_d_QuerySubmissionResponse = QuerySubmissionResponse;
|
|
6860
|
+
type index_d_QuerySubmissionResponseNonNullableFields = QuerySubmissionResponseNonNullableFields;
|
|
6021
6861
|
type index_d_QuerySubmissionsByNamespaceForExportRequest = QuerySubmissionsByNamespaceForExportRequest;
|
|
6022
6862
|
type index_d_QuerySubmissionsByNamespaceForExportResponse = QuerySubmissionsByNamespaceForExportResponse;
|
|
6023
6863
|
type index_d_QuerySubmissionsByNamespaceOptions = QuerySubmissionsByNamespaceOptions;
|
|
6024
6864
|
type index_d_QuerySubmissionsByNamespaceRequest = QuerySubmissionsByNamespaceRequest;
|
|
6025
6865
|
type index_d_QuerySubmissionsByNamespaceResponse = QuerySubmissionsByNamespaceResponse;
|
|
6866
|
+
type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields = QuerySubmissionsByNamespaceResponseNonNullableFields;
|
|
6026
6867
|
type index_d_RemoveSubmissionFromTrashBinRequest = RemoveSubmissionFromTrashBinRequest;
|
|
6027
6868
|
type index_d_RemoveSubmissionFromTrashBinResponse = RemoveSubmissionFromTrashBinResponse;
|
|
6028
6869
|
type index_d_RemovedSubmissionFromTrash = RemovedSubmissionFromTrash;
|
|
6029
6870
|
type index_d_RestoreInfo = RestoreInfo;
|
|
6030
6871
|
type index_d_RestoreSubmissionFromTrashBinRequest = RestoreSubmissionFromTrashBinRequest;
|
|
6031
6872
|
type index_d_RestoreSubmissionFromTrashBinResponse = RestoreSubmissionFromTrashBinResponse;
|
|
6873
|
+
type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields = RestoreSubmissionFromTrashBinResponseNonNullableFields;
|
|
6032
6874
|
type index_d_SearchDetails = SearchDetails;
|
|
6033
6875
|
type index_d_SearchSubmissionsByNamespaceForExportRequest = SearchSubmissionsByNamespaceForExportRequest;
|
|
6034
6876
|
type index_d_SearchSubmissionsByNamespaceForExportResponse = SearchSubmissionsByNamespaceForExportResponse;
|
|
6035
6877
|
type index_d_SearchSubmissionsByNamespaceRequest = SearchSubmissionsByNamespaceRequest;
|
|
6036
6878
|
type index_d_SearchSubmissionsByNamespaceResponse = SearchSubmissionsByNamespaceResponse;
|
|
6879
|
+
type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields = SearchSubmissionsByNamespaceResponseNonNullableFields;
|
|
6037
6880
|
type index_d_SortOrder = SortOrder;
|
|
6038
6881
|
declare const index_d_SortOrder: typeof SortOrder;
|
|
6039
6882
|
type index_d_Sorting = Sorting;
|
|
@@ -6056,12 +6899,13 @@ type index_d_SubmitterSubmitterOneOf = SubmitterSubmitterOneOf;
|
|
|
6056
6899
|
type index_d_UpdateSubmission = UpdateSubmission;
|
|
6057
6900
|
type index_d_UpdateSubmissionRequest = UpdateSubmissionRequest;
|
|
6058
6901
|
type index_d_UpdateSubmissionResponse = UpdateSubmissionResponse;
|
|
6902
|
+
type index_d_UpdateSubmissionResponseNonNullableFields = UpdateSubmissionResponseNonNullableFields;
|
|
6059
6903
|
type index_d_UpsertContactFromSubmissionOptions = UpsertContactFromSubmissionOptions;
|
|
6060
6904
|
type index_d_UpsertContactFromSubmissionRequest = UpsertContactFromSubmissionRequest;
|
|
6061
6905
|
type index_d_UpsertContactFromSubmissionResponse = UpsertContactFromSubmissionResponse;
|
|
6906
|
+
type index_d_UpsertContactFromSubmissionResponseNonNullableFields = UpsertContactFromSubmissionResponseNonNullableFields;
|
|
6062
6907
|
type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
6063
6908
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
6064
|
-
declare const index_d___metadata: typeof __metadata;
|
|
6065
6909
|
declare const index_d_bulkCreateSubmissionBySubmitter: typeof bulkCreateSubmissionBySubmitter;
|
|
6066
6910
|
declare const index_d_bulkDeleteSubmission: typeof bulkDeleteSubmission;
|
|
6067
6911
|
declare const index_d_bulkMarkSubmissionsAsSeen: typeof bulkMarkSubmissionsAsSeen;
|
|
@@ -6091,7 +6935,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
6091
6935
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
6092
6936
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
6093
6937
|
declare namespace index_d {
|
|
6094
|
-
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_BulkDeleteSubmissionOptions as BulkDeleteSubmissionOptions, type index_d_BulkDeleteSubmissionRequest as BulkDeleteSubmissionRequest, type index_d_BulkDeleteSubmissionResponse as BulkDeleteSubmissionResponse, 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_BulkRemoveSubmissionFromTrashBinResult as BulkRemoveSubmissionFromTrashBinResult, type index_d_BulkSubmissionResult as BulkSubmissionResult, type index_d_ConfirmSubmissionRequest as ConfirmSubmissionRequest, type index_d_ConfirmSubmissionResponse as ConfirmSubmissionResponse, type index_d_CountDeletedSubmissionsOptions as CountDeletedSubmissionsOptions, type index_d_CountDeletedSubmissionsRequest as CountDeletedSubmissionsRequest, type index_d_CountDeletedSubmissionsResponse as CountDeletedSubmissionsResponse, type index_d_CountSubmissionsByFilterOptions as CountSubmissionsByFilterOptions, type index_d_CountSubmissionsByFilterRequest as CountSubmissionsByFilterRequest, type index_d_CountSubmissionsByFilterResponse as CountSubmissionsByFilterResponse, type index_d_CountSubmissionsOptions as CountSubmissionsOptions, type index_d_CountSubmissionsRequest as CountSubmissionsRequest, type index_d_CountSubmissionsResponse as CountSubmissionsResponse, 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_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_FormSubmissionStatusUpdatedEvent as FormSubmissionStatusUpdatedEvent, type index_d_FormSubmissionsCount as FormSubmissionsCount, type index_d_GetDeletedSubmissionRequest as GetDeletedSubmissionRequest, type index_d_GetDeletedSubmissionResponse as GetDeletedSubmissionResponse, type index_d_GetMediaUploadURLRequest as GetMediaUploadURLRequest, type index_d_GetMediaUploadURLResponse as GetMediaUploadURLResponse, 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_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_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_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_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_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, 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_UpsertContactFromSubmissionOptions as UpsertContactFromSubmissionOptions, type index_d_UpsertContactFromSubmissionRequest as UpsertContactFromSubmissionRequest, type index_d_UpsertContactFromSubmissionResponse as UpsertContactFromSubmissionResponse, index_d_WebhookIdentityType as WebhookIdentityType, index_d___metadata as __metadata, 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 };
|
|
6938
|
+
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 };
|
|
6095
6939
|
}
|
|
6096
6940
|
|
|
6097
6941
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|