@ember-home/unbound-ts-client 0.0.11 → 0.0.12

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 CHANGED
@@ -210,13 +210,13 @@ interface AddressCreate {
210
210
  * @type {string}
211
211
  * @memberof AddressCreate
212
212
  */
213
- 'address1': string;
213
+ 'street1': string;
214
214
  /**
215
215
  *
216
216
  * @type {string}
217
217
  * @memberof AddressCreate
218
218
  */
219
- 'address2'?: string | null;
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
- 'address1'?: string | null;
323
+ 'street1'?: string | null;
324
324
  /**
325
325
  *
326
326
  * @type {string}
327
327
  * @memberof AddressUpdate
328
328
  */
329
- 'address2'?: string | null;
329
+ 'street2'?: string | null;
330
330
  /**
331
331
  *
332
332
  * @type {string}
@@ -441,84 +441,45 @@ interface AddressesUpdateResponse {
441
441
  /**
442
442
  *
443
443
  * @export
444
- * @interface BasicData
445
- */
446
- interface BasicData {
447
- /**
448
- *
449
- * @type {string}
450
- * @memberof BasicData
451
- */
452
- 'contactType': BasicDataContactTypeEnum;
453
- }
454
- declare const BasicDataContactTypeEnum: {
455
- readonly Basic: "BASIC";
456
- };
457
- type BasicDataContactTypeEnum = typeof BasicDataContactTypeEnum[keyof typeof BasicDataContactTypeEnum];
458
- /**
459
- *
460
- * @export
461
- * @interface BasicDataCreate
444
+ * @interface ContactCreate
462
445
  */
463
- interface BasicDataCreate {
446
+ interface ContactCreate {
464
447
  /**
465
448
  *
466
449
  * @type {string}
467
- * @memberof BasicDataCreate
450
+ * @memberof ContactCreate
468
451
  */
469
- 'contactType': BasicDataCreateContactTypeEnum;
470
- }
471
- declare const BasicDataCreateContactTypeEnum: {
472
- readonly Basic: "BASIC";
473
- };
474
- type BasicDataCreateContactTypeEnum = typeof BasicDataCreateContactTypeEnum[keyof typeof BasicDataCreateContactTypeEnum];
475
- /**
476
- *
477
- * @export
478
- * @interface BasicDataUpdate
479
- */
480
- interface BasicDataUpdate {
452
+ 'firstName': string;
481
453
  /**
482
454
  *
483
455
  * @type {string}
484
- * @memberof BasicDataUpdate
456
+ * @memberof ContactCreate
485
457
  */
486
- 'contactType': BasicDataUpdateContactTypeEnum;
487
- }
488
- declare const BasicDataUpdateContactTypeEnum: {
489
- readonly Basic: "BASIC";
490
- };
491
- type BasicDataUpdateContactTypeEnum = typeof BasicDataUpdateContactTypeEnum[keyof typeof BasicDataUpdateContactTypeEnum];
492
- /**
493
- *
494
- * @export
495
- * @interface ContactCreate
496
- */
497
- interface ContactCreate {
458
+ 'lastName': string;
498
459
  /**
499
460
  *
500
461
  * @type {string}
501
462
  * @memberof ContactCreate
502
463
  */
503
- 'firstName': string;
464
+ 'locale'?: string | null;
504
465
  /**
505
466
  *
506
467
  * @type {string}
507
468
  * @memberof ContactCreate
508
469
  */
509
- 'lastName': string;
470
+ 'primaryEmail'?: string | null;
510
471
  /**
511
472
  *
512
473
  * @type {string}
513
474
  * @memberof ContactCreate
514
475
  */
515
- 'locale'?: string | null;
476
+ 'primaryPhone'?: string | null;
516
477
  /**
517
478
  *
518
- * @type {Contacttypedata}
479
+ * @type {ContactTypeDataCreate}
519
480
  * @memberof ContactCreate
520
481
  */
521
- 'contactTypeData': Contacttypedata;
482
+ 'contactTypeData'?: ContactTypeDataCreate;
522
483
  }
523
484
  /**
524
485
  *
@@ -529,9 +490,83 @@ declare const ContactType: {
529
490
  readonly Guest: "GUEST";
530
491
  readonly Owner: "OWNER";
531
492
  readonly Lead: "LEAD";
532
- readonly Basic: "BASIC";
533
493
  };
534
494
  type ContactType = typeof ContactType[keyof typeof ContactType];
495
+ /**
496
+ *
497
+ * @export
498
+ * @interface ContactTypeData
499
+ */
500
+ interface ContactTypeData {
501
+ /**
502
+ *
503
+ * @type {GuestData}
504
+ * @memberof ContactTypeData
505
+ */
506
+ 'guest'?: GuestData | null;
507
+ /**
508
+ *
509
+ * @type {OwnerData}
510
+ * @memberof ContactTypeData
511
+ */
512
+ 'owner'?: OwnerData | null;
513
+ /**
514
+ *
515
+ * @type {LeadData}
516
+ * @memberof ContactTypeData
517
+ */
518
+ 'lead'?: LeadData | null;
519
+ }
520
+ /**
521
+ *
522
+ * @export
523
+ * @interface ContactTypeDataCreate
524
+ */
525
+ interface ContactTypeDataCreate {
526
+ /**
527
+ *
528
+ * @type {GuestDataCreate}
529
+ * @memberof ContactTypeDataCreate
530
+ */
531
+ 'guest'?: GuestDataCreate | null;
532
+ /**
533
+ *
534
+ * @type {object}
535
+ * @memberof ContactTypeDataCreate
536
+ */
537
+ 'owner'?: object;
538
+ /**
539
+ *
540
+ * @type {object}
541
+ * @memberof ContactTypeDataCreate
542
+ */
543
+ 'lead'?: object;
544
+ }
545
+ /**
546
+ *
547
+ * @export
548
+ * @interface ContactTypeDataUpdate
549
+ */
550
+ interface ContactTypeDataUpdate {
551
+ /**
552
+ *
553
+ * @type {GuestDataUpdate}
554
+ * @memberof ContactTypeDataUpdate
555
+ */
556
+ 'guest'?: GuestDataUpdate | null;
557
+ /**
558
+ *
559
+ * @type {object}
560
+ * @memberof ContactTypeDataUpdate
561
+ */
562
+ 'owner'?: object;
563
+ /**
564
+ *
565
+ * @type {object}
566
+ * @memberof ContactTypeDataUpdate
567
+ */
568
+ 'lead'?: object;
569
+ }
535
570
  /**
536
571
  *
537
572
  * @export
@@ -576,10 +611,10 @@ interface ContactUpdate {
576
611
  'profilePicUrl'?: string | null;
577
612
  /**
578
613
  *
579
- * @type {Contacttypedata1}
614
+ * @type {ContactTypeDataUpdate}
580
615
  * @memberof ContactUpdate
581
616
  */
582
- 'contactTypeData'?: Contacttypedata1 | null;
617
+ 'contactTypeData'?: ContactTypeDataUpdate | null;
583
618
  }
584
619
  /**
585
620
  *
@@ -611,6 +646,12 @@ interface ContactsCreateResponse {
611
646
  * @memberof ContactsCreateResponse
612
647
  */
613
648
  'lastName': string;
649
+ /**
650
+ *
651
+ * @type {string}
652
+ * @memberof ContactsCreateResponse
653
+ */
654
+ 'fullName'?: string;
614
655
  /**
615
656
  *
616
657
  * @type {string}
@@ -646,19 +687,61 @@ interface ContactsCreateResponse {
646
687
  * @type {string}
647
688
  * @memberof ContactsCreateResponse
648
689
  */
649
- 'profilePicUrl'?: string | null;
690
+ 'createdBy': string;
650
691
  /**
651
692
  *
652
693
  * @type {string}
653
694
  * @memberof ContactsCreateResponse
654
695
  */
655
- 'fullName'?: string;
696
+ 'updatedBy': string;
697
+ /**
698
+ *
699
+ * @type {string}
700
+ * @memberof ContactsCreateResponse
701
+ */
702
+ 'profilePicUrlRegular'?: string | null;
703
+ /**
704
+ *
705
+ * @type {string}
706
+ * @memberof ContactsCreateResponse
707
+ */
708
+ 'profilePicUrlLarge'?: string | null;
709
+ /**
710
+ *
711
+ * @type {string}
712
+ * @memberof ContactsCreateResponse
713
+ */
714
+ 'profilePicUrlThumbnail'?: string | null;
715
+ /**
716
+ *
717
+ * @type {boolean}
718
+ * @memberof ContactsCreateResponse
719
+ */
720
+ 'smsMarketingIsSubscribed'?: boolean;
721
+ /**
722
+ *
723
+ * @type {string}
724
+ * @memberof ContactsCreateResponse
725
+ */
726
+ 'smsMarketingConsentType'?: string | null;
727
+ /**
728
+ *
729
+ * @type {string}
730
+ * @memberof ContactsCreateResponse
731
+ */
732
+ 'smsMarketingUpdatedAt'?: string | null;
656
733
  /**
657
734
  *
658
- * @type {Contacttypedata2}
735
+ * @type {boolean}
659
736
  * @memberof ContactsCreateResponse
660
737
  */
661
- 'contactTypeData': Contacttypedata2;
738
+ 'smsTransactionalIsSubscribed'?: boolean;
739
+ /**
740
+ *
741
+ * @type {string}
742
+ * @memberof ContactsCreateResponse
743
+ */
744
+ 'smsTransactionalConsentType'?: string | null;
662
745
  /**
663
746
  *
664
747
  * @type {string}
@@ -701,6 +784,12 @@ interface ContactsCreateResponse {
701
784
  * @memberof ContactsCreateResponse
702
785
  */
703
786
  'addresses'?: Array<AddressItem>;
787
+ /**
788
+ *
789
+ * @type {ContactTypeData}
790
+ * @memberof ContactsCreateResponse
791
+ */
792
+ 'contactTypeData'?: ContactTypeData;
704
793
  }
705
794
  /**
706
795
  *
@@ -732,6 +821,12 @@ interface ContactsGetResponse {
732
821
  * @memberof ContactsGetResponse
733
822
  */
734
823
  'lastName': string;
824
+ /**
825
+ *
826
+ * @type {string}
827
+ * @memberof ContactsGetResponse
828
+ */
829
+ 'fullName'?: string;
735
830
  /**
736
831
  *
737
832
  * @type {string}
@@ -767,19 +862,61 @@ interface ContactsGetResponse {
767
862
  * @type {string}
768
863
  * @memberof ContactsGetResponse
769
864
  */
770
- 'profilePicUrl'?: string | null;
865
+ 'createdBy': string;
771
866
  /**
772
867
  *
773
868
  * @type {string}
774
869
  * @memberof ContactsGetResponse
775
870
  */
776
- 'fullName'?: string;
871
+ 'updatedBy': string;
872
+ /**
873
+ *
874
+ * @type {string}
875
+ * @memberof ContactsGetResponse
876
+ */
877
+ 'profilePicUrlRegular'?: string | null;
777
878
  /**
778
879
  *
779
- * @type {Contacttypedata2}
880
+ * @type {string}
780
881
  * @memberof ContactsGetResponse
781
882
  */
782
- 'contactTypeData': Contacttypedata2;
883
+ 'profilePicUrlLarge'?: string | null;
884
+ /**
885
+ *
886
+ * @type {string}
887
+ * @memberof ContactsGetResponse
888
+ */
889
+ 'profilePicUrlThumbnail'?: string | null;
890
+ /**
891
+ *
892
+ * @type {boolean}
893
+ * @memberof ContactsGetResponse
894
+ */
895
+ 'smsMarketingIsSubscribed'?: boolean;
896
+ /**
897
+ *
898
+ * @type {string}
899
+ * @memberof ContactsGetResponse
900
+ */
901
+ 'smsMarketingConsentType'?: string | null;
902
+ /**
903
+ *
904
+ * @type {string}
905
+ * @memberof ContactsGetResponse
906
+ */
907
+ 'smsMarketingUpdatedAt'?: string | null;
908
+ /**
909
+ *
910
+ * @type {boolean}
911
+ * @memberof ContactsGetResponse
912
+ */
913
+ 'smsTransactionalIsSubscribed'?: boolean;
914
+ /**
915
+ *
916
+ * @type {string}
917
+ * @memberof ContactsGetResponse
918
+ */
919
+ 'smsTransactionalConsentType'?: string | null;
783
920
  /**
784
921
  *
785
922
  * @type {string}
@@ -822,6 +959,12 @@ interface ContactsGetResponse {
822
959
  * @memberof ContactsGetResponse
823
960
  */
824
961
  'addresses'?: Array<AddressItem>;
962
+ /**
963
+ *
964
+ * @type {ContactTypeData}
965
+ * @memberof ContactsGetResponse
966
+ */
967
+ 'contactTypeData'?: ContactTypeData;
825
968
  }
826
969
  /**
827
970
  *
@@ -853,6 +996,12 @@ interface ContactsListResponse {
853
996
  * @memberof ContactsListResponse
854
997
  */
855
998
  'lastName': string;
999
+ /**
1000
+ *
1001
+ * @type {string}
1002
+ * @memberof ContactsListResponse
1003
+ */
1004
+ 'fullName'?: string;
856
1005
  /**
857
1006
  *
858
1007
  * @type {string}
@@ -888,19 +1037,61 @@ interface ContactsListResponse {
888
1037
  * @type {string}
889
1038
  * @memberof ContactsListResponse
890
1039
  */
891
- 'profilePicUrl'?: string | null;
1040
+ 'createdBy': string;
892
1041
  /**
893
1042
  *
894
1043
  * @type {string}
895
1044
  * @memberof ContactsListResponse
896
1045
  */
897
- 'fullName'?: string;
1046
+ 'updatedBy': string;
1047
+ /**
1048
+ *
1049
+ * @type {string}
1050
+ * @memberof ContactsListResponse
1051
+ */
1052
+ 'profilePicUrlRegular'?: string | null;
1053
+ /**
1054
+ *
1055
+ * @type {string}
1056
+ * @memberof ContactsListResponse
1057
+ */
1058
+ 'profilePicUrlLarge'?: string | null;
1059
+ /**
1060
+ *
1061
+ * @type {string}
1062
+ * @memberof ContactsListResponse
1063
+ */
1064
+ 'profilePicUrlThumbnail'?: string | null;
1065
+ /**
1066
+ *
1067
+ * @type {boolean}
1068
+ * @memberof ContactsListResponse
1069
+ */
1070
+ 'smsMarketingIsSubscribed'?: boolean;
898
1071
  /**
899
1072
  *
900
- * @type {Contacttypedata2}
1073
+ * @type {string}
901
1074
  * @memberof ContactsListResponse
902
1075
  */
903
- 'contactTypeData': Contacttypedata2;
1076
+ 'smsMarketingConsentType'?: string | null;
1077
+ /**
1078
+ *
1079
+ * @type {string}
1080
+ * @memberof ContactsListResponse
1081
+ */
1082
+ 'smsMarketingUpdatedAt'?: string | null;
1083
+ /**
1084
+ *
1085
+ * @type {boolean}
1086
+ * @memberof ContactsListResponse
1087
+ */
1088
+ 'smsTransactionalIsSubscribed'?: boolean;
1089
+ /**
1090
+ *
1091
+ * @type {string}
1092
+ * @memberof ContactsListResponse
1093
+ */
1094
+ 'smsTransactionalConsentType'?: string | null;
904
1095
  /**
905
1096
  *
906
1097
  * @type {string}
@@ -943,6 +1134,12 @@ interface ContactsListResponse {
943
1134
  * @memberof ContactsListResponse
944
1135
  */
945
1136
  'addresses'?: Array<AddressItem>;
1137
+ /**
1138
+ *
1139
+ * @type {ContactTypeData}
1140
+ * @memberof ContactsListResponse
1141
+ */
1142
+ 'contactTypeData'?: ContactTypeData;
946
1143
  }
947
1144
  /**
948
1145
  *
@@ -974,6 +1171,12 @@ interface ContactsUpdateResponse {
974
1171
  * @memberof ContactsUpdateResponse
975
1172
  */
976
1173
  'lastName': string;
1174
+ /**
1175
+ *
1176
+ * @type {string}
1177
+ * @memberof ContactsUpdateResponse
1178
+ */
1179
+ 'fullName'?: string;
977
1180
  /**
978
1181
  *
979
1182
  * @type {string}
@@ -1009,19 +1212,61 @@ interface ContactsUpdateResponse {
1009
1212
  * @type {string}
1010
1213
  * @memberof ContactsUpdateResponse
1011
1214
  */
1012
- 'profilePicUrl'?: string | null;
1215
+ 'createdBy': string;
1013
1216
  /**
1014
1217
  *
1015
1218
  * @type {string}
1016
1219
  * @memberof ContactsUpdateResponse
1017
1220
  */
1018
- 'fullName'?: string;
1221
+ 'updatedBy': string;
1222
+ /**
1223
+ *
1224
+ * @type {string}
1225
+ * @memberof ContactsUpdateResponse
1226
+ */
1227
+ 'profilePicUrlRegular'?: string | null;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof ContactsUpdateResponse
1232
+ */
1233
+ 'profilePicUrlLarge'?: string | null;
1234
+ /**
1235
+ *
1236
+ * @type {string}
1237
+ * @memberof ContactsUpdateResponse
1238
+ */
1239
+ 'profilePicUrlThumbnail'?: string | null;
1240
+ /**
1241
+ *
1242
+ * @type {boolean}
1243
+ * @memberof ContactsUpdateResponse
1244
+ */
1245
+ 'smsMarketingIsSubscribed'?: boolean;
1246
+ /**
1247
+ *
1248
+ * @type {string}
1249
+ * @memberof ContactsUpdateResponse
1250
+ */
1251
+ 'smsMarketingConsentType'?: string | null;
1252
+ /**
1253
+ *
1254
+ * @type {string}
1255
+ * @memberof ContactsUpdateResponse
1256
+ */
1257
+ 'smsMarketingUpdatedAt'?: string | null;
1258
+ /**
1259
+ *
1260
+ * @type {boolean}
1261
+ * @memberof ContactsUpdateResponse
1262
+ */
1263
+ 'smsTransactionalIsSubscribed'?: boolean;
1019
1264
  /**
1020
1265
  *
1021
- * @type {Contacttypedata2}
1266
+ * @type {string}
1022
1267
  * @memberof ContactsUpdateResponse
1023
1268
  */
1024
- 'contactTypeData': Contacttypedata2;
1269
+ 'smsTransactionalConsentType'?: string | null;
1025
1270
  /**
1026
1271
  *
1027
1272
  * @type {string}
@@ -1064,22 +1309,13 @@ interface ContactsUpdateResponse {
1064
1309
  * @memberof ContactsUpdateResponse
1065
1310
  */
1066
1311
  'addresses'?: Array<AddressItem>;
1312
+ /**
1313
+ *
1314
+ * @type {ContactTypeData}
1315
+ * @memberof ContactsUpdateResponse
1316
+ */
1317
+ 'contactTypeData'?: ContactTypeData;
1067
1318
  }
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
1319
  /**
1084
1320
  *
1085
1321
  * @export
@@ -1201,7 +1437,7 @@ interface GuestData {
1201
1437
  * @type {string}
1202
1438
  * @memberof GuestData
1203
1439
  */
1204
- 'contactType': GuestDataContactTypeEnum;
1440
+ 'createdAt': string;
1205
1441
  /**
1206
1442
  *
1207
1443
  * @type {number}
@@ -1251,22 +1487,12 @@ interface GuestData {
1251
1487
  */
1252
1488
  'smsTransactionalIsSubscribed'?: boolean;
1253
1489
  }
1254
- declare const GuestDataContactTypeEnum: {
1255
- readonly Guest: "GUEST";
1256
- };
1257
- type GuestDataContactTypeEnum = typeof GuestDataContactTypeEnum[keyof typeof GuestDataContactTypeEnum];
1258
1490
  /**
1259
1491
  *
1260
1492
  * @export
1261
1493
  * @interface GuestDataCreate
1262
1494
  */
1263
1495
  interface GuestDataCreate {
1264
- /**
1265
- *
1266
- * @type {string}
1267
- * @memberof GuestDataCreate
1268
- */
1269
- 'contactType': GuestDataCreateContactTypeEnum;
1270
1496
  /**
1271
1497
  *
1272
1498
  * @type {string}
@@ -1304,22 +1530,12 @@ interface GuestDataCreate {
1304
1530
  */
1305
1531
  'smsTransactionalIsSubscribed'?: boolean | null;
1306
1532
  }
1307
- declare const GuestDataCreateContactTypeEnum: {
1308
- readonly Guest: "GUEST";
1309
- };
1310
- type GuestDataCreateContactTypeEnum = typeof GuestDataCreateContactTypeEnum[keyof typeof GuestDataCreateContactTypeEnum];
1311
1533
  /**
1312
1534
  *
1313
1535
  * @export
1314
1536
  * @interface GuestDataUpdate
1315
1537
  */
1316
1538
  interface GuestDataUpdate {
1317
- /**
1318
- *
1319
- * @type {string}
1320
- * @memberof GuestDataUpdate
1321
- */
1322
- 'contactType': GuestDataUpdateContactTypeEnum;
1323
1539
  /**
1324
1540
  *
1325
1541
  * @type {string}
@@ -1357,10 +1573,6 @@ interface GuestDataUpdate {
1357
1573
  */
1358
1574
  'smsTransactionalIsSubscribed'?: boolean | null;
1359
1575
  }
1360
- declare const GuestDataUpdateContactTypeEnum: {
1361
- readonly Guest: "GUEST";
1362
- };
1363
- type GuestDataUpdateContactTypeEnum = typeof GuestDataUpdateContactTypeEnum[keyof typeof GuestDataUpdateContactTypeEnum];
1364
1576
  /**
1365
1577
  *
1366
1578
  * @export
@@ -1418,46 +1630,8 @@ interface LeadData {
1418
1630
  * @type {string}
1419
1631
  * @memberof LeadData
1420
1632
  */
1421
- 'contactType': LeadDataContactTypeEnum;
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;
1633
+ 'createdAt': string;
1456
1634
  }
1457
- declare const LeadDataUpdateContactTypeEnum: {
1458
- readonly Lead: "LEAD";
1459
- };
1460
- type LeadDataUpdateContactTypeEnum = typeof LeadDataUpdateContactTypeEnum[keyof typeof LeadDataUpdateContactTypeEnum];
1461
1635
  /**
1462
1636
  *
1463
1637
  * @export
@@ -1495,46 +1669,8 @@ interface OwnerData {
1495
1669
  * @type {string}
1496
1670
  * @memberof OwnerData
1497
1671
  */
1498
- 'contactType': OwnerDataContactTypeEnum;
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;
1672
+ 'createdAt': string;
1533
1673
  }
1534
- declare const OwnerDataUpdateContactTypeEnum: {
1535
- readonly Owner: "OWNER";
1536
- };
1537
- type OwnerDataUpdateContactTypeEnum = typeof OwnerDataUpdateContactTypeEnum[keyof typeof OwnerDataUpdateContactTypeEnum];
1538
1674
  /**
1539
1675
  *
1540
1676
  * @export
@@ -3079,4 +3215,4 @@ declare class UnboundApi extends BaseAPI {
3079
3215
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
3080
3216
  }
3081
3217
 
3082
- export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, type BasicData, BasicDataContactTypeEnum, type BasicDataCreate, BasicDataCreateContactTypeEnum, type BasicDataUpdate, BasicDataUpdateContactTypeEnum, Configuration, type ConfigurationParameters, type ContactCreate, ContactType, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, type Contacttypedata, type Contacttypedata1, type Contacttypedata2, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, GuestDataContactTypeEnum, type GuestDataCreate, GuestDataCreateContactTypeEnum, type GuestDataUpdate, GuestDataUpdateContactTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, LeadDataContactTypeEnum, type LeadDataCreate, LeadDataCreateContactTypeEnum, type LeadDataUpdate, LeadDataUpdateContactTypeEnum, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, type OwnerData, OwnerDataContactTypeEnum, type OwnerDataCreate, OwnerDataCreateContactTypeEnum, type OwnerDataUpdate, OwnerDataUpdateContactTypeEnum, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
3218
+ 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, ContactType, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, 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 };