@ember-home/unbound-ts-client 0.0.94 → 0.0.95

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
@@ -777,6 +777,19 @@ interface APIConversation {
777
777
  */
778
778
  'latestSuggestion': ConversationSuggestionApi;
779
779
  }
780
+ /**
781
+ *
782
+ * @export
783
+ * @interface APIConversationCreate
784
+ */
785
+ interface APIConversationCreate {
786
+ /**
787
+ *
788
+ * @type {SrcResourceModelsHelperModelsCustomBaseModelCreateApi1}
789
+ * @memberof APIConversationCreate
790
+ */
791
+ 'conversationTypeData': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1;
792
+ }
780
793
  /**
781
794
  *
782
795
  * @export
@@ -1115,18 +1128,6 @@ interface APIMessage {
1115
1128
  * @memberof APIMessage
1116
1129
  */
1117
1130
  'attachments'?: Array<MessageAttachmentApi> | null;
1118
- /**
1119
- *
1120
- * @type {string}
1121
- * @memberof APIMessage
1122
- */
1123
- 'suggestionId'?: string | null;
1124
- /**
1125
- *
1126
- * @type {ReasonType}
1127
- * @memberof APIMessage
1128
- */
1129
- 'suggestionReason'?: ReasonType | null;
1130
1131
  /**
1131
1132
  *
1132
1133
  * @type {string}
@@ -1221,10 +1222,10 @@ interface APIMessageCreate2 {
1221
1222
  'suggestionId': string;
1222
1223
  /**
1223
1224
  *
1224
- * @type {ReasonType}
1225
+ * @type {SuggestionRejectionReasonType}
1225
1226
  * @memberof APIMessageCreate2
1226
1227
  */
1227
- 'suggestionReason'?: ReasonType | null;
1228
+ 'suggestionReason'?: SuggestionRejectionReasonType | null;
1228
1229
  }
1229
1230
  /**
1230
1231
  *
@@ -2341,7 +2342,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
2341
2342
  * @type Messagetypedata1
2342
2343
  * @export
2343
2344
  */
2344
- type Messagetypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi3;
2345
+ type Messagetypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi4;
2345
2346
  /**
2346
2347
  *
2347
2348
  * @export
@@ -2596,25 +2597,6 @@ declare const PhoneInboxApiInboxTypeEnum: {
2596
2597
  readonly Text: "TEXT";
2597
2598
  };
2598
2599
  type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
2599
- /**
2600
- *
2601
- * @export
2602
- * @interface PhonesApi
2603
- */
2604
- interface PhonesApi {
2605
- /**
2606
- *
2607
- * @type {string}
2608
- * @memberof PhonesApi
2609
- */
2610
- 'phone': string;
2611
- /**
2612
- *
2613
- * @type {string}
2614
- * @memberof PhonesApi
2615
- */
2616
- 'contactId'?: string | null;
2617
- }
2618
2600
  /**
2619
2601
  *
2620
2602
  * @export
@@ -2864,18 +2846,6 @@ declare const ProviderStaffApiStaffTypeEnum: {
2864
2846
  readonly ProviderStaff: "PROVIDER_STAFF";
2865
2847
  };
2866
2848
  type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
2867
- /**
2868
- *
2869
- * @export
2870
- * @enum {string}
2871
- */
2872
- declare const ReasonType: {
2873
- readonly Irrelevant: "IRRELEVANT";
2874
- readonly Inaccurate: "INACCURATE";
2875
- readonly InappropriateTone: "INAPPROPRIATE_TONE";
2876
- readonly TooVerboseOrTerse: "TOO_VERBOSE_OR_TERSE";
2877
- };
2878
- type ReasonType = typeof ReasonType[keyof typeof ReasonType];
2879
2849
  /**
2880
2850
  *
2881
2851
  * @export
@@ -2980,24 +2950,6 @@ interface SMSConversationDataApi {
2980
2950
  * @memberof SMSConversationDataApi
2981
2951
  */
2982
2952
  '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
2953
  }
3002
2954
  declare const SMSConversationDataApiConversationTypeEnum: {
3003
2955
  readonly Text: "TEXT";
@@ -3020,7 +2972,7 @@ interface SMSInboundSenderTypeDataApi {
3020
2972
  * @type {string}
3021
2973
  * @memberof SMSInboundSenderTypeDataApi
3022
2974
  */
3023
- 'fromPhoneId'?: string | null;
2975
+ 'fromPhone': string;
3024
2976
  }
3025
2977
  declare const SMSInboundSenderTypeDataApiDirectionEnum: {
3026
2978
  readonly Inbound: "INBOUND";
@@ -3043,7 +2995,7 @@ interface SMSMessageApi {
3043
2995
  * @type {Array<string>}
3044
2996
  * @memberof SMSMessageApi
3045
2997
  */
3046
- 'mediaUrl'?: Array<string> | null;
2998
+ 'mediaUrls'?: Array<string> | null;
3047
2999
  /**
3048
3000
  *
3049
3001
  * @type {Sendertypedata}
@@ -3067,12 +3019,6 @@ interface SMSOutboundSenderTypeDataApi {
3067
3019
  * @memberof SMSOutboundSenderTypeDataApi
3068
3020
  */
3069
3021
  'direction': SMSOutboundSenderTypeDataApiDirectionEnum;
3070
- /**
3071
- *
3072
- * @type {string}
3073
- * @memberof SMSOutboundSenderTypeDataApi
3074
- */
3075
- 'fromManagedPhoneId': string;
3076
3022
  }
3077
3023
  declare const SMSOutboundSenderTypeDataApiDirectionEnum: {
3078
3024
  readonly Outbound: "OUTBOUND";
@@ -3127,18 +3073,30 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
3127
3073
  * @type {string}
3128
3074
  * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
3129
3075
  */
3130
- 'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
3076
+ 'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum;
3131
3077
  /**
3132
3078
  *
3133
- * @type {ProviderCommunicationTypeInput}
3079
+ * @type {Array<ToPhoneApi>}
3134
3080
  * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
3135
3081
  */
3136
- 'communicationType': ProviderCommunicationTypeInput;
3082
+ 'toPhones': Array<ToPhoneApi>;
3083
+ /**
3084
+ *
3085
+ * @type {string}
3086
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
3087
+ */
3088
+ 'managedPhoneId'?: string | null;
3089
+ /**
3090
+ *
3091
+ * @type {string}
3092
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
3093
+ */
3094
+ 'providerGroupId'?: string | null;
3137
3095
  }
3138
- declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
3139
- readonly RentalProvider: "RENTAL_PROVIDER";
3096
+ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum: {
3097
+ readonly Text: "TEXT";
3140
3098
  };
3141
- type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum];
3099
+ type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum];
3142
3100
  /**
3143
3101
  *
3144
3102
  * @export
@@ -3151,9 +3109,15 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
3151
3109
  * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
3152
3110
  */
3153
3111
  'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum;
3112
+ /**
3113
+ *
3114
+ * @type {ProviderCommunicationTypeInput}
3115
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
3116
+ */
3117
+ 'communicationType': ProviderCommunicationTypeInput;
3154
3118
  }
3155
3119
  declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum: {
3156
- readonly Text: "TEXT";
3120
+ readonly RentalProvider: "RENTAL_PROVIDER";
3157
3121
  };
3158
3122
  type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum];
3159
3123
  /**
@@ -3170,33 +3134,56 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 {
3170
3134
  'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum;
3171
3135
  /**
3172
3136
  *
3173
- * @type {string}
3137
+ * @type {Array<string>}
3174
3138
  * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
3175
3139
  */
3140
+ 'mediaUrls'?: Array<string> | null;
3141
+ }
3142
+ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum: {
3143
+ readonly Text: "TEXT";
3144
+ };
3145
+ type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum];
3146
+ /**
3147
+ *
3148
+ * @export
3149
+ * @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3150
+ */
3151
+ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 {
3152
+ /**
3153
+ *
3154
+ * @type {string}
3155
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3156
+ */
3157
+ 'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum;
3158
+ /**
3159
+ *
3160
+ * @type {string}
3161
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3162
+ */
3176
3163
  'outboundFromManagedEmailId'?: string | null;
3177
3164
  /**
3178
3165
  *
3179
3166
  * @type {string}
3180
- * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
3167
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3181
3168
  */
3182
3169
  'subject': string;
3183
3170
  /**
3184
3171
  *
3185
3172
  * @type {string}
3186
- * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
3173
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3187
3174
  */
3188
3175
  'htmlBody': string | null;
3189
3176
  /**
3190
3177
  *
3191
3178
  * @type {string}
3192
- * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
3179
+ * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
3193
3180
  */
3194
3181
  'plainBody': string | null;
3195
3182
  }
3196
- declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum: {
3183
+ declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum: {
3197
3184
  readonly Email: "EMAIL";
3198
3185
  };
3199
- type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum];
3186
+ type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum];
3200
3187
  /**
3201
3188
  *
3202
3189
  * @export
@@ -3319,32 +3306,44 @@ interface SuggestionApi {
3319
3306
  * @type {string}
3320
3307
  * @memberof SuggestionApi
3321
3308
  */
3322
- 'textSuggestedReply': string;
3309
+ 'suggestionId': string;
3323
3310
  /**
3324
3311
  *
3325
3312
  * @type {string}
3326
3313
  * @memberof SuggestionApi
3327
3314
  */
3328
- 'chatSuggestedReply': string;
3315
+ 'textSuggestedReply': string;
3329
3316
  /**
3330
3317
  *
3331
3318
  * @type {string}
3332
3319
  * @memberof SuggestionApi
3333
3320
  */
3334
- 'emailSuggestedReply': string;
3321
+ 'chatSuggestedReply': string;
3335
3322
  /**
3336
3323
  *
3337
3324
  * @type {string}
3338
3325
  * @memberof SuggestionApi
3339
3326
  */
3340
- 'tone': string;
3327
+ 'emailSuggestedReply': string;
3341
3328
  /**
3342
3329
  *
3343
3330
  * @type {string}
3344
3331
  * @memberof SuggestionApi
3345
3332
  */
3346
- 'suggestionId': string;
3333
+ 'tone': string;
3347
3334
  }
3335
+ /**
3336
+ *
3337
+ * @export
3338
+ * @enum {string}
3339
+ */
3340
+ declare const SuggestionRejectionReasonType: {
3341
+ readonly Irrelevant: "IRRELEVANT";
3342
+ readonly Inaccurate: "INACCURATE";
3343
+ readonly InappropriateTone: "INAPPROPRIATE_TONE";
3344
+ readonly TooVerboseOrTerse: "TOO_VERBOSE_OR_TERSE";
3345
+ };
3346
+ type SuggestionRejectionReasonType = typeof SuggestionRejectionReasonType[keyof typeof SuggestionRejectionReasonType];
3348
3347
  /**
3349
3348
  *
3350
3349
  * @export
@@ -3352,10 +3351,8 @@ interface SuggestionApi {
3352
3351
  */
3353
3352
  declare const SuggestionStatus: {
3354
3353
  readonly Generating: "GENERATING";
3355
- readonly SkippedOutdated: "SKIPPED_OUTDATED";
3356
- readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
3357
- readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
3358
3354
  readonly ReplyGenerated: "REPLY_GENERATED";
3355
+ readonly NoAvailableReply: "NO_AVAILABLE_REPLY";
3359
3356
  };
3360
3357
  type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
3361
3358
  /**
@@ -3413,6 +3410,25 @@ interface ToItemApi {
3413
3410
  */
3414
3411
  'relatedListings'?: Array<RelatedListingApi>;
3415
3412
  }
3413
+ /**
3414
+ *
3415
+ * @export
3416
+ * @interface ToPhoneApi
3417
+ */
3418
+ interface ToPhoneApi {
3419
+ /**
3420
+ *
3421
+ * @type {string}
3422
+ * @memberof ToPhoneApi
3423
+ */
3424
+ 'phone': string;
3425
+ /**
3426
+ *
3427
+ * @type {string}
3428
+ * @memberof ToPhoneApi
3429
+ */
3430
+ 'contactId'?: string | null;
3431
+ }
3416
3432
  /**
3417
3433
  *
3418
3434
  * @export
@@ -4402,38 +4418,6 @@ declare class ContactsApi extends BaseAPI {
4402
4418
  * @export
4403
4419
  */
4404
4420
  declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
4405
- /**
4406
- * Conversations Get
4407
- * @summary Conversations Get
4408
- * @param {string} conversationId
4409
- * @param {*} [options] Override http request option.
4410
- * @throws {RequiredError}
4411
- */
4412
- conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4413
- /**
4414
- * List all conversations, must filter by contact_id
4415
- * @summary Conversations List
4416
- * @param {string | null} [searchString]
4417
- * @param {string | null} [contactId]
4418
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4419
- * @param {string | null} [cursor] Cursor for keyset paging
4420
- * @param {number} [limit]
4421
- * @param {PaginationDirection} [pageDir] Direction of paging
4422
- * @param {SortOrder} [sortOrder] Sort order asc/desc
4423
- * @param {string | null} [inboxId]
4424
- * @param {*} [options] Override http request option.
4425
- * @throws {RequiredError}
4426
- */
4427
- conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4428
- /**
4429
- * Conversations Update
4430
- * @summary Conversations Update
4431
- * @param {string} conversationId
4432
- * @param {APIConversationUpdate} aPIConversationUpdate
4433
- * @param {*} [options] Override http request option.
4434
- * @throws {RequiredError}
4435
- */
4436
- conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4437
4421
  /**
4438
4422
  * Messages Create
4439
4423
  * @summary Messages Create
@@ -4475,38 +4459,6 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
4475
4459
  * @export
4476
4460
  */
