@ember-home/unbound-ts-client 0.0.128 → 0.0.129
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 +374 -313
- package/dist/index.d.ts +374 -313
- package/dist/index.js +116 -116
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -117
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -672,6 +672,61 @@ interface Community {
|
|
|
672
672
|
*/
|
|
673
673
|
'updatedAt': string;
|
|
674
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @export
|
|
678
|
+
* @interface CommunityCreate
|
|
679
|
+
*/
|
|
680
|
+
interface CommunityCreate {
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @type {string}
|
|
684
|
+
* @memberof CommunityCreate
|
|
685
|
+
*/
|
|
686
|
+
'communityTypeId': string;
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @type {string}
|
|
690
|
+
* @memberof CommunityCreate
|
|
691
|
+
*/
|
|
692
|
+
'street1'?: string | null;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof CommunityCreate
|
|
697
|
+
*/
|
|
698
|
+
'street2'?: string | null;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof CommunityCreate
|
|
703
|
+
*/
|
|
704
|
+
'locality'?: string | null;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof CommunityCreate
|
|
709
|
+
*/
|
|
710
|
+
'region'?: string | null;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {string}
|
|
714
|
+
* @memberof CommunityCreate
|
|
715
|
+
*/
|
|
716
|
+
'country'?: string | null;
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof CommunityCreate
|
|
721
|
+
*/
|
|
722
|
+
'postalCode'?: string | null;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {Array<string>}
|
|
726
|
+
* @memberof CommunityCreate
|
|
727
|
+
*/
|
|
728
|
+
'listingIds'?: Array<string>;
|
|
729
|
+
}
|
|
675
730
|
/**
|
|
676
731
|
*
|
|
677
732
|
* @export
|
|
@@ -752,6 +807,67 @@ interface CommunityTypeUpdate {
|
|
|
752
807
|
*/
|
|
753
808
|
'name': string;
|
|
754
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @export
|
|
813
|
+
* @interface CommunityUpdate
|
|
814
|
+
*/
|
|
815
|
+
interface CommunityUpdate {
|
|
816
|
+
/**
|
|
817
|
+
*
|
|
818
|
+
* @type {string}
|
|
819
|
+
* @memberof CommunityUpdate
|
|
820
|
+
*/
|
|
821
|
+
'name'?: string | null;
|
|
822
|
+
/**
|
|
823
|
+
*
|
|
824
|
+
* @type {string}
|
|
825
|
+
* @memberof CommunityUpdate
|
|
826
|
+
*/
|
|
827
|
+
'communityTypeId'?: string | null;
|
|
828
|
+
/**
|
|
829
|
+
*
|
|
830
|
+
* @type {string}
|
|
831
|
+
* @memberof CommunityUpdate
|
|
832
|
+
*/
|
|
833
|
+
'street1'?: string | null;
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @type {string}
|
|
837
|
+
* @memberof CommunityUpdate
|
|
838
|
+
*/
|
|
839
|
+
'street2'?: string | null;
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof CommunityUpdate
|
|
844
|
+
*/
|
|
845
|
+
'locality'?: string | null;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof CommunityUpdate
|
|
850
|
+
*/
|
|
851
|
+
'region'?: string | null;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof CommunityUpdate
|
|
856
|
+
*/
|
|
857
|
+
'country'?: string | null;
|
|
858
|
+
/**
|
|
859
|
+
*
|
|
860
|
+
* @type {string}
|
|
861
|
+
* @memberof CommunityUpdate
|
|
862
|
+
*/
|
|
863
|
+
'postalCode'?: string | null;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {Array<string>}
|
|
867
|
+
* @memberof CommunityUpdate
|
|
868
|
+
*/
|
|
869
|
+
'listingIds'?: Array<string> | null;
|
|
870
|
+
}
|
|
755
871
|
/**
|
|
756
872
|
*
|
|
757
873
|
* @export
|
|
@@ -1103,6 +1219,121 @@ interface ContactTypeData {
|
|
|
1103
1219
|
*/
|
|
1104
1220
|
'lead'?: LeadData | null;
|
|
1105
1221
|
}
|
|
1222
|
+
/**
|
|
1223
|
+
* Fields for PATCH requests (all optional).
|
|
1224
|
+
* @export
|
|
1225
|
+
* @interface ContactUpdate
|
|
1226
|
+
*/
|
|
1227
|
+
interface ContactUpdate {
|
|
1228
|
+
/**
|
|
1229
|
+
*
|
|
1230
|
+
* @type {string}
|
|
1231
|
+
* @memberof ContactUpdate
|
|
1232
|
+
*/
|
|
1233
|
+
'title'?: string | null;
|
|
1234
|
+
/**
|
|
1235
|
+
*
|
|
1236
|
+
* @type {string}
|
|
1237
|
+
* @memberof ContactUpdate
|
|
1238
|
+
*/
|
|
1239
|
+
'primaryEmail'?: string | null;
|
|
1240
|
+
/**
|
|
1241
|
+
*
|
|
1242
|
+
* @type {string}
|
|
1243
|
+
* @memberof ContactUpdate
|
|
1244
|
+
*/
|
|
1245
|
+
'primaryPhone'?: string | null;
|
|
1246
|
+
/**
|
|
1247
|
+
*
|
|
1248
|
+
* @type {BaseAddress}
|
|
1249
|
+
* @memberof ContactUpdate
|
|
1250
|
+
*/
|
|
1251
|
+
'primaryAddress'?: BaseAddress | null;
|
|
1252
|
+
/**
|
|
1253
|
+
*
|
|
1254
|
+
* @type {string}
|
|
1255
|
+
* @memberof ContactUpdate
|
|
1256
|
+
*/
|
|
1257
|
+
'profilePicUrlRegular'?: string | null;
|
|
1258
|
+
/**
|
|
1259
|
+
*
|
|
1260
|
+
* @type {string}
|
|
1261
|
+
* @memberof ContactUpdate
|
|
1262
|
+
*/
|
|
1263
|
+
'profilePicUrlLarge'?: string | null;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {string}
|
|
1267
|
+
* @memberof ContactUpdate
|
|
1268
|
+
*/
|
|
1269
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
1270
|
+
/**
|
|
1271
|
+
*
|
|
1272
|
+
* @type {string}
|
|
1273
|
+
* @memberof ContactUpdate
|
|
1274
|
+
*/
|
|
1275
|
+
'smsMarketingConsentType'?: string | null;
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @type {string}
|
|
1279
|
+
* @memberof ContactUpdate
|
|
1280
|
+
*/
|
|
1281
|
+
'smsMarketingUpdatedAt'?: string | null;
|
|
1282
|
+
/**
|
|
1283
|
+
*
|
|
1284
|
+
* @type {string}
|
|
1285
|
+
* @memberof ContactUpdate
|
|
1286
|
+
*/
|
|
1287
|
+
'smsTransactionalConsentType'?: string | null;
|
|
1288
|
+
/**
|
|
1289
|
+
*
|
|
1290
|
+
* @type {string}
|
|
1291
|
+
* @memberof ContactUpdate
|
|
1292
|
+
*/
|
|
1293
|
+
'firstName'?: string | null;
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @type {string}
|
|
1297
|
+
* @memberof ContactUpdate
|
|
1298
|
+
*/
|
|
1299
|
+
'lastName'?: string | null;
|
|
1300
|
+
/**
|
|
1301
|
+
*
|
|
1302
|
+
* @type {string}
|
|
1303
|
+
* @memberof ContactUpdate
|
|
1304
|
+
*/
|
|
1305
|
+
'company'?: string | null;
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @type {Array<string>}
|
|
1309
|
+
* @memberof ContactUpdate
|
|
1310
|
+
*/
|
|
1311
|
+
'emails'?: Array<string> | null;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
* @type {Array<string>}
|
|
1315
|
+
* @memberof ContactUpdate
|
|
1316
|
+
*/
|
|
1317
|
+
'phones'?: Array<string> | null;
|
|
1318
|
+
/**
|
|
1319
|
+
*
|
|
1320
|
+
* @type {string}
|
|
1321
|
+
* @memberof ContactUpdate
|
|
1322
|
+
*/
|
|
1323
|
+
'locale'?: string | null;
|
|
1324
|
+
/**
|
|
1325
|
+
*
|
|
1326
|
+
* @type {boolean}
|
|
1327
|
+
* @memberof ContactUpdate
|
|
1328
|
+
*/
|
|
1329
|
+
'smsMarketingIsSubscribed'?: boolean | null;
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @type {boolean}
|
|
1333
|
+
* @memberof ContactUpdate
|
|
1334
|
+
*/
|
|
1335
|
+
'smsTransactionalIsSubscribed'?: boolean | null;
|
|
1336
|
+
}
|
|
1106
1337
|
/**
|
|
1107
1338
|
*
|
|
1108
1339
|
* @export
|
|
@@ -1571,10 +1802,10 @@ interface Conversation {
|
|
|
1571
1802
|
interface ConversationCreate {
|
|
1572
1803
|
/**
|
|
1573
1804
|
*
|
|
1574
|
-
* @type {
|
|
1805
|
+
* @type {Create}
|
|
1575
1806
|
* @memberof ConversationCreate
|
|
1576
1807
|
*/
|
|
1577
|
-
'conversationTypeData':
|
|
1808
|
+
'conversationTypeData': Create;
|
|
1578
1809
|
}
|
|
1579
1810
|
/**
|
|
1580
1811
|
*
|
|
@@ -1646,18 +1877,30 @@ interface Create {
|
|
|
1646
1877
|
* @type {string}
|
|
1647
1878
|
* @memberof Create
|
|
1648
1879
|
*/
|
|
1649
|
-
'
|
|
1880
|
+
'conversationType': CreateConversationTypeEnum;
|
|
1650
1881
|
/**
|
|
1651
1882
|
*
|
|
1652
|
-
* @type {
|
|
1883
|
+
* @type {Array<ToPhone>}
|
|
1653
1884
|
* @memberof Create
|
|
1654
1885
|
*/
|
|
1655
|
-
'
|
|
1886
|
+
'toPhones': Array<ToPhone>;
|
|
1887
|
+
/**
|
|
1888
|
+
*
|
|
1889
|
+
* @type {string}
|
|
1890
|
+
* @memberof Create
|
|
1891
|
+
*/
|
|
1892
|
+
'managedPhoneId'?: string | null;
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @type {string}
|
|
1896
|
+
* @memberof Create
|
|
1897
|
+
*/
|
|
1898
|
+
'providerGroupId'?: string | null;
|
|
1656
1899
|
}
|
|
1657
|
-
declare const
|
|
1658
|
-
readonly
|
|
1900
|
+
declare const CreateConversationTypeEnum: {
|
|
1901
|
+
readonly Text: "TEXT";
|
|
1659
1902
|
};
|
|
1660
|
-
type
|
|
1903
|
+
type CreateConversationTypeEnum = typeof CreateConversationTypeEnum[keyof typeof CreateConversationTypeEnum];
|
|
1661
1904
|
/**
|
|
1662
1905
|
*
|
|
1663
1906
|
* @export
|
|
@@ -1799,25 +2042,6 @@ declare const EmailInboxInboxTypeEnum: {
|
|
|
1799
2042
|
readonly Email: "EMAIL";
|
|
1800
2043
|
};
|
|
1801
2044
|
type EmailInboxInboxTypeEnum = typeof EmailInboxInboxTypeEnum[keyof typeof EmailInboxInboxTypeEnum];
|
|
1802
|
-
/**
|
|
1803
|
-
*
|
|
1804
|
-
* @export
|
|
1805
|
-
* @interface EmailProviderEmailsProviderAttribution
|
|
1806
|
-
*/
|
|
1807
|
-
interface EmailProviderEmailsProviderAttribution {
|
|
1808
|
-
/**
|
|
1809
|
-
*
|
|
1810
|
-
* @type {string}
|
|
1811
|
-
* @memberof EmailProviderEmailsProviderAttribution
|
|
1812
|
-
*/
|
|
1813
|
-
'providerId': string;
|
|
1814
|
-
/**
|
|
1815
|
-
*
|
|
1816
|
-
* @type {Array<ReservationChannelTypes>}
|
|
1817
|
-
* @memberof EmailProviderEmailsProviderAttribution
|
|
1818
|
-
*/
|
|
1819
|
-
'channels': Array<ReservationChannelTypes>;
|
|
1820
|
-
}
|
|
1821
2045
|
/**
|
|
1822
2046
|
*
|
|
1823
2047
|
* @export
|
|
@@ -2388,10 +2612,10 @@ interface Listing {
|
|
|
2388
2612
|
'accommodates'?: number | null;
|
|
2389
2613
|
/**
|
|
2390
2614
|
*
|
|
2391
|
-
* @type {
|
|
2615
|
+
* @type {Address}
|
|
2392
2616
|
* @memberof Listing
|
|
2393
2617
|
*/
|
|
2394
|
-
'address'?:
|
|
2618
|
+
'address'?: Address | null;
|
|
2395
2619
|
/**
|
|
2396
2620
|
*
|
|
2397
2621
|
* @type {Array<string>}
|
|
@@ -2453,61 +2677,6 @@ interface Listing {
|
|
|
2453
2677
|
*/
|
|
2454
2678
|
'providerAccountId': string;
|
|
2455
2679
|
}
|
|
2456
|
-
/**
|
|
2457
|
-
*
|
|
2458
|
-
* @export
|
|
2459
|
-
* @interface ListingBaseAddress
|
|
2460
|
-
*/
|
|
2461
|
-
interface ListingBaseAddress {
|
|
2462
|
-
/**
|
|
2463
|
-
*
|
|
2464
|
-
* @type {string}
|
|
2465
|
-
* @memberof ListingBaseAddress
|
|
2466
|
-
*/
|
|
2467
|
-
'street1'?: string | null;
|
|
2468
|
-
/**
|
|
2469
|
-
*
|
|
2470
|
-
* @type {string}
|
|
2471
|
-
* @memberof ListingBaseAddress
|
|
2472
|
-
*/
|
|
2473
|
-
'street2'?: string | null;
|
|
2474
|
-
/**
|
|
2475
|
-
*
|
|
2476
|
-
* @type {string}
|
|
2477
|
-
* @memberof ListingBaseAddress
|
|
2478
|
-
*/
|
|
2479
|
-
'locality'?: string | null;
|
|
2480
|
-
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {string}
|
|
2483
|
-
* @memberof ListingBaseAddress
|
|
2484
|
-
*/
|
|
2485
|
-
'region'?: string | null;
|
|
2486
|
-
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @type {string}
|
|
2489
|
-
* @memberof ListingBaseAddress
|
|
2490
|
-
*/
|
|
2491
|
-
'country'?: string | null;
|
|
2492
|
-
/**
|
|
2493
|
-
*
|
|
2494
|
-
* @type {string}
|
|
2495
|
-
* @memberof ListingBaseAddress
|
|
2496
|
-
*/
|
|
2497
|
-
'postalCode'?: string | null;
|
|
2498
|
-
/**
|
|
2499
|
-
*
|
|
2500
|
-
* @type {number}
|
|
2501
|
-
* @memberof ListingBaseAddress
|
|
2502
|
-
*/
|
|
2503
|
-
'latitude'?: number | null;
|
|
2504
|
-
/**
|
|
2505
|
-
*
|
|
2506
|
-
* @type {number}
|
|
2507
|
-
* @memberof ListingBaseAddress
|
|
2508
|
-
*/
|
|
2509
|
-
'longitude'?: number | null;
|
|
2510
|
-
}
|
|
2511
2680
|
/**
|
|
2512
2681
|
* A versioned snapshot of a listing.
|
|
2513
2682
|
* @export
|
|
@@ -2546,10 +2715,10 @@ interface ListingVersion {
|
|
|
2546
2715
|
'accommodates'?: number | null;
|
|
2547
2716
|
/**
|
|
2548
2717
|
*
|
|
2549
|
-
* @type {
|
|
2718
|
+
* @type {Address}
|
|
2550
2719
|
* @memberof ListingVersion
|
|
2551
2720
|
*/
|
|
2552
|
-
'address'?:
|
|
2721
|
+
'address'?: Address | null;
|
|
2553
2722
|
/**
|
|
2554
2723
|
*
|
|
2555
2724
|
* @type {Array<string>}
|
|
@@ -2906,7 +3075,7 @@ type Messagetypedata1 = {
|
|
|
2906
3075
|
messageType: 'EMAIL';
|
|
2907
3076
|
} & EmailProviderMessageCreate | {
|
|
2908
3077
|
messageType: 'RENTAL_PROVIDER';
|
|
2909
|
-
} &
|
|
3078
|
+
} & RentalProviderMessageCreate | {
|
|
2910
3079
|
messageType: 'TEXT';
|
|
2911
3080
|
} & SMSMessageCreate;
|
|
2912
3081
|
/**
|
|
@@ -3468,6 +3637,25 @@ declare const PhoneLifecycle: {
|
|
|
3468
3637
|
readonly Released: "RELEASED";
|
|
3469
3638
|
};
|
|
3470
3639
|
type PhoneLifecycle = typeof PhoneLifecycle[keyof typeof PhoneLifecycle];
|
|
3640
|
+
/**
|
|
3641
|
+
*
|
|
3642
|
+
* @export
|
|
3643
|
+
* @interface PhoneProviderPhonesProviderAttribution
|
|
3644
|
+
*/
|
|
3645
|
+
interface PhoneProviderPhonesProviderAttribution {
|
|
3646
|
+
/**
|
|
3647
|
+
*
|
|
3648
|
+
* @type {string}
|
|
3649
|
+
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3650
|
+
*/
|
|
3651
|
+
'providerId': string;
|
|
3652
|
+
/**
|
|
3653
|
+
*
|
|
3654
|
+
* @type {Array<ReservationChannelTypes>}
|
|
3655
|
+
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3656
|
+
*/
|
|
3657
|
+
'channels': Array<ReservationChannelTypes>;
|
|
3658
|
+
}
|
|
3471
3659
|
/**
|
|
3472
3660
|
*
|
|
3473
3661
|
* @export
|
|
@@ -3789,10 +3977,10 @@ interface ProviderEmails {
|
|
|
3789
3977
|
'email': string;
|
|
3790
3978
|
/**
|
|
3791
3979
|
* A list of providers with IDs
|
|
3792
|
-
* @type {Array<
|
|
3980
|
+
* @type {Array<ProviderAttribution>}
|
|
3793
3981
|
* @memberof ProviderEmails
|
|
3794
3982
|
*/
|
|
3795
|
-
'providers': Array<
|
|
3983
|
+
'providers': Array<ProviderAttribution>;
|
|
3796
3984
|
}
|
|
3797
3985
|
/**
|
|
3798
3986
|
*
|
|
@@ -3839,10 +4027,10 @@ interface ProviderPhones {
|
|
|
3839
4027
|
'phone': string;
|
|
3840
4028
|
/**
|
|
3841
4029
|
* A list of providers with IDs
|
|
3842
|
-
* @type {Array<
|
|
4030
|
+
* @type {Array<PhoneProviderPhonesProviderAttribution>}
|
|
3843
4031
|
* @memberof ProviderPhones
|
|
3844
4032
|
*/
|
|
3845
|
-
'providers': Array<
|
|
4033
|
+
'providers': Array<PhoneProviderPhonesProviderAttribution>;
|
|
3846
4034
|
}
|
|
3847
4035
|
/**
|
|
3848
4036
|
*
|
|
@@ -3873,49 +4061,6 @@ declare const ProviderStaffStaffTypeEnum: {
|
|
|
3873
4061
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
3874
4062
|
};
|
|
3875
4063
|
type ProviderStaffStaffTypeEnum = typeof ProviderStaffStaffTypeEnum[keyof typeof ProviderStaffStaffTypeEnum];
|
|
3876
|
-
/**
|
|
3877
|
-
*
|
|
3878
|
-
* @export
|
|
3879
|
-
* @interface ProviderUpdate
|
|
3880
|
-
*/
|
|
3881
|
-
interface ProviderUpdate {
|
|
3882
|
-
/**
|
|
3883
|
-
*
|
|
3884
|
-
* @type {string}
|
|
3885
|
-
* @memberof ProviderUpdate
|
|
3886
|
-
*/
|
|
3887
|
-
'providerApiLogin'?: string | null;
|
|
3888
|
-
/**
|
|
3889
|
-
*
|
|
3890
|
-
* @type {string}
|
|
3891
|
-
* @memberof ProviderUpdate
|
|
3892
|
-
*/
|
|
3893
|
-
'providerApiKey'?: string | null;
|
|
3894
|
-
/**
|
|
3895
|
-
*
|
|
3896
|
-
* @type {string}
|
|
3897
|
-
* @memberof ProviderUpdate
|
|
3898
|
-
*/
|
|
3899
|
-
'webhookLogin'?: string | null;
|
|
3900
|
-
/**
|
|
3901
|
-
*
|
|
3902
|
-
* @type {string}
|
|
3903
|
-
* @memberof ProviderUpdate
|
|
3904
|
-
*/
|
|
3905
|
-
'webhookPassword'?: string | null;
|
|
3906
|
-
/**
|
|
3907
|
-
*
|
|
3908
|
-
* @type {string}
|
|
3909
|
-
* @memberof ProviderUpdate
|
|
3910
|
-
*/
|
|
3911
|
-
'testAttr'?: string | null;
|
|
3912
|
-
/**
|
|
3913
|
-
*
|
|
3914
|
-
* @type {string}
|
|
3915
|
-
* @memberof ProviderUpdate
|
|
3916
|
-
*/
|
|
3917
|
-
'name'?: string | null;
|
|
3918
|
-
}
|
|
3919
4064
|
/**
|
|
3920
4065
|
*
|
|
3921
4066
|
* @export
|
|
@@ -4026,6 +4171,29 @@ declare const RentalProviderMessageCommunicationType: {
|
|
|
4026
4171
|
readonly Note: "NOTE";
|
|
4027
4172
|
};
|
|
4028
4173
|
type RentalProviderMessageCommunicationType = typeof RentalProviderMessageCommunicationType[keyof typeof RentalProviderMessageCommunicationType];
|
|
4174
|
+
/**
|
|
4175
|
+
*
|
|
4176
|
+
* @export
|
|
4177
|
+
* @interface RentalProviderMessageCreate
|
|
4178
|
+
*/
|
|
4179
|
+
interface RentalProviderMessageCreate {
|
|
4180
|
+
/**
|
|
4181
|
+
*
|
|
4182
|
+
* @type {string}
|
|
4183
|
+
* @memberof RentalProviderMessageCreate
|
|
4184
|
+
*/
|
|
4185
|
+
'messageType': RentalProviderMessageCreateMessageTypeEnum;
|
|
4186
|
+
/**
|
|
4187
|
+
*
|
|
4188
|
+
* @type {RentalProviderMessageCommunicationType}
|
|
4189
|
+
* @memberof RentalProviderMessageCreate
|
|
4190
|
+
*/
|
|
4191
|
+
'communicationType': RentalProviderMessageCommunicationType;
|
|
4192
|
+
}
|
|
4193
|
+
declare const RentalProviderMessageCreateMessageTypeEnum: {
|
|
4194
|
+
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
4195
|
+
};
|
|
4196
|
+
type RentalProviderMessageCreateMessageTypeEnum = typeof RentalProviderMessageCreateMessageTypeEnum[keyof typeof RentalProviderMessageCreateMessageTypeEnum];
|
|
4029
4197
|
/**
|
|
4030
4198
|
*
|
|
4031
4199
|
* @export
|
|
@@ -4289,41 +4457,6 @@ declare const SMSConversationDataConversationTypeEnum: {
|
|
|
4289
4457
|
readonly Text: "TEXT";
|
|
4290
4458
|
};
|
|
4291
4459
|
type SMSConversationDataConversationTypeEnum = typeof SMSConversationDataConversationTypeEnum[keyof typeof SMSConversationDataConversationTypeEnum];
|
|
4292
|
-
/**
|
|
4293
|
-
*
|
|
4294
|
-
* @export
|
|
4295
|
-
* @interface SMSConversationDataCreate
|
|
4296
|
-
*/
|
|
4297
|
-
interface SMSConversationDataCreate {
|
|
4298
|
-
/**
|
|
4299
|
-
*
|
|
4300
|
-
* @type {string}
|
|
4301
|
-
* @memberof SMSConversationDataCreate
|
|
4302
|
-
*/
|
|
4303
|
-
'conversationType': SMSConversationDataCreateConversationTypeEnum;
|
|
4304
|
-
/**
|
|
4305
|
-
*
|
|
4306
|
-
* @type {Array<ToPhone>}
|
|
4307
|
-
* @memberof SMSConversationDataCreate
|
|
4308
|
-
*/
|
|
4309
|
-
'toPhones': Array<ToPhone>;
|
|
4310
|
-
/**
|
|
4311
|
-
*
|
|
4312
|
-
* @type {string}
|
|
4313
|
-
* @memberof SMSConversationDataCreate
|
|
4314
|
-
*/
|
|
4315
|
-
'managedPhoneId'?: string | null;
|
|
4316
|
-
/**
|
|
4317
|
-
*
|
|
4318
|
-
* @type {string}
|
|
4319
|
-
* @memberof SMSConversationDataCreate
|
|
4320
|
-
*/
|
|
4321
|
-
'providerGroupId'?: string | null;
|
|
4322
|
-
}
|
|
4323
|
-
declare const SMSConversationDataCreateConversationTypeEnum: {
|
|
4324
|
-
readonly Text: "TEXT";
|
|
4325
|
-
};
|
|
4326
|
-
type SMSConversationDataCreateConversationTypeEnum = typeof SMSConversationDataCreateConversationTypeEnum[keyof typeof SMSConversationDataCreateConversationTypeEnum];
|
|
4327
4460
|
/**
|
|
4328
4461
|
*
|
|
4329
4462
|
* @export
|
|
@@ -4747,7 +4880,7 @@ declare const URLContentContentTypeEnum: {
|
|
|
4747
4880
|
};
|
|
4748
4881
|
type URLContentContentTypeEnum = typeof URLContentContentTypeEnum[keyof typeof URLContentContentTypeEnum];
|
|
4749
4882
|
/**
|
|
4750
|
-
*
|
|
4883
|
+
*
|
|
4751
4884
|
* @export
|
|
4752
4885
|
* @interface Update
|
|
4753
4886
|
*/
|
|
@@ -4757,109 +4890,37 @@ interface Update {
|
|
|
4757
4890
|
* @type {string}
|
|
4758
4891
|
* @memberof Update
|
|
4759
4892
|
*/
|
|
4760
|
-
'
|
|
4761
|
-
/**
|
|
4762
|
-
*
|
|
4763
|
-
* @type {string}
|
|
4764
|
-
* @memberof Update
|
|
4765
|
-
*/
|
|
4766
|
-
'primaryEmail'?: string | null;
|
|
4767
|
-
/**
|
|
4768
|
-
*
|
|
4769
|
-
* @type {string}
|
|
4770
|
-
* @memberof Update
|
|
4771
|
-
*/
|
|
4772
|
-
'primaryPhone'?: string | null;
|
|
4773
|
-
/**
|
|
4774
|
-
*
|
|
4775
|
-
* @type {BaseAddress}
|
|
4776
|
-
* @memberof Update
|
|
4777
|
-
*/
|
|
4778
|
-
'primaryAddress'?: BaseAddress | null;
|
|
4779
|
-
/**
|
|
4780
|
-
*
|
|
4781
|
-
* @type {string}
|
|
4782
|
-
* @memberof Update
|
|
4783
|
-
*/
|
|
4784
|
-
'profilePicUrlRegular'?: string | null;
|
|
4785
|
-
/**
|
|
4786
|
-
*
|
|
4787
|
-
* @type {string}
|
|
4788
|
-
* @memberof Update
|
|
4789
|
-
*/
|
|
4790
|
-
'profilePicUrlLarge'?: string | null;
|
|
4791
|
-
/**
|
|
4792
|
-
*
|
|
4793
|
-
* @type {string}
|
|
4794
|
-
* @memberof Update
|
|
4795
|
-
*/
|
|
4796
|
-
'profilePicUrlThumbnail'?: string | null;
|
|
4797
|
-
/**
|
|
4798
|
-
*
|
|
4799
|
-
* @type {string}
|
|
4800
|
-
* @memberof Update
|
|
4801
|
-
*/
|
|
4802
|
-
'smsMarketingConsentType'?: string | null;
|
|
4803
|
-
/**
|
|
4804
|
-
*
|
|
4805
|
-
* @type {string}
|
|
4806
|
-
* @memberof Update
|
|
4807
|
-
*/
|
|
4808
|
-
'smsMarketingUpdatedAt'?: string | null;
|
|
4893
|
+
'providerApiLogin'?: string | null;
|
|
4809
4894
|
/**
|
|
4810
4895
|
*
|
|
4811
4896
|
* @type {string}
|
|
4812
4897
|
* @memberof Update
|
|
4813
4898
|
*/
|
|
4814
|
-
'
|
|
4899
|
+
'providerApiKey'?: string | null;
|
|
4815
4900
|
/**
|
|
4816
4901
|
*
|
|
4817
4902
|
* @type {string}
|
|
4818
4903
|
* @memberof Update
|
|
4819
4904
|
*/
|
|
4820
|
-
'
|
|
4905
|
+
'webhookLogin'?: string | null;
|
|
4821
4906
|
/**
|
|
4822
4907
|
*
|
|
4823
4908
|
* @type {string}
|
|
4824
4909
|
* @memberof Update
|
|
4825
4910
|
*/
|
|
4826
|
-
'
|
|
4911
|
+
'webhookPassword'?: string | null;
|
|
4827
4912
|
/**
|
|
4828
4913
|
*
|
|
4829
4914
|
* @type {string}
|
|
4830
4915
|
* @memberof Update
|
|
4831
4916
|
*/
|
|
4832
|
-
'
|
|
4833
|
-
/**
|
|
4834
|
-
*
|
|
4835
|
-
* @type {Array<string>}
|
|
4836
|
-
* @memberof Update
|
|
4837
|
-
*/
|
|
4838
|
-
'emails'?: Array<string> | null;
|
|
4839
|
-
/**
|
|
4840
|
-
*
|
|
4841
|
-
* @type {Array<string>}
|
|
4842
|
-
* @memberof Update
|
|
4843
|
-
*/
|
|
4844
|
-
'phones'?: Array<string> | null;
|
|
4917
|
+
'testAttr'?: string | null;
|
|
4845
4918
|
/**
|
|
4846
4919
|
*
|
|
4847
4920
|
* @type {string}
|
|
4848
4921
|
* @memberof Update
|
|
4849
4922
|
*/
|
|
4850
|
-
'
|
|
4851
|
-
/**
|
|
4852
|
-
*
|
|
4853
|
-
* @type {boolean}
|
|
4854
|
-
* @memberof Update
|
|
4855
|
-
*/
|
|
4856
|
-
'smsMarketingIsSubscribed'?: boolean | null;
|
|
4857
|
-
/**
|
|
4858
|
-
*
|
|
4859
|
-
* @type {boolean}
|
|
4860
|
-
* @memberof Update
|
|
4861
|
-
*/
|
|
4862
|
-
'smsTransactionalIsSubscribed'?: boolean | null;
|
|
4923
|
+
'name'?: string | null;
|
|
4863
4924
|
}
|
|
4864
4925
|
/**
|
|
4865
4926
|
*
|
|
@@ -5367,11 +5428,11 @@ declare const CommunitiesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5367
5428
|
/**
|
|
5368
5429
|
*
|
|
5369
5430
|
* @summary Communities Create
|
|
5370
|
-
* @param {
|
|
5431
|
+
* @param {CommunityCreate} communityCreate
|
|
5371
5432
|
* @param {*} [options] Override http request option.
|
|
5372
5433
|
* @throws {RequiredError}
|
|
5373
5434
|
*/
|
|
5374
|
-
communitiesCreate: (
|
|
5435
|
+
communitiesCreate: (communityCreate: CommunityCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5375
5436
|
/**
|
|
5376
5437
|
*
|
|
5377
5438
|
* @summary Communities Delete
|
|
@@ -5404,11 +5465,11 @@ declare const CommunitiesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5404
5465
|
*
|
|
5405
5466
|
* @summary Communities Update
|
|
5406
5467
|
* @param {string} communityId
|
|
5407
|
-
* @param {
|
|
5468
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5408
5469
|
* @param {*} [options] Override http request option.
|
|
5409
5470
|
* @throws {RequiredError}
|
|
5410
5471
|
*/
|
|
5411
|
-
communitiesUpdate: (communityId: string,
|
|
5472
|
+
communitiesUpdate: (communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5412
5473
|
};
|
|
5413
5474
|
/**
|
|
5414
5475
|
* CommunitiesApi - functional programming interface
|
|
@@ -5418,11 +5479,11 @@ declare const CommunitiesApiFp: (configuration?: Configuration) => {
|
|
|
5418
5479
|
/**
|
|
5419
5480
|
*
|
|
5420
5481
|
* @summary Communities Create
|
|
5421
|
-
* @param {
|
|
5482
|
+
* @param {CommunityCreate} communityCreate
|
|
5422
5483
|
* @param {*} [options] Override http request option.
|
|
5423
5484
|
* @throws {RequiredError}
|
|
5424
5485
|
*/
|
|
5425
|
-
communitiesCreate(
|
|
5486
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
5426
5487
|
/**
|
|
5427
5488
|
*
|
|
5428
5489
|
* @summary Communities Delete
|
|
@@ -5455,11 +5516,11 @@ declare const CommunitiesApiFp: (configuration?: Configuration) => {
|
|
|
5455
5516
|
*
|
|
5456
5517
|
* @summary Communities Update
|
|
5457
5518
|
* @param {string} communityId
|
|
5458
|
-
* @param {
|
|
5519
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5459
5520
|
* @param {*} [options] Override http request option.
|
|
5460
5521
|
* @throws {RequiredError}
|
|
5461
5522
|
*/
|
|
5462
|
-
communitiesUpdate(communityId: string,
|
|
5523
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
5463
5524
|
};
|
|
5464
5525
|
/**
|
|
5465
5526
|
* CommunitiesApi - factory interface
|
|
@@ -5469,11 +5530,11 @@ declare const CommunitiesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5469
5530
|
/**
|
|
5470
5531
|
*
|
|
5471
5532
|
* @summary Communities Create
|
|
5472
|
-
* @param {
|
|
5533
|
+
* @param {CommunityCreate} communityCreate
|
|
5473
5534
|
* @param {*} [options] Override http request option.
|
|
5474
5535
|
* @throws {RequiredError}
|
|
5475
5536
|
*/
|
|
5476
|
-
communitiesCreate(
|
|
5537
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
5477
5538
|
/**
|
|
5478
5539
|
*
|
|
5479
5540
|
* @summary Communities Delete
|
|
@@ -5506,11 +5567,11 @@ declare const CommunitiesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5506
5567
|
*
|
|
5507
5568
|
* @summary Communities Update
|
|
5508
5569
|
* @param {string} communityId
|
|
5509
|
-
* @param {
|
|
5570
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5510
5571
|
* @param {*} [options] Override http request option.
|
|
5511
5572
|
* @throws {RequiredError}
|
|
5512
5573
|
*/
|
|
5513
|
-
communitiesUpdate(communityId: string,
|
|
5574
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
5514
5575
|
};
|
|
5515
5576
|
/**
|
|
5516
5577
|
* CommunitiesApi - object-oriented interface
|
|
@@ -5522,12 +5583,12 @@ declare class CommunitiesApi extends BaseAPI {
|
|
|
5522
5583
|
/**
|
|
5523
5584
|
*
|
|
5524
5585
|
* @summary Communities Create
|
|
5525
|
-
* @param {
|
|
5586
|
+
* @param {CommunityCreate} communityCreate
|
|
5526
5587
|
* @param {*} [options] Override http request option.
|
|
5527
5588
|
* @throws {RequiredError}
|
|
5528
5589
|
* @memberof CommunitiesApi
|
|
5529
5590
|
*/
|
|
5530
|
-
communitiesCreate(
|
|
5591
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
5531
5592
|
/**
|
|
5532
5593
|
*
|
|
5533
5594
|
* @summary Communities Delete
|
|
@@ -5563,12 +5624,12 @@ declare class CommunitiesApi extends BaseAPI {
|
|
|
5563
5624
|
*
|
|
5564
5625
|
* @summary Communities Update
|
|
5565
5626
|
* @param {string} communityId
|
|
5566
|
-
* @param {
|
|
5627
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5567
5628
|
* @param {*} [options] Override http request option.
|
|
5568
5629
|
* @throws {RequiredError}
|
|
5569
5630
|
* @memberof CommunitiesApi
|
|
5570
5631
|
*/
|
|
5571
|
-
communitiesUpdate(communityId: string,
|
|
5632
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
5572
5633
|
}
|
|
5573
5634
|
/**
|
|
5574
5635
|
* CommunityTypesApi - axios parameter creator
|
|
@@ -5775,11 +5836,11 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5775
5836
|
*
|
|
5776
5837
|
* @summary Contacts Update
|
|
5777
5838
|
* @param {string} contactId
|
|
5778
|
-
* @param {
|
|
5839
|
+
* @param {ContactUpdate} contactUpdate
|
|
5779
5840
|
* @param {*} [options] Override http request option.
|
|
5780
5841
|
* @throws {RequiredError}
|
|
5781
5842
|
*/
|
|
5782
|
-
contactsUpdate: (contactId: string,
|
|
5843
|
+
contactsUpdate: (contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5783
5844
|
/**
|
|
5784
5845
|
*
|
|
5785
5846
|
* @summary Emails Create
|
|
@@ -5929,11 +5990,11 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
5929
5990
|
*
|
|
5930
5991
|
* @summary Contacts Update
|
|
5931
5992
|
* @param {string} contactId
|
|
5932
|
-
* @param {
|
|
5993
|
+
* @param {ContactUpdate} contactUpdate
|
|
5933
5994
|
* @param {*} [options] Override http request option.
|
|
5934
5995
|
* @throws {RequiredError}
|
|
5935
5996
|
*/
|
|
5936
|
-
contactsUpdate(contactId: string,
|
|
5997
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Contact>>;
|
|
5937
5998
|
/**
|
|
5938
5999
|
*
|
|
5939
6000
|
* @summary Emails Create
|
|
@@ -6083,11 +6144,11 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
6083
6144
|
*
|
|
6084
6145
|
* @summary Contacts Update
|
|
6085
6146
|
* @param {string} contactId
|
|
6086
|
-
* @param {
|
|
6147
|
+
* @param {ContactUpdate} contactUpdate
|
|
6087
6148
|
* @param {*} [options] Override http request option.
|
|
6088
6149
|
* @throws {RequiredError}
|
|
6089
6150
|
*/
|
|
6090
|
-
contactsUpdate(contactId: string,
|
|
6151
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Contact>;
|
|
6091
6152
|
/**
|
|
6092
6153
|
*
|
|
6093
6154
|
* @summary Emails Create
|
|
@@ -6247,12 +6308,12 @@ declare class ContactsApi extends BaseAPI {
|
|
|
6247
6308
|
*
|
|
6248
6309
|
* @summary Contacts Update
|
|
6249
6310
|
* @param {string} contactId
|
|
6250
|
-
* @param {
|
|
6311
|
+
* @param {ContactUpdate} contactUpdate
|
|
6251
6312
|
* @param {*} [options] Override http request option.
|
|
6252
6313
|
* @throws {RequiredError}
|
|
6253
6314
|
* @memberof ContactsApi
|
|
6254
6315
|
*/
|
|
6255
|
-
contactsUpdate(contactId: string,
|
|
6316
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Contact, any>>;
|
|
6256
6317
|
/**
|
|
6257
6318
|
*
|
|
6258
6319
|
* @summary Emails Create
|
|
@@ -7859,11 +7920,11 @@ declare const ProvidersApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7859
7920
|
*
|
|
7860
7921
|
* @summary Providers Update
|
|
7861
7922
|
* @param {string} providerId
|
|
7862
|
-
* @param {
|
|
7923
|
+
* @param {Update} update
|
|
7863
7924
|
* @param {*} [options] Override http request option.
|
|
7864
7925
|
* @throws {RequiredError}
|
|
7865
7926
|
*/
|
|
7866
|
-
providersUpdate: (providerId: string,
|
|
7927
|
+
providersUpdate: (providerId: string, update: Update, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7867
7928
|
};
|
|
7868
7929
|
/**
|
|
7869
7930
|
* ProvidersApi - functional programming interface
|
|
@@ -7897,11 +7958,11 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
|
7897
7958
|
*
|
|
7898
7959
|
* @summary Providers Update
|
|
7899
7960
|
* @param {string} providerId
|
|
7900
|
-
* @param {
|
|
7961
|
+
* @param {Update} update
|
|
7901
7962
|
* @param {*} [options] Override http request option.
|
|
7902
7963
|
* @throws {RequiredError}
|
|
7903
7964
|
*/
|
|
7904
|
-
providersUpdate(providerId: string,
|
|
7965
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provider>>;
|
|
7905
7966
|
};
|
|
7906
7967
|
/**
|
|
7907
7968
|
* ProvidersApi - factory interface
|
|
@@ -7935,11 +7996,11 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
7935
7996
|
*
|
|
7936
7997
|
* @summary Providers Update
|
|
7937
7998
|
* @param {string} providerId
|
|
7938
|
-
* @param {
|
|
7999
|
+
* @param {Update} update
|
|
7939
8000
|
* @param {*} [options] Override http request option.
|
|
7940
8001
|
* @throws {RequiredError}
|
|
7941
8002
|
*/
|
|
7942
|
-
providersUpdate(providerId: string,
|
|
8003
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): AxiosPromise<Provider>;
|
|
7943
8004
|
};
|
|
7944
8005
|
/**
|
|
7945
8006
|
* ProvidersApi - object-oriented interface
|
|
@@ -7978,12 +8039,12 @@ declare class ProvidersApi extends BaseAPI {
|
|
|
7978
8039
|
*
|
|
7979
8040
|
* @summary Providers Update
|
|
7980
8041
|
* @param {string} providerId
|
|
7981
|
-
* @param {
|
|
8042
|
+
* @param {Update} update
|
|
7982
8043
|
* @param {*} [options] Override http request option.
|
|
7983
8044
|
* @throws {RequiredError}
|
|
7984
8045
|
* @memberof ProvidersApi
|
|
7985
8046
|
*/
|
|
7986
|
-
providersUpdate(providerId: string,
|
|
8047
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Provider, any>>;
|
|
7987
8048
|
}
|
|
7988
8049
|
/**
|
|
7989
8050
|
* ReservationsApi - axios parameter creator
|
|
@@ -8543,11 +8604,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8543
8604
|
/**
|
|
8544
8605
|
*
|
|
8545
8606
|
* @summary Communities Create
|
|
8546
|
-
* @param {
|
|
8607
|
+
* @param {CommunityCreate} communityCreate
|
|
8547
8608
|
* @param {*} [options] Override http request option.
|
|
8548
8609
|
* @throws {RequiredError}
|
|
8549
8610
|
*/
|
|
8550
|
-
communitiesCreate: (
|
|
8611
|
+
communitiesCreate: (communityCreate: CommunityCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8551
8612
|
/**
|
|
8552
8613
|
*
|
|
8553
8614
|
* @summary Communities Delete
|
|
@@ -8580,11 +8641,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8580
8641
|
*
|
|
8581
8642
|
* @summary Communities Update
|
|
8582
8643
|
* @param {string} communityId
|
|
8583
|
-
* @param {
|
|
8644
|
+
* @param {CommunityUpdate} communityUpdate
|
|
8584
8645
|
* @param {*} [options] Override http request option.
|
|
8585
8646
|
* @throws {RequiredError}
|
|
8586
8647
|
*/
|
|
8587
|
-
communitiesUpdate: (communityId: string,
|
|
8648
|
+
communitiesUpdate: (communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8588
8649
|
/**
|
|
8589
8650
|
*
|
|
8590
8651
|
* @summary Community Types Create
|
|
@@ -8668,11 +8729,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8668
8729
|
*
|
|
8669
8730
|
* @summary Contacts Update
|
|
8670
8731
|
* @param {string} contactId
|
|
8671
|
-
* @param {
|
|
8732
|
+
* @param {ContactUpdate} contactUpdate
|
|
8672
8733
|
* @param {*} [options] Override http request option.
|
|
8673
8734
|
* @throws {RequiredError}
|
|
8674
8735
|
*/
|
|
8675
|
-
contactsUpdate: (contactId: string,
|
|
8736
|
+
contactsUpdate: (contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8676
8737
|
/**
|
|
8677
8738
|
*
|
|
8678
8739
|
* @summary Contact Listing Update
|
|
@@ -9044,11 +9105,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9044
9105
|
*
|
|
9045
9106
|
* @summary Providers Update
|
|
9046
9107
|
* @param {string} providerId
|
|
9047
|
-
* @param {
|
|
9108
|
+
* @param {Update} update
|
|
9048
9109
|
* @param {*} [options] Override http request option.
|
|
9049
9110
|
* @throws {RequiredError}
|
|
9050
9111
|
*/
|
|
9051
|
-
providersUpdate: (providerId: string,
|
|
9112
|
+
providersUpdate: (providerId: string, update: Update, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9052
9113
|
/**
|
|
9053
9114
|
*
|
|
9054
9115
|
* @summary Reservation Versions Get
|
|
@@ -9224,11 +9285,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9224
9285
|
/**
|
|
9225
9286
|
*
|
|
9226
9287
|
* @summary Communities Create
|
|
9227
|
-
* @param {
|
|
9288
|
+
* @param {CommunityCreate} communityCreate
|
|
9228
9289
|
* @param {*} [options] Override http request option.
|
|
9229
9290
|
* @throws {RequiredError}
|
|
9230
9291
|
*/
|
|
9231
|
-
communitiesCreate(
|
|
9292
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
9232
9293
|
/**
|
|
9233
9294
|
*
|
|
9234
9295
|
* @summary Communities Delete
|
|
@@ -9261,11 +9322,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9261
9322
|
*
|
|
9262
9323
|
* @summary Communities Update
|
|
9263
9324
|
* @param {string} communityId
|
|
9264
|
-
* @param {
|
|
9325
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9265
9326
|
* @param {*} [options] Override http request option.
|
|
9266
9327
|
* @throws {RequiredError}
|
|
9267
9328
|
*/
|
|
9268
|
-
communitiesUpdate(communityId: string,
|
|
9329
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
9269
9330
|
/**
|
|
9270
9331
|
*
|
|
9271
9332
|
* @summary Community Types Create
|
|
@@ -9349,11 +9410,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9349
9410
|
*
|
|
9350
9411
|
* @summary Contacts Update
|
|
9351
9412
|
* @param {string} contactId
|
|
9352
|
-
* @param {
|
|
9413
|
+
* @param {ContactUpdate} contactUpdate
|
|
9353
9414
|
* @param {*} [options] Override http request option.
|
|
9354
9415
|
* @throws {RequiredError}
|
|
9355
9416
|
*/
|
|
9356
|
-
contactsUpdate(contactId: string,
|
|
9417
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Contact>>;
|
|
9357
9418
|
/**
|
|
9358
9419
|
*
|
|
9359
9420
|
* @summary Contact Listing Update
|
|
@@ -9725,11 +9786,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9725
9786
|
*
|
|
9726
9787
|
* @summary Providers Update
|
|
9727
9788
|
* @param {string} providerId
|
|
9728
|
-
* @param {
|
|
9789
|
+
* @param {Update} update
|
|
9729
9790
|
* @param {*} [options] Override http request option.
|
|
9730
9791
|
* @throws {RequiredError}
|
|
9731
9792
|
*/
|
|
9732
|
-
providersUpdate(providerId: string,
|
|
9793
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provider>>;
|
|
9733
9794
|
/**
|
|
9734
9795
|
*
|
|
9735
9796
|
* @summary Reservation Versions Get
|
|
@@ -9905,11 +9966,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9905
9966
|
/**
|
|
9906
9967
|
*
|
|
9907
9968
|
* @summary Communities Create
|
|
9908
|
-
* @param {
|
|
9969
|
+
* @param {CommunityCreate} communityCreate
|
|
9909
9970
|
* @param {*} [options] Override http request option.
|
|
9910
9971
|
* @throws {RequiredError}
|
|
9911
9972
|
*/
|
|
9912
|
-
communitiesCreate(
|
|
9973
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
9913
9974
|
/**
|
|
9914
9975
|
*
|
|
9915
9976
|
* @summary Communities Delete
|
|
@@ -9942,11 +10003,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9942
10003
|
*
|
|
9943
10004
|
* @summary Communities Update
|
|
9944
10005
|
* @param {string} communityId
|
|
9945
|
-
* @param {
|
|
10006
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9946
10007
|
* @param {*} [options] Override http request option.
|
|
9947
10008
|
* @throws {RequiredError}
|
|
9948
10009
|
*/
|
|
9949
|
-
communitiesUpdate(communityId: string,
|
|
10010
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
9950
10011
|
/**
|
|
9951
10012
|
*
|
|
9952
10013
|
* @summary Community Types Create
|
|
@@ -10030,11 +10091,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10030
10091
|
*
|
|
10031
10092
|
* @summary Contacts Update
|
|
10032
10093
|
* @param {string} contactId
|
|
10033
|
-
* @param {
|
|
10094
|
+
* @param {ContactUpdate} contactUpdate
|
|
10034
10095
|
* @param {*} [options] Override http request option.
|
|
10035
10096
|
* @throws {RequiredError}
|
|
10036
10097
|
*/
|
|
10037
|
-
contactsUpdate(contactId: string,
|
|
10098
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Contact>;
|
|
10038
10099
|
/**
|
|
10039
10100
|
*
|
|
10040
10101
|
* @summary Contact Listing Update
|
|
@@ -10406,11 +10467,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10406
10467
|
*
|
|
10407
10468
|
* @summary Providers Update
|
|
10408
10469
|
* @param {string} providerId
|
|
10409
|
-
* @param {
|
|
10470
|
+
* @param {Update} update
|
|
10410
10471
|
* @param {*} [options] Override http request option.
|
|
10411
10472
|
* @throws {RequiredError}
|
|
10412
10473
|
*/
|
|
10413
|
-
providersUpdate(providerId: string,
|
|
10474
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): AxiosPromise<Provider>;
|
|
10414
10475
|
/**
|
|
10415
10476
|
*
|
|
10416
10477
|
* @summary Reservation Versions Get
|
|
@@ -10594,12 +10655,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10594
10655
|
/**
|
|
10595
10656
|
*
|
|
10596
10657
|
* @summary Communities Create
|
|
10597
|
-
* @param {
|
|
10658
|
+
* @param {CommunityCreate} communityCreate
|
|
10598
10659
|
* @param {*} [options] Override http request option.
|
|
10599
10660
|
* @throws {RequiredError}
|
|
10600
10661
|
* @memberof UnboundApi
|
|
10601
10662
|
*/
|
|
10602
|
-
communitiesCreate(
|
|
10663
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
10603
10664
|
/**
|
|
10604
10665
|
*
|
|
10605
10666
|
* @summary Communities Delete
|
|
@@ -10635,12 +10696,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10635
10696
|
*
|
|
10636
10697
|
* @summary Communities Update
|
|
10637
10698
|
* @param {string} communityId
|
|
10638
|
-
* @param {
|
|
10699
|
+
* @param {CommunityUpdate} communityUpdate
|
|
10639
10700
|
* @param {*} [options] Override http request option.
|
|
10640
10701
|
* @throws {RequiredError}
|
|
10641
10702
|
* @memberof UnboundApi
|
|
10642
10703
|
*/
|
|
10643
|
-
communitiesUpdate(communityId: string,
|
|
10704
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
10644
10705
|
/**
|
|
10645
10706
|
*
|
|
10646
10707
|
* @summary Community Types Create
|
|
@@ -10733,12 +10794,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10733
10794
|
*
|
|
10734
10795
|
* @summary Contacts Update
|
|
10735
10796
|
* @param {string} contactId
|
|
10736
|
-
* @param {
|
|
10797
|
+
* @param {ContactUpdate} contactUpdate
|
|
10737
10798
|
* @param {*} [options] Override http request option.
|
|
10738
10799
|
* @throws {RequiredError}
|
|
10739
10800
|
* @memberof UnboundApi
|
|
10740
10801
|
*/
|
|
10741
|
-
contactsUpdate(contactId: string,
|
|
10802
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Contact, any>>;
|
|
10742
10803
|
/**
|
|
10743
10804
|
*
|
|
10744
10805
|
* @summary Contact Listing Update
|
|
@@ -11150,12 +11211,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
11150
11211
|
*
|
|
11151
11212
|
* @summary Providers Update
|
|
11152
11213
|
* @param {string} providerId
|
|
11153
|
-
* @param {
|
|
11214
|
+
* @param {Update} update
|
|
11154
11215
|
* @param {*} [options] Override http request option.
|
|
11155
11216
|
* @throws {RequiredError}
|
|
11156
11217
|
* @memberof UnboundApi
|
|
11157
11218
|
*/
|
|
11158
|
-
providersUpdate(providerId: string,
|
|
11219
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Provider, any>>;
|
|
11159
11220
|
/**
|
|
11160
11221
|
*
|
|
11161
11222
|
* @summary Reservation Versions Get
|
|
@@ -11380,4 +11441,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
11380
11441
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11381
11442
|
}
|
|
11382
11443
|
|
|
11383
|
-
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing,
|
|
11444
|
+
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, 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 ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, CreateConversationTypeEnum, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type ExternalStaff, ExternalStaffStaffTypeEnum, 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, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaff, InternalStaffStaffTypeEnum, type LeadData, type ListResponseAccount, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, MessageDirection, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, type ProviderAddresses, type ProviderAttribution, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderEmails, type ProviderInfo, type ProviderPhones, type ProviderStaff, ProviderStaffStaffTypeEnum, 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, ReservationChannelTypes, ReservationStatus, type ReservationVersion, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortBy, SortOrder, type Staff, StaffParticipantTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, type URLContent, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type Update, type UpdateContactListing, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestion };
|