@ember-home/unbound-ts-client 0.0.112 → 0.0.113

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
@@ -526,22 +526,22 @@ interface APIContact {
526
526
  'addresses'?: Array<AddressApi>;
527
527
  /**
528
528
  *
529
- * @type {Array<ProviderEmailsApi>}
529
+ * @type {Array<EmailProviderEmailsApi>}
530
530
  * @memberof APIContact
531
531
  */
532
- 'providerEmails'?: Array<ProviderEmailsApi>;
532
+ 'providerEmails'?: Array<EmailProviderEmailsApi>;
533
533
  /**
534
534
  *
535
- * @type {Array<ProviderPhonesApi>}
535
+ * @type {Array<PhoneProviderPhonesApi>}
536
536
  * @memberof APIContact
537
537
  */
538
- 'providerPhones'?: Array<ProviderPhonesApi>;
538
+ 'providerPhones'?: Array<PhoneProviderPhonesApi>;
539
539
  /**
540
540
  *
541
- * @type {Array<ProviderAddressesApi>}
541
+ * @type {Array<AddressProviderAddressesApi>}
542
542
  * @memberof APIContact
543
543
  */
544
- 'providerAddresses'?: Array<ProviderAddressesApi>;
544
+ 'providerAddresses'?: Array<AddressProviderAddressesApi>;
545
545
  /**
546
546
  *
547
547
  * @type {ContactTypeDataApi}
@@ -1031,10 +1031,10 @@ interface APIConversation {
1031
1031
  interface APIConversationCreate {
1032
1032
  /**
1033
1033
  *
1034
- * @type {APICreate}
1034
+ * @type {SMSConversationDataCreateApi}
1035
1035
  * @memberof APIConversationCreate
1036
1036
  */
1037
- 'conversationTypeData': APICreate;
1037
+ 'conversationTypeData': SMSConversationDataCreateApi;
1038
1038
  }
1039
1039
  /**
1040
1040
  *
@@ -1055,47 +1055,6 @@ interface APIConversationUpdate {
1055
1055
  */
1056
1056
  'isUnread'?: boolean | null;
1057
1057
  }
1058
- /**
1059
- *
1060
- * @export
1061
- * @interface APICreate
1062
- */
1063
- interface APICreate {
1064
- /**
1065
- *
1066
- * @type {string}
1067
- * @memberof APICreate
1068
- */
1069
- 'messageType': APICreateMessageTypeEnum;
1070
- /**
1071
- *
1072
- * @type {string}
1073
- * @memberof APICreate
1074
- */
1075
- 'outboundFromManagedEmailId'?: string | null;
1076
- /**
1077
- *
1078
- * @type {string}
1079
- * @memberof APICreate
1080
- */
1081
- 'subject': string;
1082
- /**
1083
- *
1084
- * @type {string}
1085
- * @memberof APICreate
1086
- */
1087
- 'htmlBody': string | null;
1088
- /**
1089
- *
1090
- * @type {string}
1091
- * @memberof APICreate
1092
- */
1093
- 'plainBody': string | null;
1094
- }
1095
- declare const APICreateMessageTypeEnum: {
1096
- readonly Email: "EMAIL";
1097
- };
1098
- type APICreateMessageTypeEnum = typeof APICreateMessageTypeEnum[keyof typeof APICreateMessageTypeEnum];
1099
1058
  /**
1100
1059
  *
1101
1060
  * @export
@@ -1447,10 +1406,10 @@ interface APIMessageCreate {
1447
1406
  'body': string;
1448
1407
  /**
1449
1408
  *
1450
- * @type {WithSuggestionApi}
1409
+ * @type {MessageCreateWithSuggestionApi}
1451
1410
  * @memberof APIMessageCreate
1452
1411
  */
1453
- 'suggestion'?: WithSuggestionApi | null;
1412
+ 'suggestion'?: MessageCreateWithSuggestionApi | null;
1454
1413
  /**
1455
1414
  *
1456
1415
  * @type {Array<MessageAttachmentApi>}
@@ -1732,10 +1691,10 @@ interface APIReservation {
1732
1691
  'totalPrice': number;
1733
1692
  /**
1734
1693
  *
1735
- * @type {ChannelInfoApi}
1694
+ * @type {ReservationBaseModelChannelInfoApi}
1736
1695
  * @memberof APIReservation
1737
1696
  */
1738
- 'channelInfo': ChannelInfoApi;
1697
+ 'channelInfo': ReservationBaseModelChannelInfoApi;
1739
1698
  /**
1740
1699
  *
1741
1700
  * @type {number}
@@ -1756,10 +1715,10 @@ interface APIReservation {
1756
1715
  'listingTitle': string;
1757
1716
  /**
1758
1717
  *
1759
- * @type {ProviderInfoApi}
1718
+ * @type {ReservationProviderInfoApi}
1760
1719
  * @memberof APIReservation
1761
1720
  */
1762
- 'providerInfo': ProviderInfoApi;
1721
+ 'providerInfo': ReservationProviderInfoApi;
1763
1722
  }
