@ember-home/unbound-ts-client 0.0.38 → 0.0.40
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 +290 -192
- package/dist/index.d.ts +290 -192
- package/dist/index.js +527 -286
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +390 -149
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -199,6 +199,12 @@ interface APIAddress {
|
|
|
199
199
|
* @memberof APIAddress
|
|
200
200
|
*/
|
|
201
201
|
'region'?: string | null;
|
|
202
|
+
/**
|
|
203
|
+
*
|
|
204
|
+
* @type {string}
|
|
205
|
+
* @memberof APIAddress
|
|
206
|
+
*/
|
|
207
|
+
'addressId': string;
|
|
202
208
|
}
|
|
203
209
|
/**
|
|
204
210
|
*
|
|
@@ -846,12 +852,6 @@ interface APIEmailCreate {
|
|
|
846
852
|
* @memberof APIEmailCreate
|
|
847
853
|
*/
|
|
848
854
|
'email': string;
|
|
849
|
-
/**
|
|
850
|
-
*
|
|
851
|
-
* @type {boolean}
|
|
852
|
-
* @memberof APIEmailCreate
|
|
853
|
-
*/
|
|
854
|
-
'isPrimary'?: boolean;
|
|
855
855
|
}
|
|
856
856
|
/**
|
|
857
857
|
*
|
|
@@ -865,12 +865,6 @@ interface APIEmailUpdate {
|
|
|
865
865
|
* @memberof APIEmailUpdate
|
|
866
866
|
*/
|
|
867
867
|
'email': string;
|
|
868
|
-
/**
|
|
869
|
-
*
|
|
870
|
-
* @type {boolean}
|
|
871
|
-
* @memberof APIEmailUpdate
|
|
872
|
-
*/
|
|
873
|
-
'isPrimary'?: boolean | null;
|
|
874
868
|
}
|
|
875
869
|
/**
|
|
876
870
|
*
|
|
@@ -1234,45 +1228,45 @@ interface APIMessageCreate {
|
|
|
1234
1228
|
/**
|
|
1235
1229
|
*
|
|
1236
1230
|
* @export
|
|
1237
|
-
* @interface
|
|
1231
|
+
* @interface APIPhone
|
|
1238
1232
|
*/
|
|
1239
|
-
interface
|
|
1233
|
+
interface APIPhone {
|
|
1240
1234
|
/**
|
|
1241
1235
|
*
|
|
1242
1236
|
* @type {string}
|
|
1243
|
-
* @memberof
|
|
1237
|
+
* @memberof APIPhone
|
|
1244
1238
|
*/
|
|
1245
1239
|
'phoneId': string;
|
|
1246
1240
|
/**
|
|
1247
1241
|
*
|
|
1248
1242
|
* @type {string}
|
|
1249
|
-
* @memberof
|
|
1243
|
+
* @memberof APIPhone
|
|
1250
1244
|
*/
|
|
1251
1245
|
'phone': string;
|
|
1252
1246
|
}
|
|
1253
1247
|
/**
|
|
1254
1248
|
*
|
|
1255
1249
|
* @export
|
|
1256
|
-
* @interface
|
|
1250
|
+
* @interface APIPhoneCreate
|
|
1257
1251
|
*/
|
|
1258
|
-
interface
|
|
1252
|
+
interface APIPhoneCreate {
|
|
1259
1253
|
/**
|
|
1260
1254
|
*
|
|
1261
1255
|
* @type {string}
|
|
1262
|
-
* @memberof
|
|
1256
|
+
* @memberof APIPhoneCreate
|
|
1263
1257
|
*/
|
|
1264
1258
|
'phone': string;
|
|
1265
1259
|
}
|
|
1266
1260
|
/**
|
|
1267
1261
|
*
|
|
1268
1262
|
* @export
|
|
1269
|
-
* @interface
|
|
1263
|
+
* @interface APIPhoneUpdate
|
|
1270
1264
|
*/
|
|
1271
|
-
interface
|
|
1265
|
+
interface APIPhoneUpdate {
|
|
1272
1266
|
/**
|
|
1273
1267
|
*
|
|
1274
1268
|
* @type {string}
|
|
1275
|
-
* @memberof
|
|
1269
|
+
* @memberof APIPhoneUpdate
|
|
1276
1270
|
*/
|
|
1277
1271
|
'phone': string;
|
|
1278
1272
|
}
|
|
@@ -1416,13 +1410,7 @@ interface APIReservation {
|
|
|
1416
1410
|
* @type {string}
|
|
1417
1411
|
* @memberof APIReservation
|
|
1418
1412
|
*/
|
|
1419
|
-
'
|
|
1420
|
-
/**
|
|
1421
|
-
*
|
|
1422
|
-
* @type {string}
|
|
1423
|
-
* @memberof APIReservation
|
|
1424
|
-
*/
|
|
1425
|
-
'providerListingId': string;
|
|
1413
|
+
'reservationId': string;
|
|
1426
1414
|
/**
|
|
1427
1415
|
*
|
|
1428
1416
|
* @type {ReservationStatus}
|
|
@@ -1453,24 +1441,12 @@ interface APIReservation {
|
|
|
1453
1441
|
* @memberof APIReservation
|
|
1454
1442
|
*/
|
|
1455
1443
|
'totalPrice': number;
|
|
1456
|
-
/**
|
|
1457
|
-
*
|
|
1458
|
-
* @type {ReservationChannelTypes}
|
|
1459
|
-
* @memberof APIReservation
|
|
1460
|
-
*/
|
|
1461
|
-
'channelName': ReservationChannelTypes;
|
|
1462
1444
|
/**
|
|
1463
1445
|
*
|
|
1464
1446
|
* @type {number}
|
|
1465
1447
|
* @memberof APIReservation
|
|
1466
1448
|
*/
|
|
1467
1449
|
'numberGuests'?: number | null;
|
|
1468
|
-
/**
|
|
1469
|
-
*
|
|
1470
|
-
* @type {string}
|
|
1471
|
-
* @memberof APIReservation
|
|
1472
|
-
*/
|
|
1473
|
-
'reservationId': string;
|
|
1474
1450
|
/**
|
|
1475
1451
|
*
|
|
1476
1452
|
* @type {string}
|
|
@@ -1485,46 +1461,10 @@ interface APIReservation {
|
|
|
1485
1461
|
'listingTitle': string;
|
|
1486
1462
|
/**
|
|
1487
1463
|
*
|
|
1488
|
-
* @type {
|
|
1464
|
+
* @type {ProviderInfoApi}
|
|
1489
1465
|
* @memberof APIReservation
|
|
1490
1466
|
*/
|
|
1491
|
-
'
|
|
1492
|
-
/**
|
|
1493
|
-
*
|
|
1494
|
-
* @type {string}
|
|
1495
|
-
* @memberof APIReservation
|
|
1496
|
-
*/
|
|
1497
|
-
'updatedAt': string;
|
|
1498
|
-
/**
|
|
1499
|
-
*
|
|
1500
|
-
* @type {string}
|
|
1501
|
-
* @memberof APIReservation
|
|
1502
|
-
*/
|
|
1503
|
-
'createdByName': string;
|
|
1504
|
-
/**
|
|
1505
|
-
*
|
|
1506
|
-
* @type {string}
|
|
1507
|
-
* @memberof APIReservation
|
|
1508
|
-
*/
|
|
1509
|
-
'updatedByName': string;
|
|
1510
|
-
/**
|
|
1511
|
-
*
|
|
1512
|
-
* @type {string}
|
|
1513
|
-
* @memberof APIReservation
|
|
1514
|
-
*/
|
|
1515
|
-
'providerType': string;
|
|
1516
|
-
/**
|
|
1517
|
-
*
|
|
1518
|
-
* @type {string}
|
|
1519
|
-
* @memberof APIReservation
|
|
1520
|
-
*/
|
|
1521
|
-
'providerAccountId': string;
|
|
1522
|
-
/**
|
|
1523
|
-
*
|
|
1524
|
-
* @type {string}
|
|
1525
|
-
* @memberof APIReservation
|
|
1526
|
-
*/
|
|
1527
|
-
'providerUrl': string;
|
|
1467
|
+
'providerInfo': ProviderInfoApi;
|
|
1528
1468
|
}
|
|
1529
1469
|
/**
|
|
1530
1470
|
*
|
|
@@ -2291,16 +2231,10 @@ interface ProviderAttributionApi {
|
|
|
2291
2231
|
'providerId': string;
|
|
2292
2232
|
/**
|
|
2293
2233
|
*
|
|
2294
|
-
* @type {
|
|
2295
|
-
* @memberof ProviderAttributionApi
|
|
2296
|
-
*/
|
|
2297
|
-
'createdAt': string;
|
|
2298
|
-
/**
|
|
2299
|
-
*
|
|
2300
|
-
* @type {Array<string>}
|
|
2234
|
+
* @type {Array<ReservationChannelTypes>}
|
|
2301
2235
|
* @memberof ProviderAttributionApi
|
|
2302
2236
|
*/
|
|
2303
|
-
'channels': Array<
|
|
2237
|
+
'channels': Array<ReservationChannelTypes>;
|
|
2304
2238
|
}
|
|
2305
2239
|
/**
|
|
2306
2240
|
*
|
|
@@ -2321,6 +2255,37 @@ interface ProviderEmailsApi {
|
|
|
2321
2255
|
*/
|
|
2322
2256
|
'providers': Array<ProviderAttributionApi>;
|
|
2323
2257
|
}
|
|
2258
|
+
/**
|
|
2259
|
+
*
|
|
2260
|
+
* @export
|
|
2261
|
+
* @interface ProviderInfoApi
|
|
2262
|
+
*/
|
|
2263
|
+
interface ProviderInfoApi {
|
|
2264
|
+
/**
|
|
2265
|
+
*
|
|
2266
|
+
* @type {string}
|
|
2267
|
+
* @memberof ProviderInfoApi
|
|
2268
|
+
*/
|
|
2269
|
+
'providerId': string;
|
|
2270
|
+
/**
|
|
2271
|
+
*
|
|
2272
|
+
* @type {string}
|
|
2273
|
+
* @memberof ProviderInfoApi
|
|
2274
|
+
*/
|
|
2275
|
+
'providerReservationId': string;
|
|
2276
|
+
/**
|
|
2277
|
+
*
|
|
2278
|
+
* @type {string}
|
|
2279
|
+
* @memberof ProviderInfoApi
|
|
2280
|
+
*/
|
|
2281
|
+
'providerCreatedAt': string;
|
|
2282
|
+
/**
|
|
2283
|
+
*
|
|
2284
|
+
* @type {string}
|
|
2285
|
+
* @memberof ProviderInfoApi
|
|
2286
|
+
*/
|
|
2287
|
+
'providerReservationUrl': string | null;
|
|
2288
|
+
}
|
|
2324
2289
|
/**
|
|
2325
2290
|
*
|
|
2326
2291
|
* @export
|
|
@@ -2378,6 +2343,7 @@ declare const ReservationChannelTypes: {
|
|
|
2378
2343
|
readonly Partner: "PARTNER";
|
|
2379
2344
|
readonly Gds: "GDS";
|
|
2380
2345
|
readonly Google: "GOOGLE";
|
|
2346
|
+
readonly UnboundDirect: "UNBOUND_DIRECT";
|
|
2381
2347
|
};
|
|
2382
2348
|
type ReservationChannelTypes = typeof ReservationChannelTypes[keyof typeof ReservationChannelTypes];
|
|
2383
2349
|
/**
|
|
@@ -2802,6 +2768,14 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2802
2768
|
* @throws {RequiredError}
|
|
2803
2769
|
*/
|
|
2804
2770
|
addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2771
|
+
/**
|
|
2772
|
+
* Addresses Get
|
|
2773
|
+
* @summary Addresses Get
|
|
2774
|
+
* @param {string} addressId
|
|
2775
|
+
* @param {*} [options] Override http request option.
|
|
2776
|
+
* @throws {RequiredError}
|
|
2777
|
+
*/
|
|
2778
|
+
addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2805
2779
|
/**
|
|
2806
2780
|
* Addresses Update
|
|
2807
2781
|
* @summary Addresses Update
|
|
@@ -2922,31 +2896,39 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2922
2896
|
*/
|
|
2923
2897
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2924
2898
|
/**
|
|
2925
|
-
*
|
|
2926
|
-
* @summary
|
|
2899
|
+
* Phones Create
|
|
2900
|
+
* @summary Phones Create
|
|
2927
2901
|
* @param {string} contactId
|
|
2928
|
-
* @param {
|
|
2902
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
2929
2903
|
* @param {*} [options] Override http request option.
|
|
2930
2904
|
* @throws {RequiredError}
|
|
2931
2905
|
*/
|
|
2932
|
-
|
|
2906
|
+
phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2933
2907
|
/**
|
|
2934
|
-
*
|
|
2935
|
-
* @summary
|
|
2936
|
-
* @param {string}
|
|
2908
|
+
* Phones Delete
|
|
2909
|
+
* @summary Phones Delete
|
|
2910
|
+
* @param {string} phoneId
|
|
2937
2911
|
* @param {*} [options] Override http request option.
|
|
2938
2912
|
* @throws {RequiredError}
|
|
2939
2913
|
*/
|
|
2940
|
-
|
|
2914
|
+
phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2941
2915
|
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @summary
|
|
2944
|
-
* @param {string}
|
|
2945
|
-
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
2916
|
+
* Phones Get
|
|
2917
|
+
* @summary Phones Get
|
|
2918
|
+
* @param {string} phoneId
|
|
2946
2919
|
* @param {*} [options] Override http request option.
|
|
2947
2920
|
* @throws {RequiredError}
|
|
2948
2921
|
*/
|
|
2949
|
-
|
|
2922
|
+
phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2923
|
+
/**
|
|
2924
|
+
* Phones Update
|
|
2925
|
+
* @summary Phones Update
|
|
2926
|
+
* @param {string} phoneId
|
|
2927
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
2928
|
+
* @param {*} [options] Override http request option.
|
|
2929
|
+
* @throws {RequiredError}
|
|
2930
|
+
*/
|
|
2931
|
+
phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2950
2932
|
};
|
|
2951
2933
|
/**
|
|
2952
2934
|
* ContactsApi - functional programming interface
|
|
@@ -2970,6 +2952,14 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2970
2952
|
* @throws {RequiredError}
|
|
2971
2953
|
*/
|
|
2972
2954
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2955
|
+
/**
|
|
2956
|
+
* Addresses Get
|
|
2957
|
+
* @summary Addresses Get
|
|
2958
|
+
* @param {string} addressId
|
|
2959
|
+
* @param {*} [options] Override http request option.
|
|
2960
|
+
* @throws {RequiredError}
|
|
2961
|
+
*/
|
|
2962
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
2973
2963
|
/**
|
|
2974
2964
|
* Addresses Update
|
|
2975
2965
|
* @summary Addresses Update
|
|
@@ -3090,31 +3080,39 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
3090
3080
|
*/
|
|
3091
3081
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
3092
3082
|
/**
|
|
3093
|
-
*
|
|
3094
|
-
* @summary
|
|
3083
|
+
* Phones Create
|
|
3084
|
+
* @summary Phones Create
|
|
3095
3085
|
* @param {string} contactId
|
|
3096
|
-
* @param {
|
|
3086
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3097
3087
|
* @param {*} [options] Override http request option.
|
|
3098
3088
|
* @throws {RequiredError}
|
|
3099
3089
|
*/
|
|
3100
|
-
|
|
3090
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3101
3091
|
/**
|
|
3102
|
-
*
|
|
3103
|
-
* @summary
|
|
3104
|
-
* @param {string}
|
|
3092
|
+
* Phones Delete
|
|
3093
|
+
* @summary Phones Delete
|
|
3094
|
+
* @param {string} phoneId
|
|
3105
3095
|
* @param {*} [options] Override http request option.
|
|
3106
3096
|
* @throws {RequiredError}
|
|
3107
3097
|
*/
|
|
3108
|
-
|
|
3098
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3109
3099
|
/**
|
|
3110
|
-
*
|
|
3111
|
-
* @summary
|
|
3112
|
-
* @param {string}
|
|
3113
|
-
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
3100
|
+
* Phones Get
|
|
3101
|
+
* @summary Phones Get
|
|
3102
|
+
* @param {string} phoneId
|
|
3114
3103
|
* @param {*} [options] Override http request option.
|
|
3115
3104
|
* @throws {RequiredError}
|
|
3116
3105
|
*/
|
|
3117
|
-
|
|
3106
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3107
|
+
/**
|
|
3108
|
+
* Phones Update
|
|
3109
|
+
* @summary Phones Update
|
|
3110
|
+
* @param {string} phoneId
|
|
3111
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3112
|
+
* @param {*} [options] Override http request option.
|
|
3113
|
+
* @throws {RequiredError}
|
|
3114
|
+
*/
|
|
3115
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3118
3116
|
};
|
|
3119
3117
|
/**
|
|
3120
3118
|
* ContactsApi - factory interface
|
|
@@ -3138,6 +3136,14 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3138
3136
|
* @throws {RequiredError}
|
|
3139
3137
|
*/
|
|
3140
3138
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3139
|
+
/**
|
|
3140
|
+
* Addresses Get
|
|
3141
|
+
* @summary Addresses Get
|
|
3142
|
+
* @param {string} addressId
|
|
3143
|
+
* @param {*} [options] Override http request option.
|
|
3144
|
+
* @throws {RequiredError}
|
|
3145
|
+
*/
|
|
3146
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
3141
3147
|
/**
|
|
3142
3148
|
* Addresses Update
|
|
3143
3149
|
* @summary Addresses Update
|
|
@@ -3258,31 +3264,39 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3258
3264
|
*/
|
|
3259
3265
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
3260
3266
|
/**
|
|
3261
|
-
*
|
|
3262
|
-
* @summary
|
|
3267
|
+
* Phones Create
|
|
3268
|
+
* @summary Phones Create
|
|
3263
3269
|
* @param {string} contactId
|
|
3264
|
-
* @param {
|
|
3270
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3271
|
+
* @param {*} [options] Override http request option.
|
|
3272
|
+
* @throws {RequiredError}
|
|
3273
|
+
*/
|
|
3274
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3275
|
+
/**
|
|
3276
|
+
* Phones Delete
|
|
3277
|
+
* @summary Phones Delete
|
|
3278
|
+
* @param {string} phoneId
|
|
3265
3279
|
* @param {*} [options] Override http request option.
|
|
3266
3280
|
* @throws {RequiredError}
|
|
3267
3281
|
*/
|
|
3268
|
-
|
|
3282
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3269
3283
|
/**
|
|
3270
|
-
*
|
|
3271
|
-
* @summary
|
|
3272
|
-
* @param {string}
|
|
3284
|
+
* Phones Get
|
|
3285
|
+
* @summary Phones Get
|
|
3286
|
+
* @param {string} phoneId
|
|
3273
3287
|
* @param {*} [options] Override http request option.
|
|
3274
3288
|
* @throws {RequiredError}
|
|
3275
3289
|
*/
|
|
3276
|
-
|
|
3290
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3277
3291
|
/**
|
|
3278
|
-
*
|
|
3279
|
-
* @summary
|
|
3280
|
-
* @param {string}
|
|
3281
|
-
* @param {
|
|
3292
|
+
* Phones Update
|
|
3293
|
+
* @summary Phones Update
|
|
3294
|
+
* @param {string} phoneId
|
|
3295
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3282
3296
|
* @param {*} [options] Override http request option.
|
|
3283
3297
|
* @throws {RequiredError}
|
|
3284
3298
|
*/
|
|
3285
|
-
|
|
3299
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3286
3300
|
};
|
|
3287
3301
|
/**
|
|
3288
3302
|
* ContactsApi - object-oriented interface
|
|
@@ -3310,6 +3324,15 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3310
3324
|
* @memberof ContactsApi
|
|
3311
3325
|
*/
|
|
3312
3326
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3327
|
+
/**
|
|
3328
|
+
* Addresses Get
|
|
3329
|
+
* @summary Addresses Get
|
|
3330
|
+
* @param {string} addressId
|
|
3331
|
+
* @param {*} [options] Override http request option.
|
|
3332
|
+
* @throws {RequiredError}
|
|
3333
|
+
* @memberof ContactsApi
|
|
3334
|
+
*/
|
|
3335
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
3313
3336
|
/**
|
|
3314
3337
|
* Addresses Update
|
|
3315
3338
|
* @summary Addresses Update
|
|
@@ -3443,34 +3466,43 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3443
3466
|
*/
|
|
3444
3467
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
3445
3468
|
/**
|
|
3446
|
-
*
|
|
3447
|
-
* @summary
|
|
3469
|
+
* Phones Create
|
|
3470
|
+
* @summary Phones Create
|
|
3448
3471
|
* @param {string} contactId
|
|
3449
|
-
* @param {
|
|
3472
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3473
|
+
* @param {*} [options] Override http request option.
|
|
3474
|
+
* @throws {RequiredError}
|
|
3475
|
+
* @memberof ContactsApi
|
|
3476
|
+
*/
|
|
3477
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3478
|
+
/**
|
|
3479
|
+
* Phones Delete
|
|
3480
|
+
* @summary Phones Delete
|
|
3481
|
+
* @param {string} phoneId
|
|
3450
3482
|
* @param {*} [options] Override http request option.
|
|
3451
3483
|
* @throws {RequiredError}
|
|
3452
3484
|
* @memberof ContactsApi
|
|
3453
3485
|
*/
|
|
3454
|
-
|
|
3486
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3455
3487
|
/**
|
|
3456
|
-
*
|
|
3457
|
-
* @summary
|
|
3458
|
-
* @param {string}
|
|
3488
|
+
* Phones Get
|
|
3489
|
+
* @summary Phones Get
|
|
3490
|
+
* @param {string} phoneId
|
|
3459
3491
|
* @param {*} [options] Override http request option.
|
|
3460
3492
|
* @throws {RequiredError}
|
|
3461
3493
|
* @memberof ContactsApi
|
|
3462
3494
|
*/
|
|
3463
|
-
|
|
3495
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3464
3496
|
/**
|
|
3465
|
-
*
|
|
3466
|
-
* @summary
|
|
3467
|
-
* @param {string}
|
|
3468
|
-
* @param {
|
|
3497
|
+
* Phones Update
|
|
3498
|
+
* @summary Phones Update
|
|
3499
|
+
* @param {string} phoneId
|
|
3500
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3469
3501
|
* @param {*} [options] Override http request option.
|
|
3470
3502
|
* @throws {RequiredError}
|
|
3471
3503
|
* @memberof ContactsApi
|
|
3472
3504
|
*/
|
|
3473
|
-
|
|
3505
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3474
3506
|
}
|
|
3475
3507
|
/**
|
|
3476
3508
|
* ConversationsApi - axios parameter creator
|
|
@@ -4381,6 +4413,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4381
4413
|
* @throws {RequiredError}
|
|
4382
4414
|
*/
|
|
4383
4415
|
addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4416
|
+
/**
|
|
4417
|
+
* Addresses Get
|
|
4418
|
+
* @summary Addresses Get
|
|
4419
|
+
* @param {string} addressId
|
|
4420
|
+
* @param {*} [options] Override http request option.
|
|
4421
|
+
* @throws {RequiredError}
|
|
4422
|
+
*/
|
|
4423
|
+
addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4384
4424
|
/**
|
|
4385
4425
|
* Addresses Update
|
|
4386
4426
|
* @summary Addresses Update
|
|
@@ -4609,31 +4649,39 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4609
4649
|
*/
|
|
4610
4650
|
messagesList: (searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4611
4651
|
/**
|
|
4612
|
-
*
|
|
4613
|
-
* @summary
|
|
4652
|
+
* Phones Create
|
|
4653
|
+
* @summary Phones Create
|
|
4614
4654
|
* @param {string} contactId
|
|
4615
|
-
* @param {
|
|
4655
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
4616
4656
|
* @param {*} [options] Override http request option.
|
|
4617
4657
|
* @throws {RequiredError}
|
|
4618
4658
|
*/
|
|
4619
|
-
|
|
4659
|
+
phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4620
4660
|
/**
|
|
4621
|
-
*
|
|
4622
|
-
* @summary
|
|
4623
|
-
* @param {string}
|
|
4661
|
+
* Phones Delete
|
|
4662
|
+
* @summary Phones Delete
|
|
4663
|
+
* @param {string} phoneId
|
|
4624
4664
|
* @param {*} [options] Override http request option.
|
|
4625
4665
|
* @throws {RequiredError}
|
|
4626
4666
|
*/
|
|
4627
|
-
|
|
4667
|
+
phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4628
4668
|
/**
|
|
4629
|
-
*
|
|
4630
|
-
* @summary
|
|
4631
|
-
* @param {string}
|
|
4632
|
-
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
4669
|
+
* Phones Get
|
|
4670
|
+
* @summary Phones Get
|
|
4671
|
+
* @param {string} phoneId
|
|
4633
4672
|
* @param {*} [options] Override http request option.
|
|
4634
4673
|
* @throws {RequiredError}
|
|
4635
4674
|
*/
|
|
4636
|
-
|
|
4675
|
+
phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4676
|
+
/**
|
|
4677
|
+
* Phones Update
|
|
4678
|
+
* @summary Phones Update
|
|
4679
|
+
* @param {string} phoneId
|
|
4680
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
4681
|
+
* @param {*} [options] Override http request option.
|
|
4682
|
+
* @throws {RequiredError}
|
|
4683
|
+
*/
|
|
4684
|
+
phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4637
4685
|
/**
|
|
4638
4686
|
* Providers Create
|
|
4639
4687
|
* @summary Providers Create
|
|
@@ -4726,6 +4774,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4726
4774
|
* @throws {RequiredError}
|
|
4727
4775
|
*/
|
|
4728
4776
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4777
|
+
/**
|
|
4778
|
+
* Addresses Get
|
|
4779
|
+
* @summary Addresses Get
|
|
4780
|
+
* @param {string} addressId
|
|
4781
|
+
* @param {*} [options] Override http request option.
|
|
4782
|
+
* @throws {RequiredError}
|
|
4783
|
+
*/
|
|
4784
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
4729
4785
|
/**
|
|
4730
4786
|
* Addresses Update
|
|
4731
4787
|
* @summary Addresses Update
|
|
@@ -4954,31 +5010,39 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4954
5010
|
*/
|
|
4955
5011
|
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
4956
5012
|
/**
|
|
4957
|
-
*
|
|
4958
|
-
* @summary
|
|
5013
|
+
* Phones Create
|
|
5014
|
+
* @summary Phones Create
|
|
4959
5015
|
* @param {string} contactId
|
|
4960
|
-
* @param {
|
|
5016
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5017
|
+
* @param {*} [options] Override http request option.
|
|
5018
|
+
* @throws {RequiredError}
|
|
5019
|
+
*/
|
|
5020
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
5021
|
+
/**
|
|
5022
|
+
* Phones Delete
|
|
5023
|
+
* @summary Phones Delete
|
|
5024
|
+
* @param {string} phoneId
|
|
4961
5025
|
* @param {*} [options] Override http request option.
|
|
4962
5026
|
* @throws {RequiredError}
|
|
4963
5027
|
*/
|
|
4964
|
-
|
|
5028
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4965
5029
|
/**
|
|
4966
|
-
*
|
|
4967
|
-
* @summary
|
|
4968
|
-
* @param {string}
|
|
5030
|
+
* Phones Get
|
|
5031
|
+
* @summary Phones Get
|
|
5032
|
+
* @param {string} phoneId
|
|
4969
5033
|
* @param {*} [options] Override http request option.
|
|
4970
5034
|
* @throws {RequiredError}
|
|
4971
5035
|
*/
|
|
4972
|
-
|
|
5036
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
4973
5037
|
/**
|
|
4974
|
-
*
|
|
4975
|
-
* @summary
|
|
4976
|
-
* @param {string}
|
|
4977
|
-
* @param {
|
|
5038
|
+
* Phones Update
|
|
5039
|
+
* @summary Phones Update
|
|
5040
|
+
* @param {string} phoneId
|
|
5041
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
4978
5042
|
* @param {*} [options] Override http request option.
|
|
4979
5043
|
* @throws {RequiredError}
|
|
4980
5044
|
*/
|
|
4981
|
-
|
|
5045
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
4982
5046
|
/**
|
|
4983
5047
|
* Providers Create
|
|
4984
5048
|
* @summary Providers Create
|
|
@@ -5071,6 +5135,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5071
5135
|
* @throws {RequiredError}
|
|
5072
5136
|
*/
|
|
5073
5137
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5138
|
+
/**
|
|
5139
|
+
* Addresses Get
|
|
5140
|
+
* @summary Addresses Get
|
|
5141
|
+
* @param {string} addressId
|
|
5142
|
+
* @param {*} [options] Override http request option.
|
|
5143
|
+
* @throws {RequiredError}
|
|
5144
|
+
*/
|
|
5145
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
5074
5146
|
/**
|
|
5075
5147
|
* Addresses Update
|
|
5076
5148
|
* @summary Addresses Update
|
|
@@ -5299,31 +5371,39 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5299
5371
|
*/
|
|
5300
5372
|
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5301
5373
|
/**
|
|
5302
|
-
*
|
|
5303
|
-
* @summary
|
|
5374
|
+
* Phones Create
|
|
5375
|
+
* @summary Phones Create
|
|
5304
5376
|
* @param {string} contactId
|
|
5305
|
-
* @param {
|
|
5377
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5378
|
+
* @param {*} [options] Override http request option.
|
|
5379
|
+
* @throws {RequiredError}
|
|
5380
|
+
*/
|
|
5381
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5382
|
+
/**
|
|
5383
|
+
* Phones Delete
|
|
5384
|
+
* @summary Phones Delete
|
|
5385
|
+
* @param {string} phoneId
|
|
5306
5386
|
* @param {*} [options] Override http request option.
|
|
5307
5387
|
* @throws {RequiredError}
|
|
5308
5388
|
*/
|
|
5309
|
-
|
|
5389
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5310
5390
|
/**
|
|
5311
|
-
*
|
|
5312
|
-
* @summary
|
|
5313
|
-
* @param {string}
|
|
5391
|
+
* Phones Get
|
|
5392
|
+
* @summary Phones Get
|
|
5393
|
+
* @param {string} phoneId
|
|
5314
5394
|
* @param {*} [options] Override http request option.
|
|
5315
5395
|
* @throws {RequiredError}
|
|
5316
5396
|
*/
|
|
5317
|
-
|
|
5397
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5318
5398
|
/**
|
|
5319
|
-
*
|
|
5320
|
-
* @summary
|
|
5321
|
-
* @param {string}
|
|
5322
|
-
* @param {
|
|
5399
|
+
* Phones Update
|
|
5400
|
+
* @summary Phones Update
|
|
5401
|
+
* @param {string} phoneId
|
|
5402
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
5323
5403
|
* @param {*} [options] Override http request option.
|
|
5324
5404
|
* @throws {RequiredError}
|
|
5325
5405
|
*/
|
|
5326
|
-
|
|
5406
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5327
5407
|
/**
|
|
5328
5408
|
* Providers Create
|
|
5329
5409
|
* @summary Providers Create
|
|
@@ -5421,6 +5501,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5421
5501
|
* @memberof UnboundApi
|
|
5422
5502
|
*/
|
|
5423
5503
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5504
|
+
/**
|
|
5505
|
+
* Addresses Get
|
|
5506
|
+
* @summary Addresses Get
|
|
5507
|
+
* @param {string} addressId
|
|
5508
|
+
* @param {*} [options] Override http request option.
|
|
5509
|
+
* @throws {RequiredError}
|
|
5510
|
+
* @memberof UnboundApi
|
|
5511
|
+
*/
|
|
5512
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
5424
5513
|
/**
|
|
5425
5514
|
* Addresses Update
|
|
5426
5515
|
* @summary Addresses Update
|
|
@@ -5673,34 +5762,43 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5673
5762
|
*/
|
|
5674
5763
|
messagesList(searchString?: string | null, contactId?: string | null, conversationId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
5675
5764
|
/**
|
|
5676
|
-
*
|
|
5677
|
-
* @summary
|
|
5765
|
+
* Phones Create
|
|
5766
|
+
* @summary Phones Create
|
|
5678
5767
|
* @param {string} contactId
|
|
5679
|
-
* @param {
|
|
5768
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5769
|
+
* @param {*} [options] Override http request option.
|
|
5770
|
+
* @throws {RequiredError}
|
|
5771
|
+
* @memberof UnboundApi
|
|
5772
|
+
*/
|
|
5773
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5774
|
+
/**
|
|
5775
|
+
* Phones Delete
|
|
5776
|
+
* @summary Phones Delete
|
|
5777
|
+
* @param {string} phoneId
|
|
5680
5778
|
* @param {*} [options] Override http request option.
|
|
5681
5779
|
* @throws {RequiredError}
|
|
5682
5780
|
* @memberof UnboundApi
|
|
5683
5781
|
*/
|
|
5684
|
-
|
|
5782
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5685
5783
|
/**
|
|
5686
|
-
*
|
|
5687
|
-
* @summary
|
|
5688
|
-
* @param {string}
|
|
5784
|
+
* Phones Get
|
|
5785
|
+
* @summary Phones Get
|
|
5786
|
+
* @param {string} phoneId
|
|
5689
5787
|
* @param {*} [options] Override http request option.
|
|
5690
5788
|
* @throws {RequiredError}
|
|
5691
5789
|
* @memberof UnboundApi
|
|
5692
5790
|
*/
|
|
5693
|
-
|
|
5791
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5694
5792
|
/**
|
|
5695
|
-
*
|
|
5696
|
-
* @summary
|
|
5697
|
-
* @param {string}
|
|
5698
|
-
* @param {
|
|
5793
|
+
* Phones Update
|
|
5794
|
+
* @summary Phones Update
|
|
5795
|
+
* @param {string} phoneId
|
|
5796
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
5699
5797
|
* @param {*} [options] Override http request option.
|
|
5700
5798
|
* @throws {RequiredError}
|
|
5701
5799
|
* @memberof UnboundApi
|
|
5702
5800
|
*/
|
|
5703
|
-
|
|
5801
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5704
5802
|
/**
|
|
5705
5803
|
* Providers Create
|
|
5706
5804
|
* @summary Providers Create
|
|
@@ -5772,4 +5870,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5772
5870
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
5773
5871
|
}
|
|
5774
5872
|
|
|
5775
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type
|
|
5873
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type ProviderAddressesApi, type ProviderAttributionApi, type ProviderEmailsApi, type ProviderInfoApi, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type ProviderPhonesApi, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|