@ember-home/unbound-ts-client 0.0.59 → 0.0.60
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 +273 -9
- package/dist/index.d.ts +273 -9
- package/dist/index.js +276 -120
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +170 -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
|
|
@@ -1239,6 +1282,12 @@ interface APIProvider {
|
|
|
1239
1282
|
* @memberof APIProvider
|
|
1240
1283
|
*/
|
|
1241
1284
|
'webhookLogin'?: string | null;
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @type {string}
|
|
1288
|
+
* @memberof APIProvider
|
|
1289
|
+
*/
|
|
1290
|
+
'name': string;
|
|
1242
1291
|
/**
|
|
1243
1292
|
*
|
|
1244
1293
|
* @type {string}
|
|
@@ -1300,6 +1349,12 @@ interface APIProviderCreate {
|
|
|
1300
1349
|
* @memberof APIProviderCreate
|
|
1301
1350
|
*/
|
|
1302
1351
|
'providerId'?: string | null;
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @type {string}
|
|
1355
|
+
* @memberof APIProviderCreate
|
|
1356
|
+
*/
|
|
1357
|
+
'name': string;
|
|
1303
1358
|
/**
|
|
1304
1359
|
*
|
|
1305
1360
|
* @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 {string}
|
|
2522
|
+
* @memberof ProviderAccountInboxApi
|
|
2523
|
+
*/
|
|
2524
|
+
'providerType': string;
|
|
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
|
|
@@ -3905,10 +4077,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3905
4077
|
* @param {number} [limit]
|
|
3906
4078
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3907
4079
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4080
|
+
* @param {string | null} [inboxId]
|
|
3908
4081
|
* @param {*} [options] Override http request option.
|
|
3909
4082
|
* @throws {RequiredError}
|
|
3910
4083
|
*/
|
|
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>;
|
|
4084
|
+
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
4085
|
/**
|
|
3913
4086
|
* Conversations Update
|
|
3914
4087
|
* @summary Conversations Update
|
|
@@ -3977,10 +4150,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3977
4150
|
* @param {number} [limit]
|
|
3978
4151
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3979
4152
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4153
|
+
* @param {string | null} [inboxId]
|
|
3980
4154
|
* @param {*} [options] Override http request option.
|
|
3981
4155
|
* @throws {RequiredError}
|
|
3982
4156
|
*/
|
|
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>>;
|
|
4157
|
+
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
4158
|
/**
|
|
3985
4159
|
* Conversations Update
|
|
3986
4160
|
* @summary Conversations Update
|
|
@@ -4049,10 +4223,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4049
4223
|
* @param {number} [limit]
|
|
4050
4224
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4051
4225
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4226
|
+
* @param {string | null} [inboxId]
|
|
4052
4227
|
* @param {*} [options] Override http request option.
|
|
4053
4228
|
* @throws {RequiredError}
|
|
4054
4229
|
*/
|
|
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>;
|
|
4230
|
+
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
4231
|
/**
|
|
4057
4232
|
* Conversations Update
|
|
4058
4233
|
* @summary Conversations Update
|
|
@@ -4124,11 +4299,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4124
4299
|
* @param {number} [limit]
|
|
4125
4300
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4126
4301
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4302
|
+
* @param {string | null} [inboxId]
|
|
4127
4303
|
* @param {*} [options] Override http request option.
|
|
4128
4304
|
* @throws {RequiredError}
|
|
4129
4305
|
* @memberof ConversationsApi
|
|
4130
4306
|
*/
|
|
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>>;
|
|
4307
|
+
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
4308
|
/**
|
|
4133
4309
|
* Conversations Update
|
|
4134
4310
|
* @summary Conversations Update
|
|
@@ -4237,6 +4413,61 @@ declare class HostawayApi extends BaseAPI {
|
|
|
4237
4413
|
*/
|
|
4238
4414
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
4239
4415
|
}
|
|
4416
|
+
/**
|
|
4417
|
+
* InboxesApi - axios parameter creator
|
|
4418
|
+
* @export
|
|
4419
|
+
*/
|
|
4420
|
+
declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4421
|
+
/**
|
|
4422
|
+
* Inboxes List
|
|
4423
|
+
* @summary Inboxes List
|
|
4424
|
+
* @param {*} [options] Override http request option.
|
|
4425
|
+
* @throws {RequiredError}
|
|
4426
|
+
*/
|
|
4427
|
+
inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4428
|
+
};
|
|
4429
|
+
/**
|
|
4430
|
+
* InboxesApi - functional programming interface
|
|
4431
|
+
* @export
|
|
4432
|
+
*/
|
|
4433
|
+
declare const InboxesApiFp: (configuration?: Configuration) => {
|
|
4434
|
+
/**
|
|
4435
|
+
* Inboxes List
|
|
4436
|
+
* @summary Inboxes List
|
|
4437
|
+
* @param {*} [options] Override http request option.
|
|
4438
|
+
* @throws {RequiredError}
|
|
4439
|
+
*/
|
|
4440
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
|
|
4441
|
+
};
|
|
4442
|
+
/**
|
|
4443
|
+
* InboxesApi - factory interface
|
|
4444
|
+
* @export
|
|
4445
|
+
*/
|
|
4446
|
+
declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4447
|
+
/**
|
|
4448
|
+
* Inboxes List
|
|
4449
|
+
* @summary Inboxes List
|
|
4450
|
+
* @param {*} [options] Override http request option.
|
|
4451
|
+
* @throws {RequiredError}
|
|
4452
|
+
*/
|
|
4453
|
+
inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
|
|
4454
|
+
};
|
|
4455
|
+
/**
|
|
4456
|
+
* InboxesApi - object-oriented interface
|
|
4457
|
+
* @export
|
|
4458
|
+
* @class InboxesApi
|
|
4459
|
+
* @extends {BaseAPI}
|
|
4460
|
+
*/
|
|
4461
|
+
declare class InboxesApi extends BaseAPI {
|
|
4462
|
+
/**
|
|
4463
|
+
* Inboxes List
|
|
4464
|
+
* @summary Inboxes List
|
|
4465
|
+
* @param {*} [options] Override http request option.
|
|
4466
|
+
* @throws {RequiredError}
|
|
4467
|
+
* @memberof InboxesApi
|
|
4468
|
+
*/
|
|
4469
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
|
|
4470
|
+
}
|
|
4240
4471
|
/**
|
|
4241
4472
|
* InquiriesApi - axios parameter creator
|
|
4242
4473
|
* @export
|
|
@@ -4973,10 +5204,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4973
5204
|
* @param {number} [limit]
|
|
4974
5205
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4975
5206
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5207
|
+
* @param {string | null} [inboxId]
|
|
4976
5208
|
* @param {*} [options] Override http request option.
|
|
4977
5209
|
* @throws {RequiredError}
|
|
4978
5210
|
*/
|
|
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>;
|
|
5211
|
+
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
5212
|
/**
|
|
4981
5213
|
* Conversations Update
|
|
4982
5214
|
* @summary Conversations Update
|
|
@@ -5020,6 +5252,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5020
5252
|
* @throws {RequiredError}
|
|
5021
5253
|
*/
|
|
5022
5254
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5255
|
+
/**
|
|
5256
|
+
* Inboxes List
|
|
5257
|
+
* @summary Inboxes List
|
|
5258
|
+
* @param {*} [options] Override http request option.
|
|
5259
|
+
* @throws {RequiredError}
|
|
5260
|
+
*/
|
|
5261
|
+
inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5023
5262
|
/**
|
|
5024
5263
|
* List all listings
|
|
5025
5264
|
* @summary Inquiries List
|
|
@@ -5345,10 +5584,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5345
5584
|
* @param {number} [limit]
|
|
5346
5585
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5347
5586
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5587
|
+
* @param {string | null} [inboxId]
|
|
5348
5588
|
* @param {*} [options] Override http request option.
|
|
5349
5589
|
* @throws {RequiredError}
|
|
5350
5590
|
*/
|
|
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>>;
|
|
5591
|
+
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
5592
|
/**
|
|
5353
5593
|
* Conversations Update
|
|
5354
5594
|
* @summary Conversations Update
|
|
@@ -5392,6 +5632,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5392
5632
|
* @throws {RequiredError}
|
|
5393
5633
|
*/
|
|
5394
5634
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
5635
|
+
/**
|
|
5636
|
+
* Inboxes List
|
|
5637
|
+
* @summary Inboxes List
|
|
5638
|
+
* @param {*} [options] Override http request option.
|
|
5639
|
+
* @throws {RequiredError}
|
|
5640
|
+
*/
|
|
5641
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
|
|
5395
5642
|
/**
|
|
5396
5643
|
* List all listings
|
|
5397
5644
|
* @summary Inquiries List
|
|
@@ -5717,10 +5964,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5717
5964
|
* @param {number} [limit]
|
|
5718
5965
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5719
5966
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5967
|
+
* @param {string | null} [inboxId]
|
|
5720
5968
|
* @param {*} [options] Override http request option.
|
|
5721
5969
|
* @throws {RequiredError}
|
|
5722
5970
|
*/
|
|
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>;
|
|
5971
|
+
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
5972
|
/**
|
|
5725
5973
|
* Conversations Update
|
|
5726
5974
|
* @summary Conversations Update
|
|
@@ -5764,6 +6012,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5764
6012
|
* @throws {RequiredError}
|
|
5765
6013
|
*/
|
|
5766
6014
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
6015
|
+
/**
|
|
6016
|
+
* Inboxes List
|
|
6017
|
+
* @summary Inboxes List
|
|
6018
|
+
* @param {*} [options] Override http request option.
|
|
6019
|
+
* @throws {RequiredError}
|
|
6020
|
+
*/
|
|
6021
|
+
inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
|
|
5767
6022
|
/**
|
|
5768
6023
|
* List all listings
|
|
5769
6024
|
* @summary Inquiries List
|
|
@@ -6105,11 +6360,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6105
6360
|
* @param {number} [limit]
|
|
6106
6361
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6107
6362
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6363
|
+
* @param {string | null} [inboxId]
|
|
6108
6364
|
* @param {*} [options] Override http request option.
|
|
6109
6365
|
* @throws {RequiredError}
|
|
6110
6366
|
* @memberof UnboundApi
|
|
6111
6367
|
*/
|
|
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>>;
|
|
6368
|
+
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
6369
|
/**
|
|
6114
6370
|
* Conversations Update
|
|
6115
6371
|
* @summary Conversations Update
|
|
@@ -6158,6 +6414,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6158
6414
|
* @memberof UnboundApi
|
|
6159
6415
|
*/
|
|
6160
6416
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
6417
|
+
/**
|
|
6418
|
+
* Inboxes List
|
|
6419
|
+
* @summary Inboxes List
|
|
6420
|
+
* @param {*} [options] Override http request option.
|
|
6421
|
+
* @throws {RequiredError}
|
|
6422
|
+
* @memberof UnboundApi
|
|
6423
|
+
*/
|
|
6424
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
|
|
6161
6425
|
/**
|
|
6162
6426
|
* List all listings
|
|
6163
6427
|
* @summary Inquiries List
|
|
@@ -6364,4 +6628,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6364
6628
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6365
6629
|
}
|
|
6366
6630
|
|
|
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 };
|
|
6631
|
+
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, 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 };
|