@wix/forms 1.0.106 → 1.0.107
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 +914 -7
- package/type-bundles/index.bundle.d.ts +991 -78
- 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 */
|
|
@@ -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,6 +3336,663 @@ declare enum WebhookIdentityType$2 {
|
|
|
3329
3336
|
WIX_USER = "WIX_USER",
|
|
3330
3337
|
APP = "APP"
|
|
3331
3338
|
}
|
|
3339
|
+
interface StringTypeNonNullableFields {
|
|
3340
|
+
format: Format;
|
|
3341
|
+
}
|
|
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[];
|
|
3660
|
+
}
|
|
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;
|
|
3792
|
+
}
|
|
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;
|
|
3955
|
+
}
|
|
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;
|
|
3995
|
+
}
|
|
3332
3996
|
interface BaseEventMetadata$2 {
|
|
3333
3997
|
/** App instance ID. */
|
|
3334
3998
|
instanceId?: string | null;
|
|
@@ -3356,7 +4020,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
3356
4020
|
slug?: string;
|
|
3357
4021
|
/** ID of the entity associated with the event. */
|
|
3358
4022
|
entityId?: string;
|
|
3359
|
-
/** Event timestamp. */
|
|
4023
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3360
4024
|
eventTime?: Date;
|
|
3361
4025
|
/**
|
|
3362
4026
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -3621,6 +4285,7 @@ interface UpdateExtendedFieldsOptions {
|
|
|
3621
4285
|
namespaceData: Record<string, any> | null;
|
|
3622
4286
|
}
|
|
3623
4287
|
|
|
4288
|
+
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
|
3624
4289
|
interface HttpClient {
|
|
3625
4290
|
request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
|
|
3626
4291
|
fetchWithAuth: typeof fetch;
|
|
@@ -3645,6 +4310,7 @@ type APIMetadata = {
|
|
|
3645
4310
|
entityFqdn?: string;
|
|
3646
4311
|
packageName?: string;
|
|
3647
4312
|
};
|
|
4313
|
+
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
3648
4314
|
type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
3649
4315
|
__type: 'event-definition';
|
|
3650
4316
|
type: Type;
|
|
@@ -3653,6 +4319,8 @@ type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
|
3653
4319
|
__payload: Payload;
|
|
3654
4320
|
};
|
|
3655
4321
|
declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
|
|
4322
|
+
type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
|
|
4323
|
+
type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
|
|
3656
4324
|
|
|
3657
4325
|
declare global {
|
|
3658
4326
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
@@ -3661,28 +4329,29 @@ declare global {
|
|
|
3661
4329
|
}
|
|
3662
4330
|
}
|
|
3663
4331
|
|
|
3664
|
-
declare
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
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
|
|
3683
|
-
declare const
|
|
3684
|
-
declare const
|
|
3685
|
-
declare const
|
|
4332
|
+
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4333
|
+
|
|
4334
|
+
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4335
|
+
|
|
4336
|
+
declare const createForm: ReturnType<typeof createRESTModule$2<typeof publicCreateForm>>;
|
|
4337
|
+
declare const bulkCreateForm: ReturnType<typeof createRESTModule$2<typeof publicBulkCreateForm>>;
|
|
4338
|
+
declare const cloneForm: ReturnType<typeof createRESTModule$2<typeof publicCloneForm>>;
|
|
4339
|
+
declare const getForm: ReturnType<typeof createRESTModule$2<typeof publicGetForm>>;
|
|
4340
|
+
declare const updateForm: ReturnType<typeof createRESTModule$2<typeof publicUpdateForm>>;
|
|
4341
|
+
declare const removeFormFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRemoveFormFromTrashBin>>;
|
|
4342
|
+
declare const deleteForm: ReturnType<typeof createRESTModule$2<typeof publicDeleteForm>>;
|
|
4343
|
+
declare const restoreFromTrashBin: ReturnType<typeof createRESTModule$2<typeof publicRestoreFromTrashBin>>;
|
|
4344
|
+
declare const queryForms: ReturnType<typeof createRESTModule$2<typeof publicQueryForms>>;
|
|
4345
|
+
declare const countForms: ReturnType<typeof createRESTModule$2<typeof publicCountForms>>;
|
|
4346
|
+
declare const listForms: ReturnType<typeof createRESTModule$2<typeof publicListForms>>;
|
|
4347
|
+
declare const getDeletedForm: ReturnType<typeof createRESTModule$2<typeof publicGetDeletedForm>>;
|
|
4348
|
+
declare const queryDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicQueryDeletedForms>>;
|
|
4349
|
+
declare const listDeletedForms: ReturnType<typeof createRESTModule$2<typeof publicListDeletedForms>>;
|
|
4350
|
+
declare const bulkRemoveDeletedField: ReturnType<typeof createRESTModule$2<typeof publicBulkRemoveDeletedField>>;
|
|
4351
|
+
declare const updateExtendedFields: ReturnType<typeof createRESTModule$2<typeof publicUpdateExtendedFields>>;
|
|
4352
|
+
declare const onFormCreated: ReturnType<typeof createEventModule$2<typeof publicOnFormCreated>>;
|
|
4353
|
+
declare const onFormUpdated: ReturnType<typeof createEventModule$2<typeof publicOnFormUpdated>>;
|
|
4354
|
+
declare const onFormSubmissionKeysPermanentlyDeleted: ReturnType<typeof createEventModule$2<typeof publicOnFormSubmissionKeysPermanentlyDeleted>>;
|
|
3686
4355
|
|
|
3687
4356
|
type index_d$2_AddressInfo = AddressInfo;
|
|
3688
4357
|
type index_d$2_AddressLine2 = AddressLine2;
|
|
@@ -3716,10 +4385,12 @@ type index_d$2_BreakPoint = BreakPoint;
|
|
|
3716
4385
|
type index_d$2_BulkCreateFormOptions = BulkCreateFormOptions;
|
|
3717
4386
|
type index_d$2_BulkCreateFormRequest = BulkCreateFormRequest;
|
|
3718
4387
|
type index_d$2_BulkCreateFormResponse = BulkCreateFormResponse;
|
|
4388
|
+
type index_d$2_BulkCreateFormResponseNonNullableFields = BulkCreateFormResponseNonNullableFields;
|
|
3719
4389
|
type index_d$2_BulkFormResult = BulkFormResult;
|
|
3720
4390
|
type index_d$2_BulkRemoveDeletedFieldOptions = BulkRemoveDeletedFieldOptions;
|
|
3721
4391
|
type index_d$2_BulkRemoveDeletedFieldRequest = BulkRemoveDeletedFieldRequest;
|
|
3722
4392
|
type index_d$2_BulkRemoveDeletedFieldResponse = BulkRemoveDeletedFieldResponse;
|
|
4393
|
+
type index_d$2_BulkRemoveDeletedFieldResponseNonNullableFields = BulkRemoveDeletedFieldResponseNonNullableFields;
|
|
3723
4394
|
type index_d$2_BulletedListData = BulletedListData;
|
|
3724
4395
|
type index_d$2_ButtonData = ButtonData;
|
|
3725
4396
|
type index_d$2_ButtonDataType = ButtonDataType;
|
|
@@ -3729,6 +4400,7 @@ type index_d$2_Checkbox = Checkbox;
|
|
|
3729
4400
|
type index_d$2_CheckboxGroup = CheckboxGroup;
|
|
3730
4401
|
type index_d$2_CloneFormRequest = CloneFormRequest;
|
|
3731
4402
|
type index_d$2_CloneFormResponse = CloneFormResponse;
|
|
4403
|
+
type index_d$2_CloneFormResponseNonNullableFields = CloneFormResponseNonNullableFields;
|
|
3732
4404
|
type index_d$2_CodeBlockData = CodeBlockData;
|
|
3733
4405
|
type index_d$2_CollapsibleListData = CollapsibleListData;
|
|
3734
4406
|
type index_d$2_ColorData = ColorData;
|
|
@@ -3743,8 +4415,10 @@ declare const index_d$2_CountFormsFieldset: typeof CountFormsFieldset;
|
|
|
3743
4415
|
type index_d$2_CountFormsOptions = CountFormsOptions;
|
|
3744
4416
|
type index_d$2_CountFormsRequest = CountFormsRequest;
|
|
3745
4417
|
type index_d$2_CountFormsResponse = CountFormsResponse;
|
|
4418
|
+
type index_d$2_CountFormsResponseNonNullableFields = CountFormsResponseNonNullableFields;
|
|
3746
4419
|
type index_d$2_CreateFormRequest = CreateFormRequest;
|
|
3747
4420
|
type index_d$2_CreateFormResponse = CreateFormResponse;
|
|
4421
|
+
type index_d$2_CreateFormResponseNonNullableFields = CreateFormResponseNonNullableFields;
|
|
3748
4422
|
type index_d$2_Crop = Crop;
|
|
3749
4423
|
declare const index_d$2_Crop: typeof Crop;
|
|
3750
4424
|
type index_d$2_CustomFieldInfo = CustomFieldInfo;
|
|
@@ -3815,6 +4489,7 @@ type index_d$2_FormFieldContactInfoAdditionalInfoOneOf = FormFieldContactInfoAdd
|
|
|
3815
4489
|
type index_d$2_FormFieldV2 = FormFieldV2;
|
|
3816
4490
|
type index_d$2_FormFieldV2FieldTypeOptionsOneOf = FormFieldV2FieldTypeOptionsOneOf;
|
|
3817
4491
|
type index_d$2_FormLayout = FormLayout;
|
|
4492
|
+
type index_d$2_FormNonNullableFields = FormNonNullableFields;
|
|
3818
4493
|
type index_d$2_FormOverride = FormOverride;
|
|
3819
4494
|
type index_d$2_FormProperties = FormProperties;
|
|
3820
4495
|
type index_d$2_FormRule = FormRule;
|
|
@@ -3832,9 +4507,11 @@ type index_d$2_GalleryData = GalleryData;
|
|
|
3832
4507
|
type index_d$2_GalleryOptions = GalleryOptions;
|
|
3833
4508
|
type index_d$2_GetDeletedFormRequest = GetDeletedFormRequest;
|
|
3834
4509
|
type index_d$2_GetDeletedFormResponse = GetDeletedFormResponse;
|
|
4510
|
+
type index_d$2_GetDeletedFormResponseNonNullableFields = GetDeletedFormResponseNonNullableFields;
|
|
3835
4511
|
type index_d$2_GetFormOptions = GetFormOptions;
|
|
3836
4512
|
type index_d$2_GetFormRequest = GetFormRequest;
|
|
3837
4513
|
type index_d$2_GetFormResponse = GetFormResponse;
|
|
4514
|
+
type index_d$2_GetFormResponseNonNullableFields = GetFormResponseNonNullableFields;
|
|
3838
4515
|
type index_d$2_Gradient = Gradient;
|
|
3839
4516
|
type index_d$2_HTMLData = HTMLData;
|
|
3840
4517
|
type index_d$2_HTMLDataDataOneOf = HTMLDataDataOneOf;
|
|
@@ -3889,11 +4566,13 @@ type index_d$2_ListDeletedFormsOrder = ListDeletedFormsOrder;
|
|
|
3889
4566
|
declare const index_d$2_ListDeletedFormsOrder: typeof ListDeletedFormsOrder;
|
|
3890
4567
|
type index_d$2_ListDeletedFormsRequest = ListDeletedFormsRequest;
|
|
3891
4568
|
type index_d$2_ListDeletedFormsResponse = ListDeletedFormsResponse;
|
|
4569
|
+
type index_d$2_ListDeletedFormsResponseNonNullableFields = ListDeletedFormsResponseNonNullableFields;
|
|
3892
4570
|
type index_d$2_ListFormsOptions = ListFormsOptions;
|
|
3893
4571
|
type index_d$2_ListFormsOrder = ListFormsOrder;
|
|
3894
4572
|
declare const index_d$2_ListFormsOrder: typeof ListFormsOrder;
|
|
3895
4573
|
type index_d$2_ListFormsRequest = ListFormsRequest;
|
|
3896
4574
|
type index_d$2_ListFormsResponse = ListFormsResponse;
|
|
4575
|
+
type index_d$2_ListFormsResponseNonNullableFields = ListFormsResponseNonNullableFields;
|
|
3897
4576
|
type index_d$2_ListValue = ListValue;
|
|
3898
4577
|
type index_d$2_MapData = MapData;
|
|
3899
4578
|
type index_d$2_MapSettings = MapSettings;
|
|
@@ -3986,9 +4665,11 @@ type index_d$2_PropertiesTypePropertiesTypeOneOf = PropertiesTypePropertiesTypeO
|
|
|
3986
4665
|
type index_d$2_QuantityLimit = QuantityLimit;
|
|
3987
4666
|
type index_d$2_QueryDeletedFormsRequest = QueryDeletedFormsRequest;
|
|
3988
4667
|
type index_d$2_QueryDeletedFormsResponse = QueryDeletedFormsResponse;
|
|
4668
|
+
type index_d$2_QueryDeletedFormsResponseNonNullableFields = QueryDeletedFormsResponseNonNullableFields;
|
|
3989
4669
|
type index_d$2_QueryFormsOptions = QueryFormsOptions;
|
|
3990
4670
|
type index_d$2_QueryFormsRequest = QueryFormsRequest;
|
|
3991
4671
|
type index_d$2_QueryFormsResponse = QueryFormsResponse;
|
|
4672
|
+
type index_d$2_QueryFormsResponseNonNullableFields = QueryFormsResponseNonNullableFields;
|
|
3992
4673
|
type index_d$2_RadioGroup = RadioGroup;
|
|
3993
4674
|
type index_d$2_RadioGroupCustomOption = RadioGroupCustomOption;
|
|
3994
4675
|
type index_d$2_RadioGroupOption = RadioGroupOption;
|
|
@@ -4004,6 +4685,7 @@ declare const index_d$2_RequiredIndicatorPlacement: typeof RequiredIndicatorPlac
|
|
|
4004
4685
|
type index_d$2_RequiredIndicatorProperties = RequiredIndicatorProperties;
|
|
4005
4686
|
type index_d$2_RestoreFromTrashBinRequest = RestoreFromTrashBinRequest;
|
|
4006
4687
|
type index_d$2_RestoreFromTrashBinResponse = RestoreFromTrashBinResponse;
|
|
4688
|
+
type index_d$2_RestoreFromTrashBinResponseNonNullableFields = RestoreFromTrashBinResponseNonNullableFields;
|
|
4007
4689
|
type index_d$2_RichContent = RichContent;
|
|
4008
4690
|
type index_d$2_RichText = RichText;
|
|
4009
4691
|
type index_d$2_Section = Section;
|
|
@@ -4049,9 +4731,11 @@ declare const index_d$2_Type: typeof Type;
|
|
|
4049
4731
|
type index_d$2_UpdateExtendedFieldsOptions = UpdateExtendedFieldsOptions;
|
|
4050
4732
|
type index_d$2_UpdateExtendedFieldsRequest = UpdateExtendedFieldsRequest;
|
|
4051
4733
|
type index_d$2_UpdateExtendedFieldsResponse = UpdateExtendedFieldsResponse;
|
|
4734
|
+
type index_d$2_UpdateExtendedFieldsResponseNonNullableFields = UpdateExtendedFieldsResponseNonNullableFields;
|
|
4052
4735
|
type index_d$2_UpdateForm = UpdateForm;
|
|
4053
4736
|
type index_d$2_UpdateFormRequest = UpdateFormRequest;
|
|
4054
4737
|
type index_d$2_UpdateFormResponse = UpdateFormResponse;
|
|
4738
|
+
type index_d$2_UpdateFormResponseNonNullableFields = UpdateFormResponseNonNullableFields;
|
|
4055
4739
|
type index_d$2_UploadFileFormat = UploadFileFormat;
|
|
4056
4740
|
declare const index_d$2_UploadFileFormat: typeof UploadFileFormat;
|
|
4057
4741
|
type index_d$2_UpsertContact = UpsertContact;
|
|
@@ -4107,7 +4791,7 @@ declare const index_d$2_restoreFromTrashBin: typeof restoreFromTrashBin;
|
|
|
4107
4791
|
declare const index_d$2_updateExtendedFields: typeof updateExtendedFields;
|
|
4108
4792
|
declare const index_d$2_updateForm: typeof updateForm;
|
|
4109
4793
|
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 };
|
|
4794
|
+
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_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 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_FormNonNullableFields as FormNonNullableFields, 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_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_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 };
|
|
4111
4795
|
}
|
|
4112
4796
|
|
|
4113
4797
|
/**
|
|
@@ -4656,6 +5340,96 @@ declare enum WebhookIdentityType$1 {
|
|
|
4656
5340
|
WIX_USER = "WIX_USER",
|
|
4657
5341
|
APP = "APP"
|
|
4658
5342
|
}
|
|
5343
|
+
interface SpamReportNonNullableFields {
|
|
5344
|
+
reportReason: ReportReason;
|
|
5345
|
+
}
|
|
5346
|
+
interface CheckForSpamResponseNonNullableFields {
|
|
5347
|
+
spam: boolean;
|
|
5348
|
+
spamReport?: SpamReportNonNullableFields;
|
|
5349
|
+
}
|
|
5350
|
+
interface OrderDetailsNonNullableFields$1 {
|
|
5351
|
+
checkoutId: string;
|
|
5352
|
+
}
|
|
5353
|
+
interface FormSpamSubmissionReportNonNullableFields {
|
|
5354
|
+
formId: string;
|
|
5355
|
+
namespace: string;
|
|
5356
|
+
reportReason: ReportReason;
|
|
5357
|
+
submissionStatusAtReport: SubmissionStatus$1;
|
|
5358
|
+
orderDetails?: OrderDetailsNonNullableFields$1;
|
|
5359
|
+
}
|
|
5360
|
+
interface CreateFormSpamSubmissionReportResponseNonNullableFields {
|
|
5361
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5362
|
+
}
|
|
5363
|
+
interface GetFormSpamSubmissionReportResponseNonNullableFields {
|
|
5364
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5365
|
+
}
|
|
5366
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
5367
|
+
code: string;
|
|
5368
|
+
description: string;
|
|
5369
|
+
}
|
|
5370
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
5371
|
+
originalIndex: number;
|
|
5372
|
+
success: boolean;
|
|
5373
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
5374
|
+
}
|
|
5375
|
+
interface BulkDeleteFormSpamSubmissionReportResultNonNullableFields {
|
|
5376
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5377
|
+
}
|
|
5378
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
5379
|
+
totalSuccesses: number;
|
|
5380
|
+
totalFailures: number;
|
|
5381
|
+
undetailedFailures: number;
|
|
5382
|
+
}
|
|
5383
|
+
interface BulkDeleteFormSpamSubmissionReportResponseNonNullableFields {
|
|
5384
|
+
results: BulkDeleteFormSpamSubmissionReportResultNonNullableFields[];
|
|
5385
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5386
|
+
}
|
|
5387
|
+
interface BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields {
|
|
5388
|
+
jobId: string;
|
|
5389
|
+
}
|
|
5390
|
+
interface FormSubmissionOrderDetailsNonNullableFields {
|
|
5391
|
+
itemSubtotal: string;
|
|
5392
|
+
checkoutId: string;
|
|
5393
|
+
}
|
|
5394
|
+
interface FormSubmissionNonNullableFields$1 {
|
|
5395
|
+
formId: string;
|
|
5396
|
+
namespace: string;
|
|
5397
|
+
status: SubmissionStatus$1;
|
|
5398
|
+
seen: boolean;
|
|
5399
|
+
orderDetails?: FormSubmissionOrderDetailsNonNullableFields;
|
|
5400
|
+
}
|
|
5401
|
+
interface ReportNotSpamSubmissionResponseNonNullableFields {
|
|
5402
|
+
submission?: FormSubmissionNonNullableFields$1;
|
|
5403
|
+
}
|
|
5404
|
+
interface BulkReportNotSpamSubmissionResultNonNullableFields {
|
|
5405
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5406
|
+
formSpamSubmissionReportId: string;
|
|
5407
|
+
}
|
|
5408
|
+
interface BulkReportNotSpamSubmissionResponseNonNullableFields {
|
|
5409
|
+
results: BulkReportNotSpamSubmissionResultNonNullableFields[];
|
|
5410
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5411
|
+
}
|
|
5412
|
+
interface ReportSpamSubmissionResponseNonNullableFields {
|
|
5413
|
+
formSpamSubmissionReport?: FormSpamSubmissionReportNonNullableFields;
|
|
5414
|
+
}
|
|
5415
|
+
interface BulkReportSpamSubmissionResultNonNullableFields {
|
|
5416
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
5417
|
+
item?: FormSpamSubmissionReportNonNullableFields;
|
|
5418
|
+
}
|
|
5419
|
+
interface BulkReportSpamSubmissionResponseNonNullableFields {
|
|
5420
|
+
results: BulkReportSpamSubmissionResultNonNullableFields[];
|
|
5421
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
5422
|
+
}
|
|
5423
|
+
interface QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields {
|
|
5424
|
+
formSpamSubmissionReports: FormSpamSubmissionReportNonNullableFields[];
|
|
5425
|
+
}
|
|
5426
|
+
interface FormSpamSubmissionReportsCountNonNullableFields {
|
|
5427
|
+
formId: string;
|
|
5428
|
+
totalCount: number;
|
|
5429
|
+
}
|
|
5430
|
+
interface CountFormSpamSubmissionReportsResponseNonNullableFields {
|
|
5431
|
+
formsSpamSubmissionReportsCount: FormSpamSubmissionReportsCountNonNullableFields[];
|
|
5432
|
+
}
|
|
4659
5433
|
interface BaseEventMetadata$1 {
|
|
4660
5434
|
/** App instance ID. */
|
|
4661
5435
|
instanceId?: string | null;
|
|
@@ -4792,63 +5566,76 @@ interface FormSpamSubmissionReportsQueryBuilder {
|
|
|
4792
5566
|
find: () => Promise<FormSpamSubmissionReportsQueryResult>;
|
|
4793
5567
|
}
|
|
4794
5568
|
|
|
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
|
|
5569
|
+
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
5570
|
+
|
|
5571
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5572
|
+
|
|
5573
|
+
declare const checkForSpam: ReturnType<typeof createRESTModule$1<typeof publicCheckForSpam>>;
|
|
5574
|
+
declare const createFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicCreateFormSpamSubmissionReport>>;
|
|
5575
|
+
declare const getFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicGetFormSpamSubmissionReport>>;
|
|
5576
|
+
declare const deleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicDeleteFormSpamSubmissionReport>>;
|
|
5577
|
+
declare const bulkDeleteFormSpamSubmissionReport: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReport>>;
|
|
5578
|
+
declare const bulkDeleteFormSpamSubmissionReportByFilter: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteFormSpamSubmissionReportByFilter>>;
|
|
5579
|
+
declare const reportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportNotSpamSubmission>>;
|
|
5580
|
+
declare const bulkReportNotSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportNotSpamSubmission>>;
|
|
5581
|
+
declare const reportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicReportSpamSubmission>>;
|
|
5582
|
+
declare const bulkReportSpamSubmission: ReturnType<typeof createRESTModule$1<typeof publicBulkReportSpamSubmission>>;
|
|
5583
|
+
declare const queryFormSpamSubmissionReportsByNamespace: ReturnType<typeof createRESTModule$1<typeof publicQueryFormSpamSubmissionReportsByNamespace>>;
|
|
5584
|
+
declare const countFormSpamSubmissionReports: ReturnType<typeof createRESTModule$1<typeof publicCountFormSpamSubmissionReports>>;
|
|
5585
|
+
declare const onFormSpamSubmissionReportCreated: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportCreated>>;
|
|
5586
|
+
declare const onFormSpamSubmissionReportDeleted: ReturnType<typeof createEventModule$1<typeof publicOnFormSpamSubmissionReportDeleted>>;
|
|
4812
5587
|
|
|
4813
5588
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterRequest = BulkDeleteFormSpamSubmissionReportByFilterRequest;
|
|
4814
5589
|
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponse = BulkDeleteFormSpamSubmissionReportByFilterResponse;
|
|
5590
|
+
type index_d$1_BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields = BulkDeleteFormSpamSubmissionReportByFilterResponseNonNullableFields;
|
|
4815
5591
|
type index_d$1_BulkDeleteFormSpamSubmissionReportOptions = BulkDeleteFormSpamSubmissionReportOptions;
|
|
4816
5592
|
type index_d$1_BulkDeleteFormSpamSubmissionReportRequest = BulkDeleteFormSpamSubmissionReportRequest;
|
|
4817
5593
|
type index_d$1_BulkDeleteFormSpamSubmissionReportResponse = BulkDeleteFormSpamSubmissionReportResponse;
|
|
5594
|
+
type index_d$1_BulkDeleteFormSpamSubmissionReportResponseNonNullableFields = BulkDeleteFormSpamSubmissionReportResponseNonNullableFields;
|
|
4818
5595
|
type index_d$1_BulkDeleteFormSpamSubmissionReportResult = BulkDeleteFormSpamSubmissionReportResult;
|
|
4819
5596
|
type index_d$1_BulkReportNotSpamSubmissionOptions = BulkReportNotSpamSubmissionOptions;
|
|
4820
5597
|
type index_d$1_BulkReportNotSpamSubmissionRequest = BulkReportNotSpamSubmissionRequest;
|
|
4821
5598
|
type index_d$1_BulkReportNotSpamSubmissionResponse = BulkReportNotSpamSubmissionResponse;
|
|
5599
|
+
type index_d$1_BulkReportNotSpamSubmissionResponseNonNullableFields = BulkReportNotSpamSubmissionResponseNonNullableFields;
|
|
4822
5600
|
type index_d$1_BulkReportNotSpamSubmissionResult = BulkReportNotSpamSubmissionResult;
|
|
4823
5601
|
type index_d$1_BulkReportSpamSubmissionOptions = BulkReportSpamSubmissionOptions;
|
|
4824
5602
|
type index_d$1_BulkReportSpamSubmissionRequest = BulkReportSpamSubmissionRequest;
|
|
4825
5603
|
type index_d$1_BulkReportSpamSubmissionResponse = BulkReportSpamSubmissionResponse;
|
|
5604
|
+
type index_d$1_BulkReportSpamSubmissionResponseNonNullableFields = BulkReportSpamSubmissionResponseNonNullableFields;
|
|
4826
5605
|
type index_d$1_BulkReportSpamSubmissionResult = BulkReportSpamSubmissionResult;
|
|
4827
5606
|
type index_d$1_CheckForSpamRequest = CheckForSpamRequest;
|
|
4828
5607
|
type index_d$1_CheckForSpamResponse = CheckForSpamResponse;
|
|
5608
|
+
type index_d$1_CheckForSpamResponseNonNullableFields = CheckForSpamResponseNonNullableFields;
|
|
4829
5609
|
type index_d$1_CountFormSpamSubmissionReportsRequest = CountFormSpamSubmissionReportsRequest;
|
|
4830
5610
|
type index_d$1_CountFormSpamSubmissionReportsResponse = CountFormSpamSubmissionReportsResponse;
|
|
5611
|
+
type index_d$1_CountFormSpamSubmissionReportsResponseNonNullableFields = CountFormSpamSubmissionReportsResponseNonNullableFields;
|
|
4831
5612
|
type index_d$1_CreateFormSpamSubmissionReportRequest = CreateFormSpamSubmissionReportRequest;
|
|
4832
5613
|
type index_d$1_CreateFormSpamSubmissionReportResponse = CreateFormSpamSubmissionReportResponse;
|
|
5614
|
+
type index_d$1_CreateFormSpamSubmissionReportResponseNonNullableFields = CreateFormSpamSubmissionReportResponseNonNullableFields;
|
|
4833
5615
|
type index_d$1_DeleteFormSpamSubmissionReportRequest = DeleteFormSpamSubmissionReportRequest;
|
|
4834
5616
|
type index_d$1_DeleteFormSpamSubmissionReportResponse = DeleteFormSpamSubmissionReportResponse;
|
|
4835
5617
|
type index_d$1_FormSpamSubmissionReport = FormSpamSubmissionReport;
|
|
4836
5618
|
type index_d$1_FormSpamSubmissionReportCreatedEnvelope = FormSpamSubmissionReportCreatedEnvelope;
|
|
4837
5619
|
type index_d$1_FormSpamSubmissionReportDeletedEnvelope = FormSpamSubmissionReportDeletedEnvelope;
|
|
5620
|
+
type index_d$1_FormSpamSubmissionReportNonNullableFields = FormSpamSubmissionReportNonNullableFields;
|
|
4838
5621
|
type index_d$1_FormSpamSubmissionReportsCount = FormSpamSubmissionReportsCount;
|
|
4839
5622
|
type index_d$1_FormSpamSubmissionReportsQueryBuilder = FormSpamSubmissionReportsQueryBuilder;
|
|
4840
5623
|
type index_d$1_FormSpamSubmissionReportsQueryResult = FormSpamSubmissionReportsQueryResult;
|
|
4841
5624
|
type index_d$1_FormSubmissionOrderDetails = FormSubmissionOrderDetails;
|
|
4842
5625
|
type index_d$1_GetFormSpamSubmissionReportRequest = GetFormSpamSubmissionReportRequest;
|
|
4843
5626
|
type index_d$1_GetFormSpamSubmissionReportResponse = GetFormSpamSubmissionReportResponse;
|
|
5627
|
+
type index_d$1_GetFormSpamSubmissionReportResponseNonNullableFields = GetFormSpamSubmissionReportResponseNonNullableFields;
|
|
4844
5628
|
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceRequest = QueryFormSpamSubmissionReportsByNamespaceRequest;
|
|
4845
5629
|
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponse = QueryFormSpamSubmissionReportsByNamespaceResponse;
|
|
5630
|
+
type index_d$1_QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields = QueryFormSpamSubmissionReportsByNamespaceResponseNonNullableFields;
|
|
4846
5631
|
type index_d$1_ReportNotSpamSubmissionRequest = ReportNotSpamSubmissionRequest;
|
|
4847
5632
|
type index_d$1_ReportNotSpamSubmissionResponse = ReportNotSpamSubmissionResponse;
|
|
5633
|
+
type index_d$1_ReportNotSpamSubmissionResponseNonNullableFields = ReportNotSpamSubmissionResponseNonNullableFields;
|
|
4848
5634
|
type index_d$1_ReportReason = ReportReason;
|
|
4849
5635
|
declare const index_d$1_ReportReason: typeof ReportReason;
|
|
4850
5636
|
type index_d$1_ReportSpamSubmissionRequest = ReportSpamSubmissionRequest;
|
|
4851
5637
|
type index_d$1_ReportSpamSubmissionResponse = ReportSpamSubmissionResponse;
|
|
5638
|
+
type index_d$1_ReportSpamSubmissionResponseNonNullableFields = ReportSpamSubmissionResponseNonNullableFields;
|
|
4852
5639
|
type index_d$1_SpamReport = SpamReport;
|
|
4853
5640
|
declare const index_d$1_bulkDeleteFormSpamSubmissionReport: typeof bulkDeleteFormSpamSubmissionReport;
|
|
4854
5641
|
declare const index_d$1_bulkDeleteFormSpamSubmissionReportByFilter: typeof bulkDeleteFormSpamSubmissionReportByFilter;
|
|
@@ -4865,7 +5652,7 @@ declare const index_d$1_queryFormSpamSubmissionReportsByNamespace: typeof queryF
|
|
|
4865
5652
|
declare const index_d$1_reportNotSpamSubmission: typeof reportNotSpamSubmission;
|
|
4866
5653
|
declare const index_d$1_reportSpamSubmission: typeof reportSpamSubmission;
|
|
4867
5654
|
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,
|
|
5655
|
+
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
5656
|
}
|
|
4870
5657
|
|
|
4871
5658
|
/** Form submission that was created or retrieved. */
|
|
@@ -5633,6 +6420,113 @@ interface SubmissionContactMappingSkipped {
|
|
|
5633
6420
|
/** Identifies the namespace that the submission's form belongs to. */
|
|
5634
6421
|
namespace?: string;
|
|
5635
6422
|
}
|
|
6423
|
+
interface OrderDetailsNonNullableFields {
|
|
6424
|
+
itemSubtotal: string;
|
|
6425
|
+
checkoutId: string;
|
|
6426
|
+
}
|
|
6427
|
+
interface FormSubmissionNonNullableFields {
|
|
6428
|
+
formId: string;
|
|
6429
|
+
namespace: string;
|
|
6430
|
+
status: SubmissionStatus;
|
|
6431
|
+
seen: boolean;
|
|
6432
|
+
orderDetails?: OrderDetailsNonNullableFields;
|
|
6433
|
+
}
|
|
6434
|
+
interface CreateSubmissionResponseNonNullableFields {
|
|
6435
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6436
|
+
}
|
|
6437
|
+
interface ApplicationErrorNonNullableFields {
|
|
6438
|
+
code: string;
|
|
6439
|
+
description: string;
|
|
6440
|
+
}
|
|
6441
|
+
interface ItemMetadataNonNullableFields {
|
|
6442
|
+
originalIndex: number;
|
|
6443
|
+
success: boolean;
|
|
6444
|
+
error?: ApplicationErrorNonNullableFields;
|
|
6445
|
+
}
|
|
6446
|
+
interface BulkSubmissionResultNonNullableFields {
|
|
6447
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6448
|
+
item?: FormSubmissionNonNullableFields;
|
|
6449
|
+
}
|
|
6450
|
+
interface BulkActionMetadataNonNullableFields {
|
|
6451
|
+
totalSuccesses: number;
|
|
6452
|
+
totalFailures: number;
|
|
6453
|
+
undetailedFailures: number;
|
|
6454
|
+
}
|
|
6455
|
+
interface BulkCreateSubmissionBySubmitterResponseNonNullableFields {
|
|
6456
|
+
results: BulkSubmissionResultNonNullableFields[];
|
|
6457
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6458
|
+
}
|
|
6459
|
+
interface GetSubmissionResponseNonNullableFields {
|
|
6460
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6461
|
+
}
|
|
6462
|
+
interface UpdateSubmissionResponseNonNullableFields {
|
|
6463
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6464
|
+
}
|
|
6465
|
+
interface ConfirmSubmissionResponseNonNullableFields {
|
|
6466
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6467
|
+
}
|
|
6468
|
+
interface BulkDeleteSubmissionResultNonNullableFields {
|
|
6469
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6470
|
+
}
|
|
6471
|
+
interface BulkDeleteSubmissionResponseNonNullableFields {
|
|
6472
|
+
results: BulkDeleteSubmissionResultNonNullableFields[];
|
|
6473
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6474
|
+
}
|
|
6475
|
+
interface RestoreSubmissionFromTrashBinResponseNonNullableFields {
|
|
6476
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6477
|
+
}
|
|
6478
|
+
interface BulkRemoveSubmissionFromTrashBinResultNonNullableFields {
|
|
6479
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
6480
|
+
}
|
|
6481
|
+
interface BulkRemoveSubmissionFromTrashBinResponseNonNullableFields {
|
|
6482
|
+
results: BulkRemoveSubmissionFromTrashBinResultNonNullableFields[];
|
|
6483
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
6484
|
+
}
|
|
6485
|
+
interface ListDeletedSubmissionsResponseNonNullableFields {
|
|
6486
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6487
|
+
}
|
|
6488
|
+
interface GetDeletedSubmissionResponseNonNullableFields {
|
|
6489
|
+
submission?: FormSubmissionNonNullableFields;
|
|
6490
|
+
}
|
|
6491
|
+
interface QuerySubmissionResponseNonNullableFields {
|
|
6492
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6493
|
+
}
|
|
6494
|
+
interface SearchSubmissionsByNamespaceResponseNonNullableFields {
|
|
6495
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6496
|
+
}
|
|
6497
|
+
interface QuerySubmissionsByNamespaceResponseNonNullableFields {
|
|
6498
|
+
submissions: FormSubmissionNonNullableFields[];
|
|
6499
|
+
}
|
|
6500
|
+
interface FormSubmissionsCountNonNullableFields {
|
|
6501
|
+
formId: string;
|
|
6502
|
+
totalCount: number;
|
|
6503
|
+
unseenCount: number;
|
|
6504
|
+
}
|
|
6505
|
+
interface CountSubmissionsByFilterResponseNonNullableFields {
|
|
6506
|
+
formsSubmissionsCount: FormSubmissionsCountNonNullableFields[];
|
|
6507
|
+
}
|
|
6508
|
+
interface CountSubmissionsResponseNonNullableFields {
|
|
6509
|
+
formsSubmissionsCount: FormSubmissionsCountNonNullableFields[];
|
|
6510
|
+
}
|
|
6511
|
+
interface FormDeletedSubmissionsCountNonNullableFields {
|
|
6512
|
+
formId: string;
|
|
6513
|
+
totalCount: number;
|
|
6514
|
+
}
|
|
6515
|
+
interface CountDeletedSubmissionsResponseNonNullableFields {
|
|
6516
|
+
formsDeletedSubmissionsCount: FormDeletedSubmissionsCountNonNullableFields[];
|
|
6517
|
+
}
|
|
6518
|
+
interface GetMediaUploadURLResponseNonNullableFields {
|
|
6519
|
+
uploadUrl: string;
|
|
6520
|
+
generatedByMediaPlatform: boolean;
|
|
6521
|
+
}
|
|
6522
|
+
interface SubmitContactResponseNonNullableFields {
|
|
6523
|
+
contactId: string;
|
|
6524
|
+
identityType: IdentityType;
|
|
6525
|
+
newContact: boolean;
|
|
6526
|
+
}
|
|
6527
|
+
interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
6528
|
+
submitContactResponse?: SubmitContactResponseNonNullableFields;
|
|
6529
|
+
}
|
|
5636
6530
|
interface BaseEventMetadata {
|
|
5637
6531
|
/** App instance ID. */
|
|
5638
6532
|
instanceId?: string | null;
|
|
@@ -5903,37 +6797,38 @@ interface UpsertContactFromSubmissionOptions {
|
|
|
5903
6797
|
emailVerified?: boolean;
|
|
5904
6798
|
}
|
|
5905
6799
|
|
|
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
|
|
6800
|
+
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
6801
|
+
|
|
6802
|
+
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
6803
|
+
|
|
6804
|
+
declare const createSubmission: ReturnType<typeof createRESTModule<typeof publicCreateSubmission>>;
|
|
6805
|
+
declare const bulkCreateSubmissionBySubmitter: ReturnType<typeof createRESTModule<typeof publicBulkCreateSubmissionBySubmitter>>;
|
|
6806
|
+
declare const getSubmission: ReturnType<typeof createRESTModule<typeof publicGetSubmission>>;
|
|
6807
|
+
declare const updateSubmission: ReturnType<typeof createRESTModule<typeof publicUpdateSubmission>>;
|
|
6808
|
+
declare const confirmSubmission: ReturnType<typeof createRESTModule<typeof publicConfirmSubmission>>;
|
|
6809
|
+
declare const deleteSubmission: ReturnType<typeof createRESTModule<typeof publicDeleteSubmission>>;
|
|
6810
|
+
declare const bulkDeleteSubmission: ReturnType<typeof createRESTModule<typeof publicBulkDeleteSubmission>>;
|
|
6811
|
+
declare const restoreSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRestoreSubmissionFromTrashBin>>;
|
|
6812
|
+
declare const removeSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicRemoveSubmissionFromTrashBin>>;
|
|
6813
|
+
declare const bulkRemoveSubmissionFromTrashBin: ReturnType<typeof createRESTModule<typeof publicBulkRemoveSubmissionFromTrashBin>>;
|
|
6814
|
+
declare const listDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicListDeletedSubmissions>>;
|
|
6815
|
+
declare const getDeletedSubmission: ReturnType<typeof createRESTModule<typeof publicGetDeletedSubmission>>;
|
|
6816
|
+
declare const querySubmission: ReturnType<typeof createRESTModule<typeof publicQuerySubmission>>;
|
|
6817
|
+
declare const searchSubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicSearchSubmissionsByNamespace>>;
|
|
6818
|
+
declare const querySubmissionsByNamespace: ReturnType<typeof createRESTModule<typeof publicQuerySubmissionsByNamespace>>;
|
|
6819
|
+
declare const countSubmissionsByFilter: ReturnType<typeof createRESTModule<typeof publicCountSubmissionsByFilter>>;
|
|
6820
|
+
declare const countSubmissions: ReturnType<typeof createRESTModule<typeof publicCountSubmissions>>;
|
|
6821
|
+
declare const countDeletedSubmissions: ReturnType<typeof createRESTModule<typeof publicCountDeletedSubmissions>>;
|
|
6822
|
+
declare const getMediaUploadUrl: ReturnType<typeof createRESTModule<typeof publicGetMediaUploadUrl>>;
|
|
6823
|
+
declare const bulkMarkSubmissionsAsSeen: ReturnType<typeof createRESTModule<typeof publicBulkMarkSubmissionsAsSeen>>;
|
|
6824
|
+
declare const upsertContactFromSubmission: ReturnType<typeof createRESTModule<typeof publicUpsertContactFromSubmission>>;
|
|
6825
|
+
declare const onSubmissionCreated: ReturnType<typeof createEventModule<typeof publicOnSubmissionCreated>>;
|
|
6826
|
+
declare const onSubmissionUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionUpdated>>;
|
|
6827
|
+
declare const onSubmissionStatusUpdated: ReturnType<typeof createEventModule<typeof publicOnSubmissionStatusUpdated>>;
|
|
6828
|
+
declare const onSubmissionDeleted: ReturnType<typeof createEventModule<typeof publicOnSubmissionDeleted>>;
|
|
6829
|
+
declare const onSubmissionRemovedSubmissionFromTrash: ReturnType<typeof createEventModule<typeof publicOnSubmissionRemovedSubmissionFromTrash>>;
|
|
6830
|
+
declare const onSubmissionContactMapped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMapped>>;
|
|
6831
|
+
declare const onSubmissionContactMappingSkipped: ReturnType<typeof createEventModule<typeof publicOnSubmissionContactMappingSkipped>>;
|
|
5937
6832
|
|
|
5938
6833
|
type index_d_ActionEvent = ActionEvent;
|
|
5939
6834
|
type index_d_ApplicationError = ApplicationError;
|
|
@@ -5943,33 +6838,41 @@ type index_d_BulkCreateSubmissionBySubmitterData = BulkCreateSubmissionBySubmitt
|
|
|
5943
6838
|
type index_d_BulkCreateSubmissionBySubmitterOptions = BulkCreateSubmissionBySubmitterOptions;
|
|
5944
6839
|
type index_d_BulkCreateSubmissionBySubmitterRequest = BulkCreateSubmissionBySubmitterRequest;
|
|
5945
6840
|
type index_d_BulkCreateSubmissionBySubmitterResponse = BulkCreateSubmissionBySubmitterResponse;
|
|
6841
|
+
type index_d_BulkCreateSubmissionBySubmitterResponseNonNullableFields = BulkCreateSubmissionBySubmitterResponseNonNullableFields;
|
|
5946
6842
|
type index_d_BulkDeleteSubmissionOptions = BulkDeleteSubmissionOptions;
|
|
5947
6843
|
type index_d_BulkDeleteSubmissionRequest = BulkDeleteSubmissionRequest;
|
|
5948
6844
|
type index_d_BulkDeleteSubmissionResponse = BulkDeleteSubmissionResponse;
|
|
6845
|
+
type index_d_BulkDeleteSubmissionResponseNonNullableFields = BulkDeleteSubmissionResponseNonNullableFields;
|
|
5949
6846
|
type index_d_BulkDeleteSubmissionResult = BulkDeleteSubmissionResult;
|
|
5950
6847
|
type index_d_BulkMarkSubmissionsAsSeenRequest = BulkMarkSubmissionsAsSeenRequest;
|
|
5951
6848
|
type index_d_BulkMarkSubmissionsAsSeenResponse = BulkMarkSubmissionsAsSeenResponse;
|
|
5952
6849
|
type index_d_BulkRemoveSubmissionFromTrashBinOptions = BulkRemoveSubmissionFromTrashBinOptions;
|
|
5953
6850
|
type index_d_BulkRemoveSubmissionFromTrashBinRequest = BulkRemoveSubmissionFromTrashBinRequest;
|
|
5954
6851
|
type index_d_BulkRemoveSubmissionFromTrashBinResponse = BulkRemoveSubmissionFromTrashBinResponse;
|
|
6852
|
+
type index_d_BulkRemoveSubmissionFromTrashBinResponseNonNullableFields = BulkRemoveSubmissionFromTrashBinResponseNonNullableFields;
|
|
5955
6853
|
type index_d_BulkRemoveSubmissionFromTrashBinResult = BulkRemoveSubmissionFromTrashBinResult;
|
|
5956
6854
|
type index_d_BulkSubmissionResult = BulkSubmissionResult;
|
|
5957
6855
|
type index_d_ConfirmSubmissionRequest = ConfirmSubmissionRequest;
|
|
5958
6856
|
type index_d_ConfirmSubmissionResponse = ConfirmSubmissionResponse;
|
|
6857
|
+
type index_d_ConfirmSubmissionResponseNonNullableFields = ConfirmSubmissionResponseNonNullableFields;
|
|
5959
6858
|
type index_d_CountDeletedSubmissionsOptions = CountDeletedSubmissionsOptions;
|
|
5960
6859
|
type index_d_CountDeletedSubmissionsRequest = CountDeletedSubmissionsRequest;
|
|
5961
6860
|
type index_d_CountDeletedSubmissionsResponse = CountDeletedSubmissionsResponse;
|
|
6861
|
+
type index_d_CountDeletedSubmissionsResponseNonNullableFields = CountDeletedSubmissionsResponseNonNullableFields;
|
|
5962
6862
|
type index_d_CountSubmissionsByFilterOptions = CountSubmissionsByFilterOptions;
|
|
5963
6863
|
type index_d_CountSubmissionsByFilterRequest = CountSubmissionsByFilterRequest;
|
|
5964
6864
|
type index_d_CountSubmissionsByFilterResponse = CountSubmissionsByFilterResponse;
|
|
6865
|
+
type index_d_CountSubmissionsByFilterResponseNonNullableFields = CountSubmissionsByFilterResponseNonNullableFields;
|
|
5965
6866
|
type index_d_CountSubmissionsOptions = CountSubmissionsOptions;
|
|
5966
6867
|
type index_d_CountSubmissionsRequest = CountSubmissionsRequest;
|
|
5967
6868
|
type index_d_CountSubmissionsResponse = CountSubmissionsResponse;
|
|
6869
|
+
type index_d_CountSubmissionsResponseNonNullableFields = CountSubmissionsResponseNonNullableFields;
|
|
5968
6870
|
type index_d_CreateSubmissionBySubmitterRequest = CreateSubmissionBySubmitterRequest;
|
|
5969
6871
|
type index_d_CreateSubmissionBySubmitterResponse = CreateSubmissionBySubmitterResponse;
|
|
5970
6872
|
type index_d_CreateSubmissionOptions = CreateSubmissionOptions;
|
|
5971
6873
|
type index_d_CreateSubmissionRequest = CreateSubmissionRequest;
|
|
5972
6874
|
type index_d_CreateSubmissionResponse = CreateSubmissionResponse;
|
|
6875
|
+
type index_d_CreateSubmissionResponseNonNullableFields = CreateSubmissionResponseNonNullableFields;
|
|
5973
6876
|
type index_d_CursorPaging = CursorPaging;
|
|
5974
6877
|
type index_d_CursorPagingMetadata = CursorPagingMetadata;
|
|
5975
6878
|
type index_d_CursorQuery = CursorQuery;
|
|
@@ -5990,16 +6893,20 @@ type index_d_EventMetadata = EventMetadata;
|
|
|
5990
6893
|
type index_d_ExtendedFields = ExtendedFields;
|
|
5991
6894
|
type index_d_FormDeletedSubmissionsCount = FormDeletedSubmissionsCount;
|
|
5992
6895
|
type index_d_FormSubmission = FormSubmission;
|
|
6896
|
+
type index_d_FormSubmissionNonNullableFields = FormSubmissionNonNullableFields;
|
|
5993
6897
|
type index_d_FormSubmissionStatusUpdatedEvent = FormSubmissionStatusUpdatedEvent;
|
|
5994
6898
|
type index_d_FormSubmissionsCount = FormSubmissionsCount;
|
|
5995
6899
|
type index_d_GetDeletedSubmissionRequest = GetDeletedSubmissionRequest;
|
|
5996
6900
|
type index_d_GetDeletedSubmissionResponse = GetDeletedSubmissionResponse;
|
|
6901
|
+
type index_d_GetDeletedSubmissionResponseNonNullableFields = GetDeletedSubmissionResponseNonNullableFields;
|
|
5997
6902
|
type index_d_GetMediaUploadURLRequest = GetMediaUploadURLRequest;
|
|
5998
6903
|
type index_d_GetMediaUploadURLResponse = GetMediaUploadURLResponse;
|
|
6904
|
+
type index_d_GetMediaUploadURLResponseNonNullableFields = GetMediaUploadURLResponseNonNullableFields;
|
|
5999
6905
|
type index_d_GetSubmissionByCheckoutIdRequest = GetSubmissionByCheckoutIdRequest;
|
|
6000
6906
|
type index_d_GetSubmissionByCheckoutIdResponse = GetSubmissionByCheckoutIdResponse;
|
|
6001
6907
|
type index_d_GetSubmissionRequest = GetSubmissionRequest;
|
|
6002
6908
|
type index_d_GetSubmissionResponse = GetSubmissionResponse;
|
|
6909
|
+
type index_d_GetSubmissionResponseNonNullableFields = GetSubmissionResponseNonNullableFields;
|
|
6003
6910
|
type index_d_IdentificationData = IdentificationData;
|
|
6004
6911
|
type index_d_IdentificationDataIdOneOf = IdentificationDataIdOneOf;
|
|
6005
6912
|
type index_d_IdentityType = IdentityType;
|
|
@@ -6008,6 +6915,7 @@ type index_d_ItemMetadata = ItemMetadata;
|
|
|
6008
6915
|
type index_d_ListDeletedSubmissionsOptions = ListDeletedSubmissionsOptions;
|
|
6009
6916
|
type index_d_ListDeletedSubmissionsRequest = ListDeletedSubmissionsRequest;
|
|
6010
6917
|
type index_d_ListDeletedSubmissionsResponse = ListDeletedSubmissionsResponse;
|
|
6918
|
+
type index_d_ListDeletedSubmissionsResponseNonNullableFields = ListDeletedSubmissionsResponseNonNullableFields;
|
|
6011
6919
|
type index_d_MarketingSubscriptionDetails = MarketingSubscriptionDetails;
|
|
6012
6920
|
type index_d_MessageEnvelope = MessageEnvelope;
|
|
6013
6921
|
type index_d_Mode = Mode;
|
|
@@ -6018,22 +6926,26 @@ type index_d_OrderDetails = OrderDetails;
|
|
|
6018
6926
|
type index_d_QuerySubmissionOptions = QuerySubmissionOptions;
|
|
6019
6927
|
type index_d_QuerySubmissionRequest = QuerySubmissionRequest;
|
|
6020
6928
|
type index_d_QuerySubmissionResponse = QuerySubmissionResponse;
|
|
6929
|
+
type index_d_QuerySubmissionResponseNonNullableFields = QuerySubmissionResponseNonNullableFields;
|
|
6021
6930
|
type index_d_QuerySubmissionsByNamespaceForExportRequest = QuerySubmissionsByNamespaceForExportRequest;
|
|
6022
6931
|
type index_d_QuerySubmissionsByNamespaceForExportResponse = QuerySubmissionsByNamespaceForExportResponse;
|
|
6023
6932
|
type index_d_QuerySubmissionsByNamespaceOptions = QuerySubmissionsByNamespaceOptions;
|
|
6024
6933
|
type index_d_QuerySubmissionsByNamespaceRequest = QuerySubmissionsByNamespaceRequest;
|
|
6025
6934
|
type index_d_QuerySubmissionsByNamespaceResponse = QuerySubmissionsByNamespaceResponse;
|
|
6935
|
+
type index_d_QuerySubmissionsByNamespaceResponseNonNullableFields = QuerySubmissionsByNamespaceResponseNonNullableFields;
|
|
6026
6936
|
type index_d_RemoveSubmissionFromTrashBinRequest = RemoveSubmissionFromTrashBinRequest;
|
|
6027
6937
|
type index_d_RemoveSubmissionFromTrashBinResponse = RemoveSubmissionFromTrashBinResponse;
|
|
6028
6938
|
type index_d_RemovedSubmissionFromTrash = RemovedSubmissionFromTrash;
|
|
6029
6939
|
type index_d_RestoreInfo = RestoreInfo;
|
|
6030
6940
|
type index_d_RestoreSubmissionFromTrashBinRequest = RestoreSubmissionFromTrashBinRequest;
|
|
6031
6941
|
type index_d_RestoreSubmissionFromTrashBinResponse = RestoreSubmissionFromTrashBinResponse;
|
|
6942
|
+
type index_d_RestoreSubmissionFromTrashBinResponseNonNullableFields = RestoreSubmissionFromTrashBinResponseNonNullableFields;
|
|
6032
6943
|
type index_d_SearchDetails = SearchDetails;
|
|
6033
6944
|
type index_d_SearchSubmissionsByNamespaceForExportRequest = SearchSubmissionsByNamespaceForExportRequest;
|
|
6034
6945
|
type index_d_SearchSubmissionsByNamespaceForExportResponse = SearchSubmissionsByNamespaceForExportResponse;
|
|
6035
6946
|
type index_d_SearchSubmissionsByNamespaceRequest = SearchSubmissionsByNamespaceRequest;
|
|
6036
6947
|
type index_d_SearchSubmissionsByNamespaceResponse = SearchSubmissionsByNamespaceResponse;
|
|
6948
|
+
type index_d_SearchSubmissionsByNamespaceResponseNonNullableFields = SearchSubmissionsByNamespaceResponseNonNullableFields;
|
|
6037
6949
|
type index_d_SortOrder = SortOrder;
|
|
6038
6950
|
declare const index_d_SortOrder: typeof SortOrder;
|
|
6039
6951
|
type index_d_Sorting = Sorting;
|
|
@@ -6056,12 +6968,13 @@ type index_d_SubmitterSubmitterOneOf = SubmitterSubmitterOneOf;
|
|
|
6056
6968
|
type index_d_UpdateSubmission = UpdateSubmission;
|
|
6057
6969
|
type index_d_UpdateSubmissionRequest = UpdateSubmissionRequest;
|
|
6058
6970
|
type index_d_UpdateSubmissionResponse = UpdateSubmissionResponse;
|
|
6971
|
+
type index_d_UpdateSubmissionResponseNonNullableFields = UpdateSubmissionResponseNonNullableFields;
|
|
6059
6972
|
type index_d_UpsertContactFromSubmissionOptions = UpsertContactFromSubmissionOptions;
|
|
6060
6973
|
type index_d_UpsertContactFromSubmissionRequest = UpsertContactFromSubmissionRequest;
|
|
6061
6974
|
type index_d_UpsertContactFromSubmissionResponse = UpsertContactFromSubmissionResponse;
|
|
6975
|
+
type index_d_UpsertContactFromSubmissionResponseNonNullableFields = UpsertContactFromSubmissionResponseNonNullableFields;
|
|
6062
6976
|
type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
6063
6977
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
6064
|
-
declare const index_d___metadata: typeof __metadata;
|
|
6065
6978
|
declare const index_d_bulkCreateSubmissionBySubmitter: typeof bulkCreateSubmissionBySubmitter;
|
|
6066
6979
|
declare const index_d_bulkDeleteSubmission: typeof bulkDeleteSubmission;
|
|
6067
6980
|
declare const index_d_bulkMarkSubmissionsAsSeen: typeof bulkMarkSubmissionsAsSeen;
|
|
@@ -6091,7 +7004,7 @@ declare const index_d_searchSubmissionsByNamespace: typeof searchSubmissionsByNa
|
|
|
6091
7004
|
declare const index_d_updateSubmission: typeof updateSubmission;
|
|
6092
7005
|
declare const index_d_upsertContactFromSubmission: typeof upsertContactFromSubmission;
|
|
6093
7006
|
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 };
|
|
7007
|
+
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
7008
|
}
|
|
6096
7009
|
|
|
6097
7010
|
export { index_d$1 as formSpamSubmissionReports, index_d$2 as forms, index_d as submissions };
|