@ember-home/unbound-ts-client 0.0.83 → 0.0.85
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 +247 -176
- package/dist/index.d.ts +247 -176
- package/dist/index.js +293 -264
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -153
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -775,7 +775,7 @@ interface APIConversation {
|
|
|
775
775
|
* @type {ConversationSuggestionApi}
|
|
776
776
|
* @memberof APIConversation
|
|
777
777
|
*/
|
|
778
|
-
'latestSuggestion'
|
|
778
|
+
'latestSuggestion': ConversationSuggestionApi;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
*
|
|
@@ -1467,6 +1467,122 @@ interface APIReservation {
|
|
|
1467
1467
|
*/
|
|
1468
1468
|
'providerInfo': ProviderInfoApi;
|
|
1469
1469
|
}
|
|
1470
|
+
/**
|
|
1471
|
+
*
|
|
1472
|
+
* @export
|
|
1473
|
+
* @interface APIUserDevice
|
|
1474
|
+
*/
|
|
1475
|
+
interface APIUserDevice {
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @type {string}
|
|
1479
|
+
* @memberof APIUserDevice
|
|
1480
|
+
*/
|
|
1481
|
+
'userId': string;
|
|
1482
|
+
/**
|
|
1483
|
+
*
|
|
1484
|
+
* @type {string}
|
|
1485
|
+
* @memberof APIUserDevice
|
|
1486
|
+
*/
|
|
1487
|
+
'pushToken': string;
|
|
1488
|
+
/**
|
|
1489
|
+
*
|
|
1490
|
+
* @type {UserDeviceType}
|
|
1491
|
+
* @memberof APIUserDevice
|
|
1492
|
+
*/
|
|
1493
|
+
'deviceType': UserDeviceType;
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @type {UserDeviceOs}
|
|
1497
|
+
* @memberof APIUserDevice
|
|
1498
|
+
*/
|
|
1499
|
+
'deviceOs': UserDeviceOs;
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {string}
|
|
1503
|
+
* @memberof APIUserDevice
|
|
1504
|
+
*/
|
|
1505
|
+
'deviceModel': string;
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @type {string}
|
|
1509
|
+
* @memberof APIUserDevice
|
|
1510
|
+
*/
|
|
1511
|
+
'installedAppVersion': string;
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof APIUserDevice
|
|
1516
|
+
*/
|
|
1517
|
+
'deviceIdentifier'?: string | null;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {boolean}
|
|
1521
|
+
* @memberof APIUserDevice
|
|
1522
|
+
*/
|
|
1523
|
+
'archived'?: boolean;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {string}
|
|
1527
|
+
* @memberof APIUserDevice
|
|
1528
|
+
*/
|
|
1529
|
+
'userDeviceId': string;
|
|
1530
|
+
/**
|
|
1531
|
+
*
|
|
1532
|
+
* @type {string}
|
|
1533
|
+
* @memberof APIUserDevice
|
|
1534
|
+
*/
|
|
1535
|
+
'createdAt': string;
|
|
1536
|
+
/**
|
|
1537
|
+
*
|
|
1538
|
+
* @type {string}
|
|
1539
|
+
* @memberof APIUserDevice
|
|
1540
|
+
*/
|
|
1541
|
+
'updatedAt': string;
|
|
1542
|
+
}
|
|
1543
|
+
/**
|
|
1544
|
+
*
|
|
1545
|
+
* @export
|
|
1546
|
+
* @interface APIUserDeviceCreate
|
|
1547
|
+
*/
|
|
1548
|
+
interface APIUserDeviceCreate {
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* @type {string}
|
|
1552
|
+
* @memberof APIUserDeviceCreate
|
|
1553
|
+
*/
|
|
1554
|
+
'deviceIdentifier': string;
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof APIUserDeviceCreate
|
|
1559
|
+
*/
|
|
1560
|
+
'pushToken': string;
|
|
1561
|
+
/**
|
|
1562
|
+
*
|
|
1563
|
+
* @type {UserDeviceType}
|
|
1564
|
+
* @memberof APIUserDeviceCreate
|
|
1565
|
+
*/
|
|
1566
|
+
'deviceType': UserDeviceType;
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {UserDeviceOs}
|
|
1570
|
+
* @memberof APIUserDeviceCreate
|
|
1571
|
+
*/
|
|
1572
|
+
'deviceOs': UserDeviceOs;
|
|
1573
|
+
/**
|
|
1574
|
+
*
|
|
1575
|
+
* @type {string}
|
|
1576
|
+
* @memberof APIUserDeviceCreate
|
|
1577
|
+
*/
|
|
1578
|
+
'deviceModel': string;
|
|
1579
|
+
/**
|
|
1580
|
+
*
|
|
1581
|
+
* @type {string}
|
|
1582
|
+
* @memberof APIUserDeviceCreate
|
|
1583
|
+
*/
|
|
1584
|
+
'installedAppVersion': string;
|
|
1585
|
+
}
|
|
1470
1586
|
/**
|
|
1471
1587
|
*
|
|
1472
1588
|
* @export
|
|
@@ -2036,37 +2152,6 @@ interface HTTPValidationError {
|
|
|
2036
2152
|
*/
|
|
2037
2153
|
'detail'?: Array<APIValidationError>;
|
|
2038
2154
|
}
|
|
2039
|
-
/**
|
|
2040
|
-
*
|
|
2041
|
-
* @export
|
|
2042
|
-
* @interface HostawayWebhook
|
|
2043
|
-
*/
|
|
2044
|
-
interface HostawayWebhook {
|
|
2045
|
-
/**
|
|
2046
|
-
*
|
|
2047
|
-
* @type {string}
|
|
2048
|
-
* @memberof HostawayWebhook
|
|
2049
|
-
*/
|
|
2050
|
-
'object': string;
|
|
2051
|
-
/**
|
|
2052
|
-
*
|
|
2053
|
-
* @type {string}
|
|
2054
|
-
* @memberof HostawayWebhook
|
|
2055
|
-
*/
|
|
2056
|
-
'event': string;
|
|
2057
|
-
/**
|
|
2058
|
-
*
|
|
2059
|
-
* @type {number}
|
|
2060
|
-
* @memberof HostawayWebhook
|
|
2061
|
-
*/
|
|
2062
|
-
'accountId': number;
|
|
2063
|
-
/**
|
|
2064
|
-
*
|
|
2065
|
-
* @type {object}
|
|
2066
|
-
* @memberof HostawayWebhook
|
|
2067
|
-
*/
|
|
2068
|
-
'data': object;
|
|
2069
|
-
}
|
|
2070
2155
|
/**
|
|
2071
2156
|
* @type Inboxtypedata
|
|
2072
2157
|
* @export
|
|
@@ -3039,43 +3124,6 @@ interface SubjectApi {
|
|
|
3039
3124
|
*/
|
|
3040
3125
|
'listingName': string;
|
|
3041
3126
|
}
|
|
3042
|
-
/**
|
|
3043
|
-
*
|
|
3044
|
-
* @export
|
|
3045
|
-
* @interface Suggestion
|
|
3046
|
-
*/
|
|
3047
|
-
interface Suggestion {
|
|
3048
|
-
/**
|
|
3049
|
-
*
|
|
3050
|
-
* @type {string}
|
|
3051
|
-
* @memberof Suggestion
|
|
3052
|
-
*/
|
|
3053
|
-
'textSuggestedReply': string;
|
|
3054
|
-
/**
|
|
3055
|
-
*
|
|
3056
|
-
* @type {string}
|
|
3057
|
-
* @memberof Suggestion
|
|
3058
|
-
*/
|
|
3059
|
-
'chatSuggestedReply': string;
|
|
3060
|
-
/**
|
|
3061
|
-
*
|
|
3062
|
-
* @type {string}
|
|
3063
|
-
* @memberof Suggestion
|
|
3064
|
-
*/
|
|
3065
|
-
'emailSuggestedReply': string;
|
|
3066
|
-
/**
|
|
3067
|
-
*
|
|
3068
|
-
* @type {string}
|
|
3069
|
-
* @memberof Suggestion
|
|
3070
|
-
*/
|
|
3071
|
-
'tone': string;
|
|
3072
|
-
/**
|
|
3073
|
-
*
|
|
3074
|
-
* @type {string}
|
|
3075
|
-
* @memberof Suggestion
|
|
3076
|
-
*/
|
|
3077
|
-
'suggestionId': string;
|
|
3078
|
-
}
|
|
3079
3127
|
/**
|
|
3080
3128
|
*
|
|
3081
3129
|
* @export
|
|
@@ -3113,19 +3161,6 @@ interface SuggestionApi {
|
|
|
3113
3161
|
*/
|
|
3114
3162
|
'suggestionId': string;
|
|
3115
3163
|
}
|
|
3116
|
-
/**
|
|
3117
|
-
*
|
|
3118
|
-
* @export
|
|
3119
|
-
* @interface SuggestionResponse
|
|
3120
|
-
*/
|
|
3121
|
-
interface SuggestionResponse {
|
|
3122
|
-
/**
|
|
3123
|
-
*
|
|
3124
|
-
* @type {Array<Suggestion>}
|
|
3125
|
-
* @memberof SuggestionResponse
|
|
3126
|
-
*/
|
|
3127
|
-
'data': Array<Suggestion> | null;
|
|
3128
|
-
}
|
|
3129
3164
|
/**
|
|
3130
3165
|
*
|
|
3131
3166
|
* @export
|
|
@@ -3140,17 +3175,6 @@ declare const SuggestionStatus: {
|
|
|
3140
3175
|
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3141
3176
|
};
|
|
3142
3177
|
type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
|
|
3143
|
-
/**
|
|
3144
|
-
*
|
|
3145
|
-
* @export
|
|
3146
|
-
* @enum {string}
|
|
3147
|
-
*/
|
|
3148
|
-
declare const SuggestionUsedType: {
|
|
3149
|
-
readonly Accepted: "ACCEPTED";
|
|
3150
|
-
readonly Modified: "MODIFIED";
|
|
3151
|
-
readonly Rejected: "REJECTED";
|
|
3152
|
-
};
|
|
3153
|
-
type SuggestionUsedType = typeof SuggestionUsedType[keyof typeof SuggestionUsedType];
|
|
3154
3178
|
/**
|
|
3155
3179
|
*
|
|
3156
3180
|
* @export
|
|
@@ -3420,6 +3444,27 @@ interface UserApi {
|
|
|
3420
3444
|
*/
|
|
3421
3445
|
'email': string;
|
|
3422
3446
|
}
|
|
3447
|
+
/**
|
|
3448
|
+
*
|
|
3449
|
+
* @export
|
|
3450
|
+
* @enum {string}
|
|
3451
|
+
*/
|
|
3452
|
+
declare const UserDeviceOs: {
|
|
3453
|
+
readonly Android: "ANDROID";
|
|
3454
|
+
readonly Ios: "IOS";
|
|
3455
|
+
};
|
|
3456
|
+
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
3457
|
+
/**
|
|
3458
|
+
*
|
|
3459
|
+
* @export
|
|
3460
|
+
* @enum {string}
|
|
3461
|
+
*/
|
|
3462
|
+
declare const UserDeviceType: {
|
|
3463
|
+
readonly Mobile: "MOBILE";
|
|
3464
|
+
readonly Tablet: "TABLET";
|
|
3465
|
+
readonly Desktop: "DESKTOP";
|
|
3466
|
+
};
|
|
3467
|
+
type UserDeviceType = typeof UserDeviceType[keyof typeof UserDeviceType];
|
|
3423
3468
|
/**
|
|
3424
3469
|
* AccountsApi - axios parameter creator
|
|
3425
3470
|
* @export
|
|
@@ -4316,14 +4361,6 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4316
4361
|
* @throws {RequiredError}
|
|
4317
4362
|
*/
|
|
4318
4363
|
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>;
|
|
4319
|
-
/**
|
|
4320
|
-
*
|
|
4321
|
-
* @summary Conversations List Suggestions
|
|
4322
|
-
* @param {string} conversationId
|
|
4323
|
-
* @param {*} [options] Override http request option.
|
|
4324
|
-
* @throws {RequiredError}
|
|
4325
|
-
*/
|
|
4326
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4327
4364
|
/**
|
|
4328
4365
|
* Conversations Update
|
|
4329
4366
|
* @summary Conversations Update
|
|
@@ -4397,14 +4434,6 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4397
4434
|
* @throws {RequiredError}
|
|
4398
4435
|
*/
|
|
4399
4436
|
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>>;
|
|
4400
|
-
/**
|
|
4401
|
-
*
|
|
4402
|
-
* @summary Conversations List Suggestions
|
|
4403
|
-
* @param {string} conversationId
|
|
4404
|
-
* @param {*} [options] Override http request option.
|
|
4405
|
-
* @throws {RequiredError}
|
|
4406
|
-
*/
|
|
4407
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4408
4437
|
/**
|
|
4409
4438
|
* Conversations Update
|
|
4410
4439
|
* @summary Conversations Update
|
|
@@ -4478,14 +4507,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4478
4507
|
* @throws {RequiredError}
|
|
4479
4508
|
*/
|
|
4480
4509
|
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>;
|
|
4481
|
-
/**
|
|
4482
|
-
*
|
|
4483
|
-
* @summary Conversations List Suggestions
|
|
4484
|
-
* @param {string} conversationId
|
|
4485
|
-
* @param {*} [options] Override http request option.
|
|
4486
|
-
* @throws {RequiredError}
|
|
4487
|
-
*/
|
|
4488
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4489
4510
|
/**
|
|
4490
4511
|
* Conversations Update
|
|
4491
4512
|
* @summary Conversations Update
|
|
@@ -4563,15 +4584,6 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4563
4584
|
* @memberof ConversationsApi
|
|
4564
4585
|
*/
|
|
4565
4586
|
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>>;
|
|
4566
|
-
/**
|
|
4567
|
-
*
|
|
4568
|
-
* @summary Conversations List Suggestions
|
|
4569
|
-
* @param {string} conversationId
|
|
4570
|
-
* @param {*} [options] Override http request option.
|
|
4571
|
-
* @throws {RequiredError}
|
|
4572
|
-
* @memberof ConversationsApi
|
|
4573
|
-
*/
|
|
4574
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4575
4587
|
/**
|
|
4576
4588
|
* Conversations Update
|
|
4577
4589
|
* @summary Conversations Update
|
|
@@ -4629,11 +4641,11 @@ declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4629
4641
|
/**
|
|
4630
4642
|
*
|
|
4631
4643
|
* @summary Unifiedwebhook
|
|
4632
|
-
* @param {
|
|
4644
|
+
* @param {object} body
|
|
4633
4645
|
* @param {*} [options] Override http request option.
|
|
4634
4646
|
* @throws {RequiredError}
|
|
4635
4647
|
*/
|
|
4636
|
-
webhook: (
|
|
4648
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4637
4649
|
};
|
|
4638
4650
|
/**
|
|
4639
4651
|
* HostawayApi - functional programming interface
|
|
@@ -4643,11 +4655,11 @@ declare const HostawayApiFp: (configuration?: Configuration) => {
|
|
|
4643
4655
|
/**
|
|
4644
4656
|
*
|
|
4645
4657
|
* @summary Unifiedwebhook
|
|
4646
|
-
* @param {
|
|
4658
|
+
* @param {object} body
|
|
4647
4659
|
* @param {*} [options] Override http request option.
|
|
4648
4660
|
* @throws {RequiredError}
|
|
4649
4661
|
*/
|
|
4650
|
-
webhook(
|
|
4662
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
4651
4663
|
};
|
|
4652
4664
|
/**
|
|
4653
4665
|
* HostawayApi - factory interface
|
|
@@ -4657,11 +4669,11 @@ declare const HostawayApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
4657
4669
|
/**
|
|
4658
4670
|
*
|
|
4659
4671
|
* @summary Unifiedwebhook
|
|
4660
|
-
* @param {
|
|
4672
|
+
* @param {object} body
|
|
4661
4673
|
* @param {*} [options] Override http request option.
|
|
4662
4674
|
* @throws {RequiredError}
|
|
4663
4675
|
*/
|
|
4664
|
-
webhook(
|
|
4676
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
4665
4677
|
};
|
|
4666
4678
|
/**
|
|
4667
4679
|
* HostawayApi - object-oriented interface
|
|
@@ -4673,12 +4685,12 @@ declare class HostawayApi extends BaseAPI {
|
|
|
4673
4685
|
/**
|
|
4674
4686
|
*
|
|
4675
4687
|
* @summary Unifiedwebhook
|
|
4676
|
-
* @param {
|
|
4688
|
+
* @param {object} body
|
|
4677
4689
|
* @param {*} [options] Override http request option.
|
|
4678
4690
|
* @throws {RequiredError}
|
|
4679
4691
|
* @memberof HostawayApi
|
|
4680
4692
|
*/
|
|
4681
|
-
webhook(
|
|
4693
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
4682
4694
|
}
|
|
4683
4695
|
/**
|
|
4684
4696
|
* InboxesApi - axios parameter creator
|
|
@@ -5384,14 +5396,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5384
5396
|
* @throws {RequiredError}
|
|
5385
5397
|
*/
|
|
5386
5398
|
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>;
|
|
5387
|
-
/**
|
|
5388
|
-
*
|
|
5389
|
-
* @summary Conversations List Suggestions
|
|
5390
|
-
* @param {string} conversationId
|
|
5391
|
-
* @param {*} [options] Override http request option.
|
|
5392
|
-
* @throws {RequiredError}
|
|
5393
|
-
*/
|
|
5394
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5395
5399
|
/**
|
|
5396
5400
|
* Conversations Update
|
|
5397
5401
|
* @summary Conversations Update
|
|
@@ -5609,14 +5613,22 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5609
5613
|
* @throws {RequiredError}
|
|
5610
5614
|
*/
|
|
5611
5615
|
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5616
|
+
/**
|
|
5617
|
+
* UserDevices Create
|
|
5618
|
+
* @summary UserDevices Create
|
|
5619
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5620
|
+
* @param {*} [options] Override http request option.
|
|
5621
|
+
* @throws {RequiredError}
|
|
5622
|
+
*/
|
|
5623
|
+
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5612
5624
|
/**
|
|
5613
5625
|
*
|
|
5614
5626
|
* @summary Unifiedwebhook
|
|
5615
|
-
* @param {
|
|
5627
|
+
* @param {object} body
|
|
5616
5628
|
* @param {*} [options] Override http request option.
|
|
5617
5629
|
* @throws {RequiredError}
|
|
5618
5630
|
*/
|
|
5619
|
-
webhook: (
|
|
5631
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5620
5632
|
};
|
|
5621
5633
|
/**
|
|
5622
5634
|
* UnboundApi - functional programming interface
|
|
@@ -5763,14 +5775,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5763
5775
|
* @throws {RequiredError}
|
|
5764
5776
|
*/
|
|
5765
5777
|
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>>;
|
|
5766
|
-
/**
|
|
5767
|
-
*
|
|
5768
|
-
* @summary Conversations List Suggestions
|
|
5769
|
-
* @param {string} conversationId
|
|
5770
|
-
* @param {*} [options] Override http request option.
|
|
5771
|
-
* @throws {RequiredError}
|
|
5772
|
-
*/
|
|
5773
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5774
5778
|
/**
|
|
5775
5779
|
* Conversations Update
|
|
5776
5780
|
* @summary Conversations Update
|
|
@@ -5988,14 +5992,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5988
5992
|
* @throws {RequiredError}
|
|
5989
5993
|
*/
|
|
5990
5994
|
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<PaginatedResponseAPIReservation>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Create
|
|
5997
|
+
* @summary UserDevices Create
|
|
5998
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5991
6003
|
/**
|
|
5992
6004
|
*
|
|
5993
6005
|
* @summary Unifiedwebhook
|
|
5994
|
-
* @param {
|
|
6006
|
+
* @param {object} body
|
|
5995
6007
|
* @param {*} [options] Override http request option.
|
|
5996
6008
|
* @throws {RequiredError}
|
|
5997
6009
|
*/
|
|
5998
|
-
webhook(
|
|
6010
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
5999
6011
|
};
|
|
6000
6012
|
/**
|
|
6001
6013
|
* UnboundApi - factory interface
|
|
@@ -6142,14 +6154,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6142
6154
|
* @throws {RequiredError}
|
|
6143
6155
|
*/
|
|
6144
6156
|
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>;
|
|
6145
|
-
/**
|
|
6146
|
-
*
|
|
6147
|
-
* @summary Conversations List Suggestions
|
|
6148
|
-
* @param {string} conversationId
|
|
6149
|
-
* @param {*} [options] Override http request option.
|
|
6150
|
-
* @throws {RequiredError}
|
|
6151
|
-
*/
|
|
6152
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6153
6157
|
/**
|
|
6154
6158
|
* Conversations Update
|
|
6155
6159
|
* @summary Conversations Update
|
|
@@ -6367,14 +6371,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6367
6371
|
* @throws {RequiredError}
|
|
6368
6372
|
*/
|
|
6369
6373
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
|
|
6374
|
+
/**
|
|
6375
|
+
* UserDevices Create
|
|
6376
|
+
* @summary UserDevices Create
|
|
6377
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6378
|
+
* @param {*} [options] Override http request option.
|
|
6379
|
+
* @throws {RequiredError}
|
|
6380
|
+
*/
|
|
6381
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6370
6382
|
/**
|
|
6371
6383
|
*
|
|
6372
6384
|
* @summary Unifiedwebhook
|
|
6373
|
-
* @param {
|
|
6385
|
+
* @param {object} body
|
|
6374
6386
|
* @param {*} [options] Override http request option.
|
|
6375
6387
|
* @throws {RequiredError}
|
|
6376
6388
|
*/
|
|
6377
|
-
webhook(
|
|
6389
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
6378
6390
|
};
|
|
6379
6391
|
/**
|
|
6380
6392
|
* UnboundApi - object-oriented interface
|
|
@@ -6538,15 +6550,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6538
6550
|
* @memberof UnboundApi
|
|
6539
6551
|
*/
|
|
6540
6552
|
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>>;
|
|
6541
|
-
/**
|
|
6542
|
-
*
|
|
6543
|
-
* @summary Conversations List Suggestions
|
|
6544
|
-
* @param {string} conversationId
|
|
6545
|
-
* @param {*} [options] Override http request option.
|
|
6546
|
-
* @throws {RequiredError}
|
|
6547
|
-
* @memberof UnboundApi
|
|
6548
|
-
*/
|
|
6549
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6550
6553
|
/**
|
|
6551
6554
|
* Conversations Update
|
|
6552
6555
|
* @summary Conversations Update
|
|
@@ -6788,15 +6791,83 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6788
6791
|
* @memberof UnboundApi
|
|
6789
6792
|
*/
|
|
6790
6793
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
6794
|
+
/**
|
|
6795
|
+
* UserDevices Create
|
|
6796
|
+
* @summary UserDevices Create
|
|
6797
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6798
|
+
* @param {*} [options] Override http request option.
|
|
6799
|
+
* @throws {RequiredError}
|
|
6800
|
+
* @memberof UnboundApi
|
|
6801
|
+
*/
|
|
6802
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6791
6803
|
/**
|
|
6792
6804
|
*
|
|
6793
6805
|
* @summary Unifiedwebhook
|
|
6794
|
-
* @param {
|
|
6806
|
+
* @param {object} body
|
|
6795
6807
|
* @param {*} [options] Override http request option.
|
|
6796
6808
|
* @throws {RequiredError}
|
|
6797
6809
|
* @memberof UnboundApi
|
|
6798
6810
|
*/
|
|
6799
|
-
webhook(
|
|
6811
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6812
|
+
}
|
|
6813
|
+
/**
|
|
6814
|
+
* UserDevicesApi - axios parameter creator
|
|
6815
|
+
* @export
|
|
6816
|
+
*/
|
|
6817
|
+
declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6818
|
+
/**
|
|
6819
|
+
* UserDevices Create
|
|
6820
|
+
* @summary UserDevices Create
|
|
6821
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6822
|
+
* @param {*} [options] Override http request option.
|
|
6823
|
+
* @throws {RequiredError}
|
|
6824
|
+
*/
|
|
6825
|
+
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6826
|
+
};
|
|
6827
|
+
/**
|
|
6828
|
+
* UserDevicesApi - functional programming interface
|
|
6829
|
+
* @export
|
|
6830
|
+
*/
|
|
6831
|
+
declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
6832
|
+
/**
|
|
6833
|
+
* UserDevices Create
|
|
6834
|
+
* @summary UserDevices Create
|
|
6835
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6836
|
+
* @param {*} [options] Override http request option.
|
|
6837
|
+
* @throws {RequiredError}
|
|
6838
|
+
*/
|
|
6839
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6840
|
+
};
|
|
6841
|
+
/**
|
|
6842
|
+
* UserDevicesApi - factory interface
|
|
6843
|
+
* @export
|
|
6844
|
+
*/
|
|
6845
|
+
declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6846
|
+
/**
|
|
6847
|
+
* UserDevices Create
|
|
6848
|
+
* @summary UserDevices Create
|
|
6849
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6850
|
+
* @param {*} [options] Override http request option.
|
|
6851
|
+
* @throws {RequiredError}
|
|
6852
|
+
*/
|
|
6853
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6854
|
+
};
|
|
6855
|
+
/**
|
|
6856
|
+
* UserDevicesApi - object-oriented interface
|
|
6857
|
+
* @export
|
|
6858
|
+
* @class UserDevicesApi
|
|
6859
|
+
* @extends {BaseAPI}
|
|
6860
|
+
*/
|
|
6861
|
+
declare class UserDevicesApi extends BaseAPI {
|
|
6862
|
+
/**
|
|
6863
|
+
* UserDevices Create
|
|
6864
|
+
* @summary UserDevices Create
|
|
6865
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6866
|
+
* @param {*} [options] Override http request option.
|
|
6867
|
+
* @throws {RequiredError}
|
|
6868
|
+
* @memberof UserDevicesApi
|
|
6869
|
+
*/
|
|
6870
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6800
6871
|
}
|
|
6801
6872
|
|
|
6802
|
-
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 APIMessageCreate1, type APIMessageCreate2, 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, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, 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,
|
|
6873
|
+
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 APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, 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, 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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, 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, ReasonType, 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, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDeviceType, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|