@ember-home/unbound-ts-client 0.0.24 → 0.0.26
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 +2156 -387
- package/dist/index.d.ts +2156 -387
- package/dist/index.js +1726 -165
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1662 -101
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -193,6 +193,18 @@ interface AccountsList {
|
|
|
193
193
|
* @interface AddressApi
|
|
194
194
|
*/
|
|
195
195
|
interface AddressApi {
|
|
196
|
+
/**
|
|
197
|
+
*
|
|
198
|
+
* @type {string}
|
|
199
|
+
* @memberof AddressApi
|
|
200
|
+
*/
|
|
201
|
+
'addressId': string;
|
|
202
|
+
/**
|
|
203
|
+
*
|
|
204
|
+
* @type {string}
|
|
205
|
+
* @memberof AddressApi
|
|
206
|
+
*/
|
|
207
|
+
'deletedAt'?: string | null;
|
|
196
208
|
/**
|
|
197
209
|
*
|
|
198
210
|
* @type {string}
|
|
@@ -229,6 +241,12 @@ interface AddressApi {
|
|
|
229
241
|
* @memberof AddressApi
|
|
230
242
|
*/
|
|
231
243
|
'region': string | null;
|
|
244
|
+
/**
|
|
245
|
+
*
|
|
246
|
+
* @type {boolean}
|
|
247
|
+
* @memberof AddressApi
|
|
248
|
+
*/
|
|
249
|
+
'isPrimary'?: boolean;
|
|
232
250
|
}
|
|
233
251
|
/**
|
|
234
252
|
*
|
|
@@ -272,73 +290,12 @@ interface AddressCreate {
|
|
|
272
290
|
* @memberof AddressCreate
|
|
273
291
|
*/
|
|
274
292
|
'region': string;
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
*
|
|
278
|
-
* @export
|
|
279
|
-
* @interface AddressItemApi
|
|
280
|
-
*/
|
|
281
|
-
interface AddressItemApi {
|
|
282
|
-
/**
|
|
283
|
-
*
|
|
284
|
-
* @type {string}
|
|
285
|
-
* @memberof AddressItemApi
|
|
286
|
-
*/
|
|
287
|
-
'street1': string | null;
|
|
288
|
-
/**
|
|
289
|
-
*
|
|
290
|
-
* @type {string}
|
|
291
|
-
* @memberof AddressItemApi
|
|
292
|
-
*/
|
|
293
|
-
'street2'?: string | null;
|
|
294
|
-
/**
|
|
295
|
-
*
|
|
296
|
-
* @type {string}
|
|
297
|
-
* @memberof AddressItemApi
|
|
298
|
-
*/
|
|
299
|
-
'country': string | null;
|
|
300
|
-
/**
|
|
301
|
-
*
|
|
302
|
-
* @type {string}
|
|
303
|
-
* @memberof AddressItemApi
|
|
304
|
-
*/
|
|
305
|
-
'locality': string | null;
|
|
306
|
-
/**
|
|
307
|
-
*
|
|
308
|
-
* @type {string}
|
|
309
|
-
* @memberof AddressItemApi
|
|
310
|
-
*/
|
|
311
|
-
'postalCode': string | null;
|
|
312
|
-
/**
|
|
313
|
-
*
|
|
314
|
-
* @type {string}
|
|
315
|
-
* @memberof AddressItemApi
|
|
316
|
-
*/
|
|
317
|
-
'region': string | null;
|
|
318
|
-
/**
|
|
319
|
-
*
|
|
320
|
-
* @type {string}
|
|
321
|
-
* @memberof AddressItemApi
|
|
322
|
-
*/
|
|
323
|
-
'addressId': string;
|
|
324
|
-
/**
|
|
325
|
-
*
|
|
326
|
-
* @type {string}
|
|
327
|
-
* @memberof AddressItemApi
|
|
328
|
-
*/
|
|
329
|
-
'providerId': string;
|
|
330
|
-
/**
|
|
331
|
-
*
|
|
332
|
-
* @type {string}
|
|
333
|
-
* @memberof AddressItemApi
|
|
334
|
-
*/
|
|
335
|
-
'deletedAt'?: string | null;
|
|
336
293
|
/**
|
|
337
294
|
*
|
|
338
295
|
* @type {boolean}
|
|
339
|
-
* @memberof
|
|
296
|
+
* @memberof AddressCreate
|
|
340
297
|
*/
|
|
341
|
-
'isPrimary'
|
|
298
|
+
'isPrimary'?: boolean | null;
|
|
342
299
|
}
|
|
343
300
|
/**
|
|
344
301
|
*
|
|
@@ -382,6 +339,12 @@ interface AddressUpdate {
|
|
|
382
339
|
* @memberof AddressUpdate
|
|
383
340
|
*/
|
|
384
341
|
'region'?: string | null;
|
|
342
|
+
/**
|
|
343
|
+
*
|
|
344
|
+
* @type {boolean}
|
|
345
|
+
* @memberof AddressUpdate
|
|
346
|
+
*/
|
|
347
|
+
'isPrimary'?: boolean | null;
|
|
385
348
|
}
|
|
386
349
|
/**
|
|
387
350
|
*
|
|
@@ -389,6 +352,18 @@ interface AddressUpdate {
|
|
|
389
352
|
* @interface AddressesCreate
|
|
390
353
|
*/
|
|
391
354
|
interface AddressesCreate {
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @type {string}
|
|
358
|
+
* @memberof AddressesCreate
|
|
359
|
+
*/
|
|
360
|
+
'addressId': string;
|
|
361
|
+
/**
|
|
362
|
+
*
|
|
363
|
+
* @type {string}
|
|
364
|
+
* @memberof AddressesCreate
|
|
365
|
+
*/
|
|
366
|
+
'deletedAt'?: string | null;
|
|
392
367
|
/**
|
|
393
368
|
*
|
|
394
369
|
* @type {string}
|
|
@@ -425,6 +400,12 @@ interface AddressesCreate {
|
|
|
425
400
|
* @memberof AddressesCreate
|
|
426
401
|
*/
|
|
427
402
|
'region': string | null;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @type {boolean}
|
|
406
|
+
* @memberof AddressesCreate
|
|
407
|
+
*/
|
|
408
|
+
'isPrimary'?: boolean;
|
|
428
409
|
}
|
|
429
410
|
/**
|
|
430
411
|
*
|
|
@@ -432,6 +413,18 @@ interface AddressesCreate {
|
|
|
432
413
|
* @interface AddressesUpdate
|
|
433
414
|
*/
|
|
434
415
|
interface AddressesUpdate {
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @type {string}
|
|
419
|
+
* @memberof AddressesUpdate
|
|
420
|
+
*/
|
|
421
|
+
'addressId': string;
|
|
422
|
+
/**
|
|
423
|
+
*
|
|
424
|
+
* @type {string}
|
|
425
|
+
* @memberof AddressesUpdate
|
|
426
|
+
*/
|
|
427
|
+
'deletedAt'?: string | null;
|
|
435
428
|
/**
|
|
436
429
|
*
|
|
437
430
|
* @type {string}
|
|
@@ -468,6 +461,12 @@ interface AddressesUpdate {
|
|
|
468
461
|
* @memberof AddressesUpdate
|
|
469
462
|
*/
|
|
470
463
|
'region': string | null;
|
|
464
|
+
/**
|
|
465
|
+
*
|
|
466
|
+
* @type {boolean}
|
|
467
|
+
* @memberof AddressesUpdate
|
|
468
|
+
*/
|
|
469
|
+
'isPrimary'?: boolean;
|
|
471
470
|
}
|
|
472
471
|
/**
|
|
473
472
|
*
|
|
@@ -587,6 +586,12 @@ interface ContactUpdate {
|
|
|
587
586
|
* @memberof ContactUpdate
|
|
588
587
|
*/
|
|
589
588
|
'title'?: string | null;
|
|
589
|
+
/**
|
|
590
|
+
*
|
|
591
|
+
* @type {string}
|
|
592
|
+
* @memberof ContactUpdate
|
|
593
|
+
*/
|
|
594
|
+
'updatedBy'?: string;
|
|
590
595
|
/**
|
|
591
596
|
*
|
|
592
597
|
* @type {string}
|
|
@@ -690,18 +695,6 @@ interface Contacts {
|
|
|
690
695
|
* @memberof Contacts
|
|
691
696
|
*/
|
|
692
697
|
'deletedAt'?: string | null;
|
|
693
|
-
/**
|
|
694
|
-
*
|
|
695
|
-
* @type {string}
|
|
696
|
-
* @memberof Contacts
|
|
697
|
-
*/
|
|
698
|
-
'createdBy': string;
|
|
699
|
-
/**
|
|
700
|
-
*
|
|
701
|
-
* @type {string}
|
|
702
|
-
* @memberof Contacts
|
|
703
|
-
*/
|
|
704
|
-
'updatedBy': string;
|
|
705
698
|
/**
|
|
706
699
|
*
|
|
707
700
|
* @type {string}
|
|
@@ -788,16 +781,28 @@ interface Contacts {
|
|
|
788
781
|
'primaryAddress'?: AddressApi | null;
|
|
789
782
|
/**
|
|
790
783
|
*
|
|
791
|
-
* @type {Array<
|
|
784
|
+
* @type {Array<AddressApi>}
|
|
792
785
|
* @memberof Contacts
|
|
793
786
|
*/
|
|
794
|
-
'addresses'?: Array<
|
|
787
|
+
'addresses'?: Array<AddressApi>;
|
|
795
788
|
/**
|
|
796
789
|
*
|
|
797
790
|
* @type {ContactTypeDataApi}
|
|
798
791
|
* @memberof Contacts
|
|
799
792
|
*/
|
|
800
793
|
'contactTypeData'?: ContactTypeDataApi;
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @type {string}
|
|
797
|
+
* @memberof Contacts
|
|
798
|
+
*/
|
|
799
|
+
'createdByName': string;
|
|
800
|
+
/**
|
|
801
|
+
*
|
|
802
|
+
* @type {string}
|
|
803
|
+
* @memberof Contacts
|
|
804
|
+
*/
|
|
805
|
+
'updatedByName': string;
|
|
801
806
|
}
|
|
802
807
|
/**
|
|
803
808
|
*
|
|
@@ -865,18 +870,6 @@ interface ContactsCreate {
|
|
|
865
870
|
* @memberof ContactsCreate
|
|
866
871
|
*/
|
|
867
872
|
'deletedAt'?: string | null;
|
|
868
|
-
/**
|
|
869
|
-
*
|
|
870
|
-
* @type {string}
|
|
871
|
-
* @memberof ContactsCreate
|
|
872
|
-
*/
|
|
873
|
-
'createdBy': string;
|
|
874
|
-
/**
|
|
875
|
-
*
|
|
876
|
-
* @type {string}
|
|
877
|
-
* @memberof ContactsCreate
|
|
878
|
-
*/
|
|
879
|
-
'updatedBy': string;
|
|
880
873
|
/**
|
|
881
874
|
*
|
|
882
875
|
* @type {string}
|
|
@@ -963,16 +956,28 @@ interface ContactsCreate {
|
|
|
963
956
|
'primaryAddress'?: AddressApi | null;
|
|
964
957
|
/**
|
|
965
958
|
*
|
|
966
|
-
* @type {Array<
|
|
959
|
+
* @type {Array<AddressApi>}
|
|
967
960
|
* @memberof ContactsCreate
|
|
968
961
|
*/
|
|
969
|
-
'addresses'?: Array<
|
|
962
|
+
'addresses'?: Array<AddressApi>;
|
|
970
963
|
/**
|
|
971
964
|
*
|
|
972
965
|
* @type {ContactTypeDataApi}
|
|
973
966
|
* @memberof ContactsCreate
|
|
974
967
|
*/
|
|
975
968
|
'contactTypeData'?: ContactTypeDataApi;
|
|
969
|
+
/**
|
|
970
|
+
*
|
|
971
|
+
* @type {string}
|
|
972
|
+
* @memberof ContactsCreate
|
|
973
|
+
*/
|
|
974
|
+
'createdByName': string;
|
|
975
|
+
/**
|
|
976
|
+
*
|
|
977
|
+
* @type {string}
|
|
978
|
+
* @memberof ContactsCreate
|
|
979
|
+
*/
|
|
980
|
+
'updatedByName': string;
|
|
976
981
|
}
|
|
977
982
|
/**
|
|
978
983
|
*
|
|
@@ -1040,18 +1045,6 @@ interface ContactsGet {
|
|
|
1040
1045
|
* @memberof ContactsGet
|
|
1041
1046
|
*/
|
|
1042
1047
|
'deletedAt'?: string | null;
|
|
1043
|
-
/**
|
|
1044
|
-
*
|
|
1045
|
-
* @type {string}
|
|
1046
|
-
* @memberof ContactsGet
|
|
1047
|
-
*/
|
|
1048
|
-
'createdBy': string;
|
|
1049
|
-
/**
|
|
1050
|
-
*
|
|
1051
|
-
* @type {string}
|
|
1052
|
-
* @memberof ContactsGet
|
|
1053
|
-
*/
|
|
1054
|
-
'updatedBy': string;
|
|
1055
1048
|
/**
|
|
1056
1049
|
*
|
|
1057
1050
|
* @type {string}
|
|
@@ -1138,16 +1131,28 @@ interface ContactsGet {
|
|
|
1138
1131
|
'primaryAddress'?: AddressApi | null;
|
|
1139
1132
|
/**
|
|
1140
1133
|
*
|
|
1141
|
-
* @type {Array<
|
|
1134
|
+
* @type {Array<AddressApi>}
|
|
1142
1135
|
* @memberof ContactsGet
|
|
1143
1136
|
*/
|
|
1144
|
-
'addresses'?: Array<
|
|
1137
|
+
'addresses'?: Array<AddressApi>;
|
|
1145
1138
|
/**
|
|
1146
1139
|
*
|
|
1147
1140
|
* @type {ContactTypeDataApi}
|
|
1148
1141
|
* @memberof ContactsGet
|
|
1149
1142
|
*/
|
|
1150
1143
|
'contactTypeData'?: ContactTypeDataApi;
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @type {string}
|
|
1147
|
+
* @memberof ContactsGet
|
|
1148
|
+
*/
|
|
1149
|
+
'createdByName': string;
|
|
1150
|
+
/**
|
|
1151
|
+
*
|
|
1152
|
+
* @type {string}
|
|
1153
|
+
* @memberof ContactsGet
|
|
1154
|
+
*/
|
|
1155
|
+
'updatedByName': string;
|
|
1151
1156
|
}
|
|
1152
1157
|
/**
|
|
1153
1158
|
*
|
|
@@ -1215,18 +1220,6 @@ interface ContactsUpdate {
|
|
|
1215
1220
|
* @memberof ContactsUpdate
|
|
1216
1221
|
*/
|
|
1217
1222
|
'deletedAt'?: string | null;
|
|
1218
|
-
/**
|
|
1219
|
-
*
|
|
1220
|
-
* @type {string}
|
|
1221
|
-
* @memberof ContactsUpdate
|
|
1222
|
-
*/
|
|
1223
|
-
'createdBy': string;
|
|
1224
|
-
/**
|
|
1225
|
-
*
|
|
1226
|
-
* @type {string}
|
|
1227
|
-
* @memberof ContactsUpdate
|
|
1228
|
-
*/
|
|
1229
|
-
'updatedBy': string;
|
|
1230
1223
|
/**
|
|
1231
1224
|
*
|
|
1232
1225
|
* @type {string}
|
|
@@ -1313,16 +1306,28 @@ interface ContactsUpdate {
|
|
|
1313
1306
|
'primaryAddress'?: AddressApi | null;
|
|
1314
1307
|
/**
|
|
1315
1308
|
*
|
|
1316
|
-
* @type {Array<
|
|
1309
|
+
* @type {Array<AddressApi>}
|
|
1317
1310
|
* @memberof ContactsUpdate
|
|
1318
1311
|
*/
|
|
1319
|
-
'addresses'?: Array<
|
|
1312
|
+
'addresses'?: Array<AddressApi>;
|
|
1320
1313
|
/**
|
|
1321
1314
|
*
|
|
1322
1315
|
* @type {ContactTypeDataApi}
|
|
1323
1316
|
* @memberof ContactsUpdate
|
|
1324
1317
|
*/
|
|
1325
1318
|
'contactTypeData'?: ContactTypeDataApi;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {string}
|
|
1322
|
+
* @memberof ContactsUpdate
|
|
1323
|
+
*/
|
|
1324
|
+
'createdByName': string;
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @type {string}
|
|
1328
|
+
* @memberof ContactsUpdate
|
|
1329
|
+
*/
|
|
1330
|
+
'updatedByName': string;
|
|
1326
1331
|
}
|
|
1327
1332
|
/**
|
|
1328
1333
|
*
|
|
@@ -1330,12 +1335,30 @@ interface ContactsUpdate {
|
|
|
1330
1335
|
* @interface ConversationCreate
|
|
1331
1336
|
*/
|
|
1332
1337
|
interface ConversationCreate {
|
|
1338
|
+
/**
|
|
1339
|
+
*
|
|
1340
|
+
* @type {string}
|
|
1341
|
+
* @memberof ConversationCreate
|
|
1342
|
+
*/
|
|
1343
|
+
'providerUpdatedAt': string;
|
|
1344
|
+
/**
|
|
1345
|
+
*
|
|
1346
|
+
* @type {ConversationStatus}
|
|
1347
|
+
* @memberof ConversationCreate
|
|
1348
|
+
*/
|
|
1349
|
+
'status': ConversationStatus;
|
|
1333
1350
|
/**
|
|
1334
1351
|
*
|
|
1335
1352
|
* @type {Conversationtypedata}
|
|
1336
1353
|
* @memberof ConversationCreate
|
|
1337
1354
|
*/
|
|
1338
1355
|
'conversationTypeData': Conversationtypedata;
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {string}
|
|
1359
|
+
* @memberof ConversationCreate
|
|
1360
|
+
*/
|
|
1361
|
+
'providerConversationId': string;
|
|
1339
1362
|
}
|
|
1340
1363
|
/**
|
|
1341
1364
|
*
|
|
@@ -1353,195 +1376,201 @@ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationSta
|
|
|
1353
1376
|
* @interface ConversationUpdate
|
|
1354
1377
|
*/
|
|
1355
1378
|
interface ConversationUpdate {
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* @type {string}
|
|
1382
|
+
* @memberof ConversationUpdate
|
|
1383
|
+
*/
|
|
1384
|
+
'providerUpdatedAt': string;
|
|
1385
|
+
/**
|
|
1386
|
+
*
|
|
1387
|
+
* @type {ConversationStatus}
|
|
1388
|
+
* @memberof ConversationUpdate
|
|
1389
|
+
*/
|
|
1390
|
+
'status': ConversationStatus;
|
|
1356
1391
|
/**
|
|
1357
1392
|
*
|
|
1358
1393
|
* @type {Conversationtypedata1}
|
|
1359
1394
|
* @memberof ConversationUpdate
|
|
1360
1395
|
*/
|
|
1361
1396
|
'conversationTypeData': Conversationtypedata1;
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @type {string}
|
|
1400
|
+
* @memberof ConversationUpdate
|
|
1401
|
+
*/
|
|
1402
|
+
'updatedBy': string;
|
|
1403
|
+
/**
|
|
1404
|
+
*
|
|
1405
|
+
* @type {string}
|
|
1406
|
+
* @memberof ConversationUpdate
|
|
1407
|
+
*/
|
|
1408
|
+
'lastReadMessageId'?: string | null;
|
|
1362
1409
|
}
|
|
1363
1410
|
/**
|
|
1364
1411
|
*
|
|
1365
1412
|
* @export
|
|
1366
|
-
* @interface
|
|
1413
|
+
* @interface Conversations
|
|
1367
1414
|
*/
|
|
1368
|
-
interface
|
|
1415
|
+
interface Conversations {
|
|
1369
1416
|
/**
|
|
1370
1417
|
*
|
|
1371
|
-
* @type {
|
|
1372
|
-
* @memberof
|
|
1418
|
+
* @type {ConversationStatus}
|
|
1419
|
+
* @memberof Conversations
|
|
1373
1420
|
*/
|
|
1374
|
-
'
|
|
1421
|
+
'status': ConversationStatus;
|
|
1375
1422
|
/**
|
|
1376
1423
|
*
|
|
1377
|
-
* @type {
|
|
1378
|
-
* @memberof
|
|
1424
|
+
* @type {string}
|
|
1425
|
+
* @memberof Conversations
|
|
1379
1426
|
*/
|
|
1380
|
-
'
|
|
1427
|
+
'conversationId': string;
|
|
1381
1428
|
/**
|
|
1382
1429
|
*
|
|
1383
1430
|
* @type {string}
|
|
1384
|
-
* @memberof
|
|
1431
|
+
* @memberof Conversations
|
|
1385
1432
|
*/
|
|
1386
1433
|
'createdAt': string;
|
|
1387
1434
|
/**
|
|
1388
1435
|
*
|
|
1389
1436
|
* @type {string}
|
|
1390
|
-
* @memberof
|
|
1437
|
+
* @memberof Conversations
|
|
1391
1438
|
*/
|
|
1392
1439
|
'updatedAt': string;
|
|
1393
1440
|
/**
|
|
1394
1441
|
*
|
|
1395
1442
|
* @type {string}
|
|
1396
|
-
* @memberof
|
|
1443
|
+
* @memberof Conversations
|
|
1397
1444
|
*/
|
|
1398
|
-
'
|
|
1445
|
+
'lastMessageAt'?: string | null;
|
|
1399
1446
|
/**
|
|
1400
1447
|
*
|
|
1401
1448
|
* @type {string}
|
|
1402
|
-
* @memberof
|
|
1449
|
+
* @memberof Conversations
|
|
1403
1450
|
*/
|
|
1404
|
-
'
|
|
1451
|
+
'lastReadMessageId'?: string | null;
|
|
1405
1452
|
/**
|
|
1406
1453
|
*
|
|
1407
|
-
* @type {
|
|
1408
|
-
* @memberof
|
|
1454
|
+
* @type {number}
|
|
1455
|
+
* @memberof Conversations
|
|
1409
1456
|
*/
|
|
1410
|
-
'
|
|
1457
|
+
'unreadCount': number;
|
|
1411
1458
|
/**
|
|
1412
1459
|
*
|
|
1413
|
-
* @type {
|
|
1414
|
-
* @memberof
|
|
1415
|
-
*/
|
|
1416
|
-
'unreadCount': number;
|
|
1417
|
-
/**
|
|
1418
|
-
*
|
|
1419
|
-
* @type {ConversationStatus}
|
|
1420
|
-
* @memberof ConversationsCreate
|
|
1460
|
+
* @type {string}
|
|
1461
|
+
* @memberof Conversations
|
|
1421
1462
|
*/
|
|
1422
|
-
'
|
|
1463
|
+
'providerInstance': string;
|
|
1423
1464
|
}
|
|
1424
1465
|
/**
|
|
1425
1466
|
*
|
|
1426
1467
|
* @export
|
|
1427
|
-
* @interface
|
|
1468
|
+
* @interface ConversationsCreate
|
|
1428
1469
|
*/
|
|
1429
|
-
interface
|
|
1470
|
+
interface ConversationsCreate {
|
|
1430
1471
|
/**
|
|
1431
1472
|
*
|
|
1432
|
-
* @type {
|
|
1433
|
-
* @memberof
|
|
1473
|
+
* @type {ConversationStatus}
|
|
1474
|
+
* @memberof ConversationsCreate
|
|
1434
1475
|
*/
|
|
1435
|
-
'
|
|
1476
|
+
'status': ConversationStatus;
|
|
1436
1477
|
/**
|
|
1437
1478
|
*
|
|
1438
|
-
* @type {
|
|
1439
|
-
* @memberof
|
|
1479
|
+
* @type {string}
|
|
1480
|
+
* @memberof ConversationsCreate
|
|
1440
1481
|
*/
|
|
1441
|
-
'
|
|
1482
|
+
'conversationId': string;
|
|
1442
1483
|
/**
|
|
1443
1484
|
*
|
|
1444
1485
|
* @type {string}
|
|
1445
|
-
* @memberof
|
|
1486
|
+
* @memberof ConversationsCreate
|
|
1446
1487
|
*/
|
|
1447
1488
|
'createdAt': string;
|
|
1448
1489
|
/**
|
|
1449
1490
|
*
|
|
1450
1491
|
* @type {string}
|
|
1451
|
-
* @memberof
|
|
1492
|
+
* @memberof ConversationsCreate
|
|
1452
1493
|
*/
|
|
1453
1494
|
'updatedAt': string;
|
|
1454
1495
|
/**
|
|
1455
1496
|
*
|
|
1456
1497
|
* @type {string}
|
|
1457
|
-
* @memberof
|
|
1458
|
-
*/
|
|
1459
|
-
'createdBy': string;
|
|
1460
|
-
/**
|
|
1461
|
-
*
|
|
1462
|
-
* @type {string}
|
|
1463
|
-
* @memberof ConversationsGet
|
|
1498
|
+
* @memberof ConversationsCreate
|
|
1464
1499
|
*/
|
|
1465
|
-
'
|
|
1500
|
+
'lastMessageAt'?: string | null;
|
|
1466
1501
|
/**
|
|
1467
1502
|
*
|
|
1468
1503
|
* @type {string}
|
|
1469
|
-
* @memberof
|
|
1504
|
+
* @memberof ConversationsCreate
|
|
1470
1505
|
*/
|
|
1471
|
-
'
|
|
1506
|
+
'lastReadMessageId'?: string | null;
|
|
1472
1507
|
/**
|
|
1473
1508
|
*
|
|
1474
1509
|
* @type {number}
|
|
1475
|
-
* @memberof
|
|
1510
|
+
* @memberof ConversationsCreate
|
|
1476
1511
|
*/
|
|
1477
1512
|
'unreadCount': number;
|
|
1478
1513
|
/**
|
|
1479
1514
|
*
|
|
1480
|
-
* @type {
|
|
1481
|
-
* @memberof
|
|
1515
|
+
* @type {string}
|
|
1516
|
+
* @memberof ConversationsCreate
|
|
1482
1517
|
*/
|
|
1483
|
-
'
|
|
1518
|
+
'providerInstance': string;
|
|
1484
1519
|
}
|
|
1485
1520
|
/**
|
|
1486
1521
|
*
|
|
1487
1522
|
* @export
|
|
1488
|
-
* @interface
|
|
1523
|
+
* @interface ConversationsGet
|
|
1489
1524
|
*/
|
|
1490
|
-
interface
|
|
1525
|
+
interface ConversationsGet {
|
|
1491
1526
|
/**
|
|
1492
1527
|
*
|
|
1493
|
-
* @type {
|
|
1494
|
-
* @memberof
|
|
1528
|
+
* @type {ConversationStatus}
|
|
1529
|
+
* @memberof ConversationsGet
|
|
1495
1530
|
*/
|
|
1496
|
-
'
|
|
1531
|
+
'status': ConversationStatus;
|
|
1497
1532
|
/**
|
|
1498
1533
|
*
|
|
1499
|
-
* @type {
|
|
1500
|
-
* @memberof
|
|
1534
|
+
* @type {string}
|
|
1535
|
+
* @memberof ConversationsGet
|
|
1501
1536
|
*/
|
|
1502
|
-
'
|
|
1537
|
+
'conversationId': string;
|
|
1503
1538
|
/**
|
|
1504
1539
|
*
|
|
1505
1540
|
* @type {string}
|
|
1506
|
-
* @memberof
|
|
1541
|
+
* @memberof ConversationsGet
|
|
1507
1542
|
*/
|
|
1508
1543
|
'createdAt': string;
|
|
1509
1544
|
/**
|
|
1510
1545
|
*
|
|
1511
1546
|
* @type {string}
|
|
1512
|
-
* @memberof
|
|
1547
|
+
* @memberof ConversationsGet
|
|
1513
1548
|
*/
|
|
1514
1549
|
'updatedAt': string;
|
|
1515
1550
|
/**
|
|
1516
1551
|
*
|
|
1517
1552
|
* @type {string}
|
|
1518
|
-
* @memberof
|
|
1519
|
-
*/
|
|
1520
|
-
'createdBy': string;
|
|
1521
|
-
/**
|
|
1522
|
-
*
|
|
1523
|
-
* @type {string}
|
|
1524
|
-
* @memberof ConversationsList
|
|
1553
|
+
* @memberof ConversationsGet
|
|
1525
1554
|
*/
|
|
1526
|
-
'
|
|
1555
|
+
'lastMessageAt'?: string | null;
|
|
1527
1556
|
/**
|
|
1528
1557
|
*
|
|
1529
1558
|
* @type {string}
|
|
1530
|
-
* @memberof
|
|
1559
|
+
* @memberof ConversationsGet
|
|
1531
1560
|
*/
|
|
1532
|
-
'
|
|
1561
|
+
'lastReadMessageId'?: string | null;
|
|
1533
1562
|
/**
|
|
1534
1563
|
*
|
|
1535
1564
|
* @type {number}
|
|
1536
|
-
* @memberof
|
|
1565
|
+
* @memberof ConversationsGet
|
|
1537
1566
|
*/
|
|
1538
1567
|
'unreadCount': number;
|
|
1539
1568
|
/**
|
|
1540
1569
|
*
|
|
1541
|
-
* @type {
|
|
1542
|
-
* @memberof
|
|
1570
|
+
* @type {string}
|
|
1571
|
+
* @memberof ConversationsGet
|
|
1543
1572
|
*/
|
|
1544
|
-
'
|
|
1573
|
+
'providerInstance': string;
|
|
1545
1574
|
}
|
|
1546
1575
|
/**
|
|
1547
1576
|
*
|
|
@@ -1551,16 +1580,16 @@ interface ConversationsList {
|
|
|
1551
1580
|
interface ConversationsUpdate {
|
|
1552
1581
|
/**
|
|
1553
1582
|
*
|
|
1554
|
-
* @type {
|
|
1583
|
+
* @type {ConversationStatus}
|
|
1555
1584
|
* @memberof ConversationsUpdate
|
|
1556
1585
|
*/
|
|
1557
|
-
'
|
|
1586
|
+
'status': ConversationStatus;
|
|
1558
1587
|
/**
|
|
1559
1588
|
*
|
|
1560
|
-
* @type {
|
|
1589
|
+
* @type {string}
|
|
1561
1590
|
* @memberof ConversationsUpdate
|
|
1562
1591
|
*/
|
|
1563
|
-
'
|
|
1592
|
+
'conversationId': string;
|
|
1564
1593
|
/**
|
|
1565
1594
|
*
|
|
1566
1595
|
* @type {string}
|
|
@@ -1578,19 +1607,13 @@ interface ConversationsUpdate {
|
|
|
1578
1607
|
* @type {string}
|
|
1579
1608
|
* @memberof ConversationsUpdate
|
|
1580
1609
|
*/
|
|
1581
|
-
'
|
|
1582
|
-
/**
|
|
1583
|
-
*
|
|
1584
|
-
* @type {string}
|
|
1585
|
-
* @memberof ConversationsUpdate
|
|
1586
|
-
*/
|
|
1587
|
-
'updatedBy': string;
|
|
1610
|
+
'lastMessageAt'?: string | null;
|
|
1588
1611
|
/**
|
|
1589
1612
|
*
|
|
1590
1613
|
* @type {string}
|
|
1591
1614
|
* @memberof ConversationsUpdate
|
|
1592
1615
|
*/
|
|
1593
|
-
'
|
|
1616
|
+
'lastReadMessageId'?: string | null;
|
|
1594
1617
|
/**
|
|
1595
1618
|
*
|
|
1596
1619
|
* @type {number}
|
|
@@ -1599,10 +1622,10 @@ interface ConversationsUpdate {
|
|
|
1599
1622
|
'unreadCount': number;
|
|
1600
1623
|
/**
|
|
1601
1624
|
*
|
|
1602
|
-
* @type {
|
|
1625
|
+
* @type {string}
|
|
1603
1626
|
* @memberof ConversationsUpdate
|
|
1604
1627
|
*/
|
|
1605
|
-
'
|
|
1628
|
+
'providerInstance': string;
|
|
1606
1629
|
}
|
|
1607
1630
|
/**
|
|
1608
1631
|
* @type Conversationtypedata
|
|
@@ -1614,11 +1637,6 @@ type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateAp
|
|
|
1614
1637
|
* @export
|
|
1615
1638
|
*/
|
|
1616
1639
|
type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
|
|
1617
|
-
/**
|
|
1618
|
-
* @type Conversationtypedata2
|
|
1619
|
-
* @export
|
|
1620
|
-
*/
|
|
1621
|
-
type Conversationtypedata2 = object;
|
|
1622
1640
|
/**
|
|
1623
1641
|
*
|
|
1624
1642
|
* @export
|
|
@@ -1713,6 +1731,25 @@ interface EmailCreate {
|
|
|
1713
1731
|
*/
|
|
1714
1732
|
'isPrimary'?: boolean | null;
|
|
1715
1733
|
}
|
|
1734
|
+
/**
|
|
1735
|
+
*
|
|
1736
|
+
* @export
|
|
1737
|
+
* @interface EmailUpdate
|
|
1738
|
+
*/
|
|
1739
|
+
interface EmailUpdate {
|
|
1740
|
+
/**
|
|
1741
|
+
*
|
|
1742
|
+
* @type {string}
|
|
1743
|
+
* @memberof EmailUpdate
|
|
1744
|
+
*/
|
|
1745
|
+
'email'?: string | null;
|
|
1746
|
+
/**
|
|
1747
|
+
*
|
|
1748
|
+
* @type {boolean}
|
|
1749
|
+
* @memberof EmailUpdate
|
|
1750
|
+
*/
|
|
1751
|
+
'isPrimary'?: boolean | null;
|
|
1752
|
+
}
|
|
1716
1753
|
/**
|
|
1717
1754
|
*
|
|
1718
1755
|
* @export
|
|
@@ -1750,6 +1787,43 @@ interface EmailsCreate {
|
|
|
1750
1787
|
*/
|
|
1751
1788
|
'deletedAt'?: string | null;
|
|
1752
1789
|
}
|
|
1790
|
+
/**
|
|
1791
|
+
*
|
|
1792
|
+
* @export
|
|
1793
|
+
* @interface EmailsUpdate
|
|
1794
|
+
*/
|
|
1795
|
+
interface EmailsUpdate {
|
|
1796
|
+
/**
|
|
1797
|
+
*
|
|
1798
|
+
* @type {string}
|
|
1799
|
+
* @memberof EmailsUpdate
|
|
1800
|
+
*/
|
|
1801
|
+
'emailId': string;
|
|
1802
|
+
/**
|
|
1803
|
+
*
|
|
1804
|
+
* @type {string}
|
|
1805
|
+
* @memberof EmailsUpdate
|
|
1806
|
+
*/
|
|
1807
|
+
'email': string;
|
|
1808
|
+
/**
|
|
1809
|
+
*
|
|
1810
|
+
* @type {boolean}
|
|
1811
|
+
* @memberof EmailsUpdate
|
|
1812
|
+
*/
|
|
1813
|
+
'isPrimary': boolean;
|
|
1814
|
+
/**
|
|
1815
|
+
*
|
|
1816
|
+
* @type {string}
|
|
1817
|
+
* @memberof EmailsUpdate
|
|
1818
|
+
*/
|
|
1819
|
+
'providerId': string;
|
|
1820
|
+
/**
|
|
1821
|
+
*
|
|
1822
|
+
* @type {string}
|
|
1823
|
+
* @memberof EmailsUpdate
|
|
1824
|
+
*/
|
|
1825
|
+
'deletedAt'?: string | null;
|
|
1826
|
+
}
|
|
1753
1827
|
/**
|
|
1754
1828
|
*
|
|
1755
1829
|
* @export
|
|
@@ -1859,19 +1933,6 @@ interface ListResponseAccountsList {
|
|
|
1859
1933
|
*/
|
|
1860
1934
|
'data': Array<AccountsList>;
|
|
1861
1935
|
}
|
|
1862
|
-
/**
|
|
1863
|
-
*
|
|
1864
|
-
* @export
|
|
1865
|
-
* @interface ListResponseConversationsList
|
|
1866
|
-
*/
|
|
1867
|
-
interface ListResponseConversationsList {
|
|
1868
|
-
/**
|
|
1869
|
-
*
|
|
1870
|
-
* @type {Array<ConversationsList>}
|
|
1871
|
-
* @memberof ListResponseConversationsList
|
|
1872
|
-
*/
|
|
1873
|
-
'data': Array<ConversationsList>;
|
|
1874
|
-
}
|
|
1875
1936
|
/**
|
|
1876
1937
|
*
|
|
1877
1938
|
* @export
|
|
@@ -1885,19 +1946,6 @@ interface ListResponseInquiriesList {
|
|
|
1885
1946
|
*/
|
|
1886
1947
|
'data': Array<object>;
|
|
1887
1948
|
}
|
|
1888
|
-
/**
|
|
1889
|
-
*
|
|
1890
|
-
* @export
|
|
1891
|
-
* @interface ListResponseListingsList
|
|
1892
|
-
*/
|
|
1893
|
-
interface ListResponseListingsList {
|
|
1894
|
-
/**
|
|
1895
|
-
*
|
|
1896
|
-
* @type {Array<ListingsList>}
|
|
1897
|
-
* @memberof ListResponseListingsList
|
|
1898
|
-
*/
|
|
1899
|
-
'data': Array<ListingsList>;
|
|
1900
|
-
}
|
|
1901
1949
|
/**
|
|
1902
1950
|
*
|
|
1903
1951
|
* @export
|
|
@@ -1914,52 +1962,85 @@ interface ListResponseManagedPhoneNumbersList {
|
|
|
1914
1962
|
/**
|
|
1915
1963
|
*
|
|
1916
1964
|
* @export
|
|
1917
|
-
* @
|
|
1965
|
+
* @enum {string}
|
|
1966
|
+
*/
|
|
1967
|
+
declare const ListingSortBy: {
|
|
1968
|
+
readonly Title: "title";
|
|
1969
|
+
};
|
|
1970
|
+
type ListingSortBy = typeof ListingSortBy[keyof typeof ListingSortBy];
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @export
|
|
1974
|
+
* @interface Listings
|
|
1918
1975
|
*/
|
|
1919
|
-
interface
|
|
1976
|
+
interface Listings {
|
|
1977
|
+
/**
|
|
1978
|
+
*
|
|
1979
|
+
* @type {string}
|
|
1980
|
+
* @memberof Listings
|
|
1981
|
+
*/
|
|
1982
|
+
'providerListingId': string;
|
|
1983
|
+
/**
|
|
1984
|
+
*
|
|
1985
|
+
* @type {string}
|
|
1986
|
+
* @memberof Listings
|
|
1987
|
+
*/
|
|
1988
|
+
'title': string;
|
|
1989
|
+
/**
|
|
1990
|
+
*
|
|
1991
|
+
* @type {string}
|
|
1992
|
+
* @memberof Listings
|
|
1993
|
+
*/
|
|
1994
|
+
'nickName'?: string | null;
|
|
1995
|
+
/**
|
|
1996
|
+
*
|
|
1997
|
+
* @type {string}
|
|
1998
|
+
* @memberof Listings
|
|
1999
|
+
*/
|
|
2000
|
+
'listingId': string;
|
|
1920
2001
|
/**
|
|
1921
2002
|
*
|
|
1922
|
-
* @type {
|
|
1923
|
-
* @memberof
|
|
2003
|
+
* @type {string}
|
|
2004
|
+
* @memberof Listings
|
|
1924
2005
|
*/
|
|
1925
|
-
'
|
|
2006
|
+
'providerInstance': string;
|
|
1926
2007
|
}
|
|
1927
2008
|
/**
|
|
1928
2009
|
*
|
|
1929
2010
|
* @export
|
|
1930
|
-
* @interface
|
|
2011
|
+
* @interface ListingsGet
|
|
1931
2012
|
*/
|
|
1932
|
-
interface
|
|
2013
|
+
interface ListingsGet {
|
|
1933
2014
|
/**
|
|
1934
2015
|
*
|
|
1935
2016
|
* @type {string}
|
|
1936
|
-
* @memberof
|
|
2017
|
+
* @memberof ListingsGet
|
|
1937
2018
|
*/
|
|
1938
|
-
'
|
|
2019
|
+
'providerListingId': string;
|
|
1939
2020
|
/**
|
|
1940
2021
|
*
|
|
1941
2022
|
* @type {string}
|
|
1942
|
-
* @memberof
|
|
2023
|
+
* @memberof ListingsGet
|
|
1943
2024
|
*/
|
|
1944
|
-
'
|
|
2025
|
+
'title': string;
|
|
1945
2026
|
/**
|
|
1946
2027
|
*
|
|
1947
2028
|
* @type {string}
|
|
1948
|
-
* @memberof
|
|
2029
|
+
* @memberof ListingsGet
|
|
1949
2030
|
*/
|
|
1950
|
-
'
|
|
2031
|
+
'nickName'?: string | null;
|
|
1951
2032
|
/**
|
|
1952
2033
|
*
|
|
1953
2034
|
* @type {string}
|
|
1954
|
-
* @memberof
|
|
2035
|
+
* @memberof ListingsGet
|
|
1955
2036
|
*/
|
|
1956
|
-
'
|
|
2037
|
+
'listingId': string;
|
|
1957
2038
|
/**
|
|
1958
2039
|
*
|
|
1959
2040
|
* @type {string}
|
|
1960
|
-
* @memberof
|
|
2041
|
+
* @memberof ListingsGet
|
|
1961
2042
|
*/
|
|
1962
|
-
'
|
|
2043
|
+
'providerInstance': string;
|
|
1963
2044
|
}
|
|
1964
2045
|
/**
|
|
1965
2046
|
*
|
|
@@ -2013,118 +2094,663 @@ interface ManagedPhoneNumbersList {
|
|
|
2013
2094
|
/**
|
|
2014
2095
|
*
|
|
2015
2096
|
* @export
|
|
2016
|
-
* @interface
|
|
2097
|
+
* @interface MessageCreate
|
|
2017
2098
|
*/
|
|
2018
|
-
interface
|
|
2099
|
+
interface MessageCreate {
|
|
2019
2100
|
/**
|
|
2020
2101
|
*
|
|
2021
2102
|
* @type {string}
|
|
2022
|
-
* @memberof
|
|
2103
|
+
* @memberof MessageCreate
|
|
2023
2104
|
*/
|
|
2024
|
-
'
|
|
2105
|
+
'providerMessageId'?: string;
|
|
2025
2106
|
/**
|
|
2026
2107
|
*
|
|
2027
2108
|
* @type {string}
|
|
2028
|
-
* @memberof
|
|
2109
|
+
* @memberof MessageCreate
|
|
2029
2110
|
*/
|
|
2030
|
-
'
|
|
2111
|
+
'providerUpdatedAt'?: string;
|
|
2031
2112
|
/**
|
|
2032
2113
|
*
|
|
2033
|
-
* @type {
|
|
2034
|
-
* @memberof
|
|
2114
|
+
* @type {MessageDirection}
|
|
2115
|
+
* @memberof MessageCreate
|
|
2035
2116
|
*/
|
|
2036
|
-
'
|
|
2117
|
+
'direction': MessageDirection;
|
|
2037
2118
|
/**
|
|
2038
2119
|
*
|
|
2039
|
-
* @type {
|
|
2040
|
-
* @memberof
|
|
2120
|
+
* @type {string}
|
|
2121
|
+
* @memberof MessageCreate
|
|
2041
2122
|
*/
|
|
2042
|
-
'
|
|
2043
|
-
}
|
|
2044
|
-
/**
|
|
2045
|
-
*
|
|
2046
|
-
* @export
|
|
2047
|
-
* @interface PaginatedResponseContacts
|
|
2048
|
-
*/
|
|
2049
|
-
interface PaginatedResponseContacts {
|
|
2123
|
+
'sentAt'?: string | null;
|
|
2050
2124
|
/**
|
|
2051
2125
|
*
|
|
2052
|
-
* @type {
|
|
2053
|
-
* @memberof
|
|
2126
|
+
* @type {string}
|
|
2127
|
+
* @memberof MessageCreate
|
|
2054
2128
|
*/
|
|
2055
|
-
'
|
|
2129
|
+
'deliveredAt'?: string | null;
|
|
2056
2130
|
/**
|
|
2057
2131
|
*
|
|
2058
2132
|
* @type {string}
|
|
2059
|
-
* @memberof
|
|
2133
|
+
* @memberof MessageCreate
|
|
2060
2134
|
*/
|
|
2061
|
-
'
|
|
2135
|
+
'readAt'?: string | null;
|
|
2062
2136
|
/**
|
|
2063
2137
|
*
|
|
2064
2138
|
* @type {string}
|
|
2065
|
-
* @memberof
|
|
2139
|
+
* @memberof MessageCreate
|
|
2066
2140
|
*/
|
|
2067
|
-
'
|
|
2141
|
+
'failedAt'?: string | null;
|
|
2068
2142
|
/**
|
|
2069
2143
|
*
|
|
2070
|
-
* @type {
|
|
2071
|
-
* @memberof
|
|
2144
|
+
* @type {string}
|
|
2145
|
+
* @memberof MessageCreate
|
|
2072
2146
|
*/
|
|
2073
|
-
'
|
|
2147
|
+
'scheduledAt'?: string | null;
|
|
2148
|
+
/**
|
|
2149
|
+
*
|
|
2150
|
+
* @type {MessageStatus}
|
|
2151
|
+
* @memberof MessageCreate
|
|
2152
|
+
*/
|
|
2153
|
+
'status'?: MessageStatus;
|
|
2154
|
+
/**
|
|
2155
|
+
*
|
|
2156
|
+
* @type {string}
|
|
2157
|
+
* @memberof MessageCreate
|
|
2158
|
+
*/
|
|
2159
|
+
'body': string;
|
|
2160
|
+
/**
|
|
2161
|
+
*
|
|
2162
|
+
* @type {string}
|
|
2163
|
+
* @memberof MessageCreate
|
|
2164
|
+
*/
|
|
2165
|
+
'conversationId': string;
|
|
2166
|
+
/**
|
|
2167
|
+
*
|
|
2168
|
+
* @type {Messagetypedata}
|
|
2169
|
+
* @memberof MessageCreate
|
|
2170
|
+
*/
|
|
2171
|
+
'messageTypeData': Messagetypedata;
|
|
2074
2172
|
}
|
|
2075
2173
|
/**
|
|
2076
2174
|
*
|
|
2077
2175
|
* @export
|
|
2078
2176
|
* @enum {string}
|
|
2079
2177
|
*/
|
|
2080
|
-
declare const
|
|
2081
|
-
readonly
|
|
2082
|
-
readonly
|
|
2178
|
+
declare const MessageDirection: {
|
|
2179
|
+
readonly Inbound: "INBOUND";
|
|
2180
|
+
readonly Outbound: "OUTBOUND";
|
|
2083
2181
|
};
|
|
2084
|
-
type
|
|
2182
|
+
type MessageDirection = typeof MessageDirection[keyof typeof MessageDirection];
|
|
2085
2183
|
/**
|
|
2086
2184
|
*
|
|
2087
2185
|
* @export
|
|
2088
|
-
* @
|
|
2186
|
+
* @enum {string}
|
|
2089
2187
|
*/
|
|
2090
|
-
|
|
2188
|
+
declare const MessageStatus: {
|
|
2189
|
+
readonly Pending: "PENDING";
|
|
2190
|
+
readonly Sent: "SENT";
|
|
2191
|
+
readonly Delivered: "DELIVERED";
|
|
2192
|
+
readonly Read: "READ";
|
|
2193
|
+
readonly Failed: "FAILED";
|
|
2194
|
+
};
|
|
2195
|
+
type MessageStatus = typeof MessageStatus[keyof typeof MessageStatus];
|
|
2196
|
+
/**
|
|
2197
|
+
*
|
|
2198
|
+
* @export
|
|
2199
|
+
* @interface Messages
|
|
2200
|
+
*/
|
|
2201
|
+
interface Messages {
|
|
2091
2202
|
/**
|
|
2092
2203
|
*
|
|
2093
|
-
* @type {
|
|
2094
|
-
* @memberof
|
|
2204
|
+
* @type {MessageDirection}
|
|
2205
|
+
* @memberof Messages
|
|
2095
2206
|
*/
|
|
2096
|
-
'
|
|
2207
|
+
'direction': MessageDirection;
|
|
2097
2208
|
/**
|
|
2098
2209
|
*
|
|
2099
2210
|
* @type {string}
|
|
2100
|
-
* @memberof
|
|
2211
|
+
* @memberof Messages
|
|
2101
2212
|
*/
|
|
2102
|
-
'
|
|
2213
|
+
'sentAt'?: string | null;
|
|
2103
2214
|
/**
|
|
2104
2215
|
*
|
|
2105
2216
|
* @type {string}
|
|
2106
|
-
* @memberof
|
|
2217
|
+
* @memberof Messages
|
|
2107
2218
|
*/
|
|
2108
|
-
'
|
|
2219
|
+
'deliveredAt'?: string | null;
|
|
2109
2220
|
/**
|
|
2110
2221
|
*
|
|
2111
2222
|
* @type {string}
|
|
2112
|
-
* @memberof
|
|
2223
|
+
* @memberof Messages
|
|
2113
2224
|
*/
|
|
2114
|
-
'
|
|
2225
|
+
'readAt'?: string | null;
|
|
2115
2226
|
/**
|
|
2116
2227
|
*
|
|
2117
|
-
* @type {
|
|
2118
|
-
* @memberof
|
|
2228
|
+
* @type {string}
|
|
2229
|
+
* @memberof Messages
|
|
2119
2230
|
*/
|
|
2120
|
-
'
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2231
|
+
'failedAt'?: string | null;
|
|
2232
|
+
/**
|
|
2233
|
+
*
|
|
2234
|
+
* @type {string}
|
|
2235
|
+
* @memberof Messages
|
|
2236
|
+
*/
|
|
2237
|
+
'scheduledAt'?: string | null;
|
|
2238
|
+
/**
|
|
2239
|
+
*
|
|
2240
|
+
* @type {MessageStatus}
|
|
2241
|
+
* @memberof Messages
|
|
2242
|
+
*/
|
|
2243
|
+
'status'?: MessageStatus;
|
|
2244
|
+
/**
|
|
2245
|
+
*
|
|
2246
|
+
* @type {string}
|
|
2247
|
+
* @memberof Messages
|
|
2248
|
+
*/
|
|
2249
|
+
'body': string;
|
|
2250
|
+
/**
|
|
2251
|
+
*
|
|
2252
|
+
* @type {string}
|
|
2253
|
+
* @memberof Messages
|
|
2254
|
+
*/
|
|
2255
|
+
'messageId': string;
|
|
2256
|
+
/**
|
|
2257
|
+
*
|
|
2258
|
+
* @type {Messagetypedata1}
|
|
2259
|
+
* @memberof Messages
|
|
2260
|
+
*/
|
|
2261
|
+
'messageTypeData': Messagetypedata1;
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @type {string}
|
|
2265
|
+
* @memberof Messages
|
|
2266
|
+
*/
|
|
2267
|
+
'conversationId': string;
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {string}
|
|
2271
|
+
* @memberof Messages
|
|
2272
|
+
*/
|
|
2273
|
+
'createdAt': string;
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @type {string}
|
|
2277
|
+
* @memberof Messages
|
|
2278
|
+
*/
|
|
2279
|
+
'updatedAt': string;
|
|
2280
|
+
/**
|
|
2281
|
+
*
|
|
2282
|
+
* @type {string}
|
|
2283
|
+
* @memberof Messages
|
|
2284
|
+
*/
|
|
2285
|
+
'createdByName': string;
|
|
2286
|
+
/**
|
|
2287
|
+
*
|
|
2288
|
+
* @type {string}
|
|
2289
|
+
* @memberof Messages
|
|
2290
|
+
*/
|
|
2291
|
+
'updatedByName': string;
|
|
2292
|
+
/**
|
|
2293
|
+
*
|
|
2294
|
+
* @type {string}
|
|
2295
|
+
* @memberof Messages
|
|
2296
|
+
*/
|
|
2297
|
+
'providerInstance': string;
|
|
2298
|
+
}
|
|
2299
|
+
/**
|
|
2300
|
+
*
|
|
2301
|
+
* @export
|
|
2302
|
+
* @interface MessagesCreate
|
|
2303
|
+
*/
|
|
2304
|
+
interface MessagesCreate {
|
|
2305
|
+
/**
|
|
2306
|
+
*
|
|
2307
|
+
* @type {MessageDirection}
|
|
2308
|
+
* @memberof MessagesCreate
|
|
2309
|
+
*/
|
|
2310
|
+
'direction': MessageDirection;
|
|
2311
|
+
/**
|
|
2312
|
+
*
|
|
2313
|
+
* @type {string}
|
|
2314
|
+
* @memberof MessagesCreate
|
|
2315
|
+
*/
|
|
2316
|
+
'sentAt'?: string | null;
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @type {string}
|
|
2320
|
+
* @memberof MessagesCreate
|
|
2321
|
+
*/
|
|
2322
|
+
'deliveredAt'?: string | null;
|
|
2323
|
+
/**
|
|
2324
|
+
*
|
|
2325
|
+
* @type {string}
|
|
2326
|
+
* @memberof MessagesCreate
|
|
2327
|
+
*/
|
|
2328
|
+
'readAt'?: string | null;
|
|
2329
|
+
/**
|
|
2330
|
+
*
|
|
2331
|
+
* @type {string}
|
|
2332
|
+
* @memberof MessagesCreate
|
|
2333
|
+
*/
|
|
2334
|
+
'failedAt'?: string | null;
|
|
2335
|
+
/**
|
|
2336
|
+
*
|
|
2337
|
+
* @type {string}
|
|
2338
|
+
* @memberof MessagesCreate
|
|
2339
|
+
*/
|
|
2340
|
+
'scheduledAt'?: string | null;
|
|
2341
|
+
/**
|
|
2342
|
+
*
|
|
2343
|
+
* @type {MessageStatus}
|
|
2344
|
+
* @memberof MessagesCreate
|
|
2345
|
+
*/
|
|
2346
|
+
'status'?: MessageStatus;
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
* @type {string}
|
|
2350
|
+
* @memberof MessagesCreate
|
|
2351
|
+
*/
|
|
2352
|
+
'body': string;
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
* @type {string}
|
|
2356
|
+
* @memberof MessagesCreate
|
|
2357
|
+
*/
|
|
2358
|
+
'messageId': string;
|
|
2359
|
+
/**
|
|
2360
|
+
*
|
|
2361
|
+
* @type {Messagetypedata1}
|
|
2362
|
+
* @memberof MessagesCreate
|
|
2363
|
+
*/
|
|
2364
|
+
'messageTypeData': Messagetypedata1;
|
|
2365
|
+
/**
|
|
2366
|
+
*
|
|
2367
|
+
* @type {string}
|
|
2368
|
+
* @memberof MessagesCreate
|
|
2369
|
+
*/
|
|
2370
|
+
'conversationId': string;
|
|
2371
|
+
/**
|
|
2372
|
+
*
|
|
2373
|
+
* @type {string}
|
|
2374
|
+
* @memberof MessagesCreate
|
|
2375
|
+
*/
|
|
2376
|
+
'createdAt': string;
|
|
2377
|
+
/**
|
|
2378
|
+
*
|
|
2379
|
+
* @type {string}
|
|
2380
|
+
* @memberof MessagesCreate
|
|
2381
|
+
*/
|
|
2382
|
+
'updatedAt': string;
|
|
2383
|
+
/**
|
|
2384
|
+
*
|
|
2385
|
+
* @type {string}
|
|
2386
|
+
* @memberof MessagesCreate
|
|
2387
|
+
*/
|
|
2388
|
+
'createdByName': string;
|
|
2389
|
+
/**
|
|
2390
|
+
*
|
|
2391
|
+
* @type {string}
|
|
2392
|
+
* @memberof MessagesCreate
|
|
2393
|
+
*/
|
|
2394
|
+
'updatedByName': string;
|
|
2395
|
+
/**
|
|
2396
|
+
*
|
|
2397
|
+
* @type {string}
|
|
2398
|
+
* @memberof MessagesCreate
|
|
2399
|
+
*/
|
|
2400
|
+
'providerInstance': string;
|
|
2401
|
+
}
|
|
2402
|
+
/**
|
|
2403
|
+
*
|
|
2404
|
+
* @export
|
|
2405
|
+
* @interface MessagesGet
|
|
2406
|
+
*/
|
|
2407
|
+
interface MessagesGet {
|
|
2408
|
+
/**
|
|
2409
|
+
*
|
|
2410
|
+
* @type {MessageDirection}
|
|
2411
|
+
* @memberof MessagesGet
|
|
2412
|
+
*/
|
|
2413
|
+
'direction': MessageDirection;
|
|
2414
|
+
/**
|
|
2415
|
+
*
|
|
2416
|
+
* @type {string}
|
|
2417
|
+
* @memberof MessagesGet
|
|
2418
|
+
*/
|
|
2419
|
+
'sentAt'?: string | null;
|
|
2420
|
+
/**
|
|
2421
|
+
*
|
|
2422
|
+
* @type {string}
|
|
2423
|
+
* @memberof MessagesGet
|
|
2424
|
+
*/
|
|
2425
|
+
'deliveredAt'?: string | null;
|
|
2426
|
+
/**
|
|
2427
|
+
*
|
|
2428
|
+
* @type {string}
|
|
2429
|
+
* @memberof MessagesGet
|
|
2430
|
+
*/
|
|
2431
|
+
'readAt'?: string | null;
|
|
2432
|
+
/**
|
|
2433
|
+
*
|
|
2434
|
+
* @type {string}
|
|
2435
|
+
* @memberof MessagesGet
|
|
2436
|
+
*/
|
|
2437
|
+
'failedAt'?: string | null;
|
|
2438
|
+
/**
|
|
2439
|
+
*
|
|
2440
|
+
* @type {string}
|
|
2441
|
+
* @memberof MessagesGet
|
|
2442
|
+
*/
|
|
2443
|
+
'scheduledAt'?: string | null;
|
|
2444
|
+
/**
|
|
2445
|
+
*
|
|
2446
|
+
* @type {MessageStatus}
|
|
2447
|
+
* @memberof MessagesGet
|
|
2448
|
+
*/
|
|
2449
|
+
'status'?: MessageStatus;
|
|
2450
|
+
/**
|
|
2451
|
+
*
|
|
2452
|
+
* @type {string}
|
|
2453
|
+
* @memberof MessagesGet
|
|
2454
|
+
*/
|
|
2455
|
+
'body': string;
|
|
2456
|
+
/**
|
|
2457
|
+
*
|
|
2458
|
+
* @type {string}
|
|
2459
|
+
* @memberof MessagesGet
|
|
2460
|
+
*/
|
|
2461
|
+
'messageId': string;
|
|
2462
|
+
/**
|
|
2463
|
+
*
|
|
2464
|
+
* @type {Messagetypedata1}
|
|
2465
|
+
* @memberof MessagesGet
|
|
2466
|
+
*/
|
|
2467
|
+
'messageTypeData': Messagetypedata1;
|
|
2468
|
+
/**
|
|
2469
|
+
*
|
|
2470
|
+
* @type {string}
|
|
2471
|
+
* @memberof MessagesGet
|
|
2472
|
+
*/
|
|
2473
|
+
'conversationId': string;
|
|
2474
|
+
/**
|
|
2475
|
+
*
|
|
2476
|
+
* @type {string}
|
|
2477
|
+
* @memberof MessagesGet
|
|
2478
|
+
*/
|
|
2479
|
+
'createdAt': string;
|
|
2480
|
+
/**
|
|
2481
|
+
*
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof MessagesGet
|
|
2484
|
+
*/
|
|
2485
|
+
'updatedAt': string;
|
|
2486
|
+
/**
|
|
2487
|
+
*
|
|
2488
|
+
* @type {string}
|
|
2489
|
+
* @memberof MessagesGet
|
|
2490
|
+
*/
|
|
2491
|
+
'createdByName': string;
|
|
2492
|
+
/**
|
|
2493
|
+
*
|
|
2494
|
+
* @type {string}
|
|
2495
|
+
* @memberof MessagesGet
|
|
2496
|
+
*/
|
|
2497
|
+
'updatedByName': string;
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof MessagesGet
|
|
2502
|
+
*/
|
|
2503
|
+
'providerInstance': string;
|
|
2504
|
+
}
|
|
2505
|
+
/**
|
|
2506
|
+
* @type Messagetypedata
|
|
2507
|
+
* @export
|
|
2508
|
+
*/
|
|
2509
|
+
type Messagetypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
|
|
2510
|
+
/**
|
|
2511
|
+
* @type Messagetypedata1
|
|
2512
|
+
* @export
|
|
2513
|
+
*/
|
|
2514
|
+
type Messagetypedata1 = ProviderMessageApi | TwilioMessageApi | object;
|
|
2515
|
+
/**
|
|
2516
|
+
*
|
|
2517
|
+
* @export
|
|
2518
|
+
* @interface OwnerDataApi
|
|
2519
|
+
*/
|
|
2520
|
+
interface OwnerDataApi {
|
|
2521
|
+
/**
|
|
2522
|
+
*
|
|
2523
|
+
* @type {string}
|
|
2524
|
+
* @memberof OwnerDataApi
|
|
2525
|
+
*/
|
|
2526
|
+
'firstBookedAt'?: string;
|
|
2527
|
+
/**
|
|
2528
|
+
*
|
|
2529
|
+
* @type {string}
|
|
2530
|
+
* @memberof OwnerDataApi
|
|
2531
|
+
*/
|
|
2532
|
+
'firstStayAt'?: string;
|
|
2533
|
+
/**
|
|
2534
|
+
*
|
|
2535
|
+
* @type {number}
|
|
2536
|
+
* @memberof OwnerDataApi
|
|
2537
|
+
*/
|
|
2538
|
+
'totalNightsStayed'?: number;
|
|
2539
|
+
/**
|
|
2540
|
+
*
|
|
2541
|
+
* @type {Array<string>}
|
|
2542
|
+
* @memberof OwnerDataApi
|
|
2543
|
+
*/
|
|
2544
|
+
'listingIds': Array<string>;
|
|
2545
|
+
}
|
|
2546
|
+
/**
|
|
2547
|
+
*
|
|
2548
|
+
* @export
|
|
2549
|
+
* @interface PaginatedResponseContacts
|
|
2550
|
+
*/
|
|
2551
|
+
interface PaginatedResponseContacts {
|
|
2552
|
+
/**
|
|
2553
|
+
*
|
|
2554
|
+
* @type {Array<Contacts>}
|
|
2555
|
+
* @memberof PaginatedResponseContacts
|
|
2556
|
+
*/
|
|
2557
|
+
'data': Array<Contacts>;
|
|
2558
|
+
/**
|
|
2559
|
+
*
|
|
2560
|
+
* @type {string}
|
|
2561
|
+
* @memberof PaginatedResponseContacts
|
|
2562
|
+
*/
|
|
2563
|
+
'prevPageCursor'?: string | null;
|
|
2564
|
+
/**
|
|
2565
|
+
*
|
|
2566
|
+
* @type {string}
|
|
2567
|
+
* @memberof PaginatedResponseContacts
|
|
2568
|
+
*/
|
|
2569
|
+
'nextPageCursor'?: string | null;
|
|
2570
|
+
/**
|
|
2571
|
+
*
|
|
2572
|
+
* @type {number}
|
|
2573
|
+
* @memberof PaginatedResponseContacts
|
|
2574
|
+
*/
|
|
2575
|
+
'total'?: number;
|
|
2576
|
+
}
|
|
2577
|
+
/**
|
|
2578
|
+
*
|
|
2579
|
+
* @export
|
|
2580
|
+
* @interface PaginatedResponseConversations
|
|
2581
|
+
*/
|
|
2582
|
+
interface PaginatedResponseConversations {
|
|
2583
|
+
/**
|
|
2584
|
+
*
|
|
2585
|
+
* @type {Array<Conversations>}
|
|
2586
|
+
* @memberof PaginatedResponseConversations
|
|
2587
|
+
*/
|
|
2588
|
+
'data': Array<Conversations>;
|
|
2589
|
+
/**
|
|
2590
|
+
*
|
|
2591
|
+
* @type {string}
|
|
2592
|
+
* @memberof PaginatedResponseConversations
|
|
2593
|
+
*/
|
|
2594
|
+
'prevPageCursor'?: string | null;
|
|
2595
|
+
/**
|
|
2596
|
+
*
|
|
2597
|
+
* @type {string}
|
|
2598
|
+
* @memberof PaginatedResponseConversations
|
|
2599
|
+
*/
|
|
2600
|
+
'nextPageCursor'?: string | null;
|
|
2601
|
+
/**
|
|
2602
|
+
*
|
|
2603
|
+
* @type {number}
|
|
2604
|
+
* @memberof PaginatedResponseConversations
|
|
2605
|
+
*/
|
|
2606
|
+
'total'?: number;
|
|
2607
|
+
}
|
|
2608
|
+
/**
|
|
2609
|
+
*
|
|
2610
|
+
* @export
|
|
2611
|
+
* @interface PaginatedResponseListings
|
|
2612
|
+
*/
|
|
2613
|
+
interface PaginatedResponseListings {
|
|
2614
|
+
/**
|
|
2615
|
+
*
|
|
2616
|
+
* @type {Array<Listings>}
|
|
2617
|
+
* @memberof PaginatedResponseListings
|
|
2618
|
+
*/
|
|
2619
|
+
'data': Array<Listings>;
|
|
2620
|
+
/**
|
|
2621
|
+
*
|
|
2622
|
+
* @type {string}
|
|
2623
|
+
* @memberof PaginatedResponseListings
|
|
2624
|
+
*/
|
|
2625
|
+
'prevPageCursor'?: string | null;
|
|
2626
|
+
/**
|
|
2627
|
+
*
|
|
2628
|
+
* @type {string}
|
|
2629
|
+
* @memberof PaginatedResponseListings
|
|
2630
|
+
*/
|
|
2631
|
+
'nextPageCursor'?: string | null;
|
|
2632
|
+
/**
|
|
2633
|
+
*
|
|
2634
|
+
* @type {number}
|
|
2635
|
+
* @memberof PaginatedResponseListings
|
|
2636
|
+
*/
|
|
2637
|
+
'total'?: number;
|
|
2638
|
+
}
|
|
2639
|
+
/**
|
|
2640
|
+
*
|
|
2641
|
+
* @export
|
|
2642
|
+
* @interface PaginatedResponseMessages
|
|
2643
|
+
*/
|
|
2644
|
+
interface PaginatedResponseMessages {
|
|
2645
|
+
/**
|
|
2646
|
+
*
|
|
2647
|
+
* @type {Array<Messages>}
|
|
2648
|
+
* @memberof PaginatedResponseMessages
|
|
2649
|
+
*/
|
|
2650
|
+
'data': Array<Messages>;
|
|
2651
|
+
/**
|
|
2652
|
+
*
|
|
2653
|
+
* @type {string}
|
|
2654
|
+
* @memberof PaginatedResponseMessages
|
|
2655
|
+
*/
|
|
2656
|
+
'prevPageCursor'?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
*
|
|
2659
|
+
* @type {string}
|
|
2660
|
+
* @memberof PaginatedResponseMessages
|
|
2661
|
+
*/
|
|
2662
|
+
'nextPageCursor'?: string | null;
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @type {number}
|
|
2666
|
+
* @memberof PaginatedResponseMessages
|
|
2667
|
+
*/
|
|
2668
|
+
'total'?: number;
|
|
2669
|
+
}
|
|
2670
|
+
/**
|
|
2671
|
+
*
|
|
2672
|
+
* @export
|
|
2673
|
+
* @interface PaginatedResponseReservations
|
|
2674
|
+
*/
|
|
2675
|
+
interface PaginatedResponseReservations {
|
|
2676
|
+
/**
|
|
2677
|
+
*
|
|
2678
|
+
* @type {Array<Reservations>}
|
|
2679
|
+
* @memberof PaginatedResponseReservations
|
|
2680
|
+
*/
|
|
2681
|
+
'data': Array<Reservations>;
|
|
2682
|
+
/**
|
|
2683
|
+
*
|
|
2684
|
+
* @type {string}
|
|
2685
|
+
* @memberof PaginatedResponseReservations
|
|
2686
|
+
*/
|
|
2687
|
+
'prevPageCursor'?: string | null;
|
|
2688
|
+
/**
|
|
2689
|
+
*
|
|
2690
|
+
* @type {string}
|
|
2691
|
+
* @memberof PaginatedResponseReservations
|
|
2692
|
+
*/
|
|
2693
|
+
'nextPageCursor'?: string | null;
|
|
2694
|
+
/**
|
|
2695
|
+
*
|
|
2696
|
+
* @type {number}
|
|
2697
|
+
* @memberof PaginatedResponseReservations
|
|
2698
|
+
*/
|
|
2699
|
+
'total'?: number;
|
|
2700
|
+
}
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @export
|
|
2704
|
+
* @enum {string}
|
|
2705
|
+
*/
|
|
2706
|
+
declare const PaginationDirection: {
|
|
2707
|
+
readonly Forward: "forward";
|
|
2708
|
+
readonly Backward: "backward";
|
|
2709
|
+
};
|
|
2710
|
+
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2711
|
+
/**
|
|
2712
|
+
*
|
|
2713
|
+
* @export
|
|
2714
|
+
* @interface PhoneApi
|
|
2715
|
+
*/
|
|
2716
|
+
interface PhoneApi {
|
|
2717
|
+
/**
|
|
2718
|
+
*
|
|
2719
|
+
* @type {string}
|
|
2720
|
+
* @memberof PhoneApi
|
|
2721
|
+
*/
|
|
2722
|
+
'phoneId': string;
|
|
2723
|
+
/**
|
|
2724
|
+
*
|
|
2725
|
+
* @type {string}
|
|
2726
|
+
* @memberof PhoneApi
|
|
2727
|
+
*/
|
|
2728
|
+
'phone': string;
|
|
2729
|
+
/**
|
|
2730
|
+
*
|
|
2731
|
+
* @type {string}
|
|
2732
|
+
* @memberof PhoneApi
|
|
2733
|
+
*/
|
|
2734
|
+
'providerId': string;
|
|
2735
|
+
/**
|
|
2736
|
+
*
|
|
2737
|
+
* @type {string}
|
|
2738
|
+
* @memberof PhoneApi
|
|
2739
|
+
*/
|
|
2740
|
+
'deletedAt'?: string | null;
|
|
2741
|
+
/**
|
|
2742
|
+
*
|
|
2743
|
+
* @type {boolean}
|
|
2744
|
+
* @memberof PhoneApi
|
|
2745
|
+
*/
|
|
2746
|
+
'isPrimary': boolean;
|
|
2747
|
+
}
|
|
2748
|
+
/**
|
|
2749
|
+
*
|
|
2750
|
+
* @export
|
|
2751
|
+
* @interface PhoneNumberCreate
|
|
2752
|
+
*/
|
|
2753
|
+
interface PhoneNumberCreate {
|
|
2128
2754
|
/**
|
|
2129
2755
|
*
|
|
2130
2756
|
* @type {string}
|
|
@@ -2138,6 +2764,25 @@ interface PhoneNumberCreate {
|
|
|
2138
2764
|
*/
|
|
2139
2765
|
'isPrimary'?: boolean | null;
|
|
2140
2766
|
}
|
|
2767
|
+
/**
|
|
2768
|
+
*
|
|
2769
|
+
* @export
|
|
2770
|
+
* @interface PhoneNumberUpdate
|
|
2771
|
+
*/
|
|
2772
|
+
interface PhoneNumberUpdate {
|
|
2773
|
+
/**
|
|
2774
|
+
*
|
|
2775
|
+
* @type {string}
|
|
2776
|
+
* @memberof PhoneNumberUpdate
|
|
2777
|
+
*/
|
|
2778
|
+
'phone'?: string | null;
|
|
2779
|
+
/**
|
|
2780
|
+
*
|
|
2781
|
+
* @type {boolean}
|
|
2782
|
+
* @memberof PhoneNumberUpdate
|
|
2783
|
+
*/
|
|
2784
|
+
'isPrimary'?: boolean | null;
|
|
2785
|
+
}
|
|
2141
2786
|
/**
|
|
2142
2787
|
*
|
|
2143
2788
|
* @export
|
|
@@ -2178,58 +2823,159 @@ interface PhoneNumbersCreate {
|
|
|
2178
2823
|
/**
|
|
2179
2824
|
*
|
|
2180
2825
|
* @export
|
|
2181
|
-
* @interface
|
|
2826
|
+
* @interface PhoneNumbersUpdate
|
|
2827
|
+
*/
|
|
2828
|
+
interface PhoneNumbersUpdate {
|
|
2829
|
+
/**
|
|
2830
|
+
*
|
|
2831
|
+
* @type {string}
|
|
2832
|
+
* @memberof PhoneNumbersUpdate
|
|
2833
|
+
*/
|
|
2834
|
+
'phoneId': string;
|
|
2835
|
+
/**
|
|
2836
|
+
*
|
|
2837
|
+
* @type {string}
|
|
2838
|
+
* @memberof PhoneNumbersUpdate
|
|
2839
|
+
*/
|
|
2840
|
+
'phone': string;
|
|
2841
|
+
/**
|
|
2842
|
+
*
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof PhoneNumbersUpdate
|
|
2845
|
+
*/
|
|
2846
|
+
'providerId': string;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @type {string}
|
|
2850
|
+
* @memberof PhoneNumbersUpdate
|
|
2851
|
+
*/
|
|
2852
|
+
'deletedAt'?: string | null;
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
* @type {boolean}
|
|
2856
|
+
* @memberof PhoneNumbersUpdate
|
|
2857
|
+
*/
|
|
2858
|
+
'isPrimary': boolean;
|
|
2859
|
+
}
|
|
2860
|
+
/**
|
|
2861
|
+
*
|
|
2862
|
+
* @export
|
|
2863
|
+
* @interface ProviderMessageApi
|
|
2182
2864
|
*/
|
|
2183
|
-
interface
|
|
2865
|
+
interface ProviderMessageApi {
|
|
2866
|
+
/**
|
|
2867
|
+
*
|
|
2868
|
+
* @type {string}
|
|
2869
|
+
* @memberof ProviderMessageApi
|
|
2870
|
+
*/
|
|
2871
|
+
'conversationType': ProviderMessageApiConversationTypeEnum;
|
|
2872
|
+
}
|
|
2873
|
+
declare const ProviderMessageApiConversationTypeEnum: {
|
|
2874
|
+
readonly Provider: "PROVIDER";
|
|
2875
|
+
};
|
|
2876
|
+
type ProviderMessageApiConversationTypeEnum = typeof ProviderMessageApiConversationTypeEnum[keyof typeof ProviderMessageApiConversationTypeEnum];
|
|
2877
|
+
/**
|
|
2878
|
+
*
|
|
2879
|
+
* @export
|
|
2880
|
+
* @interface Reservations
|
|
2881
|
+
*/
|
|
2882
|
+
interface Reservations {
|
|
2883
|
+
/**
|
|
2884
|
+
*
|
|
2885
|
+
* @type {string}
|
|
2886
|
+
* @memberof Reservations
|
|
2887
|
+
*/
|
|
2888
|
+
'providerReservationId': string;
|
|
2889
|
+
/**
|
|
2890
|
+
*
|
|
2891
|
+
* @type {string}
|
|
2892
|
+
* @memberof Reservations
|
|
2893
|
+
*/
|
|
2894
|
+
'providerListingId': string;
|
|
2895
|
+
/**
|
|
2896
|
+
*
|
|
2897
|
+
* @type {string}
|
|
2898
|
+
* @memberof Reservations
|
|
2899
|
+
*/
|
|
2900
|
+
'reservationStatus': string;
|
|
2901
|
+
/**
|
|
2902
|
+
*
|
|
2903
|
+
* @type {string}
|
|
2904
|
+
* @memberof Reservations
|
|
2905
|
+
*/
|
|
2906
|
+
'arrivalAtPropertyTz': string;
|
|
2907
|
+
/**
|
|
2908
|
+
*
|
|
2909
|
+
* @type {string}
|
|
2910
|
+
* @memberof Reservations
|
|
2911
|
+
*/
|
|
2912
|
+
'departureAtPropertyTz': string;
|
|
2913
|
+
/**
|
|
2914
|
+
*
|
|
2915
|
+
* @type {number}
|
|
2916
|
+
* @memberof Reservations
|
|
2917
|
+
*/
|
|
2918
|
+
'nights': number;
|
|
2919
|
+
/**
|
|
2920
|
+
*
|
|
2921
|
+
* @type {number}
|
|
2922
|
+
* @memberof Reservations
|
|
2923
|
+
*/
|
|
2924
|
+
'totalPrice': number;
|
|
2184
2925
|
/**
|
|
2185
2926
|
*
|
|
2186
2927
|
* @type {string}
|
|
2187
|
-
* @memberof
|
|
2928
|
+
* @memberof Reservations
|
|
2188
2929
|
*/
|
|
2189
|
-
'
|
|
2930
|
+
'reservationId': string;
|
|
2190
2931
|
/**
|
|
2191
2932
|
*
|
|
2192
2933
|
* @type {string}
|
|
2193
|
-
* @memberof
|
|
2934
|
+
* @memberof Reservations
|
|
2194
2935
|
*/
|
|
2195
|
-
'
|
|
2936
|
+
'listingId': string;
|
|
2196
2937
|
/**
|
|
2197
2938
|
*
|
|
2198
2939
|
* @type {string}
|
|
2199
|
-
* @memberof
|
|
2940
|
+
* @memberof Reservations
|
|
2200
2941
|
*/
|
|
2201
|
-
'
|
|
2942
|
+
'listingTitle': string;
|
|
2202
2943
|
/**
|
|
2203
2944
|
*
|
|
2204
2945
|
* @type {string}
|
|
2205
|
-
* @memberof
|
|
2946
|
+
* @memberof Reservations
|
|
2206
2947
|
*/
|
|
2207
|
-
'
|
|
2948
|
+
'createdAt': string;
|
|
2208
2949
|
/**
|
|
2209
2950
|
*
|
|
2210
2951
|
* @type {string}
|
|
2211
|
-
* @memberof
|
|
2952
|
+
* @memberof Reservations
|
|
2212
2953
|
*/
|
|
2213
|
-
'
|
|
2954
|
+
'updatedAt': string;
|
|
2214
2955
|
/**
|
|
2215
2956
|
*
|
|
2216
2957
|
* @type {string}
|
|
2217
|
-
* @memberof
|
|
2958
|
+
* @memberof Reservations
|
|
2218
2959
|
*/
|
|
2219
|
-
'
|
|
2960
|
+
'createdByName': string;
|
|
2220
2961
|
/**
|
|
2221
2962
|
*
|
|
2222
|
-
* @type {
|
|
2223
|
-
* @memberof
|
|
2963
|
+
* @type {string}
|
|
2964
|
+
* @memberof Reservations
|
|
2224
2965
|
*/
|
|
2225
|
-
'
|
|
2966
|
+
'updatedByName': string;
|
|
2226
2967
|
/**
|
|
2227
2968
|
*
|
|
2228
|
-
* @type {
|
|
2229
|
-
* @memberof
|
|
2969
|
+
* @type {string}
|
|
2970
|
+
* @memberof Reservations
|
|
2230
2971
|
*/
|
|
2231
|
-
'
|
|
2972
|
+
'providerInstance': string;
|
|
2232
2973
|
}
|
|
2974
|
+
/**
|
|
2975
|
+
* @type Sendertypedata
|
|
2976
|
+
* @export
|
|
2977
|
+
*/
|
|
2978
|
+
type Sendertypedata = TwilioInboundSenderTypeDataApi | TwilioOutboundSenderTypeDataApi;
|
|
2233
2979
|
/**
|
|
2234
2980
|
*
|
|
2235
2981
|
* @export
|
|
@@ -2240,6 +2986,15 @@ declare const SortOrder: {
|
|
|
2240
2986
|
readonly Desc: "desc";
|
|
2241
2987
|
};
|
|
2242
2988
|
type SortOrder = typeof SortOrder[keyof typeof SortOrder];
|
|
2989
|
+
/**
|
|
2990
|
+
*
|
|
2991
|
+
* @export
|
|
2992
|
+
* @enum {string}
|
|
2993
|
+
*/
|
|
2994
|
+
declare const SrcResourceModelsConversationsModelConversationsModelConversationSortBy: {
|
|
2995
|
+
readonly UpdatedAt: "updated_at";
|
|
2996
|
+
};
|
|
2997
|
+
type SrcResourceModelsConversationsModelConversationsModelConversationSortBy = typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy[keyof typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy];
|
|
2243
2998
|
/**
|
|
2244
2999
|
*
|
|
2245
3000
|
* @export
|
|
@@ -2292,6 +3047,70 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2Conversation
|
|
|
2292
3047
|
readonly Email: "EMAIL";
|
|
2293
3048
|
};
|
|
2294
3049
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum];
|
|
3050
|
+
/**
|
|
3051
|
+
*
|
|
3052
|
+
* @export
|
|
3053
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
3054
|
+
*/
|
|
3055
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 {
|
|
3056
|
+
/**
|
|
3057
|
+
*
|
|
3058
|
+
* @type {string}
|
|
3059
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
3060
|
+
*/
|
|
3061
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum;
|
|
3062
|
+
/**
|
|
3063
|
+
*
|
|
3064
|
+
* @type {string}
|
|
3065
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
3066
|
+
*/
|
|
3067
|
+
'body': string;
|
|
3068
|
+
}
|
|
3069
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum: {
|
|
3070
|
+
readonly Twilio: "TWILIO";
|
|
3071
|
+
};
|
|
3072
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum];
|
|
3073
|
+
/**
|
|
3074
|
+
*
|
|
3075
|
+
* @export
|
|
3076
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3077
|
+
*/
|
|
3078
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 {
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @type {string}
|
|
3082
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3083
|
+
*/
|
|
3084
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum;
|
|
3085
|
+
/**
|
|
3086
|
+
*
|
|
3087
|
+
* @type {string}
|
|
3088
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3089
|
+
*/
|
|
3090
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
3091
|
+
/**
|
|
3092
|
+
*
|
|
3093
|
+
* @type {string}
|
|
3094
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3095
|
+
*/
|
|
3096
|
+
'subject': string;
|
|
3097
|
+
/**
|
|
3098
|
+
*
|
|
3099
|
+
* @type {string}
|
|
3100
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3101
|
+
*/
|
|
3102
|
+
'htmlBody': string | null;
|
|
3103
|
+
/**
|
|
3104
|
+
*
|
|
3105
|
+
* @type {string}
|
|
3106
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3107
|
+
*/
|
|
3108
|
+
'plainBody': string | null;
|
|
3109
|
+
}
|
|
3110
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum: {
|
|
3111
|
+
readonly Email: "EMAIL";
|
|
3112
|
+
};
|
|
3113
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum];
|
|
2295
3114
|
/**
|
|
2296
3115
|
*
|
|
2297
3116
|
* @export
|
|
@@ -2338,6 +3157,105 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2Conversation
|
|
|
2338
3157
|
readonly Email: "EMAIL";
|
|
2339
3158
|
};
|
|
2340
3159
|
type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum];
|
|
3160
|
+
/**
|
|
3161
|
+
*
|
|
3162
|
+
* @export
|
|
3163
|
+
* @enum {string}
|
|
3164
|
+
*/
|
|
3165
|
+
declare const SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy: {
|
|
3166
|
+
readonly CreatedAt: "created_at";
|
|
3167
|
+
};
|
|
3168
|
+
type SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy = typeof SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy[keyof typeof SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy];
|
|
3169
|
+
/**
|
|
3170
|
+
*
|
|
3171
|
+
* @export
|
|
3172
|
+
* @enum {string}
|
|
3173
|
+
*/
|
|
3174
|
+
declare const SrcResourceModelsReservationsModelReservationBaseModelSortBy: {
|
|
3175
|
+
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
3176
|
+
};
|
|
3177
|
+
type SrcResourceModelsReservationsModelReservationBaseModelSortBy = typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy[keyof typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy];
|
|
3178
|
+
/**
|
|
3179
|
+
*
|
|
3180
|
+
* @export
|
|
3181
|
+
* @interface TwilioInboundSenderTypeDataApi
|
|
3182
|
+
*/
|
|
3183
|
+
interface TwilioInboundSenderTypeDataApi {
|
|
3184
|
+
/**
|
|
3185
|
+
*
|
|
3186
|
+
* @type {string}
|
|
3187
|
+
* @memberof TwilioInboundSenderTypeDataApi
|
|
3188
|
+
*/
|
|
3189
|
+
'direction': TwilioInboundSenderTypeDataApiDirectionEnum;
|
|
3190
|
+
/**
|
|
3191
|
+
*
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof TwilioInboundSenderTypeDataApi
|
|
3194
|
+
*/
|
|
3195
|
+
'fromPhoneId'?: string | null;
|
|
3196
|
+
}
|
|
3197
|
+
declare const TwilioInboundSenderTypeDataApiDirectionEnum: {
|
|
3198
|
+
readonly Inbound: "INBOUND";
|
|
3199
|
+
};
|
|
3200
|
+
type TwilioInboundSenderTypeDataApiDirectionEnum = typeof TwilioInboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioInboundSenderTypeDataApiDirectionEnum];
|
|
3201
|
+
/**
|
|
3202
|
+
*
|
|
3203
|
+
* @export
|
|
3204
|
+
* @interface TwilioMessageApi
|
|
3205
|
+
*/
|
|
3206
|
+
interface TwilioMessageApi {
|
|
3207
|
+
/**
|
|
3208
|
+
*
|
|
3209
|
+
* @type {string}
|
|
3210
|
+
* @memberof TwilioMessageApi
|
|
3211
|
+
*/
|
|
3212
|
+
'conversationType': TwilioMessageApiConversationTypeEnum;
|
|
3213
|
+
/**
|
|
3214
|
+
*
|
|
3215
|
+
* @type {string}
|
|
3216
|
+
* @memberof TwilioMessageApi
|
|
3217
|
+
*/
|
|
3218
|
+
'body'?: string | null;
|
|
3219
|
+
/**
|
|
3220
|
+
*
|
|
3221
|
+
* @type {Array<string>}
|
|
3222
|
+
* @memberof TwilioMessageApi
|
|
3223
|
+
*/
|
|
3224
|
+
'mediaUrl'?: Array<string> | null;
|
|
3225
|
+
/**
|
|
3226
|
+
*
|
|
3227
|
+
* @type {Sendertypedata}
|
|
3228
|
+
* @memberof TwilioMessageApi
|
|
3229
|
+
*/
|
|
3230
|
+
'senderTypeData': Sendertypedata;
|
|
3231
|
+
}
|
|
3232
|
+
declare const TwilioMessageApiConversationTypeEnum: {
|
|
3233
|
+
readonly Twilio: "TWILIO";
|
|
3234
|
+
};
|
|
3235
|
+
type TwilioMessageApiConversationTypeEnum = typeof TwilioMessageApiConversationTypeEnum[keyof typeof TwilioMessageApiConversationTypeEnum];
|
|
3236
|
+
/**
|
|
3237
|
+
*
|
|
3238
|
+
* @export
|
|
3239
|
+
* @interface TwilioOutboundSenderTypeDataApi
|
|
3240
|
+
*/
|
|
3241
|
+
interface TwilioOutboundSenderTypeDataApi {
|
|
3242
|
+
/**
|
|
3243
|
+
*
|
|
3244
|
+
* @type {string}
|
|
3245
|
+
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3246
|
+
*/
|
|
3247
|
+
'direction': TwilioOutboundSenderTypeDataApiDirectionEnum;
|
|
3248
|
+
/**
|
|
3249
|
+
*
|
|
3250
|
+
* @type {string}
|
|
3251
|
+
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3252
|
+
*/
|
|
3253
|
+
'fromManagedPhoneId': string;
|
|
3254
|
+
}
|
|
3255
|
+
declare const TwilioOutboundSenderTypeDataApiDirectionEnum: {
|
|
3256
|
+
readonly Outbound: "OUTBOUND";
|
|
3257
|
+
};
|
|
3258
|
+
type TwilioOutboundSenderTypeDataApiDirectionEnum = typeof TwilioOutboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioOutboundSenderTypeDataApiDirectionEnum];
|
|
2341
3259
|
/**
|
|
2342
3260
|
*
|
|
2343
3261
|
* @export
|
|
@@ -2675,6 +3593,15 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2675
3593
|
* @throws {RequiredError}
|
|
2676
3594
|
*/
|
|
2677
3595
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3596
|
+
/**
|
|
3597
|
+
*
|
|
3598
|
+
* @summary Emails Update
|
|
3599
|
+
* @param {string} emailId
|
|
3600
|
+
* @param {EmailUpdate} emailUpdate
|
|
3601
|
+
* @param {*} [options] Override http request option.
|
|
3602
|
+
* @throws {RequiredError}
|
|
3603
|
+
*/
|
|
3604
|
+
emailsUpdate: (emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2678
3605
|
/**
|
|
2679
3606
|
*
|
|
2680
3607
|
* @summary Phone_numbers Create
|
|
@@ -2692,6 +3619,15 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2692
3619
|
* @throws {RequiredError}
|
|
2693
3620
|
*/
|
|
2694
3621
|
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3622
|
+
/**
|
|
3623
|
+
*
|
|
3624
|
+
* @summary Phone_numbers Update
|
|
3625
|
+
* @param {string} phoneNumberId
|
|
3626
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
3627
|
+
* @param {*} [options] Override http request option.
|
|
3628
|
+
* @throws {RequiredError}
|
|
3629
|
+
*/
|
|
3630
|
+
phoneNumbersUpdate: (phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2695
3631
|
};
|
|
2696
3632
|
/**
|
|
2697
3633
|
* ContactsApi - functional programming interface
|
|
@@ -2817,6 +3753,15 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2817
3753
|
* @throws {RequiredError}
|
|
2818
3754
|
*/
|
|
2819
3755
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3756
|
+
/**
|
|
3757
|
+
*
|
|
3758
|
+
* @summary Emails Update
|
|
3759
|
+
* @param {string} emailId
|
|
3760
|
+
* @param {EmailUpdate} emailUpdate
|
|
3761
|
+
* @param {*} [options] Override http request option.
|
|
3762
|
+
* @throws {RequiredError}
|
|
3763
|
+
*/
|
|
3764
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsUpdate>>;
|
|
2820
3765
|
/**
|
|
2821
3766
|
*
|
|
2822
3767
|
* @summary Phone_numbers Create
|
|
@@ -2834,6 +3779,15 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2834
3779
|
* @throws {RequiredError}
|
|
2835
3780
|
*/
|
|
2836
3781
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3782
|
+
/**
|
|
3783
|
+
*
|
|
3784
|
+
* @summary Phone_numbers Update
|
|
3785
|
+
* @param {string} phoneNumberId
|
|
3786
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
3787
|
+
* @param {*} [options] Override http request option.
|
|
3788
|
+
* @throws {RequiredError}
|
|
3789
|
+
*/
|
|
3790
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersUpdate>>;
|
|
2837
3791
|
};
|
|
2838
3792
|
/**
|
|
2839
3793
|
* ContactsApi - factory interface
|
|
@@ -2959,6 +3913,15 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2959
3913
|
* @throws {RequiredError}
|
|
2960
3914
|
*/
|
|
2961
3915
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3916
|
+
/**
|
|
3917
|
+
*
|
|
3918
|
+
* @summary Emails Update
|
|
3919
|
+
* @param {string} emailId
|
|
3920
|
+
* @param {EmailUpdate} emailUpdate
|
|
3921
|
+
* @param {*} [options] Override http request option.
|
|
3922
|
+
* @throws {RequiredError}
|
|
3923
|
+
*/
|
|
3924
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsUpdate>;
|
|
2962
3925
|
/**
|
|
2963
3926
|
*
|
|
2964
3927
|
* @summary Phone_numbers Create
|
|
@@ -2976,6 +3939,15 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2976
3939
|
* @throws {RequiredError}
|
|
2977
3940
|
*/
|
|
2978
3941
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3942
|
+
/**
|
|
3943
|
+
*
|
|
3944
|
+
* @summary Phone_numbers Update
|
|
3945
|
+
* @param {string} phoneNumberId
|
|
3946
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
3947
|
+
* @param {*} [options] Override http request option.
|
|
3948
|
+
* @throws {RequiredError}
|
|
3949
|
+
*/
|
|
3950
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersUpdate>;
|
|
2979
3951
|
};
|
|
2980
3952
|
/**
|
|
2981
3953
|
* ContactsApi - object-oriented interface
|
|
@@ -3116,6 +4088,16 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3116
4088
|
* @memberof ContactsApi
|
|
3117
4089
|
*/
|
|
3118
4090
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
4091
|
+
/**
|
|
4092
|
+
*
|
|
4093
|
+
* @summary Emails Update
|
|
4094
|
+
* @param {string} emailId
|
|
4095
|
+
* @param {EmailUpdate} emailUpdate
|
|
4096
|
+
* @param {*} [options] Override http request option.
|
|
4097
|
+
* @throws {RequiredError}
|
|
4098
|
+
* @memberof ContactsApi
|
|
4099
|
+
*/
|
|
4100
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsUpdate, any>>;
|
|
3119
4101
|
/**
|
|
3120
4102
|
*
|
|
3121
4103
|
* @summary Phone_numbers Create
|
|
@@ -3135,6 +4117,16 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3135
4117
|
* @memberof ContactsApi
|
|
3136
4118
|
*/
|
|
3137
4119
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
4120
|
+
/**
|
|
4121
|
+
*
|
|
4122
|
+
* @summary Phone_numbers Update
|
|
4123
|
+
* @param {string} phoneNumberId
|
|
4124
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
4125
|
+
* @param {*} [options] Override http request option.
|
|
4126
|
+
* @throws {RequiredError}
|
|
4127
|
+
* @memberof ContactsApi
|
|
4128
|
+
*/
|
|
4129
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersUpdate, any>>;
|
|
3138
4130
|
}
|
|
3139
4131
|
/**
|
|
3140
4132
|
* ConversationsApi - axios parameter creator
|
|
@@ -3160,11 +4152,17 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3160
4152
|
/**
|
|
3161
4153
|
* List all conversations, optionally filtered by contact_id
|
|
3162
4154
|
* @summary Conversations List
|
|
3163
|
-
* @param {string} [
|
|
4155
|
+
* @param {string | null} [searchString]
|
|
4156
|
+
* @param {string | null} [contactId]
|
|
4157
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4158
|
+
* @param {number} [limit]
|
|
4159
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4160
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4161
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3164
4162
|
* @param {*} [options] Override http request option.
|
|
3165
4163
|
* @throws {RequiredError}
|
|
3166
4164
|
*/
|
|
3167
|
-
conversationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4165
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3168
4166
|
/**
|
|
3169
4167
|
*
|
|
3170
4168
|
* @summary Conversations Update
|
|
@@ -3174,6 +4172,38 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3174
4172
|
* @throws {RequiredError}
|
|
3175
4173
|
*/
|
|
3176
4174
|
conversationsUpdate: (conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4175
|
+
/**
|
|
4176
|
+
*
|
|
4177
|
+
* @summary Messages Create
|
|
4178
|
+
* @param {string} conversationId
|
|
4179
|
+
* @param {MessageCreate} messageCreate
|
|
4180
|
+
* @param {*} [options] Override http request option.
|
|
4181
|
+
* @throws {RequiredError}
|
|
4182
|
+
*/
|
|
4183
|
+
messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4184
|
+
/**
|
|
4185
|
+
*
|
|
4186
|
+
* @summary Messages Get
|
|
4187
|
+
* @param {string} messageId
|
|
4188
|
+
* @param {*} [options] Override http request option.
|
|
4189
|
+
* @throws {RequiredError}
|
|
4190
|
+
*/
|
|
4191
|
+
messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4192
|
+
/**
|
|
4193
|
+
*
|
|
4194
|
+
* @summary Messages List
|
|
4195
|
+
* @param {string | null} [searchString]
|
|
4196
|
+
* @param {string | null} [contactId]
|
|
4197
|
+
* @param {string | null} [conversationId]
|
|
4198
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4199
|
+
* @param {number} [limit]
|
|
4200
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4201
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4202
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4203
|
+
* @param {*} [options] Override http request option.
|
|
4204
|
+
* @throws {RequiredError}
|
|
4205
|
+
*/
|
|
4206
|
+
messagesList: (searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3177
4207
|
};
|
|
3178
4208
|
/**
|
|
3179
4209
|
* ConversationsApi - functional programming interface
|
|
@@ -3199,11 +4229,17 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3199
4229
|
/**
|
|
3200
4230
|
* List all conversations, optionally filtered by contact_id
|
|
3201
4231
|
* @summary Conversations List
|
|
3202
|
-
* @param {string} [
|
|
4232
|
+
* @param {string | null} [searchString]
|
|
4233
|
+
* @param {string | null} [contactId]
|
|
4234
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4235
|
+
* @param {number} [limit]
|
|
4236
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4237
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4238
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3203
4239
|
* @param {*} [options] Override http request option.
|
|
3204
4240
|
* @throws {RequiredError}
|
|
3205
4241
|
*/
|
|
3206
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4242
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversations>>;
|
|
3207
4243
|
/**
|
|
3208
4244
|
*
|
|
3209
4245
|
* @summary Conversations Update
|
|
@@ -3213,6 +4249,38 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3213
4249
|
* @throws {RequiredError}
|
|
3214
4250
|
*/
|
|
3215
4251
|
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConversationsUpdate>>;
|
|
4252
|
+
/**
|
|
4253
|
+
*
|
|
4254
|
+
* @summary Messages Create
|
|
4255
|
+
* @param {string} conversationId
|
|
4256
|
+
* @param {MessageCreate} messageCreate
|
|
4257
|
+
* @param {*} [options] Override http request option.
|
|
4258
|
+
* @throws {RequiredError}
|
|
4259
|
+
*/
|
|
4260
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesCreate>>;
|
|
4261
|
+
/**
|
|
4262
|
+
*
|
|
4263
|
+
* @summary Messages Get
|
|
4264
|
+
* @param {string} messageId
|
|
4265
|
+
* @param {*} [options] Override http request option.
|
|
4266
|
+
* @throws {RequiredError}
|
|
4267
|
+
*/
|
|
4268
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesGet>>;
|
|
4269
|
+
/**
|
|
4270
|
+
*
|
|
4271
|
+
* @summary Messages List
|
|
4272
|
+
* @param {string | null} [searchString]
|
|
4273
|
+
* @param {string | null} [contactId]
|
|
4274
|
+
* @param {string | null} [conversationId]
|
|
4275
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4276
|
+
* @param {number} [limit]
|
|
4277
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4278
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4279
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4280
|
+
* @param {*} [options] Override http request option.
|
|
4281
|
+
* @throws {RequiredError}
|
|
4282
|
+
*/
|
|
4283
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessages>>;
|
|
3216
4284
|
};
|
|
3217
4285
|
/**
|
|
3218
4286
|
* ConversationsApi - factory interface
|
|
@@ -3238,11 +4306,17 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3238
4306
|
/**
|
|
3239
4307
|
* List all conversations, optionally filtered by contact_id
|
|
3240
4308
|
* @summary Conversations List
|
|
3241
|
-
* @param {string} [
|
|
4309
|
+
* @param {string | null} [searchString]
|
|
4310
|
+
* @param {string | null} [contactId]
|
|
4311
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4312
|
+
* @param {number} [limit]
|
|
4313
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4314
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4315
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3242
4316
|
* @param {*} [options] Override http request option.
|
|
3243
4317
|
* @throws {RequiredError}
|
|
3244
4318
|
*/
|
|
3245
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4319
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversations>;
|
|
3246
4320
|
/**
|
|
3247
4321
|
*
|
|
3248
4322
|
* @summary Conversations Update
|
|
@@ -3251,7 +4325,39 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3251
4325
|
* @param {*} [options] Override http request option.
|
|
3252
4326
|
* @throws {RequiredError}
|
|
3253
4327
|
*/
|
|
3254
|
-
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsUpdate>;
|
|
4328
|
+
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ConversationsUpdate>;
|
|
4329
|
+
/**
|
|
4330
|
+
*
|
|
4331
|
+
* @summary Messages Create
|
|
4332
|
+
* @param {string} conversationId
|
|
4333
|
+
* @param {MessageCreate} messageCreate
|
|
4334
|
+
* @param {*} [options] Override http request option.
|
|
4335
|
+
* @throws {RequiredError}
|
|
4336
|
+
*/
|
|
4337
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<MessagesCreate>;
|
|
4338
|
+
/**
|
|
4339
|
+
*
|
|
4340
|
+
* @summary Messages Get
|
|
4341
|
+
* @param {string} messageId
|
|
4342
|
+
* @param {*} [options] Override http request option.
|
|
4343
|
+
* @throws {RequiredError}
|
|
4344
|
+
*/
|
|
4345
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<MessagesGet>;
|
|
4346
|
+
/**
|
|
4347
|
+
*
|
|
4348
|
+
* @summary Messages List
|
|
4349
|
+
* @param {string | null} [searchString]
|
|
4350
|
+
* @param {string | null} [contactId]
|
|
4351
|
+
* @param {string | null} [conversationId]
|
|
4352
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4353
|
+
* @param {number} [limit]
|
|
4354
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4355
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4356
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4357
|
+
* @param {*} [options] Override http request option.
|
|
4358
|
+
* @throws {RequiredError}
|
|
4359
|
+
*/
|
|
4360
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessages>;
|
|
3255
4361
|
};
|
|
3256
4362
|
/**
|
|
3257
4363
|
* ConversationsApi - object-oriented interface
|
|
@@ -3281,12 +4387,18 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3281
4387
|
/**
|
|
3282
4388
|
* List all conversations, optionally filtered by contact_id
|
|
3283
4389
|
* @summary Conversations List
|
|
3284
|
-
* @param {string} [
|
|
4390
|
+
* @param {string | null} [searchString]
|
|
4391
|
+
* @param {string | null} [contactId]
|
|
4392
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4393
|
+
* @param {number} [limit]
|
|
4394
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4395
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4396
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3285
4397
|
* @param {*} [options] Override http request option.
|
|
3286
4398
|
* @throws {RequiredError}
|
|
3287
4399
|
* @memberof ConversationsApi
|
|
3288
4400
|
*/
|
|
3289
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4401
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversations, any>>;
|
|
3290
4402
|
/**
|
|
3291
4403
|
*
|
|
3292
4404
|
* @summary Conversations Update
|
|
@@ -3297,6 +4409,41 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3297
4409
|
* @memberof ConversationsApi
|
|
3298
4410
|
*/
|
|
3299
4411
|
conversationsUpdate(conversationId: string, conversationUpdate: ConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ConversationsUpdate, any>>;
|
|
4412
|
+
/**
|
|
4413
|
+
*
|
|
4414
|
+
* @summary Messages Create
|
|
4415
|
+
* @param {string} conversationId
|
|
4416
|
+
* @param {MessageCreate} messageCreate
|
|
4417
|
+
* @param {*} [options] Override http request option.
|
|
4418
|
+
* @throws {RequiredError}
|
|
4419
|
+
* @memberof ConversationsApi
|
|
4420
|
+
*/
|
|
4421
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesCreate, any>>;
|
|
4422
|
+
/**
|
|
4423
|
+
*
|
|
4424
|
+
* @summary Messages Get
|
|
4425
|
+
* @param {string} messageId
|
|
4426
|
+
* @param {*} [options] Override http request option.
|
|
4427
|
+
* @throws {RequiredError}
|
|
4428
|
+
* @memberof ConversationsApi
|
|
4429
|
+
*/
|
|
4430
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesGet, any>>;
|
|
4431
|
+
/**
|
|
4432
|
+
*
|
|
4433
|
+
* @summary Messages List
|
|
4434
|
+
* @param {string | null} [searchString]
|
|
4435
|
+
* @param {string | null} [contactId]
|
|
4436
|
+
* @param {string | null} [conversationId]
|
|
4437
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4438
|
+
* @param {number} [limit]
|
|
4439
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4440
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4441
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4442
|
+
* @param {*} [options] Override http request option.
|
|
4443
|
+
* @throws {RequiredError}
|
|
4444
|
+
* @memberof ConversationsApi
|
|
4445
|
+
*/
|
|
4446
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessages, any>>;
|
|
3300
4447
|
}
|
|
3301
4448
|
/**
|
|
3302
4449
|
* EmailsApi - axios parameter creator
|
|
@@ -3320,6 +4467,15 @@ declare const EmailsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3320
4467
|
* @throws {RequiredError}
|
|
3321
4468
|
*/
|
|
3322
4469
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4470
|
+
/**
|
|
4471
|
+
*
|
|
4472
|
+
* @summary Emails Update
|
|
4473
|
+
* @param {string} emailId
|
|
4474
|
+
* @param {EmailUpdate} emailUpdate
|
|
4475
|
+
* @param {*} [options] Override http request option.
|
|
4476
|
+
* @throws {RequiredError}
|
|
4477
|
+
*/
|
|
4478
|
+
emailsUpdate: (emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3323
4479
|
};
|
|
3324
4480
|
/**
|
|
3325
4481
|
* EmailsApi - functional programming interface
|
|
@@ -3343,6 +4499,15 @@ declare const EmailsApiFp: (configuration?: Configuration) => {
|
|
|
3343
4499
|
* @throws {RequiredError}
|
|
3344
4500
|
*/
|
|
3345
4501
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4502
|
+
/**
|
|
4503
|
+
*
|
|
4504
|
+
* @summary Emails Update
|
|
4505
|
+
* @param {string} emailId
|
|
4506
|
+
* @param {EmailUpdate} emailUpdate
|
|
4507
|
+
* @param {*} [options] Override http request option.
|
|
4508
|
+
* @throws {RequiredError}
|
|
4509
|
+
*/
|
|
4510
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsUpdate>>;
|
|
3346
4511
|
};
|
|
3347
4512
|
/**
|
|
3348
4513
|
* EmailsApi - factory interface
|
|
@@ -3366,6 +4531,15 @@ declare const EmailsApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
3366
4531
|
* @throws {RequiredError}
|
|
3367
4532
|
*/
|
|
3368
4533
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4534
|
+
/**
|
|
4535
|
+
*
|
|
4536
|
+
* @summary Emails Update
|
|
4537
|
+
* @param {string} emailId
|
|
4538
|
+
* @param {EmailUpdate} emailUpdate
|
|
4539
|
+
* @param {*} [options] Override http request option.
|
|
4540
|
+
* @throws {RequiredError}
|
|
4541
|
+
*/
|
|
4542
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsUpdate>;
|
|
3369
4543
|
};
|
|
3370
4544
|
/**
|
|
3371
4545
|
* EmailsApi - object-oriented interface
|
|
@@ -3393,6 +4567,16 @@ declare class EmailsApi extends BaseAPI {
|
|
|
3393
4567
|
* @memberof EmailsApi
|
|
3394
4568
|
*/
|
|
3395
4569
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
4570
|
+
/**
|
|
4571
|
+
*
|
|
4572
|
+
* @summary Emails Update
|
|
4573
|
+
* @param {string} emailId
|
|
4574
|
+
* @param {EmailUpdate} emailUpdate
|
|
4575
|
+
* @param {*} [options] Override http request option.
|
|
4576
|
+
* @throws {RequiredError}
|
|
4577
|
+
* @memberof EmailsApi
|
|
4578
|
+
*/
|
|
4579
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsUpdate, any>>;
|
|
3396
4580
|
}
|
|
3397
4581
|
/**
|
|
3398
4582
|
* HostawayApi - axios parameter creator
|
|
@@ -3518,13 +4702,27 @@ declare class InquiriesApi extends BaseAPI {
|
|
|
3518
4702
|
*/
|
|
3519
4703
|
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3520
4704
|
/**
|
|
3521
|
-
*
|
|
4705
|
+
*
|
|
4706
|
+
* @summary Listings Get
|
|
4707
|
+
* @param {string} listingId
|
|
4708
|
+
* @param {*} [options] Override http request option.
|
|
4709
|
+
* @throws {RequiredError}
|
|
4710
|
+
*/
|
|
4711
|
+
listingsGet: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4712
|
+
/**
|
|
4713
|
+
*
|
|
3522
4714
|
* @summary Listings List
|
|
3523
|
-
* @param {string} [
|
|
4715
|
+
* @param {string | null} [searchString]
|
|
4716
|
+
* @param {string | null} [contactId]
|
|
4717
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4718
|
+
* @param {number} [limit]
|
|
4719
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4720
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
4721
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3524
4722
|
* @param {*} [options] Override http request option.
|
|
3525
4723
|
* @throws {RequiredError}
|
|
3526
4724
|
*/
|
|
3527
|
-
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4725
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3528
4726
|
};
|
|
3529
4727
|
/**
|
|
3530
4728
|
* ListingsApi - functional programming interface
|
|
@@ -3532,13 +4730,27 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3532
4730
|
*/
|
|
3533
4731
|
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
3534
4732
|
/**
|
|
3535
|
-
*
|
|
4733
|
+
*
|
|
4734
|
+
* @summary Listings Get
|
|
4735
|
+
* @param {string} listingId
|
|
4736
|
+
* @param {*} [options] Override http request option.
|
|
4737
|
+
* @throws {RequiredError}
|
|
4738
|
+
*/
|
|
4739
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListingsGet>>;
|
|
4740
|
+
/**
|
|
4741
|
+
*
|
|
3536
4742
|
* @summary Listings List
|
|
3537
|
-
* @param {string} [
|
|
4743
|
+
* @param {string | null} [searchString]
|
|
4744
|
+
* @param {string | null} [contactId]
|
|
4745
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4746
|
+
* @param {number} [limit]
|
|
4747
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4748
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
4749
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3538
4750
|
* @param {*} [options] Override http request option.
|
|
3539
4751
|
* @throws {RequiredError}
|
|
3540
4752
|
*/
|
|
3541
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4753
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListings>>;
|
|
3542
4754
|
};
|
|
3543
4755
|
/**
|
|
3544
4756
|
* ListingsApi - factory interface
|
|
@@ -3546,13 +4758,27 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
3546
4758
|
*/
|
|
3547
4759
|
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3548
4760
|
/**
|
|
3549
|
-
*
|
|
4761
|
+
*
|
|
4762
|
+
* @summary Listings Get
|
|
4763
|
+
* @param {string} listingId
|
|
4764
|
+
* @param {*} [options] Override http request option.
|
|
4765
|
+
* @throws {RequiredError}
|
|
4766
|
+
*/
|
|
4767
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<ListingsGet>;
|
|
4768
|
+
/**
|
|
4769
|
+
*
|
|
3550
4770
|
* @summary Listings List
|
|
3551
|
-
* @param {string} [
|
|
4771
|
+
* @param {string | null} [searchString]
|
|
4772
|
+
* @param {string | null} [contactId]
|
|
4773
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4774
|
+
* @param {number} [limit]
|
|
4775
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4776
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
4777
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3552
4778
|
* @param {*} [options] Override http request option.
|
|
3553
4779
|
* @throws {RequiredError}
|
|
3554
4780
|
*/
|
|
3555
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4781
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListings>;
|
|
3556
4782
|
};
|
|
3557
4783
|
/**
|
|
3558
4784
|
* ListingsApi - object-oriented interface
|
|
@@ -3562,14 +4788,29 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3562
4788
|
*/
|
|
3563
4789
|
declare class ListingsApi extends BaseAPI {
|
|
3564
4790
|
/**
|
|
3565
|
-
*
|
|
4791
|
+
*
|
|
4792
|
+
* @summary Listings Get
|
|
4793
|
+
* @param {string} listingId
|
|
4794
|
+
* @param {*} [options] Override http request option.
|
|
4795
|
+
* @throws {RequiredError}
|
|
4796
|
+
* @memberof ListingsApi
|
|
4797
|
+
*/
|
|
4798
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListingsGet, any>>;
|
|
4799
|
+
/**
|
|
4800
|
+
*
|
|
3566
4801
|
* @summary Listings List
|
|
3567
|
-
* @param {string} [
|
|
4802
|
+
* @param {string | null} [searchString]
|
|
4803
|
+
* @param {string | null} [contactId]
|
|
4804
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4805
|
+
* @param {number} [limit]
|
|
4806
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4807
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
4808
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3568
4809
|
* @param {*} [options] Override http request option.
|
|
3569
4810
|
* @throws {RequiredError}
|
|
3570
4811
|
* @memberof ListingsApi
|
|
3571
4812
|
*/
|
|
3572
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4813
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListings, any>>;
|
|
3573
4814
|
}
|
|
3574
4815
|
/**
|
|
3575
4816
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
@@ -3626,6 +4867,163 @@ declare class ManagedPhoneNumbersApi extends BaseAPI {
|
|
|
3626
4867
|
*/
|
|
3627
4868
|
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseManagedPhoneNumbersList, any>>;
|
|
3628
4869
|
}
|
|
4870
|
+
/**
|
|
4871
|
+
* MessagesApi - axios parameter creator
|
|
4872
|
+
* @export
|
|
4873
|
+
*/
|
|
4874
|
+
declare const MessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4875
|
+
/**
|
|
4876
|
+
*
|
|
4877
|
+
* @summary Messages Create
|
|
4878
|
+
* @param {string} conversationId
|
|
4879
|
+
* @param {MessageCreate} messageCreate
|
|
4880
|
+
* @param {*} [options] Override http request option.
|
|
4881
|
+
* @throws {RequiredError}
|
|
4882
|
+
*/
|
|
4883
|
+
messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4884
|
+
/**
|
|
4885
|
+
*
|
|
4886
|
+
* @summary Messages Get
|
|
4887
|
+
* @param {string} messageId
|
|
4888
|
+
* @param {*} [options] Override http request option.
|
|
4889
|
+
* @throws {RequiredError}
|
|
4890
|
+
*/
|
|
4891
|
+
messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4892
|
+
/**
|
|
4893
|
+
*
|
|
4894
|
+
* @summary Messages List
|
|
4895
|
+
* @param {string | null} [searchString]
|
|
4896
|
+
* @param {string | null} [contactId]
|
|
4897
|
+
* @param {string | null} [conversationId]
|
|
4898
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4899
|
+
* @param {number} [limit]
|
|
4900
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4901
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4902
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4903
|
+
* @param {*} [options] Override http request option.
|
|
4904
|
+
* @throws {RequiredError}
|
|
4905
|
+
*/
|
|
4906
|
+
messagesList: (searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4907
|
+
};
|
|
4908
|
+
/**
|
|
4909
|
+
* MessagesApi - functional programming interface
|
|
4910
|
+
* @export
|
|
4911
|
+
*/
|
|
4912
|
+
declare const MessagesApiFp: (configuration?: Configuration) => {
|
|
4913
|
+
/**
|
|
4914
|
+
*
|
|
4915
|
+
* @summary Messages Create
|
|
4916
|
+
* @param {string} conversationId
|
|
4917
|
+
* @param {MessageCreate} messageCreate
|
|
4918
|
+
* @param {*} [options] Override http request option.
|
|
4919
|
+
* @throws {RequiredError}
|
|
4920
|
+
*/
|
|
4921
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesCreate>>;
|
|
4922
|
+
/**
|
|
4923
|
+
*
|
|
4924
|
+
* @summary Messages Get
|
|
4925
|
+
* @param {string} messageId
|
|
4926
|
+
* @param {*} [options] Override http request option.
|
|
4927
|
+
* @throws {RequiredError}
|
|
4928
|
+
*/
|
|
4929
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesGet>>;
|
|
4930
|
+
/**
|
|
4931
|
+
*
|
|
4932
|
+
* @summary Messages List
|
|
4933
|
+
* @param {string | null} [searchString]
|
|
4934
|
+
* @param {string | null} [contactId]
|
|
4935
|
+
* @param {string | null} [conversationId]
|
|
4936
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4937
|
+
* @param {number} [limit]
|
|
4938
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4939
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4940
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4941
|
+
* @param {*} [options] Override http request option.
|
|
4942
|
+
* @throws {RequiredError}
|
|
4943
|
+
*/
|
|
4944
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessages>>;
|
|
4945
|
+
};
|
|
4946
|
+
/**
|
|
4947
|
+
* MessagesApi - factory interface
|
|
4948
|
+
* @export
|
|
4949
|
+
*/
|
|
4950
|
+
declare const MessagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4951
|
+
/**
|
|
4952
|
+
*
|
|
4953
|
+
* @summary Messages Create
|
|
4954
|
+
* @param {string} conversationId
|
|
4955
|
+
* @param {MessageCreate} messageCreate
|
|
4956
|
+
* @param {*} [options] Override http request option.
|
|
4957
|
+
* @throws {RequiredError}
|
|
4958
|
+
*/
|
|
4959
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<MessagesCreate>;
|
|
4960
|
+
/**
|
|
4961
|
+
*
|
|
4962
|
+
* @summary Messages Get
|
|
4963
|
+
* @param {string} messageId
|
|
4964
|
+
* @param {*} [options] Override http request option.
|
|
4965
|
+
* @throws {RequiredError}
|
|
4966
|
+
*/
|
|
4967
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<MessagesGet>;
|
|
4968
|
+
/**
|
|
4969
|
+
*
|
|
4970
|
+
* @summary Messages List
|
|
4971
|
+
* @param {string | null} [searchString]
|
|
4972
|
+
* @param {string | null} [contactId]
|
|
4973
|
+
* @param {string | null} [conversationId]
|
|
4974
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4975
|
+
* @param {number} [limit]
|
|
4976
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4977
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
4978
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4979
|
+
* @param {*} [options] Override http request option.
|
|
4980
|
+
* @throws {RequiredError}
|
|
4981
|
+
*/
|
|
4982
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessages>;
|
|
4983
|
+
};
|
|
4984
|
+
/**
|
|
4985
|
+
* MessagesApi - object-oriented interface
|
|
4986
|
+
* @export
|
|
4987
|
+
* @class MessagesApi
|
|
4988
|
+
* @extends {BaseAPI}
|
|
4989
|
+
*/
|
|
4990
|
+
declare class MessagesApi extends BaseAPI {
|
|
4991
|
+
/**
|
|
4992
|
+
*
|
|
4993
|
+
* @summary Messages Create
|
|
4994
|
+
* @param {string} conversationId
|
|
4995
|
+
* @param {MessageCreate} messageCreate
|
|
4996
|
+
* @param {*} [options] Override http request option.
|
|
4997
|
+
* @throws {RequiredError}
|
|
4998
|
+
* @memberof MessagesApi
|
|
4999
|
+
*/
|
|
5000
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesCreate, any>>;
|
|
5001
|
+
/**
|
|
5002
|
+
*
|
|
5003
|
+
* @summary Messages Get
|
|
5004
|
+
* @param {string} messageId
|
|
5005
|
+
* @param {*} [options] Override http request option.
|
|
5006
|
+
* @throws {RequiredError}
|
|
5007
|
+
* @memberof MessagesApi
|
|
5008
|
+
*/
|
|
5009
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesGet, any>>;
|
|
5010
|
+
/**
|
|
5011
|
+
*
|
|
5012
|
+
* @summary Messages List
|
|
5013
|
+
* @param {string | null} [searchString]
|
|
5014
|
+
* @param {string | null} [contactId]
|
|
5015
|
+
* @param {string | null} [conversationId]
|
|
5016
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5017
|
+
* @param {number} [limit]
|
|
5018
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5019
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
5020
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5021
|
+
* @param {*} [options] Override http request option.
|
|
5022
|
+
* @throws {RequiredError}
|
|
5023
|
+
* @memberof MessagesApi
|
|
5024
|
+
*/
|
|
5025
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessages, any>>;
|
|
5026
|
+
}
|
|
3629
5027
|
/**
|
|
3630
5028
|
* PhoneNumbersApi - axios parameter creator
|
|
3631
5029
|
* @export
|
|
@@ -3648,6 +5046,15 @@ declare const PhoneNumbersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3648
5046
|
* @throws {RequiredError}
|
|
3649
5047
|
*/
|
|
3650
5048
|
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5049
|
+
/**
|
|
5050
|
+
*
|
|
5051
|
+
* @summary Phone_numbers Update
|
|
5052
|
+
* @param {string} phoneNumberId
|
|
5053
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5054
|
+
* @param {*} [options] Override http request option.
|
|
5055
|
+
* @throws {RequiredError}
|
|
5056
|
+
*/
|
|
5057
|
+
phoneNumbersUpdate: (phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3651
5058
|
};
|
|
3652
5059
|
/**
|
|
3653
5060
|
* PhoneNumbersApi - functional programming interface
|
|
@@ -3671,6 +5078,15 @@ declare const PhoneNumbersApiFp: (configuration?: Configuration) => {
|
|
|
3671
5078
|
* @throws {RequiredError}
|
|
3672
5079
|
*/
|
|
3673
5080
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5081
|
+
/**
|
|
5082
|
+
*
|
|
5083
|
+
* @summary Phone_numbers Update
|
|
5084
|
+
* @param {string} phoneNumberId
|
|
5085
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5086
|
+
* @param {*} [options] Override http request option.
|
|
5087
|
+
* @throws {RequiredError}
|
|
5088
|
+
*/
|
|
5089
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersUpdate>>;
|
|
3674
5090
|
};
|
|
3675
5091
|
/**
|
|
3676
5092
|
* PhoneNumbersApi - factory interface
|
|
@@ -3694,6 +5110,15 @@ declare const PhoneNumbersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3694
5110
|
* @throws {RequiredError}
|
|
3695
5111
|
*/
|
|
3696
5112
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5113
|
+
/**
|
|
5114
|
+
*
|
|
5115
|
+
* @summary Phone_numbers Update
|
|
5116
|
+
* @param {string} phoneNumberId
|
|
5117
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5118
|
+
* @param {*} [options] Override http request option.
|
|
5119
|
+
* @throws {RequiredError}
|
|
5120
|
+
*/
|
|
5121
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersUpdate>;
|
|
3697
5122
|
};
|
|
3698
5123
|
/**
|
|
3699
5124
|
* PhoneNumbersApi - object-oriented interface
|
|
@@ -3721,6 +5146,16 @@ declare class PhoneNumbersApi extends BaseAPI {
|
|
|
3721
5146
|
* @memberof PhoneNumbersApi
|
|
3722
5147
|
*/
|
|
3723
5148
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5149
|
+
/**
|
|
5150
|
+
*
|
|
5151
|
+
* @summary Phone_numbers Update
|
|
5152
|
+
* @param {string} phoneNumberId
|
|
5153
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5154
|
+
* @param {*} [options] Override http request option.
|
|
5155
|
+
* @throws {RequiredError}
|
|
5156
|
+
* @memberof PhoneNumbersApi
|
|
5157
|
+
*/
|
|
5158
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersUpdate, any>>;
|
|
3724
5159
|
}
|
|
3725
5160
|
/**
|
|
3726
5161
|
* ReservationsApi - axios parameter creator
|
|
@@ -3730,11 +5165,17 @@ declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3730
5165
|
/**
|
|
3731
5166
|
*
|
|
3732
5167
|
* @summary Reservations List
|
|
3733
|
-
* @param {string} [
|
|
5168
|
+
* @param {string | null} [searchString]
|
|
5169
|
+
* @param {string | null} [contactId]
|
|
5170
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5171
|
+
* @param {number} [limit]
|
|
5172
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5173
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5174
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3734
5175
|
* @param {*} [options] Override http request option.
|
|
3735
5176
|
* @throws {RequiredError}
|
|
3736
5177
|
*/
|
|
3737
|
-
reservationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5178
|
+
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3738
5179
|
};
|
|
3739
5180
|
/**
|
|
3740
5181
|
* ReservationsApi - functional programming interface
|
|
@@ -3744,11 +5185,17 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
3744
5185
|
/**
|
|
3745
5186
|
*
|
|
3746
5187
|
* @summary Reservations List
|
|
3747
|
-
* @param {string} [
|
|
5188
|
+
* @param {string | null} [searchString]
|
|
5189
|
+
* @param {string | null} [contactId]
|
|
5190
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5191
|
+
* @param {number} [limit]
|
|
5192
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5193
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5194
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3748
5195
|
* @param {*} [options] Override http request option.
|
|
3749
5196
|
* @throws {RequiredError}
|
|
3750
5197
|
*/
|
|
3751
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5198
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseReservations>>;
|
|
3752
5199
|
};
|
|
3753
5200
|
/**
|
|
3754
5201
|
* ReservationsApi - factory interface
|
|
@@ -3758,11 +5205,17 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3758
5205
|
/**
|
|
3759
5206
|
*
|
|
3760
5207
|
* @summary Reservations List
|
|
3761
|
-
* @param {string} [
|
|
5208
|
+
* @param {string | null} [searchString]
|
|
5209
|
+
* @param {string | null} [contactId]
|
|
5210
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5211
|
+
* @param {number} [limit]
|
|
5212
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5213
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5214
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3762
5215
|
* @param {*} [options] Override http request option.
|
|
3763
5216
|
* @throws {RequiredError}
|
|
3764
5217
|
*/
|
|
3765
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5218
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseReservations>;
|
|
3766
5219
|
};
|
|
3767
5220
|
/**
|
|
3768
5221
|
* ReservationsApi - object-oriented interface
|
|
@@ -3774,12 +5227,18 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
3774
5227
|
/**
|
|
3775
5228
|
*
|
|
3776
5229
|
* @summary Reservations List
|
|
3777
|
-
* @param {string} [
|
|
5230
|
+
* @param {string | null} [searchString]
|
|
5231
|
+
* @param {string | null} [contactId]
|
|
5232
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5233
|
+
* @param {number} [limit]
|
|
5234
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5235
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5236
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3778
5237
|
* @param {*} [options] Override http request option.
|
|
3779
5238
|
* @throws {RequiredError}
|
|
3780
5239
|
* @memberof ReservationsApi
|
|
3781
5240
|
*/
|
|
3782
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5241
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseReservations, any>>;
|
|
3783
5242
|
}
|
|
3784
5243
|
/**
|
|
3785
5244
|
* UnboundApi - axios parameter creator
|
|
@@ -3914,11 +5373,17 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3914
5373
|
/**
|
|
3915
5374
|
* List all conversations, optionally filtered by contact_id
|
|
3916
5375
|
* @summary Conversations List
|
|
3917
|
-
* @param {string} [
|
|
5376
|
+
* @param {string | null} [searchString]
|
|
5377
|
+
* @param {string | null} [contactId]
|
|
5378
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5379
|
+
* @param {number} [limit]
|
|
5380
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5381
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5382
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3918
5383
|
* @param {*} [options] Override http request option.
|
|
3919
5384
|
* @throws {RequiredError}
|
|
3920
5385
|
*/
|
|
3921
|
-
conversationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5386
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3922
5387
|
/**
|
|
3923
5388
|
*
|
|
3924
5389
|
* @summary Conversations Update
|
|
@@ -3945,6 +5410,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3945
5410
|
* @throws {RequiredError}
|
|
3946
5411
|
*/
|
|
3947
5412
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5413
|
+
/**
|
|
5414
|
+
*
|
|
5415
|
+
* @summary Emails Update
|
|
5416
|
+
* @param {string} emailId
|
|
5417
|
+
* @param {EmailUpdate} emailUpdate
|
|
5418
|
+
* @param {*} [options] Override http request option.
|
|
5419
|
+
* @throws {RequiredError}
|
|
5420
|
+
*/
|
|
5421
|
+
emailsUpdate: (emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3948
5422
|
/**
|
|
3949
5423
|
* List all listings
|
|
3950
5424
|
* @summary Inquiries List
|
|
@@ -3954,13 +5428,27 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3954
5428
|
*/
|
|
3955
5429
|
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3956
5430
|
/**
|
|
3957
|
-
*
|
|
5431
|
+
*
|
|
5432
|
+
* @summary Listings Get
|
|
5433
|
+
* @param {string} listingId
|
|
5434
|
+
* @param {*} [options] Override http request option.
|
|
5435
|
+
* @throws {RequiredError}
|
|
5436
|
+
*/
|
|
5437
|
+
listingsGet: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5438
|
+
/**
|
|
5439
|
+
*
|
|
3958
5440
|
* @summary Listings List
|
|
3959
|
-
* @param {string} [
|
|
5441
|
+
* @param {string | null} [searchString]
|
|
5442
|
+
* @param {string | null} [contactId]
|
|
5443
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5444
|
+
* @param {number} [limit]
|
|
5445
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5446
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
5447
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3960
5448
|
* @param {*} [options] Override http request option.
|
|
3961
5449
|
* @throws {RequiredError}
|
|
3962
5450
|
*/
|
|
3963
|
-
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5451
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3964
5452
|
/**
|
|
3965
5453
|
*
|
|
3966
5454
|
* @summary Managed_phone_numbers List
|
|
@@ -3968,6 +5456,38 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3968
5456
|
* @throws {RequiredError}
|
|
3969
5457
|
*/
|
|
3970
5458
|
managedPhoneNumbersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5459
|
+
/**
|
|
5460
|
+
*
|
|
5461
|
+
* @summary Messages Create
|
|
5462
|
+
* @param {string} conversationId
|
|
5463
|
+
* @param {MessageCreate} messageCreate
|
|
5464
|
+
* @param {*} [options] Override http request option.
|
|
5465
|
+
* @throws {RequiredError}
|
|
5466
|
+
*/
|
|
5467
|
+
messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5468
|
+
/**
|
|
5469
|
+
*
|
|
5470
|
+
* @summary Messages Get
|
|
5471
|
+
* @param {string} messageId
|
|
5472
|
+
* @param {*} [options] Override http request option.
|
|
5473
|
+
* @throws {RequiredError}
|
|
5474
|
+
*/
|
|
5475
|
+
messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5476
|
+
/**
|
|
5477
|
+
*
|
|
5478
|
+
* @summary Messages List
|
|
5479
|
+
* @param {string | null} [searchString]
|
|
5480
|
+
* @param {string | null} [contactId]
|
|
5481
|
+
* @param {string | null} [conversationId]
|
|
5482
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5483
|
+
* @param {number} [limit]
|
|
5484
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5485
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
5486
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5487
|
+
* @param {*} [options] Override http request option.
|
|
5488
|
+
* @throws {RequiredError}
|
|
5489
|
+
*/
|
|
5490
|
+
messagesList: (searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3971
5491
|
/**
|
|
3972
5492
|
*
|
|
3973
5493
|
* @summary Phone_numbers Create
|
|
@@ -3985,14 +5505,29 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3985
5505
|
* @throws {RequiredError}
|
|
3986
5506
|
*/
|
|
3987
5507
|
phoneNumbersDelete: (phoneNumberId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5508
|
+
/**
|
|
5509
|
+
*
|
|
5510
|
+
* @summary Phone_numbers Update
|
|
5511
|
+
* @param {string} phoneNumberId
|
|
5512
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5513
|
+
* @param {*} [options] Override http request option.
|
|
5514
|
+
* @throws {RequiredError}
|
|
5515
|
+
*/
|
|
5516
|
+
phoneNumbersUpdate: (phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3988
5517
|
/**
|
|
3989
5518
|
*
|
|
3990
5519
|
* @summary Reservations List
|
|
3991
|
-
* @param {string} [
|
|
5520
|
+
* @param {string | null} [searchString]
|
|
5521
|
+
* @param {string | null} [contactId]
|
|
5522
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5523
|
+
* @param {number} [limit]
|
|
5524
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5525
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5526
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3992
5527
|
* @param {*} [options] Override http request option.
|
|
3993
5528
|
* @throws {RequiredError}
|
|
3994
5529
|
*/
|
|
3995
|
-
reservationsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5530
|
+
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3996
5531
|
/**
|
|
3997
5532
|
*
|
|
3998
5533
|
* @summary Unifiedwebhook
|
|
@@ -4135,11 +5670,17 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4135
5670
|
/**
|
|
4136
5671
|
* List all conversations, optionally filtered by contact_id
|
|
4137
5672
|
* @summary Conversations List
|
|
4138
|
-
* @param {string} [
|
|
5673
|
+
* @param {string | null} [searchString]
|
|
5674
|
+
* @param {string | null} [contactId]
|
|
5675
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5676
|
+
* @param {number} [limit]
|
|
5677
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5678
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5679
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4139
5680
|
* @param {*} [options] Override http request option.
|
|
4140
5681
|
* @throws {RequiredError}
|
|
4141
5682
|
*/
|
|
4142
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5683
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversations>>;
|
|
4143
5684
|
/**
|
|
4144
5685
|
*
|
|
4145
5686
|
* @summary Conversations Update
|
|
@@ -4166,6 +5707,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4166
5707
|
* @throws {RequiredError}
|
|
4167
5708
|
*/
|
|
4168
5709
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5710
|
+
/**
|
|
5711
|
+
*
|
|
5712
|
+
* @summary Emails Update
|
|
5713
|
+
* @param {string} emailId
|
|
5714
|
+
* @param {EmailUpdate} emailUpdate
|
|
5715
|
+
* @param {*} [options] Override http request option.
|
|
5716
|
+
* @throws {RequiredError}
|
|
5717
|
+
*/
|
|
5718
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsUpdate>>;
|
|
4169
5719
|
/**
|
|
4170
5720
|
* List all listings
|
|
4171
5721
|
* @summary Inquiries List
|
|
@@ -4175,13 +5725,27 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4175
5725
|
*/
|
|
4176
5726
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
4177
5727
|
/**
|
|
4178
|
-
*
|
|
5728
|
+
*
|
|
5729
|
+
* @summary Listings Get
|
|
5730
|
+
* @param {string} listingId
|
|
5731
|
+
* @param {*} [options] Override http request option.
|
|
5732
|
+
* @throws {RequiredError}
|
|
5733
|
+
*/
|
|
5734
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListingsGet>>;
|
|
5735
|
+
/**
|
|
5736
|
+
*
|
|
4179
5737
|
* @summary Listings List
|
|
4180
|
-
* @param {string} [
|
|
5738
|
+
* @param {string | null} [searchString]
|
|
5739
|
+
* @param {string | null} [contactId]
|
|
5740
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5741
|
+
* @param {number} [limit]
|
|
5742
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5743
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
5744
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4181
5745
|
* @param {*} [options] Override http request option.
|
|
4182
5746
|
* @throws {RequiredError}
|
|
4183
5747
|
*/
|
|
4184
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5748
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListings>>;
|
|
4185
5749
|
/**
|
|
4186
5750
|
*
|
|
4187
5751
|
* @summary Managed_phone_numbers List
|
|
@@ -4189,6 +5753,38 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4189
5753
|
* @throws {RequiredError}
|
|
4190
5754
|
*/
|
|
4191
5755
|
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseManagedPhoneNumbersList>>;
|
|
5756
|
+
/**
|
|
5757
|
+
*
|
|
5758
|
+
* @summary Messages Create
|
|
5759
|
+
* @param {string} conversationId
|
|
5760
|
+
* @param {MessageCreate} messageCreate
|
|
5761
|
+
* @param {*} [options] Override http request option.
|
|
5762
|
+
* @throws {RequiredError}
|
|
5763
|
+
*/
|
|
5764
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesCreate>>;
|
|
5765
|
+
/**
|
|
5766
|
+
*
|
|
5767
|
+
* @summary Messages Get
|
|
5768
|
+
* @param {string} messageId
|
|
5769
|
+
* @param {*} [options] Override http request option.
|
|
5770
|
+
* @throws {RequiredError}
|
|
5771
|
+
*/
|
|
5772
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesGet>>;
|
|
5773
|
+
/**
|
|
5774
|
+
*
|
|
5775
|
+
* @summary Messages List
|
|
5776
|
+
* @param {string | null} [searchString]
|
|
5777
|
+
* @param {string | null} [contactId]
|
|
5778
|
+
* @param {string | null} [conversationId]
|
|
5779
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5780
|
+
* @param {number} [limit]
|
|
5781
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5782
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
5783
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5784
|
+
* @param {*} [options] Override http request option.
|
|
5785
|
+
* @throws {RequiredError}
|
|
5786
|
+
*/
|
|
5787
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessages>>;
|
|
4192
5788
|
/**
|
|
4193
5789
|
*
|
|
4194
5790
|
* @summary Phone_numbers Create
|
|
@@ -4206,14 +5802,29 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4206
5802
|
* @throws {RequiredError}
|
|
4207
5803
|
*/
|
|
4208
5804
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5805
|
+
/**
|
|
5806
|
+
*
|
|
5807
|
+
* @summary Phone_numbers Update
|
|
5808
|
+
* @param {string} phoneNumberId
|
|
5809
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
5810
|
+
* @param {*} [options] Override http request option.
|
|
5811
|
+
* @throws {RequiredError}
|
|
5812
|
+
*/
|
|
5813
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersUpdate>>;
|
|
4209
5814
|
/**
|
|
4210
5815
|
*
|
|
4211
5816
|
* @summary Reservations List
|
|
4212
|
-
* @param {string} [
|
|
5817
|
+
* @param {string | null} [searchString]
|
|
5818
|
+
* @param {string | null} [contactId]
|
|
5819
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5820
|
+
* @param {number} [limit]
|
|
5821
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5822
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
5823
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4213
5824
|
* @param {*} [options] Override http request option.
|
|
4214
5825
|
* @throws {RequiredError}
|
|
4215
5826
|
*/
|
|
4216
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5827
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseReservations>>;
|
|
4217
5828
|
/**
|
|
4218
5829
|
*
|
|
4219
5830
|
* @summary Unifiedwebhook
|
|
@@ -4356,11 +5967,17 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4356
5967
|
/**
|
|
4357
5968
|
* List all conversations, optionally filtered by contact_id
|
|
4358
5969
|
* @summary Conversations List
|
|
4359
|
-
* @param {string} [
|
|
5970
|
+
* @param {string | null} [searchString]
|
|
5971
|
+
* @param {string | null} [contactId]
|
|
5972
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5973
|
+
* @param {number} [limit]
|
|
5974
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5975
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5976
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4360
5977
|
* @param {*} [options] Override http request option.
|
|
4361
5978
|
* @throws {RequiredError}
|
|
4362
5979
|
*/
|
|
4363
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5980
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversations>;
|
|
4364
5981
|
/**
|
|
4365
5982
|
*
|
|
4366
5983
|
* @summary Conversations Update
|
|
@@ -4387,6 +6004,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4387
6004
|
* @throws {RequiredError}
|
|
4388
6005
|
*/
|
|
4389
6006
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6007
|
+
/**
|
|
6008
|
+
*
|
|
6009
|
+
* @summary Emails Update
|
|
6010
|
+
* @param {string} emailId
|
|
6011
|
+
* @param {EmailUpdate} emailUpdate
|
|
6012
|
+
* @param {*} [options] Override http request option.
|
|
6013
|
+
* @throws {RequiredError}
|
|
6014
|
+
*/
|
|
6015
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsUpdate>;
|
|
4390
6016
|
/**
|
|
4391
6017
|
* List all listings
|
|
4392
6018
|
* @summary Inquiries List
|
|
@@ -4396,13 +6022,27 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4396
6022
|
*/
|
|
4397
6023
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
4398
6024
|
/**
|
|
4399
|
-
*
|
|
6025
|
+
*
|
|
6026
|
+
* @summary Listings Get
|
|
6027
|
+
* @param {string} listingId
|
|
6028
|
+
* @param {*} [options] Override http request option.
|
|
6029
|
+
* @throws {RequiredError}
|
|
6030
|
+
*/
|
|
6031
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<ListingsGet>;
|
|
6032
|
+
/**
|
|
6033
|
+
*
|
|
4400
6034
|
* @summary Listings List
|
|
4401
|
-
* @param {string} [
|
|
6035
|
+
* @param {string | null} [searchString]
|
|
6036
|
+
* @param {string | null} [contactId]
|
|
6037
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6038
|
+
* @param {number} [limit]
|
|
6039
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6040
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
6041
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4402
6042
|
* @param {*} [options] Override http request option.
|
|
4403
6043
|
* @throws {RequiredError}
|
|
4404
6044
|
*/
|
|
4405
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6045
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListings>;
|
|
4406
6046
|
/**
|
|
4407
6047
|
*
|
|
4408
6048
|
* @summary Managed_phone_numbers List
|
|
@@ -4410,6 +6050,38 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4410
6050
|
* @throws {RequiredError}
|
|
4411
6051
|
*/
|
|
4412
6052
|
managedPhoneNumbersList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseManagedPhoneNumbersList>;
|
|
6053
|
+
/**
|
|
6054
|
+
*
|
|
6055
|
+
* @summary Messages Create
|
|
6056
|
+
* @param {string} conversationId
|
|
6057
|
+
* @param {MessageCreate} messageCreate
|
|
6058
|
+
* @param {*} [options] Override http request option.
|
|
6059
|
+
* @throws {RequiredError}
|
|
6060
|
+
*/
|
|
6061
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<MessagesCreate>;
|
|
6062
|
+
/**
|
|
6063
|
+
*
|
|
6064
|
+
* @summary Messages Get
|
|
6065
|
+
* @param {string} messageId
|
|
6066
|
+
* @param {*} [options] Override http request option.
|
|
6067
|
+
* @throws {RequiredError}
|
|
6068
|
+
*/
|
|
6069
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<MessagesGet>;
|
|
6070
|
+
/**
|
|
6071
|
+
*
|
|
6072
|
+
* @summary Messages List
|
|
6073
|
+
* @param {string | null} [searchString]
|
|
6074
|
+
* @param {string | null} [contactId]
|
|
6075
|
+
* @param {string | null} [conversationId]
|
|
6076
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6077
|
+
* @param {number} [limit]
|
|
6078
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6079
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
6080
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6081
|
+
* @param {*} [options] Override http request option.
|
|
6082
|
+
* @throws {RequiredError}
|
|
6083
|
+
*/
|
|
6084
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessages>;
|
|
4413
6085
|
/**
|
|
4414
6086
|
*
|
|
4415
6087
|
* @summary Phone_numbers Create
|
|
@@ -4427,14 +6099,29 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4427
6099
|
* @throws {RequiredError}
|
|
4428
6100
|
*/
|
|
4429
6101
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6102
|
+
/**
|
|
6103
|
+
*
|
|
6104
|
+
* @summary Phone_numbers Update
|
|
6105
|
+
* @param {string} phoneNumberId
|
|
6106
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
6107
|
+
* @param {*} [options] Override http request option.
|
|
6108
|
+
* @throws {RequiredError}
|
|
6109
|
+
*/
|
|
6110
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersUpdate>;
|
|
4430
6111
|
/**
|
|
4431
6112
|
*
|
|
4432
6113
|
* @summary Reservations List
|
|
4433
|
-
* @param {string} [
|
|
6114
|
+
* @param {string | null} [searchString]
|
|
6115
|
+
* @param {string | null} [contactId]
|
|
6116
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6117
|
+
* @param {number} [limit]
|
|
6118
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6119
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
6120
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4434
6121
|
* @param {*} [options] Override http request option.
|
|
4435
6122
|
* @throws {RequiredError}
|
|
4436
6123
|
*/
|
|
4437
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6124
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseReservations>;
|
|
4438
6125
|
/**
|
|
4439
6126
|
*
|
|
4440
6127
|
* @summary Unifiedwebhook
|
|
@@ -4593,12 +6280,18 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4593
6280
|
/**
|
|
4594
6281
|
* List all conversations, optionally filtered by contact_id
|
|
4595
6282
|
* @summary Conversations List
|
|
4596
|
-
* @param {string} [
|
|
6283
|
+
* @param {string | null} [searchString]
|
|
6284
|
+
* @param {string | null} [contactId]
|
|
6285
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6286
|
+
* @param {number} [limit]
|
|
6287
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6288
|
+
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
6289
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4597
6290
|
* @param {*} [options] Override http request option.
|
|
4598
6291
|
* @throws {RequiredError}
|
|
4599
6292
|
* @memberof UnboundApi
|
|
4600
6293
|
*/
|
|
4601
|
-
conversationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6294
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversations, any>>;
|
|
4602
6295
|
/**
|
|
4603
6296
|
*
|
|
4604
6297
|
* @summary Conversations Update
|
|
@@ -4628,6 +6321,16 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4628
6321
|
* @memberof UnboundApi
|
|
4629
6322
|
*/
|
|
4630
6323
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6324
|
+
/**
|
|
6325
|
+
*
|
|
6326
|
+
* @summary Emails Update
|
|
6327
|
+
* @param {string} emailId
|
|
6328
|
+
* @param {EmailUpdate} emailUpdate
|
|
6329
|
+
* @param {*} [options] Override http request option.
|
|
6330
|
+
* @throws {RequiredError}
|
|
6331
|
+
* @memberof UnboundApi
|
|
6332
|
+
*/
|
|
6333
|
+
emailsUpdate(emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsUpdate, any>>;
|
|
4631
6334
|
/**
|
|
4632
6335
|
* List all listings
|
|
4633
6336
|
* @summary Inquiries List
|
|
@@ -4638,14 +6341,29 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4638
6341
|
*/
|
|
4639
6342
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
4640
6343
|
/**
|
|
4641
|
-
*
|
|
6344
|
+
*
|
|
6345
|
+
* @summary Listings Get
|
|
6346
|
+
* @param {string} listingId
|
|
6347
|
+
* @param {*} [options] Override http request option.
|
|
6348
|
+
* @throws {RequiredError}
|
|
6349
|
+
* @memberof UnboundApi
|
|
6350
|
+
*/
|
|
6351
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListingsGet, any>>;
|
|
6352
|
+
/**
|
|
6353
|
+
*
|
|
4642
6354
|
* @summary Listings List
|
|
4643
|
-
* @param {string} [
|
|
6355
|
+
* @param {string | null} [searchString]
|
|
6356
|
+
* @param {string | null} [contactId]
|
|
6357
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6358
|
+
* @param {number} [limit]
|
|
6359
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6360
|
+
* @param {ListingSortBy} [sortBy] Sort key
|
|
6361
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4644
6362
|
* @param {*} [options] Override http request option.
|
|
4645
6363
|
* @throws {RequiredError}
|
|
4646
6364
|
* @memberof UnboundApi
|
|
4647
6365
|
*/
|
|
4648
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6366
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ListingSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListings, any>>;
|
|
4649
6367
|
/**
|
|
4650
6368
|
*
|
|
4651
6369
|
* @summary Managed_phone_numbers List
|
|
@@ -4654,6 +6372,41 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4654
6372
|
* @memberof UnboundApi
|
|
4655
6373
|
*/
|
|
4656
6374
|
managedPhoneNumbersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseManagedPhoneNumbersList, any>>;
|
|
6375
|
+
/**
|
|
6376
|
+
*
|
|
6377
|
+
* @summary Messages Create
|
|
6378
|
+
* @param {string} conversationId
|
|
6379
|
+
* @param {MessageCreate} messageCreate
|
|
6380
|
+
* @param {*} [options] Override http request option.
|
|
6381
|
+
* @throws {RequiredError}
|
|
6382
|
+
* @memberof UnboundApi
|
|
6383
|
+
*/
|
|
6384
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesCreate, any>>;
|
|
6385
|
+
/**
|
|
6386
|
+
*
|
|
6387
|
+
* @summary Messages Get
|
|
6388
|
+
* @param {string} messageId
|
|
6389
|
+
* @param {*} [options] Override http request option.
|
|
6390
|
+
* @throws {RequiredError}
|
|
6391
|
+
* @memberof UnboundApi
|
|
6392
|
+
*/
|
|
6393
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesGet, any>>;
|
|
6394
|
+
/**
|
|
6395
|
+
*
|
|
6396
|
+
* @summary Messages List
|
|
6397
|
+
* @param {string | null} [searchString]
|
|
6398
|
+
* @param {string | null} [contactId]
|
|
6399
|
+
* @param {string | null} [conversationId]
|
|
6400
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6401
|
+
* @param {number} [limit]
|
|
6402
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6403
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy} [sortBy] Sort key
|
|
6404
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6405
|
+
* @param {*} [options] Override http request option.
|
|
6406
|
+
* @throws {RequiredError}
|
|
6407
|
+
* @memberof UnboundApi
|
|
6408
|
+
*/
|
|
6409
|
+
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessages, any>>;
|
|
4657
6410
|
/**
|
|
4658
6411
|
*
|
|
4659
6412
|
* @summary Phone_numbers Create
|
|
@@ -4673,15 +6426,31 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4673
6426
|
* @memberof UnboundApi
|
|
4674
6427
|
*/
|
|
4675
6428
|
phoneNumbersDelete(phoneNumberId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6429
|
+
/**
|
|
6430
|
+
*
|
|
6431
|
+
* @summary Phone_numbers Update
|
|
6432
|
+
* @param {string} phoneNumberId
|
|
6433
|
+
* @param {PhoneNumberUpdate} phoneNumberUpdate
|
|
6434
|
+
* @param {*} [options] Override http request option.
|
|
6435
|
+
* @throws {RequiredError}
|
|
6436
|
+
* @memberof UnboundApi
|
|
6437
|
+
*/
|
|
6438
|
+
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersUpdate, any>>;
|
|
4676
6439
|
/**
|
|
4677
6440
|
*
|
|
4678
6441
|
* @summary Reservations List
|
|
4679
|
-
* @param {string} [
|
|
6442
|
+
* @param {string | null} [searchString]
|
|
6443
|
+
* @param {string | null} [contactId]
|
|
6444
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6445
|
+
* @param {number} [limit]
|
|
6446
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6447
|
+
* @param {SrcResourceModelsReservationsModelReservationBaseModelSortBy} [sortBy] Sort key
|
|
6448
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4680
6449
|
* @param {*} [options] Override http request option.
|
|
4681
6450
|
* @throws {RequiredError}
|
|
4682
6451
|
* @memberof UnboundApi
|
|
4683
6452
|
*/
|
|
4684
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6453
|
+
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseReservations, any>>;
|
|
4685
6454
|
/**
|
|
4686
6455
|
*
|
|
4687
6456
|
* @summary Unifiedwebhook
|
|
@@ -4693,4 +6462,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4693
6462
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
4694
6463
|
}
|
|
4695
6464
|
|
|
4696
|
-
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type
|
|
6465
|
+
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, ContactSortBy, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type ConversationCreate, ConversationStatus, type ConversationUpdate, type Conversations, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type ConversationsCreate, type ConversationsGet, type ConversationsUpdate, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, type EmailUpdate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type EmailsUpdate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAccountsList, type ListResponseInquiriesList, type ListResponseManagedPhoneNumbersList, ListingSortBy, type Listings, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsGet, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type ManagedPhoneNumbersList, type MessageCreate, MessageDirection, MessageStatus, type Messages, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type MessagesCreate, type MessagesGet, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseContacts, type PaginatedResponseConversations, type PaginatedResponseListings, type PaginatedResponseMessages, type PaginatedResponseReservations, PaginationDirection, type PhoneApi, type PhoneNumberCreate, type PhoneNumberUpdate, PhoneNumbersApi, PhoneNumbersApiAxiosParamCreator, PhoneNumbersApiFactory, PhoneNumbersApiFp, type PhoneNumbersCreate, type PhoneNumbersUpdate, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type Reservations, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|