@ember-home/unbound-ts-client 1.0.40 → 1.0.42

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 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.40
8
+ * The version of the OpenAPI document: 1.0.42
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.40
100
+ * The version of the OpenAPI document: 1.0.42
101
101
  *
102
102
  *
103
103
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2314,6 +2314,40 @@ declare const EmailInboxInboxTypeEnum: {
2314
2314
  readonly Email: "EMAIL";
2315
2315
  };
2316
2316
  type EmailInboxInboxTypeEnum = typeof EmailInboxInboxTypeEnum[keyof typeof EmailInboxInboxTypeEnum];
2317
+ /**
2318
+ *
2319
+ * @export
2320
+ * @interface EmailNotification
2321
+ */
2322
+ interface EmailNotification {
2323
+ /**
2324
+ *
2325
+ * @type {string}
2326
+ * @memberof EmailNotification
2327
+ */
2328
+ 'notificationType'?: EmailNotificationNotificationTypeEnum;
2329
+ }
2330
+ declare const EmailNotificationNotificationTypeEnum: {
2331
+ readonly Email: "EMAIL";
2332
+ };
2333
+ type EmailNotificationNotificationTypeEnum = typeof EmailNotificationNotificationTypeEnum[keyof typeof EmailNotificationNotificationTypeEnum];
2334
+ /**
2335
+ *
2336
+ * @export
2337
+ * @interface EmailNotificationCreate
2338
+ */
2339
+ interface EmailNotificationCreate {
2340
+ /**
2341
+ *
2342
+ * @type {string}
2343
+ * @memberof EmailNotificationCreate
2344
+ */
2345
+ 'notificationType'?: EmailNotificationCreateNotificationTypeEnum;
2346
+ }
2347
+ declare const EmailNotificationCreateNotificationTypeEnum: {
2348
+ readonly Email: "EMAIL";
2349
+ };
2350
+ type EmailNotificationCreateNotificationTypeEnum = typeof EmailNotificationCreateNotificationTypeEnum[keyof typeof EmailNotificationCreateNotificationTypeEnum];
2317
2351
  /**
2318
2352
  *
2319
2353
  * @export
@@ -4121,6 +4155,25 @@ type Messagetypedata1 = {
4121
4155
  } & RentalProviderMessageCreate | {
4122
4156
  messageType: 'TEXT';
4123
4157
  } & SMSMessageCreate;
4158
+ /**
4159
+ *
4160
+ * @export
4161
+ * @interface MobileDevicePushNotification
4162
+ */
4163
+ interface MobileDevicePushNotification {
4164
+ /**
4165
+ *
4166
+ * @type {string}
4167
+ * @memberof MobileDevicePushNotification
4168
+ */
4169
+ 'deviceId': string;
4170
+ /**
4171
+ *
4172
+ * @type {NotificationStatus}
4173
+ * @memberof MobileDevicePushNotification
4174
+ */
4175
+ 'status'?: NotificationStatus;
4176
+ }
4124
4177
  /**
4125
4178
  *
4126
4179
  * @export
@@ -4139,14 +4192,6 @@ interface Notification {
4139
4192
  * @memberof Notification
4140
4193
  */
4141
4194
  'createdAt': string;
4142
- /**
4143
- *
4144
- * @type {{ [key: string]: any; }}
4145
- * @memberof Notification
4146
- */
4147
- 'metadata'?: {
4148
- [key: string]: any;
4149
- };
4150
4195
  /**
4151
4196
  *
4152
4197
  * @type {string}
@@ -4155,16 +4200,16 @@ interface Notification {
4155
4200
  'notificationQueueId': string;
4156
4201
  /**
4157
4202
  *
4158
- * @type {NotificationType}
4203
+ * @type {string}
4159
4204
  * @memberof Notification
4160
4205
  */
4161
- 'notificationType': NotificationType;
4206
+ 'notificationType': string;
4162
4207
  /**
4163
4208
  *
4164
- * @type {string}
4209
+ * @type {Notificationtypedata}
4165
4210
  * @memberof Notification
4166
4211
  */
