@ember-home/unbound-ts-client 1.0.67 → 1.0.69
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.69
|
|
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.69
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2153,15 +2153,6 @@ interface ConversationCreate {
|
|
|
2153
2153
|
*/
|
|
2154
2154
|
'conversationTypeData': SMSConversationDataCreate;
|
|
2155
2155
|
}
|
|
2156
|
-
/**
|
|
2157
|
-
*
|
|
2158
|
-
* @export
|
|
2159
|
-
* @enum {string}
|
|
2160
|
-
*/
|
|
2161
|
-
declare const ConversationSortBy: {
|
|
2162
|
-
readonly LastMessageSentAt: "lastMessageSentAt";
|
|
2163
|
-
};
|
|
2164
|
-
type ConversationSortBy = typeof ConversationSortBy[keyof typeof ConversationSortBy];
|
|
2165
2156
|
/**
|
|
2166
2157
|
*
|
|
2167
2158
|
* @export
|
|
@@ -4187,6 +4178,15 @@ declare const MessageDirection: {
|
|
|
4187
4178
|
readonly Outbound: "OUTBOUND";
|
|
4188
4179
|
};
|
|
4189
4180
|
type MessageDirection = typeof MessageDirection[keyof typeof MessageDirection];
|
|
4181
|
+
/**
|
|
4182
|
+
*
|
|
4183
|
+
* @export
|
|
4184
|
+
* @enum {string}
|
|
4185
|
+
*/
|
|
4186
|
+
declare const MessageSortBy: {
|
|
4187
|
+
readonly SentAt: "sentAt";
|
|
4188
|
+
};
|
|
4189
|
+
type MessageSortBy = typeof MessageSortBy[keyof typeof MessageSortBy];
|
|
4190
4190
|
/**
|
|
4191
4191
|
*
|
|
4192
4192
|
* @export
|
|
@@ -6619,7 +6619,7 @@ type SortByAuthGateway = typeof SortByAuthGateway[keyof typeof SortByAuthGateway
|
|
|
6619
6619
|
* @enum {string}
|
|
6620
6620
|
*/
|
|
6621
6621
|
declare const SortByUbFastApi: {
|
|
6622
|
-
readonly
|
|
6622
|
+
readonly LastMessageSentAt: "lastMessageSentAt";
|
|
6623
6623
|
};
|
|
6624
6624
|
type SortByUbFastApi = typeof SortByUbFastApi[keyof typeof SortByUbFastApi];
|
|
6625
6625
|
/**
|
|
@@ -9179,12 +9179,12 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9179
9179
|
* @param {number} [limit]
|
|
9180
9180
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9181
9181
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9182
|
-
* @param {
|
|
9182
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9183
9183
|
* @param {string} [inboxId]
|
|
9184
9184
|
* @param {*} [options] Override http request option.
|
|
9185
9185
|
* @throws {RequiredError}
|
|
9186
9186
|
*/
|
|
9187
|
-
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9187
|
+
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9188
9188
|
/**
|
|
9189
9189
|
*
|
|
9190
9190
|
* @summary Conversations Update
|
|
@@ -9227,12 +9227,12 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
9227
9227
|
* @param {number} [limit]
|
|
9228
9228
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9229
9229
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9230
|
-
* @param {
|
|
9230
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9231
9231
|
* @param {string} [inboxId]
|
|
9232
9232
|
* @param {*} [options] Override http request option.
|
|
9233
9233
|
* @throws {RequiredError}
|
|
9234
9234
|
*/
|
|
9235
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9235
|
+
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>>;
|
|
9236
9236
|
/**
|
|
9237
9237
|
*
|
|
9238
9238
|
* @summary Conversations Update
|
|
@@ -9275,12 +9275,12 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
9275
9275
|
* @param {number} [limit]
|
|
9276
9276
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9277
9277
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9278
|
-
* @param {
|
|
9278
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9279
9279
|
* @param {string} [inboxId]
|
|
9280
9280
|
* @param {*} [options] Override http request option.
|
|
9281
9281
|
* @throws {RequiredError}
|
|
9282
9282
|
*/
|
|
9283
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9283
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
9284
9284
|
/**
|
|
9285
9285
|
*
|
|
9286
9286
|
* @summary Conversations Update
|
|
@@ -9327,13 +9327,13 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
9327
9327
|
* @param {number} [limit]
|
|
9328
9328
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9329
9329
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9330
|
-
* @param {
|
|
9330
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
9331
9331
|
* @param {string} [inboxId]
|
|
9332
9332
|
* @param {*} [options] Override http request option.
|
|
9333
9333
|
* @throws {RequiredError}
|
|
9334
9334
|
* @memberof ConversationsApi
|
|
9335
9335
|
*/
|
|
9336
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
9336
|
+
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>>;
|
|
9337
9337
|
/**
|
|
9338
9338
|
*
|
|
9339
9339
|
* @summary Conversations Update
|
|
@@ -9909,12 +9909,12 @@ declare const MessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9909
9909
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9910
9910
|
* @param {number} [limit]
|
|
9911
9911
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9912
|
-
* @param {
|
|
9912
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9913
9913
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9914
9914
|
* @param {*} [options] Override http request option.
|
|
9915
9915
|
* @throws {RequiredError}
|
|
9916
9916
|
*/
|
|
9917
|
-
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9917
|
+
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>;
|
|
9918
9918
|
};
|
|
9919
9919
|
/**
|
|
9920
9920
|
* MessagesApi - functional programming interface
|
|
@@ -9950,12 +9950,12 @@ declare const MessagesApiFp: (configuration?: Configuration) => {
|
|
|
9950
9950
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9951
9951
|
* @param {number} [limit]
|
|
9952
9952
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9953
|
-
* @param {
|
|
9953
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9954
9954
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9955
9955
|
* @param {*} [options] Override http request option.
|
|
9956
9956
|
* @throws {RequiredError}
|
|
9957
9957
|
*/
|
|
9958
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9958
|
+
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>>;
|
|
9959
9959
|
};
|
|
9960
9960
|
/**
|
|
9961
9961
|
* MessagesApi - factory interface
|
|
@@ -9991,12 +9991,12 @@ declare const MessagesApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
9991
9991
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9992
9992
|
* @param {number} [limit]
|
|
9993
9993
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9994
|
-
* @param {
|
|
9994
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
9995
9995
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9996
9996
|
* @param {*} [options] Override http request option.
|
|
9997
9997
|
* @throws {RequiredError}
|
|
9998
9998
|
*/
|
|
9999
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9999
|
+
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>;
|
|
10000
10000
|
};
|
|
10001
10001
|
/**
|
|
10002
10002
|
* MessagesApi - object-oriented interface
|
|
@@ -10036,13 +10036,13 @@ declare class MessagesApi extends BaseAPI {
|
|
|
10036
10036
|
* @param {string} [cursor] Cursor for keyset paging
|
|
10037
10037
|
* @param {number} [limit]
|
|
10038
10038
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
10039
|
-
* @param {
|
|
10039
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
10040
10040
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
10041
10041
|
* @param {*} [options] Override http request option.
|
|
10042
10042
|
* @throws {RequiredError}
|
|
10043
10043
|
* @memberof MessagesApi
|
|
10044
10044
|
*/
|
|
10045
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
10045
|
+
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>>;
|
|
10046
10046
|
}
|
|
10047
10047
|
/**
|
|
10048
10048
|
* NotificationsApi - axios parameter creator
|
|
@@ -11483,12 +11483,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11483
11483
|
* @param {number} [limit]
|
|
11484
11484
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11485
11485
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11486
|
-
* @param {
|
|
11486
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
11487
11487
|
* @param {string} [inboxId]
|
|
11488
11488
|
* @param {*} [options] Override http request option.
|
|
11489
11489
|
* @throws {RequiredError}
|
|
11490
11490
|
*/
|
|
11491
|
-
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
11491
|
+
conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11492
11492
|
/**
|
|
11493
11493
|
* List all conversations, must filter by contact_id
|
|
11494
11494
|
* @summary Conversations List
|
|
@@ -11499,12 +11499,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11499
11499
|
* @param {number} [limit]
|
|
11500
11500
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11501
11501
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11502
|
-
* @param {
|
|
11502
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
11503
11503
|
* @param {string} [inboxId]
|
|
11504
11504
|
* @param {*} [options] Override http request option.
|
|
11505
11505
|
* @throws {RequiredError}
|
|
11506
11506
|
*/
|
|
11507
|
-
conversationsList_32: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
11507
|
+
conversationsList_32: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11508
11508
|
/**
|
|
11509
11509
|
*
|
|
11510
11510
|
* @summary Conversations Update
|
|
@@ -11857,12 +11857,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11857
11857
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11858
11858
|
* @param {number} [limit]
|
|
11859
11859
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11860
|
-
* @param {
|
|
11860
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
11861
11861
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11862
11862
|
* @param {*} [options] Override http request option.
|
|
11863
11863
|
* @throws {RequiredError}
|
|
11864
11864
|
*/
|
|
11865
|
-
messagesList: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11865
|
+
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>;
|
|
11866
11866
|
/**
|
|
11867
11867
|
*
|
|
11868
11868
|
* @summary Messages List
|
|
@@ -11875,12 +11875,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11875
11875
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11876
11876
|
* @param {number} [limit]
|
|
11877
11877
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11878
|
-
* @param {
|
|
11878
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
11879
11879
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11880
11880
|
* @param {*} [options] Override http request option.
|
|
11881
11881
|
* @throws {RequiredError}
|
|
11882
11882
|
*/
|
|
11883
|
-
messagesList_51: (conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11883
|
+
messagesList_51: (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>;
|
|
11884
11884
|
/**
|
|
11885
11885
|
*
|
|
11886
11886
|
* @summary Notifications Create
|
|
@@ -12809,12 +12809,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12809
12809
|
* @param {number} [limit]
|
|
12810
12810
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12811
12811
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12812
|
-
* @param {
|
|
12812
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
12813
12813
|
* @param {string} [inboxId]
|
|
12814
12814
|
* @param {*} [options] Override http request option.
|
|
12815
12815
|
* @throws {RequiredError}
|
|
12816
12816
|
*/
|
|
12817
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
12817
|
+
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>>;
|
|
12818
12818
|
/**
|
|
12819
12819
|
* List all conversations, must filter by contact_id
|
|
12820
12820
|
* @summary Conversations List
|
|
@@ -12825,12 +12825,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12825
12825
|
* @param {number} [limit]
|
|
12826
12826
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12827
12827
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12828
|
-
* @param {
|
|
12828
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
12829
12829
|
* @param {string} [inboxId]
|
|
12830
12830
|
* @param {*} [options] Override http request option.
|
|
12831
12831
|
* @throws {RequiredError}
|
|
12832
12832
|
*/
|
|
12833
|
-
conversationsList_32(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
12833
|
+
conversationsList_32(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>>;
|
|
12834
12834
|
/**
|
|
12835
12835
|
*
|
|
12836
12836
|
* @summary Conversations Update
|
|
@@ -13183,12 +13183,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13183
13183
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13184
13184
|
* @param {number} [limit]
|
|
13185
13185
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13186
|
-
* @param {
|
|
13186
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
13187
13187
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13188
13188
|
* @param {*} [options] Override http request option.
|
|
13189
13189
|
* @throws {RequiredError}
|
|
13190
13190
|
*/
|
|
13191
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13191
|
+
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>>;
|
|
13192
13192
|
/**
|
|
13193
13193
|
*
|
|
13194
13194
|
* @summary Messages List
|
|
@@ -13201,12 +13201,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13201
13201
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13202
13202
|
* @param {number} [limit]
|
|
13203
13203
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13204
|
-
* @param {
|
|
13204
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
13205
13205
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13206
13206
|
* @param {*} [options] Override http request option.
|
|
13207
13207
|
* @throws {RequiredError}
|
|
13208
13208
|
*/
|
|
13209
|
-
messagesList_51(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13209
|
+
messagesList_51(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>>;
|
|
13210
13210
|
/**
|
|
13211
13211
|
*
|
|
13212
13212
|
* @summary Notifications Create
|
|
@@ -14135,12 +14135,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14135
14135
|
* @param {number} [limit]
|
|
14136
14136
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14137
14137
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14138
|
-
* @param {
|
|
14138
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
14139
14139
|
* @param {string} [inboxId]
|
|
14140
14140
|
* @param {*} [options] Override http request option.
|
|
14141
14141
|
* @throws {RequiredError}
|
|
14142
14142
|
*/
|
|
14143
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
14143
|
+
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
14144
14144
|
/**
|
|
14145
14145
|
* List all conversations, must filter by contact_id
|
|
14146
14146
|
* @summary Conversations List
|
|
@@ -14151,12 +14151,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14151
14151
|
* @param {number} [limit]
|
|
14152
14152
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14153
14153
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14154
|
-
* @param {
|
|
14154
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
14155
14155
|
* @param {string} [inboxId]
|
|
14156
14156
|
* @param {*} [options] Override http request option.
|
|
14157
14157
|
* @throws {RequiredError}
|
|
14158
14158
|
*/
|
|
14159
|
-
conversationsList_32(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
14159
|
+
conversationsList_32(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
|
|
14160
14160
|
/**
|
|
14161
14161
|
*
|
|
14162
14162
|
* @summary Conversations Update
|
|
@@ -14509,12 +14509,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14509
14509
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14510
14510
|
* @param {number} [limit]
|
|
14511
14511
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14512
|
-
* @param {
|
|
14512
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
14513
14513
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14514
14514
|
* @param {*} [options] Override http request option.
|
|
14515
14515
|
* @throws {RequiredError}
|
|
14516
14516
|
*/
|
|
14517
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14517
|
+
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>;
|
|
14518
14518
|
/**
|
|
14519
14519
|
*
|
|
14520
14520
|
* @summary Messages List
|
|
@@ -14527,12 +14527,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14527
14527
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14528
14528
|
* @param {number} [limit]
|
|
14529
14529
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14530
|
-
* @param {
|
|
14530
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
14531
14531
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14532
14532
|
* @param {*} [options] Override http request option.
|
|
14533
14533
|
* @throws {RequiredError}
|
|
14534
14534
|
*/
|
|
14535
|
-
messagesList_51(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14535
|
+
messagesList_51(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>;
|
|
14536
14536
|
/**
|
|
14537
14537
|
*
|
|
14538
14538
|
* @summary Notifications Create
|
|
@@ -15527,13 +15527,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15527
15527
|
* @param {number} [limit]
|
|
15528
15528
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15529
15529
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15530
|
-
* @param {
|
|
15530
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
15531
15531
|
* @param {string} [inboxId]
|
|
15532
15532
|
* @param {*} [options] Override http request option.
|
|
15533
15533
|
* @throws {RequiredError}
|
|
15534
15534
|
* @memberof UnboundApi
|
|
15535
15535
|
*/
|
|
15536
|
-
conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
15536
|
+
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>>;
|
|
15537
15537
|
/**
|
|
15538
15538
|
* List all conversations, must filter by contact_id
|
|
15539
15539
|
* @summary Conversations List
|
|
@@ -15544,13 +15544,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15544
15544
|
* @param {number} [limit]
|
|
15545
15545
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15546
15546
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15547
|
-
* @param {
|
|
15547
|
+
* @param {SortByUbFastApi} [sortBy] Sent at
|
|
15548
15548
|
* @param {string} [inboxId]
|
|
15549
15549
|
* @param {*} [options] Override http request option.
|
|
15550
15550
|
* @throws {RequiredError}
|
|
15551
15551
|
* @memberof UnboundApi
|
|
15552
15552
|
*/
|
|
15553
|
-
conversationsList_32(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?:
|
|
15553
|
+
conversationsList_32(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>>;
|
|
15554
15554
|
/**
|
|
15555
15555
|
*
|
|
15556
15556
|
* @summary Conversations Update
|
|
@@ -15942,13 +15942,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15942
15942
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15943
15943
|
* @param {number} [limit]
|
|
15944
15944
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15945
|
-
* @param {
|
|
15945
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
15946
15946
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15947
15947
|
* @param {*} [options] Override http request option.
|
|
15948
15948
|
* @throws {RequiredError}
|
|
15949
15949
|
* @memberof UnboundApi
|
|
15950
15950
|
*/
|
|
15951
|
-
messagesList(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15951
|
+
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>>;
|
|
15952
15952
|
/**
|
|
15953
15953
|
*
|
|
15954
15954
|
* @summary Messages List
|
|
@@ -15961,13 +15961,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15961
15961
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15962
15962
|
* @param {number} [limit]
|
|
15963
15963
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15964
|
-
* @param {
|
|
15964
|
+
* @param {MessageSortBy} [sortBy] Sort key
|
|
15965
15965
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15966
15966
|
* @param {*} [options] Override http request option.
|
|
15967
15967
|
* @throws {RequiredError}
|
|
15968
15968
|
* @memberof UnboundApi
|
|
15969
15969
|
*/
|
|
15970
|
-
messagesList_51(conversationId?: string, searchString?: string, sentAtAfter?: string, sentAtBefore?: string, scheduledAtAfter?: string, scheduledAtBefore?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15970
|
+
messagesList_51(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>>;
|
|
15971
15971
|
/**
|
|
15972
15972
|
*
|
|
15973
15973
|
* @summary Notifications Create
|
|
@@ -16543,4 +16543,4 @@ declare class UsersApi extends BaseAPI {
|
|
|
16543
16543
|
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16544
16544
|
}
|
|
16545
16545
|
|
|
16546
|
-
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, 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 ConversationAIQuery, type ConversationAIQueryMessageSuggestion, type ConversationAIQueryResponse, type ConversationCreate,
|
|
16546
|
+
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, 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 ConversationAIQuery, type ConversationAIQueryMessageSuggestion, type ConversationAIQueryResponse, 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 GeneralAIQuery, type GeneralAIQueryResponse, 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, type NotificationCreate, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type Notificationtypedata1, 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, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|