@ember-home/unbound-ts-client 0.0.89 → 0.0.90
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 +120 -114
- package/dist/index.d.ts +120 -114
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1000,6 +1000,12 @@ interface APIManagedPhoneNumber {
|
|
|
1000
1000
|
* @memberof APIManagedPhoneNumber
|
|
1001
1001
|
*/
|
|
1002
1002
|
'managedPhoneNumberId': string;
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof APIManagedPhoneNumber
|
|
1007
|
+
*/
|
|
1008
|
+
'providerPhoneNumberId': string;
|
|
1003
1009
|
/**
|
|
1004
1010
|
*
|
|
1005
1011
|
* @type {string}
|
|
@@ -1923,7 +1929,7 @@ interface ConversationSuggestionApi {
|
|
|
1923
1929
|
* @type Conversationtypedata
|
|
1924
1930
|
* @export
|
|
1925
1931
|
*/
|
|
1926
|
-
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi |
|
|
1932
|
+
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
|
|
1927
1933
|
/**
|
|
1928
1934
|
*
|
|
1929
1935
|
* @export
|
|
@@ -2330,7 +2336,7 @@ type Messagecreate = APIMessageCreate1 | APIMessageCreate2;
|
|
|
2330
2336
|
* @type Messagetypedata
|
|
2331
2337
|
* @export
|
|
2332
2338
|
*/
|
|
2333
|
-
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi |
|
|
2339
|
+
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSMessageApi;
|
|
2334
2340
|
/**
|
|
2335
2341
|
* @type Messagetypedata1
|
|
2336
2342
|
* @export
|
|
@@ -2962,11 +2968,121 @@ declare const ReservationStatus: {
|
|
|
2962
2968
|
readonly Confirmed: "CONFIRMED";
|
|
2963
2969
|
};
|
|
2964
2970
|
type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus];
|
|
2971
|
+
/**
|
|
2972
|
+
*
|
|
2973
|
+
* @export
|
|
2974
|
+
* @interface SMSConversationDataApi
|
|
2975
|
+
*/
|
|
2976
|
+
interface SMSConversationDataApi {
|
|
2977
|
+
/**
|
|
2978
|
+
*
|
|
2979
|
+
* @type {string}
|
|
2980
|
+
* @memberof SMSConversationDataApi
|
|
2981
|
+
*/
|
|
2982
|
+
'conversationType': SMSConversationDataApiConversationTypeEnum;
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @type {string}
|
|
2986
|
+
* @memberof SMSConversationDataApi
|
|
2987
|
+
*/
|
|
2988
|
+
'fromManagedPhoneId': string;
|
|
2989
|
+
/**
|
|
2990
|
+
*
|
|
2991
|
+
* @type {Array<PhonesApi>}
|
|
2992
|
+
* @memberof SMSConversationDataApi
|
|
2993
|
+
*/
|
|
2994
|
+
'toPhones': Array<PhonesApi>;
|
|
2995
|
+
/**
|
|
2996
|
+
*
|
|
2997
|
+
* @type {string}
|
|
2998
|
+
* @memberof SMSConversationDataApi
|
|
2999
|
+
*/
|
|
3000
|
+
'providerGroupId'?: string | null;
|
|
3001
|
+
}
|
|
3002
|
+
declare const SMSConversationDataApiConversationTypeEnum: {
|
|
3003
|
+
readonly Text: "TEXT";
|
|
3004
|
+
};
|
|
3005
|
+
type SMSConversationDataApiConversationTypeEnum = typeof SMSConversationDataApiConversationTypeEnum[keyof typeof SMSConversationDataApiConversationTypeEnum];
|
|
3006
|
+
/**
|
|
3007
|
+
*
|
|
3008
|
+
* @export
|
|
3009
|
+
* @interface SMSInboundSenderTypeDataApi
|
|
3010
|
+
*/
|
|
3011
|
+
interface SMSInboundSenderTypeDataApi {
|
|
3012
|
+
/**
|
|
3013
|
+
*
|
|
3014
|
+
* @type {string}
|
|
3015
|
+
* @memberof SMSInboundSenderTypeDataApi
|
|
3016
|
+
*/
|
|
3017
|
+
'direction': SMSInboundSenderTypeDataApiDirectionEnum;
|
|
3018
|
+
/**
|
|
3019
|
+
*
|
|
3020
|
+
* @type {string}
|
|
3021
|
+
* @memberof SMSInboundSenderTypeDataApi
|
|
3022
|
+
*/
|
|
3023
|
+
'fromPhoneId'?: string | null;
|
|
3024
|
+
}
|
|
3025
|
+
declare const SMSInboundSenderTypeDataApiDirectionEnum: {
|
|
3026
|
+
readonly Inbound: "INBOUND";
|
|
3027
|
+
};
|
|
3028
|
+
type SMSInboundSenderTypeDataApiDirectionEnum = typeof SMSInboundSenderTypeDataApiDirectionEnum[keyof typeof SMSInboundSenderTypeDataApiDirectionEnum];
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
* @export
|
|
3032
|
+
* @interface SMSMessageApi
|
|
3033
|
+
*/
|
|
3034
|
+
interface SMSMessageApi {
|
|
3035
|
+
/**
|
|
3036
|
+
*
|
|
3037
|
+
* @type {string}
|
|
3038
|
+
* @memberof SMSMessageApi
|
|
3039
|
+
*/
|
|
3040
|
+
'messageType': SMSMessageApiMessageTypeEnum;
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @type {Array<string>}
|
|
3044
|
+
* @memberof SMSMessageApi
|
|
3045
|
+
*/
|
|
3046
|
+
'mediaUrl'?: Array<string> | null;
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @type {Sendertypedata}
|
|
3050
|
+
* @memberof SMSMessageApi
|
|
3051
|
+
*/
|
|
3052
|
+
'senderTypeData': Sendertypedata;
|
|
3053
|
+
}
|
|
3054
|
+
declare const SMSMessageApiMessageTypeEnum: {
|
|
3055
|
+
readonly Text: "TEXT";
|
|
3056
|
+
};
|
|
3057
|
+
type SMSMessageApiMessageTypeEnum = typeof SMSMessageApiMessageTypeEnum[keyof typeof SMSMessageApiMessageTypeEnum];
|
|
3058
|
+
/**
|
|
3059
|
+
*
|
|
3060
|
+
* @export
|
|
3061
|
+
* @interface SMSOutboundSenderTypeDataApi
|
|
3062
|
+
*/
|
|
3063
|
+
interface SMSOutboundSenderTypeDataApi {
|
|
3064
|
+
/**
|
|
3065
|
+
*
|
|
3066
|
+
* @type {string}
|
|
3067
|
+
* @memberof SMSOutboundSenderTypeDataApi
|
|
3068
|
+
*/
|
|
3069
|
+
'direction': SMSOutboundSenderTypeDataApiDirectionEnum;
|
|
3070
|
+
/**
|
|
3071
|
+
*
|
|
3072
|
+
* @type {string}
|
|
3073
|
+
* @memberof SMSOutboundSenderTypeDataApi
|
|
3074
|
+
*/
|
|
3075
|
+
'fromManagedPhoneId': string;
|
|
3076
|
+
}
|
|
3077
|
+
declare const SMSOutboundSenderTypeDataApiDirectionEnum: {
|
|
3078
|
+
readonly Outbound: "OUTBOUND";
|
|
3079
|
+
};
|
|
3080
|
+
type SMSOutboundSenderTypeDataApiDirectionEnum = typeof SMSOutboundSenderTypeDataApiDirectionEnum[keyof typeof SMSOutboundSenderTypeDataApiDirectionEnum];
|
|
2965
3081
|
/**
|
|
2966
3082
|
* @type Sendertypedata
|
|
2967
3083
|
* @export
|
|
2968
3084
|
*/
|
|
2969
|
-
type Sendertypedata =
|
|
3085
|
+
type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi;
|
|
2970
3086
|
/**
|
|
2971
3087
|
*
|
|
2972
3088
|
* @export
|
|
@@ -3297,116 +3413,6 @@ interface ToItemApi {
|
|
|
3297
3413
|
*/
|
|
3298
3414
|
'relatedListings'?: Array<RelatedListingApi>;
|
|
3299
3415
|
}
|
|
3300
|
-
/**
|
|
3301
|
-
*
|
|
3302
|
-
* @export
|
|
3303
|
-
* @interface TwilioConversationDataApi
|
|
3304
|
-
*/
|
|
3305
|
-
interface TwilioConversationDataApi {
|
|
3306
|
-
/**
|
|
3307
|
-
*
|
|
3308
|
-
* @type {string}
|
|
3309
|
-
* @memberof TwilioConversationDataApi
|
|
3310
|
-
*/
|
|
3311
|
-
'conversationType': TwilioConversationDataApiConversationTypeEnum;
|
|
3312
|
-
/**
|
|
3313
|
-
*
|
|
3314
|
-
* @type {string}
|
|
3315
|
-
* @memberof TwilioConversationDataApi
|
|
3316
|
-
*/
|
|
3317
|
-
'fromManagedPhoneId': string;
|
|
3318
|
-
/**
|
|
3319
|
-
*
|
|
3320
|
-
* @type {Array<PhonesApi>}
|
|
3321
|
-
* @memberof TwilioConversationDataApi
|
|
3322
|
-
*/
|
|
3323
|
-
'toPhones': Array<PhonesApi>;
|
|
3324
|
-
/**
|
|
3325
|
-
*
|
|
3326
|
-
* @type {string}
|
|
3327
|
-
* @memberof TwilioConversationDataApi
|
|
3328
|
-
*/
|
|
3329
|
-
'twilioGroupId'?: string | null;
|
|
3330
|
-
}
|
|
3331
|
-
declare const TwilioConversationDataApiConversationTypeEnum: {
|
|
3332
|
-
readonly Text: "TEXT";
|
|
3333
|
-
};
|
|
3334
|
-
type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
|
|
3335
|
-
/**
|
|
3336
|
-
*
|
|
3337
|
-
* @export
|
|
3338
|
-
* @interface TwilioInboundSenderTypeDataApi
|
|
3339
|
-
*/
|
|
3340
|
-
interface TwilioInboundSenderTypeDataApi {
|
|
3341
|
-
/**
|
|
3342
|
-
*
|
|
3343
|
-
* @type {string}
|
|
3344
|
-
* @memberof TwilioInboundSenderTypeDataApi
|
|
3345
|
-
*/
|
|
3346
|
-
'direction': TwilioInboundSenderTypeDataApiDirectionEnum;
|
|
3347
|
-
/**
|
|
3348
|
-
*
|
|
3349
|
-
* @type {string}
|
|
3350
|
-
* @memberof TwilioInboundSenderTypeDataApi
|
|
3351
|
-
*/
|
|
3352
|
-
'fromPhoneId'?: string | null;
|
|
3353
|
-
}
|
|
3354
|
-
declare const TwilioInboundSenderTypeDataApiDirectionEnum: {
|
|
3355
|
-
readonly Inbound: "INBOUND";
|
|
3356
|
-
};
|
|
3357
|
-
type TwilioInboundSenderTypeDataApiDirectionEnum = typeof TwilioInboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioInboundSenderTypeDataApiDirectionEnum];
|
|
3358
|
-
/**
|
|
3359
|
-
*
|
|
3360
|
-
* @export
|
|
3361
|
-
* @interface TwilioOutboundSenderTypeDataApi
|
|
3362
|
-
*/
|
|
3363
|
-
interface TwilioOutboundSenderTypeDataApi {
|
|
3364
|
-
/**
|
|
3365
|
-
*
|
|
3366
|
-
* @type {string}
|
|
3367
|
-
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3368
|
-
*/
|
|
3369
|
-
'direction': TwilioOutboundSenderTypeDataApiDirectionEnum;
|
|
3370
|
-
/**
|
|
3371
|
-
*
|
|
3372
|
-
* @type {string}
|
|
3373
|
-
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3374
|
-
*/
|
|
3375
|
-
'fromManagedPhoneId': string;
|
|
3376
|
-
}
|
|
3377
|
-
declare const TwilioOutboundSenderTypeDataApiDirectionEnum: {
|
|
3378
|
-
readonly Outbound: "OUTBOUND";
|
|
3379
|
-
};
|
|
3380
|
-
type TwilioOutboundSenderTypeDataApiDirectionEnum = typeof TwilioOutboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioOutboundSenderTypeDataApiDirectionEnum];
|
|
3381
|
-
/**
|
|
3382
|
-
*
|
|
3383
|
-
* @export
|
|
3384
|
-
* @interface TwilioProviderMessageApi
|
|
3385
|
-
*/
|
|
3386
|
-
interface TwilioProviderMessageApi {
|
|
3387
|
-
/**
|
|
3388
|
-
*
|
|
3389
|
-
* @type {string}
|
|
3390
|
-
* @memberof TwilioProviderMessageApi
|
|
3391
|
-
*/
|
|
3392
|
-
'messageType': TwilioProviderMessageApiMessageTypeEnum;
|
|
3393
|
-
/**
|
|
3394
|
-
*
|
|
3395
|
-
* @type {Array<string>}
|
|
3396
|
-
* @memberof TwilioProviderMessageApi
|
|
3397
|
-
*/
|
|
3398
|
-
'mediaUrl'?: Array<string> | null;
|
|
3399
|
-
/**
|
|
3400
|
-
*
|
|
3401
|
-
* @type {Sendertypedata}
|
|
3402
|
-
* @memberof TwilioProviderMessageApi
|
|
3403
|
-
*/
|
|
3404
|
-
'senderTypeData': Sendertypedata;
|
|
3405
|
-
}
|
|
3406
|
-
declare const TwilioProviderMessageApiMessageTypeEnum: {
|
|
3407
|
-
readonly Text: "TEXT";
|
|
3408
|
-
};
|
|
3409
|
-
type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
|
|
3410
3416
|
/**
|
|
3411
3417
|
*
|
|
3412
3418
|
* @export
|
|
@@ -6993,4 +6999,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6993
6999
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6994
7000
|
}
|
|
6995
7001
|
|
|
6996
|
-
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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi,
|
|
7002
|
+
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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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 SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSMessageApi, SMSMessageApiMessageTypeEnum, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.d.ts
CHANGED
|
@@ -1000,6 +1000,12 @@ interface APIManagedPhoneNumber {
|
|
|
1000
1000
|
* @memberof APIManagedPhoneNumber
|
|
1001
1001
|
*/
|
|
1002
1002
|
'managedPhoneNumberId': string;
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof APIManagedPhoneNumber
|
|
1007
|
+
*/
|
|
1008
|
+
'providerPhoneNumberId': string;
|
|
1003
1009
|
/**
|
|
1004
1010
|
*
|
|
1005
1011
|
* @type {string}
|
|
@@ -1923,7 +1929,7 @@ interface ConversationSuggestionApi {
|
|
|
1923
1929
|
* @type Conversationtypedata
|
|
1924
1930
|
* @export
|
|
1925
1931
|
*/
|
|
1926
|
-
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi |
|
|
1932
|
+
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
|
|
1927
1933
|
/**
|
|
1928
1934
|
*
|
|
1929
1935
|
* @export
|
|
@@ -2330,7 +2336,7 @@ type Messagecreate = APIMessageCreate1 | APIMessageCreate2;
|
|
|
2330
2336
|
* @type Messagetypedata
|
|
2331
2337
|
* @export
|
|
2332
2338
|
*/
|
|
2333
|
-
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi |
|
|
2339
|
+
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSMessageApi;
|
|
2334
2340
|
/**
|
|
2335
2341
|
* @type Messagetypedata1
|
|
2336
2342
|
* @export
|
|
@@ -2962,11 +2968,121 @@ declare const ReservationStatus: {
|
|
|
2962
2968
|
readonly Confirmed: "CONFIRMED";
|
|
2963
2969
|
};
|
|
2964
2970
|
type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus];
|
|
2971
|
+
/**
|
|
2972
|
+
*
|
|
2973
|
+
* @export
|
|
2974
|
+
* @interface SMSConversationDataApi
|
|
2975
|
+
*/
|
|
2976
|
+
interface SMSConversationDataApi {
|
|
2977
|
+
/**
|
|
2978
|
+
*
|
|
2979
|
+
* @type {string}
|
|
2980
|
+
* @memberof SMSConversationDataApi
|
|
2981
|
+
*/
|
|
2982
|
+
'conversationType': SMSConversationDataApiConversationTypeEnum;
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @type {string}
|
|
2986
|
+
* @memberof SMSConversationDataApi
|
|
2987
|
+
*/
|
|
2988
|
+
'fromManagedPhoneId': string;
|
|
2989
|
+
/**
|
|
2990
|
+
*
|
|
2991
|
+
* @type {Array<PhonesApi>}
|
|
2992
|
+
* @memberof SMSConversationDataApi
|
|
2993
|
+
*/
|
|
2994
|
+
'toPhones': Array<PhonesApi>;
|
|
2995
|
+
/**
|
|
2996
|
+
*
|
|
2997
|
+
* @type {string}
|
|
2998
|
+
* @memberof SMSConversationDataApi
|
|
2999
|
+
*/
|
|
3000
|
+
'providerGroupId'?: string | null;
|
|
3001
|
+
}
|
|
3002
|
+
declare const SMSConversationDataApiConversationTypeEnum: {
|
|
3003
|
+
readonly Text: "TEXT";
|
|
3004
|
+
};
|
|
3005
|
+
type SMSConversationDataApiConversationTypeEnum = typeof SMSConversationDataApiConversationTypeEnum[keyof typeof SMSConversationDataApiConversationTypeEnum];
|
|
3006
|
+
/**
|
|
3007
|
+
*
|
|
3008
|
+
* @export
|
|
3009
|
+
* @interface SMSInboundSenderTypeDataApi
|
|
3010
|
+
*/
|
|
3011
|
+
interface SMSInboundSenderTypeDataApi {
|
|
3012
|
+
/**
|
|
3013
|
+
*
|
|
3014
|
+
* @type {string}
|
|
3015
|
+
* @memberof SMSInboundSenderTypeDataApi
|
|
3016
|
+
*/
|
|
3017
|
+
'direction': SMSInboundSenderTypeDataApiDirectionEnum;
|
|
3018
|
+
/**
|
|
3019
|
+
*
|
|
3020
|
+
* @type {string}
|
|
3021
|
+
* @memberof SMSInboundSenderTypeDataApi
|
|
3022
|
+
*/
|
|
3023
|
+
'fromPhoneId'?: string | null;
|
|
3024
|
+
}
|
|
3025
|
+
declare const SMSInboundSenderTypeDataApiDirectionEnum: {
|
|
3026
|
+
readonly Inbound: "INBOUND";
|
|
3027
|
+
};
|
|
3028
|
+
type SMSInboundSenderTypeDataApiDirectionEnum = typeof SMSInboundSenderTypeDataApiDirectionEnum[keyof typeof SMSInboundSenderTypeDataApiDirectionEnum];
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
* @export
|
|
3032
|
+
* @interface SMSMessageApi
|
|
3033
|
+
*/
|
|
3034
|
+
interface SMSMessageApi {
|
|
3035
|
+
/**
|
|
3036
|
+
*
|
|
3037
|
+
* @type {string}
|
|
3038
|
+
* @memberof SMSMessageApi
|
|
3039
|
+
*/
|
|
3040
|
+
'messageType': SMSMessageApiMessageTypeEnum;
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @type {Array<string>}
|
|
3044
|
+
* @memberof SMSMessageApi
|
|
3045
|
+
*/
|
|
3046
|
+
'mediaUrl'?: Array<string> | null;
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @type {Sendertypedata}
|
|
3050
|
+
* @memberof SMSMessageApi
|
|
3051
|
+
*/
|
|
3052
|
+
'senderTypeData': Sendertypedata;
|
|
3053
|
+
}
|
|
3054
|
+
declare const SMSMessageApiMessageTypeEnum: {
|
|
3055
|
+
readonly Text: "TEXT";
|
|
3056
|
+
};
|
|
3057
|
+
type SMSMessageApiMessageTypeEnum = typeof SMSMessageApiMessageTypeEnum[keyof typeof SMSMessageApiMessageTypeEnum];
|
|
3058
|
+
/**
|
|
3059
|
+
*
|
|
3060
|
+
* @export
|
|
3061
|
+
* @interface SMSOutboundSenderTypeDataApi
|
|
3062
|
+
*/
|
|
3063
|
+
interface SMSOutboundSenderTypeDataApi {
|
|
3064
|
+
/**
|
|
3065
|
+
*
|
|
3066
|
+
* @type {string}
|
|
3067
|
+
* @memberof SMSOutboundSenderTypeDataApi
|
|
3068
|
+
*/
|
|
3069
|
+
'direction': SMSOutboundSenderTypeDataApiDirectionEnum;
|
|
3070
|
+
/**
|
|
3071
|
+
*
|
|
3072
|
+
* @type {string}
|
|
3073
|
+
* @memberof SMSOutboundSenderTypeDataApi
|
|
3074
|
+
*/
|
|
3075
|
+
'fromManagedPhoneId': string;
|
|
3076
|
+
}
|
|
3077
|
+
declare const SMSOutboundSenderTypeDataApiDirectionEnum: {
|
|
3078
|
+
readonly Outbound: "OUTBOUND";
|
|
3079
|
+
};
|
|
3080
|
+
type SMSOutboundSenderTypeDataApiDirectionEnum = typeof SMSOutboundSenderTypeDataApiDirectionEnum[keyof typeof SMSOutboundSenderTypeDataApiDirectionEnum];
|
|
2965
3081
|
/**
|
|
2966
3082
|
* @type Sendertypedata
|
|
2967
3083
|
* @export
|
|
2968
3084
|
*/
|
|
2969
|
-
type Sendertypedata =
|
|
3085
|
+
type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi;
|
|
2970
3086
|
/**
|
|
2971
3087
|
*
|
|
2972
3088
|
* @export
|
|
@@ -3297,116 +3413,6 @@ interface ToItemApi {
|
|
|
3297
3413
|
*/
|
|
3298
3414
|
'relatedListings'?: Array<RelatedListingApi>;
|
|
3299
3415
|
}
|
|
3300
|
-
/**
|
|
3301
|
-
*
|
|
3302
|
-
* @export
|
|
3303
|
-
* @interface TwilioConversationDataApi
|
|
3304
|
-
*/
|
|
3305
|
-
interface TwilioConversationDataApi {
|
|
3306
|
-
/**
|
|
3307
|
-
*
|
|
3308
|
-
* @type {string}
|
|
3309
|
-
* @memberof TwilioConversationDataApi
|
|
3310
|
-
*/
|
|
3311
|
-
'conversationType': TwilioConversationDataApiConversationTypeEnum;
|
|
3312
|
-
/**
|
|
3313
|
-
*
|
|
3314
|
-
* @type {string}
|
|
3315
|
-
* @memberof TwilioConversationDataApi
|
|
3316
|
-
*/
|
|
3317
|
-
'fromManagedPhoneId': string;
|
|
3318
|
-
/**
|
|
3319
|
-
*
|
|
3320
|
-
* @type {Array<PhonesApi>}
|
|
3321
|
-
* @memberof TwilioConversationDataApi
|
|
3322
|
-
*/
|
|
3323
|
-
'toPhones': Array<PhonesApi>;
|
|
3324
|
-
/**
|
|
3325
|
-
*
|
|
3326
|
-
* @type {string}
|
|
3327
|
-
* @memberof TwilioConversationDataApi
|
|
3328
|
-
*/
|
|
3329
|
-
'twilioGroupId'?: string | null;
|
|
3330
|
-
}
|
|
3331
|
-
declare const TwilioConversationDataApiConversationTypeEnum: {
|
|
3332
|
-
readonly Text: "TEXT";
|
|
3333
|
-
};
|
|
3334
|
-
type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
|
|
3335
|
-
/**
|
|
3336
|
-
*
|
|
3337
|
-
* @export
|
|
3338
|
-
* @interface TwilioInboundSenderTypeDataApi
|
|
3339
|
-
*/
|
|
3340
|
-
interface TwilioInboundSenderTypeDataApi {
|
|
3341
|
-
/**
|
|
3342
|
-
*
|
|
3343
|
-
* @type {string}
|
|
3344
|
-
* @memberof TwilioInboundSenderTypeDataApi
|
|
3345
|
-
*/
|
|
3346
|
-
'direction': TwilioInboundSenderTypeDataApiDirectionEnum;
|
|
3347
|
-
/**
|
|
3348
|
-
*
|
|
3349
|
-
* @type {string}
|
|
3350
|
-
* @memberof TwilioInboundSenderTypeDataApi
|
|
3351
|
-
*/
|
|
3352
|
-
'fromPhoneId'?: string | null;
|
|
3353
|
-
}
|
|
3354
|
-
declare const TwilioInboundSenderTypeDataApiDirectionEnum: {
|
|
3355
|
-
readonly Inbound: "INBOUND";
|
|
3356
|
-
};
|
|
3357
|
-
type TwilioInboundSenderTypeDataApiDirectionEnum = typeof TwilioInboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioInboundSenderTypeDataApiDirectionEnum];
|
|
3358
|
-
/**
|
|
3359
|
-
*
|
|
3360
|
-
* @export
|
|
3361
|
-
* @interface TwilioOutboundSenderTypeDataApi
|
|
3362
|
-
*/
|
|
3363
|
-
interface TwilioOutboundSenderTypeDataApi {
|
|
3364
|
-
/**
|
|
3365
|
-
*
|
|
3366
|
-
* @type {string}
|
|
3367
|
-
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3368
|
-
*/
|
|
3369
|
-
'direction': TwilioOutboundSenderTypeDataApiDirectionEnum;
|
|
3370
|
-
/**
|
|
3371
|
-
*
|
|
3372
|
-
* @type {string}
|
|
3373
|
-
* @memberof TwilioOutboundSenderTypeDataApi
|
|
3374
|
-
*/
|
|
3375
|
-
'fromManagedPhoneId': string;
|
|
3376
|
-
}
|
|
3377
|
-
declare const TwilioOutboundSenderTypeDataApiDirectionEnum: {
|
|
3378
|
-
readonly Outbound: "OUTBOUND";
|
|
3379
|
-
};
|
|
3380
|
-
type TwilioOutboundSenderTypeDataApiDirectionEnum = typeof TwilioOutboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioOutboundSenderTypeDataApiDirectionEnum];
|
|
3381
|
-
/**
|
|
3382
|
-
*
|
|
3383
|
-
* @export
|
|
3384
|
-
* @interface TwilioProviderMessageApi
|
|
3385
|
-
*/
|
|
3386
|
-
interface TwilioProviderMessageApi {
|
|
3387
|
-
/**
|
|
3388
|
-
*
|
|
3389
|
-
* @type {string}
|
|
3390
|
-
* @memberof TwilioProviderMessageApi
|
|
3391
|
-
*/
|
|
3392
|
-
'messageType': TwilioProviderMessageApiMessageTypeEnum;
|
|
3393
|
-
/**
|
|
3394
|
-
*
|
|
3395
|
-
* @type {Array<string>}
|
|
3396
|
-
* @memberof TwilioProviderMessageApi
|
|
3397
|
-
*/
|
|
3398
|
-
'mediaUrl'?: Array<string> | null;
|
|
3399
|
-
/**
|
|
3400
|
-
*
|
|
3401
|
-
* @type {Sendertypedata}
|
|
3402
|
-
* @memberof TwilioProviderMessageApi
|
|
3403
|
-
*/
|
|
3404
|
-
'senderTypeData': Sendertypedata;
|
|
3405
|
-
}
|
|
3406
|
-
declare const TwilioProviderMessageApiMessageTypeEnum: {
|
|
3407
|
-
readonly Text: "TEXT";
|
|
3408
|
-
};
|
|
3409
|
-
type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
|
|
3410
3416
|
/**
|
|
3411
3417
|
*
|
|
3412
3418
|
* @export
|
|
@@ -6993,4 +6999,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6993
6999
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6994
7000
|
}
|
|
6995
7001
|
|
|
6996
|
-
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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi,
|
|
7002
|
+
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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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 SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSMessageApi, SMSMessageApiMessageTypeEnum, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.js
CHANGED
|
@@ -181,6 +181,18 @@ var ReservationStatus = {
|
|
|
181
181
|
Pending: "PENDING",
|
|
182
182
|
Confirmed: "CONFIRMED"
|
|
183
183
|
};
|
|
184
|
+
var SMSConversationDataApiConversationTypeEnum = {
|
|
185
|
+
Text: "TEXT"
|
|
186
|
+
};
|
|
187
|
+
var SMSInboundSenderTypeDataApiDirectionEnum = {
|
|
188
|
+
Inbound: "INBOUND"
|
|
189
|
+
};
|
|
190
|
+
var SMSMessageApiMessageTypeEnum = {
|
|
191
|
+
Text: "TEXT"
|
|
192
|
+
};
|
|
193
|
+
var SMSOutboundSenderTypeDataApiDirectionEnum = {
|
|
194
|
+
Outbound: "OUTBOUND"
|
|
195
|
+
};
|
|
184
196
|
var SortOrder = {
|
|
185
197
|
Asc: "asc",
|
|
186
198
|
Desc: "desc"
|
|
@@ -231,18 +243,6 @@ var SuggestionStatus = {
|
|
|
231
243
|
AnsweredByStaff: "ANSWERED_BY_STAFF",
|
|
232
244
|
ReplyGenerated: "REPLY_GENERATED"
|
|
233
245
|
};
|
|
234
|
-
var TwilioConversationDataApiConversationTypeEnum = {
|
|
235
|
-
Text: "TEXT"
|
|
236
|
-
};
|
|
237
|
-
var TwilioInboundSenderTypeDataApiDirectionEnum = {
|
|
238
|
-
Inbound: "INBOUND"
|
|
239
|
-
};
|
|
240
|
-
var TwilioOutboundSenderTypeDataApiDirectionEnum = {
|
|
241
|
-
Outbound: "OUTBOUND"
|
|
242
|
-
};
|
|
243
|
-
var TwilioProviderMessageApiMessageTypeEnum = {
|
|
244
|
-
Text: "TEXT"
|
|
245
|
-
};
|
|
246
246
|
var UserDeviceOs = {
|
|
247
247
|
Android: "ANDROID",
|
|
248
248
|
Ios: "IOS",
|
|
@@ -6358,5 +6358,5 @@ var Configuration = class {
|
|
|
6358
6358
|
|
|
6359
6359
|
|
|
6360
6360
|
|
|
6361
|
-
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReasonType = ReasonType; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.
|
|
6361
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReasonType = ReasonType; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SMSConversationDataApiConversationTypeEnum = SMSConversationDataApiConversationTypeEnum; exports.SMSInboundSenderTypeDataApiDirectionEnum = SMSInboundSenderTypeDataApiDirectionEnum; exports.SMSMessageApiMessageTypeEnum = SMSMessageApiMessageTypeEnum; exports.SMSOutboundSenderTypeDataApiDirectionEnum = SMSOutboundSenderTypeDataApiDirectionEnum; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionStatus = SuggestionStatus; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6362
6362
|
//# sourceMappingURL=index.js.map
|