1764
1723
  /**
1765
1724
  *
@@ -2139,21 +2098,40 @@ interface AddressApi {
2139
2098
  /**
2140
2099
  *
2141
2100
  * @export
2142
- * @interface AttributeSourceApi
2101
+ * @interface AddressProviderAddressesApi
2102
+ */
2103
+ interface AddressProviderAddressesApi {
2104
+ /**
2105
+ *
2106
+ * @type {BaseAddressApi}
2107
+ * @memberof AddressProviderAddressesApi
2108
+ */
2109
+ 'address': BaseAddressApi;
2110
+ /**
2111
+ *
2112
+ * @type {Array<AddressProviderAddressesProviderAttributionApi>}
2113
+ * @memberof AddressProviderAddressesApi
2114
+ */
2115
+ 'providers': Array<AddressProviderAddressesProviderAttributionApi>;
2116
+ }
2117
+ /**
2118
+ *
2119
+ * @export
2120
+ * @interface AddressProviderAddressesProviderAttributionApi
2143
2121
  */
2144
- interface AttributeSourceApi {
2122
+ interface AddressProviderAddressesProviderAttributionApi {
2145
2123
  /**
2146
2124
  *
2147
2125
  * @type {string}
2148
- * @memberof AttributeSourceApi
2126
+ * @memberof AddressProviderAddressesProviderAttributionApi
2149
2127
  */
2150
2128
  'providerId': string;
2151
2129
  /**
2152
2130
  *
2153
- * @type {any}
2154
- * @memberof AttributeSourceApi
2131
+ * @type {Array<ReservationChannelTypes>}
2132
+ * @memberof AddressProviderAddressesProviderAttributionApi
2155
2133
  */
2156
- 'value': any;
2134
+ 'channels': Array<ReservationChannelTypes>;
2157
2135
  }
2158
2136
  /**
2159
2137
  *
@@ -2163,76 +2141,95 @@ interface AttributeSourceApi {
2163
2141
  interface AttributionApi {
2164
2142
  /**
2165
2143
  *
2166
- * @type {AttributeSourceApi}
2144
+ * @type {AttributionAttributeSourceApi}
2167
2145
  * @memberof AttributionApi
2168
2146
  */
2169
- 'firstName'?: AttributeSourceApi | null;
2147
+ 'firstName'?: AttributionAttributeSourceApi | null;
2170
2148
  /**
2171
2149
  *
2172
- * @type {AttributeSourceApi}
2150
+ * @type {AttributionAttributeSourceApi}
2173
2151
  * @memberof AttributionApi
2174
2152
  */
2175
- 'lastName'?: AttributeSourceApi | null;
2153
+ 'lastName'?: AttributionAttributeSourceApi | null;
2176
2154
  /**
2177
2155
  *
2178
- * @type {AttributeSourceApi}
2156
+ * @type {AttributionAttributeSourceApi}
2179
2157
  * @memberof AttributionApi
2180
2158
  */
2181
- 'locale'?: AttributeSourceApi | null;
2159
+ 'locale'?: AttributionAttributeSourceApi | null;
2182
2160
  /**
2183
2161
  *
2184
- * @type {AttributeSourceApi}
2162
+ * @type {AttributionAttributeSourceApi}
2185
2163
  * @memberof AttributionApi
2186
2164
  */
2187
- 'fullName'?: AttributeSourceApi | null;
2165
+ 'fullName'?: AttributionAttributeSourceApi | null;
2188
2166
  /**
2189
2167
  *
2190
- * @type {AttributeSourceApi}
2168
+ * @type {AttributionAttributeSourceApi}
2191
2169
  * @memberof AttributionApi
2192
2170
  */
2193
- 'title'?: AttributeSourceApi | null;
2171
+ 'title'?: AttributionAttributeSourceApi | null;
2194
2172
  /**
2195
2173
  *
2196
- * @type {AttributeSourceApi}
2174
+ * @type {AttributionAttributeSourceApi}
2197
2175
  * @memberof AttributionApi
2198
2176
  */
2199
- 'company'?: AttributeSourceApi | null;
2177
+ 'company'?: AttributionAttributeSourceApi | null;
2200
2178
  /**
2201
2179
  *
2202
- * @type {AttributeSourceApi}
2180
+ * @type {AttributionAttributeSourceApi}
2203
2181
  * @memberof AttributionApi
2204
2182
  */
2205
- 'profilePicUrlRegular'?: AttributeSourceApi | null;
2183
+ 'profilePicUrlRegular'?: AttributionAttributeSourceApi | null;
2206
2184
  /**
2207
2185
  *
2208
- * @type {AttributeSourceApi}
2186
+ * @type {AttributionAttributeSourceApi}
2209
2187
  * @memberof AttributionApi
2210
2188
  */
2211
- 'profilePicUrlLarge'?: AttributeSourceApi | null;
2189
+ 'profilePicUrlLarge'?: AttributionAttributeSourceApi | null;
2212
2190
  /**
2213
2191
  *
2214
- * @type {AttributeSourceApi}
2192
+ * @type {AttributionAttributeSourceApi}
2215
2193
  * @memberof AttributionApi
2216
2194
  */
2217
- 'profilePicUrlThumbnail'?: AttributeSourceApi | null;
2195
+ 'profilePicUrlThumbnail'?: AttributionAttributeSourceApi | null;
2218
2196
  /**
2219
2197
  *
2220
- * @type {AttributeSourceApi}
2198
+ * @type {AttributionAttributeSourceApi}
2221
2199
  * @memberof AttributionApi
2222
2200
  */
2223
- 'primaryEmail'?: AttributeSourceApi | null;
2201
+ 'primaryEmail'?: AttributionAttributeSourceApi | null;
2224
2202
  /**
2225
2203
  *
2226
- * @type {AttributeSourceApi}
2204
+ * @type {AttributionAttributeSourceApi}
2227
2205
  * @memberof AttributionApi
2228
2206
  */
2229
- 'primaryPhone'?: AttributeSourceApi | null;
2207
+ 'primaryPhone'?: AttributionAttributeSourceApi | null;
2230
2208
  /**
2231
2209
  *
2232
- * @type {AttributeSourceApi}
2210
+ * @type {AttributionAttributeSourceApi}
2233
2211
  * @memberof AttributionApi
2234
2212
  */
2235
- 'primaryAddress'?: AttributeSourceApi | null;
2213
+ 'primaryAddress'?: AttributionAttributeSourceApi | null;
2214
+ }
2215
+ /**
2216
+ *
2217
+ * @export
2218
+ * @interface AttributionAttributeSourceApi
2219
+ */
2220
+ interface AttributionAttributeSourceApi {
2221
+ /**
2222
+ *
2223
+ * @type {string}
2224
+ * @memberof AttributionAttributeSourceApi
2225
+ */
2226
+ 'providerId': string;
2227
+ /**
2228
+ *
2229
+ * @type {any}
2230
+ * @memberof AttributionAttributeSourceApi
2231
+ */
2232
+ 'value': any;
2236
2233
  }
2237
2234
  /**
2238
2235
  *
@@ -2310,19 +2307,6 @@ declare const BotApiParticipantTypeEnum: {
2310
2307
  readonly Bot: "BOT";
2311
2308
  };
2312
2309
  type BotApiParticipantTypeEnum = typeof BotApiParticipantTypeEnum[keyof typeof BotApiParticipantTypeEnum];
2313
- /**
2314
- *
2315
- * @export
2316
- * @interface ChannelInfoApi
2317
- */
2318
- interface ChannelInfoApi {
2319
- /**
2320
- *
2321
- * @type {ReservationChannelTypes}
2322
- * @memberof ChannelInfoApi
2323
- */
2324
- 'channelName': ReservationChannelTypes;
2325
- }
2326
2310
  /**
2327
2311
  *
2328
2312
  * @export
@@ -2348,11 +2332,6 @@ interface ContactTypeDataApi {
2348
2332
  */
2349
2333
  'lead'?: LeadDataApi | null;
2350
2334
  }
2351
- /**
2352
- * @type Contactid
2353
- * @export
2354
- */
2355
- type Contactid = string;
2356
2335
  /**
2357
2336
  *
2358
2337
  * @export
@@ -2482,29 +2461,6 @@ interface Create {
2482
2461
  */
2483
2462
  'contentTypeData': Contenttypedata2;
2484
2463
  }
2485
- /**
2486
- *
2487
- * @export
2488
- * @interface CreateApi
2489
- */
2490
- interface CreateApi {
2491
- /**
2492
- *
2493
- * @type {string}
2494
- * @memberof CreateApi
2495
- */
2496
- 'messageType': CreateApiMessageTypeEnum;
2497
- /**
2498
- *
2499
- * @type {ProviderCommunicationTypeInput}
2500
- * @memberof CreateApi
2501
- */
2502
- 'communicationType': ProviderCommunicationTypeInput;
2503
- }
2504
- declare const CreateApiMessageTypeEnum: {
2505
- readonly RentalProvider: "RENTAL_PROVIDER";
2506
- };
2507
- type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
2508
2464
  /**
2509
2465
  *
2510
2466
  * @export
@@ -2664,6 +2620,44 @@ declare const EmailInboxApiInboxTypeEnum: {
2664
2620
  readonly Email: "EMAIL";
2665
2621
  };
2666
2622
  type EmailInboxApiInboxTypeEnum = typeof EmailInboxApiInboxTypeEnum[keyof typeof EmailInboxApiInboxTypeEnum];
2623
+ /**
2624
+ *
2625
+ * @export
2626
+ * @interface EmailProviderEmailsApi
2627
+ */
2628
+ interface EmailProviderEmailsApi {
2629
+ /**
2630
+ *
2631
+ * @type {string}
2632
+ * @memberof EmailProviderEmailsApi
2633
+ */
2634
+ 'email': string;
2635
+ /**
2636
+ *
2637
+ * @type {Array<EmailProviderEmailsProviderAttributionApi>}
2638
+ * @memberof EmailProviderEmailsApi
2639
+ */
2640
+ 'providers': Array<EmailProviderEmailsProviderAttributionApi>;
2641
+ }
2642
+ /**
2643
+ *
2644
+ * @export
2645
+ * @interface EmailProviderEmailsProviderAttributionApi
2646
+ */
2647
+ interface EmailProviderEmailsProviderAttributionApi {
2648
+ /**
2649
+ *
2650
+ * @type {string}
2651
+ * @memberof EmailProviderEmailsProviderAttributionApi
2652
+ */
2653
+ 'providerId': string;
2654
+ /**
2655
+ *
2656
+ * @type {Array<ReservationChannelTypes>}
2657
+ * @memberof EmailProviderEmailsProviderAttributionApi
2658
+ */
2659
+ 'channels': Array<ReservationChannelTypes>;
2660
+ }
2667
2661
  /**
2668
2662
  *
2669
2663
  * @export
@@ -2702,26 +2696,44 @@ type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMess
2702
2696
  /**
2703
2697
  *
2704
2698
  * @export
2705
- * @interface ExternalStaffApi
2699
+ * @interface EmailProviderMessageCreateApi
2706
2700
  */
2707
- interface ExternalStaffApi {
2701
+ interface EmailProviderMessageCreateApi {
2708
2702
  /**
2709
2703
  *
2710
2704
  * @type {string}
2711
- * @memberof ExternalStaffApi
2705
+ * @memberof EmailProviderMessageCreateApi
2712
2706
  */
2713
- 'staffType': ExternalStaffApiStaffTypeEnum;
2707
+ 'messageType': EmailProviderMessageCreateApiMessageTypeEnum;
2714
2708
  /**
2715
2709
  *
2716
2710
  * @type {string}
2717
- * @memberof ExternalStaffApi
2711
+ * @memberof EmailProviderMessageCreateApi
2718
2712
  */
2719
- 'contactId': string;
2713
+ 'outboundFromManagedEmailId'?: string | null;
2714
+ /**
2715
+ *
2716
+ * @type {string}
2717
+ * @memberof EmailProviderMessageCreateApi
2718
+ */
2719
+ 'subject': string;
2720
+ /**
2721
+ *
2722
+ * @type {string}
2723
+ * @memberof EmailProviderMessageCreateApi
2724
+ */
2725
+ 'htmlBody': string | null;
2726
+ /**
2727
+ *
2728
+ * @type {string}
2729
+ * @memberof EmailProviderMessageCreateApi
2730
+ */
2731
+ 'plainBody': string | null;
2720
2732
  }
2721
- declare const ExternalStaffApiStaffTypeEnum: {
2722
- readonly ExternalStaff: "EXTERNAL_STAFF";
2733
+ declare const EmailProviderMessageCreateApiMessageTypeEnum: {
2734
+ readonly Email: "EMAIL";
2723
2735
  };
2724
- type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
2736
+ type EmailProviderMessageCreateApiMessageTypeEnum = typeof EmailProviderMessageCreateApiMessageTypeEnum[keyof typeof EmailProviderMessageCreateApiMessageTypeEnum];
2725
2737
  /**
2726
2738
  * File content type (PDF, image, document, etc.).
2727
2739
  * @export
@@ -2975,29 +2987,6 @@ declare const InquiryTypeUpdateRelationTypeEnum: {
2975
2987
  readonly Inquiry: "INQUIRY";
2976
2988
  };
2977
2989
  type InquiryTypeUpdateRelationTypeEnum = typeof InquiryTypeUpdateRelationTypeEnum[keyof typeof InquiryTypeUpdateRelationTypeEnum];
2978
- /**
2979
- *
2980
- * @export
2981
- * @interface InternalStaffApi
2982
- */
2983
- interface InternalStaffApi {
2984
- /**
2985
- *
2986
- * @type {string}
2987
- * @memberof InternalStaffApi
2988
- */
2989
- 'staffType': InternalStaffApiStaffTypeEnum;
2990
- /**
2991
- *
2992
- * @type {string}
2993
- * @memberof InternalStaffApi
2994
- */
2995
- 'userId': string;
2996
- }
2997
- declare const InternalStaffApiStaffTypeEnum: {
2998
- readonly InternalStaff: "INTERNAL_STAFF";
2999
- };
3000
- type InternalStaffApiStaffTypeEnum = typeof InternalStaffApiStaffTypeEnum[keyof typeof InternalStaffApiStaffTypeEnum];
3001
2990
  /**
3002
2991
  *
3003
2992
  * @export
@@ -3282,6 +3271,25 @@ interface MessageAttachmentApi {
3282
3271
  */
3283
3272
  'extension'?: string | null;
3284
3273
  }
3274
+ /**
3275
+ *
3276
+ * @export
3277
+ * @interface MessageCreateWithSuggestionApi
3278
+ */
3279
+ interface MessageCreateWithSuggestionApi {
3280
+ /**
3281
+ *
3282
+ * @type {string}
3283
+ * @memberof MessageCreateWithSuggestionApi
3284
+ */
3285
+ 'suggestionId': string;
3286
+ /**
3287
+ *
3288
+ * @type {SuggestionRejectionReasonType}
3289
+ * @memberof MessageCreateWithSuggestionApi
3290
+ */
3291
+ 'rejectionReason': SuggestionRejectionReasonType;
3292
+ }
3285
3293
  /**
3286
3294
  *
3287
3295
  * @export
@@ -3317,7 +3325,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
3317
3325
  * @type Messagetypedata1
3318
3326
  * @export
3319
3327
  */
3320
- type Messagetypedata1 = APICreate | CreateApi;
3328
+ type Messagetypedata1 = EmailProviderMessageCreateApi | RentalProviderMessageCreateApi | SMSMessageCreateApi;
3321
3329
  /**
3322
3330
  *
3323
3331
  * @export
@@ -3666,6 +3674,44 @@ declare const PhoneInboxApiInboxTypeEnum: {
3666
3674
  readonly Text: "TEXT";
3667
3675
  };
3668
3676
  type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
3677
+ /**
3678
+ *
3679
+ * @export
3680
+ * @interface PhoneProviderPhonesApi
3681
+ */
3682
+ interface PhoneProviderPhonesApi {
3683
+ /**
3684
+ *
3685
+ * @type {string}
3686
+ * @memberof PhoneProviderPhonesApi
3687
+ */
3688
+ 'phone': string;
3689
+ /**
3690
+ *
3691
+ * @type {Array<PhoneProviderPhonesProviderAttributionApi>}
3692
+ * @memberof PhoneProviderPhonesApi
3693
+ */
3694
+ 'providers': Array<PhoneProviderPhonesProviderAttributionApi>;
3695
+ }
3696
+ /**
3697
+ *
3698
+ * @export
3699
+ * @interface PhoneProviderPhonesProviderAttributionApi
3700
+ */
3701
+ interface PhoneProviderPhonesProviderAttributionApi {
3702
+ /**
3703
+ *
3704
+ * @type {string}
3705
+ * @memberof PhoneProviderPhonesProviderAttributionApi
3706
+ */
3707
+ 'providerId': string;
3708
+ /**
3709
+ *
3710
+ * @type {Array<ReservationChannelTypes>}
3711
+ * @memberof PhoneProviderPhonesProviderAttributionApi
3712
+ */
3713
+ 'channels': Array<ReservationChannelTypes>;
3714
+ }
3669
3715
  /**
3670
3716
  * Plain text content type. The text content is stored in Content.description.
3671
3717
  * @export
@@ -3758,44 +3804,6 @@ declare const ProviderAccountInboxApiInboxTypeEnum: {
3758
3804
  readonly RentalProvider: "RENTAL_PROVIDER";
3759
3805
  };
3760
3806
  type ProviderAccountInboxApiInboxTypeEnum = typeof ProviderAccountInboxApiInboxTypeEnum[keyof typeof ProviderAccountInboxApiInboxTypeEnum];
3761
- /**
3762
- *
3763
- * @export
3764
- * @interface ProviderAddressesApi
3765
- */
3766
- interface ProviderAddressesApi {
3767
- /**
3768
- *
3769
- * @type {BaseAddressApi}
3770
- * @memberof ProviderAddressesApi
3771
- */
3772
- 'address': BaseAddressApi;
3773
- /**
3774
- *
3775
- * @type {Array<ProviderAttributionApi>}
3776
- * @memberof ProviderAddressesApi
3777
- */
3778
- 'providers': Array<ProviderAttributionApi>;
3779
- }
3780
- /**
3781
- *
3782
- * @export
3783
- * @interface ProviderAttributionApi
3784
- */
3785
- interface ProviderAttributionApi {
3786
- /**
3787
- *
3788
- * @type {string}
3789
- * @memberof ProviderAttributionApi
3790
- */
3791
- 'providerId': string;
3792
- /**
3793
- *
3794
- * @type {Array<ReservationChannelTypes>}
3795
- * @memberof ProviderAttributionApi
3796
- */
3797
- 'channels': Array<ReservationChannelTypes>;
3798
- }
3799
3807
  /**
3800
3808
  *
3801
3809
  * @export
@@ -3806,7 +3814,6 @@ declare const ProviderCommunicationType: {
3806
3814
  readonly Email: "EMAIL";
3807
3815
  readonly Channel: "CHANNEL";
3808
3816
  readonly Whatsapp: "WHATSAPP";
3809
- readonly Note: "NOTE";
3810
3817
  };
3811
3818
  type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
3812
3819
  /**
@@ -3887,104 +3894,6 @@ declare const ProviderConversationDataApiConversationTypeEnum: {
3887
3894
  readonly RentalProvider: "RENTAL_PROVIDER";
3888
3895
  };
3889
3896
  type ProviderConversationDataApiConversationTypeEnum = typeof ProviderConversationDataApiConversationTypeEnum[keyof typeof ProviderConversationDataApiConversationTypeEnum];
3890
- /**
3891
- *
3892
- * @export
3893
- * @interface ProviderEmailsApi
3894
- */
3895
- interface ProviderEmailsApi {
3896
- /**
3897
- *
3898
- * @type {string}
3899
- * @memberof ProviderEmailsApi
3900
- */
3901
- 'email': string;
3902
- /**
3903
- *
3904
- * @type {Array<ProviderAttributionApi>}
3905
- * @memberof ProviderEmailsApi
3906
- */
3907
- 'providers': Array<ProviderAttributionApi>;
3908
- }
3909
- /**
3910
- *
3911
- * @export
3912
- * @interface ProviderInfoApi
3913
- */
3914
- interface ProviderInfoApi {
3915
- /**
3916
- *
3917
- * @type {string}
3918
- * @memberof ProviderInfoApi
3919
- */
3920
- 'providerId': string;
3921
- /**
3922
- *
3923
- * @type {string}
3924
- * @memberof ProviderInfoApi
3925
- */
3926
- 'providerReservationId': string;
3927
- /**
3928
- *
3929
- * @type {string}
3930
- * @memberof ProviderInfoApi
3931
- */
3932
- 'providerCreatedAt': string;
3933
- /**
3934
- *
3935
- * @type {string}
3936
- * @memberof ProviderInfoApi
3937
- */
3938
- 'providerReservationUrl': string | null;
3939
- }
3940
- /**
3941
- *
3942
- * @export
3943
- * @interface ProviderPhonesApi
3944
- */
3945
- interface ProviderPhonesApi {
3946
- /**
3947
- *
3948
- * @type {string}
3949
- * @memberof ProviderPhonesApi
3950
- */
3951
- 'phone': string;
3952
- /**
3953
- *
3954
- * @type {Array<ProviderAttributionApi>}
3955
- * @memberof ProviderPhonesApi
3956
- */
3957
- 'providers': Array<ProviderAttributionApi>;
3958
- }
3959
- /**
3960
- *
3961
- * @export
3962
- * @interface ProviderStaffApi
3963
- */
3964
- interface ProviderStaffApi {
3965
- /**
3966
- *
3967
- * @type {string}
3968
- * @memberof ProviderStaffApi
3969
- */
3970
- 'staffType': ProviderStaffApiStaffTypeEnum;
3971
- /**
3972
- *
3973
- * @type {string}
3974
- * @memberof ProviderStaffApi
3975
- */
3976
- 'providerUserId': string;
3977
- /**
3978
- *
3979
- * @type {string}
3980
- * @memberof ProviderStaffApi
3981
- */
3982
- 'providerReadAt'?: string | null;
3983
- }
3984
- declare const ProviderStaffApiStaffTypeEnum: {
3985
- readonly ProviderStaff: "PROVIDER_STAFF";
3986
- };
3987
- type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
3988
3897
  /**
3989
3898
  *
3990
3899
  * @export
@@ -4027,6 +3936,29 @@ declare const RentalProviderMessageApiMessageTypeEnum: {
4027
3936
  readonly RentalProvider: "RENTAL_PROVIDER";
4028
3937
  };
4029
3938
  type RentalProviderMessageApiMessageTypeEnum = typeof RentalProviderMessageApiMessageTypeEnum[keyof typeof RentalProviderMessageApiMessageTypeEnum];
3939
+ /**
3940
+ *
3941
+ * @export
3942
+ * @interface RentalProviderMessageCreateApi
3943
+ */
3944
+ interface RentalProviderMessageCreateApi {
3945
+ /**
3946
+ *
3947
+ * @type {string}
3948
+ * @memberof RentalProviderMessageCreateApi
3949
+ */
3950
+ 'messageType': RentalProviderMessageCreateApiMessageTypeEnum;
3951
+ /**
3952
+ *
3953
+ * @type {ProviderCommunicationTypeInput}
3954
+ * @memberof RentalProviderMessageCreateApi
3955
+ */
3956
+ 'communicationType': ProviderCommunicationTypeInput;
3957
+ }
3958
+ declare const RentalProviderMessageCreateApiMessageTypeEnum: {
3959
+ readonly RentalProvider: "RENTAL_PROVIDER";
3960
+ };
3961
+ type RentalProviderMessageCreateApiMessageTypeEnum = typeof RentalProviderMessageCreateApiMessageTypeEnum[keyof typeof RentalProviderMessageCreateApiMessageTypeEnum];
4030
3962
  /**
4031
3963
  *
4032
3964
  * @export
@@ -4038,6 +3970,19 @@ declare const RentalProviderTypes: {
4038
3970
  readonly Unbound: "UNBOUND";
4039
3971
  };
4040
3972
  type RentalProviderTypes = typeof RentalProviderTypes[keyof typeof RentalProviderTypes];
3973
+ /**
3974
+ *
3975
+ * @export
3976
+ * @interface ReservationBaseModelChannelInfoApi
3977
+ */
3978
+ interface ReservationBaseModelChannelInfoApi {
3979
+ /**
3980
+ *
3981
+ * @type {ReservationChannelTypes}
3982
+ * @memberof ReservationBaseModelChannelInfoApi
3983
+ */
3984
+ 'channelName': ReservationChannelTypes;
3985
+ }
4041
3986
  /**
4042
3987
  *
4043
3988
  * @export
@@ -4062,6 +4007,37 @@ declare const ReservationChannelTypes: {
4062
4007
  readonly UnboundDirect: "UNBOUND_DIRECT";
4063
4008
  };
4064
4009
  type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof ReservationChannelTypes];
4010
+ /**
4011
+ *
4012
+ * @export
4013
+ * @interface ReservationProviderInfoApi
4014
+ */
4015
+ interface ReservationProviderInfoApi {
4016
+ /**
4017
+ *
4018
+ * @type {string}
4019
+ * @memberof ReservationProviderInfoApi
4020
+ */
4021
+ 'providerId': string;
4022
+ /**
4023
+ *
4024
+ * @type {string}
4025
+ * @memberof ReservationProviderInfoApi
4026
+ */
4027
+ 'providerReservationId': string;
4028
+ /**
4029
+ *
4030
+ * @type {string}
4031
+ * @memberof ReservationProviderInfoApi
4032
+ */
4033
+ 'providerCreatedAt': string;
4034
+ /**
4035
+ *
4036
+ * @type {string}
4037
+ * @memberof ReservationProviderInfoApi
4038
+ */
4039
+ 'providerReservationUrl': string | null;
4040
+ }
4065
4041
  /**
4066
4042
  *
4067
4043
  * @export
@@ -4094,6 +4070,41 @@ declare const SMSConversationDataApiConversationTypeEnum: {
4094
4070
  readonly Text: "TEXT";
4095
4071
  };
4096
4072
  type SMSConversationDataApiConversationTypeEnum = typeof SMSConversationDataApiConversationTypeEnum[keyof typeof SMSConversationDataApiConversationTypeEnum];
4073
+ /**
4074
+ *
4075
+ * @export
4076
+ * @interface SMSConversationDataCreateApi
4077
+ */
4078
+ interface SMSConversationDataCreateApi {
4079
+ /**
4080
+ *
4081
+ * @type {string}
4082
+ * @memberof SMSConversationDataCreateApi
4083
+ */
4084
+ 'conversationType': SMSConversationDataCreateApiConversationTypeEnum;
4085
+ /**
4086
+ *
4087
+ * @type {Array<ToPhoneApi>}
4088
+ * @memberof SMSConversationDataCreateApi
4089
+ */
4090
+ 'toPhones': Array<ToPhoneApi>;
4091
+ /**
4092
+ *
4093
+ * @type {string}
4094
+ * @memberof SMSConversationDataCreateApi
4095
+ */
4096
+ 'managedPhoneId'?: string | null;
4097
+ /**
4098
+ *
4099
+ * @type {string}
4100
+ * @memberof SMSConversationDataCreateApi
4101
+ */
4102
+ 'providerGroupId'?: string | null;
4103
+ }
4104
+ declare const SMSConversationDataCreateApiConversationTypeEnum: {
4105
+ readonly Text: "TEXT";
4106
+ };
4107
+ type SMSConversationDataCreateApiConversationTypeEnum = typeof SMSConversationDataCreateApiConversationTypeEnum[keyof typeof SMSConversationDataCreateApiConversationTypeEnum];
4097
4108
  /**
4098
4109
  *
4099
4110
  * @export
@@ -4165,6 +4176,29 @@ declare const SMSMessageApiMessageTypeEnum: {
4165
4176
  readonly Text: "TEXT";
4166
4177
  };
4167
4178
  type SMSMessageApiMessageTypeEnum = typeof SMSMessageApiMessageTypeEnum[keyof typeof SMSMessageApiMessageTypeEnum];
4179
+ /**
4180
+ *
4181
+ * @export
4182
+ * @interface SMSMessageCreateApi
4183
+ */
4184
+ interface SMSMessageCreateApi {
4185
+ /**
4186
+ *
4187
+ * @type {string}
4188
+ * @memberof SMSMessageCreateApi
4189
+ */
4190
+ 'messageType': SMSMessageCreateApiMessageTypeEnum;
4191
+ /**
4192
+ *
4193
+ * @type {Array<string>}
4194
+ * @memberof SMSMessageCreateApi
4195
+ */
4196
+ 'mediaUrls'?: Array<string> | null;
4197
+ }
4198
+ declare const SMSMessageCreateApiMessageTypeEnum: {
4199
+ readonly Text: "TEXT";
4200
+ };
4201
+ type SMSMessageCreateApiMessageTypeEnum = typeof SMSMessageCreateApiMessageTypeEnum[keyof typeof SMSMessageCreateApiMessageTypeEnum];
4168
4202
  /**
4169
4203
  * Telnyx SMS message status values. Mirrors the `status` field in Message API responses and status-callback webhooks.
4170
4204
  * @export
@@ -4257,11 +4291,86 @@ declare const StaffApiParticipantTypeEnum: {
4257
4291
  readonly Staff: "STAFF";
4258
4292
  };
4259
4293
  type StaffApiParticipantTypeEnum = typeof StaffApiParticipantTypeEnum[keyof typeof StaffApiParticipantTypeEnum];
4294
+ /**
4295
+ *
4296
+ * @export
4297
+ * @interface StaffExternalStaffApi
4298
+ */
4299
+ interface StaffExternalStaffApi {
4300
+ /**
4301
+ *
4302
+ * @type {string}
4303
+ * @memberof StaffExternalStaffApi
4304
+ */
4305
+ 'staffType': StaffExternalStaffApiStaffTypeEnum;
4306
+ /**
4307
+ *
4308
+ * @type {string}
4309
+ * @memberof StaffExternalStaffApi
4310
+ */
4311
+ 'contactId': string;
4312
+ }
4313
+ declare const StaffExternalStaffApiStaffTypeEnum: {
4314
+ readonly ExternalStaff: "EXTERNAL_STAFF";
4315
+ };
4316
+ type StaffExternalStaffApiStaffTypeEnum = typeof StaffExternalStaffApiStaffTypeEnum[keyof typeof StaffExternalStaffApiStaffTypeEnum];
4317
+ /**
4318
+ *
4319
+ * @export
4320
+ * @interface StaffInternalStaffApi
4321
+ */
4322
+ interface StaffInternalStaffApi {
4323
+ /**
4324
+ *
4325
+ * @type {string}
4326
+ * @memberof StaffInternalStaffApi
4327
+ */
4328
+ 'staffType': StaffInternalStaffApiStaffTypeEnum;
4329
+ /**
4330
+ *
4331
+ * @type {string}
4332
+ * @memberof StaffInternalStaffApi
4333
+ */
4334
+ 'userId': string;
4335
+ }
4336
+ declare const StaffInternalStaffApiStaffTypeEnum: {
4337
+ readonly InternalStaff: "INTERNAL_STAFF";
4338
+ };
4339
+ type StaffInternalStaffApiStaffTypeEnum = typeof StaffInternalStaffApiStaffTypeEnum[keyof typeof StaffInternalStaffApiStaffTypeEnum];
4340
+ /**
4341
+ *
4342
+ * @export
4343
+ * @interface StaffProviderStaffApi
4344
+ */
4345
+ interface StaffProviderStaffApi {
4346
+ /**
4347
+ *
4348
+ * @type {string}
4349
+ * @memberof StaffProviderStaffApi
4350
+ */
4351
+ 'staffType': StaffProviderStaffApiStaffTypeEnum;
4352
+ /**
4353
+ *
4354
+ * @type {string}
4355
+ * @memberof StaffProviderStaffApi
4356
+ */
4357
+ 'providerUserId': string;
4358
+ /**
4359
+ *
4360
+ * @type {string}
4361
+ * @memberof StaffProviderStaffApi
4362
+ */
4363
+ 'providerReadAt'?: string | null;
4364
+ }
4365
+ declare const StaffProviderStaffApiStaffTypeEnum: {
4366
+ readonly ProviderStaff: "PROVIDER_STAFF";
4367
+ };
4368
+ type StaffProviderStaffApiStaffTypeEnum = typeof StaffProviderStaffApiStaffTypeEnum[keyof typeof StaffProviderStaffApiStaffTypeEnum];
4260
4369
  /**
4261
4370
  * @type Stafftypedata
4262
4371
  * @export
4263
4372
  */
4264
- type Stafftypedata = ExternalStaffApi | InternalStaffApi | ProviderStaffApi;
4373
+ type Stafftypedata = StaffExternalStaffApi | StaffInternalStaffApi | StaffProviderStaffApi;
4265
4374
  /**
4266
4375
  *
4267
4376
  * @export
@@ -4464,7 +4573,6 @@ interface ToItemApi {
4464
4573
  * @interface ToPhoneApi
4465
4574
  */
4466
4575
  interface ToPhoneApi {
4467
- [key: string]: any;
4468
4576
  /**
4469
4577
  *
4470
4578
  * @type {string}
@@ -4473,10 +4581,10 @@ interface ToPhoneApi {
4473
4581
  'phone': string;
4474
4582
  /**
4475
4583
  *
4476
- * @type {Contactid}
4584
+ * @type {string}
4477
4585
  * @memberof ToPhoneApi
4478
4586
  */
4479
- 'contactId'?: Contactid | null;
4587
+ 'contactId'?: string | null;
4480
4588
  }
4481
4589
  /**
4482
4590
  * External URL content type.
@@ -4695,25 +4803,6 @@ declare const UserDeviceOs: {
4695
4803
  readonly Web: "WEB";
4696
4804
  };
4697
4805
  type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
4698
- /**
4699
- *
4700
- * @export
4701
- * @interface WithSuggestionApi
4702
- */
4703
- interface WithSuggestionApi {
4704
- /**
4705
- *
4706
- * @type {string}
4707
- * @memberof WithSuggestionApi
4708
- */
4709
- 'suggestionId': string;
4710
- /**
4711
- *
4712
- * @type {SuggestionRejectionReasonType}
4713
- * @memberof WithSuggestionApi
4714
- */
4715
- 'rejectionReason': SuggestionRejectionReasonType;
4716
- }
4717
4806
  /**
4718
4807
  * AccessTokensApi - axios parameter creator
4719
4808
  * @export
@@ -11126,4 +11215,4 @@ declare class UserDevicesApi extends BaseAPI {
11126
11215
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
11127
11216
  }
11128
11217
 
11129
- export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APICreate, APICreateMessageTypeEnum, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, type ContactTypeDataApi, type Contactid, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, type ContentItem, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateApi, CreateApiMessageTypeEnum, type CreateContactListing, type CreateContactListingRelationTypeData, type DeleteContactListing, type DeleteContactListingRelationTypeData, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeDelete, InquiryTypeDeleteRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContentItem, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIPermission, type ListResponseAPIProvider, type ListResponseAPIRole, type ListResponseAPITag, type ListResponsePermission, type ListResponseTag, type Listing, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeDelete, OwnerTypeDeleteRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, type PaginatedResponseListing, PaginationDirection, type Participantname, type Participanttypedata, type Permission, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, PropertyTypes, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, 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, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortBy, SortOrder, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UpdateContactListingRelationTypeData, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestionApi };
11218
+ export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, type AddressProviderAddressesApi, type AddressProviderAddressesProviderAttributionApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributionApi, type AttributionAttributeSourceApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, Configuration, type ConfigurationParameters, type ContactTypeDataApi, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, type ContentItem, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type CreateContactListingRelationTypeData, type DeleteContactListing, type DeleteContactListingRelationTypeData, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderEmailsApi, type EmailProviderEmailsProviderAttributionApi, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type EmailProviderMessageCreateApi, EmailProviderMessageCreateApiMessageTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeDelete, InquiryTypeDeleteRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContentItem, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIPermission, type ListResponseAPIProvider, type ListResponseAPIRole, type ListResponseAPITag, type ListResponsePermission, type ListResponseTag, type Listing, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, type MessageCreateWithSuggestionApi, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeDelete, OwnerTypeDeleteRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, type PaginatedResponseListing, PaginationDirection, type Participantname, type Participanttypedata, type Permission, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhoneProviderPhonesApi, type PhoneProviderPhonesProviderAttributionApi, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, PropertyTypes, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, ProviderCommunicationType, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, type RentalProviderMessageCreateApi, RentalProviderMessageCreateApiMessageTypeEnum, RentalProviderTypes, type ReservationBaseModelChannelInfoApi, ReservationChannelTypes, type ReservationProviderInfoApi, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSConversationDataCreateApi, SMSConversationDataCreateApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, type SMSMessageCreateApi, SMSMessageCreateApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortBy, SortOrder, type StaffApi, StaffApiParticipantTypeEnum, type StaffExternalStaffApi, StaffExternalStaffApiStaffTypeEnum, type StaffInternalStaffApi, StaffInternalStaffApiStaffTypeEnum, type StaffProviderStaffApi, StaffProviderStaffApiStaffTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UpdateContactListingRelationTypeData, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };