@ember-home/unbound-ts-client 0.0.84 → 0.0.86

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
@@ -1467,6 +1467,122 @@ interface APIReservation {
1467
1467
  */
1468
1468
  'providerInfo': ProviderInfoApi;
1469
1469
  }
1470
+ /**
1471
+ *
1472
+ * @export
1473
+ * @interface APIUserDevice
1474
+ */
1475
+ interface APIUserDevice {
1476
+ /**
1477
+ *
1478
+ * @type {string}
1479
+ * @memberof APIUserDevice
1480
+ */
1481
+ 'userId': string;
1482
+ /**
1483
+ *
1484
+ * @type {string}
1485
+ * @memberof APIUserDevice
1486
+ */
1487
+ 'pushToken': string;
1488
+ /**
1489
+ *
1490
+ * @type {UserDeviceOs}
1491
+ * @memberof APIUserDevice
1492
+ */
1493
+ 'deviceOs': UserDeviceOs;
1494
+ /**
1495
+ *
1496
+ * @type {string}
1497
+ * @memberof APIUserDevice
1498
+ */
1499
+ 'deviceOsVersion': string;
1500
+ /**
1501
+ *
1502
+ * @type {string}
1503
+ * @memberof APIUserDevice
1504
+ */
1505
+ 'deviceModel': string;
1506
+ /**
1507
+ *
1508
+ * @type {string}
1509
+ * @memberof APIUserDevice
1510
+ */
1511
+ 'installedAppVersion': string;
1512
+ /**
1513
+ *
1514
+ * @type {string}
1515
+ * @memberof APIUserDevice
1516
+ */
1517
+ 'deviceIdentifier'?: string | null;
1518
+ /**
1519
+ *
1520
+ * @type {boolean}
1521
+ * @memberof APIUserDevice
1522
+ */
1523
+ 'archived'?: boolean;
1524
+ /**
1525
+ *
1526
+ * @type {string}
1527
+ * @memberof APIUserDevice
1528
+ */
1529
+ 'userDeviceId': string;
1530
+ /**
1531
+ *
1532
+ * @type {string}
1533
+ * @memberof APIUserDevice
1534
+ */
1535
+ 'createdAt': string;
1536
+ /**
1537
+ *
1538
+ * @type {string}
1539
+ * @memberof APIUserDevice
1540
+ */
1541
+ 'updatedAt': string;
1542
+ }
1543
+ /**
1544
+ *
1545
+ * @export
1546
+ * @interface APIUserDeviceCreate
1547
+ */
1548
+ interface APIUserDeviceCreate {
1549
+ /**
1550
+ *
1551
+ * @type {string}
1552
+ * @memberof APIUserDeviceCreate
1553
+ */
1554
+ 'deviceIdentifier': string;
1555
+ /**
1556
+ *
1557
+ * @type {string}
1558
+ * @memberof APIUserDeviceCreate
1559
+ */
1560
+ 'pushToken': string;
1561
+ /**
1562
+ *
1563
+ * @type {UserDeviceOs}
1564
+ * @memberof APIUserDeviceCreate
1565
+ */
1566
+ 'deviceOs': UserDeviceOs;
1567
+ /**
1568
+ *
1569
+ * @type {string}
1570
+ * @memberof APIUserDeviceCreate
1571
+ */
1572
+ 'deviceOsVersion': string;
1573
+ /**
1574
+ *
1575
+ * @type {string}
1576
+ * @memberof APIUserDeviceCreate
1577
+ */
1578
+ 'deviceModel': string;
1579
+ /**
1580
+ *
1581
+ * @type {string}
1582
+ * @memberof APIUserDeviceCreate
1583
+ */
1584
+ 'installedAppVersion': string;
1585
+ }
1470
1586
  /**
1471
1587
  *
1472
1588
  * @export
@@ -2036,37 +2152,6 @@ interface HTTPValidationError {
2036
2152
  */
2037
2153
  'detail'?: Array<APIValidationError>;
2038
2154
  }
2039
- /**
2040
- *
2041
- * @export
2042
- * @interface HostawayWebhook
2043
- */
2044
- interface HostawayWebhook {
2045
- /**
2046
- *
2047
- * @type {string}
2048
- * @memberof HostawayWebhook
2049
- */
2050
- 'object': string;
2051
- /**
2052
- *
2053
- * @type {string}
2054
- * @memberof HostawayWebhook
2055
- */
2056
- 'event': string;
2057
- /**
2058
- *
2059
- * @type {number}
2060
- * @memberof HostawayWebhook
2061
- */
2062
- 'accountId': number;
2063
- /**
2064
- *
2065
- * @type {object}
2066
- * @memberof HostawayWebhook
2067
- */
2068
- 'data': object;
2069
- }
2070
2155
  /**
2071
2156
  * @type Inboxtypedata
2072
2157
  * @export
@@ -3359,6 +3444,17 @@ interface UserApi {
3359
3444
  */
3360
3445
  'email': string;
3361
3446
  }
3447
+ /**
3448
+ *
3449
+ * @export
3450
+ * @enum {string}
3451
+ */
3452
+ declare const UserDeviceOs: {
3453
+ readonly Android: "ANDROID";
3454
+ readonly Ios: "IOS";
3455
+ readonly Macos: "MACOS";
3456
+ };
3457
+ type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
3362
3458
  /**
3363
3459
  * AccountsApi - axios parameter creator
3364
3460
  * @export
@@ -4535,11 +4631,11 @@ declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
4535
4631
  /**
4536
4632
  *
4537
4633
  * @summary Unifiedwebhook
4538
- * @param {HostawayWebhook} hostawayWebhook
4634
+ * @param {object} body
4539
4635
  * @param {*} [options] Override http request option.
4540
4636
  * @throws {RequiredError}
4541
4637
  */
4542
- webhook: (hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4638
+ webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4543
4639
  };
4544
4640
  /**
4545
4641
  * HostawayApi - functional programming interface
@@ -4549,11 +4645,11 @@ declare const HostawayApiFp: (configuration?: Configuration) => {
4549
4645
  /**
4550
4646
  *
4551
4647
  * @summary Unifiedwebhook
4552
- * @param {HostawayWebhook} hostawayWebhook
4648
+ * @param {object} body
4553
4649
  * @param {*} [options] Override http request option.
4554
4650
  * @throws {RequiredError}
4555
4651
  */
4556
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4652
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4557
4653
  };
4558
4654
  /**
4559
4655
  * HostawayApi - factory interface
@@ -4563,11 +4659,11 @@ declare const HostawayApiFactory: (configuration?: Configuration, basePath?: str
4563
4659
  /**
4564
4660
  *
4565
4661
  * @summary Unifiedwebhook
4566
- * @param {HostawayWebhook} hostawayWebhook
4662
+ * @param {object} body
4567
4663
  * @param {*} [options] Override http request option.
4568
4664
  * @throws {RequiredError}
4569
4665
  */
4570
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): AxiosPromise<any>;
4666
+ webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
4571
4667
  };
4572
4668
  /**
4573
4669
  * HostawayApi - object-oriented interface
@@ -4579,12 +4675,12 @@ declare class HostawayApi extends BaseAPI {
4579
4675
  /**
4580
4676
  *
4581
4677
  * @summary Unifiedwebhook
4582
- * @param {HostawayWebhook} hostawayWebhook
4678
+ * @param {object} body
4583
4679
  * @param {*} [options] Override http request option.
4584
4680
  * @throws {RequiredError}
4585
4681
  * @memberof HostawayApi
4586
4682
  */
4587
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
4683
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
4588
4684
  }
4589
4685
  /**
4590
4686
  * InboxesApi - axios parameter creator
@@ -5507,14 +5603,22 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
5507
5603
  * @throws {RequiredError}
5508
5604
  */
5509
5605
  reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5606
+ /**
5607
+ * UserDevices Create
5608
+ * @summary UserDevices Create
5609
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
5610
+ * @param {*} [options] Override http request option.
5611
+ * @throws {RequiredError}
5612
+ */
5613
+ userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5510
5614
  /**
5511
5615
  *
5512
5616
  * @summary Unifiedwebhook
5513
- * @param {HostawayWebhook} hostawayWebhook
5617
+ * @param {object} body
5514
5618
  * @param {*} [options] Override http request option.
5515
5619
  * @throws {RequiredError}
5516
5620
  */
5517
- webhook: (hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5621
+ webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5518
5622
  };
5519
5623
  /**
5520
5624
  * UnboundApi - functional programming interface
@@ -5878,14 +5982,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
5878
5982
  * @throws {RequiredError}
5879
5983
  */
5880
5984
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIReservation>>;
5985
+ /**
5986
+ * UserDevices Create
5987
+ * @summary UserDevices Create
5988
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
5989
+ * @param {*} [options] Override http request option.
5990
+ * @throws {RequiredError}
5991
+ */
5992
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
5881
5993
  /**
5882
5994
  *
5883
5995
  * @summary Unifiedwebhook
5884
- * @param {HostawayWebhook} hostawayWebhook
5996
+ * @param {object} body
5885
5997
  * @param {*} [options] Override http request option.
5886
5998
  * @throws {RequiredError}
5887
5999
  */
5888
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6000
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5889
6001
  };
5890
6002
  /**
5891
6003
  * UnboundApi - factory interface
@@ -6249,14 +6361,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
6249
6361
  * @throws {RequiredError}
6250
6362
  */
6251
6363
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
6364
+ /**
6365
+ * UserDevices Create
6366
+ * @summary UserDevices Create
6367
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6368
+ * @param {*} [options] Override http request option.
6369
+ * @throws {RequiredError}
6370
+ */
6371
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
6252
6372
  /**
6253
6373
  *
6254
6374
  * @summary Unifiedwebhook
6255
- * @param {HostawayWebhook} hostawayWebhook
6375
+ * @param {object} body
6256
6376
  * @param {*} [options] Override http request option.
6257
6377
  * @throws {RequiredError}
6258
6378
  */
6259
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6379
+ webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6260
6380
  };
6261
6381
  /**
6262
6382
  * UnboundApi - object-oriented interface
@@ -6661,15 +6781,83 @@ declare class UnboundApi extends BaseAPI {
6661
6781
  * @memberof UnboundApi
6662
6782
  */
6663
6783
  reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
6784
+ /**
6785
+ * UserDevices Create
6786
+ * @summary UserDevices Create
6787
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6788
+ * @param {*} [options] Override http request option.
6789
+ * @throws {RequiredError}
6790
+ * @memberof UnboundApi
6791
+ */
6792
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
6664
6793
  /**
6665
6794
  *
6666
6795
  * @summary Unifiedwebhook
6667
- * @param {HostawayWebhook} hostawayWebhook
6796
+ * @param {object} body
6668
6797
  * @param {*} [options] Override http request option.
6669
6798
  * @throws {RequiredError}
6670
6799
  * @memberof UnboundApi
6671
6800
  */
6672
- webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6801
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6802
+ }
6803
+ /**
6804
+ * UserDevicesApi - axios parameter creator
6805
+ * @export
6806
+ */
6807
+ declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) => {
6808
+ /**
6809
+ * UserDevices Create
6810
+ * @summary UserDevices Create
6811
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6812
+ * @param {*} [options] Override http request option.
6813
+ * @throws {RequiredError}
6814
+ */
6815
+ userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6816
+ };
6817
+ /**
6818
+ * UserDevicesApi - functional programming interface
6819
+ * @export
6820
+ */
6821
+ declare const UserDevicesApiFp: (configuration?: Configuration) => {
6822
+ /**
6823
+ * UserDevices Create
6824
+ * @summary UserDevices Create
6825
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6826
+ * @param {*} [options] Override http request option.
6827
+ * @throws {RequiredError}
6828
+ */
6829
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
6830
+ };
6831
+ /**
6832
+ * UserDevicesApi - factory interface
6833
+ * @export
6834
+ */
6835
+ declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6836
+ /**
6837
+ * UserDevices Create
6838
+ * @summary UserDevices Create
6839
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6840
+ * @param {*} [options] Override http request option.
6841
+ * @throws {RequiredError}
6842
+ */
6843
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
6844
+ };
6845
+ /**
6846
+ * UserDevicesApi - object-oriented interface
6847
+ * @export
6848
+ * @class UserDevicesApi
6849
+ * @extends {BaseAPI}
6850
+ */
6851
+ declare class UserDevicesApi extends BaseAPI {
6852
+ /**
6853
+ * UserDevices Create
6854
+ * @summary UserDevices Create
6855
+ * @param {APIUserDeviceCreate} aPIUserDeviceCreate
6856
+ * @param {*} [options] Override http request option.
6857
+ * @throws {RequiredError}
6858
+ * @memberof UserDevicesApi
6859
+ */
6860
+ userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
6673
6861
  }
6674
6862
 
6675
- export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
6863
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };