@ember-home/unbound-ts-client 0.0.35 → 0.0.37
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 +476 -194
- package/dist/index.d.ts +476 -194
- package/dist/index.js +252 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +136 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -163,18 +163,6 @@ interface APIAccount {
|
|
|
163
163
|
* @interface APIAddress
|
|
164
164
|
*/
|
|
165
165
|
interface APIAddress {
|
|
166
|
-
/**
|
|
167
|
-
*
|
|
168
|
-
* @type {string}
|
|
169
|
-
* @memberof APIAddress
|
|
170
|
-
*/
|
|
171
|
-
'addressId': string;
|
|
172
|
-
/**
|
|
173
|
-
*
|
|
174
|
-
* @type {string}
|
|
175
|
-
* @memberof APIAddress
|
|
176
|
-
*/
|
|
177
|
-
'deletedAt'?: string | null;
|
|
178
166
|
/**
|
|
179
167
|
*
|
|
180
168
|
* @type {string}
|
|
@@ -211,12 +199,6 @@ interface APIAddress {
|
|
|
211
199
|
* @memberof APIAddress
|
|
212
200
|
*/
|
|
213
201
|
'region': string | null;
|
|
214
|
-
/**
|
|
215
|
-
*
|
|
216
|
-
* @type {boolean}
|
|
217
|
-
* @memberof APIAddress
|
|
218
|
-
*/
|
|
219
|
-
'isPrimary': boolean;
|
|
220
202
|
}
|
|
221
203
|
/**
|
|
222
204
|
*
|
|
@@ -229,7 +211,7 @@ interface APIAddressCreate {
|
|
|
229
211
|
* @type {string}
|
|
230
212
|
* @memberof APIAddressCreate
|
|
231
213
|
*/
|
|
232
|
-
'street1'
|
|
214
|
+
'street1': string | null;
|
|
233
215
|
/**
|
|
234
216
|
*
|
|
235
217
|
* @type {string}
|
|
@@ -241,31 +223,25 @@ interface APIAddressCreate {
|
|
|
241
223
|
* @type {string}
|
|
242
224
|
* @memberof APIAddressCreate
|
|
243
225
|
*/
|
|
244
|
-
'country'
|
|
226
|
+
'country': string | null;
|
|
245
227
|
/**
|
|
246
228
|
*
|
|
247
229
|
* @type {string}
|
|
248
230
|
* @memberof APIAddressCreate
|
|
249
231
|
*/
|
|
250
|
-
'locality'
|
|
232
|
+
'locality': string | null;
|
|
251
233
|
/**
|
|
252
234
|
*
|
|
253
235
|
* @type {string}
|
|
254
236
|
* @memberof APIAddressCreate
|
|
255
237
|
*/
|
|
256
|
-
'postalCode'
|
|
238
|
+
'postalCode': string | null;
|
|
257
239
|
/**
|
|
258
240
|
*
|
|
259
241
|
* @type {string}
|
|
260
242
|
* @memberof APIAddressCreate
|
|
261
243
|
*/
|
|
262
|
-
'region'
|
|
263
|
-
/**
|
|
264
|
-
*
|
|
265
|
-
* @type {boolean}
|
|
266
|
-
* @memberof APIAddressCreate
|
|
267
|
-
*/
|
|
268
|
-
'isPrimary'?: boolean | null;
|
|
244
|
+
'region': string | null;
|
|
269
245
|
}
|
|
270
246
|
/**
|
|
271
247
|
*
|
|
@@ -278,7 +254,7 @@ interface APIAddressUpdate {
|
|
|
278
254
|
* @type {string}
|
|
279
255
|
* @memberof APIAddressUpdate
|
|
280
256
|
*/
|
|
281
|
-
'street1'
|
|
257
|
+
'street1': string | null;
|
|
282
258
|
/**
|
|
283
259
|
*
|
|
284
260
|
* @type {string}
|
|
@@ -290,31 +266,31 @@ interface APIAddressUpdate {
|
|
|
290
266
|
* @type {string}
|
|
291
267
|
* @memberof APIAddressUpdate
|
|
292
268
|
*/
|
|
293
|
-
'country'
|
|
269
|
+
'country': string | null;
|
|
294
270
|
/**
|
|
295
271
|
*
|
|
296
272
|
* @type {string}
|
|
297
273
|
* @memberof APIAddressUpdate
|
|
298
274
|
*/
|
|
299
|
-
'locality'
|
|
275
|
+
'locality': string | null;
|
|
300
276
|
/**
|
|
301
277
|
*
|
|
302
278
|
* @type {string}
|
|
303
279
|
* @memberof APIAddressUpdate
|
|
304
280
|
*/
|
|
305
|
-
'postalCode'
|
|
281
|
+
'postalCode': string | null;
|
|
306
282
|
/**
|
|
307
283
|
*
|
|
308
284
|
* @type {string}
|
|
309
285
|
* @memberof APIAddressUpdate
|
|
310
286
|
*/
|
|
311
|
-
'region'
|
|
287
|
+
'region': string | null;
|
|
312
288
|
/**
|
|
313
289
|
*
|
|
314
|
-
* @type {
|
|
290
|
+
* @type {string}
|
|
315
291
|
* @memberof APIAddressUpdate
|
|
316
292
|
*/
|
|
317
|
-
'
|
|
293
|
+
'addressId': string;
|
|
318
294
|
}
|
|
319
295
|
/**
|
|
320
296
|
*
|
|
@@ -472,6 +448,28 @@ interface APIContact {
|
|
|
472
448
|
* @memberof APIContact
|
|
473
449
|
*/
|
|
474
450
|
'addresses'?: Array<AddressApi>;
|
|
451
|
+
/**
|
|
452
|
+
*
|
|
453
|
+
* @type {{ [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1; }}
|
|
454
|
+
* @memberof APIContact
|
|
455
|
+
*/
|
|
456
|
+
'providerEmails'?: {
|
|
457
|
+
[key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1;
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
*
|
|
461
|
+
* @type {{ [key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2; }}
|
|
462
|
+
* @memberof APIContact
|
|
463
|
+
*/
|
|
464
|
+
'providerPhones'?: {
|
|
465
|
+
[key: string]: SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2;
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @type {Array<ProviderAddressApi>}
|
|
470
|
+
* @memberof APIContact
|
|
471
|
+
*/
|
|
472
|
+
'providerAddresses'?: Array<ProviderAddressApi>;
|
|
475
473
|
/**
|
|
476
474
|
*
|
|
477
475
|
* @type {ContactTypeDataApi}
|
|
@@ -490,6 +488,12 @@ interface APIContact {
|
|
|
490
488
|
* @memberof APIContact
|
|
491
489
|
*/
|
|
492
490
|
'updatedByName': string;
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @type {AttributionApi}
|
|
494
|
+
* @memberof APIContact
|
|
495
|
+
*/
|
|
496
|
+
'attribution'?: AttributionApi;
|
|
493
497
|
}
|
|
494
498
|
/**
|
|
495
499
|
*
|
|
@@ -505,16 +509,28 @@ interface APIContactCreate1 {
|
|
|
505
509
|
'locale'?: string | null;
|
|
506
510
|
/**
|
|
507
511
|
*
|
|
508
|
-
* @type {Array<
|
|
512
|
+
* @type {Array<string>}
|
|
513
|
+
* @memberof APIContactCreate1
|
|
514
|
+
*/
|
|
515
|
+
'emails'?: Array<string> | null;
|
|
516
|
+
/**
|
|
517
|
+
*
|
|
518
|
+
* @type {Array<string>}
|
|
509
519
|
* @memberof APIContactCreate1
|
|
510
520
|
*/
|
|
511
|
-
'
|
|
521
|
+
'phones'?: Array<string> | null;
|
|
512
522
|
/**
|
|
513
523
|
*
|
|
514
|
-
* @type {
|
|
524
|
+
* @type {string}
|
|
515
525
|
* @memberof APIContactCreate1
|
|
516
526
|
*/
|
|
517
|
-
'
|
|
527
|
+
'primaryEmail'?: string | null;
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* @type {string}
|
|
531
|
+
* @memberof APIContactCreate1
|
|
532
|
+
*/
|
|
533
|
+
'primaryPhone'?: string | null;
|
|
518
534
|
/**
|
|
519
535
|
*
|
|
520
536
|
* @type {string}
|
|
@@ -548,16 +564,28 @@ interface APIContactCreate2 {
|
|
|
548
564
|
'locale'?: string | null;
|
|
549
565
|
/**
|
|
550
566
|
*
|
|
551
|
-
* @type {Array<
|
|
567
|
+
* @type {Array<string>}
|
|
552
568
|
* @memberof APIContactCreate2
|
|
553
569
|
*/
|
|
554
|
-
'emails'?: Array<
|
|
570
|
+
'emails'?: Array<string> | null;
|
|
555
571
|
/**
|
|
556
572
|
*
|
|
557
|
-
* @type {Array<
|
|
573
|
+
* @type {Array<string>}
|
|
558
574
|
* @memberof APIContactCreate2
|
|
559
575
|
*/
|
|
560
|
-
'phones'?: Array<
|
|
576
|
+
'phones'?: Array<string> | null;
|
|
577
|
+
/**
|
|
578
|
+
*
|
|
579
|
+
* @type {string}
|
|
580
|
+
* @memberof APIContactCreate2
|
|
581
|
+
*/
|
|
582
|
+
'primaryEmail'?: string | null;
|
|
583
|
+
/**
|
|
584
|
+
*
|
|
585
|
+
* @type {string}
|
|
586
|
+
* @memberof APIContactCreate2
|
|
587
|
+
*/
|
|
588
|
+
'primaryPhone'?: string | null;
|
|
561
589
|
/**
|
|
562
590
|
*
|
|
563
591
|
* @type {string}
|
|
@@ -607,6 +635,18 @@ interface APIContactUpdate {
|
|
|
607
635
|
* @memberof APIContactUpdate
|
|
608
636
|
*/
|
|
609
637
|
'title'?: string | null;
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @type {string}
|
|
641
|
+
* @memberof APIContactUpdate
|
|
642
|
+
*/
|
|
643
|
+
'primaryEmail'?: string | null;
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {string}
|
|
647
|
+
* @memberof APIContactUpdate
|
|
648
|
+
*/
|
|
649
|
+
'primaryPhone'?: string | null;
|
|
610
650
|
/**
|
|
611
651
|
*
|
|
612
652
|
* @type {string}
|
|
@@ -802,19 +842,7 @@ interface APIEmail {
|
|
|
802
842
|
* @type {boolean}
|
|
803
843
|
* @memberof APIEmail
|
|
804
844
|
*/
|
|
805
|
-
'isPrimary'
|
|
806
|
-
/**
|
|
807
|
-
*
|
|
808
|
-
* @type {string}
|
|
809
|
-
* @memberof APIEmail
|
|
810
|
-
*/
|
|
811
|
-
'providerId': string;
|
|
812
|
-
/**
|
|
813
|
-
*
|
|
814
|
-
* @type {string}
|
|
815
|
-
* @memberof APIEmail
|
|
816
|
-
*/
|
|
817
|
-
'deletedAt'?: string | null;
|
|
845
|
+
'isPrimary'?: boolean;
|
|
818
846
|
}
|
|
819
847
|
/**
|
|
820
848
|
*
|
|
@@ -828,12 +856,6 @@ interface APIEmailCreate {
|
|
|
828
856
|
* @memberof APIEmailCreate
|
|
829
857
|
*/
|
|
830
858
|
'email': string;
|
|
831
|
-
/**
|
|
832
|
-
*
|
|
833
|
-
* @type {boolean}
|
|
834
|
-
* @memberof APIEmailCreate
|
|
835
|
-
*/
|
|
836
|
-
'isPrimary'?: boolean | null;
|
|
837
859
|
}
|
|
838
860
|
/**
|
|
839
861
|
*
|
|
@@ -846,7 +868,7 @@ interface APIEmailUpdate {
|
|
|
846
868
|
* @type {string}
|
|
847
869
|
* @memberof APIEmailUpdate
|
|
848
870
|
*/
|
|
849
|
-
'email'
|
|
871
|
+
'email': string;
|
|
850
872
|
/**
|
|
851
873
|
*
|
|
852
874
|
* @type {boolean}
|
|
@@ -854,6 +876,73 @@ interface APIEmailUpdate {
|
|
|
854
876
|
*/
|
|
855
877
|
'isPrimary'?: boolean | null;
|
|
856
878
|
}
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @export
|
|
882
|
+
* @interface APIInquiry
|
|
883
|
+
*/
|
|
884
|
+
interface APIInquiry {
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @type {string}
|
|
888
|
+
* @memberof APIInquiry
|
|
889
|
+
*/
|
|
890
|
+
'inquiryId': string;
|
|
891
|
+
/**
|
|
892
|
+
*
|
|
893
|
+
* @type {string}
|
|
894
|
+
* @memberof APIInquiry
|
|
895
|
+
*/
|
|
896
|
+
'contactId': string;
|
|
897
|
+
/**
|
|
898
|
+
*
|
|
899
|
+
* @type {Array<string>}
|
|
900
|
+
* @memberof APIInquiry
|
|
901
|
+
*/
|
|
902
|
+
'listingIds': Array<string> | null;
|
|
903
|
+
/**
|
|
904
|
+
*
|
|
905
|
+
* @type {string}
|
|
906
|
+
* @memberof APIInquiry
|
|
907
|
+
*/
|
|
908
|
+
'createdAt': string;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {string}
|
|
912
|
+
* @memberof APIInquiry
|
|
913
|
+
*/
|
|
914
|
+
'updatedAt': string;
|
|
915
|
+
/**
|
|
916
|
+
*
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof APIInquiry
|
|
919
|
+
*/
|
|
920
|
+
'createdByName': string;
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @type {string}
|
|
924
|
+
* @memberof APIInquiry
|
|
925
|
+
*/
|
|
926
|
+
'updatedByName': string;
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @type {string}
|
|
930
|
+
* @memberof APIInquiry
|
|
931
|
+
*/
|
|
932
|
+
'arrivalAt': string | null;
|
|
933
|
+
/**
|
|
934
|
+
*
|
|
935
|
+
* @type {string}
|
|
936
|
+
* @memberof APIInquiry
|
|
937
|
+
*/
|
|
938
|
+
'departureAt': string | null;
|
|
939
|
+
/**
|
|
940
|
+
*
|
|
941
|
+
* @type {string}
|
|
942
|
+
* @memberof APIInquiry
|
|
943
|
+
*/
|
|
944
|
+
'notes': string | null;
|
|
945
|
+
}
|
|
857
946
|
/**
|
|
858
947
|
*
|
|
859
948
|
* @export
|
|
@@ -1164,24 +1253,6 @@ interface APIPhoneNumber {
|
|
|
1164
1253
|
* @memberof APIPhoneNumber
|
|
1165
1254
|
*/
|
|
1166
1255
|
'phone': string;
|
|
1167
|
-
/**
|
|
1168
|
-
*
|
|
1169
|
-
* @type {string}
|
|
1170
|
-
* @memberof APIPhoneNumber
|
|
1171
|
-
*/
|
|
1172
|
-
'providerId': string;
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @type {string}
|
|
1176
|
-
* @memberof APIPhoneNumber
|
|
1177
|
-
*/
|
|
1178
|
-
'deletedAt'?: string | null;
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {boolean}
|
|
1182
|
-
* @memberof APIPhoneNumber
|
|
1183
|
-
*/
|
|
1184
|
-
'isPrimary': boolean;
|
|
1185
1256
|
}
|
|
1186
1257
|
/**
|
|
1187
1258
|
*
|
|
@@ -1195,12 +1266,6 @@ interface APIPhoneNumberCreate {
|
|
|
1195
1266
|
* @memberof APIPhoneNumberCreate
|
|
1196
1267
|
*/
|
|
1197
1268
|
'phone': string;
|
|
1198
|
-
/**
|
|
1199
|
-
*
|
|
1200
|
-
* @type {boolean}
|
|
1201
|
-
* @memberof APIPhoneNumberCreate
|
|
1202
|
-
*/
|
|
1203
|
-
'isPrimary'?: boolean | null;
|
|
1204
1269
|
}
|
|
1205
1270
|
/**
|
|
1206
1271
|
*
|
|
@@ -1213,13 +1278,7 @@ interface APIPhoneNumberUpdate {
|
|
|
1213
1278
|
* @type {string}
|
|
1214
1279
|
* @memberof APIPhoneNumberUpdate
|
|
1215
1280
|
*/
|
|
1216
|
-
'phone'
|
|
1217
|
-
/**
|
|
1218
|
-
*
|
|
1219
|
-
* @type {boolean}
|
|
1220
|
-
* @memberof APIPhoneNumberUpdate
|
|
1221
|
-
*/
|
|
1222
|
-
'isPrimary'?: boolean | null;
|
|
1281
|
+
'phone': string;
|
|
1223
1282
|
}
|
|
1224
1283
|
/**
|
|
1225
1284
|
*
|
|
@@ -1327,10 +1386,10 @@ interface APIReservation {
|
|
|
1327
1386
|
'providerListingId': string;
|
|
1328
1387
|
/**
|
|
1329
1388
|
*
|
|
1330
|
-
* @type {
|
|
1389
|
+
* @type {ReservationStatus}
|
|
1331
1390
|
* @memberof APIReservation
|
|
1332
1391
|
*/
|
|
1333
|
-
'reservationStatus':
|
|
1392
|
+
'reservationStatus': ReservationStatus;
|
|
1334
1393
|
/**
|
|
1335
1394
|
*
|
|
1336
1395
|
* @type {string}
|
|
@@ -1469,55 +1528,184 @@ interface AddressApi {
|
|
|
1469
1528
|
* @type {string}
|
|
1470
1529
|
* @memberof AddressApi
|
|
1471
1530
|
*/
|
|
1472
|
-
'
|
|
1531
|
+
'street1': string | null;
|
|
1473
1532
|
/**
|
|
1474
1533
|
*
|
|
1475
1534
|
* @type {string}
|
|
1476
1535
|
* @memberof AddressApi
|
|
1477
1536
|
*/
|
|
1478
|
-
'
|
|
1537
|
+
'street2'?: string | null;
|
|
1479
1538
|
/**
|
|
1480
1539
|
*
|
|
1481
1540
|
* @type {string}
|
|
1482
1541
|
* @memberof AddressApi
|
|
1483
1542
|
*/
|
|
1484
|
-
'
|
|
1543
|
+
'country': string | null;
|
|
1485
1544
|
/**
|
|
1486
1545
|
*
|
|
1487
1546
|
* @type {string}
|
|
1488
1547
|
* @memberof AddressApi
|
|
1489
1548
|
*/
|
|
1490
|
-
'
|
|
1549
|
+
'locality': string | null;
|
|
1491
1550
|
/**
|
|
1492
1551
|
*
|
|
1493
1552
|
* @type {string}
|
|
1494
1553
|
* @memberof AddressApi
|
|
1495
1554
|
*/
|
|
1496
|
-
'
|
|
1555
|
+
'postalCode': string | null;
|
|
1497
1556
|
/**
|
|
1498
1557
|
*
|
|
1499
1558
|
* @type {string}
|
|
1500
1559
|
* @memberof AddressApi
|
|
1501
1560
|
*/
|
|
1502
|
-
'
|
|
1561
|
+
'region': string | null;
|
|
1503
1562
|
/**
|
|
1504
1563
|
*
|
|
1505
1564
|
* @type {string}
|
|
1506
1565
|
* @memberof AddressApi
|
|
1507
1566
|
*/
|
|
1508
|
-
'
|
|
1567
|
+
'addressId': string;
|
|
1568
|
+
}
|
|
1569
|
+
/**
|
|
1570
|
+
*
|
|
1571
|
+
* @export
|
|
1572
|
+
* @interface AttributeSourceApi
|
|
1573
|
+
*/
|
|
1574
|
+
interface AttributeSourceApi {
|
|
1509
1575
|
/**
|
|
1510
1576
|
*
|
|
1511
1577
|
* @type {string}
|
|
1512
|
-
* @memberof
|
|
1578
|
+
* @memberof AttributeSourceApi
|
|
1513
1579
|
*/
|
|
1514
|
-
'
|
|
1580
|
+
'providerId': string;
|
|
1515
1581
|
/**
|
|
1516
1582
|
*
|
|
1517
|
-
* @type {
|
|
1518
|
-
* @memberof
|
|
1583
|
+
* @type {string}
|
|
1584
|
+
* @memberof AttributeSourceApi
|
|
1585
|
+
*/
|
|
1586
|
+
'value': string;
|
|
1587
|
+
}
|
|
1588
|
+
/**
|
|
1589
|
+
*
|
|
1590
|
+
* @export
|
|
1591
|
+
* @interface AttributionApi
|
|
1592
|
+
*/
|
|
1593
|
+
interface AttributionApi {
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
* @type {AttributeSourceApi}
|
|
1597
|
+
* @memberof AttributionApi
|
|
1598
|
+
*/
|
|
1599
|
+
'firstName'?: AttributeSourceApi | null;
|
|
1600
|
+
/**
|
|
1601
|
+
*
|
|
1602
|
+
* @type {AttributeSourceApi}
|
|
1603
|
+
* @memberof AttributionApi
|
|
1604
|
+
*/
|
|
1605
|
+
'lastName'?: AttributeSourceApi | null;
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @type {AttributeSourceApi}
|
|
1609
|
+
* @memberof AttributionApi
|
|
1610
|
+
*/
|
|
1611
|
+
'locale'?: AttributeSourceApi | null;
|
|
1612
|
+
/**
|
|
1613
|
+
*
|
|
1614
|
+
* @type {AttributeSourceApi}
|
|
1615
|
+
* @memberof AttributionApi
|
|
1616
|
+
*/
|
|
1617
|
+
'fullName'?: AttributeSourceApi | null;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @type {AttributeSourceApi}
|
|
1621
|
+
* @memberof AttributionApi
|
|
1622
|
+
*/
|
|
1623
|
+
'title'?: AttributeSourceApi | null;
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
* @type {AttributeSourceApi}
|
|
1627
|
+
* @memberof AttributionApi
|
|
1628
|
+
*/
|
|
1629
|
+
'company'?: AttributeSourceApi | null;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {AttributeSourceApi}
|
|
1633
|
+
* @memberof AttributionApi
|
|
1634
|
+
*/
|
|
1635
|
+
'profilePicUrlRegular'?: AttributeSourceApi | null;
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @type {AttributeSourceApi}
|
|
1639
|
+
* @memberof AttributionApi
|
|
1640
|
+
*/
|
|
1641
|
+
'profilePicUrlLarge'?: AttributeSourceApi | null;
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {AttributeSourceApi}
|
|
1645
|
+
* @memberof AttributionApi
|
|
1646
|
+
*/
|
|
1647
|
+
'profilePicUrlThumbnail'?: AttributeSourceApi | null;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {AttributeSourceApi}
|
|
1651
|
+
* @memberof AttributionApi
|
|
1652
|
+
*/
|
|
1653
|
+
'primaryEmail'?: AttributeSourceApi | null;
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @type {AttributeSourceApi}
|
|
1657
|
+
* @memberof AttributionApi
|
|
1658
|
+
*/
|
|
1659
|
+
'primaryPhone'?: AttributeSourceApi | null;
|
|
1660
|
+
/**
|
|
1661
|
+
*
|
|
1662
|
+
* @type {AttributeSourceApi}
|
|
1663
|
+
* @memberof AttributionApi
|
|
1664
|
+
*/
|
|
1665
|
+
'primaryAddress'?: AttributeSourceApi | null;
|
|
1666
|
+
}
|
|
1667
|
+
/**
|
|
1668
|
+
*
|
|
1669
|
+
* @export
|
|
1670
|
+
* @interface BaseAddressApi
|
|
1671
|
+
*/
|
|
1672
|
+
interface BaseAddressApi {
|
|
1673
|
+
/**
|
|
1674
|
+
*
|
|
1675
|
+
* @type {string}
|
|
1676
|
+
* @memberof BaseAddressApi
|
|
1677
|
+
*/
|
|
1678
|
+
'street1': string | null;
|
|
1679
|
+
/**
|
|
1680
|
+
*
|
|
1681
|
+
* @type {string}
|
|
1682
|
+
* @memberof BaseAddressApi
|
|
1683
|
+
*/
|
|
1684
|
+
'street2'?: string | null;
|
|
1685
|
+
/**
|
|
1686
|
+
*
|
|
1687
|
+
* @type {string}
|
|
1688
|
+
* @memberof BaseAddressApi
|
|
1689
|
+
*/
|
|
1690
|
+
'country': string | null;
|
|
1691
|
+
/**
|
|
1692
|
+
*
|
|
1693
|
+
* @type {string}
|
|
1694
|
+
* @memberof BaseAddressApi
|
|
1695
|
+
*/
|
|
1696
|
+
'locality': string | null;
|
|
1697
|
+
/**
|
|
1698
|
+
*
|
|
1699
|
+
* @type {string}
|
|
1700
|
+
* @memberof BaseAddressApi
|
|
1701
|
+
*/
|
|
1702
|
+
'postalCode': string | null;
|
|
1703
|
+
/**
|
|
1704
|
+
*
|
|
1705
|
+
* @type {string}
|
|
1706
|
+
* @memberof BaseAddressApi
|
|
1519
1707
|
*/
|
|
1520
|
-
'
|
|
1708
|
+
'region': string | null;
|
|
1521
1709
|
}
|
|
1522
1710
|
/**
|
|
1523
1711
|
*
|
|
@@ -1572,7 +1760,7 @@ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationSta
|
|
|
1572
1760
|
* @type Conversationtypedata
|
|
1573
1761
|
* @export
|
|
1574
1762
|
*/
|
|
1575
|
-
type Conversationtypedata =
|
|
1763
|
+
type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi2;
|
|
1576
1764
|
/**
|
|
1577
1765
|
* @type Conversationtypedata1
|
|
1578
1766
|
* @export
|
|
@@ -1639,19 +1827,20 @@ interface EmailApi {
|
|
|
1639
1827
|
* @type {boolean}
|
|
1640
1828
|
* @memberof EmailApi
|
|
1641
1829
|
*/
|
|
1642
|
-
'isPrimary'
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1830
|
+
'isPrimary'?: boolean;
|
|
1831
|
+
}
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @export
|
|
1835
|
+
* @interface EmailAttributionApi
|
|
1836
|
+
*/
|
|
1837
|
+
interface EmailAttributionApi {
|
|
1649
1838
|
/**
|
|
1650
1839
|
*
|
|
1651
|
-
* @type {string}
|
|
1652
|
-
* @memberof
|
|
1840
|
+
* @type {Array<string>}
|
|
1841
|
+
* @memberof EmailAttributionApi
|
|
1653
1842
|
*/
|
|
1654
|
-
'
|
|
1843
|
+
'channels': Array<string>;
|
|
1655
1844
|
}
|
|
1656
1845
|
/**
|
|
1657
1846
|
*
|
|
@@ -1768,10 +1957,10 @@ interface ListResponseAPIAccount {
|
|
|
1768
1957
|
interface ListResponseAPIInquiry {
|
|
1769
1958
|
/**
|
|
1770
1959
|
*
|
|
1771
|
-
* @type {Array<
|
|
1960
|
+
* @type {Array<APIInquiry>}
|
|
1772
1961
|
* @memberof ListResponseAPIInquiry
|
|
1773
1962
|
*/
|
|
1774
|
-
'data': Array<
|
|
1963
|
+
'data': Array<APIInquiry>;
|
|
1775
1964
|
}
|
|
1776
1965
|
/**
|
|
1777
1966
|
*
|
|
@@ -1833,7 +2022,7 @@ type Messagetypedata = ProviderMessageApi | TwilioMessageApi | object;
|
|
|
1833
2022
|
* @type Messagetypedata1
|
|
1834
2023
|
* @export
|
|
1835
2024
|
*/
|
|
1836
|
-
type Messagetypedata1 =
|
|
2025
|
+
type Messagetypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
|
|
1837
2026
|
/**
|
|
1838
2027
|
*
|
|
1839
2028
|
* @export
|
|
@@ -2048,24 +2237,44 @@ interface PhoneApi {
|
|
|
2048
2237
|
* @memberof PhoneApi
|
|
2049
2238
|
*/
|
|
2050
2239
|
'phone': string;
|
|
2240
|
+
}
|
|
2241
|
+
/**
|
|
2242
|
+
*
|
|
2243
|
+
* @export
|
|
2244
|
+
* @interface PhoneAttributionApi
|
|
2245
|
+
*/
|
|
2246
|
+
interface PhoneAttributionApi {
|
|
2247
|
+
/**
|
|
2248
|
+
*
|
|
2249
|
+
* @type {Array<string>}
|
|
2250
|
+
* @memberof PhoneAttributionApi
|
|
2251
|
+
*/
|
|
2252
|
+
'channels': Array<string>;
|
|
2253
|
+
}
|
|
2254
|
+
/**
|
|
2255
|
+
*
|
|
2256
|
+
* @export
|
|
2257
|
+
* @interface ProviderAddressApi
|
|
2258
|
+
*/
|
|
2259
|
+
interface ProviderAddressApi {
|
|
2051
2260
|
/**
|
|
2052
2261
|
*
|
|
2053
2262
|
* @type {string}
|
|
2054
|
-
* @memberof
|
|
2263
|
+
* @memberof ProviderAddressApi
|
|
2055
2264
|
*/
|
|
2056
2265
|
'providerId': string;
|
|
2057
2266
|
/**
|
|
2058
2267
|
*
|
|
2059
|
-
* @type {
|
|
2060
|
-
* @memberof
|
|
2268
|
+
* @type {BaseAddressApi}
|
|
2269
|
+
* @memberof ProviderAddressApi
|
|
2061
2270
|
*/
|
|
2062
|
-
'
|
|
2271
|
+
'address': BaseAddressApi;
|
|
2063
2272
|
/**
|
|
2064
2273
|
*
|
|
2065
|
-
* @type {
|
|
2066
|
-
* @memberof
|
|
2274
|
+
* @type {string}
|
|
2275
|
+
* @memberof ProviderAddressApi
|
|
2067
2276
|
*/
|
|
2068
|
-
'
|
|
2277
|
+
'channelId'?: string | null;
|
|
2069
2278
|
}
|
|
2070
2279
|
/**
|
|
2071
2280
|
*
|
|
@@ -2107,6 +2316,21 @@ declare const ReservationChannelTypes: {
|
|
|
2107
2316
|
readonly Google: "GOOGLE";
|
|
2108
2317
|
};
|
|
2109
2318
|
type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof ReservationChannelTypes];
|
|
2319
|
+
/**
|
|
2320
|
+
*
|
|
2321
|
+
* @export
|
|
2322
|
+
* @enum {string}
|
|
2323
|
+
*/
|
|
2324
|
+
declare const ReservationStatus: {
|
|
2325
|
+
readonly Cancelled: "CANCELLED";
|
|
2326
|
+
readonly Inquiry: "INQUIRY";
|
|
2327
|
+
readonly Expired: "EXPIRED";
|
|
2328
|
+
readonly AwaitingPayment: "AWAITING_PAYMENT";
|
|
2329
|
+
readonly Declined: "DECLINED";
|
|
2330
|
+
readonly Pending: "PENDING";
|
|
2331
|
+
readonly Confirmed: "CONFIRMED";
|
|
2332
|
+
};
|
|
2333
|
+
type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus];
|
|
2110
2334
|
/**
|
|
2111
2335
|
* @type Sendertypedata
|
|
2112
2336
|
* @export
|
|
@@ -2153,14 +2377,24 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2153
2377
|
* @type {string}
|
|
2154
2378
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2155
2379
|
*/
|
|
2156
|
-
'
|
|
2380
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum;
|
|
2157
2381
|
/**
|
|
2158
2382
|
*
|
|
2159
|
-
* @type {
|
|
2383
|
+
* @type {string}
|
|
2160
2384
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2161
2385
|
*/
|
|
2162
|
-
'
|
|
2386
|
+
'fromManagedPhoneId': string;
|
|
2387
|
+
/**
|
|
2388
|
+
*
|
|
2389
|
+
* @type {Array<string>}
|
|
2390
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2391
|
+
*/
|
|
2392
|
+
'toContactPhoneIds'?: Array<string> | null;
|
|
2163
2393
|
}
|
|
2394
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum: {
|
|
2395
|
+
readonly Twilio: "TWILIO";
|
|
2396
|
+
};
|
|
2397
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum];
|
|
2164
2398
|
/**
|
|
2165
2399
|
*
|
|
2166
2400
|
* @export
|
|
@@ -2172,14 +2406,18 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
2172
2406
|
* @type {string}
|
|
2173
2407
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2174
2408
|
*/
|
|
2175
|
-
'
|
|
2409
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum;
|
|
2176
2410
|
/**
|
|
2177
2411
|
*
|
|
2178
|
-
* @type {
|
|
2412
|
+
* @type {Array<string>}
|
|
2179
2413
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2180
2414
|
*/
|
|
2181
|
-
'
|
|
2415
|
+
'emailIds'?: Array<string> | null;
|
|
2182
2416
|
}
|
|
2417
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum: {
|
|
2418
|
+
readonly Email: "EMAIL";
|
|
2419
|
+
};
|
|
2420
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum];
|
|
2183
2421
|
/**
|
|
2184
2422
|
*
|
|
2185
2423
|
* @export
|
|
@@ -2197,13 +2435,7 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 {
|
|
|
2197
2435
|
* @type {string}
|
|
2198
2436
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2199
2437
|
*/
|
|
2200
|
-
'
|
|
2201
|
-
/**
|
|
2202
|
-
*
|
|
2203
|
-
* @type {Array<string>}
|
|
2204
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2205
|
-
*/
|
|
2206
|
-
'toContactPhoneIds'?: Array<string> | null;
|
|
2438
|
+
'body': string;
|
|
2207
2439
|
}
|
|
2208
2440
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum: {
|
|
2209
2441
|
readonly Twilio: "TWILIO";
|
|
@@ -2223,79 +2455,63 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 {
|
|
|
2223
2455
|
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum;
|
|
2224
2456
|
/**
|
|
2225
2457
|
*
|
|
2226
|
-
* @type {
|
|
2458
|
+
* @type {string}
|
|
2227
2459
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2228
2460
|
*/
|
|
2229
|
-
'
|
|
2230
|
-
}
|
|
2231
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum: {
|
|
2232
|
-
readonly Email: "EMAIL";
|
|
2233
|
-
};
|
|
2234
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum];
|
|
2235
|
-
/**
|
|
2236
|
-
*
|
|
2237
|
-
* @export
|
|
2238
|
-
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
2239
|
-
*/
|
|
2240
|
-
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5 {
|
|
2461
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2241
2462
|
/**
|
|
2242
2463
|
*
|
|
2243
2464
|
* @type {string}
|
|
2244
|
-
* @memberof
|
|
2465
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2245
2466
|
*/
|
|
2246
|
-
'
|
|
2467
|
+
'subject': string;
|
|
2247
2468
|
/**
|
|
2248
2469
|
*
|
|
2249
2470
|
* @type {string}
|
|
2250
|
-
* @memberof
|
|
2471
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2251
2472
|
*/
|
|
2252
|
-
'
|
|
2473
|
+
'htmlBody': string | null;
|
|
2474
|
+
/**
|
|
2475
|
+
*
|
|
2476
|
+
* @type {string}
|
|
2477
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2478
|
+
*/
|
|
2479
|
+
'plainBody': string | null;
|
|
2253
2480
|
}
|
|
2254
|
-
declare const
|
|
2255
|
-
readonly
|
|
2481
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum: {
|
|
2482
|
+
readonly Email: "EMAIL";
|
|
2256
2483
|
};
|
|
2257
|
-
type
|
|
2484
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum];
|
|
2258
2485
|
/**
|
|
2259
2486
|
*
|
|
2260
2487
|
* @export
|
|
2261
|
-
* @interface
|
|
2488
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1
|
|
2262
2489
|
*/
|
|
2263
|
-
interface
|
|
2264
|
-
/**
|
|
2265
|
-
*
|
|
2266
|
-
* @type {string}
|
|
2267
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi6
|
|
2268
|
-
*/
|
|
2269
|
-
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum;
|
|
2490
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1 {
|
|
2270
2491
|
/**
|
|
2271
2492
|
*
|
|
2272
|
-
* @type {string}
|
|
2273
|
-
* @memberof
|
|
2274
|
-
*/
|
|
2275
|
-
'outboundFromManagedEmailId'?: string | null;
|
|
2276
|
-
/**
|
|
2277
|
-
*
|
|
2278
|
-
* @type {string}
|
|
2279
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi6
|
|
2493
|
+
* @type {{ [key: string]: EmailAttributionApi; }}
|
|
2494
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1
|
|
2280
2495
|
*/
|
|
2281
|
-
'
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2496
|
+
'providers': {
|
|
2497
|
+
[key: string]: EmailAttributionApi;
|
|
2498
|
+
};
|
|
2499
|
+
}
|
|
2500
|
+
/**
|
|
2501
|
+
*
|
|
2502
|
+
* @export
|
|
2503
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2
|
|
2504
|
+
*/
|
|
2505
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2 {
|
|
2288
2506
|
/**
|
|
2289
2507
|
*
|
|
2290
|
-
* @type {string}
|
|
2291
|
-
* @memberof
|
|
2508
|
+
* @type {{ [key: string]: PhoneAttributionApi; }}
|
|
2509
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2
|
|
2292
2510
|
*/
|
|
2293
|
-
'
|
|
2511
|
+
'providers': {
|
|
2512
|
+
[key: string]: PhoneAttributionApi;
|
|
2513
|
+
};
|
|
2294
2514
|
}
|
|
2295
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum: {
|
|
2296
|
-
readonly Email: "EMAIL";
|
|
2297
|
-
};
|
|
2298
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum];
|
|
2299
2515
|
/**
|
|
2300
2516
|
*
|
|
2301
2517
|
* @export
|
|
@@ -2654,6 +2870,14 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2654
2870
|
* @throws {RequiredError}
|
|
2655
2871
|
*/
|
|
2656
2872
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2873
|
+
/**
|
|
2874
|
+
* Emails Get
|
|
2875
|
+
* @summary Emails Get
|
|
2876
|
+
* @param {string} emailId
|
|
2877
|
+
* @param {*} [options] Override http request option.
|
|
2878
|
+
* @throws {RequiredError}
|
|
2879
|
+
*/
|
|
2880
|
+
emailsGet: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2657
2881
|
/**
|
|
2658
2882
|
* Emails Update
|
|
2659
2883
|
* @summary Emails Update
|
|
@@ -2814,6 +3038,14 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2814
3038
|
* @throws {RequiredError}
|
|
2815
3039
|
*/
|
|
2816
3040
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3041
|
+
/**
|
|
3042
|
+
* Emails Get
|
|
3043
|
+
* @summary Emails Get
|
|
3044
|
+
* @param {string} emailId
|
|
3045
|
+
* @param {*} [options] Override http request option.
|
|
3046
|
+
* @throws {RequiredError}
|
|
3047
|
+
*/
|
|
3048
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
2817
3049
|
/**
|
|
2818
3050
|
* Emails Update
|
|
2819
3051
|
* @summary Emails Update
|
|
@@ -2974,6 +3206,14 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2974
3206
|
* @throws {RequiredError}
|
|
2975
3207
|
*/
|
|
2976
3208
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3209
|
+
/**
|
|
3210
|
+
* Emails Get
|
|
3211
|
+
* @summary Emails Get
|
|
3212
|
+
* @param {string} emailId
|
|
3213
|
+
* @param {*} [options] Override http request option.
|
|
3214
|
+
* @throws {RequiredError}
|
|
3215
|
+
*/
|
|
3216
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
2977
3217
|
/**
|
|
2978
3218
|
* Emails Update
|
|
2979
3219
|
* @summary Emails Update
|
|
@@ -3149,6 +3389,15 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3149
3389
|
* @memberof ContactsApi
|
|
3150
3390
|
*/
|
|
3151
3391
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3392
|
+
/**
|
|
3393
|
+
* Emails Get
|
|
3394
|
+
* @summary Emails Get
|
|
3395
|
+
* @param {string} emailId
|
|
3396
|
+
* @param {*} [options] Override http request option.
|
|
3397
|
+
* @throws {RequiredError}
|
|
3398
|
+
* @memberof ContactsApi
|
|
3399
|
+
*/
|
|
3400
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
3152
3401
|
/**
|
|
3153
3402
|
* Emails Update
|
|
3154
3403
|
* @summary Emails Update
|
|
@@ -4239,6 +4488,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4239
4488
|
* @throws {RequiredError}
|
|
4240
4489
|
*/
|
|
4241
4490
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4491
|
+
/**
|
|
4492
|
+
* Emails Get
|
|
4493
|
+
* @summary Emails Get
|
|
4494
|
+
* @param {string} emailId
|
|
4495
|
+
* @param {*} [options] Override http request option.
|
|
4496
|
+
* @throws {RequiredError}
|
|
4497
|
+
*/
|
|
4498
|
+
emailsGet: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4242
4499
|
/**
|
|
4243
4500
|
* Emails Update
|
|
4244
4501
|
* @summary Emails Update
|
|
@@ -4576,6 +4833,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4576
4833
|
* @throws {RequiredError}
|
|
4577
4834
|
*/
|
|
4578
4835
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4836
|
+
/**
|
|
4837
|
+
* Emails Get
|
|
4838
|
+
* @summary Emails Get
|
|
4839
|
+
* @param {string} emailId
|
|
4840
|
+
* @param {*} [options] Override http request option.
|
|
4841
|
+
* @throws {RequiredError}
|
|
4842
|
+
*/
|
|
4843
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
4579
4844
|
/**
|
|
4580
4845
|
* Emails Update
|
|
4581
4846
|
* @summary Emails Update
|
|
@@ -4913,6 +5178,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4913
5178
|
* @throws {RequiredError}
|
|
4914
5179
|
*/
|
|
4915
5180
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5181
|
+
/**
|
|
5182
|
+
* Emails Get
|
|
5183
|
+
* @summary Emails Get
|
|
5184
|
+
* @param {string} emailId
|
|
5185
|
+
* @param {*} [options] Override http request option.
|
|
5186
|
+
* @throws {RequiredError}
|
|
5187
|
+
*/
|
|
5188
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
4916
5189
|
/**
|
|
4917
5190
|
* Emails Update
|
|
4918
5191
|
* @summary Emails Update
|
|
@@ -5270,6 +5543,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5270
5543
|
* @memberof UnboundApi
|
|
5271
5544
|
*/
|
|
5272
5545
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5546
|
+
/**
|
|
5547
|
+
* Emails Get
|
|
5548
|
+
* @summary Emails Get
|
|
5549
|
+
* @param {string} emailId
|
|
5550
|
+
* @param {*} [options] Override http request option.
|
|
5551
|
+
* @throws {RequiredError}
|
|
5552
|
+
* @memberof UnboundApi
|
|
5553
|
+
*/
|
|
5554
|
+
emailsGet(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
5273
5555
|
/**
|
|
5274
5556
|
* Emails Update
|
|
5275
5557
|
* @summary Emails Update
|
|
@@ -5456,4 +5738,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5456
5738
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
5457
5739
|
}
|
|
5458
5740
|
|
|
5459
|
-
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 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, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type
|
|
5741
|
+
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, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, 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 EmailAttributionApi, 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 PhoneAttributionApi, type ProviderAddressApi, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi1, type SrcResourceModelsHelperModelsCustomBaseModelProviderAttributionApi2, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|