@ember-home/unbound-ts-client 0.0.25 → 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 +1852 -420
- package/dist/index.d.ts +1852 -420
- package/dist/index.js +1373 -208
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1290 -125
- 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
|
*
|
|
@@ -1332,16 +1337,28 @@ interface ContactsUpdate {
|
|
|
1332
1337
|
interface ConversationCreate {
|
|
1333
1338
|
/**
|
|
1334
1339
|
*
|
|
1335
|
-
* @type {
|
|
1340
|
+
* @type {string}
|
|
1336
1341
|
* @memberof ConversationCreate
|
|
1337
1342
|
*/
|
|
1338
|
-
'
|
|
1343
|
+
'providerUpdatedAt': string;
|
|
1339
1344
|
/**
|
|
1340
1345
|
*
|
|
1341
1346
|
* @type {ConversationStatus}
|
|
1342
1347
|
* @memberof ConversationCreate
|
|
1343
1348
|
*/
|
|
1344
1349
|
'status': ConversationStatus;
|
|
1350
|
+
/**
|
|
1351
|
+
*
|
|
1352
|
+
* @type {Conversationtypedata}
|
|
1353
|
+
* @memberof ConversationCreate
|
|
1354
|
+
*/
|
|
1355
|
+
'conversationTypeData': Conversationtypedata;
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {string}
|
|
1359
|
+
* @memberof ConversationCreate
|
|
1360
|
+
*/
|
|
1361
|
+
'providerConversationId': string;
|
|
1345
1362
|
}
|
|
1346
1363
|
/**
|
|
1347
1364
|
*
|
|
@@ -1359,6 +1376,18 @@ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationSta
|
|
|
1359
1376
|
* @interface ConversationUpdate
|
|
1360
1377
|
*/
|
|
1361
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;
|
|
1362
1391
|
/**
|
|
1363
1392
|
*
|
|
1364
1393
|
* @type {Conversationtypedata1}
|
|
@@ -1367,193 +1396,181 @@ interface ConversationUpdate {
|
|
|
1367
1396
|
'conversationTypeData': Conversationtypedata1;
|
|
1368
1397
|
/**
|
|
1369
1398
|
*
|
|
1370
|
-
* @type {
|
|
1399
|
+
* @type {string}
|
|
1400
|
+
* @memberof ConversationUpdate
|
|
1401
|
+
*/
|
|
1402
|
+
'updatedBy': string;
|
|
1403
|
+
/**
|
|
1404
|
+
*
|
|
1405
|
+
* @type {string}
|
|
1371
1406
|
* @memberof ConversationUpdate
|
|
1372
1407
|
*/
|
|
1373
|
-
'
|
|
1408
|
+
'lastReadMessageId'?: string | null;
|
|
1374
1409
|
}
|
|
1375
1410
|
/**
|
|
1376
1411
|
*
|
|
1377
1412
|
* @export
|
|
1378
|
-
* @interface
|
|
1413
|
+
* @interface Conversations
|
|
1379
1414
|
*/
|
|
1380
|
-
interface
|
|
1415
|
+
interface Conversations {
|
|
1381
1416
|
/**
|
|
1382
1417
|
*
|
|
1383
|
-
* @type {
|
|
1384
|
-
* @memberof
|
|
1418
|
+
* @type {ConversationStatus}
|
|
1419
|
+
* @memberof Conversations
|
|
1385
1420
|
*/
|
|
1386
|
-
'
|
|
1421
|
+
'status': ConversationStatus;
|
|
1387
1422
|
/**
|
|
1388
1423
|
*
|
|
1389
|
-
* @type {
|
|
1390
|
-
* @memberof
|
|
1424
|
+
* @type {string}
|
|
1425
|
+
* @memberof Conversations
|
|
1391
1426
|
*/
|
|
1392
|
-
'
|
|
1427
|
+
'conversationId': string;
|
|
1393
1428
|
/**
|
|
1394
1429
|
*
|
|
1395
1430
|
* @type {string}
|
|
1396
|
-
* @memberof
|
|
1431
|
+
* @memberof Conversations
|
|
1397
1432
|
*/
|
|
1398
1433
|
'createdAt': string;
|
|
1399
1434
|
/**
|
|
1400
1435
|
*
|
|
1401
1436
|
* @type {string}
|
|
1402
|
-
* @memberof
|
|
1437
|
+
* @memberof Conversations
|
|
1403
1438
|
*/
|
|
1404
1439
|
'updatedAt': string;
|
|
1405
1440
|
/**
|
|
1406
1441
|
*
|
|
1407
1442
|
* @type {string}
|
|
1408
|
-
* @memberof
|
|
1409
|
-
*/
|
|
1410
|
-
'createdBy': string;
|
|
1411
|
-
/**
|
|
1412
|
-
*
|
|
1413
|
-
* @type {string}
|
|
1414
|
-
* @memberof ConversationsCreate
|
|
1443
|
+
* @memberof Conversations
|
|
1415
1444
|
*/
|
|
1416
|
-
'
|
|
1445
|
+
'lastMessageAt'?: string | null;
|
|
1417
1446
|
/**
|
|
1418
1447
|
*
|
|
1419
1448
|
* @type {string}
|
|
1420
|
-
* @memberof
|
|
1449
|
+
* @memberof Conversations
|
|
1421
1450
|
*/
|
|
1422
|
-
'
|
|
1451
|
+
'lastReadMessageId'?: string | null;
|
|
1423
1452
|
/**
|
|
1424
1453
|
*
|
|
1425
1454
|
* @type {number}
|
|
1426
|
-
* @memberof
|
|
1455
|
+
* @memberof Conversations
|
|
1427
1456
|
*/
|
|
1428
1457
|
'unreadCount': number;
|
|
1429
1458
|
/**
|
|
1430
1459
|
*
|
|
1431
|
-
* @type {
|
|
1432
|
-
* @memberof
|
|
1460
|
+
* @type {string}
|
|
1461
|
+
* @memberof Conversations
|
|
1433
1462
|
*/
|
|
1434
|
-
'
|
|
1463
|
+
'providerInstance': string;
|
|
1435
1464
|
}
|
|
1436
1465
|
/**
|
|
1437
1466
|
*
|
|
1438
1467
|
* @export
|
|
1439
|
-
* @interface
|
|
1468
|
+
* @interface ConversationsCreate
|
|
1440
1469
|
*/
|
|
1441
|
-
interface
|
|
1470
|
+
interface ConversationsCreate {
|
|
1442
1471
|
/**
|
|
1443
1472
|
*
|
|
1444
|
-
* @type {
|
|
1445
|
-
* @memberof
|
|
1473
|
+
* @type {ConversationStatus}
|
|
1474
|
+
* @memberof ConversationsCreate
|
|
1446
1475
|
*/
|
|
1447
|
-
'
|
|
1476
|
+
'status': ConversationStatus;
|
|
1448
1477
|
/**
|
|
1449
1478
|
*
|
|
1450
|
-
* @type {
|
|
1451
|
-
* @memberof
|
|
1479
|
+
* @type {string}
|
|
1480
|
+
* @memberof ConversationsCreate
|
|
1452
1481
|
*/
|
|
1453
|
-
'
|
|
1482
|
+
'conversationId': string;
|
|
1454
1483
|
/**
|
|
1455
1484
|
*
|
|
1456
1485
|
* @type {string}
|
|
1457
|
-
* @memberof
|
|
1486
|
+
* @memberof ConversationsCreate
|
|
1458
1487
|
*/
|
|
1459
1488
|
'createdAt': string;
|
|
1460
1489
|
/**
|
|
1461
1490
|
*
|
|
1462
1491
|
* @type {string}
|
|
1463
|
-
* @memberof
|
|
1492
|
+
* @memberof ConversationsCreate
|
|
1464
1493
|
*/
|
|
1465
1494
|
'updatedAt': string;
|
|
1466
1495
|
/**
|
|
1467
1496
|
*
|
|
1468
1497
|
* @type {string}
|
|
1469
|
-
* @memberof
|
|
1470
|
-
*/
|
|
1471
|
-
'createdBy': string;
|
|
1472
|
-
/**
|
|
1473
|
-
*
|
|
1474
|
-
* @type {string}
|
|
1475
|
-
* @memberof ConversationsGet
|
|
1498
|
+
* @memberof ConversationsCreate
|
|
1476
1499
|
*/
|
|
1477
|
-
'
|
|
1500
|
+
'lastMessageAt'?: string | null;
|
|
1478
1501
|
/**
|
|
1479
1502
|
*
|
|
1480
1503
|
* @type {string}
|
|
1481
|
-
* @memberof
|
|
1504
|
+
* @memberof ConversationsCreate
|
|
1482
1505
|
*/
|
|
1483
|
-
'
|
|
1506
|
+
'lastReadMessageId'?: string | null;
|
|
1484
1507
|
/**
|
|
1485
1508
|
*
|
|
1486
1509
|
* @type {number}
|
|
1487
|
-
* @memberof
|
|
1510
|
+
* @memberof ConversationsCreate
|
|
1488
1511
|
*/
|
|
1489
1512
|
'unreadCount': number;
|
|
1490
1513
|
/**
|
|
1491
1514
|
*
|
|
1492
|
-
* @type {
|
|
1493
|
-
* @memberof
|
|
1515
|
+
* @type {string}
|
|
1516
|
+
* @memberof ConversationsCreate
|
|
1494
1517
|
*/
|
|
1495
|
-
'
|
|
1518
|
+
'providerInstance': string;
|
|
1496
1519
|
}
|
|
1497
1520
|
/**
|
|
1498
1521
|
*
|
|
1499
1522
|
* @export
|
|
1500
|
-
* @interface
|
|
1523
|
+
* @interface ConversationsGet
|
|
1501
1524
|
*/
|
|
1502
|
-
interface
|
|
1525
|
+
interface ConversationsGet {
|
|
1503
1526
|
/**
|
|
1504
1527
|
*
|
|
1505
|
-
* @type {
|
|
1506
|
-
* @memberof
|
|
1528
|
+
* @type {ConversationStatus}
|
|
1529
|
+
* @memberof ConversationsGet
|
|
1507
1530
|
*/
|
|
1508
|
-
'
|
|
1531
|
+
'status': ConversationStatus;
|
|
1509
1532
|
/**
|
|
1510
1533
|
*
|
|
1511
|
-
* @type {
|
|
1512
|
-
* @memberof
|
|
1534
|
+
* @type {string}
|
|
1535
|
+
* @memberof ConversationsGet
|
|
1513
1536
|
*/
|
|
1514
|
-
'
|
|
1537
|
+
'conversationId': string;
|
|
1515
1538
|
/**
|
|
1516
1539
|
*
|
|
1517
1540
|
* @type {string}
|
|
1518
|
-
* @memberof
|
|
1541
|
+
* @memberof ConversationsGet
|
|
1519
1542
|
*/
|
|
1520
1543
|
'createdAt': string;
|
|
1521
1544
|
/**
|
|
1522
1545
|
*
|
|
1523
1546
|
* @type {string}
|
|
1524
|
-
* @memberof
|
|
1547
|
+
* @memberof ConversationsGet
|
|
1525
1548
|
*/
|
|
1526
1549
|
'updatedAt': string;
|
|
1527
1550
|
/**
|
|
1528
1551
|
*
|
|
1529
1552
|
* @type {string}
|
|
1530
|
-
* @memberof
|
|
1531
|
-
*/
|
|
1532
|
-
'createdBy': string;
|
|
1533
|
-
/**
|
|
1534
|
-
*
|
|
1535
|
-
* @type {string}
|
|
1536
|
-
* @memberof ConversationsList
|
|
1553
|
+
* @memberof ConversationsGet
|
|
1537
1554
|
*/
|
|
1538
|
-
'
|
|
1555
|
+
'lastMessageAt'?: string | null;
|
|
1539
1556
|
/**
|
|
1540
1557
|
*
|
|
1541
1558
|
* @type {string}
|
|
1542
|
-
* @memberof
|
|
1559
|
+
* @memberof ConversationsGet
|
|
1543
1560
|
*/
|
|
1544
|
-
'
|
|
1561
|
+
'lastReadMessageId'?: string | null;
|
|
1545
1562
|
/**
|
|
1546
1563
|
*
|
|
1547
1564
|
* @type {number}
|
|
1548
|
-
* @memberof
|
|
1565
|
+
* @memberof ConversationsGet
|
|
1549
1566
|
*/
|
|
1550
1567
|
'unreadCount': number;
|
|
1551
1568
|
/**
|
|
1552
1569
|
*
|
|
1553
|
-
* @type {
|
|
1554
|
-
* @memberof
|
|
1570
|
+
* @type {string}
|
|
1571
|
+
* @memberof ConversationsGet
|
|
1555
1572
|
*/
|
|
1556
|
-
'
|
|
1573
|
+
'providerInstance': string;
|
|
1557
1574
|
}
|
|
1558
1575
|
/**
|
|
1559
1576
|
*
|
|
@@ -1563,16 +1580,16 @@ interface ConversationsList {
|
|
|
1563
1580
|
interface ConversationsUpdate {
|
|
1564
1581
|
/**
|
|
1565
1582
|
*
|
|
1566
|
-
* @type {
|
|
1583
|
+
* @type {ConversationStatus}
|
|
1567
1584
|
* @memberof ConversationsUpdate
|
|
1568
1585
|
*/
|
|
1569
|
-
'
|
|
1586
|
+
'status': ConversationStatus;
|
|
1570
1587
|
/**
|
|
1571
1588
|
*
|
|
1572
|
-
* @type {
|
|
1589
|
+
* @type {string}
|
|
1573
1590
|
* @memberof ConversationsUpdate
|
|
1574
1591
|
*/
|
|
1575
|
-
'
|
|
1592
|
+
'conversationId': string;
|
|
1576
1593
|
/**
|
|
1577
1594
|
*
|
|
1578
1595
|
* @type {string}
|
|
@@ -1590,19 +1607,13 @@ interface ConversationsUpdate {
|
|
|
1590
1607
|
* @type {string}
|
|
1591
1608
|
* @memberof ConversationsUpdate
|
|
1592
1609
|
*/
|
|
1593
|
-
'
|
|
1594
|
-
/**
|
|
1595
|
-
*
|
|
1596
|
-
* @type {string}
|
|
1597
|
-
* @memberof ConversationsUpdate
|
|
1598
|
-
*/
|
|
1599
|
-
'updatedBy': string;
|
|
1610
|
+
'lastMessageAt'?: string | null;
|
|
1600
1611
|
/**
|
|
1601
1612
|
*
|
|
1602
1613
|
* @type {string}
|
|
1603
1614
|
* @memberof ConversationsUpdate
|
|
1604
1615
|
*/
|
|
1605
|
-
'
|
|
1616
|
+
'lastReadMessageId'?: string | null;
|
|
1606
1617
|
/**
|
|
1607
1618
|
*
|
|
1608
1619
|
* @type {number}
|
|
@@ -1611,10 +1622,10 @@ interface ConversationsUpdate {
|
|
|
1611
1622
|
'unreadCount': number;
|
|
1612
1623
|
/**
|
|
1613
1624
|
*
|
|
1614
|
-
* @type {
|
|
1625
|
+
* @type {string}
|
|
1615
1626
|
* @memberof ConversationsUpdate
|
|
1616
1627
|
*/
|
|
1617
|
-
'
|
|
1628
|
+
'providerInstance': string;
|
|
1618
1629
|
}
|
|
1619
1630
|
/**
|
|
1620
1631
|
* @type Conversationtypedata
|
|
@@ -1626,11 +1637,6 @@ type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateAp
|
|
|
1626
1637
|
* @export
|
|
1627
1638
|
*/
|
|
1628
1639
|
type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
|
|
1629
|
-
/**
|
|
1630
|
-
* @type Conversationtypedata2
|
|
1631
|
-
* @export
|
|
1632
|
-
*/
|
|
1633
|
-
type Conversationtypedata2 = object;
|
|
1634
1640
|
/**
|
|
1635
1641
|
*
|
|
1636
1642
|
* @export
|
|
@@ -1725,6 +1731,25 @@ interface EmailCreate {
|
|
|
1725
1731
|
*/
|
|
1726
1732
|
'isPrimary'?: boolean | null;
|
|
1727
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
|
+
}
|
|
1728
1753
|
/**
|
|
1729
1754
|
*
|
|
1730
1755
|
* @export
|
|
@@ -1762,6 +1787,43 @@ interface EmailsCreate {
|
|
|
1762
1787
|
*/
|
|
1763
1788
|
'deletedAt'?: string | null;
|
|
1764
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
|
+
}
|
|
1765
1827
|
/**
|
|
1766
1828
|
*
|
|
1767
1829
|
* @export
|
|
@@ -1871,19 +1933,6 @@ interface ListResponseAccountsList {
|
|
|
1871
1933
|
*/
|
|
1872
1934
|
'data': Array<AccountsList>;
|
|
1873
1935
|
}
|
|
1874
|
-
/**
|
|
1875
|
-
*
|
|
1876
|
-
* @export
|
|
1877
|
-
* @interface ListResponseConversationsList
|
|
1878
|
-
*/
|
|
1879
|
-
interface ListResponseConversationsList {
|
|
1880
|
-
/**
|
|
1881
|
-
*
|
|
1882
|
-
* @type {Array<ConversationsList>}
|
|
1883
|
-
* @memberof ListResponseConversationsList
|
|
1884
|
-
*/
|
|
1885
|
-
'data': Array<ConversationsList>;
|
|
1886
|
-
}
|
|
1887
1936
|
/**
|
|
1888
1937
|
*
|
|
1889
1938
|
* @export
|
|
@@ -1900,224 +1949,752 @@ interface ListResponseInquiriesList {
|
|
|
1900
1949
|
/**
|
|
1901
1950
|
*
|
|
1902
1951
|
* @export
|
|
1903
|
-
* @interface
|
|
1952
|
+
* @interface ListResponseManagedPhoneNumbersList
|
|
1904
1953
|
*/
|
|
1905
|
-
interface
|
|
1954
|
+
interface ListResponseManagedPhoneNumbersList {
|
|
1906
1955
|
/**
|
|
1907
1956
|
*
|
|
1908
|
-
* @type {Array<
|
|
1909
|
-
* @memberof
|
|
1957
|
+
* @type {Array<ManagedPhoneNumbersList>}
|
|
1958
|
+
* @memberof ListResponseManagedPhoneNumbersList
|
|
1910
1959
|
*/
|
|
1911
|
-
'data': Array<
|
|
1960
|
+
'data': Array<ManagedPhoneNumbersList>;
|
|
1912
1961
|
}
|
|
1913
1962
|
/**
|
|
1914
1963
|
*
|
|
1915
1964
|
* @export
|
|
1916
|
-
* @
|
|
1965
|
+
* @enum {string}
|
|
1917
1966
|
*/
|
|
1918
|
-
|
|
1967
|
+
declare const ListingSortBy: {
|
|
1968
|
+
readonly Title: "title";
|
|
1969
|
+
};
|
|
1970
|
+
type ListingSortBy = typeof ListingSortBy[keyof typeof ListingSortBy];
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @export
|
|
1974
|
+
* @interface Listings
|
|
1975
|
+
*/
|
|
1976
|
+
interface Listings {
|
|
1919
1977
|
/**
|
|
1920
1978
|
*
|
|
1921
|
-
* @type {
|
|
1922
|
-
* @memberof
|
|
1979
|
+
* @type {string}
|
|
1980
|
+
* @memberof Listings
|
|
1923
1981
|
*/
|
|
1924
|
-
'
|
|
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;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {string}
|
|
2004
|
+
* @memberof Listings
|
|
2005
|
+
*/
|
|
2006
|
+
'providerInstance': string;
|
|
1925
2007
|
}
|
|
1926
2008
|
/**
|
|
1927
2009
|
*
|
|
1928
2010
|
* @export
|
|
1929
|
-
* @interface
|
|
2011
|
+
* @interface ListingsGet
|
|
1930
2012
|
*/
|
|
1931
|
-
interface
|
|
2013
|
+
interface ListingsGet {
|
|
1932
2014
|
/**
|
|
1933
2015
|
*
|
|
1934
|
-
* @type {
|
|
1935
|
-
* @memberof
|
|
2016
|
+
* @type {string}
|
|
2017
|
+
* @memberof ListingsGet
|
|
1936
2018
|
*/
|
|
1937
|
-
'
|
|
2019
|
+
'providerListingId': string;
|
|
2020
|
+
/**
|
|
2021
|
+
*
|
|
2022
|
+
* @type {string}
|
|
2023
|
+
* @memberof ListingsGet
|
|
2024
|
+
*/
|
|
2025
|
+
'title': string;
|
|
2026
|
+
/**
|
|
2027
|
+
*
|
|
2028
|
+
* @type {string}
|
|
2029
|
+
* @memberof ListingsGet
|
|
2030
|
+
*/
|
|
2031
|
+
'nickName'?: string | null;
|
|
2032
|
+
/**
|
|
2033
|
+
*
|
|
2034
|
+
* @type {string}
|
|
2035
|
+
* @memberof ListingsGet
|
|
2036
|
+
*/
|
|
2037
|
+
'listingId': string;
|
|
2038
|
+
/**
|
|
2039
|
+
*
|
|
2040
|
+
* @type {string}
|
|
2041
|
+
* @memberof ListingsGet
|
|
2042
|
+
*/
|
|
2043
|
+
'providerInstance': string;
|
|
1938
2044
|
}
|
|
1939
2045
|
/**
|
|
1940
2046
|
*
|
|
1941
2047
|
* @export
|
|
1942
|
-
* @interface
|
|
2048
|
+
* @interface ManagedPhoneNumbersList
|
|
1943
2049
|
*/
|
|
1944
|
-
interface
|
|
2050
|
+
interface ManagedPhoneNumbersList {
|
|
2051
|
+
/**
|
|
2052
|
+
*
|
|
2053
|
+
* @type {string}
|
|
2054
|
+
* @memberof ManagedPhoneNumbersList
|
|
2055
|
+
*/
|
|
2056
|
+
'managedPhoneNumberId': string;
|
|
2057
|
+
/**
|
|
2058
|
+
*
|
|
2059
|
+
* @type {string}
|
|
2060
|
+
* @memberof ManagedPhoneNumbersList
|
|
2061
|
+
*/
|
|
2062
|
+
'phoneNumber': string;
|
|
2063
|
+
/**
|
|
2064
|
+
*
|
|
2065
|
+
* @type {string}
|
|
2066
|
+
* @memberof ManagedPhoneNumbersList
|
|
2067
|
+
*/
|
|
2068
|
+
'name'?: string | null;
|
|
2069
|
+
/**
|
|
2070
|
+
*
|
|
2071
|
+
* @type {string}
|
|
2072
|
+
* @memberof ManagedPhoneNumbersList
|
|
2073
|
+
*/
|
|
2074
|
+
'countryCode': string;
|
|
2075
|
+
/**
|
|
2076
|
+
*
|
|
2077
|
+
* @type {string}
|
|
2078
|
+
* @memberof ManagedPhoneNumbersList
|
|
2079
|
+
*/
|
|
2080
|
+
'region': string;
|
|
2081
|
+
/**
|
|
2082
|
+
*
|
|
2083
|
+
* @type {string}
|
|
2084
|
+
* @memberof ManagedPhoneNumbersList
|
|
2085
|
+
*/
|
|
2086
|
+
'createdAt': string;
|
|
1945
2087
|
/**
|
|
1946
2088
|
*
|
|
1947
|
-
* @type {
|
|
1948
|
-
* @memberof
|
|
2089
|
+
* @type {string}
|
|
2090
|
+
* @memberof ManagedPhoneNumbersList
|
|
1949
2091
|
*/
|
|
1950
|
-
'
|
|
2092
|
+
'updatedAt': string;
|
|
1951
2093
|
}
|
|
1952
2094
|
/**
|
|
1953
2095
|
*
|
|
1954
2096
|
* @export
|
|
1955
|
-
* @interface
|
|
2097
|
+
* @interface MessageCreate
|
|
1956
2098
|
*/
|
|
1957
|
-
interface
|
|
2099
|
+
interface MessageCreate {
|
|
2100
|
+
/**
|
|
2101
|
+
*
|
|
2102
|
+
* @type {string}
|
|
2103
|
+
* @memberof MessageCreate
|
|
2104
|
+
*/
|
|
2105
|
+
'providerMessageId'?: string;
|
|
2106
|
+
/**
|
|
2107
|
+
*
|
|
2108
|
+
* @type {string}
|
|
2109
|
+
* @memberof MessageCreate
|
|
2110
|
+
*/
|
|
2111
|
+
'providerUpdatedAt'?: string;
|
|
2112
|
+
/**
|
|
2113
|
+
*
|
|
2114
|
+
* @type {MessageDirection}
|
|
2115
|
+
* @memberof MessageCreate
|
|
2116
|
+
*/
|
|
2117
|
+
'direction': MessageDirection;
|
|
2118
|
+
/**
|
|
2119
|
+
*
|
|
2120
|
+
* @type {string}
|
|
2121
|
+
* @memberof MessageCreate
|
|
2122
|
+
*/
|
|
2123
|
+
'sentAt'?: string | null;
|
|
1958
2124
|
/**
|
|
1959
2125
|
*
|
|
1960
2126
|
* @type {string}
|
|
1961
|
-
* @memberof
|
|
2127
|
+
* @memberof MessageCreate
|
|
2128
|
+
*/
|
|
2129
|
+
'deliveredAt'?: string | null;
|
|
2130
|
+
/**
|
|
2131
|
+
*
|
|
2132
|
+
* @type {string}
|
|
2133
|
+
* @memberof MessageCreate
|
|
1962
2134
|
*/
|
|
1963
|
-
'
|
|
2135
|
+
'readAt'?: string | null;
|
|
1964
2136
|
/**
|
|
1965
2137
|
*
|
|
1966
2138
|
* @type {string}
|
|
1967
|
-
* @memberof
|
|
2139
|
+
* @memberof MessageCreate
|
|
2140
|
+
*/
|
|
2141
|
+
'failedAt'?: string | null;
|
|
2142
|
+
/**
|
|
2143
|
+
*
|
|
2144
|
+
* @type {string}
|
|
2145
|
+
* @memberof MessageCreate
|
|
2146
|
+
*/
|
|
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;
|
|
2172
|
+
}
|
|
2173
|
+
/**
|
|
2174
|
+
*
|
|
2175
|
+
* @export
|
|
2176
|
+
* @enum {string}
|
|
2177
|
+
*/
|
|
2178
|
+
declare const MessageDirection: {
|
|
2179
|
+
readonly Inbound: "INBOUND";
|
|
2180
|
+
readonly Outbound: "OUTBOUND";
|
|
2181
|
+
};
|
|
2182
|
+
type MessageDirection = typeof MessageDirection[keyof typeof MessageDirection];
|
|
2183
|
+
/**
|
|
2184
|
+
*
|
|
2185
|
+
* @export
|
|
2186
|
+
* @enum {string}
|
|
2187
|
+
*/
|
|
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 {
|
|
2202
|
+
/**
|
|
2203
|
+
*
|
|
2204
|
+
* @type {MessageDirection}
|
|
2205
|
+
* @memberof Messages
|
|
2206
|
+
*/
|
|
2207
|
+
'direction': MessageDirection;
|
|
2208
|
+
/**
|
|
2209
|
+
*
|
|
2210
|
+
* @type {string}
|
|
2211
|
+
* @memberof Messages
|
|
2212
|
+
*/
|
|
2213
|
+
'sentAt'?: string | null;
|
|
2214
|
+
/**
|
|
2215
|
+
*
|
|
2216
|
+
* @type {string}
|
|
2217
|
+
* @memberof Messages
|
|
2218
|
+
*/
|
|
2219
|
+
'deliveredAt'?: string | null;
|
|
2220
|
+
/**
|
|
2221
|
+
*
|
|
2222
|
+
* @type {string}
|
|
2223
|
+
* @memberof Messages
|
|
2224
|
+
*/
|
|
2225
|
+
'readAt'?: string | null;
|
|
2226
|
+
/**
|
|
2227
|
+
*
|
|
2228
|
+
* @type {string}
|
|
2229
|
+
* @memberof Messages
|
|
2230
|
+
*/
|
|
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
|
|
1968
2556
|
*/
|
|
1969
|
-
'
|
|
2557
|
+
'data': Array<Contacts>;
|
|
1970
2558
|
/**
|
|
1971
2559
|
*
|
|
1972
2560
|
* @type {string}
|
|
1973
|
-
* @memberof
|
|
2561
|
+
* @memberof PaginatedResponseContacts
|
|
1974
2562
|
*/
|
|
1975
|
-
'
|
|
2563
|
+
'prevPageCursor'?: string | null;
|
|
1976
2564
|
/**
|
|
1977
2565
|
*
|
|
1978
2566
|
* @type {string}
|
|
1979
|
-
* @memberof
|
|
2567
|
+
* @memberof PaginatedResponseContacts
|
|
1980
2568
|
*/
|
|
1981
|
-
'
|
|
2569
|
+
'nextPageCursor'?: string | null;
|
|
1982
2570
|
/**
|
|
1983
2571
|
*
|
|
1984
|
-
* @type {
|
|
1985
|
-
* @memberof
|
|
2572
|
+
* @type {number}
|
|
2573
|
+
* @memberof PaginatedResponseContacts
|
|
1986
2574
|
*/
|
|
1987
|
-
'
|
|
2575
|
+
'total'?: number;
|
|
1988
2576
|
}
|
|
1989
2577
|
/**
|
|
1990
2578
|
*
|
|
1991
2579
|
* @export
|
|
1992
|
-
* @interface
|
|
2580
|
+
* @interface PaginatedResponseConversations
|
|
1993
2581
|
*/
|
|
1994
|
-
interface
|
|
2582
|
+
interface PaginatedResponseConversations {
|
|
1995
2583
|
/**
|
|
1996
2584
|
*
|
|
1997
|
-
* @type {
|
|
1998
|
-
* @memberof
|
|
1999
|
-
*/
|
|
2000
|
-
'managedPhoneNumberId': string;
|
|
2001
|
-
/**
|
|
2002
|
-
*
|
|
2003
|
-
* @type {string}
|
|
2004
|
-
* @memberof ManagedPhoneNumbersList
|
|
2585
|
+
* @type {Array<Conversations>}
|
|
2586
|
+
* @memberof PaginatedResponseConversations
|
|
2005
2587
|
*/
|
|
2006
|
-
'
|
|
2588
|
+
'data': Array<Conversations>;
|
|
2007
2589
|
/**
|
|
2008
2590
|
*
|
|
2009
2591
|
* @type {string}
|
|
2010
|
-
* @memberof
|
|
2592
|
+
* @memberof PaginatedResponseConversations
|
|
2011
2593
|
*/
|
|
2012
|
-
'
|
|
2594
|
+
'prevPageCursor'?: string | null;
|
|
2013
2595
|
/**
|
|
2014
2596
|
*
|
|
2015
2597
|
* @type {string}
|
|
2016
|
-
* @memberof
|
|
2598
|
+
* @memberof PaginatedResponseConversations
|
|
2017
2599
|
*/
|
|
2018
|
-
'
|
|
2600
|
+
'nextPageCursor'?: string | null;
|
|
2019
2601
|
/**
|
|
2020
2602
|
*
|
|
2021
|
-
* @type {
|
|
2022
|
-
* @memberof
|
|
2603
|
+
* @type {number}
|
|
2604
|
+
* @memberof PaginatedResponseConversations
|
|
2023
2605
|
*/
|
|
2024
|
-
'
|
|
2606
|
+
'total'?: number;
|
|
2607
|
+
}
|
|
2608
|
+
/**
|
|
2609
|
+
*
|
|
2610
|
+
* @export
|
|
2611
|
+
* @interface PaginatedResponseListings
|
|
2612
|
+
*/
|
|
2613
|
+
interface PaginatedResponseListings {
|
|
2025
2614
|
/**
|
|
2026
2615
|
*
|
|
2027
|
-
* @type {
|
|
2028
|
-
* @memberof
|
|
2616
|
+
* @type {Array<Listings>}
|
|
2617
|
+
* @memberof PaginatedResponseListings
|
|
2029
2618
|
*/
|
|
2030
|
-
'
|
|
2619
|
+
'data': Array<Listings>;
|
|
2031
2620
|
/**
|
|
2032
2621
|
*
|
|
2033
2622
|
* @type {string}
|
|
2034
|
-
* @memberof
|
|
2623
|
+
* @memberof PaginatedResponseListings
|
|
2035
2624
|
*/
|
|
2036
|
-
'
|
|
2037
|
-
}
|
|
2038
|
-
/**
|
|
2039
|
-
*
|
|
2040
|
-
* @export
|
|
2041
|
-
* @interface MessageCreate
|
|
2042
|
-
*/
|
|
2043
|
-
interface MessageCreate {
|
|
2625
|
+
'prevPageCursor'?: string | null;
|
|
2044
2626
|
/**
|
|
2045
2627
|
*
|
|
2046
2628
|
* @type {string}
|
|
2047
|
-
* @memberof
|
|
2629
|
+
* @memberof PaginatedResponseListings
|
|
2048
2630
|
*/
|
|
2049
|
-
'
|
|
2631
|
+
'nextPageCursor'?: string | null;
|
|
2050
2632
|
/**
|
|
2051
2633
|
*
|
|
2052
|
-
* @type {
|
|
2053
|
-
* @memberof
|
|
2634
|
+
* @type {number}
|
|
2635
|
+
* @memberof PaginatedResponseListings
|
|
2054
2636
|
*/
|
|
2055
|
-
'
|
|
2637
|
+
'total'?: number;
|
|
2056
2638
|
}
|
|
2057
|
-
/**
|
|
2058
|
-
* @type Messagetypedata
|
|
2059
|
-
* @export
|
|
2060
|
-
*/
|
|
2061
|
-
type Messagetypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
|
|
2062
2639
|
/**
|
|
2063
2640
|
*
|
|
2064
2641
|
* @export
|
|
2065
|
-
* @interface
|
|
2642
|
+
* @interface PaginatedResponseMessages
|
|
2066
2643
|
*/
|
|
2067
|
-
interface
|
|
2644
|
+
interface PaginatedResponseMessages {
|
|
2068
2645
|
/**
|
|
2069
2646
|
*
|
|
2070
|
-
* @type {
|
|
2071
|
-
* @memberof
|
|
2647
|
+
* @type {Array<Messages>}
|
|
2648
|
+
* @memberof PaginatedResponseMessages
|
|
2072
2649
|
*/
|
|
2073
|
-
'
|
|
2650
|
+
'data': Array<Messages>;
|
|
2074
2651
|
/**
|
|
2075
2652
|
*
|
|
2076
2653
|
* @type {string}
|
|
2077
|
-
* @memberof
|
|
2654
|
+
* @memberof PaginatedResponseMessages
|
|
2078
2655
|
*/
|
|
2079
|
-
'
|
|
2656
|
+
'prevPageCursor'?: string | null;
|
|
2080
2657
|
/**
|
|
2081
2658
|
*
|
|
2082
|
-
* @type {
|
|
2083
|
-
* @memberof
|
|
2659
|
+
* @type {string}
|
|
2660
|
+
* @memberof PaginatedResponseMessages
|
|
2084
2661
|
*/
|
|
2085
|
-
'
|
|
2662
|
+
'nextPageCursor'?: string | null;
|
|
2086
2663
|
/**
|
|
2087
2664
|
*
|
|
2088
|
-
* @type {
|
|
2089
|
-
* @memberof
|
|
2665
|
+
* @type {number}
|
|
2666
|
+
* @memberof PaginatedResponseMessages
|
|
2090
2667
|
*/
|
|
2091
|
-
'
|
|
2668
|
+
'total'?: number;
|
|
2092
2669
|
}
|
|
2093
2670
|
/**
|
|
2094
2671
|
*
|
|
2095
2672
|
* @export
|
|
2096
|
-
* @interface
|
|
2673
|
+
* @interface PaginatedResponseReservations
|
|
2097
2674
|
*/
|
|
2098
|
-
interface
|
|
2675
|
+
interface PaginatedResponseReservations {
|
|
2099
2676
|
/**
|
|
2100
2677
|
*
|
|
2101
|
-
* @type {Array<
|
|
2102
|
-
* @memberof
|
|
2678
|
+
* @type {Array<Reservations>}
|
|
2679
|
+
* @memberof PaginatedResponseReservations
|
|
2103
2680
|
*/
|
|
2104
|
-
'data': Array<
|
|
2681
|
+
'data': Array<Reservations>;
|
|
2105
2682
|
/**
|
|
2106
2683
|
*
|
|
2107
2684
|
* @type {string}
|
|
2108
|
-
* @memberof
|
|
2685
|
+
* @memberof PaginatedResponseReservations
|
|
2109
2686
|
*/
|
|
2110
2687
|
'prevPageCursor'?: string | null;
|
|
2111
2688
|
/**
|
|
2112
2689
|
*
|
|
2113
2690
|
* @type {string}
|
|
2114
|
-
* @memberof
|
|
2691
|
+
* @memberof PaginatedResponseReservations
|
|
2115
2692
|
*/
|
|
2116
2693
|
'nextPageCursor'?: string | null;
|
|
2117
2694
|
/**
|
|
2118
2695
|
*
|
|
2119
2696
|
* @type {number}
|
|
2120
|
-
* @memberof
|
|
2697
|
+
* @memberof PaginatedResponseReservations
|
|
2121
2698
|
*/
|
|
2122
2699
|
'total'?: number;
|
|
2123
2700
|
}
|
|
@@ -2187,6 +2764,25 @@ interface PhoneNumberCreate {
|
|
|
2187
2764
|
*/
|
|
2188
2765
|
'isPrimary'?: boolean | null;
|
|
2189
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
|
+
}
|
|
2190
2786
|
/**
|
|
2191
2787
|
*
|
|
2192
2788
|
* @export
|
|
@@ -2227,58 +2823,159 @@ interface PhoneNumbersCreate {
|
|
|
2227
2823
|
/**
|
|
2228
2824
|
*
|
|
2229
2825
|
* @export
|
|
2230
|
-
* @interface
|
|
2826
|
+
* @interface PhoneNumbersUpdate
|
|
2231
2827
|
*/
|
|
2232
|
-
interface
|
|
2828
|
+
interface PhoneNumbersUpdate {
|
|
2829
|
+
/**
|
|
2830
|
+
*
|
|
2831
|
+
* @type {string}
|
|
2832
|
+
* @memberof PhoneNumbersUpdate
|
|
2833
|
+
*/
|
|
2834
|
+
'phoneId': string;
|
|
2233
2835
|
/**
|
|
2234
2836
|
*
|
|
2235
2837
|
* @type {string}
|
|
2236
|
-
* @memberof
|
|
2838
|
+
* @memberof PhoneNumbersUpdate
|
|
2839
|
+
*/
|
|
2840
|
+
'phone': string;
|
|
2841
|
+
/**
|
|
2842
|
+
*
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof PhoneNumbersUpdate
|
|
2237
2845
|
*/
|
|
2238
2846
|
'providerId': string;
|
|
2239
2847
|
/**
|
|
2240
2848
|
*
|
|
2241
2849
|
* @type {string}
|
|
2242
|
-
* @memberof
|
|
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
|
|
2864
|
+
*/
|
|
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
|
|
2243
2887
|
*/
|
|
2244
2888
|
'providerReservationId': string;
|
|
2245
2889
|
/**
|
|
2246
2890
|
*
|
|
2247
2891
|
* @type {string}
|
|
2248
|
-
* @memberof
|
|
2892
|
+
* @memberof Reservations
|
|
2249
2893
|
*/
|
|
2250
2894
|
'providerListingId': string;
|
|
2251
2895
|
/**
|
|
2252
2896
|
*
|
|
2253
2897
|
* @type {string}
|
|
2254
|
-
* @memberof
|
|
2898
|
+
* @memberof Reservations
|
|
2255
2899
|
*/
|
|
2256
2900
|
'reservationStatus': string;
|
|
2257
2901
|
/**
|
|
2258
2902
|
*
|
|
2259
2903
|
* @type {string}
|
|
2260
|
-
* @memberof
|
|
2904
|
+
* @memberof Reservations
|
|
2261
2905
|
*/
|
|
2262
2906
|
'arrivalAtPropertyTz': string;
|
|
2263
2907
|
/**
|
|
2264
2908
|
*
|
|
2265
2909
|
* @type {string}
|
|
2266
|
-
* @memberof
|
|
2910
|
+
* @memberof Reservations
|
|
2267
2911
|
*/
|
|
2268
2912
|
'departureAtPropertyTz': string;
|
|
2269
2913
|
/**
|
|
2270
2914
|
*
|
|
2271
2915
|
* @type {number}
|
|
2272
|
-
* @memberof
|
|
2916
|
+
* @memberof Reservations
|
|
2273
2917
|
*/
|
|
2274
2918
|
'nights': number;
|
|
2275
2919
|
/**
|
|
2276
2920
|
*
|
|
2277
2921
|
* @type {number}
|
|
2278
|
-
* @memberof
|
|
2922
|
+
* @memberof Reservations
|
|
2279
2923
|
*/
|
|
2280
2924
|
'totalPrice': number;
|
|
2925
|
+
/**
|
|
2926
|
+
*
|
|
2927
|
+
* @type {string}
|
|
2928
|
+
* @memberof Reservations
|
|
2929
|
+
*/
|
|
2930
|
+
'reservationId': string;
|
|
2931
|
+
/**
|
|
2932
|
+
*
|
|
2933
|
+
* @type {string}
|
|
2934
|
+
* @memberof Reservations
|
|
2935
|
+
*/
|
|
2936
|
+
'listingId': string;
|
|
2937
|
+
/**
|
|
2938
|
+
*
|
|
2939
|
+
* @type {string}
|
|
2940
|
+
* @memberof Reservations
|
|
2941
|
+
*/
|
|
2942
|
+
'listingTitle': string;
|
|
2943
|
+
/**
|
|
2944
|
+
*
|
|
2945
|
+
* @type {string}
|
|
2946
|
+
* @memberof Reservations
|
|
2947
|
+
*/
|
|
2948
|
+
'createdAt': string;
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
* @type {string}
|
|
2952
|
+
* @memberof Reservations
|
|
2953
|
+
*/
|
|
2954
|
+
'updatedAt': string;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @type {string}
|
|
2958
|
+
* @memberof Reservations
|
|
2959
|
+
*/
|
|
2960
|
+
'createdByName': string;
|
|
2961
|
+
/**
|
|
2962
|
+
*
|
|
2963
|
+
* @type {string}
|
|
2964
|
+
* @memberof Reservations
|
|
2965
|
+
*/
|
|
2966
|
+
'updatedByName': string;
|
|
2967
|
+
/**
|
|
2968
|
+
*
|
|
2969
|
+
* @type {string}
|
|
2970
|
+
* @memberof Reservations
|
|
2971
|
+
*/
|
|
2972
|
+
'providerInstance': string;
|
|
2281
2973
|
}
|
|
2974
|
+
/**
|
|
2975
|
+
* @type Sendertypedata
|
|
2976
|
+
* @export
|
|
2977
|
+
*/
|
|
2978
|
+
type Sendertypedata = TwilioInboundSenderTypeDataApi | TwilioOutboundSenderTypeDataApi;
|
|
2282
2979
|
/**
|
|
2283
2980
|
*
|
|
2284
2981
|
* @export
|
|
@@ -2289,6 +2986,15 @@ declare const SortOrder: {
|
|
|
2289
2986
|
readonly Desc: "desc";
|
|
2290
2987
|
};
|
|
2291
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];
|
|
2292
2998
|
/**
|
|
2293
2999
|
*
|
|
2294
3000
|
* @export
|
|
@@ -2451,6 +3157,105 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2Conversation
|
|
|
2451
3157
|
readonly Email: "EMAIL";
|
|
2452
3158
|
};
|
|
2453
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];
|
|
2454
3259
|
/**
|
|
2455
3260
|
*
|
|
2456
3261
|
* @export
|
|
@@ -2782,12 +3587,21 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2782
3587
|
emailsCreate: (contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2783
3588
|
/**
|
|
2784
3589
|
*
|
|
2785
|
-
* @summary Emails Delete
|
|
3590
|
+
* @summary Emails Delete
|
|
3591
|
+
* @param {string} emailId
|
|
3592
|
+
* @param {*} [options] Override http request option.
|
|
3593
|
+
* @throws {RequiredError}
|
|
3594
|
+
*/
|
|
3595
|
+
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3596
|
+
/**
|
|
3597
|
+
*
|
|
3598
|
+
* @summary Emails Update
|
|
2786
3599
|
* @param {string} emailId
|
|
3600
|
+
* @param {EmailUpdate} emailUpdate
|
|
2787
3601
|
* @param {*} [options] Override http request option.
|
|
2788
3602
|
* @throws {RequiredError}
|
|
2789
3603
|
*/
|
|
2790
|
-
|
|
3604
|
+
emailsUpdate: (emailId: string, emailUpdate: EmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2791
3605
|
/**
|
|
2792
3606
|
*
|
|
2793
3607
|
* @summary Phone_numbers Create
|
|
@@ -2805,6 +3619,15 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2805
3619
|
* @throws {RequiredError}
|
|
2806
3620
|
*/
|
|
2807
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>;
|
|
2808
3631
|
};
|
|
2809
3632
|
/**
|
|
2810
3633
|
* ContactsApi - functional programming interface
|
|
@@ -2930,6 +3753,15 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2930
3753
|
* @throws {RequiredError}
|
|
2931
3754
|
*/
|
|
2932
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>>;
|
|
2933
3765
|
/**
|
|
2934
3766
|
*
|
|
2935
3767
|
* @summary Phone_numbers Create
|
|
@@ -2947,6 +3779,15 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2947
3779
|
* @throws {RequiredError}
|
|
2948
3780
|
*/
|
|
2949
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>>;
|
|
2950
3791
|
};
|
|
2951
3792
|
/**
|
|
2952
3793
|
* ContactsApi - factory interface
|
|
@@ -3072,6 +3913,15 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3072
3913
|
* @throws {RequiredError}
|
|
3073
3914
|
*/
|
|
3074
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>;
|
|
3075
3925
|
/**
|
|
3076
3926
|
*
|
|
3077
3927
|
* @summary Phone_numbers Create
|
|
@@ -3089,6 +3939,15 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3089
3939
|
* @throws {RequiredError}
|
|
3090
3940
|
*/
|
|
3091
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>;
|
|
3092
3951
|
};
|
|
3093
3952
|
/**
|
|
3094
3953
|
* ContactsApi - object-oriented interface
|
|
@@ -3229,6 +4088,16 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3229
4088
|
* @memberof ContactsApi
|
|
3230
4089
|
*/
|
|
3231
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>>;
|
|
3232
4101
|
/**
|
|
3233
4102
|
*
|
|
3234
4103
|
* @summary Phone_numbers Create
|
|
@@ -3248,6 +4117,16 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3248
4117
|
* @memberof ContactsApi
|
|
3249
4118
|
*/
|
|
3250
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>>;
|
|
3251
4130
|
}
|
|
3252
4131
|
/**
|
|
3253
4132
|
* ConversationsApi - axios parameter creator
|
|
@@ -3273,11 +4152,17 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3273
4152
|
/**
|
|
3274
4153
|
* List all conversations, optionally filtered by contact_id
|
|
3275
4154
|
* @summary Conversations List
|
|
3276
|
-
* @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
|
|
3277
4162
|
* @param {*} [options] Override http request option.
|
|
3278
4163
|
* @throws {RequiredError}
|
|
3279
4164
|
*/
|
|
3280
|
-
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>;
|
|
3281
4166
|
/**
|
|
3282
4167
|
*
|
|
3283
4168
|
* @summary Conversations Update
|
|
@@ -3287,6 +4172,38 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3287
4172
|
* @throws {RequiredError}
|
|
3288
4173
|
*/
|
|
3289
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>;
|
|
3290
4207
|
};
|
|
3291
4208
|
/**
|
|
3292
4209
|
* ConversationsApi - functional programming interface
|
|
@@ -3312,11 +4229,17 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3312
4229
|
/**
|
|
3313
4230
|
* List all conversations, optionally filtered by contact_id
|
|
3314
4231
|
* @summary Conversations List
|
|
3315
|
-
* @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
|
|
3316
4239
|
* @param {*} [options] Override http request option.
|
|
3317
4240
|
* @throws {RequiredError}
|
|
3318
4241
|
*/
|
|
3319
|
-
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>>;
|
|
3320
4243
|
/**
|
|
3321
4244
|
*
|
|
3322
4245
|
* @summary Conversations Update
|
|
@@ -3326,6 +4249,38 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3326
4249
|
* @throws {RequiredError}
|
|
3327
4250
|
*/
|
|
3328
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>>;
|
|
3329
4284
|
};
|
|
3330
4285
|
/**
|
|
3331
4286
|
* ConversationsApi - factory interface
|
|
@@ -3351,11 +4306,17 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3351
4306
|
/**
|
|
3352
4307
|
* List all conversations, optionally filtered by contact_id
|
|
3353
4308
|
* @summary Conversations List
|
|
3354
|
-
* @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
|
|
3355
4316
|
* @param {*} [options] Override http request option.
|
|
3356
4317
|
* @throws {RequiredError}
|
|
3357
4318
|
*/
|
|
3358
|
-
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>;
|
|
3359
4320
|
/**
|
|
3360
4321
|
*
|
|
3361
4322
|
* @summary Conversations Update
|
|
@@ -3365,6 +4326,38 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3365
4326
|
* @throws {RequiredError}
|
|
3366
4327
|
*/
|
|
3367
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>;
|
|
3368
4361
|
};
|
|
3369
4362
|
/**
|
|
3370
4363
|
* ConversationsApi - object-oriented interface
|
|
@@ -3394,12 +4387,18 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3394
4387
|
/**
|
|
3395
4388
|
* List all conversations, optionally filtered by contact_id
|
|
3396
4389
|
* @summary Conversations List
|
|
3397
|
-
* @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
|
|
3398
4397
|
* @param {*} [options] Override http request option.
|
|
3399
4398
|
* @throws {RequiredError}
|
|
3400
4399
|
* @memberof ConversationsApi
|
|
3401
4400
|
*/
|
|
3402
|
-
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>>;
|
|
3403
4402
|
/**
|
|
3404
4403
|
*
|
|
3405
4404
|
* @summary Conversations Update
|
|
@@ -3410,6 +4409,41 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3410
4409
|
* @memberof ConversationsApi
|
|
3411
4410
|
*/
|
|
3412
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>>;
|
|
3413
4447
|
}
|
|
3414
4448
|
/**
|
|
3415
4449
|
* EmailsApi - axios parameter creator
|
|
@@ -3433,6 +4467,15 @@ declare const EmailsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3433
4467
|
* @throws {RequiredError}
|
|
3434
4468
|
*/
|
|
3435
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>;
|
|
3436
4479
|
};
|
|
3437
4480
|
/**
|
|
3438
4481
|
* EmailsApi - functional programming interface
|
|
@@ -3456,6 +4499,15 @@ declare const EmailsApiFp: (configuration?: Configuration) => {
|
|
|
3456
4499
|
* @throws {RequiredError}
|
|
3457
4500
|
*/
|
|
3458
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>>;
|
|
3459
4511
|
};
|
|
3460
4512
|
/**
|
|
3461
4513
|
* EmailsApi - factory interface
|
|
@@ -3479,6 +4531,15 @@ declare const EmailsApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
3479
4531
|
* @throws {RequiredError}
|
|
3480
4532
|
*/
|
|
3481
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>;
|
|
3482
4543
|
};
|
|
3483
4544
|
/**
|
|
3484
4545
|
* EmailsApi - object-oriented interface
|
|
@@ -3506,6 +4567,16 @@ declare class EmailsApi extends BaseAPI {
|
|
|
3506
4567
|
* @memberof EmailsApi
|
|
3507
4568
|
*/
|
|
3508
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>>;
|
|
3509
4580
|
}
|
|
3510
4581
|
/**
|
|
3511
4582
|
* HostawayApi - axios parameter creator
|
|
@@ -3631,13 +4702,27 @@ declare class InquiriesApi extends BaseAPI {
|
|
|
3631
4702
|
*/
|
|
3632
4703
|
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3633
4704
|
/**
|
|
3634
|
-
*
|
|
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
|
+
*
|
|
3635
4714
|
* @summary Listings List
|
|
3636
|
-
* @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
|
|
3637
4722
|
* @param {*} [options] Override http request option.
|
|
3638
4723
|
* @throws {RequiredError}
|
|
3639
4724
|
*/
|
|
3640
|
-
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>;
|
|
3641
4726
|
};
|
|
3642
4727
|
/**
|
|
3643
4728
|
* ListingsApi - functional programming interface
|
|
@@ -3645,13 +4730,27 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3645
4730
|
*/
|
|
3646
4731
|
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
3647
4732
|
/**
|
|
3648
|
-
*
|
|
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
|
+
*
|
|
3649
4742
|
* @summary Listings List
|
|
3650
|
-
* @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
|
|
3651
4750
|
* @param {*} [options] Override http request option.
|
|
3652
4751
|
* @throws {RequiredError}
|
|
3653
4752
|
*/
|
|
3654
|
-
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>>;
|
|
3655
4754
|
};
|
|
3656
4755
|
/**
|
|
3657
4756
|
* ListingsApi - factory interface
|
|
@@ -3659,13 +4758,27 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
3659
4758
|
*/
|
|
3660
4759
|
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3661
4760
|
/**
|
|
3662
|
-
*
|
|
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
|
+
*
|
|
3663
4770
|
* @summary Listings List
|
|
3664
|
-
* @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
|
|
3665
4778
|
* @param {*} [options] Override http request option.
|
|
3666
4779
|
* @throws {RequiredError}
|
|
3667
4780
|
*/
|
|
3668
|
-
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>;
|
|
3669
4782
|
};
|
|
3670
4783
|
/**
|
|
3671
4784
|
* ListingsApi - object-oriented interface
|
|
@@ -3675,14 +4788,29 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3675
4788
|
*/
|
|
3676
4789
|
declare class ListingsApi extends BaseAPI {
|
|
3677
4790
|
/**
|
|
3678
|
-
*
|
|
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
|
+
*
|
|
3679
4801
|
* @summary Listings List
|
|
3680
|
-
* @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
|
|
3681
4809
|
* @param {*} [options] Override http request option.
|
|
3682
4810
|
* @throws {RequiredError}
|
|
3683
4811
|
* @memberof ListingsApi
|
|
3684
4812
|
*/
|
|
3685
|
-
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>>;
|
|
3686
4814
|
}
|
|
3687
4815
|
/**
|
|
3688
4816
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
@@ -3747,11 +4875,12 @@ declare const MessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3747
4875
|
/**
|
|
3748
4876
|
*
|
|
3749
4877
|
* @summary Messages Create
|
|
4878
|
+
* @param {string} conversationId
|
|
3750
4879
|
* @param {MessageCreate} messageCreate
|
|
3751
4880
|
* @param {*} [options] Override http request option.
|
|
3752
4881
|
* @throws {RequiredError}
|
|
3753
4882
|
*/
|
|
3754
|
-
messagesCreate: (messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4883
|
+
messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3755
4884
|
/**
|
|
3756
4885
|
*
|
|
3757
4886
|
* @summary Messages Get
|
|
@@ -3763,11 +4892,18 @@ declare const MessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3763
4892
|
/**
|
|
3764
4893
|
*
|
|
3765
4894
|
* @summary Messages List
|
|
3766
|
-
* @param {string} [
|
|
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
|
|
3767
4903
|
* @param {*} [options] Override http request option.
|
|
3768
4904
|
* @throws {RequiredError}
|
|
3769
4905
|
*/
|
|
3770
|
-
messagesList: (conversationId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
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>;
|
|
3771
4907
|
};
|
|
3772
4908
|
/**
|
|
3773
4909
|
* MessagesApi - functional programming interface
|
|
@@ -3777,11 +4913,12 @@ declare const MessagesApiFp: (configuration?: Configuration) => {
|
|
|
3777
4913
|
/**
|
|
3778
4914
|
*
|
|
3779
4915
|
* @summary Messages Create
|
|
4916
|
+
* @param {string} conversationId
|
|
3780
4917
|
* @param {MessageCreate} messageCreate
|
|
3781
4918
|
* @param {*} [options] Override http request option.
|
|
3782
4919
|
* @throws {RequiredError}
|
|
3783
4920
|
*/
|
|
3784
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4921
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesCreate>>;
|
|
3785
4922
|
/**
|
|
3786
4923
|
*
|
|
3787
4924
|
* @summary Messages Get
|
|
@@ -3789,15 +4926,22 @@ declare const MessagesApiFp: (configuration?: Configuration) => {
|
|
|
3789
4926
|
* @param {*} [options] Override http request option.
|
|
3790
4927
|
* @throws {RequiredError}
|
|
3791
4928
|
*/
|
|
3792
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4929
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesGet>>;
|
|
3793
4930
|
/**
|
|
3794
4931
|
*
|
|
3795
4932
|
* @summary Messages List
|
|
3796
|
-
* @param {string} [
|
|
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
|
|
3797
4941
|
* @param {*} [options] Override http request option.
|
|
3798
4942
|
* @throws {RequiredError}
|
|
3799
4943
|
*/
|
|
3800
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
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>>;
|
|
3801
4945
|
};
|
|
3802
4946
|
/**
|
|
3803
4947
|
* MessagesApi - factory interface
|
|
@@ -3807,11 +4951,12 @@ declare const MessagesApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3807
4951
|
/**
|
|
3808
4952
|
*
|
|
3809
4953
|
* @summary Messages Create
|
|
4954
|
+
* @param {string} conversationId
|
|
3810
4955
|
* @param {MessageCreate} messageCreate
|
|
3811
4956
|
* @param {*} [options] Override http request option.
|
|
3812
4957
|
* @throws {RequiredError}
|
|
3813
4958
|
*/
|
|
3814
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4959
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<MessagesCreate>;
|
|
3815
4960
|
/**
|
|
3816
4961
|
*
|
|
3817
4962
|
* @summary Messages Get
|
|
@@ -3819,15 +4964,22 @@ declare const MessagesApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3819
4964
|
* @param {*} [options] Override http request option.
|
|
3820
4965
|
* @throws {RequiredError}
|
|
3821
4966
|
*/
|
|
3822
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4967
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<MessagesGet>;
|
|
3823
4968
|
/**
|
|
3824
4969
|
*
|
|
3825
4970
|
* @summary Messages List
|
|
3826
|
-
* @param {string} [
|
|
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
|
|
3827
4979
|
* @param {*} [options] Override http request option.
|
|
3828
4980
|
* @throws {RequiredError}
|
|
3829
4981
|
*/
|
|
3830
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
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>;
|
|
3831
4983
|
};
|
|
3832
4984
|
/**
|
|
3833
4985
|
* MessagesApi - object-oriented interface
|
|
@@ -3839,12 +4991,13 @@ declare class MessagesApi extends BaseAPI {
|
|
|
3839
4991
|
/**
|
|
3840
4992
|
*
|
|
3841
4993
|
* @summary Messages Create
|
|
4994
|
+
* @param {string} conversationId
|
|
3842
4995
|
* @param {MessageCreate} messageCreate
|
|
3843
4996
|
* @param {*} [options] Override http request option.
|
|
3844
4997
|
* @throws {RequiredError}
|
|
3845
4998
|
* @memberof MessagesApi
|
|
3846
4999
|
*/
|
|
3847
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5000
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesCreate, any>>;
|
|
3848
5001
|
/**
|
|
3849
5002
|
*
|
|
3850
5003
|
* @summary Messages Get
|
|
@@ -3853,16 +5006,23 @@ declare class MessagesApi extends BaseAPI {
|
|
|
3853
5006
|
* @throws {RequiredError}
|
|
3854
5007
|
* @memberof MessagesApi
|
|
3855
5008
|
*/
|
|
3856
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
5009
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesGet, any>>;
|
|
3857
5010
|
/**
|
|
3858
5011
|
*
|
|
3859
5012
|
* @summary Messages List
|
|
3860
|
-
* @param {string} [
|
|
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
|
|
3861
5021
|
* @param {*} [options] Override http request option.
|
|
3862
5022
|
* @throws {RequiredError}
|
|
3863
5023
|
* @memberof MessagesApi
|
|
3864
5024
|
*/
|
|
3865
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
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>>;
|
|
3866
5026
|
}
|
|
3867
5027
|
/**
|
|
3868
5028
|
* PhoneNumbersApi - axios parameter creator
|
|
@@ -3886,6 +5046,15 @@ declare const PhoneNumbersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3886
5046
|
* @throws {RequiredError}
|
|
3887
5047
|
*/
|
|
3888
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>;
|
|
3889
5058
|
};
|
|
3890
5059
|
/**
|
|
3891
5060
|
* PhoneNumbersApi - functional programming interface
|
|
@@ -3909,6 +5078,15 @@ declare const PhoneNumbersApiFp: (configuration?: Configuration) => {
|
|
|
3909
5078
|
* @throws {RequiredError}
|
|
3910
5079
|
*/
|
|
3911
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>>;
|
|
3912
5090
|
};
|
|
3913
5091
|
/**
|
|
3914
5092
|
* PhoneNumbersApi - factory interface
|
|
@@ -3932,6 +5110,15 @@ declare const PhoneNumbersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3932
5110
|
* @throws {RequiredError}
|
|
3933
5111
|
*/
|
|
3934
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>;
|
|
3935
5122
|
};
|
|
3936
5123
|
/**
|
|
3937
5124
|
* PhoneNumbersApi - object-oriented interface
|
|
@@ -3959,6 +5146,16 @@ declare class PhoneNumbersApi extends BaseAPI {
|
|
|
3959
5146
|
* @memberof PhoneNumbersApi
|
|
3960
5147
|
*/
|
|
3961
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>>;
|
|
3962
5159
|
}
|
|
3963
5160
|
/**
|
|
3964
5161
|
* ReservationsApi - axios parameter creator
|
|
@@ -3968,11 +5165,17 @@ declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3968
5165
|
/**
|
|
3969
5166
|
*
|
|
3970
5167
|
* @summary Reservations List
|
|
3971
|
-
* @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
|
|
3972
5175
|
* @param {*} [options] Override http request option.
|
|
3973
5176
|
* @throws {RequiredError}
|
|
3974
5177
|
*/
|
|
3975
|
-
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>;
|
|
3976
5179
|
};
|
|
3977
5180
|
/**
|
|
3978
5181
|
* ReservationsApi - functional programming interface
|
|
@@ -3982,11 +5185,17 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
3982
5185
|
/**
|
|
3983
5186
|
*
|
|
3984
5187
|
* @summary Reservations List
|
|
3985
|
-
* @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
|
|
3986
5195
|
* @param {*} [options] Override http request option.
|
|
3987
5196
|
* @throws {RequiredError}
|
|
3988
5197
|
*/
|
|
3989
|
-
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>>;
|
|
3990
5199
|
};
|
|
3991
5200
|
/**
|
|
3992
5201
|
* ReservationsApi - factory interface
|
|
@@ -3996,11 +5205,17 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3996
5205
|
/**
|
|
3997
5206
|
*
|
|
3998
5207
|
* @summary Reservations List
|
|
3999
|
-
* @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
|
|
4000
5215
|
* @param {*} [options] Override http request option.
|
|
4001
5216
|
* @throws {RequiredError}
|
|
4002
5217
|
*/
|
|
4003
|
-
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>;
|
|
4004
5219
|
};
|
|
4005
5220
|
/**
|
|
4006
5221
|
* ReservationsApi - object-oriented interface
|
|
@@ -4012,12 +5227,18 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
4012
5227
|
/**
|
|
4013
5228
|
*
|
|
4014
5229
|
* @summary Reservations List
|
|
4015
|
-
* @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
|
|
4016
5237
|
* @param {*} [options] Override http request option.
|
|
4017
5238
|
* @throws {RequiredError}
|
|
4018
5239
|
* @memberof ReservationsApi
|
|
4019
5240
|
*/
|
|
4020
|
-
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>>;
|
|
4021
5242
|
}
|
|
4022
5243
|
/**
|
|
4023
5244
|
* UnboundApi - axios parameter creator
|
|
@@ -4152,11 +5373,17 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4152
5373
|
/**
|
|
4153
5374
|
* List all conversations, optionally filtered by contact_id
|
|
4154
5375
|
* @summary Conversations List
|
|
4155
|
-
* @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
|
|
4156
5383
|
* @param {*} [options] Override http request option.
|
|
4157
5384
|
* @throws {RequiredError}
|
|
4158
5385
|
*/
|
|
4159
|
-
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>;
|
|
4160
5387
|
/**
|
|
4161
5388
|
*
|
|
4162
5389
|
* @summary Conversations Update
|
|
@@ -4183,6 +5410,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4183
5410
|
* @throws {RequiredError}
|
|
4184
5411
|
*/
|
|
4185
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>;
|
|
4186
5422
|
/**
|
|
4187
5423
|
* List all listings
|
|
4188
5424
|
* @summary Inquiries List
|
|
@@ -4192,13 +5428,27 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4192
5428
|
*/
|
|
4193
5429
|
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4194
5430
|
/**
|
|
4195
|
-
*
|
|
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
|
+
*
|
|
4196
5440
|
* @summary Listings List
|
|
4197
|
-
* @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
|
|
4198
5448
|
* @param {*} [options] Override http request option.
|
|
4199
5449
|
* @throws {RequiredError}
|
|
4200
5450
|
*/
|
|
4201
|
-
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>;
|
|
4202
5452
|
/**
|
|
4203
5453
|
*
|
|
4204
5454
|
* @summary Managed_phone_numbers List
|
|
@@ -4209,11 +5459,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4209
5459
|
/**
|
|
4210
5460
|
*
|
|
4211
5461
|
* @summary Messages Create
|
|
5462
|
+
* @param {string} conversationId
|
|
4212
5463
|
* @param {MessageCreate} messageCreate
|
|
4213
5464
|
* @param {*} [options] Override http request option.
|
|
4214
5465
|
* @throws {RequiredError}
|
|
4215
5466
|
*/
|
|
4216
|
-
messagesCreate: (messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5467
|
+
messagesCreate: (conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4217
5468
|
/**
|
|
4218
5469
|
*
|
|
4219
5470
|
* @summary Messages Get
|
|
@@ -4225,11 +5476,18 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4225
5476
|
/**
|
|
4226
5477
|
*
|
|
4227
5478
|
* @summary Messages List
|
|
4228
|
-
* @param {string} [
|
|
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
|
|
4229
5487
|
* @param {*} [options] Override http request option.
|
|
4230
5488
|
* @throws {RequiredError}
|
|
4231
5489
|
*/
|
|
4232
|
-
messagesList: (conversationId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
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>;
|
|
4233
5491
|
/**
|
|
4234
5492
|
*
|
|
4235
5493
|
* @summary Phone_numbers Create
|
|
@@ -4247,14 +5505,29 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4247
5505
|
* @throws {RequiredError}
|
|
4248
5506
|
*/
|
|
4249
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>;
|
|
4250
5517
|
/**
|
|
4251
5518
|
*
|
|
4252
5519
|
* @summary Reservations List
|
|
4253
|
-
* @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
|
|
4254
5527
|
* @param {*} [options] Override http request option.
|
|
4255
5528
|
* @throws {RequiredError}
|
|
4256
5529
|
*/
|
|
4257
|
-
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>;
|
|
4258
5531
|
/**
|
|
4259
5532
|
*
|
|
4260
5533
|
* @summary Unifiedwebhook
|
|
@@ -4397,11 +5670,17 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4397
5670
|
/**
|
|
4398
5671
|
* List all conversations, optionally filtered by contact_id
|
|
4399
5672
|
* @summary Conversations List
|
|
4400
|
-
* @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
|
|
4401
5680
|
* @param {*} [options] Override http request option.
|
|
4402
5681
|
* @throws {RequiredError}
|
|
4403
5682
|
*/
|
|
4404
|
-
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>>;
|
|
4405
5684
|
/**
|
|
4406
5685
|
*
|
|
4407
5686
|
* @summary Conversations Update
|
|
@@ -4428,6 +5707,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4428
5707
|
* @throws {RequiredError}
|
|
4429
5708
|
*/
|
|
4430
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>>;
|
|
4431
5719
|
/**
|
|
4432
5720
|
* List all listings
|
|
4433
5721
|
* @summary Inquiries List
|
|
@@ -4437,13 +5725,27 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4437
5725
|
*/
|
|
4438
5726
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
4439
5727
|
/**
|
|
4440
|
-
*
|
|
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
|
+
*
|
|
4441
5737
|
* @summary Listings List
|
|
4442
|
-
* @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
|
|
4443
5745
|
* @param {*} [options] Override http request option.
|
|
4444
5746
|
* @throws {RequiredError}
|
|
4445
5747
|
*/
|
|
4446
|
-
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>>;
|
|
4447
5749
|
/**
|
|
4448
5750
|
*
|
|
4449
5751
|
* @summary Managed_phone_numbers List
|
|
@@ -4454,11 +5756,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4454
5756
|
/**
|
|
4455
5757
|
*
|
|
4456
5758
|
* @summary Messages Create
|
|
5759
|
+
* @param {string} conversationId
|
|
4457
5760
|
* @param {MessageCreate} messageCreate
|
|
4458
5761
|
* @param {*} [options] Override http request option.
|
|
4459
5762
|
* @throws {RequiredError}
|
|
4460
5763
|
*/
|
|
4461
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5764
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesCreate>>;
|
|
4462
5765
|
/**
|
|
4463
5766
|
*
|
|
4464
5767
|
* @summary Messages Get
|
|
@@ -4466,15 +5769,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4466
5769
|
* @param {*} [options] Override http request option.
|
|
4467
5770
|
* @throws {RequiredError}
|
|
4468
5771
|
*/
|
|
4469
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5772
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesGet>>;
|
|
4470
5773
|
/**
|
|
4471
5774
|
*
|
|
4472
5775
|
* @summary Messages List
|
|
4473
|
-
* @param {string} [
|
|
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
|
|
4474
5784
|
* @param {*} [options] Override http request option.
|
|
4475
5785
|
* @throws {RequiredError}
|
|
4476
5786
|
*/
|
|
4477
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
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>>;
|
|
4478
5788
|
/**
|
|
4479
5789
|
*
|
|
4480
5790
|
* @summary Phone_numbers Create
|
|
@@ -4492,14 +5802,29 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4492
5802
|
* @throws {RequiredError}
|
|
4493
5803
|
*/
|
|
4494
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>>;
|
|
4495
5814
|
/**
|
|
4496
5815
|
*
|
|
4497
5816
|
* @summary Reservations List
|
|
4498
|
-
* @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
|
|
4499
5824
|
* @param {*} [options] Override http request option.
|
|
4500
5825
|
* @throws {RequiredError}
|
|
4501
5826
|
*/
|
|
4502
|
-
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>>;
|
|
4503
5828
|
/**
|
|
4504
5829
|
*
|
|
4505
5830
|
* @summary Unifiedwebhook
|
|
@@ -4642,11 +5967,17 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4642
5967
|
/**
|
|
4643
5968
|
* List all conversations, optionally filtered by contact_id
|
|
4644
5969
|
* @summary Conversations List
|
|
4645
|
-
* @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
|
|
4646
5977
|
* @param {*} [options] Override http request option.
|
|
4647
5978
|
* @throws {RequiredError}
|
|
4648
5979
|
*/
|
|
4649
|
-
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>;
|
|
4650
5981
|
/**
|
|
4651
5982
|
*
|
|
4652
5983
|
* @summary Conversations Update
|
|
@@ -4673,6 +6004,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4673
6004
|
* @throws {RequiredError}
|
|
4674
6005
|
*/
|
|
4675
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>;
|
|
4676
6016
|
/**
|
|
4677
6017
|
* List all listings
|
|
4678
6018
|
* @summary Inquiries List
|
|
@@ -4682,13 +6022,27 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4682
6022
|
*/
|
|
4683
6023
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
4684
6024
|
/**
|
|
4685
|
-
*
|
|
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
|
+
*
|
|
4686
6034
|
* @summary Listings List
|
|
4687
|
-
* @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
|
|
4688
6042
|
* @param {*} [options] Override http request option.
|
|
4689
6043
|
* @throws {RequiredError}
|
|
4690
6044
|
*/
|
|
4691
|
-
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>;
|
|
4692
6046
|
/**
|
|
4693
6047
|
*
|
|
4694
6048
|
* @summary Managed_phone_numbers List
|
|
@@ -4699,11 +6053,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4699
6053
|
/**
|
|
4700
6054
|
*
|
|
4701
6055
|
* @summary Messages Create
|
|
6056
|
+
* @param {string} conversationId
|
|
4702
6057
|
* @param {MessageCreate} messageCreate
|
|
4703
6058
|
* @param {*} [options] Override http request option.
|
|
4704
6059
|
* @throws {RequiredError}
|
|
4705
6060
|
*/
|
|
4706
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6061
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): AxiosPromise<MessagesCreate>;
|
|
4707
6062
|
/**
|
|
4708
6063
|
*
|
|
4709
6064
|
* @summary Messages Get
|
|
@@ -4711,15 +6066,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4711
6066
|
* @param {*} [options] Override http request option.
|
|
4712
6067
|
* @throws {RequiredError}
|
|
4713
6068
|
*/
|
|
4714
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6069
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<MessagesGet>;
|
|
4715
6070
|
/**
|
|
4716
6071
|
*
|
|
4717
6072
|
* @summary Messages List
|
|
4718
|
-
* @param {string} [
|
|
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
|
|
4719
6081
|
* @param {*} [options] Override http request option.
|
|
4720
6082
|
* @throws {RequiredError}
|
|
4721
6083
|
*/
|
|
4722
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
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>;
|
|
4723
6085
|
/**
|
|
4724
6086
|
*
|
|
4725
6087
|
* @summary Phone_numbers Create
|
|
@@ -4737,14 +6099,29 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4737
6099
|
* @throws {RequiredError}
|
|
4738
6100
|
*/
|
|
4739
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>;
|
|
4740
6111
|
/**
|
|
4741
6112
|
*
|
|
4742
6113
|
* @summary Reservations List
|
|
4743
|
-
* @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
|
|
4744
6121
|
* @param {*} [options] Override http request option.
|
|
4745
6122
|
* @throws {RequiredError}
|
|
4746
6123
|
*/
|
|
4747
|
-
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>;
|
|
4748
6125
|
/**
|
|
4749
6126
|
*
|
|
4750
6127
|
* @summary Unifiedwebhook
|
|
@@ -4903,12 +6280,18 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4903
6280
|
/**
|
|
4904
6281
|
* List all conversations, optionally filtered by contact_id
|
|
4905
6282
|
* @summary Conversations List
|
|
4906
|
-
* @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
|
|
4907
6290
|
* @param {*} [options] Override http request option.
|
|
4908
6291
|
* @throws {RequiredError}
|
|
4909
6292
|
* @memberof UnboundApi
|
|
4910
6293
|
*/
|
|
4911
|
-
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>>;
|
|
4912
6295
|
/**
|
|
4913
6296
|
*
|
|
4914
6297
|
* @summary Conversations Update
|
|
@@ -4938,6 +6321,16 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4938
6321
|
* @memberof UnboundApi
|
|
4939
6322
|
*/
|
|
4940
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>>;
|
|
4941
6334
|
/**
|
|
4942
6335
|
* List all listings
|
|
4943
6336
|
* @summary Inquiries List
|
|
@@ -4948,14 +6341,29 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4948
6341
|
*/
|
|
4949
6342
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
4950
6343
|
/**
|
|
4951
|
-
*
|
|
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
|
+
*
|
|
4952
6354
|
* @summary Listings List
|
|
4953
|
-
* @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
|
|
4954
6362
|
* @param {*} [options] Override http request option.
|
|
4955
6363
|
* @throws {RequiredError}
|
|
4956
6364
|
* @memberof UnboundApi
|
|
4957
6365
|
*/
|
|
4958
|
-
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>>;
|
|
4959
6367
|
/**
|
|
4960
6368
|
*
|
|
4961
6369
|
* @summary Managed_phone_numbers List
|
|
@@ -4967,12 +6375,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4967
6375
|
/**
|
|
4968
6376
|
*
|
|
4969
6377
|
* @summary Messages Create
|
|
6378
|
+
* @param {string} conversationId
|
|
4970
6379
|
* @param {MessageCreate} messageCreate
|
|
4971
6380
|
* @param {*} [options] Override http request option.
|
|
4972
6381
|
* @throws {RequiredError}
|
|
4973
6382
|
* @memberof UnboundApi
|
|
4974
6383
|
*/
|
|
4975
|
-
messagesCreate(messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6384
|
+
messagesCreate(conversationId: string, messageCreate: MessageCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesCreate, any>>;
|
|
4976
6385
|
/**
|
|
4977
6386
|
*
|
|
4978
6387
|
* @summary Messages Get
|
|
@@ -4981,16 +6390,23 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4981
6390
|
* @throws {RequiredError}
|
|
4982
6391
|
* @memberof UnboundApi
|
|
4983
6392
|
*/
|
|
4984
|
-
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6393
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MessagesGet, any>>;
|
|
4985
6394
|
/**
|
|
4986
6395
|
*
|
|
4987
6396
|
* @summary Messages List
|
|
4988
|
-
* @param {string} [
|
|
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
|
|
4989
6405
|
* @param {*} [options] Override http request option.
|
|
4990
6406
|
* @throws {RequiredError}
|
|
4991
6407
|
* @memberof UnboundApi
|
|
4992
6408
|
*/
|
|
4993
|
-
messagesList(conversationId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
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>>;
|
|
4994
6410
|
/**
|
|
4995
6411
|
*
|
|
4996
6412
|
* @summary Phone_numbers Create
|
|
@@ -5010,15 +6426,31 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5010
6426
|
* @memberof UnboundApi
|
|
5011
6427
|
*/
|
|
5012
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>>;
|
|
5013
6439
|
/**
|
|
5014
6440
|
*
|
|
5015
6441
|
* @summary Reservations List
|
|
5016
|
-
* @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
|
|
5017
6449
|
* @param {*} [options] Override http request option.
|
|
5018
6450
|
* @throws {RequiredError}
|
|
5019
6451
|
* @memberof UnboundApi
|
|
5020
6452
|
*/
|
|
5021
|
-
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>>;
|
|
5022
6454
|
/**
|
|
5023
6455
|
*
|
|
5024
6456
|
* @summary Unifiedwebhook
|
|
@@ -5030,4 +6462,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5030
6462
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
5031
6463
|
}
|
|
5032
6464
|
|
|
5033
|
-
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 };
|