4167
- 'pushToken': string;
4212
+ 'notificationTypeData': Notificationtypedata;
4168
4213
  /**
4169
4214
  *
4170
4215
  * @type {string}
@@ -4195,54 +4240,38 @@ interface Notification {
4195
4240
  * @memberof Notification
4196
4241
  */
4197
4242
  'updatedAt': string;
4198
- /**
4199
- *
4200
- * @type {string}
4201
- * @memberof Notification
4202
- */
4203
- 'userDeviceId': string;
4204
4243
  }
4205
4244
  /**
4206
4245
  *
4207
4246
  * @export
4208
4247
  * @enum {string}
4209
4248
  */
4210
- declare const NotificationStatus: {
4211
- readonly Queued: "QUEUED";
4212
- readonly Sent: "SENT";
4213
- readonly Failed: "FAILED";
4249
+ declare const NotificationPriority: {
4250
+ readonly High: "HIGH";
4251
+ readonly Normal: "NORMAL";
4252
+ readonly Low: "LOW";
4214
4253
  };
4215
- type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
4254
+ type NotificationPriority = typeof NotificationPriority[keyof typeof NotificationPriority];
4216
4255
  /**
4217
4256
  *
4218
4257
  * @export
4219
4258
  * @enum {string}
4220
4259
  */
4221
- declare const NotificationType: {
4222
- readonly Push: "PUSH";
4260
+ declare const NotificationStatus: {
4261
+ readonly Queued: "QUEUED";
4262
+ readonly Sent: "SENT";
4263
+ readonly Failed: "FAILED";
4223
4264
  };
4224
- type NotificationType = typeof NotificationType[keyof typeof NotificationType];
4265
+ type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
4225
4266
  /**
4226
- *
4267
+ * @type Notificationtypedata
4227
4268
  * @export
4228
- * @interface NotificationTypeData
4229
4269
  */
4230
- interface NotificationTypeData {
4231
- /**
4232
- *
4233
- * @type {{ [key: string]: any; }}
4234
- * @memberof NotificationTypeData
4235
- */
4236
- 'metadata'?: {
4237
- [key: string]: any;
4238
- };
4239
- /**
4240
- *
4241
- * @type {NotificationType}
4242
- * @memberof NotificationTypeData
4243
- */
4244
- 'notification_type': NotificationType;
4245
- }
4270
+ type Notificationtypedata = {
4271
+ notificationType: 'EMAIL';
4272
+ } & EmailNotification | {
4273
+ notificationType: 'PUSH';
4274
+ } & PushNotification;
4246
4275
  /**
4247
4276
  *
4248
4277
  * @export
@@ -5351,6 +5380,94 @@ interface ProviderUpdate {
5351
5380
  */
5352
5381
  'webhookPassword'?: string;
5353
5382
  }
5383
+ /**
5384
+ *
5385
+ * @export
5386
+ * @interface PushNotification
5387
+ */
5388
+ interface PushNotification {
5389
+ /**
5390
+ *
5391
+ * @type {number}
5392
+ * @memberof PushNotification
5393
+ */
5394
+ 'badgeCount'?: number;
5395
+ /**
5396
+ *
5397
+ * @type {Array<string>}
5398
+ * @memberof PushNotification
5399
+ */
5400
+ 'eventSubjects'?: Array<string>;
5401
+ /**
5402
+ *
5403
+ * @type {string}
5404
+ * @memberof PushNotification
5405
+ */
5406
+ 'navigationUrl'?: string;
5407
+ /**
5408
+ *
5409
+ * @type {string}
5410
+ * @memberof PushNotification
5411
+ */
5412
+ 'notificationType'?: PushNotificationNotificationTypeEnum;
5413
+ /**
5414
+ *
5415
+ * @type {NotificationPriority}
5416
+ * @memberof PushNotification
5417
+ */
5418
+ 'priority'?: NotificationPriority;
5419
+ /**
5420
+ *
5421
+ * @type {Array<MobileDevicePushNotification>}
5422
+ * @memberof PushNotification
5423
+ */
5424
+ 'userDevices'?: Array<MobileDevicePushNotification>;
5425
+ }
5426
+ declare const PushNotificationNotificationTypeEnum: {
5427
+ readonly Push: "PUSH";
5428
+ };
5429
+ type PushNotificationNotificationTypeEnum = typeof PushNotificationNotificationTypeEnum[keyof typeof PushNotificationNotificationTypeEnum];
5430
+ /**
5431
+ *
5432
+ * @export
5433
+ * @interface PushNotificationCreate
5434
+ */
5435
+ interface PushNotificationCreate {
5436
+ /**
5437
+ *
5438
+ * @type {number}
5439
+ * @memberof PushNotificationCreate
5440
+ */
5441
+ 'badgeCount'?: number;
5442
+ /**
5443
+ *
5444
+ * @type {Array<string>}
5445
+ * @memberof PushNotificationCreate
5446
+ */
5447
+ 'eventSubjects'?: Array<string>;
5448
+ /**
5449
+ *
5450
+ * @type {string}
5451
+ * @memberof PushNotificationCreate
5452
+ */
5453
+ 'navigationUrl'?: string;
5454
+ /**
5455
+ *
5456
+ * @type {string}
5457
+ * @memberof PushNotificationCreate
5458
+ */
5459
+ 'notificationType'?: PushNotificationCreateNotificationTypeEnum;
5460
+ /**
5461
+ *
5462
+ * @type {NotificationPriority}
5463
+ * @memberof PushNotificationCreate
5464
+ */
5465
+ 'priority'?: NotificationPriority;
5466
+ }
5467
+ declare const PushNotificationCreateNotificationTypeEnum: {
5468
+ readonly Push: "PUSH";
5469
+ };
5470
+ type PushNotificationCreateNotificationTypeEnum = typeof PushNotificationCreateNotificationTypeEnum[keyof typeof PushNotificationCreateNotificationTypeEnum];
5354
5471
  /**
5355
5472
  *
5356
5473
  * @export
@@ -16068,4 +16185,4 @@ declare class UserDevicesApi extends BaseAPI {
16068
16185
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
16069
16186
  }
16070
16187
 
16071
- export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, 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, 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 EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type 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 };
16188
+ export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, 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, 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 Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type MobileDevicePushNotification, type Notification, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
package/dist/index.d.ts 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.40
8
+ * The version of the OpenAPI document: 1.0.42
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.40
100
+ * The version of the OpenAPI document: 1.0.42
101
101
  *
102
102
  *
103
103
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2314,6 +2314,40 @@ declare const EmailInboxInboxTypeEnum: {
2314
2314
  readonly Email: "EMAIL";
2315
2315
  };
2316
2316
  type EmailInboxInboxTypeEnum = typeof EmailInboxInboxTypeEnum[keyof typeof EmailInboxInboxTypeEnum];
2317
+ /**
2318
+ *
2319
+ * @export
2320
+ * @interface EmailNotification
2321
+ */
2322
+ interface EmailNotification {
2323
+ /**
2324
+ *
2325
+ * @type {string}
2326
+ * @memberof EmailNotification
2327
+ */
2328
+ 'notificationType'?: EmailNotificationNotificationTypeEnum;
2329
+ }
2330
+ declare const EmailNotificationNotificationTypeEnum: {
2331
+ readonly Email: "EMAIL";
2332
+ };
2333
+ type EmailNotificationNotificationTypeEnum = typeof EmailNotificationNotificationTypeEnum[keyof typeof EmailNotificationNotificationTypeEnum];
2334
+ /**
2335
+ *
2336
+ * @export
2337
+ * @interface EmailNotificationCreate
2338
+ */
2339
+ interface EmailNotificationCreate {
2340
+ /**
2341
+ *
2342
+ * @type {string}
2343
+ * @memberof EmailNotificationCreate
2344
+ */
2345
+ 'notificationType'?: EmailNotificationCreateNotificationTypeEnum;
2346
+ }
2347
+ declare const EmailNotificationCreateNotificationTypeEnum: {
2348
+ readonly Email: "EMAIL";
2349
+ };
2350
+ type EmailNotificationCreateNotificationTypeEnum = typeof EmailNotificationCreateNotificationTypeEnum[keyof typeof EmailNotificationCreateNotificationTypeEnum];
2317
2351
  /**
2318
2352
  *
2319
2353
  * @export
@@ -4121,6 +4155,25 @@ type Messagetypedata1 = {
4121
4155
  } & RentalProviderMessageCreate | {
4122
4156
  messageType: 'TEXT';
4123
4157
  } & SMSMessageCreate;
4158
+ /**
4159
+ *
4160
+ * @export
4161
+ * @interface MobileDevicePushNotification
4162
+ */
4163
+ interface MobileDevicePushNotification {
4164
+ /**
4165
+ *
4166
+ * @type {string}
4167
+ * @memberof MobileDevicePushNotification
4168
+ */
4169
+ 'deviceId': string;
4170
+ /**
4171
+ *
4172
+ * @type {NotificationStatus}
4173
+ * @memberof MobileDevicePushNotification
4174
+ */
4175
+ 'status'?: NotificationStatus;
4176
+ }
4124
4177
  /**
4125
4178
  *
4126
4179
  * @export
@@ -4139,14 +4192,6 @@ interface Notification {
4139
4192
  * @memberof Notification
4140
4193
  */
4141
4194
  'createdAt': string;
4142
- /**
4143
- *
4144
- * @type {{ [key: string]: any; }}
4145
- * @memberof Notification
4146
- */
4147
- 'metadata'?: {
4148
- [key: string]: any;
4149
- };
4150
4195
  /**
4151
4196
  *
4152
4197
  * @type {string}
@@ -4155,16 +4200,16 @@ interface Notification {
4155
4200
  'notificationQueueId': string;
4156
4201
  /**
4157
4202
  *
4158
- * @type {NotificationType}
4203
+ * @type {string}
4159
4204
  * @memberof Notification
4160
4205
  */
4161
- 'notificationType': NotificationType;
4206
+ 'notificationType': string;
4162
4207
  /**
4163
4208
  *
4164
- * @type {string}
4209
+ * @type {Notificationtypedata}
4165
4210
  * @memberof Notification
4166
4211
  */
4167
- 'pushToken': string;
4212
+ 'notificationTypeData': Notificationtypedata;
4168
4213
  /**
4169
4214
  *
4170
4215
  * @type {string}
@@ -4195,54 +4240,38 @@ interface Notification {
4195
4240
  * @memberof Notification
4196
4241
  */
4197
4242
  'updatedAt': string;
4198
- /**
4199
- *
4200
- * @type {string}
4201
- * @memberof Notification
4202
- */
4203
- 'userDeviceId': string;
4204
4243
  }
