@ember-home/unbound-ts-client 0.0.34 → 0.0.36

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.ts CHANGED
@@ -218,6 +218,55 @@ interface APIAddress {
218
218
  */
219
219
  'isPrimary': boolean;
220
220
  }
221
+ /**
222
+ *
223
+ * @export
224
+ * @interface APIAddressCreate
225
+ */
226
+ interface APIAddressCreate {
227
+ /**
228
+ *
229
+ * @type {string}
230
+ * @memberof APIAddressCreate
231
+ */
232
+ 'street1'?: string | null;
233
+ /**
234
+ *
235
+ * @type {string}
236
+ * @memberof APIAddressCreate
237
+ */
238
+ 'street2'?: string | null;
239
+ /**
240
+ *
241
+ * @type {string}
242
+ * @memberof APIAddressCreate
243
+ */
244
+ 'country'?: string | null;
245
+ /**
246
+ *
247
+ * @type {string}
248
+ * @memberof APIAddressCreate
249
+ */
250
+ 'locality'?: string | null;
251
+ /**
252
+ *
253
+ * @type {string}
254
+ * @memberof APIAddressCreate
255
+ */
256
+ 'postalCode'?: string | null;
257
+ /**
258
+ *
259
+ * @type {string}
260
+ * @memberof APIAddressCreate
261
+ */
262
+ 'region'?: string | null;
263
+ /**
264
+ *
265
+ * @type {boolean}
266
+ * @memberof APIAddressCreate
267
+ */
268
+ 'isPrimary'?: boolean | null;
269
+ }
221
270
  /**
222
271
  *
223
272
  * @export
@@ -442,6 +491,92 @@ interface APIContact {
442
491
  */
443
492
  'updatedByName': string;
444
493
  }
494
+ /**
495
+ *
496
+ * @export
497
+ * @interface APIContactCreate1
498
+ */
499
+ interface APIContactCreate1 {
500
+ /**
501
+ *
502
+ * @type {string}
503
+ * @memberof APIContactCreate1
504
+ */
505
+ 'locale'?: string | null;
506
+ /**
507
+ *
508
+ * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1>}
509
+ * @memberof APIContactCreate1
510
+ */
511
+ 'emails'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1> | null;
512
+ /**
513
+ *
514
+ * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2>}
515
+ * @memberof APIContactCreate1
516
+ */
517
+ 'phones'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2> | null;
518
+ /**
519
+ *
520
+ * @type {string}
521
+ * @memberof APIContactCreate1
522
+ */
523
+ 'firstName': string;
524
+ /**
525
+ *
526
+ * @type {string}
527
+ * @memberof APIContactCreate1
528
+ */
529
+ 'lastName': string;
530
+ /**
531
+ *
532
+ * @type {string}
533
+ * @memberof APIContactCreate1
534
+ */
535
+ 'company'?: string | null;
536
+ }
537
+ /**
538
+ *
539
+ * @export
540
+ * @interface APIContactCreate2
541
+ */
542
+ interface APIContactCreate2 {
543
+ /**
544
+ *
545
+ * @type {string}
546
+ * @memberof APIContactCreate2
547
+ */
548
+ 'locale'?: string | null;
549
+ /**
550
+ *
551
+ * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1>}
552
+ * @memberof APIContactCreate2
553
+ */
554
+ 'emails'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1> | null;
555
+ /**
556
+ *
557
+ * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2>}
558
+ * @memberof APIContactCreate2
559
+ */
560
+ 'phones'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2> | null;
561
+ /**
562
+ *
563
+ * @type {string}
564
+ * @memberof APIContactCreate2
565
+ */
566
+ 'company': string;
567
+ /**
568
+ *
569
+ * @type {string}
570
+ * @memberof APIContactCreate2
571
+ */
572
+ 'firstName'?: string | null;
573
+ /**
574
+ *
575
+ * @type {string}
576
+ * @memberof APIContactCreate2
577
+ */
578
+ 'lastName'?: string | null;
579
+ }
445
580
  /**
446
581
  *
447
582
  * @export
@@ -576,6 +711,37 @@ interface APIConversation {
576
711
  */
577
712
  'providerAccountId': string;
578
713
  }
714
+ /**
715
+ *
716
+ * @export
717
+ * @interface APIConversationCreate
718
+ */
719
+ interface APIConversationCreate {
720
+ /**
721
+ *
722
+ * @type {string}
723
+ * @memberof APIConversationCreate
724
+ */
725
+ 'providerUpdatedAt': string;
726
+ /**
727
+ *
728
+ * @type {ConversationStatus}
729
+ * @memberof APIConversationCreate
730
+ */
731
+ 'status': ConversationStatus;
732
+ /**
733
+ *
734
+ * @type {Conversationtypedata}
735
+ * @memberof APIConversationCreate
736
+ */
737
+ 'conversationTypeData': Conversationtypedata;
738
+ /**
739
+ *
740
+ * @type {string}
741
+ * @memberof APIConversationCreate
742
+ */
743
+ 'providerConversationId': string;
744
+ }
579
745
  /**
580
746
  *
581
747
  * @export
@@ -596,10 +762,10 @@ interface APIConversationUpdate {
596
762
  'status': ConversationStatus;
597
763
  /**
598
764
  *
599
- * @type {Conversationtypedata}
765
+ * @type {Conversationtypedata1}
600
766
  * @memberof APIConversationUpdate
601
767
  */
602
- 'conversationTypeData': Conversationtypedata;
768
+ 'conversationTypeData': Conversationtypedata1;
603
769
  /**
604
770
  *
605
771
  * @type {string}
@@ -645,10 +811,29 @@ interface APIEmail {
645
811
  'providerId': string;
646
812
  /**
647
813
  *
648
- * @type {Deletedat}
814
+ * @type {string}
649
815
  * @memberof APIEmail
650
816
  */
651
- 'deletedAt'?: Deletedat | null;
817
+ 'deletedAt'?: string | null;
818
+ }
819
+ /**
820
+ *
821
+ * @export
822
+ * @interface APIEmailCreate
823
+ */
824
+ interface APIEmailCreate {
825
+ /**
826
+ *
827
+ * @type {string}
828
+ * @memberof APIEmailCreate
829
+ */
830
+ 'email': string;
831
+ /**
832
+ *
833
+ * @type {boolean}
834
+ * @memberof APIEmailCreate
835
+ */
836
+ 'isPrimary'?: boolean | null;
652
837
  }
653
838
  /**
654
839
  *
@@ -669,6 +854,73 @@ interface APIEmailUpdate {
669
854
  */
670
855
  'isPrimary'?: boolean | null;
671
856
  }
857
+ /**
858
+ *
859
+ * @export
860
+ * @interface APIInquiry
861
+ */
862
+ interface APIInquiry {
863
+ /**
864
+ *
865
+ * @type {string}
866
+ * @memberof APIInquiry
867
+ */
868
+ 'inquiryId': string;
869
+ /**
870
+ *
871
+ * @type {string}
872
+ * @memberof APIInquiry
873
+ */
874
+ 'contactId': string;
875
+ /**
876
+ *
877
+ * @type {Array<string>}
878
+ * @memberof APIInquiry
879
+ */
880
+ 'listingIds': Array<string> | null;
881
+ /**
882
+ *
883
+ * @type {string}
884
+ * @memberof APIInquiry
885
+ */
886
+ 'createdAt': string;
887
+ /**
888
+ *
889
+ * @type {string}
890
+ * @memberof APIInquiry
891
+ */
892
+ 'updatedAt': string;
893
+ /**
894
+ *
895
+ * @type {string}
896
+ * @memberof APIInquiry
897
+ */
898
+ 'createdByName': string;
899
+ /**
900
+ *
901
+ * @type {string}
902
+ * @memberof APIInquiry
903
+ */
904
+ 'updatedByName': string;
905
+ /**
906
+ *
907
+ * @type {string}
908
+ * @memberof APIInquiry
909
+ */
910
+ 'arrivalAt': string | null;
911
+ /**
912
+ *
913
+ * @type {string}
914
+ * @memberof APIInquiry
915
+ */
916
+ 'departureAt': string | null;
917
+ /**
918
+ *
919
+ * @type {string}
920
+ * @memberof APIInquiry
921
+ */
922
+ 'notes': string | null;
923
+ }
672
924
  /**
673
925
  *
674
926
  * @export
@@ -879,77 +1131,230 @@ interface APIMessage {
879
1131
  /**
880
1132
  *
881
1133
  * @export
882
- * @interface APIPhoneNumber
1134
+ * @interface APIMessageCreate
883
1135
  */