4477
4461
  declare const ConversationsApiFp: (configuration?: Configuration) => {
4478
- /**
4479
- * Conversations Get
4480
- * @summary Conversations Get
4481
- * @param {string} conversationId
4482
- * @param {*} [options] Override http request option.
4483
- * @throws {RequiredError}
4484
- */
4485
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4486
- /**
4487
- * List all conversations, must filter by contact_id
4488
- * @summary Conversations List
4489
- * @param {string | null} [searchString]
4490
- * @param {string | null} [contactId]
4491
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4492
- * @param {string | null} [cursor] Cursor for keyset paging
4493
- * @param {number} [limit]
4494
- * @param {PaginationDirection} [pageDir] Direction of paging
4495
- * @param {SortOrder} [sortOrder] Sort order asc/desc
4496
- * @param {string | null} [inboxId]
4497
- * @param {*} [options] Override http request option.
4498
- * @throws {RequiredError}
4499
- */
4500
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
4501
- /**
4502
- * Conversations Update
4503
- * @summary Conversations Update
4504
- * @param {string} conversationId
4505
- * @param {APIConversationUpdate} aPIConversationUpdate
4506
- * @param {*} [options] Override http request option.
4507
- * @throws {RequiredError}
4508
- */
4509
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4510
4462
  /**
4511
4463
  * Messages Create
4512
4464
  * @summary Messages Create
@@ -4548,38 +4500,6 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
4548
4500
  * @export
4549
4501
  */
4550
4502
  declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4551
- /**
4552
- * Conversations Get
4553
- * @summary Conversations Get
4554
- * @param {string} conversationId
4555
- * @param {*} [options] Override http request option.
4556
- * @throws {RequiredError}
4557
- */
4558
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4559
- /**
4560
- * List all conversations, must filter by contact_id
4561
- * @summary Conversations List
4562
- * @param {string | null} [searchString]
4563
- * @param {string | null} [contactId]
4564
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4565
- * @param {string | null} [cursor] Cursor for keyset paging
4566
- * @param {number} [limit]
4567
- * @param {PaginationDirection} [pageDir] Direction of paging
4568
- * @param {SortOrder} [sortOrder] Sort order asc/desc
4569
- * @param {string | null} [inboxId]
4570
- * @param {*} [options] Override http request option.
4571
- * @throws {RequiredError}
4572
- */
4573
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
4574
- /**
4575
- * Conversations Update
4576
- * @summary Conversations Update
4577
- * @param {string} conversationId
4578
- * @param {APIConversationUpdate} aPIConversationUpdate
4579
- * @param {*} [options] Override http request option.
4580
- * @throws {RequiredError}
4581
- */
4582
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4583
4503
  /**
4584
4504
  * Messages Create
4585
4505
  * @summary Messages Create
@@ -4623,41 +4543,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
4623
4543
  * @extends {BaseAPI}
4624
4544
  */
4625
4545
  declare class ConversationsApi extends BaseAPI {
4626
- /**
4627
- * Conversations Get
4628
- * @summary Conversations Get
4629
- * @param {string} conversationId
4630
- * @param {*} [options] Override http request option.
4631
- * @throws {RequiredError}
4632
- * @memberof ConversationsApi
4633
- */
4634
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
4635
- /**
4636
- * List all conversations, must filter by contact_id
4637
- * @summary Conversations List
4638
- * @param {string | null} [searchString]
4639
- * @param {string | null} [contactId]
4640
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4641
- * @param {string | null} [cursor] Cursor for keyset paging
4642
- * @param {number} [limit]
4643
- * @param {PaginationDirection} [pageDir] Direction of paging
4644
- * @param {SortOrder} [sortOrder] Sort order asc/desc
4645
- * @param {string | null} [inboxId]
4646
- * @param {*} [options] Override http request option.
4647
- * @throws {RequiredError}
4648
- * @memberof ConversationsApi
4649
- */
4650
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
4651
- /**
4652
- * Conversations Update
4653
- * @summary Conversations Update
4654
- * @param {string} conversationId
4655
- * @param {APIConversationUpdate} aPIConversationUpdate
4656
- * @param {*} [options] Override http request option.
4657
- * @throws {RequiredError}
4658
- * @memberof ConversationsApi
4659
- */
4660
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
4661
4546
  /**
4662
4547
  * Messages Create
4663
4548
  * @summary Messages Create
@@ -4761,6 +4646,47 @@ declare class HostawayApi extends BaseAPI {
4761
4646
  * @export
4762
4647
  */
4763
4648
  declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
4649
+ /**
4650
+ * Conversations Create
4651
+ * @summary Conversations Create
4652
+ * @param {string} inboxId
4653
+ * @param {APIConversationCreate} aPIConversationCreate
4654
+ * @param {*} [options] Override http request option.
4655
+ * @throws {RequiredError}
4656
+ */
4657
+ conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4658
+ /**
4659
+ * Conversations Get
4660
+ * @summary Conversations Get
4661
+ * @param {string} conversationId
4662
+ * @param {*} [options] Override http request option.
4663
+ * @throws {RequiredError}
4664
+ */
4665
+ conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4666
+ /**
4667
+ * List all conversations, must filter by contact_id
4668
+ * @summary Conversations List
4669
+ * @param {string | null} [searchString]
4670
+ * @param {string | null} [contactId]
4671
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4672
+ * @param {string | null} [cursor] Cursor for keyset paging
4673
+ * @param {number} [limit]
4674
+ * @param {PaginationDirection} [pageDir] Direction of paging
4675
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
4676
+ * @param {string | null} [inboxId]
4677
+ * @param {*} [options] Override http request option.
4678
+ * @throws {RequiredError}
4679
+ */
4680
+ conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4681
+ /**
4682
+ * Conversations Update
4683
+ * @summary Conversations Update
4684
+ * @param {string} conversationId
4685
+ * @param {APIConversationUpdate} aPIConversationUpdate
4686
+ * @param {*} [options] Override http request option.
4687
+ * @throws {RequiredError}
4688
+ */
4689
+ conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4764
4690
  /**
4765
4691
  * Inboxes List
4766
4692
  * @summary Inboxes List
@@ -4774,6 +4700,47 @@ declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
4774
4700
  * @export
4775
4701
  */
4776
4702
  declare const InboxesApiFp: (configuration?: Configuration) => {
4703
+ /**
4704
+ * Conversations Create
4705
+ * @summary Conversations Create
4706
+ * @param {string} inboxId
4707
+ * @param {APIConversationCreate} aPIConversationCreate
4708
+ * @param {*} [options] Override http request option.
4709
+ * @throws {RequiredError}
4710
+ */
4711
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4712
+ /**
4713
+ * Conversations Get
4714
+ * @summary Conversations Get
4715
+ * @param {string} conversationId
4716
+ * @param {*} [options] Override http request option.
4717
+ * @throws {RequiredError}
4718
+ */
4719
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4720
+ /**
4721
+ * List all conversations, must filter by contact_id
4722
+ * @summary Conversations List
4723
+ * @param {string | null} [searchString]
4724
+ * @param {string | null} [contactId]
4725
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4726
+ * @param {string | null} [cursor] Cursor for keyset paging
4727
+ * @param {number} [limit]
4728
+ * @param {PaginationDirection} [pageDir] Direction of paging
4729
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
4730
+ * @param {string | null} [inboxId]
4731
+ * @param {*} [options] Override http request option.
4732
+ * @throws {RequiredError}
4733
+ */
4734
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
4735
+ /**
4736
+ * Conversations Update
4737
+ * @summary Conversations Update
4738
+ * @param {string} conversationId
4739
+ * @param {APIConversationUpdate} aPIConversationUpdate
4740
+ * @param {*} [options] Override http request option.
4741
+ * @throws {RequiredError}
4742
+ */
4743
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
4777
4744
  /**
4778
4745
  * Inboxes List
4779
4746
  * @summary Inboxes List
@@ -4787,6 +4754,47 @@ declare const InboxesApiFp: (configuration?: Configuration) => {
4787
4754
  * @export
4788
4755
  */
4789
4756
  declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4757
+ /**
4758
+ * Conversations Create
4759
+ * @summary Conversations Create
4760
+ * @param {string} inboxId
4761
+ * @param {APIConversationCreate} aPIConversationCreate
4762
+ * @param {*} [options] Override http request option.
4763
+ * @throws {RequiredError}
4764
+ */
4765
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4766
+ /**
4767
+ * Conversations Get
4768
+ * @summary Conversations Get
4769
+ * @param {string} conversationId
4770
+ * @param {*} [options] Override http request option.
4771
+ * @throws {RequiredError}
4772
+ */
4773
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4774
+ /**
4775
+ * List all conversations, must filter by contact_id
4776
+ * @summary Conversations List
4777
+ * @param {string | null} [searchString]
4778
+ * @param {string | null} [contactId]
4779
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4780
+ * @param {string | null} [cursor] Cursor for keyset paging
4781
+ * @param {number} [limit]
4782
+ * @param {PaginationDirection} [pageDir] Direction of paging
4783
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
4784
+ * @param {string | null} [inboxId]
4785
+ * @param {*} [options] Override http request option.
4786
+ * @throws {RequiredError}
4787
+ */
4788
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
4789
+ /**
4790
+ * Conversations Update
4791
+ * @summary Conversations Update
4792
+ * @param {string} conversationId
4793
+ * @param {APIConversationUpdate} aPIConversationUpdate
4794
+ * @param {*} [options] Override http request option.
4795
+ * @throws {RequiredError}
4796
+ */
4797
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
4790
4798
  /**
4791
4799
  * Inboxes List
4792
4800
  * @summary Inboxes List
@@ -4802,6 +4810,51 @@ declare const InboxesApiFactory: (configuration?: Configuration, basePath?: stri
4802
4810
  * @extends {BaseAPI}
4803
4811
  */
4804
4812
  declare class InboxesApi extends BaseAPI {
4813
+ /**
4814
+ * Conversations Create
4815
+ * @summary Conversations Create
4816
+ * @param {string} inboxId
4817
+ * @param {APIConversationCreate} aPIConversationCreate
4818
+ * @param {*} [options] Override http request option.
4819
+ * @throws {RequiredError}
4820
+ * @memberof InboxesApi
4821
+ */
4822
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
4823
+ /**
4824
+ * Conversations Get
4825
+ * @summary Conversations Get
4826
+ * @param {string} conversationId
4827
+ * @param {*} [options] Override http request option.
4828
+ * @throws {RequiredError}
4829
+ * @memberof InboxesApi
4830
+ */
4831
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
4832
+ /**
4833
+ * List all conversations, must filter by contact_id
4834
+ * @summary Conversations List
4835
+ * @param {string | null} [searchString]
4836
+ * @param {string | null} [contactId]
4837
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
4838
+ * @param {string | null} [cursor] Cursor for keyset paging
4839
+ * @param {number} [limit]
4840
+ * @param {PaginationDirection} [pageDir] Direction of paging
4841
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
4842
+ * @param {string | null} [inboxId]
4843
+ * @param {*} [options] Override http request option.
4844
+ * @throws {RequiredError}
4845
+ * @memberof InboxesApi
4846
+ */
4847
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
4848
+ /**
4849
+ * Conversations Update
4850
+ * @summary Conversations Update
4851
+ * @param {string} conversationId
4852
+ * @param {APIConversationUpdate} aPIConversationUpdate
4853
+ * @param {*} [options] Override http request option.
4854
+ * @throws {RequiredError}
4855
+ * @memberof InboxesApi
4856
+ */
4857
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
4805
4858
  /**
4806
4859
  * Inboxes List
4807
4860
  * @summary Inboxes List
@@ -5315,6 +5368,73 @@ declare class ReservationsApi extends BaseAPI {
5315
5368
  */
5316
5369
  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>>;
5317
5370
  }
5371
+ /**
5372
+ * TelnyxApi - axios parameter creator
5373
+ * @export
5374
+ */
5375
+ declare const TelnyxApiAxiosParamCreator: (configuration?: Configuration) => {
5376
+ /**
5377
+ *
5378
+ * @summary Telnyx Webhook
5379
+ * @param {{ [key: string]: any; }} requestBody
5380
+ * @param {*} [options] Override http request option.
5381
+ * @throws {RequiredError}
5382
+ */
5383
+ telnyxWebhookTelnyxWebhooksPost: (requestBody: {
5384
+ [key: string]: any;
5385
+ }, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5386
+ };
5387
+ /**
5388
+ * TelnyxApi - functional programming interface
5389
+ * @export
5390
+ */
5391
+ declare const TelnyxApiFp: (configuration?: Configuration) => {
5392
+ /**
5393
+ *
5394
+ * @summary Telnyx Webhook
5395
+ * @param {{ [key: string]: any; }} requestBody
5396
+ * @param {*} [options] Override http request option.
5397
+ * @throws {RequiredError}
5398
+ */
5399
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
5400
+ [key: string]: any;
5401
+ }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5402
+ };
5403
+ /**
5404
+ * TelnyxApi - factory interface
5405
+ * @export
5406
+ */
5407
+ declare const TelnyxApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5408
+ /**
5409
+ *
5410
+ * @summary Telnyx Webhook
5411
+ * @param {{ [key: string]: any; }} requestBody
5412
+ * @param {*} [options] Override http request option.
5413
+ * @throws {RequiredError}
5414
+ */
5415
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
5416
+ [key: string]: any;
5417
+ }, options?: RawAxiosRequestConfig): AxiosPromise<any>;
5418
+ };
5419
+ /**
5420
+ * TelnyxApi - object-oriented interface
5421
+ * @export
5422
+ * @class TelnyxApi
5423
+ * @extends {BaseAPI}
5424
+ */
5425
+ declare class TelnyxApi extends BaseAPI {
5426
+ /**
5427
+ *
5428
+ * @summary Telnyx Webhook
5429
+ * @param {{ [key: string]: any; }} requestBody
5430
+ * @param {*} [options] Override http request option.
5431
+ * @throws {RequiredError}
5432
+ * @memberof TelnyxApi
5433
+ */
5434
+ telnyxWebhookTelnyxWebhooksPost(requestBody: {
5435
+ [key: string]: any;
5436
+ }, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
5437
+ }
5318
5438
  /**
5319
5439
  * UnboundApi - axios parameter creator
5320
5440
  * @export
@@ -5437,6 +5557,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
5437
5557
  * @throws {RequiredError}
5438
5558
  */
5439
5559
  contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5560
+ /**
5561
+ * Conversations Create
5562
+ * @summary Conversations Create
5563
+ * @param {string} inboxId
5564
+ * @param {APIConversationCreate} aPIConversationCreate
5565
+ * @param {*} [options] Override http request option.
5566
+ * @throws {RequiredError}
5567
+ */
5568
+ conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5440
5569
  /**
5441
5570
  * Conversations Get
5442
5571
  * @summary Conversations Get
@@ -5824,6 +5953,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
5824
5953
  * @throws {RequiredError}
5825
5954
  */
5826
5955
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5956
+ /**
5957
+ * Conversations Create
5958
+ * @summary Conversations Create
5959
+ * @param {string} inboxId
5960
+ * @param {APIConversationCreate} aPIConversationCreate
5961
+ * @param {*} [options] Override http request option.
5962
+ * @throws {RequiredError}
5963
+ */
5964
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5827
5965
  /**
5828
5966
  * Conversations Get
5829
5967
  * @summary Conversations Get
@@ -6211,6 +6349,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
6211
6349
  * @throws {RequiredError}
6212
6350
  */
6213
6351
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6352
+ /**
6353
+ * Conversations Create
6354
+ * @summary Conversations Create
6355
+ * @param {string} inboxId
6356
+ * @param {APIConversationCreate} aPIConversationCreate
6357
+ * @param {*} [options] Override http request option.
6358
+ * @throws {RequiredError}
6359
+ */
6360
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
6214
6361
  /**
6215
6362
  * Conversations Get
6216
6363
  * @summary Conversations Get
@@ -6613,6 +6760,16 @@ declare class UnboundApi extends BaseAPI {
6613
6760
  * @memberof UnboundApi
6614
6761
  */
6615
6762
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
6763
+ /**
6764
+ * Conversations Create
6765
+ * @summary Conversations Create
6766
+ * @param {string} inboxId
6767
+ * @param {APIConversationCreate} aPIConversationCreate
6768
+ * @param {*} [options] Override http request option.
6769
+ * @throws {RequiredError}
6770
+ * @memberof UnboundApi
6771
+ */
6772
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
6616
6773
  /**
6617
6774
  * Conversations Get
6618
6775
  * @summary Conversations Get
@@ -7000,4 +7157,4 @@ declare class UserDevicesApi extends BaseAPI {
7000
7157
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
7001
7158
  }
7002
7159
 
7003
- 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 };
7160
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, 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 ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, 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, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };