@ember-home/unbound-ts-client 1.0.30 → 1.0.32
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 +316 -6
- package/dist/index.d.ts +316 -6
- package/dist/index.js +277 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +271 -0
- 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.32
|
|
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.32
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -202,6 +202,32 @@ interface APIContactsListings {
|
|
|
202
202
|
*/
|
|
203
203
|
'updatedAt': string;
|
|
204
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @export
|
|
208
|
+
* @interface APIMicroServicePrincipal
|
|
209
|
+
*/
|
|
210
|
+
interface APIMicroServicePrincipal {
|
|
211
|
+
[key: string]: any;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {string}
|
|
215
|
+
* @memberof APIMicroServicePrincipal
|
|
216
|
+
*/
|
|
217
|
+
'description': string;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* @type {string}
|
|
221
|
+
* @memberof APIMicroServicePrincipal
|
|
222
|
+
*/
|
|
223
|
+
'microserviceClientId': string;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {string}
|
|
227
|
+
* @memberof APIMicroServicePrincipal
|
|
228
|
+
*/
|
|
229
|
+
'userType'?: string;
|
|
230
|
+
}
|
|
205
231
|
/**
|
|
206
232
|
*
|
|
207
233
|
* @export
|
|
@@ -287,6 +313,12 @@ interface APIUserPrincipal {
|
|
|
287
313
|
* @memberof APIUserPrincipal
|
|
288
314
|
*/
|
|
289
315
|
'title'?: string;
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {string}
|
|
319
|
+
* @memberof APIUserPrincipal
|
|
320
|
+
*/
|
|
321
|
+
'userType'?: string;
|
|
290
322
|
}
|
|
291
323
|
/**
|
|
292
324
|
*
|
|
@@ -5945,12 +5977,132 @@ interface UserApi {
|
|
|
5945
5977
|
'userTypeData': Usertypedata;
|
|
5946
5978
|
}
|
|
5947
5979
|
/**
|
|
5948
|
-
*
|
|
5980
|
+
*
|
|
5949
5981
|
* @export
|
|
5982
|
+
* @interface UserDevice
|
|
5950
5983
|
*/
|
|
5951
|
-
|
|
5952
|
-
|
|
5984
|
+
interface UserDevice {
|
|
5985
|
+
/**
|
|
5986
|
+
*
|
|
5987
|
+
* @type {boolean}
|
|
5988
|
+
* @memberof UserDevice
|
|
5989
|
+
*/
|
|
5990
|
+
'archived'?: boolean;
|
|
5991
|
+
/**
|
|
5992
|
+
*
|
|
5993
|
+
* @type {string}
|
|
5994
|
+
* @memberof UserDevice
|
|
5995
|
+
*/
|
|
5996
|
+
'createdAt': string;
|
|
5997
|
+
/**
|
|
5998
|
+
*
|
|
5999
|
+
* @type {string}
|
|
6000
|
+
* @memberof UserDevice
|
|
6001
|
+
*/
|
|
6002
|
+
'deviceModel': string;
|
|
6003
|
+
/**
|
|
6004
|
+
*
|
|
6005
|
+
* @type {UserDeviceOs}
|
|
6006
|
+
* @memberof UserDevice
|
|
6007
|
+
*/
|
|
6008
|
+
'deviceOs': UserDeviceOs;
|
|
6009
|
+
/**
|
|
6010
|
+
*
|
|
6011
|
+
* @type {string}
|
|
6012
|
+
* @memberof UserDevice
|
|
6013
|
+
*/
|
|
6014
|
+
'deviceOsVersion': string;
|
|
6015
|
+
/**
|
|
6016
|
+
*
|
|
6017
|
+
* @type {string}
|
|
6018
|
+
* @memberof UserDevice
|
|
6019
|
+
*/
|
|
6020
|
+
'installedAppVersion': string;
|
|
6021
|
+
/**
|
|
6022
|
+
*
|
|
6023
|
+
* @type {string}
|
|
6024
|
+
* @memberof UserDevice
|
|
6025
|
+
*/
|
|
6026
|
+
'pushToken': string;
|
|
6027
|
+
/**
|
|
6028
|
+
*
|
|
6029
|
+
* @type {string}
|
|
6030
|
+
* @memberof UserDevice
|
|
6031
|
+
*/
|
|
6032
|
+
'updatedAt': string;
|
|
6033
|
+
/**
|
|
6034
|
+
*
|
|
6035
|
+
* @type {string}
|
|
6036
|
+
* @memberof UserDevice
|
|
6037
|
+
*/
|
|
6038
|
+
'userDeviceId': string;
|
|
6039
|
+
/**
|
|
6040
|
+
*
|
|
6041
|
+
* @type {string}
|
|
6042
|
+
* @memberof UserDevice
|
|
6043
|
+
*/
|
|
6044
|
+
'userId': string;
|
|
6045
|
+
}
|
|
6046
|
+
/**
|
|
6047
|
+
*
|
|
6048
|
+
* @export
|
|
6049
|
+
* @interface UserDeviceCreate
|
|
6050
|
+
*/
|
|
6051
|
+
interface UserDeviceCreate {
|
|
6052
|
+
/**
|
|
6053
|
+
*
|
|
6054
|
+
* @type {string}
|
|
6055
|
+
* @memberof UserDeviceCreate
|
|
6056
|
+
*/
|
|
6057
|
+
'deviceModel': string;
|
|
6058
|
+
/**
|
|
6059
|
+
*
|
|
6060
|
+
* @type {UserDeviceOs}
|
|
6061
|
+
* @memberof UserDeviceCreate
|
|
6062
|
+
*/
|
|
6063
|
+
'deviceOs': UserDeviceOs;
|
|
6064
|
+
/**
|
|
6065
|
+
*
|
|
6066
|
+
* @type {string}
|
|
6067
|
+
* @memberof UserDeviceCreate
|
|
6068
|
+
*/
|
|
6069
|
+
'deviceOsVersion': string;
|
|
6070
|
+
/**
|
|
6071
|
+
*
|
|
6072
|
+
* @type {string}
|
|
6073
|
+
* @memberof UserDeviceCreate
|
|
6074
|
+
*/
|
|
6075
|
+
'installedAppVersion': string;
|
|
6076
|
+
/**
|
|
6077
|
+
*
|
|
6078
|
+
* @type {string}
|
|
6079
|
+
* @memberof UserDeviceCreate
|
|
6080
|
+
*/
|
|
6081
|
+
'pushToken': string;
|
|
6082
|
+
/**
|
|
6083
|
+
*
|
|
6084
|
+
* @type {string}
|
|
6085
|
+
* @memberof UserDeviceCreate
|
|
6086
|
+
*/
|
|
6087
|
+
'userDeviceId': string;
|
|
6088
|
+
}
|
|
6089
|
+
/**
|
|
6090
|
+
*
|
|
6091
|
+
* @export
|
|
6092
|
+
* @enum {string}
|
|
6093
|
+
*/
|
|
6094
|
+
declare const UserDeviceOs: {
|
|
6095
|
+
readonly Android: "ANDROID";
|
|
6096
|
+
readonly Ios: "IOS";
|
|
6097
|
+
readonly Macos: "MACOS";
|
|
6098
|
+
readonly Web: "WEB";
|
|
5953
6099
|
};
|
|
6100
|
+
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
6101
|
+
/**
|
|
6102
|
+
* @type Usertypedata
|
|
6103
|
+
* @export
|
|
6104
|
+
*/
|
|
6105
|
+
type Usertypedata = APIMicroServicePrincipal | APIUserPrincipal;
|
|
5954
6106
|
/**
|
|
5955
6107
|
*
|
|
5956
6108
|
* @export
|
|
@@ -10915,6 +11067,22 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
10915
11067
|
telnyxWebhookTelnyxWebhooksPost_59: (requestBody: {
|
|
10916
11068
|
[key: string]: any;
|
|
10917
11069
|
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11070
|
+
/**
|
|
11071
|
+
*
|
|
11072
|
+
* @summary User Devices Create
|
|
11073
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
11074
|
+
* @param {*} [options] Override http request option.
|
|
11075
|
+
* @throws {RequiredError}
|
|
11076
|
+
*/
|
|
11077
|
+
userDevicesCreate: (userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11078
|
+
/**
|
|
11079
|
+
*
|
|
11080
|
+
* @summary User Devices Delete
|
|
11081
|
+
* @param {string} userDeviceId
|
|
11082
|
+
* @param {*} [options] Override http request option.
|
|
11083
|
+
* @throws {RequiredError}
|
|
11084
|
+
*/
|
|
11085
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10918
11086
|
/**
|
|
10919
11087
|
*
|
|
10920
11088
|
* @summary Unifiedwebhook
|
|
@@ -12194,6 +12362,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12194
12362
|
telnyxWebhookTelnyxWebhooksPost_59(requestBody: {
|
|
12195
12363
|
[key: string]: any;
|
|
12196
12364
|
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
12365
|
+
/**
|
|
12366
|
+
*
|
|
12367
|
+
* @summary User Devices Create
|
|
12368
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
12369
|
+
* @param {*} [options] Override http request option.
|
|
12370
|
+
* @throws {RequiredError}
|
|
12371
|
+
*/
|
|
12372
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDevice>>;
|
|
12373
|
+
/**
|
|
12374
|
+
*
|
|
12375
|
+
* @summary User Devices Delete
|
|
12376
|
+
* @param {string} userDeviceId
|
|
12377
|
+
* @param {*} [options] Override http request option.
|
|
12378
|
+
* @throws {RequiredError}
|
|
12379
|
+
*/
|
|
12380
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12197
12381
|
/**
|
|
12198
12382
|
*
|
|
12199
12383
|
* @summary Unifiedwebhook
|
|
@@ -13473,6 +13657,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
13473
13657
|
telnyxWebhookTelnyxWebhooksPost_59(requestBody: {
|
|
13474
13658
|
[key: string]: any;
|
|
13475
13659
|
}, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
13660
|
+
/**
|
|
13661
|
+
*
|
|
13662
|
+
* @summary User Devices Create
|
|
13663
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
13664
|
+
* @param {*} [options] Override http request option.
|
|
13665
|
+
* @throws {RequiredError}
|
|
13666
|
+
*/
|
|
13667
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<UserDevice>;
|
|
13668
|
+
/**
|
|
13669
|
+
*
|
|
13670
|
+
* @summary User Devices Delete
|
|
13671
|
+
* @param {string} userDeviceId
|
|
13672
|
+
* @param {*} [options] Override http request option.
|
|
13673
|
+
* @throws {RequiredError}
|
|
13674
|
+
*/
|
|
13675
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13476
13676
|
/**
|
|
13477
13677
|
*
|
|
13478
13678
|
* @summary Unifiedwebhook
|
|
@@ -14890,6 +15090,24 @@ declare class UnboundApi extends BaseAPI {
|
|
|
14890
15090
|
telnyxWebhookTelnyxWebhooksPost_59(requestBody: {
|
|
14891
15091
|
[key: string]: any;
|
|
14892
15092
|
}, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
15093
|
+
/**
|
|
15094
|
+
*
|
|
15095
|
+
* @summary User Devices Create
|
|
15096
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
15097
|
+
* @param {*} [options] Override http request option.
|
|
15098
|
+
* @throws {RequiredError}
|
|
15099
|
+
* @memberof UnboundApi
|
|
15100
|
+
*/
|
|
15101
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserDevice, any>>;
|
|
15102
|
+
/**
|
|
15103
|
+
*
|
|
15104
|
+
* @summary User Devices Delete
|
|
15105
|
+
* @param {string} userDeviceId
|
|
15106
|
+
* @param {*} [options] Override http request option.
|
|
15107
|
+
* @throws {RequiredError}
|
|
15108
|
+
* @memberof UnboundApi
|
|
15109
|
+
*/
|
|
15110
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
14893
15111
|
/**
|
|
14894
15112
|
*
|
|
14895
15113
|
* @summary Unifiedwebhook
|
|
@@ -14909,5 +15127,97 @@ declare class UnboundApi extends BaseAPI {
|
|
|
14909
15127
|
*/
|
|
14910
15128
|
webhook_60(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
14911
15129
|
}
|
|
15130
|
+
/**
|
|
15131
|
+
* UserDevicesApi - axios parameter creator
|
|
15132
|
+
* @export
|
|
15133
|
+
*/
|
|
15134
|
+
declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
15135
|
+
/**
|
|
15136
|
+
*
|
|
15137
|
+
* @summary User Devices Create
|
|
15138
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
15139
|
+
* @param {*} [options] Override http request option.
|
|
15140
|
+
* @throws {RequiredError}
|
|
15141
|
+
*/
|
|
15142
|
+
userDevicesCreate: (userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15143
|
+
/**
|
|
15144
|
+
*
|
|
15145
|
+
* @summary User Devices Delete
|
|
15146
|
+
* @param {string} userDeviceId
|
|
15147
|
+
* @param {*} [options] Override http request option.
|
|
15148
|
+
* @throws {RequiredError}
|
|
15149
|
+
*/
|
|
15150
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15151
|
+
};
|
|
15152
|
+
/**
|
|
15153
|
+
* UserDevicesApi - functional programming interface
|
|
15154
|
+
* @export
|
|
15155
|
+
*/
|
|
15156
|
+
declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
15157
|
+
/**
|
|
15158
|
+
*
|
|
15159
|
+
* @summary User Devices Create
|
|
15160
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
15161
|
+
* @param {*} [options] Override http request option.
|
|
15162
|
+
* @throws {RequiredError}
|
|
15163
|
+
*/
|
|
15164
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDevice>>;
|
|
15165
|
+
/**
|
|
15166
|
+
*
|
|
15167
|
+
* @summary User Devices Delete
|
|
15168
|
+
* @param {string} userDeviceId
|
|
15169
|
+
* @param {*} [options] Override http request option.
|
|
15170
|
+
* @throws {RequiredError}
|
|
15171
|
+
*/
|
|
15172
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15173
|
+
};
|
|
15174
|
+
/**
|
|
15175
|
+
* UserDevicesApi - factory interface
|
|
15176
|
+
* @export
|
|
15177
|
+
*/
|
|
15178
|
+
declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
15179
|
+
/**
|
|
15180
|
+
*
|
|
15181
|
+
* @summary User Devices Create
|
|
15182
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
15183
|
+
* @param {*} [options] Override http request option.
|
|
15184
|
+
* @throws {RequiredError}
|
|
15185
|
+
*/
|
|
15186
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<UserDevice>;
|
|
15187
|
+
/**
|
|
15188
|
+
*
|
|
15189
|
+
* @summary User Devices Delete
|
|
15190
|
+
* @param {string} userDeviceId
|
|
15191
|
+
* @param {*} [options] Override http request option.
|
|
15192
|
+
* @throws {RequiredError}
|
|
15193
|
+
*/
|
|
15194
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15195
|
+
};
|
|
15196
|
+
/**
|
|
15197
|
+
* UserDevicesApi - object-oriented interface
|
|
15198
|
+
* @export
|
|
15199
|
+
* @class UserDevicesApi
|
|
15200
|
+
* @extends {BaseAPI}
|
|
15201
|
+
*/
|
|
15202
|
+
declare class UserDevicesApi extends BaseAPI {
|
|
15203
|
+
/**
|
|
15204
|
+
*
|
|
15205
|
+
* @summary User Devices Create
|
|
15206
|
+
* @param {UserDeviceCreate} userDeviceCreate
|
|
15207
|
+
* @param {*} [options] Override http request option.
|
|
15208
|
+
* @throws {RequiredError}
|
|
15209
|
+
* @memberof UserDevicesApi
|
|
15210
|
+
*/
|
|
15211
|
+
userDevicesCreate(userDeviceCreate: UserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserDevice, any>>;
|
|
15212
|
+
/**
|
|
15213
|
+
*
|
|
15214
|
+
* @summary User Devices Delete
|
|
15215
|
+
* @param {string} userDeviceId
|
|
15216
|
+
* @param {*} [options] Override http request option.
|
|
15217
|
+
* @throws {RequiredError}
|
|
15218
|
+
* @memberof UserDevicesApi
|
|
15219
|
+
*/
|
|
15220
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
15221
|
+
}
|
|
14912
15222
|
|
|
14913
|
-
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, 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 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, 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 Notification, NotificationStatus, NotificationType, type NotificationTypeData, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, 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 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 Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|
|
15223
|
+
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 Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, 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 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, 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 Notification, NotificationStatus, NotificationType, type NotificationTypeData, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, 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 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 };
|