@ember-home/unbound-ts-client 0.0.59 → 0.0.61
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 +289 -14
- package/dist/index.d.ts +289 -14
- package/dist/index.js +282 -120
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +176 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -710,6 +710,12 @@ interface APIConversation {
|
|
|
710
710
|
* @memberof APIConversation
|
|
711
711
|
*/
|
|
712
712
|
'conversationId': string;
|
|
713
|
+
/**
|
|
714
|
+
*
|
|
715
|
+
* @type {string}
|
|
716
|
+
* @memberof APIConversation
|
|
717
|
+
*/
|
|
718
|
+
'inboxId': string;
|
|
713
719
|
/**
|
|
714
720
|
*
|
|
715
721
|
* @type {ConversationStatus}
|
|
@@ -823,6 +829,43 @@ interface APIEmailUpdate {
|
|
|
823
829
|
*/
|
|
824
830
|
'email': string;
|
|
825
831
|
}
|
|
832
|
+
/**
|
|
833
|
+
*
|
|
834
|
+
* @export
|
|
835
|
+
* @interface APIInbox
|
|
836
|
+
*/
|
|
837
|
+
interface APIInbox {
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @type {string}
|
|
841
|
+
* @memberof APIInbox
|
|
842
|
+
*/
|
|
843
|
+
'inboxId': string;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @type {Inboxtypedata}
|
|
847
|
+
* @memberof APIInbox
|
|
848
|
+
*/
|
|
849
|
+
'inboxTypeData': Inboxtypedata;
|
|
850
|
+
/**
|
|
851
|
+
*
|
|
852
|
+
* @type {string}
|
|
853
|
+
* @memberof APIInbox
|
|
854
|
+
*/
|
|
855
|
+
'name': string;
|
|
856
|
+
/**
|
|
857
|
+
*
|
|
858
|
+
* @type {number}
|
|
859
|
+
* @memberof APIInbox
|
|
860
|
+
*/
|
|
861
|
+
'openConvosUnreadCount': number;
|
|
862
|
+
/**
|
|
863
|
+
*
|
|
864
|
+
* @type {number}
|
|
865
|
+
* @memberof APIInbox
|
|
866
|
+
*/
|
|
867
|
+
'closedConvosUnreadCount': number;
|
|
868
|
+
}
|
|
826
869
|
/**
|
|
827
870
|
*
|
|
828
871
|
* @export
|
|
@@ -922,10 +965,10 @@ interface APIListing {
|
|
|
922
965
|
'listingId': string;
|
|
923
966
|
/**
|
|
924
967
|
*
|
|
925
|
-
* @type {
|
|
968
|
+
* @type {RentalProviderTypes}
|
|
926
969
|
* @memberof APIListing
|
|
927
970
|
*/
|
|
928
|
-
'providerType':
|
|
971
|
+
'providerType': RentalProviderTypes;
|
|
929
972
|
/**
|
|
930
973
|
*
|
|
931
974
|
* @type {string}
|
|
@@ -1244,13 +1287,19 @@ interface APIProvider {
|
|
|
1244
1287
|
* @type {string}
|
|
1245
1288
|
* @memberof APIProvider
|
|
1246
1289
|
*/
|
|
1247
|
-
'
|
|
1290
|
+
'name': string;
|
|
1248
1291
|
/**
|
|
1249
1292
|
*
|
|
1250
1293
|
* @type {string}
|
|
1251
1294
|
* @memberof APIProvider
|
|
1252
1295
|
*/
|
|
1253
|
-
'
|
|
1296
|
+
'providerId': string;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {RentalProviderTypes}
|
|
1300
|
+
* @memberof APIProvider
|
|
1301
|
+
*/
|
|
1302
|
+
'providerType': RentalProviderTypes;
|
|
1254
1303
|
/**
|
|
1255
1304
|
*
|
|
1256
1305
|
* @type {string}
|
|
@@ -1305,7 +1354,13 @@ interface APIProviderCreate {
|
|
|
1305
1354
|
* @type {string}
|
|
1306
1355
|
* @memberof APIProviderCreate
|
|
1307
1356
|
*/
|
|
1308
|
-
'
|
|
1357
|
+
'name': string;
|
|
1358
|
+
/**
|
|
1359
|
+
*
|
|
1360
|
+
* @type {RentalProviderTypes}
|
|
1361
|
+
* @memberof APIProviderCreate
|
|
1362
|
+
*/
|
|
1363
|
+
'providerType': RentalProviderTypes;
|
|
1309
1364
|
/**
|
|
1310
1365
|
*
|
|
1311
1366
|
* @type {string}
|
|
@@ -1349,6 +1404,12 @@ interface APIProviderUpdate {
|
|
|
1349
1404
|
* @memberof APIProviderUpdate
|
|
1350
1405
|
*/
|
|
1351
1406
|
'testAttr'?: string | null;
|
|
1407
|
+
/**
|
|
1408
|
+
*
|
|
1409
|
+
* @type {string}
|
|
1410
|
+
* @memberof APIProviderUpdate
|
|
1411
|
+
*/
|
|
1412
|
+
'name'?: string | null;
|
|
1352
1413
|
}
|
|
1353
1414
|
/**
|
|
1354
1415
|
*
|
|
@@ -1807,6 +1868,35 @@ declare const EmailConversationDataApiConversationTypeEnum: {
|
|
|
1807
1868
|
readonly Email: "EMAIL";
|
|
1808
1869
|
};
|
|
1809
1870
|
type EmailConversationDataApiConversationTypeEnum = typeof EmailConversationDataApiConversationTypeEnum[keyof typeof EmailConversationDataApiConversationTypeEnum];
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
* @export
|
|
1874
|
+
* @interface EmailInboxApi
|
|
1875
|
+
*/
|
|
1876
|
+
interface EmailInboxApi {
|
|
1877
|
+
/**
|
|
1878
|
+
*
|
|
1879
|
+
* @type {string}
|
|
1880
|
+
* @memberof EmailInboxApi
|
|
1881
|
+
*/
|
|
1882
|
+
'inboxType': EmailInboxApiInboxTypeEnum;
|
|
1883
|
+
/**
|
|
1884
|
+
*
|
|
1885
|
+
* @type {string}
|
|
1886
|
+
* @memberof EmailInboxApi
|
|
1887
|
+
*/
|
|
1888
|
+
'managedEmailId': string;
|
|
1889
|
+
/**
|
|
1890
|
+
*
|
|
1891
|
+
* @type {string}
|
|
1892
|
+
* @memberof EmailInboxApi
|
|
1893
|
+
*/
|
|
1894
|
+
'emailAddress': string;
|
|
1895
|
+
}
|
|
1896
|
+
declare const EmailInboxApiInboxTypeEnum: {
|
|
1897
|
+
readonly Email: "EMAIL";
|
|
1898
|
+
};
|
|
1899
|
+
type EmailInboxApiInboxTypeEnum = typeof EmailInboxApiInboxTypeEnum[keyof typeof EmailInboxApiInboxTypeEnum];
|
|
1810
1900
|
/**
|
|
1811
1901
|
*
|
|
1812
1902
|
* @export
|
|
@@ -1981,6 +2071,11 @@ interface HostawayWebhook {
|
|
|
1981
2071
|
*/
|
|
1982
2072
|
'data': object;
|
|
1983
2073
|
}
|
|
2074
|
+
/**
|
|
2075
|
+
* @type Inboxtypedata
|
|
2076
|
+
* @export
|
|
2077
|
+
*/
|
|
2078
|
+
type Inboxtypedata = EmailInboxApi | PhoneInboxApi | ProviderAccountInboxApi;
|
|
1984
2079
|
/**
|
|
1985
2080
|
*
|
|
1986
2081
|
* @export
|
|
@@ -2030,6 +2125,19 @@ interface ListResponseAPIAccount {
|
|
|
2030
2125
|
*/
|
|
2031
2126
|
'data': Array<APIAccount>;
|
|
2032
2127
|
}
|
|
2128
|
+
/**
|
|
2129
|
+
*
|
|
2130
|
+
* @export
|
|
2131
|
+
* @interface ListResponseAPIInbox
|
|
2132
|
+
*/
|
|
2133
|
+
interface ListResponseAPIInbox {
|
|
2134
|
+
/**
|
|
2135
|
+
*
|
|
2136
|
+
* @type {Array<APIInbox>}
|
|
2137
|
+
* @memberof ListResponseAPIInbox
|
|
2138
|
+
*/
|
|
2139
|
+
'data': Array<APIInbox>;
|
|
2140
|
+
}
|
|
2033
2141
|
/**
|
|
2034
2142
|
*
|
|
2035
2143
|
* @export
|
|
@@ -2342,6 +2450,35 @@ interface PhoneApi {
|
|
|
2342
2450
|
*/
|
|
2343
2451
|
'phone': string;
|
|
2344
2452
|
}
|
|
2453
|
+
/**
|
|
2454
|
+
*
|
|
2455
|
+
* @export
|
|
2456
|
+
* @interface PhoneInboxApi
|
|
2457
|
+
*/
|
|
2458
|
+
interface PhoneInboxApi {
|
|
2459
|
+
/**
|
|
2460
|
+
*
|
|
2461
|
+
* @type {string}
|
|
2462
|
+
* @memberof PhoneInboxApi
|
|
2463
|
+
*/
|
|
2464
|
+
'inboxType': PhoneInboxApiInboxTypeEnum;
|
|
2465
|
+
/**
|
|
2466
|
+
*
|
|
2467
|
+
* @type {string}
|
|
2468
|
+
* @memberof PhoneInboxApi
|
|
2469
|
+
*/
|
|
2470
|
+
'managedPhoneId': string;
|
|
2471
|
+
/**
|
|
2472
|
+
*
|
|
2473
|
+
* @type {string}
|
|
2474
|
+
* @memberof PhoneInboxApi
|
|
2475
|
+
*/
|
|
2476
|
+
'phone': string;
|
|
2477
|
+
}
|
|
2478
|
+
declare const PhoneInboxApiInboxTypeEnum: {
|
|
2479
|
+
readonly Twilio: "TWILIO";
|
|
2480
|
+
};
|
|
2481
|
+
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2345
2482
|
/**
|
|
2346
2483
|
*
|
|
2347
2484
|
* @export
|
|
@@ -2361,6 +2498,41 @@ interface PhonesApi {
|
|
|
2361
2498
|
*/
|
|
2362
2499
|
'contactId'?: string | null;
|
|
2363
2500
|
}
|
|
2501
|
+
/**
|
|
2502
|
+
*
|
|
2503
|
+
* @export
|
|
2504
|
+
* @interface ProviderAccountInboxApi
|
|
2505
|
+
*/
|
|
2506
|
+
interface ProviderAccountInboxApi {
|
|
2507
|
+
/**
|
|
2508
|
+
*
|
|
2509
|
+
* @type {string}
|
|
2510
|
+
* @memberof ProviderAccountInboxApi
|
|
2511
|
+
*/
|
|
2512
|
+
'inboxType': ProviderAccountInboxApiInboxTypeEnum;
|
|
2513
|
+
/**
|
|
2514
|
+
*
|
|
2515
|
+
* @type {string}
|
|
2516
|
+
* @memberof ProviderAccountInboxApi
|
|
2517
|
+
*/
|
|
2518
|
+
'providerId': string;
|
|
2519
|
+
/**
|
|
2520
|
+
*
|
|
2521
|
+
* @type {RentalProviderTypes}
|
|
2522
|
+
* @memberof ProviderAccountInboxApi
|
|
2523
|
+
*/
|
|
2524
|
+
'providerType': RentalProviderTypes;
|
|
2525
|
+
/**
|
|
2526
|
+
*
|
|
2527
|
+
* @type {string}
|
|
2528
|
+
* @memberof ProviderAccountInboxApi
|
|
2529
|
+
*/
|
|
2530
|
+
'providerAccountId': string;
|
|
2531
|
+
}
|
|
2532
|
+
declare const ProviderAccountInboxApiInboxTypeEnum: {
|
|
2533
|
+
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
2534
|
+
};
|
|
2535
|
+
type ProviderAccountInboxApiInboxTypeEnum = typeof ProviderAccountInboxApiInboxTypeEnum[keyof typeof ProviderAccountInboxApiInboxTypeEnum];
|
|
2364
2536
|
/**
|
|
2365
2537
|
*
|
|
2366
2538
|
* @export
|
|
@@ -2623,6 +2795,17 @@ declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
|
2623
2795
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
2624
2796
|
};
|
|
2625
2797
|
type RentalProviderMessageApiMessageTypeEnum = typeof RentalProviderMessageApiMessageTypeEnum[keyof typeof RentalProviderMessageApiMessageTypeEnum];
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @export
|
|
2801
|
+
* @enum {string}
|
|
2802
|
+
*/
|
|
2803
|
+
declare const RentalProviderTypes: {
|
|
2804
|
+
readonly Hostaway: "HOSTAWAY";
|
|
2805
|
+
readonly Guesty: "GUESTY";
|
|
2806
|
+
readonly Unbound: "UNBOUND";
|
|
2807
|
+
};
|
|
2808
|
+
type RentalProviderTypes = typeof RentalProviderTypes[keyof typeof RentalProviderTypes];
|
|
2626
2809
|
/**
|
|
2627
2810
|
*
|
|
2628
2811
|
* @export
|
|
@@ -3905,10 +4088,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3905
4088
|
* @param {number} [limit]
|
|
3906
4089
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3907
4090
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4091
|
+
* @param {string | null} [inboxId]
|
|
3908
4092
|
* @param {*} [options] Override http request option.
|
|
3909
4093
|
* @throws {RequiredError}
|
|
3910
4094
|
*/
|
|
3911
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4095
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3912
4096
|
/**
|
|
3913
4097
|
* Conversations Update
|
|
3914
4098
|
* @summary Conversations Update
|
|
@@ -3977,10 +4161,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3977
4161
|
* @param {number} [limit]
|
|
3978
4162
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3979
4163
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4164
|
+
* @param {string | null} [inboxId]
|
|
3980
4165
|
* @param {*} [options] Override http request option.
|
|
3981
4166
|
* @throws {RequiredError}
|
|
3982
4167
|
*/
|
|
3983
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
4168
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
3984
4169
|
/**
|
|
3985
4170
|
* Conversations Update
|
|
3986
4171
|
* @summary Conversations Update
|
|
@@ -4049,10 +4234,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4049
4234
|
* @param {number} [limit]
|
|
4050
4235
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4051
4236
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4237
|
+
* @param {string | null} [inboxId]
|
|
4052
4238
|
* @param {*} [options] Override http request option.
|
|
4053
4239
|
* @throws {RequiredError}
|
|
4054
4240
|
*/
|
|
4055
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4241
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4056
4242
|
/**
|
|
4057
4243
|
* Conversations Update
|
|
4058
4244
|
* @summary Conversations Update
|
|
@@ -4124,11 +4310,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4124
4310
|
* @param {number} [limit]
|
|
4125
4311
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4126
4312
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4313
|
+
* @param {string | null} [inboxId]
|
|
4127
4314
|
* @param {*} [options] Override http request option.
|
|
4128
4315
|
* @throws {RequiredError}
|
|
4129
4316
|
* @memberof ConversationsApi
|
|
4130
4317
|
*/
|
|
4131
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4318
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4132
4319
|
/**
|
|
4133
4320
|
* Conversations Update
|
|
4134
4321
|
* @summary Conversations Update
|
|
@@ -4237,6 +4424,61 @@ declare class HostawayApi extends BaseAPI {
|
|
|
4237
4424
|
*/
|
|
4238
4425
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
4239
4426
|
}
|
|
4427
|
+
/**
|
|
4428
|
+
* InboxesApi - axios parameter creator
|
|
4429
|
+
* @export
|
|
4430
|
+
*/
|
|
4431
|
+
declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4432
|
+
/**
|
|
4433
|
+
* Inboxes List
|
|
4434
|
+
* @summary Inboxes List
|
|
4435
|
+
* @param {*} [options] Override http request option.
|
|
4436
|
+
* @throws {RequiredError}
|
|
4437
|
+
*/
|
|
4438
|
+
inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4439
|
+
};
|
|
4440
|
+
/**
|
|
4441
|
+
* InboxesApi - functional programming interface
|
|
4442
|
+
* @export
|
|
4443
|
+
*/
|
|
4444
|
+
declare const InboxesApiFp: (configuration?: Configuration) => {
|
|
4445
|
+
/**
|
|
4446
|
+
* Inboxes List
|
|
4447
|
+
* @summary Inboxes List
|
|
4448
|
+
* @param {*} [options] Override http request option.
|
|
4449
|
+
* @throws {RequiredError}
|
|
4450
|
+
*/
|
|
4451
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
|
|
4452
|
+
};
|
|
4453
|
+
/**
|
|
4454
|
+
* InboxesApi - factory interface
|
|
4455
|
+
* @export
|
|
4456
|
+
*/
|
|
4457
|
+
declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4458
|
+
/**
|
|
4459
|
+
* Inboxes List
|
|
4460
|
+
* @summary Inboxes List
|
|
4461
|
+
* @param {*} [options] Override http request option.
|
|
4462
|
+
* @throws {RequiredError}
|
|
4463
|
+
*/
|
|
4464
|
+
inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
|
|
4465
|
+
};
|
|
4466
|
+
/**
|
|
4467
|
+
* InboxesApi - object-oriented interface
|
|
4468
|
+
* @export
|
|
4469
|
+
* @class InboxesApi
|
|
4470
|
+
* @extends {BaseAPI}
|
|
4471
|
+
*/
|
|
4472
|
+
declare class InboxesApi extends BaseAPI {
|
|
4473
|
+
/**
|
|
4474
|
+
* Inboxes List
|
|
4475
|
+
* @summary Inboxes List
|
|
4476
|
+
* @param {*} [options] Override http request option.
|
|
4477
|
+
* @throws {RequiredError}
|
|
4478
|
+
* @memberof InboxesApi
|
|
4479
|
+
*/
|
|
4480
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
|
|
4481
|
+
}
|
|
4240
4482
|
/**
|
|
4241
4483
|
* InquiriesApi - axios parameter creator
|
|
4242
4484
|
* @export
|
|
@@ -4973,10 +5215,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4973
5215
|
* @param {number} [limit]
|
|
4974
5216
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4975
5217
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5218
|
+
* @param {string | null} [inboxId]
|
|
4976
5219
|
* @param {*} [options] Override http request option.
|
|
4977
5220
|
* @throws {RequiredError}
|
|
4978
5221
|
*/
|
|
4979
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5222
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4980
5223
|
/**
|
|
4981
5224
|
* Conversations Update
|
|
4982
5225
|
* @summary Conversations Update
|
|
@@ -5020,6 +5263,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5020
5263
|
* @throws {RequiredError}
|
|
5021
5264
|
*/
|
|
5022
5265
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5266
|
+
/**
|
|
5267
|
+
* Inboxes List
|
|
5268
|
+
* @summary Inboxes List
|
|
5269
|
+
* @param {*} [options] Override http request option.
|
|
5270
|
+
* @throws {RequiredError}
|
|
5271
|
+
*/
|
|
5272
|
+
inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5023
5273
|
/**
|
|
5024
5274
|
* List all listings
|
|
5025
5275
|
* @summary Inquiries List
|
|
@@ -5345,10 +5595,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5345
5595
|
* @param {number} [limit]
|
|
5346
5596
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5347
5597
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5598
|
+
* @param {string | null} [inboxId]
|
|
5348
5599
|
* @param {*} [options] Override http request option.
|
|
5349
5600
|
* @throws {RequiredError}
|
|
5350
5601
|
*/
|
|
5351
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5602
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5352
5603
|
/**
|
|
5353
5604
|
* Conversations Update
|
|
5354
5605
|
* @summary Conversations Update
|
|
@@ -5392,6 +5643,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5392
5643
|
* @throws {RequiredError}
|
|
5393
5644
|
*/
|
|
5394
5645
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
5646
|
+
/**
|
|
5647
|
+
* Inboxes List
|
|
5648
|
+
* @summary Inboxes List
|
|
5649
|
+
* @param {*} [options] Override http request option.
|
|
5650
|
+
* @throws {RequiredError}
|
|
5651
|
+
*/
|
|
5652
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
|
|
5395
5653
|
/**
|
|
5396
5654
|
* List all listings
|
|
5397
5655
|
* @summary Inquiries List
|
|
@@ -5717,10 +5975,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5717
5975
|
* @param {number} [limit]
|
|
5718
5976
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5719
5977
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5978
|
+
* @param {string | null} [inboxId]
|
|
5720
5979
|
* @param {*} [options] Override http request option.
|
|
5721
5980
|
* @throws {RequiredError}
|
|
5722
5981
|
*/
|
|
5723
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
5982
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
5724
5983
|
/**
|
|
5725
5984
|
* Conversations Update
|
|
5726
5985
|
* @summary Conversations Update
|
|
@@ -5764,6 +6023,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5764
6023
|
* @throws {RequiredError}
|
|
5765
6024
|
*/
|
|
5766
6025
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
6026
|
+
/**
|
|
6027
|
+
* Inboxes List
|
|
6028
|
+
* @summary Inboxes List
|
|
6029
|
+
* @param {*} [options] Override http request option.
|
|
6030
|
+
* @throws {RequiredError}
|
|
6031
|
+
*/
|
|
6032
|
+
inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
|
|
5767
6033
|
/**
|
|
5768
6034
|
* List all listings
|
|
5769
6035
|
* @summary Inquiries List
|
|
@@ -6105,11 +6371,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6105
6371
|
* @param {number} [limit]
|
|
6106
6372
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6107
6373
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6374
|
+
* @param {string | null} [inboxId]
|
|
6108
6375
|
* @param {*} [options] Override http request option.
|
|
6109
6376
|
* @throws {RequiredError}
|
|
6110
6377
|
* @memberof UnboundApi
|
|
6111
6378
|
*/
|
|
6112
|
-
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
6379
|
+
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
6113
6380
|
/**
|
|
6114
6381
|
* Conversations Update
|
|
6115
6382
|
* @summary Conversations Update
|
|
@@ -6158,6 +6425,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6158
6425
|
* @memberof UnboundApi
|
|
6159
6426
|
*/
|
|
6160
6427
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
6428
|
+
/**
|
|
6429
|
+
* Inboxes List
|
|
6430
|
+
* @summary Inboxes List
|
|
6431
|
+
* @param {*} [options] Override http request option.
|
|
6432
|
+
* @throws {RequiredError}
|
|
6433
|
+
* @memberof UnboundApi
|
|
6434
|
+
*/
|
|
6435
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
|
|
6161
6436
|
/**
|
|
6162
6437
|
* List all listings
|
|
6163
6438
|
* @summary Inquiries List
|
|
@@ -6364,4 +6639,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6364
6639
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6365
6640
|
}
|
|
6366
6641
|
|
|
6367
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
|
6642
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|