4205
4244
  /**
4206
4245
  *
4207
4246
  * @export
4208
4247
  * @enum {string}
4209
4248
  */
4210
- declare const NotificationStatus: {
4211
- readonly Queued: "QUEUED";
4212
- readonly Sent: "SENT";
4213
- readonly Failed: "FAILED";
4249
+ declare const NotificationPriority: {
4250
+ readonly High: "HIGH";
4251
+ readonly Normal: "NORMAL";
4252
+ readonly Low: "LOW";
4214
4253
  };
4215
- type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
4254
+ type NotificationPriority = typeof NotificationPriority[keyof typeof NotificationPriority];
4216
4255
  /**
4217
4256
  *
4218
4257
  * @export
4219
4258
  * @enum {string}
4220
4259
  */
4221
- declare const NotificationType: {
4222
- readonly Push: "PUSH";
4260
+ declare const NotificationStatus: {
4261
+ readonly Queued: "QUEUED";
4262
+ readonly Sent: "SENT";
4263
+ readonly Failed: "FAILED";
4223
4264
  };
4224
- type NotificationType = typeof NotificationType[keyof typeof NotificationType];
4265
+ type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
4225
4266
  /**
4226
- *
4267
+ * @type Notificationtypedata
4227
4268
  * @export
4228
- * @interface NotificationTypeData
4229
4269
  */
4230
- interface NotificationTypeData {
4231
- /**
4232
- *
4233
- * @type {{ [key: string]: any; }}
4234
- * @memberof NotificationTypeData
4235
- */
4236
- 'metadata'?: {
4237
- [key: string]: any;
4238
- };
4239
- /**
4240
- *
4241
- * @type {NotificationType}
4242
- * @memberof NotificationTypeData
4243
- */
4244
- 'notification_type': NotificationType;
4245
- }
4270
+ type Notificationtypedata = {
4271
+ notificationType: 'EMAIL';
4272
+ } & EmailNotification | {
4273
+ notificationType: 'PUSH';
4274
+ } & PushNotification;
4246
4275
  /**
4247
4276
  *
4248
4277
  * @export
@@ -5351,6 +5380,94 @@ interface ProviderUpdate {
5351
5380
  */
5352
5381
  'webhookPassword'?: string;
5353
5382
  }
5383
+ /**
5384
+ *
5385
+ * @export
5386
+ * @interface PushNotification
5387
+ */
5388
+ interface PushNotification {
5389
+ /**
5390
+ *
5391
+ * @type {number}
5392
+ * @memberof PushNotification
5393
+ */
5394
+ 'badgeCount'?: number;
5395
+ /**
5396
+ *
5397
+ * @type {Array<string>}
5398
+ * @memberof PushNotification
5399
+ */
5400
+ 'eventSubjects'?: Array<string>;
5401
+ /**
5402
+ *
5403
+ * @type {string}
5404
+ * @memberof PushNotification
5405
+ */
5406
+ 'navigationUrl'?: string;
5407
+ /**
5408
+ *
5409
+ * @type {string}
5410
+ * @memberof PushNotification
5411
+ */
5412
+ 'notificationType'?: PushNotificationNotificationTypeEnum;
5413
+ /**
5414
+ *
5415
+ * @type {NotificationPriority}
5416
+ * @memberof PushNotification
5417
+ */
5418
+ 'priority'?: NotificationPriority;
5419
+ /**
5420
+ *
5421
+ * @type {Array<MobileDevicePushNotification>}
5422
+ * @memberof PushNotification
5423
+ */
5424
+ 'userDevices'?: Array<MobileDevicePushNotification>;
5425
+ }
5426
+ declare const PushNotificationNotificationTypeEnum: {
5427
+ readonly Push: "PUSH";
5428
+ };
5429
+ type PushNotificationNotificationTypeEnum = typeof PushNotificationNotificationTypeEnum[keyof typeof PushNotificationNotificationTypeEnum];
5430
+ /**
5431
+ *
5432
+ * @export
5433
+ * @interface PushNotificationCreate
5434
+ */
5435
+ interface PushNotificationCreate {
5436
+ /**
5437
+ *
5438
+ * @type {number}
5439
+ * @memberof PushNotificationCreate
5440
+ */
5441
+ 'badgeCount'?: number;
5442
+ /**
5443
+ *
5444
+ * @type {Array<string>}
5445
+ * @memberof PushNotificationCreate
5446
+ */
5447
+ 'eventSubjects'?: Array<string>;
5448
+ /**
5449
+ *
5450
+ * @type {string}
5451
+ * @memberof PushNotificationCreate
5452
+ */
5453
+ 'navigationUrl'?: string;
5454
+ /**
5455
+ *
5456
+ * @type {string}
5457
+ * @memberof PushNotificationCreate
5458
+ */
5459
+ 'notificationType'?: PushNotificationCreateNotificationTypeEnum;
5460
+ /**
5461
+ *
5462
+ * @type {NotificationPriority}
5463
+ * @memberof PushNotificationCreate
5464
+ */
5465
+ 'priority'?: NotificationPriority;
5466
+ }
5467
+ declare const PushNotificationCreateNotificationTypeEnum: {
5468
+ readonly Push: "PUSH";
5469
+ };
5470
+ type PushNotificationCreateNotificationTypeEnum = typeof PushNotificationCreateNotificationTypeEnum[keyof typeof PushNotificationCreateNotificationTypeEnum];
5354
5471
  /**
5355
5472
  *
5356
5473
  * @export
@@ -16068,4 +16185,4 @@ declare class UserDevicesApi extends BaseAPI {
16068
16185
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
16069
16186
  }
16070
16187
 
16071
- export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, 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, 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 EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type 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 };
16188
+ export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, 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, 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 Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type MobileDevicePushNotification, type Notification, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };