@ember-home/unbound-ts-client 1.0.44 → 1.0.46
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 +61 -61
- package/dist/index.d.ts +61 -61
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ import { RawAxiosRequestConfig, AxiosInstance, AxiosPromise } from 'axios';
|
|
|
5
5
|
* FastAPI
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.46
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -97,7 +97,7 @@ declare class Configuration {
|
|
|
97
97
|
* FastAPI
|
|
98
98
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
99
99
|
*
|
|
100
|
-
* The version of the OpenAPI document: 1.0.
|
|
100
|
+
* The version of the OpenAPI document: 1.0.46
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2122,15 +2122,6 @@ interface ConversationCreate {
|
|
|
2122
2122
|
*/
|
|
2123
2123
|
'conversationTypeData': SMSConversationDataCreate;
|
|
2124
2124
|
}
|
|
2125
|
-
/**
|
|
2126
|
-
*
|
|
2127
|
-
* @export
|
|
2128
|
-
* @enum {string}
|
|
2129
|
-
*/
|
|
2130
|
-
declare const ConversationSortBy: {
|
|
2131
|
-
readonly LastMessageSentAt: "lastMessageSentAt";
|
|
2132
|
-
};
|
|
2133
|
-
type ConversationSortBy = typeof ConversationSortBy[keyof typeof ConversationSortBy];
|
|
2134
2125
|
/**
|
|
2135
2126
|
*
|
|
2136
2127
|
* @export
|
|
@@ -4118,6 +4109,15 @@ declare const MessageDirection: {
|
|
|
4118
4109
|
readonly Outbound: "OUTBOUND";
|
|
4119
4110
|
};
|
|
4120
4111
|
type MessageDirection = typeof MessageDirection[keyof typeof MessageDirection];
|
|
4112
|
+
/**
|
|
4113
|
+
*
|
|
4114
|
+
* @export
|
|
4115
|
+
* @enum {string}
|
|
4116
|
+
*/
|
|
4117
|
+
declare const MessageSortBy: {
|
|
4118
|
+
readonly SentAt: "sentAt";
|
|
4119
|
+
};
|
|
4120
|
+
type MessageSortBy = typeof MessageSortBy[keyof typeof MessageSortBy];
|
|
4121
4121
|
/**
|
|
4122
4122
|
*
|
|
4123
4123
|
* @export
|
|
@@ -6504,7 +6504,7 @@ type SortByAuthGateway = typeof SortByAuthGateway[keyof typeof SortByAuthGateway
|
|
|
6504
6504
|
* @enum {string}
|
|
6505
6505
|
*/
|
|
6506
6506
|
declare const SortByUbFastApi: {
|
|
6507
|
-
readonly
|
|
6507
|
+
readonly LastMessageSentAt: "lastMessageSentAt";
|
|
6508
6508
|
};
|
|
6509
6509
|
type SortByUbFastApi = typeof SortByUbFastApi[keyof typeof SortByUbFastApi];
|
|
6510
6510
|
/**
|
|
@@ -9066,12 +9066,12 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9066
9066
|
* @param {number} [limit]
|
|
9067
9067
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9068
9068
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9069
|
-
* @param {
|
|
9069
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9070
9070
|
* @param {string} [inboxId]
|
|
9071
9071
|
* @param {*} [options] Override http request option.
|
|
9072
9072
|
* @throws {RequiredError}
|
|
9073
9073
|
*/
|
|
9074
|
-
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9074
|
+
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9075
9075
|
/**
|
|
9076
9076
|
*
|
|
9077
9077
|
* @summary Conversations Update
|
|
@@ -9114,12 +9114,12 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
9114
9114
|
* @param {number} [limit]
|
|
9115
9115
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9116
9116
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9117
|
-
* @param {
|
|
9117
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9118
9118
|
* @param {string} [inboxId]
|
|
9119
9119
|
* @param {*} [options] Override http request option.
|
|
9120
9120
|
* @throws {RequiredError}
|
|
9121
9121
|
*/
|
|
9122
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9122
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
|
|
9123
9123
|
/**
|
|
9124
9124
|
*
|
|
9125
9125
|
* @summary Conversations Update
|
|
@@ -9162,12 +9162,12 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
9162
9162
|
* @param {number} [limit]
|
|
9163
9163
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9164
9164
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9165
|
-
* @param {
|
|
9165
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9166
9166
|
* @param {string} [inboxId]
|
|
9167
9167
|
* @param {*} [options] Override http request option.
|
|
9168
9168
|
* @throws {RequiredError}
|
|
9169
9169
|
*/
|
|
9170
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9170
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
9171
9171
|
/**
|
|
9172
9172
|
*
|
|
9173
9173
|
* @summary Conversations Update
|
|
@@ -9214,13 +9214,13 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
9214
9214
|
* @param {number} [limit]
|
|
9215
9215
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9216
9216
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9217
|
-
* @param {
|
|
9217
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9218
9218
|
* @param {string} [inboxId]
|
|
9219
9219
|
* @param {*} [options] Override http request option.
|
|
9220
9220
|
* @throws {RequiredError}
|
|
9221
9221
|
* @memberof ConversationsApi
|
|
9222
9222
|
*/
|
|
9223
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9223
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
|
|
9224
9224
|
/**
|
|
9225
9225
|
*
|
|
9226
9226
|
* @summary Conversations Update
|
|
@@ -9796,12 +9796,12 @@ declare const MessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9796
9796
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9797
9797
|
* @param {number} [limit]
|
|
9798
9798
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9799
|
-
* @param {
|
|
9799
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9800
9800
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9801
9801
|
* @param {*} [options] Override http request option.
|
|
9802
9802
|
* @throws {RequiredError}
|
|
9803
9803
|
*/
|
|
9804
|
-
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9804
|
+
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9805
9805
|
};
|
|
9806
9806
|
/**
|
|
9807
9807
|
* MessagesApi - functional programming interface
|
|
@@ -9837,12 +9837,12 @@ declare const MessagesApiFp: (configuration?: Configuration) => {
|
|
|
9837
9837
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9838
9838
|
* @param {number} [limit]
|
|
9839
9839
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9840
|
-
* @param {
|
|
9840
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9841
9841
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9842
9842
|
* @param {*} [options] Override http request option.
|
|
9843
9843
|
* @throws {RequiredError}
|
|
9844
9844
|
*/
|
|
9845
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9845
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessage>>;
|
|
9846
9846
|
};
|
|
9847
9847
|
/**
|
|
9848
9848
|
* MessagesApi - factory interface
|
|
@@ -9878,12 +9878,12 @@ declare const MessagesApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
9878
9878
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9879
9879
|
* @param {number} [limit]
|
|
9880
9880
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9881
|
-
* @param {
|
|
9881
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9882
9882
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9883
9883
|
* @param {*} [options] Override http request option.
|
|
9884
9884
|
* @throws {RequiredError}
|
|
9885
9885
|
*/
|
|
9886
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9886
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessage>;
|
|
9887
9887
|
};
|
|
9888
9888
|
/**
|
|
9889
9889
|
* MessagesApi - object-oriented interface
|
|
@@ -9923,13 +9923,13 @@ declare class MessagesApi extends BaseAPI {
|
|
|
9923
9923
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9924
9924
|
* @param {number} [limit]
|
|
9925
9925
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9926
|
-
* @param {
|
|
9926
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9927
9927
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9928
9928
|
* @param {*} [options] Override http request option.
|
|
9929
9929
|
* @throws {RequiredError}
|
|
9930
9930
|
* @memberof MessagesApi
|
|
9931
9931
|
*/
|
|
9932
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9932
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessage, any>>;
|
|
9933
9933
|
}
|
|
9934
9934
|
/**
|
|
9935
9935
|
* NotificationsApi - axios parameter creator
|
|
@@ -11386,12 +11386,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11386
11386
|
* @param {number} [limit]
|
|
11387
11387
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11388
11388
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11389
|
-
* @param {
|
|
11389
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
11390
11390
|
* @param {string} [inboxId]
|
|
11391
11391
|
* @param {*} [options] Override http request option.
|
|
11392
11392
|
* @throws {RequiredError}
|
|
11393
11393
|
*/
|
|
11394
|
-
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
11394
|
+
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11395
11395
|
/**
|
|
11396
11396
|
* List all conversations, must filter by contact_id
|
|
11397
11397
|
* @summary Conversations List
|
|
@@ -11402,12 +11402,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11402
11402
|
* @param {number} [limit]
|
|
11403
11403
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11404
11404
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11405
|
-
* @param {
|
|
11405
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
11406
11406
|
* @param {string} [inboxId]
|
|
11407
11407
|
* @param {*} [options] Override http request option.
|
|
11408
11408
|
* @throws {RequiredError}
|
|
11409
11409
|
*/
|
|
11410
|
-
conversationsList_33: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
11410
|
+
conversationsList_33: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11411
11411
|
/**
|
|
11412
11412
|
*
|
|
11413
11413
|
* @summary Conversations Update
|
|
@@ -11720,12 +11720,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11720
11720
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11721
11721
|
* @param {number} [limit]
|
|
11722
11722
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11723
|
-
* @param {
|
|
11723
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
11724
11724
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11725
11725
|
* @param {*} [options] Override http request option.
|
|
11726
11726
|
* @throws {RequiredError}
|
|
11727
11727
|
*/
|
|
11728
|
-
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11728
|
+
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11729
11729
|
/**
|
|
11730
11730
|
*
|
|
11731
11731
|
* @summary Messages List
|
|
@@ -11738,12 +11738,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11738
11738
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11739
11739
|
* @param {number} [limit]
|
|
11740
11740
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11741
|
-
* @param {
|
|
11741
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
11742
11742
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11743
11743
|
* @param {*} [options] Override http request option.
|
|
11744
11744
|
* @throws {RequiredError}
|
|
11745
11745
|
*/
|
|
11746
|
-
messagesList_50: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11746
|
+
messagesList_50: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11747
11747
|
/**
|
|
11748
11748
|
*
|
|
11749
11749
|
* @summary Notifications Create
|
|
@@ -12681,12 +12681,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12681
12681
|
* @param {number} [limit]
|
|
12682
12682
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12683
12683
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12684
|
-
* @param {
|
|
12684
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
12685
12685
|
* @param {string} [inboxId]
|
|
12686
12686
|
* @param {*} [options] Override http request option.
|
|
12687
12687
|
* @throws {RequiredError}
|
|
12688
12688
|
*/
|
|
12689
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
12689
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
|
|
12690
12690
|
/**
|
|
12691
12691
|
* List all conversations, must filter by contact_id
|
|
12692
12692
|
* @summary Conversations List
|
|
@@ -12697,12 +12697,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12697
12697
|
* @param {number} [limit]
|
|
12698
12698
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12699
12699
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12700
|
-
* @param {
|
|
12700
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
12701
12701
|
* @param {string} [inboxId]
|
|
12702
12702
|
* @param {*} [options] Override http request option.
|
|
12703
12703
|
* @throws {RequiredError}
|
|
12704
12704
|
*/
|
|
12705
|
-
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
12705
|
+
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
|
|
12706
12706
|
/**
|
|
12707
12707
|
*
|
|
12708
12708
|
* @summary Conversations Update
|
|
@@ -13015,12 +13015,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13015
13015
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13016
13016
|
* @param {number} [limit]
|
|
13017
13017
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13018
|
-
* @param {
|
|
13018
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
13019
13019
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13020
13020
|
* @param {*} [options] Override http request option.
|
|
13021
13021
|
* @throws {RequiredError}
|
|
13022
13022
|
*/
|
|
13023
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13023
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessage>>;
|
|
13024
13024
|
/**
|
|
13025
13025
|
*
|
|
13026
13026
|
* @summary Messages List
|
|
@@ -13033,12 +13033,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13033
13033
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13034
13034
|
* @param {number} [limit]
|
|
13035
13035
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13036
|
-
* @param {
|
|
13036
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
13037
13037
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13038
13038
|
* @param {*} [options] Override http request option.
|
|
13039
13039
|
* @throws {RequiredError}
|
|
13040
13040
|
*/
|
|
13041
|
-
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13041
|
+
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseMessage>>;
|
|
13042
13042
|
/**
|
|
13043
13043
|
*
|
|
13044
13044
|
* @summary Notifications Create
|
|
@@ -13976,12 +13976,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
13976
13976
|
* @param {number} [limit]
|
|
13977
13977
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13978
13978
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13979
|
-
* @param {
|
|
13979
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
13980
13980
|
* @param {string} [inboxId]
|
|
13981
13981
|
* @param {*} [options] Override http request option.
|
|
13982
13982
|
* @throws {RequiredError}
|
|
13983
13983
|
*/
|
|
13984
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
13984
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
13985
13985
|
/**
|
|
13986
13986
|
* List all conversations, must filter by contact_id
|
|
13987
13987
|
* @summary Conversations List
|
|
@@ -13992,12 +13992,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
13992
13992
|
* @param {number} [limit]
|
|
13993
13993
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13994
13994
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13995
|
-
* @param {
|
|
13995
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
13996
13996
|
* @param {string} [inboxId]
|
|
13997
13997
|
* @param {*} [options] Override http request option.
|
|
13998
13998
|
* @throws {RequiredError}
|
|
13999
13999
|
*/
|
|
14000
|
-
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
14000
|
+
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
14001
14001
|
/**
|
|
14002
14002
|
*
|
|
14003
14003
|
* @summary Conversations Update
|
|
@@ -14310,12 +14310,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14310
14310
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14311
14311
|
* @param {number} [limit]
|
|
14312
14312
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14313
|
-
* @param {
|
|
14313
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
14314
14314
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14315
14315
|
* @param {*} [options] Override http request option.
|
|
14316
14316
|
* @throws {RequiredError}
|
|
14317
14317
|
*/
|
|
14318
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14318
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessage>;
|
|
14319
14319
|
/**
|
|
14320
14320
|
*
|
|
14321
14321
|
* @summary Messages List
|
|
@@ -14328,12 +14328,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14328
14328
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14329
14329
|
* @param {number} [limit]
|
|
14330
14330
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14331
|
-
* @param {
|
|
14331
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
14332
14332
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14333
14333
|
* @param {*} [options] Override http request option.
|
|
14334
14334
|
* @throws {RequiredError}
|
|
14335
14335
|
*/
|
|
14336
|
-
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14336
|
+
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseMessage>;
|
|
14337
14337
|
/**
|
|
14338
14338
|
*
|
|
14339
14339
|
* @summary Notifications Create
|
|
@@ -15339,13 +15339,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15339
15339
|
* @param {number} [limit]
|
|
15340
15340
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15341
15341
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15342
|
-
* @param {
|
|
15342
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
15343
15343
|
* @param {string} [inboxId]
|
|
15344
15344
|
* @param {*} [options] Override http request option.
|
|
15345
15345
|
* @throws {RequiredError}
|
|
15346
15346
|
* @memberof UnboundApi
|
|
15347
15347
|
*/
|
|
15348
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
15348
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
|
|
15349
15349
|
/**
|
|
15350
15350
|
* List all conversations, must filter by contact_id
|
|
15351
15351
|
* @summary Conversations List
|
|
@@ -15356,13 +15356,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15356
15356
|
* @param {number} [limit]
|
|
15357
15357
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15358
15358
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15359
|
-
* @param {
|
|
15359
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
15360
15360
|
* @param {string} [inboxId]
|
|
15361
15361
|
* @param {*} [options] Override http request option.
|
|
15362
15362
|
* @throws {RequiredError}
|
|
15363
15363
|
* @memberof UnboundApi
|
|
15364
15364
|
*/
|
|
15365
|
-
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
15365
|
+
conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
|
|
15366
15366
|
/**
|
|
15367
15367
|
*
|
|
15368
15368
|
* @summary Conversations Update
|
|
@@ -15709,13 +15709,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15709
15709
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15710
15710
|
* @param {number} [limit]
|
|
15711
15711
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15712
|
-
* @param {
|
|
15712
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
15713
15713
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15714
15714
|
* @param {*} [options] Override http request option.
|
|
15715
15715
|
* @throws {RequiredError}
|
|
15716
15716
|
* @memberof UnboundApi
|
|
15717
15717
|
*/
|
|
15718
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15718
|
+
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessage, any>>;
|
|
15719
15719
|
/**
|
|
15720
15720
|
*
|
|
15721
15721
|
* @summary Messages List
|
|
@@ -15728,13 +15728,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15728
15728
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15729
15729
|
* @param {number} [limit]
|
|
15730
15730
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15731
|
-
* @param {
|
|
15731
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
15732
15732
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15733
15733
|
* @param {*} [options] Override http request option.
|
|
15734
15734
|
* @throws {RequiredError}
|
|
15735
15735
|
* @memberof UnboundApi
|
|
15736
15736
|
*/
|
|
15737
|
-
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15737
|
+
messagesList_50(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: MessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseMessage, any>>;
|
|
15738
15738
|
/**
|
|
15739
15739
|
*
|
|
15740
15740
|
* @summary Notifications Create
|
|
@@ -16185,4 +16185,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
16185
16185
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
16186
16186
|
}
|
|
16187
16187
|
|
|
16188
|
-
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationCreate,
|
|
16188
|
+
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailNotification, type EmailNotificationCreate, EmailNotificationCreateNotificationTypeEnum, EmailNotificationNotificationTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type MobileDevicePushNotification, type Notification, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|