@ember-home/unbound-ts-client 1.0.61 → 1.0.63
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 +123 -19
- package/dist/index.d.ts +123 -19
- package/dist/index.js +149 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +136 -26
- 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.63
|
|
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.63
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4297,6 +4297,43 @@ interface Notification {
|
|
|
4297
4297
|
*/
|
|
4298
4298
|
'updatedAt': string;
|
|
4299
4299
|
}
|
|
4300
|
+
/**
|
|
4301
|
+
*
|
|
4302
|
+
* @export
|
|
4303
|
+
* @interface NotificationCreate
|
|
4304
|
+
*/
|
|
4305
|
+
interface NotificationCreate {
|
|
4306
|
+
/**
|
|
4307
|
+
*
|
|
4308
|
+
* @type {string}
|
|
4309
|
+
* @memberof NotificationCreate
|
|
4310
|
+
*/
|
|
4311
|
+
'body': string;
|
|
4312
|
+
/**
|
|
4313
|
+
*
|
|
4314
|
+
* @type {Notificationtypedata1}
|
|
4315
|
+
* @memberof NotificationCreate
|
|
4316
|
+
*/
|
|
4317
|
+
'notificationTypeData': Notificationtypedata1;
|
|
4318
|
+
/**
|
|
4319
|
+
*
|
|
4320
|
+
* @type {Array<string>}
|
|
4321
|
+
* @memberof NotificationCreate
|
|
4322
|
+
*/
|
|
4323
|
+
'recipients': Array<string>;
|
|
4324
|
+
/**
|
|
4325
|
+
*
|
|
4326
|
+
* @type {string}
|
|
4327
|
+
* @memberof NotificationCreate
|
|
4328
|
+
*/
|
|
4329
|
+
'subject': string;
|
|
4330
|
+
/**
|
|
4331
|
+
*
|
|
4332
|
+
* @type {number}
|
|
4333
|
+
* @memberof NotificationCreate
|
|
4334
|
+
*/
|
|
4335
|
+
'ttl'?: number;
|
|
4336
|
+
}
|
|
4300
4337
|
/**
|
|
4301
4338
|
*
|
|
4302
4339
|
* @export
|
|
@@ -4328,6 +4365,15 @@ type Notificationtypedata = {
|
|
|
4328
4365
|
} & EmailNotification | {
|
|
4329
4366
|
notificationType: 'PUSH';
|
|
4330
4367
|
} & PushNotification;
|
|
4368
|
+
/**
|
|
4369
|
+
* @type Notificationtypedata1
|
|
4370
|
+
* @export
|
|
4371
|
+
*/
|
|
4372
|
+
type Notificationtypedata1 = {
|
|
4373
|
+
notificationType: 'EMAIL';
|
|
4374
|
+
} & EmailNotificationCreate | {
|
|
4375
|
+
notificationType: 'PUSH';
|
|
4376
|
+
} & PushNotificationCreate;
|
|
4331
4377
|
/**
|
|
4332
4378
|
*
|
|
4333
4379
|
* @export
|
|
@@ -9993,11 +10039,11 @@ declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9993
10039
|
/**
|
|
9994
10040
|
*
|
|
9995
10041
|
* @summary Notifications Create
|
|
9996
|
-
* @param {
|
|
10042
|
+
* @param {NotificationCreate} notificationCreate
|
|
9997
10043
|
* @param {*} [options] Override http request option.
|
|
9998
10044
|
* @throws {RequiredError}
|
|
9999
10045
|
*/
|
|
10000
|
-
notificationsCreate: (
|
|
10046
|
+
notificationsCreate: (notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10001
10047
|
};
|
|
10002
10048
|
/**
|
|
10003
10049
|
* NotificationsApi - functional programming interface
|
|
@@ -10007,11 +10053,11 @@ declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
10007
10053
|
/**
|
|
10008
10054
|
*
|
|
10009
10055
|
* @summary Notifications Create
|
|
10010
|
-
* @param {
|
|
10056
|
+
* @param {NotificationCreate} notificationCreate
|
|
10011
10057
|
* @param {*} [options] Override http request option.
|
|
10012
10058
|
* @throws {RequiredError}
|
|
10013
10059
|
*/
|
|
10014
|
-
notificationsCreate(
|
|
10060
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Notification>>>;
|
|
10015
10061
|
};
|
|
10016
10062
|
/**
|
|
10017
10063
|
* NotificationsApi - factory interface
|
|
@@ -10021,11 +10067,11 @@ declare const NotificationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
10021
10067
|
/**
|
|
10022
10068
|
*
|
|
10023
10069
|
* @summary Notifications Create
|
|
10024
|
-
* @param {
|
|
10070
|
+
* @param {NotificationCreate} notificationCreate
|
|
10025
10071
|
* @param {*} [options] Override http request option.
|
|
10026
10072
|
* @throws {RequiredError}
|
|
10027
10073
|
*/
|
|
10028
|
-
notificationsCreate(
|
|
10074
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): AxiosPromise<Array<Notification>>;
|
|
10029
10075
|
};
|
|
10030
10076
|
/**
|
|
10031
10077
|
* NotificationsApi - object-oriented interface
|
|
@@ -10037,12 +10083,12 @@ declare class NotificationsApi extends BaseAPI {
|
|
|
10037
10083
|
/**
|
|
10038
10084
|
*
|
|
10039
10085
|
* @summary Notifications Create
|
|
10040
|
-
* @param {
|
|
10086
|
+
* @param {NotificationCreate} notificationCreate
|
|
10041
10087
|
* @param {*} [options] Override http request option.
|
|
10042
10088
|
* @throws {RequiredError}
|
|
10043
10089
|
* @memberof NotificationsApi
|
|
10044
10090
|
*/
|
|
10045
|
-
notificationsCreate(
|
|
10091
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Notification[], any>>;
|
|
10046
10092
|
}
|
|
10047
10093
|
/**
|
|
10048
10094
|
* PermissionsApi - axios parameter creator
|
|
@@ -11825,11 +11871,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11825
11871
|
/**
|
|
11826
11872
|
*
|
|
11827
11873
|
* @summary Notifications Create
|
|
11828
|
-
* @param {
|
|
11874
|
+
* @param {NotificationCreate} notificationCreate
|
|
11829
11875
|
* @param {*} [options] Override http request option.
|
|
11830
11876
|
* @throws {RequiredError}
|
|
11831
11877
|
*/
|
|
11832
|
-
notificationsCreate: (
|
|
11878
|
+
notificationsCreate: (notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11833
11879
|
/**
|
|
11834
11880
|
*
|
|
11835
11881
|
* @summary Permissions Create
|
|
@@ -12126,6 +12172,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
12126
12172
|
* @throws {RequiredError}
|
|
12127
12173
|
*/
|
|
12128
12174
|
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12175
|
+
/**
|
|
12176
|
+
* Fetch users for the current account from auth_gateway.
|
|
12177
|
+
* @summary Users List
|
|
12178
|
+
* @param {*} [options] Override http request option.
|
|
12179
|
+
* @throws {RequiredError}
|
|
12180
|
+
*/
|
|
12181
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12129
12182
|
/**
|
|
12130
12183
|
*
|
|
12131
12184
|
* @summary Unifiedwebhook
|
|
@@ -13144,11 +13197,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13144
13197
|
/**
|
|
13145
13198
|
*
|
|
13146
13199
|
* @summary Notifications Create
|
|
13147
|
-
* @param {
|
|
13200
|
+
* @param {NotificationCreate} notificationCreate
|
|
13148
13201
|
* @param {*} [options] Override http request option.
|
|
13149
13202
|
* @throws {RequiredError}
|
|
13150
13203
|
*/
|
|
13151
|
-
notificationsCreate(
|
|
13204
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Notification>>>;
|
|
13152
13205
|
/**
|
|
13153
13206
|
*
|
|
13154
13207
|
* @summary Permissions Create
|
|
@@ -13445,6 +13498,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13445
13498
|
* @throws {RequiredError}
|
|
13446
13499
|
*/
|
|
13447
13500
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13501
|
+
/**
|
|
13502
|
+
* Fetch users for the current account from auth_gateway.
|
|
13503
|
+
* @summary Users List
|
|
13504
|
+
* @param {*} [options] Override http request option.
|
|
13505
|
+
* @throws {RequiredError}
|
|
13506
|
+
*/
|
|
13507
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
13448
13508
|
/**
|
|
13449
13509
|
*
|
|
13450
13510
|
* @summary Unifiedwebhook
|
|
@@ -14463,11 +14523,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14463
14523
|
/**
|
|
14464
14524
|
*
|
|
14465
14525
|
* @summary Notifications Create
|
|
14466
|
-
* @param {
|
|
14526
|
+
* @param {NotificationCreate} notificationCreate
|
|
14467
14527
|
* @param {*} [options] Override http request option.
|
|
14468
14528
|
* @throws {RequiredError}
|
|
14469
14529
|
*/
|
|
14470
|
-
notificationsCreate(
|
|
14530
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): AxiosPromise<Array<Notification>>;
|
|
14471
14531
|
/**
|
|
14472
14532
|
*
|
|
14473
14533
|
* @summary Permissions Create
|
|
@@ -14764,6 +14824,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14764
14824
|
* @throws {RequiredError}
|
|
14765
14825
|
*/
|
|
14766
14826
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14827
|
+
/**
|
|
14828
|
+
* Fetch users for the current account from auth_gateway.
|
|
14829
|
+
* @summary Users List
|
|
14830
|
+
* @param {*} [options] Override http request option.
|
|
14831
|
+
* @throws {RequiredError}
|
|
14832
|
+
*/
|
|
14833
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
14767
14834
|
/**
|
|
14768
14835
|
*
|
|
14769
14836
|
* @summary Unifiedwebhook
|
|
@@ -15891,12 +15958,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15891
15958
|
/**
|
|
15892
15959
|
*
|
|
15893
15960
|
* @summary Notifications Create
|
|
15894
|
-
* @param {
|
|
15961
|
+
* @param {NotificationCreate} notificationCreate
|
|
15895
15962
|
* @param {*} [options] Override http request option.
|
|
15896
15963
|
* @throws {RequiredError}
|
|
15897
15964
|
* @memberof UnboundApi
|
|
15898
15965
|
*/
|
|
15899
|
-
notificationsCreate(
|
|
15966
|
+
notificationsCreate(notificationCreate: NotificationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Notification[], any>>;
|
|
15900
15967
|
/**
|
|
15901
15968
|
*
|
|
15902
15969
|
* @summary Permissions Create
|
|
@@ -16226,6 +16293,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
16226
16293
|
* @memberof UnboundApi
|
|
16227
16294
|
*/
|
|
16228
16295
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
16296
|
+
/**
|
|
16297
|
+
* Fetch users for the current account from auth_gateway.
|
|
16298
|
+
* @summary Users List
|
|
16299
|
+
* @param {*} [options] Override http request option.
|
|
16300
|
+
* @throws {RequiredError}
|
|
16301
|
+
* @memberof UnboundApi
|
|
16302
|
+
*/
|
|
16303
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16229
16304
|
/**
|
|
16230
16305
|
*
|
|
16231
16306
|
* @summary Unifiedwebhook
|
|
@@ -16357,6 +16432,13 @@ declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16357
16432
|
* @throws {RequiredError}
|
|
16358
16433
|
*/
|
|
16359
16434
|
getUser: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16435
|
+
/**
|
|
16436
|
+
* Fetch users for the current account from auth_gateway.
|
|
16437
|
+
* @summary Users List
|
|
16438
|
+
* @param {*} [options] Override http request option.
|
|
16439
|
+
* @throws {RequiredError}
|
|
16440
|
+
*/
|
|
16441
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16360
16442
|
};
|
|
16361
16443
|
/**
|
|
16362
16444
|
* UsersApi - functional programming interface
|
|
@@ -16378,6 +16460,13 @@ declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16378
16460
|
* @throws {RequiredError}
|
|
16379
16461
|
*/
|
|
16380
16462
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
16463
|
+
/**
|
|
16464
|
+
* Fetch users for the current account from auth_gateway.
|
|
16465
|
+
* @summary Users List
|
|
16466
|
+
* @param {*} [options] Override http request option.
|
|
16467
|
+
* @throws {RequiredError}
|
|
16468
|
+
*/
|
|
16469
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
16381
16470
|
};
|
|
16382
16471
|
/**
|
|
16383
16472
|
* UsersApi - factory interface
|
|
@@ -16399,6 +16488,13 @@ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
16399
16488
|
* @throws {RequiredError}
|
|
16400
16489
|
*/
|
|
16401
16490
|
getUser(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
16491
|
+
/**
|
|
16492
|
+
* Fetch users for the current account from auth_gateway.
|
|
16493
|
+
* @summary Users List
|
|
16494
|
+
* @param {*} [options] Override http request option.
|
|
16495
|
+
* @throws {RequiredError}
|
|
16496
|
+
*/
|
|
16497
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
16402
16498
|
};
|
|
16403
16499
|
/**
|
|
16404
16500
|
* UsersApi - object-oriented interface
|
|
@@ -16424,6 +16520,14 @@ declare class UsersApi extends BaseAPI {
|
|
|
16424
16520
|
* @memberof UsersApi
|
|
16425
16521
|
*/
|
|
16426
16522
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
16523
|
+
/**
|
|
16524
|
+
* Fetch users for the current account from auth_gateway.
|
|
16525
|
+
* @summary Users List
|
|
16526
|
+
* @param {*} [options] Override http request option.
|
|
16527
|
+
* @throws {RequiredError}
|
|
16528
|
+
* @memberof UsersApi
|
|
16529
|
+
*/
|
|
16530
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16427
16531
|
}
|
|
16428
16532
|
|
|
16429
|
-
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 ConversationAIQuerySuggestion, type ConversationCreate, ConversationSortBy, 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, 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, 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 };
|
|
16533
|
+
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 ConversationAIQuerySuggestion, type ConversationCreate, ConversationSortBy, 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, 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 };
|