@ember-home/unbound-ts-client 0.0.85 → 0.0.87
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 +80 -30
- package/dist/index.d.ts +80 -30
- package/dist/index.js +128 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +122 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1478,19 +1478,19 @@ interface APIUserDevice {
|
|
|
1478
1478
|
* @type {string}
|
|
1479
1479
|
* @memberof APIUserDevice
|
|
1480
1480
|
*/
|
|
1481
|
-
'
|
|
1481
|
+
'userDeviceId': string;
|
|
1482
1482
|
/**
|
|
1483
1483
|
*
|
|
1484
1484
|
* @type {string}
|
|
1485
1485
|
* @memberof APIUserDevice
|
|
1486
1486
|
*/
|
|
1487
|
-
'
|
|
1487
|
+
'userId': string;
|
|
1488
1488
|
/**
|
|
1489
1489
|
*
|
|
1490
|
-
* @type {
|
|
1490
|
+
* @type {string}
|
|
1491
1491
|
* @memberof APIUserDevice
|
|
1492
1492
|
*/
|
|
1493
|
-
'
|
|
1493
|
+
'pushToken': string;
|
|
1494
1494
|
/**
|
|
1495
1495
|
*
|
|
1496
1496
|
* @type {UserDeviceOs}
|
|
@@ -1502,31 +1502,25 @@ interface APIUserDevice {
|
|
|
1502
1502
|
* @type {string}
|
|
1503
1503
|
* @memberof APIUserDevice
|
|
1504
1504
|
*/
|
|
1505
|
-
'
|
|
1505
|
+
'deviceOsVersion': string;
|
|
1506
1506
|
/**
|
|
1507
1507
|
*
|
|
1508
1508
|
* @type {string}
|
|
1509
1509
|
* @memberof APIUserDevice
|
|
1510
1510
|
*/
|
|
1511
|
-
'
|
|
1511
|
+
'deviceModel': string;
|
|
1512
1512
|
/**
|
|
1513
1513
|
*
|
|
1514
1514
|
* @type {string}
|
|
1515
1515
|
* @memberof APIUserDevice
|
|
1516
1516
|
*/
|
|
1517
|
-
'
|
|
1517
|
+
'installedAppVersion': string;
|
|
1518
1518
|
/**
|
|
1519
1519
|
*
|
|
1520
1520
|
* @type {boolean}
|
|
1521
1521
|
* @memberof APIUserDevice
|
|
1522
1522
|
*/
|
|
1523
1523
|
'archived'?: boolean;
|
|
1524
|
-
/**
|
|
1525
|
-
*
|
|
1526
|
-
* @type {string}
|
|
1527
|
-
* @memberof APIUserDevice
|
|
1528
|
-
*/
|
|
1529
|
-
'userDeviceId': string;
|
|
1530
1524
|
/**
|
|
1531
1525
|
*
|
|
1532
1526
|
* @type {string}
|
|
@@ -1551,7 +1545,7 @@ interface APIUserDeviceCreate {
|
|
|
1551
1545
|
* @type {string}
|
|
1552
1546
|
* @memberof APIUserDeviceCreate
|
|
1553
1547
|
*/
|
|
1554
|
-
'
|
|
1548
|
+
'userDeviceId': string;
|
|
1555
1549
|
/**
|
|
1556
1550
|
*
|
|
1557
1551
|
* @type {string}
|
|
@@ -1560,16 +1554,16 @@ interface APIUserDeviceCreate {
|
|
|
1560
1554
|
'pushToken': string;
|
|
1561
1555
|
/**
|
|
1562
1556
|
*
|
|
1563
|
-
* @type {
|
|
1557
|
+
* @type {UserDeviceOs}
|
|
1564
1558
|
* @memberof APIUserDeviceCreate
|
|
1565
1559
|
*/
|
|
1566
|
-
'
|
|
1560
|
+
'deviceOs': UserDeviceOs;
|
|
1567
1561
|
/**
|
|
1568
1562
|
*
|
|
1569
|
-
* @type {
|
|
1563
|
+
* @type {string}
|
|
1570
1564
|
* @memberof APIUserDeviceCreate
|
|
1571
1565
|
*/
|
|
1572
|
-
'
|
|
1566
|
+
'deviceOsVersion': string;
|
|
1573
1567
|
/**
|
|
1574
1568
|
*
|
|
1575
1569
|
* @type {string}
|
|
@@ -3452,19 +3446,9 @@ interface UserApi {
|
|
|
3452
3446
|
declare const UserDeviceOs: {
|
|
3453
3447
|
readonly Android: "ANDROID";
|
|
3454
3448
|
readonly Ios: "IOS";
|
|
3449
|
+
readonly Macos: "MACOS";
|
|
3455
3450
|
};
|
|
3456
3451
|
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
3457
|
-
/**
|
|
3458
|
-
*
|
|
3459
|
-
* @export
|
|
3460
|
-
* @enum {string}
|
|
3461
|
-
*/
|
|
3462
|
-
declare const UserDeviceType: {
|
|
3463
|
-
readonly Mobile: "MOBILE";
|
|
3464
|
-
readonly Tablet: "TABLET";
|
|
3465
|
-
readonly Desktop: "DESKTOP";
|
|
3466
|
-
};
|
|
3467
|
-
type UserDeviceType = typeof UserDeviceType[keyof typeof UserDeviceType];
|
|
3468
3452
|
/**
|
|
3469
3453
|
* AccountsApi - axios parameter creator
|
|
3470
3454
|
* @export
|
|
@@ -5621,6 +5605,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5621
5605
|
* @throws {RequiredError}
|
|
5622
5606
|
*/
|
|
5623
5607
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
/**
|
|
5609
|
+
* UserDevices Delete
|
|
5610
|
+
* @summary UserDevices Delete
|
|
5611
|
+
* @param {string} userDeviceId
|
|
5612
|
+
* @param {*} [options] Override http request option.
|
|
5613
|
+
* @throws {RequiredError}
|
|
5614
|
+
*/
|
|
5615
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5624
5616
|
/**
|
|
5625
5617
|
*
|
|
5626
5618
|
* @summary Unifiedwebhook
|
|
@@ -6000,6 +5992,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6000
5992
|
* @throws {RequiredError}
|
|
6001
5993
|
*/
|
|
6002
5994
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Delete
|
|
5997
|
+
* @summary UserDevices Delete
|
|
5998
|
+
* @param {string} userDeviceId
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6003
6003
|
/**
|
|
6004
6004
|
*
|
|
6005
6005
|
* @summary Unifiedwebhook
|
|
@@ -6379,6 +6379,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6379
6379
|
* @throws {RequiredError}
|
|
6380
6380
|
*/
|
|
6381
6381
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6382
|
+
/**
|
|
6383
|
+
* UserDevices Delete
|
|
6384
|
+
* @summary UserDevices Delete
|
|
6385
|
+
* @param {string} userDeviceId
|
|
6386
|
+
* @param {*} [options] Override http request option.
|
|
6387
|
+
* @throws {RequiredError}
|
|
6388
|
+
*/
|
|
6389
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6382
6390
|
/**
|
|
6383
6391
|
*
|
|
6384
6392
|
* @summary Unifiedwebhook
|
|
@@ -6800,6 +6808,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6800
6808
|
* @memberof UnboundApi
|
|
6801
6809
|
*/
|
|
6802
6810
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6811
|
+
/**
|
|
6812
|
+
* UserDevices Delete
|
|
6813
|
+
* @summary UserDevices Delete
|
|
6814
|
+
* @param {string} userDeviceId
|
|
6815
|
+
* @param {*} [options] Override http request option.
|
|
6816
|
+
* @throws {RequiredError}
|
|
6817
|
+
* @memberof UnboundApi
|
|
6818
|
+
*/
|
|
6819
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6803
6820
|
/**
|
|
6804
6821
|
*
|
|
6805
6822
|
* @summary Unifiedwebhook
|
|
@@ -6823,6 +6840,14 @@ declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
6823
6840
|
* @throws {RequiredError}
|
|
6824
6841
|
*/
|
|
6825
6842
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6843
|
+
/**
|
|
6844
|
+
* UserDevices Delete
|
|
6845
|
+
* @summary UserDevices Delete
|
|
6846
|
+
* @param {string} userDeviceId
|
|
6847
|
+
* @param {*} [options] Override http request option.
|
|
6848
|
+
* @throws {RequiredError}
|
|
6849
|
+
*/
|
|
6850
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6826
6851
|
};
|
|
6827
6852
|
/**
|
|
6828
6853
|
* UserDevicesApi - functional programming interface
|
|
@@ -6837,6 +6862,14 @@ declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
|
6837
6862
|
* @throws {RequiredError}
|
|
6838
6863
|
*/
|
|
6839
6864
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6865
|
+
/**
|
|
6866
|
+
* UserDevices Delete
|
|
6867
|
+
* @summary UserDevices Delete
|
|
6868
|
+
* @param {string} userDeviceId
|
|
6869
|
+
* @param {*} [options] Override http request option.
|
|
6870
|
+
* @throws {RequiredError}
|
|
6871
|
+
*/
|
|
6872
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6840
6873
|
};
|
|
6841
6874
|
/**
|
|
6842
6875
|
* UserDevicesApi - factory interface
|
|
@@ -6851,6 +6884,14 @@ declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6851
6884
|
* @throws {RequiredError}
|
|
6852
6885
|
*/
|
|
6853
6886
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6887
|
+
/**
|
|
6888
|
+
* UserDevices Delete
|
|
6889
|
+
* @summary UserDevices Delete
|
|
6890
|
+
* @param {string} userDeviceId
|
|
6891
|
+
* @param {*} [options] Override http request option.
|
|
6892
|
+
* @throws {RequiredError}
|
|
6893
|
+
*/
|
|
6894
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6854
6895
|
};
|
|
6855
6896
|
/**
|
|
6856
6897
|
* UserDevicesApi - object-oriented interface
|
|
@@ -6868,6 +6909,15 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6868
6909
|
* @memberof UserDevicesApi
|
|
6869
6910
|
*/
|
|
6870
6911
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6912
|
+
/**
|
|
6913
|
+
* UserDevices Delete
|
|
6914
|
+
* @summary UserDevices Delete
|
|
6915
|
+
* @param {string} userDeviceId
|
|
6916
|
+
* @param {*} [options] Override http request option.
|
|
6917
|
+
* @throws {RequiredError}
|
|
6918
|
+
* @memberof UserDevicesApi
|
|
6919
|
+
*/
|
|
6920
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6871
6921
|
}
|
|
6872
6922
|
|
|
6873
|
-
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,
|
|
6923
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1478,19 +1478,19 @@ interface APIUserDevice {
|
|
|
1478
1478
|
* @type {string}
|
|
1479
1479
|
* @memberof APIUserDevice
|
|
1480
1480
|
*/
|
|
1481
|
-
'
|
|
1481
|
+
'userDeviceId': string;
|
|
1482
1482
|
/**
|
|
1483
1483
|
*
|
|
1484
1484
|
* @type {string}
|
|
1485
1485
|
* @memberof APIUserDevice
|
|
1486
1486
|
*/
|
|
1487
|
-
'
|
|
1487
|
+
'userId': string;
|
|
1488
1488
|
/**
|
|
1489
1489
|
*
|
|
1490
|
-
* @type {
|
|
1490
|
+
* @type {string}
|
|
1491
1491
|
* @memberof APIUserDevice
|
|
1492
1492
|
*/
|
|
1493
|
-
'
|
|
1493
|
+
'pushToken': string;
|
|
1494
1494
|
/**
|
|
1495
1495
|
*
|
|
1496
1496
|
* @type {UserDeviceOs}
|
|
@@ -1502,31 +1502,25 @@ interface APIUserDevice {
|
|
|
1502
1502
|
* @type {string}
|
|
1503
1503
|
* @memberof APIUserDevice
|
|
1504
1504
|
*/
|
|
1505
|
-
'
|
|
1505
|
+
'deviceOsVersion': string;
|
|
1506
1506
|
/**
|
|
1507
1507
|
*
|
|
1508
1508
|
* @type {string}
|
|
1509
1509
|
* @memberof APIUserDevice
|
|
1510
1510
|
*/
|
|
1511
|
-
'
|
|
1511
|
+
'deviceModel': string;
|
|
1512
1512
|
/**
|
|
1513
1513
|
*
|
|
1514
1514
|
* @type {string}
|
|
1515
1515
|
* @memberof APIUserDevice
|
|
1516
1516
|
*/
|
|
1517
|
-
'
|
|
1517
|
+
'installedAppVersion': string;
|
|
1518
1518
|
/**
|
|
1519
1519
|
*
|
|
1520
1520
|
* @type {boolean}
|
|
1521
1521
|
* @memberof APIUserDevice
|
|
1522
1522
|
*/
|
|
1523
1523
|
'archived'?: boolean;
|
|
1524
|
-
/**
|
|
1525
|
-
*
|
|
1526
|
-
* @type {string}
|
|
1527
|
-
* @memberof APIUserDevice
|
|
1528
|
-
*/
|
|
1529
|
-
'userDeviceId': string;
|
|
1530
1524
|
/**
|
|
1531
1525
|
*
|
|
1532
1526
|
* @type {string}
|
|
@@ -1551,7 +1545,7 @@ interface APIUserDeviceCreate {
|
|
|
1551
1545
|
* @type {string}
|
|
1552
1546
|
* @memberof APIUserDeviceCreate
|
|
1553
1547
|
*/
|
|
1554
|
-
'
|
|
1548
|
+
'userDeviceId': string;
|
|
1555
1549
|
/**
|
|
1556
1550
|
*
|
|
1557
1551
|
* @type {string}
|
|
@@ -1560,16 +1554,16 @@ interface APIUserDeviceCreate {
|
|
|
1560
1554
|
'pushToken': string;
|
|
1561
1555
|
/**
|
|
1562
1556
|
*
|
|
1563
|
-
* @type {
|
|
1557
|
+
* @type {UserDeviceOs}
|
|
1564
1558
|
* @memberof APIUserDeviceCreate
|
|
1565
1559
|
*/
|
|
1566
|
-
'
|
|
1560
|
+
'deviceOs': UserDeviceOs;
|
|
1567
1561
|
/**
|
|
1568
1562
|
*
|
|
1569
|
-
* @type {
|
|
1563
|
+
* @type {string}
|
|
1570
1564
|
* @memberof APIUserDeviceCreate
|
|
1571
1565
|
*/
|
|
1572
|
-
'
|
|
1566
|
+
'deviceOsVersion': string;
|
|
1573
1567
|
/**
|
|
1574
1568
|
*
|
|
1575
1569
|
* @type {string}
|
|
@@ -3452,19 +3446,9 @@ interface UserApi {
|
|
|
3452
3446
|
declare const UserDeviceOs: {
|
|
3453
3447
|
readonly Android: "ANDROID";
|
|
3454
3448
|
readonly Ios: "IOS";
|
|
3449
|
+
readonly Macos: "MACOS";
|
|
3455
3450
|
};
|
|
3456
3451
|
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
3457
|
-
/**
|
|
3458
|
-
*
|
|
3459
|
-
* @export
|
|
3460
|
-
* @enum {string}
|
|
3461
|
-
*/
|
|
3462
|
-
declare const UserDeviceType: {
|
|
3463
|
-
readonly Mobile: "MOBILE";
|
|
3464
|
-
readonly Tablet: "TABLET";
|
|
3465
|
-
readonly Desktop: "DESKTOP";
|
|
3466
|
-
};
|
|
3467
|
-
type UserDeviceType = typeof UserDeviceType[keyof typeof UserDeviceType];
|
|
3468
3452
|
/**
|
|
3469
3453
|
* AccountsApi - axios parameter creator
|
|
3470
3454
|
* @export
|
|
@@ -5621,6 +5605,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5621
5605
|
* @throws {RequiredError}
|
|
5622
5606
|
*/
|
|
5623
5607
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
/**
|
|
5609
|
+
* UserDevices Delete
|
|
5610
|
+
* @summary UserDevices Delete
|
|
5611
|
+
* @param {string} userDeviceId
|
|
5612
|
+
* @param {*} [options] Override http request option.
|
|
5613
|
+
* @throws {RequiredError}
|
|
5614
|
+
*/
|
|
5615
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5624
5616
|
/**
|
|
5625
5617
|
*
|
|
5626
5618
|
* @summary Unifiedwebhook
|
|
@@ -6000,6 +5992,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6000
5992
|
* @throws {RequiredError}
|
|
6001
5993
|
*/
|
|
6002
5994
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Delete
|
|
5997
|
+
* @summary UserDevices Delete
|
|
5998
|
+
* @param {string} userDeviceId
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6003
6003
|
/**
|
|
6004
6004
|
*
|
|
6005
6005
|
* @summary Unifiedwebhook
|
|
@@ -6379,6 +6379,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6379
6379
|
* @throws {RequiredError}
|
|
6380
6380
|
*/
|
|
6381
6381
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6382
|
+
/**
|
|
6383
|
+
* UserDevices Delete
|
|
6384
|
+
* @summary UserDevices Delete
|
|
6385
|
+
* @param {string} userDeviceId
|
|
6386
|
+
* @param {*} [options] Override http request option.
|
|
6387
|
+
* @throws {RequiredError}
|
|
6388
|
+
*/
|
|
6389
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6382
6390
|
/**
|
|
6383
6391
|
*
|
|
6384
6392
|
* @summary Unifiedwebhook
|
|
@@ -6800,6 +6808,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6800
6808
|
* @memberof UnboundApi
|
|
6801
6809
|
*/
|
|
6802
6810
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6811
|
+
/**
|
|
6812
|
+
* UserDevices Delete
|
|
6813
|
+
* @summary UserDevices Delete
|
|
6814
|
+
* @param {string} userDeviceId
|
|
6815
|
+
* @param {*} [options] Override http request option.
|
|
6816
|
+
* @throws {RequiredError}
|
|
6817
|
+
* @memberof UnboundApi
|
|
6818
|
+
*/
|
|
6819
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6803
6820
|
/**
|
|
6804
6821
|
*
|
|
6805
6822
|
* @summary Unifiedwebhook
|
|
@@ -6823,6 +6840,14 @@ declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
6823
6840
|
* @throws {RequiredError}
|
|
6824
6841
|
*/
|
|
6825
6842
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6843
|
+
/**
|
|
6844
|
+
* UserDevices Delete
|
|
6845
|
+
* @summary UserDevices Delete
|
|
6846
|
+
* @param {string} userDeviceId
|
|
6847
|
+
* @param {*} [options] Override http request option.
|
|
6848
|
+
* @throws {RequiredError}
|
|
6849
|
+
*/
|
|
6850
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6826
6851
|
};
|
|
6827
6852
|
/**
|
|
6828
6853
|
* UserDevicesApi - functional programming interface
|
|
@@ -6837,6 +6862,14 @@ declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
|
6837
6862
|
* @throws {RequiredError}
|
|
6838
6863
|
*/
|
|
6839
6864
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6865
|
+
/**
|
|
6866
|
+
* UserDevices Delete
|
|
6867
|
+
* @summary UserDevices Delete
|
|
6868
|
+
* @param {string} userDeviceId
|
|
6869
|
+
* @param {*} [options] Override http request option.
|
|
6870
|
+
* @throws {RequiredError}
|
|
6871
|
+
*/
|
|
6872
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6840
6873
|
};
|
|
6841
6874
|
/**
|
|
6842
6875
|
* UserDevicesApi - factory interface
|
|
@@ -6851,6 +6884,14 @@ declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6851
6884
|
* @throws {RequiredError}
|
|
6852
6885
|
*/
|
|
6853
6886
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6887
|
+
/**
|
|
6888
|
+
* UserDevices Delete
|
|
6889
|
+
* @summary UserDevices Delete
|
|
6890
|
+
* @param {string} userDeviceId
|
|
6891
|
+
* @param {*} [options] Override http request option.
|
|
6892
|
+
* @throws {RequiredError}
|
|
6893
|
+
*/
|
|
6894
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6854
6895
|
};
|
|
6855
6896
|
/**
|
|
6856
6897
|
* UserDevicesApi - object-oriented interface
|
|
@@ -6868,6 +6909,15 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6868
6909
|
* @memberof UserDevicesApi
|
|
6869
6910
|
*/
|
|
6870
6911
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6912
|
+
/**
|
|
6913
|
+
* UserDevices Delete
|
|
6914
|
+
* @summary UserDevices Delete
|
|
6915
|
+
* @param {string} userDeviceId
|
|
6916
|
+
* @param {*} [options] Override http request option.
|
|
6917
|
+
* @throws {RequiredError}
|
|
6918
|
+
* @memberof UserDevicesApi
|
|
6919
|
+
*/
|
|
6920
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6871
6921
|
}
|
|
6872
6922
|
|
|
6873
|
-
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,
|
|
6923
|
+
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 };
|