@ember-home/unbound-ts-client 0.0.11 → 0.0.13
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/dist/index.d.mts +351 -214
- package/dist/index.d.ts +351 -214
- package/dist/index.js +22 -70
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -70
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -210,13 +210,13 @@ interface AddressCreate {
|
|
|
210
210
|
* @type {string}
|
|
211
211
|
* @memberof AddressCreate
|
|
212
212
|
*/
|
|
213
|
-
'
|
|
213
|
+
'street1': string;
|
|
214
214
|
/**
|
|
215
215
|
*
|
|
216
216
|
* @type {string}
|
|
217
217
|
* @memberof AddressCreate
|
|
218
218
|
*/
|
|
219
|
-
'
|
|
219
|
+
'street2'?: string | null;
|
|
220
220
|
/**
|
|
221
221
|
*
|
|
222
222
|
* @type {string}
|
|
@@ -320,13 +320,13 @@ interface AddressUpdate {
|
|
|
320
320
|
* @type {string}
|
|
321
321
|
* @memberof AddressUpdate
|
|
322
322
|
*/
|
|
323
|
-
'
|
|
323
|
+
'street1'?: string | null;
|
|
324
324
|
/**
|
|
325
325
|
*
|
|
326
326
|
* @type {string}
|
|
327
327
|
* @memberof AddressUpdate
|
|
328
328
|
*/
|
|
329
|
-
'
|
|
329
|
+
'street2'?: string | null;
|
|
330
330
|
/**
|
|
331
331
|
*
|
|
332
332
|
* @type {string}
|
|
@@ -441,97 +441,133 @@ interface AddressesUpdateResponse {
|
|
|
441
441
|
/**
|
|
442
442
|
*
|
|
443
443
|
* @export
|
|
444
|
-
* @interface
|
|
444
|
+
* @interface ContactCreate
|
|
445
445
|
*/
|
|
446
|
-
interface
|
|
446
|
+
interface ContactCreate {
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof ContactCreate
|
|
451
|
+
*/
|
|
452
|
+
'firstName': string;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ContactCreate
|
|
457
|
+
*/
|
|
458
|
+
'lastName': string;
|
|
459
|
+
/**
|
|
460
|
+
*
|
|
461
|
+
* @type {string}
|
|
462
|
+
* @memberof ContactCreate
|
|
463
|
+
*/
|
|
464
|
+
'locale'?: string | null;
|
|
447
465
|
/**
|
|
448
466
|
*
|
|
449
467
|
* @type {string}
|
|
450
|
-
* @memberof
|
|
468
|
+
* @memberof ContactCreate
|
|
469
|
+
*/
|
|
470
|
+
'primaryEmail'?: string | null;
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @type {string}
|
|
474
|
+
* @memberof ContactCreate
|
|
475
|
+
*/
|
|
476
|
+
'primaryPhone'?: string | null;
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {ContactTypeDataCreate}
|
|
480
|
+
* @memberof ContactCreate
|
|
451
481
|
*/
|
|
452
|
-
'
|
|
482
|
+
'contactTypeData'?: ContactTypeDataCreate | null;
|
|
453
483
|
}
|
|
454
|
-
declare const BasicDataContactTypeEnum: {
|
|
455
|
-
readonly Basic: "BASIC";
|
|
456
|
-
};
|
|
457
|
-
type BasicDataContactTypeEnum = typeof BasicDataContactTypeEnum[keyof typeof BasicDataContactTypeEnum];
|
|
458
484
|
/**
|
|
459
485
|
*
|
|
460
486
|
* @export
|
|
461
|
-
* @interface
|
|
487
|
+
* @interface ContactTypeData
|
|
462
488
|
*/
|
|
463
|
-
interface
|
|
489
|
+
interface ContactTypeData {
|
|
464
490
|
/**
|
|
465
491
|
*
|
|
466
|
-
* @type {
|
|
467
|
-
* @memberof
|
|
492
|
+
* @type {GuestData}
|
|
493
|
+
* @memberof ContactTypeData
|
|
494
|
+
*/
|
|
495
|
+
'guest'?: GuestData | null;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {OwnerData}
|
|
499
|
+
* @memberof ContactTypeData
|
|
468
500
|
*/
|
|
469
|
-
'
|
|
501
|
+
'owner'?: OwnerData | null;
|
|
502
|
+
/**
|
|
503
|
+
*
|
|
504
|
+
* @type {LeadData}
|
|
505
|
+
* @memberof ContactTypeData
|
|
506
|
+
*/
|
|
507
|
+
'lead'?: LeadData | null;
|
|
470
508
|
}
|
|
471
|
-
declare const BasicDataCreateContactTypeEnum: {
|
|
472
|
-
readonly Basic: "BASIC";
|
|
473
|
-
};
|
|
474
|
-
type BasicDataCreateContactTypeEnum = typeof BasicDataCreateContactTypeEnum[keyof typeof BasicDataCreateContactTypeEnum];
|
|
475
509
|
/**
|
|
476
510
|
*
|
|
477
511
|
* @export
|
|
478
|
-
* @interface
|
|
512
|
+
* @interface ContactTypeDataCreate
|
|
479
513
|
*/
|
|
480
|
-
interface
|
|
514
|
+
interface ContactTypeDataCreate {
|
|
481
515
|
/**
|
|
482
516
|
*
|
|
483
|
-
* @type {
|
|
484
|
-
* @memberof
|
|
517
|
+
* @type {GuestDataCreate}
|
|
518
|
+
* @memberof ContactTypeDataCreate
|
|
485
519
|
*/
|
|
486
|
-
'
|
|
520
|
+
'guest'?: GuestDataCreate | null;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @type {object}
|
|
524
|
+
* @memberof ContactTypeDataCreate
|
|
525
|
+
*/
|
|
526
|
+
'owner'?: object;
|
|
527
|
+
/**
|
|
528
|
+
*
|
|
529
|
+
* @type {object}
|
|
530
|
+
* @memberof ContactTypeDataCreate
|
|
531
|
+
*/
|
|
532
|
+
'lead'?: object;
|
|
487
533
|
}
|
|
488
|
-
declare const BasicDataUpdateContactTypeEnum: {
|
|
489
|
-
readonly Basic: "BASIC";
|
|
490
|
-
};
|
|
491
|
-
type BasicDataUpdateContactTypeEnum = typeof BasicDataUpdateContactTypeEnum[keyof typeof BasicDataUpdateContactTypeEnum];
|
|
492
534
|
/**
|
|
493
535
|
*
|
|
494
536
|
* @export
|
|
495
|
-
* @interface
|
|
537
|
+
* @interface ContactTypeDataUpdate
|
|
496
538
|
*/
|
|
497
|
-
interface
|
|
498
|
-
/**
|
|
499
|
-
*
|
|
500
|
-
* @type {string}
|
|
501
|
-
* @memberof ContactCreate
|
|
502
|
-
*/
|
|
503
|
-
'firstName': string;
|
|
539
|
+
interface ContactTypeDataUpdate {
|
|
504
540
|
/**
|
|
505
541
|
*
|
|
506
|
-
* @type {
|
|
507
|
-
* @memberof
|
|
542
|
+
* @type {GuestDataUpdate}
|
|
543
|
+
* @memberof ContactTypeDataUpdate
|
|
508
544
|
*/
|
|
509
|
-
'
|
|
545
|
+
'guest'?: GuestDataUpdate | null;
|
|
510
546
|
/**
|
|
511
547
|
*
|
|
512
|
-
* @type {
|
|
513
|
-
* @memberof
|
|
548
|
+
* @type {object}
|
|
549
|
+
* @memberof ContactTypeDataUpdate
|
|
514
550
|
*/
|
|
515
|
-
'
|
|
551
|
+
'owner'?: object;
|
|
516
552
|
/**
|
|
517
553
|
*
|
|
518
|
-
* @type {
|
|
519
|
-
* @memberof
|
|
554
|
+
* @type {object}
|
|
555
|
+
* @memberof ContactTypeDataUpdate
|
|
520
556
|
*/
|
|
521
|
-
'
|
|
557
|
+
'lead'?: object;
|
|
522
558
|
}
|
|
523
559
|
/**
|
|
524
560
|
*
|
|
525
561
|
* @export
|
|
526
562
|
* @enum {string}
|
|
527
563
|
*/
|
|
528
|
-
declare const
|
|
529
|
-
readonly Guest: "
|
|
530
|
-
readonly Owner: "
|
|
531
|
-
readonly Lead: "
|
|
532
|
-
readonly Basic: "
|
|
564
|
+
declare const ContactTypeFilter: {
|
|
565
|
+
readonly Guest: "guest";
|
|
566
|
+
readonly Owner: "owner";
|
|
567
|
+
readonly Lead: "lead";
|
|
568
|
+
readonly Basic: "basic";
|
|
533
569
|
};
|
|
534
|
-
type
|
|
570
|
+
type ContactTypeFilter = typeof ContactTypeFilter[keyof typeof ContactTypeFilter];
|
|
535
571
|
/**
|
|
536
572
|
*
|
|
537
573
|
* @export
|
|
@@ -576,10 +612,10 @@ interface ContactUpdate {
|
|
|
576
612
|
'profilePicUrl'?: string | null;
|
|
577
613
|
/**
|
|
578
614
|
*
|
|
579
|
-
* @type {
|
|
615
|
+
* @type {ContactTypeDataUpdate}
|
|
580
616
|
* @memberof ContactUpdate
|
|
581
617
|
*/
|
|
582
|
-
'contactTypeData'?:
|
|
618
|
+
'contactTypeData'?: ContactTypeDataUpdate | null;
|
|
583
619
|
}
|
|
584
620
|
/**
|
|
585
621
|
*
|
|
@@ -611,6 +647,12 @@ interface ContactsCreateResponse {
|
|
|
611
647
|
* @memberof ContactsCreateResponse
|
|
612
648
|
*/
|
|
613
649
|
'lastName': string;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @type {string}
|
|
653
|
+
* @memberof ContactsCreateResponse
|
|
654
|
+
*/
|
|
655
|
+
'fullName'?: string;
|
|
614
656
|
/**
|
|
615
657
|
*
|
|
616
658
|
* @type {string}
|
|
@@ -646,19 +688,61 @@ interface ContactsCreateResponse {
|
|
|
646
688
|
* @type {string}
|
|
647
689
|
* @memberof ContactsCreateResponse
|
|
648
690
|
*/
|
|
649
|
-
'
|
|
691
|
+
'createdBy': string;
|
|
650
692
|
/**
|
|
651
693
|
*
|
|
652
694
|
* @type {string}
|
|
653
695
|
* @memberof ContactsCreateResponse
|
|
654
696
|
*/
|
|
655
|
-
'
|
|
697
|
+
'updatedBy': string;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof ContactsCreateResponse
|
|
702
|
+
*/
|
|
703
|
+
'profilePicUrlRegular'?: string | null;
|
|
656
704
|
/**
|
|
657
705
|
*
|
|
658
|
-
* @type {
|
|
706
|
+
* @type {string}
|
|
659
707
|
* @memberof ContactsCreateResponse
|
|
660
708
|
*/
|
|
661
|
-
'
|
|
709
|
+
'profilePicUrlLarge'?: string | null;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof ContactsCreateResponse
|
|
714
|
+
*/
|
|
715
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @type {boolean}
|
|
719
|
+
* @memberof ContactsCreateResponse
|
|
720
|
+
*/
|
|
721
|
+
'smsMarketingIsSubscribed'?: boolean;
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @type {string}
|
|
725
|
+
* @memberof ContactsCreateResponse
|
|
726
|
+
*/
|
|
727
|
+
'smsMarketingConsentType'?: string | null;
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* @type {string}
|
|
731
|
+
* @memberof ContactsCreateResponse
|
|
732
|
+
*/
|
|
733
|
+
'smsMarketingUpdatedAt'?: string | null;
|
|
734
|
+
/**
|
|
735
|
+
*
|
|
736
|
+
* @type {boolean}
|
|
737
|
+
* @memberof ContactsCreateResponse
|
|
738
|
+
*/
|
|
739
|
+
'smsTransactionalIsSubscribed'?: boolean;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof ContactsCreateResponse
|
|
744
|
+
*/
|
|
745
|
+
'smsTransactionalConsentType'?: string | null;
|
|
662
746
|
/**
|
|
663
747
|
*
|
|
664
748
|
* @type {string}
|
|
@@ -701,6 +785,12 @@ interface ContactsCreateResponse {
|
|
|
701
785
|
* @memberof ContactsCreateResponse
|
|
702
786
|
*/
|
|
703
787
|
'addresses'?: Array<AddressItem>;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {ContactTypeData}
|
|
791
|
+
* @memberof ContactsCreateResponse
|
|
792
|
+
*/
|
|
793
|
+
'contactTypeData'?: ContactTypeData;
|
|
704
794
|
}
|
|
705
795
|
/**
|
|
706
796
|
*
|
|
@@ -732,6 +822,12 @@ interface ContactsGetResponse {
|
|
|
732
822
|
* @memberof ContactsGetResponse
|
|
733
823
|
*/
|
|
734
824
|
'lastName': string;
|
|
825
|
+
/**
|
|
826
|
+
*
|
|
827
|
+
* @type {string}
|
|
828
|
+
* @memberof ContactsGetResponse
|
|
829
|
+
*/
|
|
830
|
+
'fullName'?: string;
|
|
735
831
|
/**
|
|
736
832
|
*
|
|
737
833
|
* @type {string}
|
|
@@ -767,19 +863,61 @@ interface ContactsGetResponse {
|
|
|
767
863
|
* @type {string}
|
|
768
864
|
* @memberof ContactsGetResponse
|
|
769
865
|
*/
|
|
770
|
-
'
|
|
866
|
+
'createdBy': string;
|
|
771
867
|
/**
|
|
772
868
|
*
|
|
773
869
|
* @type {string}
|
|
774
870
|
* @memberof ContactsGetResponse
|
|
775
871
|
*/
|
|
776
|
-
'
|
|
872
|
+
'updatedBy': string;
|
|
777
873
|
/**
|
|
778
874
|
*
|
|
779
|
-
* @type {
|
|
875
|
+
* @type {string}
|
|
876
|
+
* @memberof ContactsGetResponse
|
|
877
|
+
*/
|
|
878
|
+
'profilePicUrlRegular'?: string | null;
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @type {string}
|
|
780
882
|
* @memberof ContactsGetResponse
|
|
781
883
|
*/
|
|
782
|
-
'
|
|
884
|
+
'profilePicUrlLarge'?: string | null;
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @type {string}
|
|
888
|
+
* @memberof ContactsGetResponse
|
|
889
|
+
*/
|
|
890
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
891
|
+
/**
|
|
892
|
+
*
|
|
893
|
+
* @type {boolean}
|
|
894
|
+
* @memberof ContactsGetResponse
|
|
895
|
+
*/
|
|
896
|
+
'smsMarketingIsSubscribed'?: boolean;
|
|
897
|
+
/**
|
|
898
|
+
*
|
|
899
|
+
* @type {string}
|
|
900
|
+
* @memberof ContactsGetResponse
|
|
901
|
+
*/
|
|
902
|
+
'smsMarketingConsentType'?: string | null;
|
|
903
|
+
/**
|
|
904
|
+
*
|
|
905
|
+
* @type {string}
|
|
906
|
+
* @memberof ContactsGetResponse
|
|
907
|
+
*/
|
|
908
|
+
'smsMarketingUpdatedAt'?: string | null;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {boolean}
|
|
912
|
+
* @memberof ContactsGetResponse
|
|
913
|
+
*/
|
|
914
|
+
'smsTransactionalIsSubscribed'?: boolean;
|
|
915
|
+
/**
|
|
916
|
+
*
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof ContactsGetResponse
|
|
919
|
+
*/
|
|
920
|
+
'smsTransactionalConsentType'?: string | null;
|
|
783
921
|
/**
|
|
784
922
|
*
|
|
785
923
|
* @type {string}
|
|
@@ -822,6 +960,12 @@ interface ContactsGetResponse {
|
|
|
822
960
|
* @memberof ContactsGetResponse
|
|
823
961
|
*/
|
|
824
962
|
'addresses'?: Array<AddressItem>;
|
|
963
|
+
/**
|
|
964
|
+
*
|
|
965
|
+
* @type {ContactTypeData}
|
|
966
|
+
* @memberof ContactsGetResponse
|
|
967
|
+
*/
|
|
968
|
+
'contactTypeData'?: ContactTypeData;
|
|
825
969
|
}
|
|
826
970
|
/**
|
|
827
971
|
*
|
|
@@ -853,6 +997,12 @@ interface ContactsListResponse {
|
|
|
853
997
|
* @memberof ContactsListResponse
|
|
854
998
|
*/
|
|
855
999
|
'lastName': string;
|
|
1000
|
+
/**
|
|
1001
|
+
*
|
|
1002
|
+
* @type {string}
|
|
1003
|
+
* @memberof ContactsListResponse
|
|
1004
|
+
*/
|
|
1005
|
+
'fullName'?: string;
|
|
856
1006
|
/**
|
|
857
1007
|
*
|
|
858
1008
|
* @type {string}
|
|
@@ -888,19 +1038,61 @@ interface ContactsListResponse {
|
|
|
888
1038
|
* @type {string}
|
|
889
1039
|
* @memberof ContactsListResponse
|
|
890
1040
|
*/
|
|
891
|
-
'
|
|
1041
|
+
'createdBy': string;
|
|
892
1042
|
/**
|
|
893
1043
|
*
|
|
894
1044
|
* @type {string}
|
|
895
1045
|
* @memberof ContactsListResponse
|
|
896
1046
|
*/
|
|
897
|
-
'
|
|
1047
|
+
'updatedBy': string;
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @type {string}
|
|
1051
|
+
* @memberof ContactsListResponse
|
|
1052
|
+
*/
|
|
1053
|
+
'profilePicUrlRegular'?: string | null;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {string}
|
|
1057
|
+
* @memberof ContactsListResponse
|
|
1058
|
+
*/
|
|
1059
|
+
'profilePicUrlLarge'?: string | null;
|
|
1060
|
+
/**
|
|
1061
|
+
*
|
|
1062
|
+
* @type {string}
|
|
1063
|
+
* @memberof ContactsListResponse
|
|
1064
|
+
*/
|
|
1065
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* @type {boolean}
|
|
1069
|
+
* @memberof ContactsListResponse
|
|
1070
|
+
*/
|
|
1071
|
+
'smsMarketingIsSubscribed'?: boolean;
|
|
1072
|
+
/**
|
|
1073
|
+
*
|
|
1074
|
+
* @type {string}
|
|
1075
|
+
* @memberof ContactsListResponse
|
|
1076
|
+
*/
|
|
1077
|
+
'smsMarketingConsentType'?: string | null;
|
|
1078
|
+
/**
|
|
1079
|
+
*
|
|
1080
|
+
* @type {string}
|
|
1081
|
+
* @memberof ContactsListResponse
|
|
1082
|
+
*/
|
|
1083
|
+
'smsMarketingUpdatedAt'?: string | null;
|
|
898
1084
|
/**
|
|
899
1085
|
*
|
|
900
|
-
* @type {
|
|
1086
|
+
* @type {boolean}
|
|
901
1087
|
* @memberof ContactsListResponse
|
|
902
1088
|
*/
|
|
903
|
-
'
|
|
1089
|
+
'smsTransactionalIsSubscribed'?: boolean;
|
|
1090
|
+
/**
|
|
1091
|
+
*
|
|
1092
|
+
* @type {string}
|
|
1093
|
+
* @memberof ContactsListResponse
|
|
1094
|
+
*/
|
|
1095
|
+
'smsTransactionalConsentType'?: string | null;
|
|
904
1096
|
/**
|
|
905
1097
|
*
|
|
906
1098
|
* @type {string}
|
|
@@ -943,6 +1135,12 @@ interface ContactsListResponse {
|
|
|
943
1135
|
* @memberof ContactsListResponse
|
|
944
1136
|
*/
|
|
945
1137
|
'addresses'?: Array<AddressItem>;
|
|
1138
|
+
/**
|
|
1139
|
+
*
|
|
1140
|
+
* @type {ContactTypeData}
|
|
1141
|
+
* @memberof ContactsListResponse
|
|
1142
|
+
*/
|
|
1143
|
+
'contactTypeData'?: ContactTypeData;
|
|
946
1144
|
}
|
|
947
1145
|
/**
|
|
948
1146
|
*
|
|
@@ -974,6 +1172,12 @@ interface ContactsUpdateResponse {
|
|
|
974
1172
|
* @memberof ContactsUpdateResponse
|
|
975
1173
|
*/
|
|
976
1174
|
'lastName': string;
|
|
1175
|
+
/**
|
|
1176
|
+
*
|
|
1177
|
+
* @type {string}
|
|
1178
|
+
* @memberof ContactsUpdateResponse
|
|
1179
|
+
*/
|
|
1180
|
+
'fullName'?: string;
|
|
977
1181
|
/**
|
|
978
1182
|
*
|
|
979
1183
|
* @type {string}
|
|
@@ -1009,19 +1213,61 @@ interface ContactsUpdateResponse {
|
|
|
1009
1213
|
* @type {string}
|
|
1010
1214
|
* @memberof ContactsUpdateResponse
|
|
1011
1215
|
*/
|
|
1012
|
-
'
|
|
1216
|
+
'createdBy': string;
|
|
1013
1217
|
/**
|
|
1014
1218
|
*
|
|
1015
1219
|
* @type {string}
|
|
1016
1220
|
* @memberof ContactsUpdateResponse
|
|
1017
1221
|
*/
|
|
1018
|
-
'
|
|
1222
|
+
'updatedBy': string;
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {string}
|
|
1226
|
+
* @memberof ContactsUpdateResponse
|
|
1227
|
+
*/
|
|
1228
|
+
'profilePicUrlRegular'?: string | null;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {string}
|
|
1232
|
+
* @memberof ContactsUpdateResponse
|
|
1233
|
+
*/
|
|
1234
|
+
'profilePicUrlLarge'?: string | null;
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {string}
|
|
1238
|
+
* @memberof ContactsUpdateResponse
|
|
1239
|
+
*/
|
|
1240
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
1241
|
+
/**
|
|
1242
|
+
*
|
|
1243
|
+
* @type {boolean}
|
|
1244
|
+
* @memberof ContactsUpdateResponse
|
|
1245
|
+
*/
|
|
1246
|
+
'smsMarketingIsSubscribed'?: boolean;
|
|
1247
|
+
/**
|
|
1248
|
+
*
|
|
1249
|
+
* @type {string}
|
|
1250
|
+
* @memberof ContactsUpdateResponse
|
|
1251
|
+
*/
|
|
1252
|
+
'smsMarketingConsentType'?: string | null;
|
|
1253
|
+
/**
|
|
1254
|
+
*
|
|
1255
|
+
* @type {string}
|
|
1256
|
+
* @memberof ContactsUpdateResponse
|
|
1257
|
+
*/
|
|
1258
|
+
'smsMarketingUpdatedAt'?: string | null;
|
|
1019
1259
|
/**
|
|
1020
1260
|
*
|
|
1021
|
-
* @type {
|
|
1261
|
+
* @type {boolean}
|
|
1022
1262
|
* @memberof ContactsUpdateResponse
|
|
1023
1263
|
*/
|
|
1024
|
-
'
|
|
1264
|
+
'smsTransactionalIsSubscribed'?: boolean;
|
|
1265
|
+
/**
|
|
1266
|
+
*
|
|
1267
|
+
* @type {string}
|
|
1268
|
+
* @memberof ContactsUpdateResponse
|
|
1269
|
+
*/
|
|
1270
|
+
'smsTransactionalConsentType'?: string | null;
|
|
1025
1271
|
/**
|
|
1026
1272
|
*
|
|
1027
1273
|
* @type {string}
|
|
@@ -1064,22 +1310,13 @@ interface ContactsUpdateResponse {
|
|
|
1064
1310
|
* @memberof ContactsUpdateResponse
|
|
1065
1311
|
*/
|
|
1066
1312
|
'addresses'?: Array<AddressItem>;
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {ContactTypeData}
|
|
1316
|
+
* @memberof ContactsUpdateResponse
|
|
1317
|
+
*/
|
|
1318
|
+
'contactTypeData'?: ContactTypeData;
|
|
1067
1319
|
}
|
|
1068
|
-
/**
|
|
1069
|
-
* @type Contacttypedata
|
|
1070
|
-
* @export
|
|
1071
|
-
*/
|
|
1072
|
-
type Contacttypedata = BasicDataCreate | GuestDataCreate | LeadDataCreate | OwnerDataCreate;
|
|
1073
|
-
/**
|
|
1074
|
-
* @type Contacttypedata1
|
|
1075
|
-
* @export
|
|
1076
|
-
*/
|
|
1077
|
-
type Contacttypedata1 = BasicDataUpdate | GuestDataUpdate | LeadDataUpdate | OwnerDataUpdate;
|
|
1078
|
-
/**
|
|
1079
|
-
* @type Contacttypedata2
|
|
1080
|
-
* @export
|
|
1081
|
-
*/
|
|
1082
|
-
type Contacttypedata2 = BasicData | GuestData | LeadData | OwnerData;
|
|
1083
1320
|
/**
|
|
1084
1321
|
*
|
|
1085
1322
|
* @export
|
|
@@ -1201,7 +1438,7 @@ interface GuestData {
|
|
|
1201
1438
|
* @type {string}
|
|
1202
1439
|
* @memberof GuestData
|
|
1203
1440
|
*/
|
|
1204
|
-
'
|
|
1441
|
+
'createdAt': string;
|
|
1205
1442
|
/**
|
|
1206
1443
|
*
|
|
1207
1444
|
* @type {number}
|
|
@@ -1251,22 +1488,12 @@ interface GuestData {
|
|
|
1251
1488
|
*/
|
|
1252
1489
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
1253
1490
|
}
|
|
1254
|
-
declare const GuestDataContactTypeEnum: {
|
|
1255
|
-
readonly Guest: "GUEST";
|
|
1256
|
-
};
|
|
1257
|
-
type GuestDataContactTypeEnum = typeof GuestDataContactTypeEnum[keyof typeof GuestDataContactTypeEnum];
|
|
1258
1491
|
/**
|
|
1259
1492
|
*
|
|
1260
1493
|
* @export
|
|
1261
1494
|
* @interface GuestDataCreate
|
|
1262
1495
|
*/
|
|
1263
1496
|
interface GuestDataCreate {
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @type {string}
|
|
1267
|
-
* @memberof GuestDataCreate
|
|
1268
|
-
*/
|
|
1269
|
-
'contactType': GuestDataCreateContactTypeEnum;
|
|
1270
1497
|
/**
|
|
1271
1498
|
*
|
|
1272
1499
|
* @type {string}
|
|
@@ -1304,22 +1531,12 @@ interface GuestDataCreate {
|
|
|
1304
1531
|
*/
|
|
1305
1532
|
'smsTransactionalIsSubscribed'?: boolean | null;
|
|
1306
1533
|
}
|
|
1307
|
-
declare const GuestDataCreateContactTypeEnum: {
|
|
1308
|
-
readonly Guest: "GUEST";
|
|
1309
|
-
};
|
|
1310
|
-
type GuestDataCreateContactTypeEnum = typeof GuestDataCreateContactTypeEnum[keyof typeof GuestDataCreateContactTypeEnum];
|
|
1311
1534
|
/**
|
|
1312
1535
|
*
|
|
1313
1536
|
* @export
|
|
1314
1537
|
* @interface GuestDataUpdate
|
|
1315
1538
|
*/
|
|
1316
1539
|
interface GuestDataUpdate {
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {string}
|
|
1320
|
-
* @memberof GuestDataUpdate
|
|
1321
|
-
*/
|
|
1322
|
-
'contactType': GuestDataUpdateContactTypeEnum;
|
|
1323
1540
|
/**
|
|
1324
1541
|
*
|
|
1325
1542
|
* @type {string}
|
|
@@ -1357,10 +1574,6 @@ interface GuestDataUpdate {
|
|
|
1357
1574
|
*/
|
|
1358
1575
|
'smsTransactionalIsSubscribed'?: boolean | null;
|
|
1359
1576
|
}
|
|
1360
|
-
declare const GuestDataUpdateContactTypeEnum: {
|
|
1361
|
-
readonly Guest: "GUEST";
|
|
1362
|
-
};
|
|
1363
|
-
type GuestDataUpdateContactTypeEnum = typeof GuestDataUpdateContactTypeEnum[keyof typeof GuestDataUpdateContactTypeEnum];
|
|
1364
1577
|
/**
|
|
1365
1578
|
*
|
|
1366
1579
|
* @export
|
|
@@ -1418,46 +1631,8 @@ interface LeadData {
|
|
|
1418
1631
|
* @type {string}
|
|
1419
1632
|
* @memberof LeadData
|
|
1420
1633
|
*/
|
|
1421
|
-
'
|
|
1422
|
-
}
|
|
1423
|
-
declare const LeadDataContactTypeEnum: {
|
|
1424
|
-
readonly Lead: "LEAD";
|
|
1425
|
-
};
|
|
1426
|
-
type LeadDataContactTypeEnum = typeof LeadDataContactTypeEnum[keyof typeof LeadDataContactTypeEnum];
|
|
1427
|
-
/**
|
|
1428
|
-
*
|
|
1429
|
-
* @export
|
|
1430
|
-
* @interface LeadDataCreate
|
|
1431
|
-
*/
|
|
1432
|
-
interface LeadDataCreate {
|
|
1433
|
-
/**
|
|
1434
|
-
*
|
|
1435
|
-
* @type {string}
|
|
1436
|
-
* @memberof LeadDataCreate
|
|
1437
|
-
*/
|
|
1438
|
-
'contactType': LeadDataCreateContactTypeEnum;
|
|
1439
|
-
}
|
|
1440
|
-
declare const LeadDataCreateContactTypeEnum: {
|
|
1441
|
-
readonly Lead: "LEAD";
|
|
1442
|
-
};
|
|
1443
|
-
type LeadDataCreateContactTypeEnum = typeof LeadDataCreateContactTypeEnum[keyof typeof LeadDataCreateContactTypeEnum];
|
|
1444
|
-
/**
|
|
1445
|
-
*
|
|
1446
|
-
* @export
|
|
1447
|
-
* @interface LeadDataUpdate
|
|
1448
|
-
*/
|
|
1449
|
-
interface LeadDataUpdate {
|
|
1450
|
-
/**
|
|
1451
|
-
*
|
|
1452
|
-
* @type {string}
|
|
1453
|
-
* @memberof LeadDataUpdate
|
|
1454
|
-
*/
|
|
1455
|
-
'contactType': LeadDataUpdateContactTypeEnum;
|
|
1634
|
+
'createdAt': string;
|
|
1456
1635
|
}
|
|
1457
|
-
declare const LeadDataUpdateContactTypeEnum: {
|
|
1458
|
-
readonly Lead: "LEAD";
|
|
1459
|
-
};
|
|
1460
|
-
type LeadDataUpdateContactTypeEnum = typeof LeadDataUpdateContactTypeEnum[keyof typeof LeadDataUpdateContactTypeEnum];
|
|
1461
1636
|
/**
|
|
1462
1637
|
*
|
|
1463
1638
|
* @export
|
|
@@ -1495,46 +1670,8 @@ interface OwnerData {
|
|
|
1495
1670
|
* @type {string}
|
|
1496
1671
|
* @memberof OwnerData
|
|
1497
1672
|
*/
|
|
1498
|
-
'
|
|
1499
|
-
}
|
|
1500
|
-
declare const OwnerDataContactTypeEnum: {
|
|
1501
|
-
readonly Owner: "OWNER";
|
|
1502
|
-
};
|
|
1503
|
-
type OwnerDataContactTypeEnum = typeof OwnerDataContactTypeEnum[keyof typeof OwnerDataContactTypeEnum];
|
|
1504
|
-
/**
|
|
1505
|
-
*
|
|
1506
|
-
* @export
|
|
1507
|
-
* @interface OwnerDataCreate
|
|
1508
|
-
*/
|
|
1509
|
-
interface OwnerDataCreate {
|
|
1510
|
-
/**
|
|
1511
|
-
*
|
|
1512
|
-
* @type {string}
|
|
1513
|
-
* @memberof OwnerDataCreate
|
|
1514
|
-
*/
|
|
1515
|
-
'contactType': OwnerDataCreateContactTypeEnum;
|
|
1516
|
-
}
|
|
1517
|
-
declare const OwnerDataCreateContactTypeEnum: {
|
|
1518
|
-
readonly Owner: "OWNER";
|
|
1519
|
-
};
|
|
1520
|
-
type OwnerDataCreateContactTypeEnum = typeof OwnerDataCreateContactTypeEnum[keyof typeof OwnerDataCreateContactTypeEnum];
|
|
1521
|
-
/**
|
|
1522
|
-
*
|
|
1523
|
-
* @export
|
|
1524
|
-
* @interface OwnerDataUpdate
|
|
1525
|
-
*/
|
|
1526
|
-
interface OwnerDataUpdate {
|
|
1527
|
-
/**
|
|
1528
|
-
*
|
|
1529
|
-
* @type {string}
|
|
1530
|
-
* @memberof OwnerDataUpdate
|
|
1531
|
-
*/
|
|
1532
|
-
'contactType': OwnerDataUpdateContactTypeEnum;
|
|
1673
|
+
'createdAt': string;
|
|
1533
1674
|
}
|
|
1534
|
-
declare const OwnerDataUpdateContactTypeEnum: {
|
|
1535
|
-
readonly Owner: "OWNER";
|
|
1536
|
-
};
|
|
1537
|
-
type OwnerDataUpdateContactTypeEnum = typeof OwnerDataUpdateContactTypeEnum[keyof typeof OwnerDataUpdateContactTypeEnum];
|
|
1538
1675
|
/**
|
|
1539
1676
|
*
|
|
1540
1677
|
* @export
|
|
@@ -1868,12 +2005,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1868
2005
|
/**
|
|
1869
2006
|
*
|
|
1870
2007
|
* @summary Contacts List
|
|
1871
|
-
* @param {Array<
|
|
2008
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1872
2009
|
* @param {string} [searchString]
|
|
1873
2010
|
* @param {*} [options] Override http request option.
|
|
1874
2011
|
* @throws {RequiredError}
|
|
1875
2012
|
*/
|
|
1876
|
-
contactsList: (contactTypes?: Array<
|
|
2013
|
+
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1877
2014
|
/**
|
|
1878
2015
|
*
|
|
1879
2016
|
* @summary Contacts Update
|
|
@@ -1976,12 +2113,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1976
2113
|
/**
|
|
1977
2114
|
*
|
|
1978
2115
|
* @summary Contacts List
|
|
1979
|
-
* @param {Array<
|
|
2116
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1980
2117
|
* @param {string} [searchString]
|
|
1981
2118
|
* @param {*} [options] Override http request option.
|
|
1982
2119
|
* @throws {RequiredError}
|
|
1983
2120
|
*/
|
|
1984
|
-
contactsList(contactTypes?: Array<
|
|
2121
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
1985
2122
|
/**
|
|
1986
2123
|
*
|
|
1987
2124
|
* @summary Contacts Update
|
|
@@ -2084,12 +2221,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2084
2221
|
/**
|
|
2085
2222
|
*
|
|
2086
2223
|
* @summary Contacts List
|
|
2087
|
-
* @param {Array<
|
|
2224
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2088
2225
|
* @param {string} [searchString]
|
|
2089
2226
|
* @param {*} [options] Override http request option.
|
|
2090
2227
|
* @throws {RequiredError}
|
|
2091
2228
|
*/
|
|
2092
|
-
contactsList(contactTypes?: Array<
|
|
2229
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2093
2230
|
/**
|
|
2094
2231
|
*
|
|
2095
2232
|
* @summary Contacts Update
|
|
@@ -2200,13 +2337,13 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2200
2337
|
/**
|
|
2201
2338
|
*
|
|
2202
2339
|
* @summary Contacts List
|
|
2203
|
-
* @param {Array<
|
|
2340
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2204
2341
|
* @param {string} [searchString]
|
|
2205
2342
|
* @param {*} [options] Override http request option.
|
|
2206
2343
|
* @throws {RequiredError}
|
|
2207
2344
|
* @memberof ContactsApi
|
|
2208
2345
|
*/
|
|
2209
|
-
contactsList(contactTypes?: Array<
|
|
2346
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
2210
2347
|
/**
|
|
2211
2348
|
*
|
|
2212
2349
|
* @summary Contacts Update
|
|
@@ -2513,7 +2650,7 @@ declare class PhonesApi extends BaseAPI {
|
|
|
2513
2650
|
*/
|
|
2514
2651
|
declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2515
2652
|
/**
|
|
2516
|
-
*
|
|
2653
|
+
*
|
|
2517
2654
|
* @summary Reservations List
|
|
2518
2655
|
* @param {string} [contactId]
|
|
2519
2656
|
* @param {*} [options] Override http request option.
|
|
@@ -2527,7 +2664,7 @@ declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2527
2664
|
*/
|
|
2528
2665
|
declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
2529
2666
|
/**
|
|
2530
|
-
*
|
|
2667
|
+
*
|
|
2531
2668
|
* @summary Reservations List
|
|
2532
2669
|
* @param {string} [contactId]
|
|
2533
2670
|
* @param {*} [options] Override http request option.
|
|
@@ -2541,7 +2678,7 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
2541
2678
|
*/
|
|
2542
2679
|
declare const ReservationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2543
2680
|
/**
|
|
2544
|
-
*
|
|
2681
|
+
*
|
|
2545
2682
|
* @summary Reservations List
|
|
2546
2683
|
* @param {string} [contactId]
|
|
2547
2684
|
* @param {*} [options] Override http request option.
|
|
@@ -2557,7 +2694,7 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2557
2694
|
*/
|
|
2558
2695
|
declare class ReservationsApi extends BaseAPI {
|
|
2559
2696
|
/**
|
|
2560
|
-
*
|
|
2697
|
+
*
|
|
2561
2698
|
* @summary Reservations List
|
|
2562
2699
|
* @param {string} [contactId]
|
|
2563
2700
|
* @param {*} [options] Override http request option.
|
|
@@ -2624,12 +2761,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2624
2761
|
/**
|
|
2625
2762
|
*
|
|
2626
2763
|
* @summary Contacts List
|
|
2627
|
-
* @param {Array<
|
|
2764
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2628
2765
|
* @param {string} [searchString]
|
|
2629
2766
|
* @param {*} [options] Override http request option.
|
|
2630
2767
|
* @throws {RequiredError}
|
|
2631
2768
|
*/
|
|
2632
|
-
contactsList: (contactTypes?: Array<
|
|
2769
|
+
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2633
2770
|
/**
|
|
2634
2771
|
*
|
|
2635
2772
|
* @summary Contacts Update
|
|
@@ -2674,7 +2811,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2674
2811
|
*/
|
|
2675
2812
|
phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2676
2813
|
/**
|
|
2677
|
-
*
|
|
2814
|
+
*
|
|
2678
2815
|
* @summary Reservations List
|
|
2679
2816
|
* @param {string} [contactId]
|
|
2680
2817
|
* @param {*} [options] Override http request option.
|
|
@@ -2748,12 +2885,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2748
2885
|
/**
|
|
2749
2886
|
*
|
|
2750
2887
|
* @summary Contacts List
|
|
2751
|
-
* @param {Array<
|
|
2888
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2752
2889
|
* @param {string} [searchString]
|
|
2753
2890
|
* @param {*} [options] Override http request option.
|
|
2754
2891
|
* @throws {RequiredError}
|
|
2755
2892
|
*/
|
|
2756
|
-
contactsList(contactTypes?: Array<
|
|
2893
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
2757
2894
|
/**
|
|
2758
2895
|
*
|
|
2759
2896
|
* @summary Contacts Update
|
|
@@ -2798,7 +2935,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2798
2935
|
*/
|
|
2799
2936
|
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2800
2937
|
/**
|
|
2801
|
-
*
|
|
2938
|
+
*
|
|
2802
2939
|
* @summary Reservations List
|
|
2803
2940
|
* @param {string} [contactId]
|
|
2804
2941
|
* @param {*} [options] Override http request option.
|
|
@@ -2872,12 +3009,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2872
3009
|
/**
|
|
2873
3010
|
*
|
|
2874
3011
|
* @summary Contacts List
|
|
2875
|
-
* @param {Array<
|
|
3012
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2876
3013
|
* @param {string} [searchString]
|
|
2877
3014
|
* @param {*} [options] Override http request option.
|
|
2878
3015
|
* @throws {RequiredError}
|
|
2879
3016
|
*/
|
|
2880
|
-
contactsList(contactTypes?: Array<
|
|
3017
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2881
3018
|
/**
|
|
2882
3019
|
*
|
|
2883
3020
|
* @summary Contacts Update
|
|
@@ -2922,7 +3059,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2922
3059
|
*/
|
|
2923
3060
|
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2924
3061
|
/**
|
|
2925
|
-
*
|
|
3062
|
+
*
|
|
2926
3063
|
* @summary Reservations List
|
|
2927
3064
|
* @param {string} [contactId]
|
|
2928
3065
|
* @param {*} [options] Override http request option.
|
|
@@ -3004,13 +3141,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3004
3141
|
/**
|
|
3005
3142
|
*
|
|
3006
3143
|
* @summary Contacts List
|
|
3007
|
-
* @param {Array<
|
|
3144
|
+
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
3008
3145
|
* @param {string} [searchString]
|
|
3009
3146
|
* @param {*} [options] Override http request option.
|
|
3010
3147
|
* @throws {RequiredError}
|
|
3011
3148
|
* @memberof UnboundApi
|
|
3012
3149
|
*/
|
|
3013
|
-
contactsList(contactTypes?: Array<
|
|
3150
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
3014
3151
|
/**
|
|
3015
3152
|
*
|
|
3016
3153
|
* @summary Contacts Update
|
|
@@ -3060,7 +3197,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3060
3197
|
*/
|
|
3061
3198
|
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3062
3199
|
/**
|
|
3063
|
-
*
|
|
3200
|
+
*
|
|
3064
3201
|
* @summary Reservations List
|
|
3065
3202
|
* @param {string} [contactId]
|
|
3066
3203
|
* @param {*} [options] Override http request option.
|
|
@@ -3079,4 +3216,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3079
3216
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3080
3217
|
}
|
|
3081
3218
|
|
|
3082
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse,
|
|
3219
|
+
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, ContactTypeFilter, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, type GuestDataCreate, type GuestDataUpdate, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, type OwnerData, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|