884
- interface APIPhoneNumber {
1136
+ interface APIMessageCreate {
885
1137
  /**
886
1138
  *
887
1139
  * @type {string}
888
- * @memberof APIPhoneNumber
1140
+ * @memberof APIMessageCreate
889
1141
  */
890
- 'phoneId': string;
1142
+ 'providerMessageId'?: string;
891
1143
  /**
892
1144
  *
893
1145
  * @type {string}
894
- * @memberof APIPhoneNumber
1146
+ * @memberof APIMessageCreate
895
1147
  */
896
- 'phone': string;
1148
+ 'providerUpdatedAt'?: string;
897
1149
  /**
898
1150
  *
899
- * @type {string}
900
- * @memberof APIPhoneNumber
1151
+ * @type {MessageDirection}
1152
+ * @memberof APIMessageCreate
901
1153
  */
902
- 'providerId': string;
1154
+ 'direction': MessageDirection;
903
1155
  /**
904
1156
  *
905
1157
  * @type {string}
906
- * @memberof APIPhoneNumber
907
- */
908
- 'deletedAt'?: string | null;
909
- /**
910
- *
911
- * @type {boolean}
912
- * @memberof APIPhoneNumber
1158
+ * @memberof APIMessageCreate
913
1159
  */
914
- 'isPrimary': boolean;
915
- }
916
- /**
917
- *
918
- * @export
919
- * @interface APIPhoneNumberUpdate
920
- */
921
- interface APIPhoneNumberUpdate {
1160
+ 'sentAt'?: string | null;
922
1161
  /**
923
1162
  *
924
1163
  * @type {string}
925
- * @memberof APIPhoneNumberUpdate
1164
+ * @memberof APIMessageCreate
926
1165
  */
927
- 'phone'?: string | null;
1166
+ 'deliveredAt'?: string | null;
928
1167
  /**
929
1168
  *
930
- * @type {boolean}
931
- * @memberof APIPhoneNumberUpdate
1169
+ * @type {string}
1170
+ * @memberof APIMessageCreate
932
1171
  */
933
- 'isPrimary'?: boolean | null;
934
- }
935
- /**
936
- *
937
- * @export
938
- * @interface APIProviderUpdate
939
- */
940
- interface APIProviderUpdate {
1172
+ 'readAt'?: string | null;
941
1173
  /**
942
1174
  *
943
1175
  * @type {string}
944
- * @memberof APIProviderUpdate
1176
+ * @memberof APIMessageCreate
945
1177
  */
946
- 'providerApiLogin'?: string | null;
1178
+ 'failedAt'?: string | null;
947
1179
  /**
948
1180
  *
949
1181
  * @type {string}
950
- * @memberof APIProviderUpdate
1182
+ * @memberof APIMessageCreate
951
1183
  */
952
- 'providerApiKey'?: string | null;
1184
+ 'scheduledAt'?: string | null;
1185
+ /**
1186
+ *
1187
+ * @type {MessageStatus}
1188
+ * @memberof APIMessageCreate
1189
+ */
1190
+ 'status'?: MessageStatus;
1191
+ /**
1192
+ *
1193
+ * @type {string}
1194
+ * @memberof APIMessageCreate
1195
+ */
1196
+ 'body': string;
1197
+ /**
1198
+ *
1199
+ * @type {string}
1200
+ * @memberof APIMessageCreate
1201
+ */
1202
+ 'channelName': string;
1203
+ /**
1204
+ *
1205
+ * @type {string}
1206
+ * @memberof APIMessageCreate
1207
+ */
1208
+ 'conversationId': string;
1209
+ /**
1210
+ *
1211
+ * @type {Messagetypedata1}
1212
+ * @memberof APIMessageCreate
1213
+ */
1214
+ 'messageTypeData': Messagetypedata1;
1215
+ }
1216
+ /**
1217
+ *
1218
+ * @export
1219
+ * @interface APIPhoneNumber
1220
+ */
1221
+ interface APIPhoneNumber {
1222
+ /**
1223
+ *
1224
+ * @type {string}
1225
+ * @memberof APIPhoneNumber
1226
+ */
1227
+ 'phoneId': string;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof APIPhoneNumber
1232
+ */
1233
+ 'phone': string;
1234
+ /**
1235
+ *
1236
+ * @type {string}
1237
+ * @memberof APIPhoneNumber
1238
+ */
1239
+ 'providerId': string;
1240
+ /**
1241
+ *
1242
+ * @type {string}
1243
+ * @memberof APIPhoneNumber
1244
+ */
1245
+ 'deletedAt'?: string | null;
1246
+ /**
1247
+ *
1248
+ * @type {boolean}
1249
+ * @memberof APIPhoneNumber
1250
+ */
1251
+ 'isPrimary': boolean;
1252
+ }
1253
+ /**
1254
+ *
1255
+ * @export
1256
+ * @interface APIPhoneNumberCreate
1257
+ */
1258
+ interface APIPhoneNumberCreate {
1259
+ /**
1260
+ *
1261
+ * @type {string}
1262
+ * @memberof APIPhoneNumberCreate
1263
+ */
1264
+ 'phone': string;
1265
+ /**
1266
+ *
1267
+ * @type {boolean}
1268
+ * @memberof APIPhoneNumberCreate
1269
+ */
1270
+ 'isPrimary'?: boolean | null;
1271
+ }
1272
+ /**
1273
+ *
1274
+ * @export
1275
+ * @interface APIPhoneNumberUpdate
1276
+ */
1277
+ interface APIPhoneNumberUpdate {
1278
+ /**
1279
+ *
1280
+ * @type {string}
1281
+ * @memberof APIPhoneNumberUpdate
1282
+ */
1283
+ 'phone'?: string | null;
1284
+ /**
1285
+ *
1286
+ * @type {boolean}
1287
+ * @memberof APIPhoneNumberUpdate
1288
+ */
1289
+ 'isPrimary'?: boolean | null;
1290
+ }
1291
+ /**
1292
+ *
1293
+ * @export
1294
+ * @interface APIProviderCreate
1295
+ */
1296
+ interface APIProviderCreate {
1297
+ /**
1298
+ *
1299
+ * @type {string}
1300
+ * @memberof APIProviderCreate
1301
+ */
1302
+ 'providerApiLogin'?: string | null;
1303
+ /**
1304
+ *
1305
+ * @type {string}
1306
+ * @memberof APIProviderCreate
1307
+ */
1308
+ 'providerApiKey'?: string | null;
1309
+ /**
1310
+ *
1311
+ * @type {string}
1312
+ * @memberof APIProviderCreate
1313
+ */
1314
+ 'webhookLogin'?: string | null;
1315
+ /**
1316
+ *
1317
+ * @type {string}
1318
+ * @memberof APIProviderCreate
1319
+ */
1320
+ 'webhookPassword'?: string | null;
1321
+ /**
1322
+ *
1323
+ * @type {string}
1324
+ * @memberof APIProviderCreate
1325
+ */
1326
+ 'providerId'?: string | null;
1327
+ /**
1328
+ *
1329
+ * @type {string}
1330
+ * @memberof APIProviderCreate
1331
+ */
1332
+ 'providerType': string;
1333
+ /**
1334
+ *
1335
+ * @type {string}
1336
+ * @memberof APIProviderCreate
1337
+ */
1338
+ 'providerAccountId': string;
1339
+ }
1340
+ /**
1341
+ *
1342
+ * @export
1343
+ * @interface APIProviderUpdate
1344
+ */
1345
+ interface APIProviderUpdate {
1346
+ /**
1347
+ *
1348
+ * @type {string}
1349
+ * @memberof APIProviderUpdate
1350
+ */
1351
+ 'providerApiLogin'?: string | null;
1352
+ /**
1353
+ *
1354
+ * @type {string}
1355
+ * @memberof APIProviderUpdate
1356
+ */
1357
+ 'providerApiKey'?: string | null;
953
1358
  /**
954
1359
  *
955
1360
  * @type {string}
@@ -989,10 +1394,10 @@ interface APIReservation {
989
1394
  'providerListingId': string;
990
1395
  /**
991
1396
  *
992
- * @type {string}
1397
+ * @type {ReservationStatus}
993
1398
  * @memberof APIReservation
994
1399
  */
995
- 'reservationStatus': string;
1400
+ 'reservationStatus': ReservationStatus;
996
1401
  /**
997
1402
  *
998
1403
  * @type {string}
@@ -1181,141 +1586,6 @@ interface AddressApi {
1181
1586
  */
1182
1587
  'isPrimary': boolean;
1183
1588
  }
1184
- /**
1185
- *
1186
- * @export
1187
- * @interface AddressCreate
1188
- */
1189
- interface AddressCreate {
1190
- /**
1191
- *
1192
- * @type {string}
1193
- * @memberof AddressCreate
1194
- */
1195
- 'street1'?: string | null;
1196
- /**
1197
- *
1198
- * @type {string}
1199
- * @memberof AddressCreate
1200
- */
1201
- 'street2'?: string | null;
1202
- /**
1203
- *
1204
- * @type {string}
1205
- * @memberof AddressCreate
1206
- */
1207
- 'country'?: string | null;
1208
- /**
1209
- *
1210
- * @type {string}
1211
- * @memberof AddressCreate
1212
- */
1213
- 'locality'?: string | null;
1214
- /**
1215
- *
1216
- * @type {string}
1217
- * @memberof AddressCreate
1218
- */
1219
- 'postalCode'?: string | null;
1220
- /**
1221
- *
1222
- * @type {string}
1223
- * @memberof AddressCreate
1224
- */
1225
- 'region'?: string | null;
1226
- /**
1227
- *
1228
- * @type {boolean}
1229
- * @memberof AddressCreate
1230
- */
1231
- 'isPrimary'?: boolean | null;
1232
- }
1233
- /**
1234
- *
1235
- * @export
1236
- * @interface ContactCreate1
1237
- */
1238
- interface ContactCreate1 {
1239
- /**
1240
- *
1241
- * @type {string}
1242
- * @memberof ContactCreate1
1243
- */
1244
- 'locale'?: string | null;
1245
- /**
1246
- *
1247
- * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1>}
1248
- * @memberof ContactCreate1
1249
- */
1250
- 'emails'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1> | null;
1251
- /**
1252
- *
1253
- * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2>}
1254
- * @memberof ContactCreate1
1255
- */
1256
- 'phones'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2> | null;
1257
- /**
1258
- *
1259
- * @type {string}
1260
- * @memberof ContactCreate1
1261
- */
1262
- 'firstName': string;
1263
- /**
1264
- *
1265
- * @type {string}
1266
- * @memberof ContactCreate1
1267
- */
1268
- 'lastName': string;
1269
- /**
1270
- *
1271
- * @type {string}
1272
- * @memberof ContactCreate1
1273
- */
1274
- 'company'?: string | null;
1275
- }
1276
- /**
1277
- *
1278
- * @export
1279
- * @interface ContactCreate2
1280
- */
1281
- interface ContactCreate2 {
1282
- /**
1283
- *
1284
- * @type {string}
1285
- * @memberof ContactCreate2
1286
- */
1287
- 'locale'?: string | null;
1288
- /**
1289
- *
1290
- * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1>}
1291
- * @memberof ContactCreate2
1292
- */
1293
- 'emails'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi1> | null;
1294
- /**
1295
- *
1296
- * @type {Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2>}
1297
- * @memberof ContactCreate2
1298
- */
1299
- 'phones'?: Array<SrcResourceModelsHelperModelsCustomBaseModelCreateApi2> | null;
1300
- /**
1301
- *
1302
- * @type {string}
1303
- * @memberof ContactCreate2
1304
- */
1305
- 'company': string;
1306
- /**
1307
- *
1308
- * @type {string}
1309
- * @memberof ContactCreate2
1310
- */
1311
- 'firstName'?: string | null;
1312
- /**
1313
- *
1314
- * @type {string}
1315
- * @memberof ContactCreate2
1316
- */
1317
- 'lastName'?: string | null;
1318
- }
1319
1589
  /**
1320
1590
  *
1321
1591
  * @export
@@ -1354,38 +1624,7 @@ interface ContactTypeDataApi {
1354
1624
  * @type Contactcreate
1355
1625
  * @export
1356
1626
  */
1357
- type Contactcreate = ContactCreate1 | ContactCreate2;
1358
- /**
1359
- *
1360
- * @export
1361
- * @interface ConversationCreate
1362
- */
1363
- interface ConversationCreate {
1364
- /**
1365
- *
1366
- * @type {string}
1367
- * @memberof ConversationCreate
1368
- */
1369
- 'providerUpdatedAt': string;
1370
- /**
1371
- *
1372
- * @type {ConversationStatus}
1373
- * @memberof ConversationCreate
1374
- */
1375
- 'status': ConversationStatus;
1376
- /**
1377
- *
1378
- * @type {Conversationtypedata1}
1379
- * @memberof ConversationCreate
1380
- */
1381
- 'conversationTypeData': Conversationtypedata1;
1382
- /**
1383
- *
1384
- * @type {string}
1385
- * @memberof ConversationCreate
1386
- */
1387
- 'providerConversationId': string;
1388
- }
1627
+ type Contactcreate = APIContactCreate1 | APIContactCreate2;
1389
1628
  /**
1390
1629
  *
1391
1630
  * @export
@@ -1400,12 +1639,12 @@ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationSta
1400
1639
  * @type Conversationtypedata
1401
1640
  * @export
1402
1641
  */
1403
- type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
1642
+ type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
1404
1643
  /**
1405
1644
  * @type Conversationtypedata1
1406
1645
  * @export
1407
1646
  */
1408
- type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
1647
+ type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
1409
1648
  /**
1410
1649
  *
1411
1650
  * @export
@@ -1444,11 +1683,6 @@ interface DeleteContactListing {
1444
1683
  */
1445
1684
  'type': ContactListingType;
1446
1685
  }
1447
- /**
1448
- * @type Deletedat
1449
- * @export
1450
- */
1451
- type Deletedat = string;
1452
1686
  /**
1453
1687
  *
1454
1688
  * @export
@@ -1479,31 +1713,12 @@ interface EmailApi {
1479
1713
  * @memberof EmailApi
1480
1714
  */
1481
1715
  'providerId': string;
1482
- /**
1483
- *
1484
- * @type {Deletedat}
1485
- * @memberof EmailApi
1486
- */
1487
- 'deletedAt'?: Deletedat | null;
1488
- }
1489
- /**
1490
- *
1491
- * @export
1492
- * @interface EmailCreate
1493
- */
1494
- interface EmailCreate {
1495
1716
  /**
1496
1717
  *
1497
1718
  * @type {string}
1498
- * @memberof EmailCreate
1499
- */
1500
- 'email': string;
1501
- /**
1502
- *
1503
- * @type {boolean}
1504
- * @memberof EmailCreate
1719
+ * @memberof EmailApi
1505
1720
  */
1506
- 'isPrimary'?: boolean | null;
1721
+ 'deletedAt'?: string | null;
1507
1722
  }
1508
1723
  /**
1509
1724
  *
@@ -1581,12 +1796,10 @@ interface HostawayWebhook {
1581
1796
  'accountId': number;
1582
1797
  /**
1583
1798
  *
1584
- * @type {{ [key: string]: any; }}
1799
+ * @type {object}
1585
1800
  * @memberof HostawayWebhook
1586
1801
  */
1587
- 'data': {
1588
- [key: string]: any;
1589
- };
1802
+ 'data': object;
1590
1803
  }
1591
1804
  /**
1592
1805
  *
@@ -1622,10 +1835,10 @@ interface ListResponseAPIAccount {
1622
1835
  interface ListResponseAPIInquiry {
1623
1836
  /**
1624
1837
  *
1625
- * @type {Array<object>}
1838
+ * @type {Array<APIInquiry>}
1626
1839
  * @memberof ListResponseAPIInquiry
1627
1840
  */
1628
- 'data': Array<object>;
1841
+ 'data': Array<APIInquiry>;
1629
1842
  }
1630
1843
  /**
1631
1844
  *
@@ -1653,91 +1866,6 @@ interface ListResponseAPIProvider {
1653
1866
  */
1654
1867
  'data': Array<object>;
1655
1868
  }
1656
- /**
1657
- *
1658
- * @export
1659
- * @interface MessageCreate
1660
- */
1661
- interface MessageCreate {
1662
- /**
1663
- *
1664
- * @type {string}
1665
- * @memberof MessageCreate
1666
- */
1667
- 'providerMessageId'?: string;
1668
- /**
1669
- *
1670
- * @type {string}
1671
- * @memberof MessageCreate
1672
- */
1673
- 'providerUpdatedAt'?: string;
1674
- /**
1675
- *
1676
- * @type {MessageDirection}
1677
- * @memberof MessageCreate
1678
- */
1679
- 'direction': MessageDirection;
1680
- /**
1681
- *
1682
- * @type {string}
1683
- * @memberof MessageCreate
1684
- */
1685
- 'sentAt'?: string | null;
1686
- /**
1687
- *
1688
- * @type {string}
1689
- * @memberof MessageCreate
1690
- */
1691
- 'deliveredAt'?: string | null;
1692
- /**
1693
- *
1694
- * @type {string}
1695
- * @memberof MessageCreate
1696
- */
1697
- 'readAt'?: string | null;
1698
- /**
1699
- *
1700
- * @type {string}
1701
- * @memberof MessageCreate
1702
- */
1703
- 'failedAt'?: string | null;
1704
- /**
1705
- *
1706
- * @type {string}
1707
- * @memberof MessageCreate
1708
- */
1709
- 'scheduledAt'?: string | null;
1710
- /**
1711
- *
1712
- * @type {MessageStatus}
1713
- * @memberof MessageCreate
1714
- */
1715
- 'status'?: MessageStatus;
1716
- /**
1717
- *
1718
- * @type {string}
1719
- * @memberof MessageCreate
1720
- */
1721
- 'body': string;
1722
- /**
1723
- *
1724
- * @type {string}
1725
- * @memberof MessageCreate
1726
- */
1727
- 'channelName': string;
1728
- /**
1729
- *
1730
- * @type {string}
1731
- * @memberof MessageCreate
1732
- */
1733
- 'conversationId': string;
1734
- /**
1735
- *
1736
- * @type {Messagetypedata1}
1737
- * @memberof MessageCreate
1738
- */
1739
- 'messageTypeData': Messagetypedata1;
1740
- }
1741
1869
  /**
1742
1870
  *
1743
1871
  * @export
@@ -2006,74 +2134,6 @@ interface PhoneApi {
2006
2134
  */
2007
2135
  'isPrimary': boolean;
2008
2136
  }
2009
- /**
2010
- *
2011
- * @export
2012
- * @interface PhoneNumberCreate
2013
- */
2014
- interface PhoneNumberCreate {
2015
- /**
2016
- *
2017
- * @type {string}
2018
- * @memberof PhoneNumberCreate
2019
- */
2020
- 'phone': string;
2021
- /**
2022
- *
2023
- * @type {boolean}
2024
- * @memberof PhoneNumberCreate
2025
- */
2026
- 'isPrimary'?: boolean | null;
2027
- }
2028
- /**
2029
- *
2030
- * @export
2031
- * @interface ProviderCreate
2032
- */
2033
- interface ProviderCreate {
2034
- /**
2035
- *
2036
- * @type {string}
2037
- * @memberof ProviderCreate
2038
- */
2039
- 'providerApiLogin'?: string | null;
2040
- /**
2041
- *
2042
- * @type {string}
2043
- * @memberof ProviderCreate
2044
- */
2045
- 'providerApiKey'?: string | null;
2046
- /**
2047
- *
2048
- * @type {string}
2049
- * @memberof ProviderCreate
2050
- */
2051
- 'webhookLogin'?: string | null;
2052
- /**
2053
- *
2054
- * @type {string}
2055
- * @memberof ProviderCreate
2056
- */
2057
- 'webhookPassword'?: string | null;
2058
- /**
2059
- *
2060
- * @type {string}
2061
- * @memberof ProviderCreate
2062
- */
2063
- 'providerId'?: string | null;
2064
- /**
2065
- *
2066
- * @type {string}
2067
- * @memberof ProviderCreate
2068
- */
2069
- 'providerType': string;
2070
- /**
2071
- *
2072
- * @type {string}
2073
- * @memberof ProviderCreate
2074
- */
2075
- 'providerAccountId': string;
2076
- }
2077
2137
  /**
2078
2138
  *
2079
2139
  * @export
@@ -2114,6 +2174,21 @@ declare const ReservationChannelTypes: {
2114
2174
  readonly Google: "GOOGLE";
2115
2175
  };
2116
2176
  type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof ReservationChannelTypes];
2177
+ /**
2178
+ *
2179
+ * @export
2180
+ * @enum {string}
2181
+ */
2182
+ declare const ReservationStatus: {
2183
+ readonly Cancelled: "CANCELLED";
2184
+ readonly Inquiry: "INQUIRY";
2185
+ readonly Expired: "EXPIRED";
2186
+ readonly AwaitingPayment: "AWAITING_PAYMENT";
2187
+ readonly Declined: "DECLINED";
2188
+ readonly Pending: "PENDING";
2189
+ readonly Confirmed: "CONFIRMED";
2190
+ };
2191
+ type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus];
2117
2192
  /**
2118
2193
  * @type Sendertypedata
2119
2194
  * @export
@@ -2546,11 +2621,11 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2546
2621
  * Addresses Create
2547
2622
  * @summary Addresses Create
2548
2623
  * @param {string} contactId
2549
- * @param {AddressCreate} addressCreate
2624
+ * @param {APIAddressCreate} aPIAddressCreate
2550
2625
  * @param {*} [options] Override http request option.
2551
2626
  * @throws {RequiredError}
2552
2627
  */
2553
- addressesCreate: (contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2628
+ addressesCreate: (contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2554
2629
  /**
2555
2630
  * Addresses Delete
2556
2631
  * @summary Addresses Delete
@@ -2648,11 +2723,11 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2648
2723
  * Emails Create
2649
2724
  * @summary Emails Create
2650
2725
  * @param {string} contactId
2651
- * @param {EmailCreate} emailCreate
2726
+ * @param {APIEmailCreate} aPIEmailCreate
2652
2727
  * @param {*} [options] Override http request option.
2653
2728
  * @throws {RequiredError}
2654
2729
  */
2655
- emailsCreate: (contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2730
+ emailsCreate: (contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2656
2731
  /**
2657
2732
  * Emails Delete
2658
2733
  * @summary Emails Delete
@@ -2674,11 +2749,11 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2674
2749
  * PhoneNumbers Create
2675
2750
  * @summary PhoneNumbers Create
2676
2751
  * @param {string} contactId
2677
- * @param {PhoneNumberCreate} phoneNumberCreate
2752
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
2678
2753
  * @param {*} [options] Override http request option.
2679
2754
  * @throws {RequiredError}
2680
2755
  */
2681
- phoneNumbersCreate: (contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2756
+ phoneNumbersCreate: (contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2682
2757
  /**
2683
2758
  * PhoneNumbers Delete
2684
2759
  * @summary PhoneNumbers Delete
@@ -2706,11 +2781,11 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
2706
2781
  * Addresses Create
2707
2782
  * @summary Addresses Create
2708
2783
  * @param {string} contactId
2709
- * @param {AddressCreate} addressCreate
2784
+ * @param {APIAddressCreate} aPIAddressCreate
2710
2785
  * @param {*} [options] Override http request option.
2711
2786
  * @throws {RequiredError}
2712
2787
  */
2713
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
2788
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
2714
2789
  /**
2715
2790
  * Addresses Delete
2716
2791
  * @summary Addresses Delete
@@ -2808,11 +2883,11 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
2808
2883
  * Emails Create
2809
2884
  * @summary Emails Create
2810
2885
  * @param {string} contactId
2811
- * @param {EmailCreate} emailCreate
2886
+ * @param {APIEmailCreate} aPIEmailCreate
2812
2887
  * @param {*} [options] Override http request option.
2813
2888
  * @throws {RequiredError}
2814
2889
  */
2815
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
2890
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
2816
2891
  /**
2817
2892
  * Emails Delete
2818
2893
  * @summary Emails Delete
@@ -2834,11 +2909,11 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
2834
2909
  * PhoneNumbers Create
2835
2910
  * @summary PhoneNumbers Create
2836
2911
  * @param {string} contactId
2837
- * @param {PhoneNumberCreate} phoneNumberCreate
2912
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
2838
2913
  * @param {*} [options] Override http request option.
2839
2914
  * @throws {RequiredError}
2840
2915
  */
2841
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
2916
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
2842
2917
  /**
2843
2918
  * PhoneNumbers Delete
2844
2919
  * @summary PhoneNumbers Delete
@@ -2866,11 +2941,11 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
2866
2941
  * Addresses Create
2867
2942
  * @summary Addresses Create
2868
2943
  * @param {string} contactId
2869
- * @param {AddressCreate} addressCreate
2944
+ * @param {APIAddressCreate} aPIAddressCreate
2870
2945
  * @param {*} [options] Override http request option.
2871
2946
  * @throws {RequiredError}
2872
2947
  */
2873
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
2948
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
2874
2949
  /**
2875
2950
  * Addresses Delete
2876
2951
  * @summary Addresses Delete
@@ -2968,11 +3043,11 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
2968
3043
  * Emails Create
2969
3044
  * @summary Emails Create
2970
3045
  * @param {string} contactId
2971
- * @param {EmailCreate} emailCreate
3046
+ * @param {APIEmailCreate} aPIEmailCreate
2972
3047
  * @param {*} [options] Override http request option.
2973
3048
  * @throws {RequiredError}
2974
3049
  */
2975
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
3050
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
2976
3051
  /**
2977
3052
  * Emails Delete
2978
3053
  * @summary Emails Delete
@@ -2994,11 +3069,11 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
2994
3069
  * PhoneNumbers Create
2995
3070
  * @summary PhoneNumbers Create
2996
3071
  * @param {string} contactId
2997
- * @param {PhoneNumberCreate} phoneNumberCreate
3072
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
2998
3073
  * @param {*} [options] Override http request option.
2999
3074
  * @throws {RequiredError}
3000
3075
  */
3001
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
3076
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
3002
3077
  /**
3003
3078
  * PhoneNumbers Delete
3004
3079
  * @summary PhoneNumbers Delete
@@ -3028,12 +3103,12 @@ declare class ContactsApi extends BaseAPI {
3028
3103
  * Addresses Create
3029
3104
  * @summary Addresses Create
3030
3105
  * @param {string} contactId
3031
- * @param {AddressCreate} addressCreate
3106
+ * @param {APIAddressCreate} aPIAddressCreate
3032
3107
  * @param {*} [options] Override http request option.
3033
3108
  * @throws {RequiredError}
3034
3109
  * @memberof ContactsApi
3035
3110
  */
3036
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
3111
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
3037
3112
  /**
3038
3113
  * Addresses Delete
3039
3114
  * @summary Addresses Delete
@@ -3141,12 +3216,12 @@ declare class ContactsApi extends BaseAPI {
3141
3216
  * Emails Create
3142
3217
  * @summary Emails Create
3143
3218
  * @param {string} contactId
3144
- * @param {EmailCreate} emailCreate
3219
+ * @param {APIEmailCreate} aPIEmailCreate
3145
3220
  * @param {*} [options] Override http request option.
3146
3221
  * @throws {RequiredError}
3147
3222
  * @memberof ContactsApi
3148
3223
  */
3149
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
3224
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
3150
3225
  /**
3151
3226
  * Emails Delete
3152
3227
  * @summary Emails Delete
@@ -3170,12 +3245,12 @@ declare class ContactsApi extends BaseAPI {
3170
3245
  * PhoneNumbers Create
3171
3246
  * @summary PhoneNumbers Create
3172
3247
  * @param {string} contactId
3173
- * @param {PhoneNumberCreate} phoneNumberCreate
3248
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
3174
3249
  * @param {*} [options] Override http request option.
3175
3250
  * @throws {RequiredError}
3176
3251
  * @memberof ContactsApi
3177
3252
  */
3178
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
3253
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
3179
3254
  /**
3180
3255
  * PhoneNumbers Delete
3181
3256
  * @summary PhoneNumbers Delete
@@ -3204,11 +3279,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
3204
3279
  /**
3205
3280
  * Conversations Create
3206
3281
  * @summary Conversations Create
3207
- * @param {ConversationCreate} conversationCreate
3282
+ * @param {APIConversationCreate} aPIConversationCreate
3208
3283
  * @param {*} [options] Override http request option.
3209
3284
  * @throws {RequiredError}
3210
3285
  */
3211
- conversationsCreate: (conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3286
+ conversationsCreate: (aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3212
3287
  /**
3213
3288
  * Conversations Get
3214
3289
  * @summary Conversations Get
@@ -3244,11 +3319,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
3244
3319
  * Messages Create
3245
3320
  * @summary Messages Create
3246
3321
  * @param {string} conversationId
3247
- * @param {MessageCreate} messageCreate
3322
+ * @param {APIMessageCreate} aPIMessageCreate
3248
3323
  * @param {*} [options] Override http request option.
3249
3324
  * @throws {RequiredError}
3250
3325
  */
3251
- messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3326
+ messagesCreate: (conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3252
3327
  /**
3253
3328
  * Messages Get
3254
3329
  * @summary Messages Get
@@ -3281,11 +3356,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
3281
3356
  /**
3282
3357
  * Conversations Create
3283
3358
  * @summary Conversations Create
3284
- * @param {ConversationCreate} conversationCreate
3359
+ * @param {APIConversationCreate} aPIConversationCreate
3285
3360
  * @param {*} [options] Override http request option.
3286
3361
  * @throws {RequiredError}
3287
3362
  */
3288
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
3363
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
3289
3364
  /**
3290
3365
  * Conversations Get
3291
3366
  * @summary Conversations Get
@@ -3321,11 +3396,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
3321
3396
  * Messages Create
3322
3397
  * @summary Messages Create
3323
3398
  * @param {string} conversationId
3324
- * @param {MessageCreate} messageCreate
3399
+ * @param {APIMessageCreate} aPIMessageCreate
3325
3400
  * @param {*} [options] Override http request option.
3326
3401
  * @throws {RequiredError}
3327
3402
  */
3328
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
3403
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
3329
3404
  /**
3330
3405
  * Messages Get
3331
3406
  * @summary Messages Get
@@ -3358,11 +3433,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
3358
3433
  /**
3359
3434
  * Conversations Create
3360
3435
  * @summary Conversations Create
3361
- * @param {ConversationCreate} conversationCreate
3436
+ * @param {APIConversationCreate} aPIConversationCreate
3362
3437
  * @param {*} [options] Override http request option.
3363
3438
  * @throws {RequiredError}
3364
3439
  */
3365
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
3440
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
3366
3441
  /**
3367
3442
  * Conversations Get
3368
3443
  * @summary Conversations Get
@@ -3398,11 +3473,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
3398
3473
  * Messages Create
3399
3474
  * @summary Messages Create
3400
3475
  * @param {string} conversationId
3401
- * @param {MessageCreate} messageCreate
3476
+ * @param {APIMessageCreate} aPIMessageCreate
3402
3477
  * @param {*} [options] Override http request option.
3403
3478
  * @throws {RequiredError}
3404
3479
  */
3405
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
3480
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
3406
3481
  /**
3407
3482
  * Messages Get
3408
3483
  * @summary Messages Get
@@ -3437,12 +3512,12 @@ declare class ConversationsApi extends BaseAPI {
3437
3512
  /**
3438
3513
  * Conversations Create
3439
3514
  * @summary Conversations Create
3440
- * @param {ConversationCreate} conversationCreate
3515
+ * @param {APIConversationCreate} aPIConversationCreate
3441
3516
  * @param {*} [options] Override http request option.
3442
3517
  * @throws {RequiredError}
3443
3518
  * @memberof ConversationsApi
3444
3519
  */
3445
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
3520
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
3446
3521
  /**
3447
3522
  * Conversations Get
3448
3523
  * @summary Conversations Get
@@ -3481,12 +3556,12 @@ declare class ConversationsApi extends BaseAPI {
3481
3556
  * Messages Create
3482
3557
  * @summary Messages Create
3483
3558
  * @param {string} conversationId
3484
- * @param {MessageCreate} messageCreate
3559
+ * @param {APIMessageCreate} aPIMessageCreate
3485
3560
  * @param {*} [options] Override http request option.
3486
3561
  * @throws {RequiredError}
3487
3562
  * @memberof ConversationsApi
3488
3563
  */
3489
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
3564
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
3490
3565
  /**
3491
3566
  * Messages Get
3492
3567
  * @summary Messages Get
@@ -3810,11 +3885,11 @@ declare const ProvidersApiAxiosParamCreator: (configuration?: Configuration) =>
3810
3885
  /**
3811
3886
  * Providers Create
3812
3887
  * @summary Providers Create
3813
- * @param {ProviderCreate} providerCreate
3888
+ * @param {APIProviderCreate} aPIProviderCreate
3814
3889
  * @param {*} [options] Override http request option.
3815
3890
  * @throws {RequiredError}
3816
3891
  */
3817
- providersCreate: (providerCreate: ProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3892
+ providersCreate: (aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3818
3893
  /**
3819
3894
  * Providers Get
3820
3895
  * @summary Providers Get
@@ -3848,11 +3923,11 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
3848
3923
  /**
3849
3924
  * Providers Create
3850
3925
  * @summary Providers Create
3851
- * @param {ProviderCreate} providerCreate
3926
+ * @param {APIProviderCreate} aPIProviderCreate
3852
3927
  * @param {*} [options] Override http request option.
3853
3928
  * @throws {RequiredError}
3854
3929
  */
3855
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3930
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3856
3931
  /**
3857
3932
  * Providers Get
3858
3933
  * @summary Providers Get
@@ -3886,11 +3961,11 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
3886
3961
  /**
3887
3962
  * Providers Create
3888
3963
  * @summary Providers Create
3889
- * @param {ProviderCreate} providerCreate
3964
+ * @param {APIProviderCreate} aPIProviderCreate
3890
3965
  * @param {*} [options] Override http request option.
3891
3966
  * @throws {RequiredError}
3892
3967
  */
3893
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3968
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3894
3969
  /**
3895
3970
  * Providers Get
3896
3971
  * @summary Providers Get
@@ -3926,12 +4001,12 @@ declare class ProvidersApi extends BaseAPI {
3926
4001
  /**
3927
4002
  * Providers Create
3928
4003
  * @summary Providers Create
3929
- * @param {ProviderCreate} providerCreate
4004
+ * @param {APIProviderCreate} aPIProviderCreate
3930
4005
  * @param {*} [options] Override http request option.
3931
4006
  * @throws {RequiredError}
3932
4007
  * @memberof ProvidersApi
3933
4008
  */
3934
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
4009
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
3935
4010
  /**
3936
4011
  * Providers Get
3937
4012
  * @summary Providers Get
@@ -4092,11 +4167,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4092
4167
  * Addresses Create
4093
4168
  * @summary Addresses Create
4094
4169
  * @param {string} contactId
4095
- * @param {AddressCreate} addressCreate
4170
+ * @param {APIAddressCreate} aPIAddressCreate
4096
4171
  * @param {*} [options] Override http request option.
4097
4172
  * @throws {RequiredError}
4098
4173
  */
4099
- addressesCreate: (contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4174
+ addressesCreate: (contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4100
4175
  /**
4101
4176
  * Addresses Delete
4102
4177
  * @summary Addresses Delete
@@ -4193,11 +4268,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4193
4268
  /**
4194
4269
  * Conversations Create
4195
4270
  * @summary Conversations Create
4196
- * @param {ConversationCreate} conversationCreate
4271
+ * @param {APIConversationCreate} aPIConversationCreate
4197
4272
  * @param {*} [options] Override http request option.
4198
4273
  * @throws {RequiredError}
4199
4274
  */
4200
- conversationsCreate: (conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4275
+ conversationsCreate: (aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4201
4276
  /**
4202
4277
  * Conversations Get
4203
4278
  * @summary Conversations Get
@@ -4233,11 +4308,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4233
4308
  * Emails Create
4234
4309
  * @summary Emails Create
4235
4310
  * @param {string} contactId
4236
- * @param {EmailCreate} emailCreate
4311
+ * @param {APIEmailCreate} aPIEmailCreate
4237
4312
  * @param {*} [options] Override http request option.
4238
4313
  * @throws {RequiredError}
4239
4314
  */
4240
- emailsCreate: (contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4315
+ emailsCreate: (contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4241
4316
  /**
4242
4317
  * Emails Delete
4243
4318
  * @summary Emails Delete
@@ -4296,11 +4371,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4296
4371
  * Messages Create
4297
4372
  * @summary Messages Create
4298
4373
  * @param {string} conversationId
4299
- * @param {MessageCreate} messageCreate
4374
+ * @param {APIMessageCreate} aPIMessageCreate
4300
4375
  * @param {*} [options] Override http request option.
4301
4376
  * @throws {RequiredError}
4302
4377
  */
4303
- messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4378
+ messagesCreate: (conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4304
4379
  /**
4305
4380
  * Messages Get
4306
4381
  * @summary Messages Get
@@ -4328,11 +4403,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4328
4403
  * PhoneNumbers Create
4329
4404
  * @summary PhoneNumbers Create
4330
4405
  * @param {string} contactId
4331
- * @param {PhoneNumberCreate} phoneNumberCreate
4406
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
4332
4407
  * @param {*} [options] Override http request option.
4333
4408
  * @throws {RequiredError}
4334
4409
  */
4335
- phoneNumbersCreate: (contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4410
+ phoneNumbersCreate: (contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4336
4411
  /**
4337
4412
  * PhoneNumbers Delete
4338
4413
  * @summary PhoneNumbers Delete
@@ -4353,11 +4428,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
4353
4428
  /**
4354
4429
  * Providers Create
4355
4430
  * @summary Providers Create
4356
- * @param {ProviderCreate} providerCreate
4431
+ * @param {APIProviderCreate} aPIProviderCreate
4357
4432
  * @param {*} [options] Override http request option.
4358
4433
  * @throws {RequiredError}
4359
4434
  */
4360
- providersCreate: (providerCreate: ProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4435
+ providersCreate: (aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4361
4436
  /**
4362
4437
  * Providers Get
4363
4438
  * @summary Providers Get
@@ -4429,11 +4504,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4429
4504
  * Addresses Create
4430
4505
  * @summary Addresses Create
4431
4506
  * @param {string} contactId
4432
- * @param {AddressCreate} addressCreate
4507
+ * @param {APIAddressCreate} aPIAddressCreate
4433
4508
  * @param {*} [options] Override http request option.
4434
4509
  * @throws {RequiredError}
4435
4510
  */
4436
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
4511
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
4437
4512
  /**
4438
4513
  * Addresses Delete
4439
4514
  * @summary Addresses Delete
@@ -4530,11 +4605,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4530
4605
  /**
4531
4606
  * Conversations Create
4532
4607
  * @summary Conversations Create
4533
- * @param {ConversationCreate} conversationCreate
4608
+ * @param {APIConversationCreate} aPIConversationCreate
4534
4609
  * @param {*} [options] Override http request option.
4535
4610
  * @throws {RequiredError}
4536
4611
  */
4537
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4612
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4538
4613
  /**
4539
4614
  * Conversations Get
4540
4615
  * @summary Conversations Get
@@ -4570,11 +4645,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4570
4645
  * Emails Create
4571
4646
  * @summary Emails Create
4572
4647
  * @param {string} contactId
4573
- * @param {EmailCreate} emailCreate
4648
+ * @param {APIEmailCreate} aPIEmailCreate
4574
4649
  * @param {*} [options] Override http request option.
4575
4650
  * @throws {RequiredError}
4576
4651
  */
4577
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
4652
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
4578
4653
  /**
4579
4654
  * Emails Delete
4580
4655
  * @summary Emails Delete
@@ -4633,11 +4708,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4633
4708
  * Messages Create
4634
4709
  * @summary Messages Create
4635
4710
  * @param {string} conversationId
4636
- * @param {MessageCreate} messageCreate
4711
+ * @param {APIMessageCreate} aPIMessageCreate
4637
4712
  * @param {*} [options] Override http request option.
4638
4713
  * @throws {RequiredError}
4639
4714
  */
4640
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
4715
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
4641
4716
  /**
4642
4717
  * Messages Get
4643
4718
  * @summary Messages Get
@@ -4665,11 +4740,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4665
4740
  * PhoneNumbers Create
4666
4741
  * @summary PhoneNumbers Create
4667
4742
  * @param {string} contactId
4668
- * @param {PhoneNumberCreate} phoneNumberCreate
4743
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
4669
4744
  * @param {*} [options] Override http request option.
4670
4745
  * @throws {RequiredError}
4671
4746
  */
4672
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
4747
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhoneNumber>>;
4673
4748
  /**
4674
4749
  * PhoneNumbers Delete
4675
4750
  * @summary PhoneNumbers Delete
@@ -4690,11 +4765,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
4690
4765
  /**
4691
4766
  * Providers Create
4692
4767
  * @summary Providers Create
4693
- * @param {ProviderCreate} providerCreate
4768
+ * @param {APIProviderCreate} aPIProviderCreate
4694
4769
  * @param {*} [options] Override http request option.
4695
4770
  * @throws {RequiredError}
4696
4771
  */
4697
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
4772
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
4698
4773
  /**
4699
4774
  * Providers Get
4700
4775
  * @summary Providers Get
@@ -4766,11 +4841,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
4766
4841
  * Addresses Create
4767
4842
  * @summary Addresses Create
4768
4843
  * @param {string} contactId
4769
- * @param {AddressCreate} addressCreate
4844
+ * @param {APIAddressCreate} aPIAddressCreate
4770
4845
  * @param {*} [options] Override http request option.
4771
4846
  * @throws {RequiredError}
4772
4847
  */
4773
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
4848
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
4774
4849
  /**
4775
4850
  * Addresses Delete
4776
4851
  * @summary Addresses Delete
@@ -4867,11 +4942,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
4867
4942
  /**
4868
4943
  * Conversations Create
4869
4944
  * @summary Conversations Create
4870
- * @param {ConversationCreate} conversationCreate
4945
+ * @param {APIConversationCreate} aPIConversationCreate
4871
4946
  * @param {*} [options] Override http request option.
4872
4947
  * @throws {RequiredError}
4873
4948
  */
4874
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4949
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4875
4950
  /**
4876
4951
  * Conversations Get
4877
4952
  * @summary Conversations Get
@@ -4907,11 +4982,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
4907
4982
  * Emails Create
4908
4983
  * @summary Emails Create
4909
4984
  * @param {string} contactId
4910
- * @param {EmailCreate} emailCreate
4985
+ * @param {APIEmailCreate} aPIEmailCreate
4911
4986
  * @param {*} [options] Override http request option.
4912
4987
  * @throws {RequiredError}
4913
4988
  */
4914
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
4989
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
4915
4990
  /**
4916
4991
  * Emails Delete
4917
4992
  * @summary Emails Delete
@@ -4970,11 +5045,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
4970
5045
  * Messages Create
4971
5046
  * @summary Messages Create
4972
5047
  * @param {string} conversationId
4973
- * @param {MessageCreate} messageCreate
5048
+ * @param {APIMessageCreate} aPIMessageCreate
4974
5049
  * @param {*} [options] Override http request option.
4975
5050
  * @throws {RequiredError}
4976
5051
  */
4977
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
5052
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
4978
5053
  /**
4979
5054
  * Messages Get
4980
5055
  * @summary Messages Get
@@ -5002,11 +5077,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5002
5077
  * PhoneNumbers Create
5003
5078
  * @summary PhoneNumbers Create
5004
5079
  * @param {string} contactId
5005
- * @param {PhoneNumberCreate} phoneNumberCreate
5080
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
5006
5081
  * @param {*} [options] Override http request option.
5007
5082
  * @throws {RequiredError}
5008
5083
  */
5009
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
5084
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhoneNumber>;
5010
5085
  /**
5011
5086
  * PhoneNumbers Delete
5012
5087
  * @summary PhoneNumbers Delete
@@ -5027,11 +5102,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5027
5102
  /**
5028
5103
  * Providers Create
5029
5104
  * @summary Providers Create
5030
- * @param {ProviderCreate} providerCreate
5105
+ * @param {APIProviderCreate} aPIProviderCreate
5031
5106
  * @param {*} [options] Override http request option.
5032
5107
  * @throws {RequiredError}
5033
5108
  */
5034
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
5109
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
5035
5110
  /**
5036
5111
  * Providers Get
5037
5112
  * @summary Providers Get
@@ -5106,12 +5181,12 @@ declare class UnboundApi extends BaseAPI {
5106
5181
  * Addresses Create
5107
5182
  * @summary Addresses Create
5108
5183
  * @param {string} contactId
5109
- * @param {AddressCreate} addressCreate
5184
+ * @param {APIAddressCreate} aPIAddressCreate
5110
5185
  * @param {*} [options] Override http request option.
5111
5186
  * @throws {RequiredError}
5112
5187
  * @memberof UnboundApi
5113
5188
  */
5114
- addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
5189
+ addressesCreate(contactId: string, aPIAddressCreate: APIAddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
5115
5190
  /**
5116
5191
  * Addresses Delete
5117
5192
  * @summary Addresses Delete
@@ -5218,12 +5293,12 @@ declare class UnboundApi extends BaseAPI {
5218
5293
  /**
5219
5294
  * Conversations Create
5220
5295
  * @summary Conversations Create
5221
- * @param {ConversationCreate} conversationCreate
5296
+ * @param {APIConversationCreate} aPIConversationCreate
5222
5297
  * @param {*} [options] Override http request option.
5223
5298
  * @throws {RequiredError}
5224
5299
  * @memberof UnboundApi
5225
5300
  */
5226
- conversationsCreate(conversationCreate: ConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
5301
+ conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
5227
5302
  /**
5228
5303
  * Conversations Get
5229
5304
  * @summary Conversations Get
@@ -5262,12 +5337,12 @@ declare class UnboundApi extends BaseAPI {
5262
5337
  * Emails Create
5263
5338
  * @summary Emails Create
5264
5339
  * @param {string} contactId
5265
- * @param {EmailCreate} emailCreate
5340
+ * @param {APIEmailCreate} aPIEmailCreate
5266
5341
  * @param {*} [options] Override http request option.
5267
5342
  * @throws {RequiredError}
5268
5343
  * @memberof UnboundApi
5269
5344
  */
5270
- emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
5345
+ emailsCreate(contactId: string, aPIEmailCreate: APIEmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
5271
5346
  /**
5272
5347
  * Emails Delete
5273
5348
  * @summary Emails Delete
@@ -5332,12 +5407,12 @@ declare class UnboundApi extends BaseAPI {
5332
5407
  * Messages Create
5333
5408
  * @summary Messages Create
5334
5409
  * @param {string} conversationId
5335
- * @param {MessageCreate} messageCreate
5410
+ * @param {APIMessageCreate} aPIMessageCreate
5336
5411
  * @param {*} [options] Override http request option.
5337
5412
  * @throws {RequiredError}
5338
5413
  * @memberof UnboundApi
5339
5414
  */
5340
- messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5415
+ messagesCreate(conversationId: string, aPIMessageCreate: APIMessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5341
5416
  /**
5342
5417
  * Messages Get
5343
5418
  * @summary Messages Get
@@ -5367,12 +5442,12 @@ declare class UnboundApi extends BaseAPI {
5367
5442
  * PhoneNumbers Create
5368
5443
  * @summary PhoneNumbers Create
5369
5444
  * @param {string} contactId
5370
- * @param {PhoneNumberCreate} phoneNumberCreate
5445
+ * @param {APIPhoneNumberCreate} aPIPhoneNumberCreate
5371
5446
  * @param {*} [options] Override http request option.
5372
5447
  * @throws {RequiredError}
5373
5448
  * @memberof UnboundApi
5374
5449
  */
5375
- phoneNumbersCreate(contactId: string, phoneNumberCreate: PhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
5450
+ phoneNumbersCreate(contactId: string, aPIPhoneNumberCreate: APIPhoneNumberCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhoneNumber, any>>;
5376
5451
  /**
5377
5452
  * PhoneNumbers Delete
5378
5453
  * @summary PhoneNumbers Delete
@@ -5395,12 +5470,12 @@ declare class UnboundApi extends BaseAPI {
5395
5470
  /**
5396
5471
  * Providers Create
5397
5472
  * @summary Providers Create
5398
- * @param {ProviderCreate} providerCreate
5473
+ * @param {APIProviderCreate} aPIProviderCreate
5399
5474
  * @param {*} [options] Override http request option.
5400
5475
  * @throws {RequiredError}
5401
5476
  * @memberof UnboundApi
5402
5477
  */
5403
- providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
5478
+ providersCreate(aPIProviderCreate: APIProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
5404
5479
  /**
5405
5480
  * Providers Get
5406
5481
  * @summary Providers Get
@@ -5463,4 +5538,4 @@ declare class UnboundApi extends BaseAPI {
5463
5538
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
5464
5539
  }
5465
5540
 
5466
- export { type APIAccount, type APIAddress, type APIAddressUpdate, type APIContact, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailUpdate, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIPhoneNumber, type APIPhoneNumberUpdate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AddressCreate, Configuration, type ConfigurationParameters, type ContactCreate1, type ContactCreate2, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ConversationCreate, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type Deletedat, type EmailApi, type EmailCreate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageCreate, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type PhoneNumberCreate, type ProviderCreate, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5, SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi6, SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
5541
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhoneNumber, type APIPhoneNumberCreate, type APIPhoneNumberUpdate, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5, SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi6, SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };