@ember-home/unbound-ts-client 1.0.31 → 1.0.33

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
@@ -5,7 +5,7 @@ import { RawAxiosRequestConfig, AxiosInstance, AxiosPromise } from 'axios';
5
5
  * FastAPI
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.31
8
+ * The version of the OpenAPI document: 1.0.33
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -97,7 +97,7 @@ declare class Configuration {
97
97
  * FastAPI
98
98
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
99
99
  *
100
- * The version of the OpenAPI document: 1.0.31
100
+ * The version of the OpenAPI document: 1.0.33
101
101
  *
102
102
  *
103
103
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -202,6 +202,32 @@ interface APIContactsListings {
202
202
  */
203
203
  'updatedAt': string;
204
204
  }
205
+ /**
206
+ *
207
+ * @export
208
+ * @interface APIMicroServicePrincipal
209
+ */
210
+ interface APIMicroServicePrincipal {
211
+ [key: string]: any;
212
+ /**
213
+ *
214
+ * @type {string}
215
+ * @memberof APIMicroServicePrincipal
216
+ */
217
+ 'description': string;
218
+ /**
219
+ *
220
+ * @type {string}
221
+ * @memberof APIMicroServicePrincipal
222
+ */
223
+ 'microserviceClientId': string;
224
+ /**
225
+ *
226
+ * @type {string}
227
+ * @memberof APIMicroServicePrincipal
228
+ */
229
+ 'userType'?: string;
230
+ }
205
231
  /**
206
232
  *
207
233
  * @export
@@ -287,6 +313,12 @@ interface APIUserPrincipal {
287
313
  * @memberof APIUserPrincipal
288
314
  */
289
315
  'title'?: string;
316
+ /**
317
+ *
318
+ * @type {string}
319
+ * @memberof APIUserPrincipal
320
+ */
321
+ 'userType'?: string;
290
322
  }
291
323
  /**
292
324
  *
@@ -492,6 +524,95 @@ interface AddressUpdate {
492
524
  */
493
525
  'street2'?: string;
494
526
  }
527
+ /**
528
+ *
529
+ * @export
530
+ * @interface AirbnbChannelFinanceFields
531
+ */
532
+ interface AirbnbChannelFinanceFields {
533
+ /**
534
+ *
535
+ * @type {number}
536
+ * @memberof AirbnbChannelFinanceFields
537
+ */
538
+ 'airbnbCommissionAmount'?: number;
539
+ /**
540
+ *
541
+ * @type {number}
542
+ * @memberof AirbnbChannelFinanceFields
543
+ */
544
+ 'airbnbExpectedPayoutAmount'?: number;
545
+ /**
546
+ *
547
+ * @type {number}
548
+ * @memberof AirbnbChannelFinanceFields
549
+ */
550
+ 'airbnbListingBasePrice'?: number;
551
+ /**
552
+ *
553
+ * @type {number}
554
+ * @memberof AirbnbChannelFinanceFields
555
+ */
556
+ 'airbnbListingCancellationHostFee'?: number;
557
+ /**
558
+ *
559
+ * @type {number}
560
+ * @memberof AirbnbChannelFinanceFields
561
+ */
562
+ 'airbnbListingCancellationPayout'?: number;
563
+ /**
564
+ *
565
+ * @type {number}
566
+ * @memberof AirbnbChannelFinanceFields
567
+ */
568
+ 'airbnbListingCleaningFee'?: number;
569
+ /**
570
+ *
571
+ * @type {number}
572
+ * @memberof AirbnbChannelFinanceFields
573
+ */
574
+ 'airbnbListingHostFee'?: number;
575
+ /**
576
+ *
577
+ * @type {number}
578
+ * @memberof AirbnbChannelFinanceFields
579
+ */
580
+ 'airbnbListingSecurityPrice'?: number;
581
+ /**
582
+ *
583
+ * @type {number}
584
+ * @memberof AirbnbChannelFinanceFields
585
+ */
586
+ 'airbnbOccupancyTaxAmountPaidToHost'?: number;
587
+ /**
588
+ *
589
+ * @type {string}
590
+ * @memberof AirbnbChannelFinanceFields
591
+ */
592
+ 'airbnbReservationId': string;
593
+ /**
594
+ *
595
+ * @type {number}
596
+ * @memberof AirbnbChannelFinanceFields
597
+ */
598
+ 'airbnbTotalPaidAmount'?: number;
599
+ /**
600
+ *
601
+ * @type {number}
602
+ * @memberof AirbnbChannelFinanceFields
603
+ */
604
+ 'airbnbTransientOccupancyTaxPaidAmount'?: number;
605
+ /**
606
+ *
607
+ * @type {string}
608
+ * @memberof AirbnbChannelFinanceFields
609
+ */
610
+ 'channelType'?: AirbnbChannelFinanceFieldsChannelTypeEnum;
611
+ }
612
+ declare const AirbnbChannelFinanceFieldsChannelTypeEnum: {
613
+ readonly Airbnb: "AIRBNB";
614
+ };
615
+ type AirbnbChannelFinanceFieldsChannelTypeEnum = typeof AirbnbChannelFinanceFieldsChannelTypeEnum[keyof typeof AirbnbChannelFinanceFieldsChannelTypeEnum];
495
616
  /**
496
617
  *
497
618
  * @export
@@ -668,6 +789,13 @@ declare const BotParticipantTypeEnum: {
668
789
  readonly Bot: "BOT";
669
790
  };
670
791
  type BotParticipantTypeEnum = typeof BotParticipantTypeEnum[keyof typeof BotParticipantTypeEnum];
792
+ /**
793
+ * @type Channelfinancefields
794
+ * @export
795
+ */
796
+ type Channelfinancefields = {
797
+ channelType: 'AIRBNB';
798
+ } & AirbnbChannelFinanceFields;
671
799
  /**
672
800
  *
673
801
  * @export
@@ -783,6 +911,12 @@ interface CommunityCreate {
783
911
  * @memberof CommunityCreate
784
912
  */
785
913
  'locality'?: string;
914
+ /**
915
+ *
916
+ * @type {string}
917
+ * @memberof CommunityCreate
918
+ */
919
+ 'name': string;
786
920
  /**
787
921
  *
788
922
  * @type {string}
@@ -1275,17 +1409,6 @@ interface ContactCreate {
1275
1409
  */
1276
1410
  'title'?: string;
1277
1411
  }
1278
- /**
1279
- *
1280
- * @export
1281
- * @enum {string}
1282
- */
1283
- declare const ContactSortBy: {
1284
- readonly LastFirstCompany: "lastFirstCompany";
1285
- readonly FirstLastCompany: "firstLastCompany";
1286
- readonly CompanyLastFirst: "companyLastFirst";
1287
- };
1288
- type ContactSortBy = typeof ContactSortBy[keyof typeof ContactSortBy];
1289
1412
  /**
1290
1413
  *
1291
1414
  * @export
@@ -1988,6 +2111,15 @@ interface ConversationCreate {
1988
2111
  */
1989
2112
  'conversationTypeData': SMSConversationDataCreate;
1990
2113
  }
2114
+ /**
2115
+ *
2116
+ * @export
2117
+ * @enum {string}
2118
+ */
2119
+ declare const ConversationSortBy: {
2120
+ readonly LastMessageSentAt: "lastMessageSentAt";
2121
+ };
2122
+ type ConversationSortBy = typeof ConversationSortBy[keyof typeof ConversationSortBy];
1991
2123
  /**
1992
2124
  *
1993
2125
  * @export
@@ -2128,6 +2260,12 @@ interface EmailConversationData {
2128
2260
  * @memberof EmailConversationData
2129
2261
  */
2130
2262
  'conversationType': EmailConversationDataConversationTypeEnum;
2263
+ /**
2264
+ *
2265
+ * @type {Array<string>}
2266
+ * @memberof EmailConversationData
2267
+ */
2268
+ 'emailIds': Array<string>;
2131
2269
  }
2132
2270
  declare const EmailConversationDataConversationTypeEnum: {
2133
2271
  readonly Email: "EMAIL";
@@ -2231,6 +2369,12 @@ interface EmailProviderMessage {
2231
2369
  * @memberof EmailProviderMessage
2232
2370
  */
2233
2371
  'messageType': EmailProviderMessageMessageTypeEnum;
2372
+ /**
2373
+ *
2374
+ * @type {string}
2375
+ * @memberof EmailProviderMessage
2376
+ */
2377
+ 'outboundFromManagedEmailId'?: string;
2234
2378
  /**
2235
2379
  *
2236
2380
  * @type {string}
@@ -2778,12 +2922,36 @@ interface Listing {
2778
2922
  * @memberof Listing
2779
2923
  */
2780
2924
  'address'?: ListingBaseAddress;
2925
+ /**
2926
+ *
2927
+ * @type {boolean}
2928
+ * @memberof Listing
2929
+ */
2930
+ 'allowSameDayBooking'?: boolean;
2781
2931
  /**
2782
2932
  *
2783
2933
  * @type {Array<string>}
2784
2934
  * @memberof Listing
2785
2935
  */
2786
2936
  'amenities'?: Array<string>;
2937
+ /**
2938
+ *
2939
+ * @type {number}
2940
+ * @memberof Listing
2941
+ */
2942
+ 'areaSquareFeet'?: number;
2943
+ /**
2944
+ *
2945
+ * @type {number}
2946
+ * @memberof Listing
2947
+ */
2948
+ 'averageReviewRating'?: number;
2949
+ /**
2950
+ *
2951
+ * @type {number}
2952
+ * @memberof Listing
2953
+ */
2954
+ 'basePrice'?: number;
2787
2955
  /**
2788
2956
  *
2789
2957
  * @type {{ [key: string]: { [key: string]: number; }; }}
@@ -2800,12 +2968,30 @@ interface Listing {
2800
2968
  * @memberof Listing
2801
2969
  */
2802
2970
  'cancellationPolicy'?: string;
2971
+ /**
2972
+ *
2973
+ * @type {string}
2974
+ * @memberof Listing
2975
+ */
2976
+ 'cancellationPolicyId'?: string;
2977
+ /**
2978
+ *
2979
+ * @type {ListingBaseChannelInfo}
2980
+ * @memberof Listing
2981
+ */
2982
+ 'channelInfo'?: ListingBaseChannelInfo;
2803
2983
  /**
2804
2984
  *
2805
2985
  * @type {number}
2806
2986
  * @memberof Listing
2807
2987
  */
2808
2988
  'cleaningFee'?: number;
2989
+ /**
2990
+ *
2991
+ * @type {string}
2992
+ * @memberof Listing
2993
+ */
2994
+ 'createdAt'?: string;
2809
2995
  /**
2810
2996
  *
2811
2997
  * @type {string}
@@ -2836,6 +3022,12 @@ interface Listing {
2836
3022
  * @memberof Listing
2837
3023
  */
2838
3024
  'extraPersonFee'?: number;
3025
+ /**
3026
+ *
3027
+ * @type {string}
3028
+ * @memberof Listing
3029
+ */
3030
+ 'hostName'?: string;
2839
3031
  /**
2840
3032
  *
2841
3033
  * @type {string}
@@ -2848,6 +3040,24 @@ interface Listing {
2848
3040
  * @memberof Listing
2849
3041
  */
2850
3042
  'ingestionStatus'?: IngestionStatusType;
3043
+ /**
3044
+ *
3045
+ * @type {boolean}
3046
+ * @memberof Listing
3047
+ */
3048
+ 'instantBookable'?: boolean;
3049
+ /**
3050
+ *
3051
+ * @type {number}
3052
+ * @memberof Listing
3053
+ */
3054
+ 'instantBookableLeadTime'?: number;
3055
+ /**
3056
+ *
3057
+ * @type {boolean}
3058
+ * @memberof Listing
3059
+ */
3060
+ 'isActiveListing'?: boolean;
2851
3061
  /**
2852
3062
  *
2853
3063
  * @type {string}
@@ -2860,18 +3070,60 @@ interface Listing {
2860
3070
  * @memberof Listing
2861
3071
  */
2862
3072
  'listingPicUrl'?: string;
3073
+ /**
3074
+ *
3075
+ * @type {Array<string>}
3076
+ * @memberof Listing
3077
+ */
3078
+ 'listingPictures'?: Array<string>;
3079
+ /**
3080
+ *
3081
+ * @type {Array<string>}
3082
+ * @memberof Listing
3083
+ */
3084
+ 'listingTags'?: Array<string>;
3085
+ /**
3086
+ *
3087
+ * @type {string}
3088
+ * @memberof Listing
3089
+ */
3090
+ 'matterportLink'?: string;
3091
+ /**
3092
+ *
3093
+ * @type {number}
3094
+ * @memberof Listing
3095
+ */
3096
+ 'maxChildrenAllowed'?: number;
3097
+ /**
3098
+ *
3099
+ * @type {number}
3100
+ * @memberof Listing
3101
+ */
3102
+ 'maxInfantsAllowed'?: number;
2863
3103
  /**
2864
3104
  *
2865
3105
  * @type {number}
2866
3106
  * @memberof Listing
2867
3107
  */
2868
3108
  'maxNights'?: number;
3109
+ /**
3110
+ *
3111
+ * @type {number}
3112
+ * @memberof Listing
3113
+ */
3114
+ 'maxPetsAllowed'?: number;
2869
3115
  /**
2870
3116
  *
2871
3117
  * @type {number}
2872
3118
  * @memberof Listing
2873
3119
  */
2874
3120
  'minNights'?: number;
3121
+ /**
3122
+ *
3123
+ * @type {number}
3124
+ * @memberof Listing
3125
+ */
3126
+ 'monthlyDiscount'?: number;
2875
3127
  /**
2876
3128
  *
2877
3129
  * @type {string}
@@ -2944,12 +3196,54 @@ interface Listing {
2944
3196
  * @memberof Listing
2945
3197
  */
2946
3198
  'providerType': RentalProviderTypes;
3199
+ /**
3200
+ *
3201
+ * @type {ListingBaseAddress}
3202
+ * @memberof Listing
3203
+ */
3204
+ 'publishedAddress'?: ListingBaseAddress;
3205
+ /**
3206
+ *
3207
+ * @type {number}
3208
+ * @memberof Listing
3209
+ */
3210
+ 'sameDayBookingLeadTime'?: number;
3211
+ /**
3212
+ *
3213
+ * @type {number}
3214
+ * @memberof Listing
3215
+ */
3216
+ 'securityDepositFee'?: number;
2947
3217
  /**
2948
3218
  *
2949
3219
  * @type {string}
2950
3220
  * @memberof Listing
2951
3221
  */
2952
3222
  'specialInstructions'?: string;
3223
+ /**
3224
+ *
3225
+ * @type {number}
3226
+ * @memberof Listing
3227
+ */
3228
+ 'squareMeters'?: number;
3229
+ /**
3230
+ *
3231
+ * @type {number}
3232
+ * @memberof Listing
3233
+ */
3234
+ 'starRating'?: number;
3235
+ /**
3236
+ *
3237
+ * @type {string}
3238
+ * @memberof Listing
3239
+ */
3240
+ 'summaryDescription'?: string;
3241
+ /**
3242
+ *
3243
+ * @type {string}
3244
+ * @memberof Listing
3245
+ */
3246
+ 'timezone': string;
2953
3247
  /**
2954
3248
  *
2955
3249
  * @type {string}
@@ -2962,6 +3256,18 @@ interface Listing {
2962
3256
  * @memberof Listing
2963
3257
  */
2964
3258
  'trashCollectedOn'?: string;
3259
+ /**
3260
+ *
3261
+ * @type {string}
3262
+ * @memberof Listing
3263
+ */
3264
+ 'updatedAt'?: string;
3265
+ /**
3266
+ *
3267
+ * @type {number}
3268
+ * @memberof Listing
3269
+ */
3270
+ 'weeklyDiscount'?: number;
2965
3271
  /**
2966
3272
  *
2967
3273
  * @type {string}
@@ -3033,7 +3339,63 @@ interface ListingBaseAddress {
3033
3339
  /**
3034
3340
  *
3035
3341
  * @export
3036
- * @enum {string}
3342
+ * @interface ListingBaseChannelInfo
3343
+ */
3344
+ interface ListingBaseChannelInfo {
3345
+ /**
3346
+ *
3347
+ * @type {ListingBaseChannelInfoChannelDetails}
3348
+ * @memberof ListingBaseChannelInfo
3349
+ */
3350
+ 'airbnb'?: ListingBaseChannelInfoChannelDetails;
3351
+ /**
3352
+ *
3353
+ * @type {ListingBaseChannelInfoChannelDetails}
3354
+ * @memberof ListingBaseChannelInfo
3355
+ */
3356
+ 'vrbo'?: ListingBaseChannelInfoChannelDetails;
3357
+ }
3358
+ /**
3359
+ *
3360
+ * @export
3361
+ * @interface ListingBaseChannelInfoChannelDetails
3362
+ */
3363
+ interface ListingBaseChannelInfoChannelDetails {
3364
+ /**
3365
+ *
3366
+ * @type {string}
3367
+ * @memberof ListingBaseChannelInfoChannelDetails
3368
+ */
3369
+ 'channelCancellationPolicyId'?: string;
3370
+ /**
3371
+ *
3372
+ * @type {string}
3373
+ * @memberof ListingBaseChannelInfoChannelDetails
3374
+ */
3375
+ 'channelListingName'?: string;
3376
+ /**
3377
+ *
3378
+ * @type {string}
3379
+ * @memberof ListingBaseChannelInfoChannelDetails
3380
+ */
3381
+ 'channelListingUrl'?: string;
3382
+ /**
3383
+ *
3384
+ * @type {number}
3385
+ * @memberof ListingBaseChannelInfoChannelDetails
3386
+ */
3387
+ 'channelMarkup'?: number;
3388
+ /**
3389
+ *
3390
+ * @type {string}
3391
+ * @memberof ListingBaseChannelInfoChannelDetails
3392
+ */
3393
+ 'channelPropertyDescription'?: string;
3394
+ }
3395
+ /**
3396
+ *
3397
+ * @export
3398
+ * @enum {string}
3037
3399
  */
3038
3400
  declare const ListingSortBy: {
3039
3401
  readonly Title: "title";
@@ -3063,12 +3425,36 @@ interface ListingVersion {
3063
3425
  * @memberof ListingVersion
3064
3426
  */
3065
3427
  'address'?: ListingBaseAddress;
3428
+ /**
3429
+ *
3430
+ * @type {boolean}
3431
+ * @memberof ListingVersion
3432
+ */
3433
+ 'allowSameDayBooking'?: boolean;
3066
3434
  /**
3067
3435
  *
3068
3436
  * @type {Array<string>}
3069
3437
  * @memberof ListingVersion
3070
3438
  */
3071
3439
  'amenities'?: Array<string>;
3440
+ /**
3441
+ *
3442
+ * @type {number}
3443
+ * @memberof ListingVersion
3444
+ */
3445
+ 'areaSquareFeet'?: number;
3446
+ /**
3447
+ *
3448
+ * @type {number}
3449
+ * @memberof ListingVersion
3450
+ */
3451
+ 'averageReviewRating'?: number;
3452
+ /**
3453
+ *
3454
+ * @type {number}
3455
+ * @memberof ListingVersion
3456
+ */
3457
+ 'basePrice'?: number;
3072
3458
  /**
3073
3459
  *
3074
3460
  * @type {{ [key: string]: { [key: string]: number; }; }}
@@ -3085,12 +3471,30 @@ interface ListingVersion {
3085
3471
  * @memberof ListingVersion
3086
3472
  */
3087
3473
  'cancellationPolicy'?: string;
3474
+ /**
3475
+ *
3476
+ * @type {string}
3477
+ * @memberof ListingVersion
3478
+ */
3479
+ 'cancellationPolicyId'?: string;
3480
+ /**
3481
+ *
3482
+ * @type {ListingBaseChannelInfo}
3483
+ * @memberof ListingVersion
3484
+ */
3485
+ 'channelInfo'?: ListingBaseChannelInfo;
3088
3486
  /**
3089
3487
  *
3090
3488
  * @type {number}
3091
3489
  * @memberof ListingVersion
3092
3490
  */
3093
3491
  'cleaningFee'?: number;
3492
+ /**
3493
+ *
3494
+ * @type {string}
3495
+ * @memberof ListingVersion
3496
+ */
3497
+ 'createdAt'?: string;
3094
3498
  /**
3095
3499
  *
3096
3500
  * @type {string}
@@ -3121,6 +3525,12 @@ interface ListingVersion {
3121
3525
  * @memberof ListingVersion
3122
3526
  */
3123
3527
  'extraPersonFee'?: number;
3528
+ /**
3529
+ *
3530
+ * @type {string}
3531
+ * @memberof ListingVersion
3532
+ */
3533
+ 'hostName'?: string;
3124
3534
  /**
3125
3535
  *
3126
3536
  * @type {string}
@@ -3133,6 +3543,24 @@ interface ListingVersion {
3133
3543
  * @memberof ListingVersion
3134
3544
  */
3135
3545
  'ingestionStatus'?: IngestionStatusType;
3546
+ /**
3547
+ *
3548
+ * @type {boolean}
3549
+ * @memberof ListingVersion
3550
+ */
3551
+ 'instantBookable'?: boolean;
3552
+ /**
3553
+ *
3554
+ * @type {number}
3555
+ * @memberof ListingVersion
3556
+ */
3557
+ 'instantBookableLeadTime'?: number;
3558
+ /**
3559
+ *
3560
+ * @type {boolean}
3561
+ * @memberof ListingVersion
3562
+ */
3563
+ 'isActiveListing'?: boolean;
3136
3564
  /**
3137
3565
  *
3138
3566
  * @type {string}
@@ -3145,24 +3573,66 @@ interface ListingVersion {
3145
3573
  * @memberof ListingVersion
3146
3574
  */
3147
3575
  'listingPicUrl'?: string;
3576
+ /**
3577
+ *
3578
+ * @type {Array<string>}
3579
+ * @memberof ListingVersion
3580
+ */
3581
+ 'listingPictures'?: Array<string>;
3582
+ /**
3583
+ *
3584
+ * @type {Array<string>}
3585
+ * @memberof ListingVersion
3586
+ */
3587
+ 'listingTags'?: Array<string>;
3148
3588
  /**
3149
3589
  *
3150
3590
  * @type {string}
3151
3591
  * @memberof ListingVersion
3152
3592
  */
3153
3593
  'listingVersionId': string;
3594
+ /**
3595
+ *
3596
+ * @type {string}
3597
+ * @memberof ListingVersion
3598
+ */
3599
+ 'matterportLink'?: string;
3600
+ /**
3601
+ *
3602
+ * @type {number}
3603
+ * @memberof ListingVersion
3604
+ */
3605
+ 'maxChildrenAllowed'?: number;
3606
+ /**
3607
+ *
3608
+ * @type {number}
3609
+ * @memberof ListingVersion
3610
+ */
3611
+ 'maxInfantsAllowed'?: number;
3154
3612
  /**
3155
3613
  *
3156
3614
  * @type {number}
3157
3615
  * @memberof ListingVersion
3158
3616
  */
3159
3617
  'maxNights'?: number;
3618
+ /**
3619
+ *
3620
+ * @type {number}
3621
+ * @memberof ListingVersion
3622
+ */
3623
+ 'maxPetsAllowed'?: number;
3160
3624
  /**
3161
3625
  *
3162
3626
  * @type {number}
3163
3627
  * @memberof ListingVersion
3164
3628
  */
3165
3629
  'minNights'?: number;
3630
+ /**
3631
+ *
3632
+ * @type {number}
3633
+ * @memberof ListingVersion
3634
+ */
3635
+ 'monthlyDiscount'?: number;
3166
3636
  /**
3167
3637
  *
3168
3638
  * @type {string}
@@ -3235,12 +3705,54 @@ interface ListingVersion {
3235
3705
  * @memberof ListingVersion
3236
3706
  */
3237
3707
  'providerType': RentalProviderTypes;
3708
+ /**
3709
+ *
3710
+ * @type {ListingBaseAddress}
3711
+ * @memberof ListingVersion
3712
+ */
3713
+ 'publishedAddress'?: ListingBaseAddress;
3714
+ /**
3715
+ *
3716
+ * @type {number}
3717
+ * @memberof ListingVersion
3718
+ */
3719
+ 'sameDayBookingLeadTime'?: number;
3720
+ /**
3721
+ *
3722
+ * @type {number}
3723
+ * @memberof ListingVersion
3724
+ */
3725
+ 'securityDepositFee'?: number;
3238
3726
  /**
3239
3727
  *
3240
3728
  * @type {string}
3241
3729
  * @memberof ListingVersion
3242
3730
  */
3243
3731
  'specialInstructions'?: string;
3732
+ /**
3733
+ *
3734
+ * @type {number}
3735
+ * @memberof ListingVersion
3736
+ */
3737
+ 'squareMeters'?: number;
3738
+ /**
3739
+ *
3740
+ * @type {number}
3741
+ * @memberof ListingVersion
3742
+ */
3743
+ 'starRating'?: number;
3744
+ /**
3745
+ *
3746
+ * @type {string}
3747
+ * @memberof ListingVersion
3748
+ */
3749
+ 'summaryDescription'?: string;
3750
+ /**
3751
+ *
3752
+ * @type {string}
3753
+ * @memberof ListingVersion
3754
+ */
3755
+ 'timezone': string;
3244
3756
  /**
3245
3757
  *
3246
3758
  * @type {string}
@@ -3253,12 +3765,24 @@ interface ListingVersion {
3253
3765
  * @memberof ListingVersion
3254
3766
  */
3255
3767
  'trashCollectedOn'?: string;
3768
+ /**
3769
+ *
3770
+ * @type {string}
3771
+ * @memberof ListingVersion
3772
+ */
3773
+ 'updatedAt'?: string;
3256
3774
  /**
3257
3775
  *
3258
3776
  * @type {number}
3259
3777
  * @memberof ListingVersion
3260
3778
  */
3261
3779
  'version': number;
3780
+ /**
3781
+ *
3782
+ * @type {number}
3783
+ * @memberof ListingVersion
3784
+ */
3785
+ 'weeklyDiscount'?: number;
3262
3786
  /**
3263
3787
  *
3264
3788
  * @type {string}
@@ -4982,24 +5506,126 @@ interface Reservation {
4982
5506
  * @memberof Reservation
4983
5507
  */
4984
5508
  'arrivalAtPropertyTz': string;
5509
+ /**
5510
+ *
5511
+ * @type {string}
5512
+ * @memberof Reservation
5513
+ */
5514
+ 'cancellationDate'?: string;
5515
+ /**
5516
+ *
5517
+ * @type {string}
5518
+ * @memberof Reservation
5519
+ */
5520
+ 'cancelledByName'?: string;
4985
5521
  /**
4986
5522
  *
4987
5523
  * @type {ReservationBaseChannelInfo}
4988
5524
  * @memberof Reservation
4989
5525
  */
4990
5526
  'channelInfo': ReservationBaseChannelInfo;
5527
+ /**
5528
+ *
5529
+ * @type {number}
5530
+ * @memberof Reservation
5531
+ */
5532
+ 'cleaningFee': number;
5533
+ /**
5534
+ *
5535
+ * @type {string}
5536
+ * @memberof Reservation
5537
+ */
5538
+ 'comment'?: string;
5539
+ /**
5540
+ *
5541
+ * @type {string}
5542
+ * @memberof Reservation
5543
+ */
5544
+ 'confirmationCode'?: string;
5545
+ /**
5546
+ *
5547
+ * @type {string}
5548
+ * @memberof Reservation
5549
+ */
5550
+ 'createdAt': string;
5551
+ /**
5552
+ *
5553
+ * @type {string}
5554
+ * @memberof Reservation
5555
+ */
5556
+ 'createdByName'?: string;
5557
+ /**
5558
+ *
5559
+ * @type {string}
5560
+ * @memberof Reservation
5561
+ */
5562
+ 'currency'?: string;
4991
5563
  /**
4992
5564
  *
4993
5565
  * @type {string}
4994
5566
  * @memberof Reservation
4995
5567
  */
4996
5568
  'departureAtPropertyTz': string;
5569
+ /**
5570
+ *
5571
+ * @type {string}
5572
+ * @memberof Reservation
5573
+ */
5574
+ 'doorCode'?: string;
5575
+ /**
5576
+ *
5577
+ * @type {string}
5578
+ * @memberof Reservation
5579
+ */
5580
+ 'doorCodeInstruction'?: string;
5581
+ /**
5582
+ *
5583
+ * @type {string}
5584
+ * @memberof Reservation
5585
+ */
5586
+ 'doorCodeVendor'?: string;
5587
+ /**
5588
+ *
5589
+ * @type {string}
5590
+ * @memberof Reservation
5591
+ */
5592
+ 'externalListingId'?: string;
5593
+ /**
5594
+ *
5595
+ * @type {string}
5596
+ * @memberof Reservation
5597
+ */
5598
+ 'externalUnitId'?: string;
5599
+ /**
5600
+ *
5601
+ * @type {string}
5602
+ * @memberof Reservation
5603
+ */
5604
+ 'hostNote'?: string;
4997
5605
  /**
4998
5606
  *
4999
5607
  * @type {IngestionStatusType}
5000
5608
  * @memberof Reservation
5001
5609
  */
5002
5610
  'ingestionStatus'?: IngestionStatusType;
5611
+ /**
5612
+ *
5613
+ * @type {boolean}
5614
+ * @memberof Reservation
5615
+ */
5616
+ 'isArchived'?: boolean;
5617
+ /**
5618
+ *
5619
+ * @type {boolean}
5620
+ * @memberof Reservation
5621
+ */
5622
+ 'isInstantBooked'?: boolean;
5623
+ /**
5624
+ *
5625
+ * @type {boolean}
5626
+ * @memberof Reservation
5627
+ */
5628
+ 'isPaid'?: boolean;
5003
5629
  /**
5004
5630
  *
5005
5631
  * @type {string}
@@ -5024,12 +5650,24 @@ interface Reservation {
5024
5650
  * @memberof Reservation
5025
5651
  */
5026
5652
  'numberGuests'?: number;
5653
+ /**
5654
+ *
5655
+ * @type {number}
5656
+ * @memberof Reservation
5657
+ */
5658
+ 'pets'?: number;
5027
5659
  /**
5028
5660
  *
5029
5661
  * @type {ReservationProviderInfo}
5030
5662
  * @memberof Reservation
5031
5663
  */
5032
5664
  'providerInfo': ReservationProviderInfo;
5665
+ /**
5666
+ *
5667
+ * @type {string}
5668
+ * @memberof Reservation
5669
+ */
5670
+ 'reservationCouponId'?: string;
5033
5671
  /**
5034
5672
  *
5035
5673
  * @type {string}
@@ -5042,12 +5680,30 @@ interface Reservation {
5042
5680
  * @memberof Reservation
5043
5681
  */
5044
5682
  'reservationStatus': ReservationStatus;
5683
+ /**
5684
+ *
5685
+ * @type {number}
5686
+ * @memberof Reservation
5687
+ */
5688
+ 'taxAmount'?: number;
5045
5689
  /**
5046
5690
  *
5047
5691
  * @type {number}
5048
5692
  * @memberof Reservation
5049
5693
  */
5050
5694
  'totalPrice': number;
5695
+ /**
5696
+ *
5697
+ * @type {string}
5698
+ * @memberof Reservation
5699
+ */
5700
+ 'updatedAt': string;
5701
+ /**
5702
+ *
5703
+ * @type {string}
5704
+ * @memberof Reservation
5705
+ */
5706
+ 'updatedByName'?: string;
5051
5707
  }
5052
5708
  /**
5053
5709
  *
@@ -5055,12 +5711,30 @@ interface Reservation {
5055
5711
  * @interface ReservationBaseChannelInfo
5056
5712
  */
5057
5713
  interface ReservationBaseChannelInfo {
5714
+ /**
5715
+ *
5716
+ * @type {Channelfinancefields}
5717
+ * @memberof ReservationBaseChannelInfo
5718
+ */
5719
+ 'channelFinanceFields'?: Channelfinancefields;
5058
5720
  /**
5059
5721
  *
5060
5722
  * @type {ReservationChannelTypes}
5061
5723
  * @memberof ReservationBaseChannelInfo
5062
5724
  */
5063
5725
  'channelName': ReservationChannelTypes;
5726
+ /**
5727
+ *
5728
+ * @type {string}
5729
+ * @memberof ReservationBaseChannelInfo
5730
+ */
5731
+ 'channelPropertyId'?: string;
5732
+ /**
5733
+ *
5734
+ * @type {string}
5735
+ * @memberof ReservationBaseChannelInfo
5736
+ */
5737
+ 'channelReservationId'?: string;
5064
5738
  }
5065
5739
  /**
5066
5740
  *
@@ -5092,18 +5766,38 @@ type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof Reser
5092
5766
  * @interface ReservationProviderInfo
5093
5767
  */
5094
5768
  interface ReservationProviderInfo {
5769
+ /**
5770
+ *
5771
+ * @type {number}
5772
+ * @memberof ReservationProviderInfo
5773
+ */
5774
+ 'providerCommissionAmount'?: number;
5095
5775
  /**
5096
5776
  *
5097
5777
  * @type {string}
5098
5778
  * @memberof ReservationProviderInfo
5099
5779
  */
5100
5780
  'providerCreatedAt': string;
5781
+ /**
5782
+ *
5783
+ * @type {string}
5784
+ * @memberof ReservationProviderInfo
5785
+ */
5786
+ 'providerGuestId': string;
5101
5787
  /**
5102
5788
  *
5103
5789
  * @type {string}
5104
5790
  * @memberof ReservationProviderInfo
5105
5791
  */
5106
5792
  'providerId': string;
5793
+ /**
5794
+ *
5795
+ * @type {{ [key: string]: any; }}
5796
+ * @memberof ReservationProviderInfo
5797
+ */
5798
+ 'providerPayload': {
5799
+ [key: string]: any;
5800
+ };
5107
5801
  /**
5108
5802
  *
5109
5803
  * @type {string}
@@ -5115,7 +5809,19 @@ interface ReservationProviderInfo {
5115
5809
  * @type {string}
5116
5810
  * @memberof ReservationProviderInfo
5117
5811
  */
5118
- 'providerReservationUrl': string;
5812
+ 'providerReservationUrl'?: string;
5813
+ /**
5814
+ *
5815
+ * @type {string}
5816
+ * @memberof ReservationProviderInfo
5817
+ */
5818
+ 'providerStatus': string;
5819
+ /**
5820
+ *
5821
+ * @type {string}
5822
+ * @memberof ReservationProviderInfo
5823
+ */
5824
+ 'providerUpdatedAt': string;
5119
5825
  }
5120
5826
  /**
5121
5827
  *
@@ -5153,24 +5859,126 @@ interface ReservationVersion {
5153
5859
  * @memberof ReservationVersion
5154
5860
  */
5155
5861
  'arrivalAtPropertyTz': string;
5862
+ /**
5863
+ *
5864
+ * @type {string}
5865
+ * @memberof ReservationVersion
5866
+ */
5867
+ 'cancellationDate'?: string;
5868
+ /**
5869
+ *
5870
+ * @type {string}
5871
+ * @memberof ReservationVersion
5872
+ */
5873
+ 'cancelledByName'?: string;
5156
5874
  /**
5157
5875
  *
5158
5876
  * @type {ReservationBaseChannelInfo}
5159
5877
  * @memberof ReservationVersion
5160
5878
  */
5161
5879
  'channelInfo': ReservationBaseChannelInfo;
5880
+ /**
5881
+ *
5882
+ * @type {number}
5883
+ * @memberof ReservationVersion
5884
+ */
5885
+ 'cleaningFee': number;
5886
+ /**
5887
+ *
5888
+ * @type {string}
5889
+ * @memberof ReservationVersion
5890
+ */
5891
+ 'comment'?: string;
5892
+ /**
5893
+ *
5894
+ * @type {string}
5895
+ * @memberof ReservationVersion
5896
+ */
5897
+ 'confirmationCode'?: string;
5898
+ /**
5899
+ *
5900
+ * @type {string}
5901
+ * @memberof ReservationVersion
5902
+ */
5903
+ 'createdAt': string;
5904
+ /**
5905
+ *
5906
+ * @type {string}
5907
+ * @memberof ReservationVersion
5908
+ */
5909
+ 'createdByName'?: string;
5910
+ /**
5911
+ *
5912
+ * @type {string}
5913
+ * @memberof ReservationVersion
5914
+ */
5915
+ 'currency'?: string;
5162
5916
  /**
5163
5917
  *
5164
5918
  * @type {string}
5165
5919
  * @memberof ReservationVersion
5166
5920
  */
5167
5921
  'departureAtPropertyTz': string;
5922
+ /**
5923
+ *
5924
+ * @type {string}
5925
+ * @memberof ReservationVersion
5926
+ */
5927
+ 'doorCode'?: string;
5928
+ /**
5929
+ *
5930
+ * @type {string}
5931
+ * @memberof ReservationVersion
5932
+ */
5933
+ 'doorCodeInstruction'?: string;
5934
+ /**
5935
+ *
5936
+ * @type {string}
5937
+ * @memberof ReservationVersion
5938
+ */
5939
+ 'doorCodeVendor'?: string;
5940
+ /**
5941
+ *
5942
+ * @type {string}
5943
+ * @memberof ReservationVersion
5944
+ */
5945
+ 'externalListingId'?: string;
5946
+ /**
5947
+ *
5948
+ * @type {string}
5949
+ * @memberof ReservationVersion
5950
+ */
5951
+ 'externalUnitId'?: string;
5952
+ /**
5953
+ *
5954
+ * @type {string}
5955
+ * @memberof ReservationVersion
5956
+ */
5957
+ 'hostNote'?: string;
5168
5958
  /**
5169
5959
  *
5170
5960
  * @type {IngestionStatusType}
5171
5961
  * @memberof ReservationVersion
5172
5962
  */
5173
5963
  'ingestionStatus'?: IngestionStatusType;
5964
+ /**
5965
+ *
5966
+ * @type {boolean}
5967
+ * @memberof ReservationVersion
5968
+ */
5969
+ 'isArchived'?: boolean;
5970
+ /**
5971
+ *
5972
+ * @type {boolean}
5973
+ * @memberof ReservationVersion
5974
+ */
5975
+ 'isInstantBooked'?: boolean;
5976
+ /**
5977
+ *
5978
+ * @type {boolean}
5979
+ * @memberof ReservationVersion
5980
+ */
5981
+ 'isPaid'?: boolean;
5174
5982
  /**
5175
5983
  *
5176
5984
  * @type {string}
@@ -5195,12 +6003,24 @@ interface ReservationVersion {
5195
6003
  * @memberof ReservationVersion
5196
6004
  */
5197
6005
  'numberGuests'?: number;
6006
+ /**
6007
+ *
6008
+ * @type {number}
6009
+ * @memberof ReservationVersion
6010
+ */
6011
+ 'pets'?: number;
5198
6012
  /**
5199
6013
  *
5200
6014
  * @type {ReservationProviderInfo}
5201
6015
  * @memberof ReservationVersion
5202
6016
  */
5203
6017
  'providerInfo': ReservationProviderInfo;
6018
+ /**
6019
+ *
6020
+ * @type {string}
6021
+ * @memberof ReservationVersion
6022
+ */
6023
+ 'reservationCouponId'?: string;
5204
6024
  /**
5205
6025
  *
5206
6026
  * @type {string}
@@ -5219,12 +6039,30 @@ interface ReservationVersion {
5219
6039
  * @memberof ReservationVersion
5220
6040
  */
5221
6041
  'reservationVersionId': string;
6042
+ /**
6043
+ *
6044
+ * @type {number}
6045
+ * @memberof ReservationVersion
6046
+ */
6047
+ 'taxAmount'?: number;
5222
6048
  /**
5223
6049
  *
5224
6050
  * @type {number}
5225
6051
  * @memberof ReservationVersion
5226
6052
  */
5227
6053
  'totalPrice': number;
6054
+ /**
6055
+ *
6056
+ * @type {string}
6057
+ * @memberof ReservationVersion
6058
+ */
6059
+ 'updatedAt': string;
6060
+ /**
6061
+ *
6062
+ * @type {string}
6063
+ * @memberof ReservationVersion
6064
+ */
6065
+ 'updatedByName'?: string;
5228
6066
  /**
5229
6067
  *
5230
6068
  * @type {number}
@@ -5298,6 +6136,18 @@ interface SMSConversationData {
5298
6136
  * @memberof SMSConversationData
5299
6137
  */
5300
6138
  'conversationType': SMSConversationDataConversationTypeEnum;
6139
+ /**
6140
+ *
6141
+ * @type {string}
6142
+ * @memberof SMSConversationData
6143
+ */
6144
+ 'managedPhoneId': string;
6145
+ /**
6146
+ *
6147
+ * @type {Array<ToPhone>}
6148
+ * @memberof SMSConversationData
6149
+ */
6150
+ 'toPhones': Array<ToPhone>;
5301
6151
  }
5302
6152
  declare const SMSConversationDataConversationTypeEnum: {
5303
6153
  readonly Text: "TEXT";
@@ -5344,6 +6194,12 @@ type SMSConversationDataCreateConversationTypeEnum = typeof SMSConversationDataC
5344
6194
  * @interface SMSInboundSenderTypeData
5345
6195
  */
5346
6196
  interface SMSInboundSenderTypeData {
6197
+ /**
6198
+ *
6199
+ * @type {string}
6200
+ * @memberof SMSInboundSenderTypeData
6201
+ */
6202
+ 'carrier': string;
5347
6203
  /**
5348
6204
  *
5349
6205
  * @type {string}
@@ -5356,6 +6212,12 @@ interface SMSInboundSenderTypeData {
5356
6212
  * @memberof SMSInboundSenderTypeData
5357
6213
  */
5358
6214
  'fromPhone': string;
6215
+ /**
6216
+ *
6217
+ * @type {SMSLineType}
6218
+ * @memberof SMSInboundSenderTypeData
6219
+ */
6220
+ 'lineType': SMSLineType;
5359
6221
  }
5360
6222
  declare const SMSInboundSenderTypeDataDirectionEnum: {
5361
6223
  readonly Inbound: "INBOUND";
@@ -5367,6 +6229,18 @@ type SMSInboundSenderTypeDataDirectionEnum = typeof SMSInboundSenderTypeDataDire
5367
6229
  * @interface SMSLeg
5368
6230
  */
5369
6231
  interface SMSLeg {
6232
+ /**
6233
+ *
6234
+ * @type {string}
6235
+ * @memberof SMSLeg
6236
+ */
6237
+ 'carrier'?: string;
6238
+ /**
6239
+ *
6240
+ * @type {SMSLineType}
6241
+ * @memberof SMSLeg
6242
+ */
6243
+ 'lineType'?: SMSLineType;
5370
6244
  /**
5371
6245
  *
5372
6246
  * @type {SMSMessageStatus}
@@ -5511,7 +6385,9 @@ type SortByAuthGateway = typeof SortByAuthGateway[keyof typeof SortByAuthGateway
5511
6385
  * @enum {string}
5512
6386
  */
5513
6387
  declare const SortByUbFastApi: {
5514
- readonly LastMessageSentAt: "lastMessageSentAt";
6388
+ readonly LastFirstCompany: "lastFirstCompany";
6389
+ readonly FirstLastCompany: "firstLastCompany";
6390
+ readonly CompanyLastFirst: "companyLastFirst";
5515
6391
  };
5516
6392
  type SortByUbFastApi = typeof SortByUbFastApi[keyof typeof SortByUbFastApi];
5517
6393
  /**
@@ -6070,9 +6946,7 @@ type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
6070
6946
  * @type Usertypedata
6071
6947
  * @export
6072
6948
  */
6073
- type Usertypedata = APIUserPrincipal | {
6074
- [key: string]: any;
6075
- };
6949
+ type Usertypedata = APIMicroServicePrincipal | APIUserPrincipal;
6076
6950
  /**
6077
6951
  *
6078
6952
  * @export
@@ -6946,12 +7820,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
6946
7820
  * @param {string} [cursor] Cursor for keyset paging
6947
7821
  * @param {number} [limit]
6948
7822
  * @param {PaginationDirection} [pageDir] Direction of paging
6949
- * @param {ContactSortBy} [sortBy] Sort key
7823
+ * @param {SortByUbFastApi} [sortBy] Sort key
6950
7824
  * @param {SortOrder} [sortOrder] Sort order asc/desc
6951
7825
  * @param {*} [options] Override http request option.
6952
7826
  * @throws {RequiredError}
6953
7827
  */
6954
- contactsList: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7828
+ contactsList: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6955
7829
  /**
6956
7830
  *
6957
7831
  * @summary Contacts Update
@@ -7100,12 +7974,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
7100
7974
  * @param {string} [cursor] Cursor for keyset paging
7101
7975
  * @param {number} [limit]
7102
7976
  * @param {PaginationDirection} [pageDir] Direction of paging
7103
- * @param {ContactSortBy} [sortBy] Sort key
7977
+ * @param {SortByUbFastApi} [sortBy] Sort key
7104
7978
  * @param {SortOrder} [sortOrder] Sort order asc/desc
7105
7979
  * @param {*} [options] Override http request option.
7106
7980
  * @throws {RequiredError}
7107
7981
  */
7108
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
7982
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
7109
7983
  /**
7110
7984
  *
7111
7985
  * @summary Contacts Update
@@ -7254,12 +8128,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
7254
8128
  * @param {string} [cursor] Cursor for keyset paging
7255
8129
  * @param {number} [limit]
7256
8130
  * @param {PaginationDirection} [pageDir] Direction of paging
7257
- * @param {ContactSortBy} [sortBy] Sort key
8131
+ * @param {SortByUbFastApi} [sortBy] Sort key
7258
8132
  * @param {SortOrder} [sortOrder] Sort order asc/desc
7259
8133
  * @param {*} [options] Override http request option.
7260
8134
  * @throws {RequiredError}
7261
8135
  */
7262
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
8136
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
7263
8137
  /**
7264
8138
  *
7265
8139
  * @summary Contacts Update
@@ -7417,13 +8291,13 @@ declare class ContactsApi extends BaseAPI {
7417
8291
  * @param {string} [cursor] Cursor for keyset paging
7418
8292
  * @param {number} [limit]
7419
8293
  * @param {PaginationDirection} [pageDir] Direction of paging
7420
- * @param {ContactSortBy} [sortBy] Sort key
8294
+ * @param {SortByUbFastApi} [sortBy] Sort key
7421
8295
  * @param {SortOrder} [sortOrder] Sort order asc/desc
7422
8296
  * @param {*} [options] Override http request option.
7423
8297
  * @throws {RequiredError}
7424
8298
  * @memberof ContactsApi
7425
8299
  */
7426
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
8300
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
7427
8301
  /**
7428
8302
  *
7429
8303
  * @summary Contacts Update
@@ -8071,12 +8945,12 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
8071
8945
  * @param {number} [limit]
8072
8946
  * @param {PaginationDirection} [pageDir] Direction of paging
8073
8947
  * @param {SortOrder} [sortOrder] Sort order asc/desc
8074
- * @param {SortByUbFastApi} [sortBy] Sent at
8948
+ * @param {ConversationSortBy} [sortBy] Sent at
8075
8949
  * @param {string} [inboxId]
8076
8950
  * @param {*} [options] Override http request option.
8077
8951
  * @throws {RequiredError}
8078
8952
  */
8079
- conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8953
+ conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8080
8954
  /**
8081
8955
  *
8082
8956
  * @summary Conversations Update
@@ -8119,12 +8993,12 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
8119
8993
  * @param {number} [limit]
8120
8994
  * @param {PaginationDirection} [pageDir] Direction of paging
8121
8995
  * @param {SortOrder} [sortOrder] Sort order asc/desc
8122
- * @param {SortByUbFastApi} [sortBy] Sent at
8996
+ * @param {ConversationSortBy} [sortBy] Sent at
8123
8997
  * @param {string} [inboxId]
8124
8998
  * @param {*} [options] Override http request option.
8125
8999
  * @throws {RequiredError}
8126
9000
  */
8127
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
9001
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
8128
9002
  /**
8129
9003
  *
8130
9004
  * @summary Conversations Update
@@ -8167,12 +9041,12 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
8167
9041
  * @param {number} [limit]
8168
9042
  * @param {PaginationDirection} [pageDir] Direction of paging
8169
9043
  * @param {SortOrder} [sortOrder] Sort order asc/desc
8170
- * @param {SortByUbFastApi} [sortBy] Sent at
9044
+ * @param {ConversationSortBy} [sortBy] Sent at
8171
9045
  * @param {string} [inboxId]
8172
9046
  * @param {*} [options] Override http request option.
8173
9047
  * @throws {RequiredError}
8174
9048
  */
8175
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
9049
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
8176
9050
  /**
8177
9051
  *
8178
9052
  * @summary Conversations Update
@@ -8219,13 +9093,13 @@ declare class ConversationsApi extends BaseAPI {
8219
9093
  * @param {number} [limit]
8220
9094
  * @param {PaginationDirection} [pageDir] Direction of paging
8221
9095
  * @param {SortOrder} [sortOrder] Sort order asc/desc
8222
- * @param {SortByUbFastApi} [sortBy] Sent at
9096
+ * @param {ConversationSortBy} [sortBy] Sent at
8223
9097
  * @param {string} [inboxId]
8224
9098
  * @param {*} [options] Override http request option.
8225
9099
  * @throws {RequiredError}
8226
9100
  * @memberof ConversationsApi
8227
9101
  */
8228
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
9102
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
8229
9103
  /**
8230
9104
  *
8231
9105
  * @summary Conversations Update
@@ -10098,12 +10972,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
10098
10972
  * @param {string} [cursor] Cursor for keyset paging
10099
10973
  * @param {number} [limit]
10100
10974
  * @param {PaginationDirection} [pageDir] Direction of paging
10101
- * @param {ContactSortBy} [sortBy] Sort key
10975
+ * @param {SortByUbFastApi} [sortBy] Sort key
10102
10976
  * @param {SortOrder} [sortOrder] Sort order asc/desc
10103
10977
  * @param {*} [options] Override http request option.
10104
10978
  * @throws {RequiredError}
10105
10979
  */
10106
- contactsList: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10980
+ contactsList: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10107
10981
  /**
10108
10982
  *
10109
10983
  * @summary Contacts List
@@ -10111,12 +10985,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
10111
10985
  * @param {string} [cursor] Cursor for keyset paging
10112
10986
  * @param {number} [limit]
10113
10987
  * @param {PaginationDirection} [pageDir] Direction of paging
10114
- * @param {ContactSortBy} [sortBy] Sort key
10988
+ * @param {SortByUbFastApi} [sortBy] Sort key
10115
10989
  * @param {SortOrder} [sortOrder] Sort order asc/desc
10116
10990
  * @param {*} [options] Override http request option.
10117
10991
  * @throws {RequiredError}
10118
10992
  */
10119
- contactsList_18: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10993
+ contactsList_18: (searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10120
10994
  /**
10121
10995
  *
10122
10996
  * @summary Contact Listing Delete
@@ -10391,12 +11265,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
10391
11265
  * @param {number} [limit]
10392
11266
  * @param {PaginationDirection} [pageDir] Direction of paging
10393
11267
  * @param {SortOrder} [sortOrder] Sort order asc/desc
10394
- * @param {SortByUbFastApi} [sortBy] Sent at
11268
+ * @param {ConversationSortBy} [sortBy] Sent at
10395
11269
  * @param {string} [inboxId]
10396
11270
  * @param {*} [options] Override http request option.
10397
11271
  * @throws {RequiredError}
10398
11272
  */
10399
- conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11273
+ conversationsList: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10400
11274
  /**
10401
11275
  * List all conversations, must filter by contact_id
10402
11276
  * @summary Conversations List
@@ -10407,12 +11281,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
10407
11281
  * @param {number} [limit]
10408
11282
  * @param {PaginationDirection} [pageDir] Direction of paging
10409
11283
  * @param {SortOrder} [sortOrder] Sort order asc/desc
10410
- * @param {SortByUbFastApi} [sortBy] Sent at
11284
+ * @param {ConversationSortBy} [sortBy] Sent at
10411
11285
  * @param {string} [inboxId]
10412
11286
  * @param {*} [options] Override http request option.
10413
11287
  * @throws {RequiredError}
10414
11288
  */
10415
- conversationsList_33: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11289
+ conversationsList_33: (searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10416
11290
  /**
10417
11291
  *
10418
11292
  * @summary Conversations Update
@@ -11393,12 +12267,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
11393
12267
  * @param {string} [cursor] Cursor for keyset paging
11394
12268
  * @param {number} [limit]
11395
12269
  * @param {PaginationDirection} [pageDir] Direction of paging
11396
- * @param {ContactSortBy} [sortBy] Sort key
12270
+ * @param {SortByUbFastApi} [sortBy] Sort key
11397
12271
  * @param {SortOrder} [sortOrder] Sort order asc/desc
11398
12272
  * @param {*} [options] Override http request option.
11399
12273
  * @throws {RequiredError}
11400
12274
  */
11401
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
12275
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
11402
12276
  /**
11403
12277
  *
11404
12278
  * @summary Contacts List
@@ -11406,12 +12280,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
11406
12280
  * @param {string} [cursor] Cursor for keyset paging
11407
12281
  * @param {number} [limit]
11408
12282
  * @param {PaginationDirection} [pageDir] Direction of paging
11409
- * @param {ContactSortBy} [sortBy] Sort key
12283
+ * @param {SortByUbFastApi} [sortBy] Sort key
11410
12284
  * @param {SortOrder} [sortOrder] Sort order asc/desc
11411
12285
  * @param {*} [options] Override http request option.
11412
12286
  * @throws {RequiredError}
11413
12287
  */
11414
- contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
12288
+ contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContact>>;
11415
12289
  /**
11416
12290
  *
11417
12291
  * @summary Contact Listing Delete
@@ -11686,12 +12560,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
11686
12560
  * @param {number} [limit]
11687
12561
  * @param {PaginationDirection} [pageDir] Direction of paging
11688
12562
  * @param {SortOrder} [sortOrder] Sort order asc/desc
11689
- * @param {SortByUbFastApi} [sortBy] Sent at
12563
+ * @param {ConversationSortBy} [sortBy] Sent at
11690
12564
  * @param {string} [inboxId]
11691
12565
  * @param {*} [options] Override http request option.
11692
12566
  * @throws {RequiredError}
11693
12567
  */
11694
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
12568
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
11695
12569
  /**
11696
12570
  * List all conversations, must filter by contact_id
11697
12571
  * @summary Conversations List
@@ -11702,12 +12576,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
11702
12576
  * @param {number} [limit]
11703
12577
  * @param {PaginationDirection} [pageDir] Direction of paging
11704
12578
  * @param {SortOrder} [sortOrder] Sort order asc/desc
11705
- * @param {SortByUbFastApi} [sortBy] Sent at
12579
+ * @param {ConversationSortBy} [sortBy] Sent at
11706
12580
  * @param {string} [inboxId]
11707
12581
  * @param {*} [options] Override http request option.
11708
12582
  * @throws {RequiredError}
11709
12583
  */
11710
- conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
12584
+ conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseConversation>>;
11711
12585
  /**
11712
12586
  *
11713
12587
  * @summary Conversations Update
@@ -12688,12 +13562,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
12688
13562
  * @param {string} [cursor] Cursor for keyset paging
12689
13563
  * @param {number} [limit]
12690
13564
  * @param {PaginationDirection} [pageDir] Direction of paging
12691
- * @param {ContactSortBy} [sortBy] Sort key
13565
+ * @param {SortByUbFastApi} [sortBy] Sort key
12692
13566
  * @param {SortOrder} [sortOrder] Sort order asc/desc
12693
13567
  * @param {*} [options] Override http request option.
12694
13568
  * @throws {RequiredError}
12695
13569
  */
12696
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
13570
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
12697
13571
  /**
12698
13572
  *
12699
13573
  * @summary Contacts List
@@ -12701,12 +13575,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
12701
13575
  * @param {string} [cursor] Cursor for keyset paging
12702
13576
  * @param {number} [limit]
12703
13577
  * @param {PaginationDirection} [pageDir] Direction of paging
12704
- * @param {ContactSortBy} [sortBy] Sort key
13578
+ * @param {SortByUbFastApi} [sortBy] Sort key
12705
13579
  * @param {SortOrder} [sortOrder] Sort order asc/desc
12706
13580
  * @param {*} [options] Override http request option.
12707
13581
  * @throws {RequiredError}
12708
13582
  */
12709
- contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
13583
+ contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContact>;
12710
13584
  /**
12711
13585
  *
12712
13586
  * @summary Contact Listing Delete
@@ -12981,12 +13855,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
12981
13855
  * @param {number} [limit]
12982
13856
  * @param {PaginationDirection} [pageDir] Direction of paging
12983
13857
  * @param {SortOrder} [sortOrder] Sort order asc/desc
12984
- * @param {SortByUbFastApi} [sortBy] Sent at
13858
+ * @param {ConversationSortBy} [sortBy] Sent at
12985
13859
  * @param {string} [inboxId]
12986
13860
  * @param {*} [options] Override http request option.
12987
13861
  * @throws {RequiredError}
12988
13862
  */
12989
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
13863
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
12990
13864
  /**
12991
13865
  * List all conversations, must filter by contact_id
12992
13866
  * @summary Conversations List
@@ -12997,12 +13871,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
12997
13871
  * @param {number} [limit]
12998
13872
  * @param {PaginationDirection} [pageDir] Direction of paging
12999
13873
  * @param {SortOrder} [sortOrder] Sort order asc/desc
13000
- * @param {SortByUbFastApi} [sortBy] Sent at
13874
+ * @param {ConversationSortBy} [sortBy] Sent at
13001
13875
  * @param {string} [inboxId]
13002
13876
  * @param {*} [options] Override http request option.
13003
13877
  * @throws {RequiredError}
13004
13878
  */
13005
- conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
13879
+ conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseConversation>;
13006
13880
  /**
13007
13881
  *
13008
13882
  * @summary Conversations Update
@@ -14021,13 +14895,13 @@ declare class UnboundApi extends BaseAPI {
14021
14895
  * @param {string} [cursor] Cursor for keyset paging
14022
14896
  * @param {number} [limit]
14023
14897
  * @param {PaginationDirection} [pageDir] Direction of paging
14024
- * @param {ContactSortBy} [sortBy] Sort key
14898
+ * @param {SortByUbFastApi} [sortBy] Sort key
14025
14899
  * @param {SortOrder} [sortOrder] Sort order asc/desc
14026
14900
  * @param {*} [options] Override http request option.
14027
14901
  * @throws {RequiredError}
14028
14902
  * @memberof UnboundApi
14029
14903
  */
14030
- contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
14904
+ contactsList(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
14031
14905
  /**
14032
14906
  *
14033
14907
  * @summary Contacts List
@@ -14035,13 +14909,13 @@ declare class UnboundApi extends BaseAPI {
14035
14909
  * @param {string} [cursor] Cursor for keyset paging
14036
14910
  * @param {number} [limit]
14037
14911
  * @param {PaginationDirection} [pageDir] Direction of paging
14038
- * @param {ContactSortBy} [sortBy] Sort key
14912
+ * @param {SortByUbFastApi} [sortBy] Sort key
14039
14913
  * @param {SortOrder} [sortOrder] Sort order asc/desc
14040
14914
  * @param {*} [options] Override http request option.
14041
14915
  * @throws {RequiredError}
14042
14916
  * @memberof UnboundApi
14043
14917
  */
14044
- contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
14918
+ contactsList_18(searchString?: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContact, any>>;
14045
14919
  /**
14046
14920
  *
14047
14921
  * @summary Contact Listing Delete
@@ -14344,13 +15218,13 @@ declare class UnboundApi extends BaseAPI {
14344
15218
  * @param {number} [limit]
14345
15219
  * @param {PaginationDirection} [pageDir] Direction of paging
14346
15220
  * @param {SortOrder} [sortOrder] Sort order asc/desc
14347
- * @param {SortByUbFastApi} [sortBy] Sent at
15221
+ * @param {ConversationSortBy} [sortBy] Sent at
14348
15222
  * @param {string} [inboxId]
14349
15223
  * @param {*} [options] Override http request option.
14350
15224
  * @throws {RequiredError}
14351
15225
  * @memberof UnboundApi
14352
15226
  */
14353
- conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
15227
+ conversationsList(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
14354
15228
  /**
14355
15229
  * List all conversations, must filter by contact_id
14356
15230
  * @summary Conversations List
@@ -14361,13 +15235,13 @@ declare class UnboundApi extends BaseAPI {
14361
15235
  * @param {number} [limit]
14362
15236
  * @param {PaginationDirection} [pageDir] Direction of paging
14363
15237
  * @param {SortOrder} [sortOrder] Sort order asc/desc
14364
- * @param {SortByUbFastApi} [sortBy] Sent at
15238
+ * @param {ConversationSortBy} [sortBy] Sent at
14365
15239
  * @param {string} [inboxId]
14366
15240
  * @param {*} [options] Override http request option.
14367
15241
  * @throws {RequiredError}
14368
15242
  * @memberof UnboundApi
14369
15243
  */
14370
- conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: SortByUbFastApi, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
15244
+ conversationsList_33(searchString?: string, contactId?: string, statuses?: Array<ConversationStatus>, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, sortBy?: ConversationSortBy, inboxId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseConversation, any>>;
14371
15245
  /**
14372
15246
  *
14373
15247
  * @summary Conversations Update
@@ -15190,4 +16064,4 @@ declare class UserDevicesApi extends BaseAPI {
15190
16064
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
15191
16065
  }
15192
16066
 
15193
- export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type Notification, NotificationStatus, NotificationType, type NotificationTypeData, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
16067
+ export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationCreate, ConversationSortBy, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type Notification, NotificationStatus, NotificationType, type NotificationTypeData, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };