@ember-home/unbound-ts-client 0.0.38 → 0.0.39
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 +253 -127
- package/dist/index.d.ts +253 -127
- package/dist/index.js +525 -285
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +388 -148
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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
|
}
|
|
@@ -2802,6 +2796,14 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2802
2796
|
* @throws {RequiredError}
|
|
2803
2797
|
*/
|
|
2804
2798
|
addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2799
|
+
/**
|
|
2800
|
+
* Addresses Get
|
|
2801
|
+
* @summary Addresses Get
|
|
2802
|
+
* @param {string} addressId
|
|
2803
|
+
* @param {*} [options] Override http request option.
|
|
2804
|
+
* @throws {RequiredError}
|
|
2805
|
+
*/
|
|
2806
|
+
addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2805
2807
|
/**
|
|
2806
2808
|
* Addresses Update
|
|
2807
2809
|
* @summary Addresses Update
|
|
@@ -2922,31 +2924,39 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2922
2924
|
*/
|
|
2923
2925
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2924
2926
|
/**
|
|
2925
|
-
*
|
|
2926
|
-
* @summary
|
|
2927
|
+
* Phones Create
|
|
2928
|
+
* @summary Phones Create
|
|
2927
2929
|
* @param {string} contactId
|
|
2928
|
-
* @param {
|
|
2930
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
2931
|
+
* @param {*} [options] Override http request option.
|
|
2932
|
+
* @throws {RequiredError}
|
|
2933
|
+
*/
|
|
2934
|
+
phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2935
|
+
/**
|
|
2936
|
+
* Phones Delete
|
|
2937
|
+
* @summary Phones Delete
|
|
2938
|
+
* @param {string} phoneId
|
|
2929
2939
|
* @param {*} [options] Override http request option.
|
|
2930
2940
|
* @throws {RequiredError}
|
|
2931
2941
|
*/
|
|
2932
|
-
|
|
2942
|
+
phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2933
2943
|
/**
|
|
2934
|
-
*
|
|
2935
|
-
* @summary
|
|
2936
|
-
* @param {string}
|
|
2944
|
+
* Phones Get
|
|
2945
|
+
* @summary Phones Get
|
|
2946
|
+
* @param {string} phoneId
|
|
2937
2947
|
* @param {*} [options] Override http request option.
|
|
2938
2948
|
* @throws {RequiredError}
|
|
2939
2949
|
*/
|
|
2940
|
-
|
|
2950
|
+
phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2941
2951
|
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @summary
|
|
2944
|
-
* @param {string}
|
|
2945
|
-
* @param {
|
|
2952
|
+
* Phones Update
|
|
2953
|
+
* @summary Phones Update
|
|
2954
|
+
* @param {string} phoneId
|
|
2955
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
2946
2956
|
* @param {*} [options] Override http request option.
|
|
2947
2957
|
* @throws {RequiredError}
|
|
2948
2958
|
*/
|
|
2949
|
-
|
|
2959
|
+
phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2950
2960
|
};
|
|
2951
2961
|
/**
|
|
2952
2962
|
* ContactsApi - functional programming interface
|
|
@@ -2970,6 +2980,14 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2970
2980
|
* @throws {RequiredError}
|
|
2971
2981
|
*/
|
|
2972
2982
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2983
|
+
/**
|
|
2984
|
+
* Addresses Get
|
|
2985
|
+
* @summary Addresses Get
|
|
2986
|
+
* @param {string} addressId
|
|
2987
|
+
* @param {*} [options] Override http request option.
|
|
2988
|
+
* @throws {RequiredError}
|
|
2989
|
+
*/
|
|
2990
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
2973
2991
|
/**
|
|
2974
2992
|
* Addresses Update
|
|
2975
2993
|
* @summary Addresses Update
|
|
@@ -3090,31 +3108,39 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
3090
3108
|
*/
|
|
3091
3109
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
3092
3110
|
/**
|
|
3093
|
-
*
|
|
3094
|
-
* @summary
|
|
3111
|
+
* Phones Create
|
|
3112
|
+
* @summary Phones Create
|
|
3095
3113
|
* @param {string} contactId
|
|
3096
|
-
* @param {
|
|
3114
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3115
|
+
* @param {*} [options] Override http request option.
|
|
3116
|
+
* @throws {RequiredError}
|
|
3117
|
+
*/
|
|
3118
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3119
|
+
/**
|
|
3120
|
+
* Phones Delete
|
|
3121
|
+
* @summary Phones Delete
|
|
3122
|
+
* @param {string} phoneId
|
|
3097
3123
|
* @param {*} [options] Override http request option.
|
|
3098
3124
|
* @throws {RequiredError}
|
|
3099
3125
|
*/
|
|
3100
|
-
|
|
3126
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3101
3127
|
/**
|
|
3102
|
-
*
|
|
3103
|
-
* @summary
|
|
3104
|
-
* @param {string}
|
|
3128
|
+
* Phones Get
|
|
3129
|
+
* @summary Phones Get
|
|
3130
|
+
* @param {string} phoneId
|
|
3105
3131
|
* @param {*} [options] Override http request option.
|
|
3106
3132
|
* @throws {RequiredError}
|
|
3107
3133
|
*/
|
|
3108
|
-
|
|
3134
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3109
3135
|
/**
|
|
3110
|
-
*
|
|
3111
|
-
* @summary
|
|
3112
|
-
* @param {string}
|
|
3113
|
-
* @param {
|
|
3136
|
+
* Phones Update
|
|
3137
|
+
* @summary Phones Update
|
|
3138
|
+
* @param {string} phoneId
|
|
3139
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3114
3140
|
* @param {*} [options] Override http request option.
|
|
3115
3141
|
* @throws {RequiredError}
|
|
3116
3142
|
*/
|
|
3117
|
-
|
|
3143
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
3118
3144
|
};
|
|
3119
3145
|
/**
|
|
3120
3146
|
* ContactsApi - factory interface
|
|
@@ -3138,6 +3164,14 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3138
3164
|
* @throws {RequiredError}
|
|
3139
3165
|
*/
|
|
3140
3166
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3167
|
+
/**
|
|
3168
|
+
* Addresses Get
|
|
3169
|
+
* @summary Addresses Get
|
|
3170
|
+
* @param {string} addressId
|
|
3171
|
+
* @param {*} [options] Override http request option.
|
|
3172
|
+
* @throws {RequiredError}
|
|
3173
|
+
*/
|
|
3174
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
3141
3175
|
/**
|
|
3142
3176
|
* Addresses Update
|
|
3143
3177
|
* @summary Addresses Update
|
|
@@ -3258,31 +3292,39 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
3258
3292
|
*/
|
|
3259
3293
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
3260
3294
|
/**
|
|
3261
|
-
*
|
|
3262
|
-
* @summary
|
|
3295
|
+
* Phones Create
|
|
3296
|
+
* @summary Phones Create
|
|
3263
3297
|
* @param {string} contactId
|
|
3264
|
-
* @param {
|
|
3298
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3265
3299
|
* @param {*} [options] Override http request option.
|
|
3266
3300
|
* @throws {RequiredError}
|
|
3267
3301
|
*/
|
|
3268
|
-
|
|
3302
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3269
3303
|
/**
|
|
3270
|
-
*
|
|
3271
|
-
* @summary
|
|
3272
|
-
* @param {string}
|
|
3304
|
+
* Phones Delete
|
|
3305
|
+
* @summary Phones Delete
|
|
3306
|
+
* @param {string} phoneId
|
|
3273
3307
|
* @param {*} [options] Override http request option.
|
|
3274
3308
|
* @throws {RequiredError}
|
|
3275
3309
|
*/
|
|
3276
|
-
|
|
3310
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3277
3311
|
/**
|
|
3278
|
-
*
|
|
3279
|
-
* @summary
|
|
3280
|
-
* @param {string}
|
|
3281
|
-
* @param {APIPhoneNumberUpdate} aPIPhoneNumberUpdate
|
|
3312
|
+
* Phones Get
|
|
3313
|
+
* @summary Phones Get
|
|
3314
|
+
* @param {string} phoneId
|
|
3282
3315
|
* @param {*} [options] Override http request option.
|
|
3283
3316
|
* @throws {RequiredError}
|
|
3284
3317
|
*/
|
|
3285
|
-
|
|
3318
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3319
|
+
/**
|
|
3320
|
+
* Phones Update
|
|
3321
|
+
* @summary Phones Update
|
|
3322
|
+
* @param {string} phoneId
|
|
3323
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3324
|
+
* @param {*} [options] Override http request option.
|
|
3325
|
+
* @throws {RequiredError}
|
|
3326
|
+
*/
|
|
3327
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
3286
3328
|
};
|
|
3287
3329
|
/**
|
|
3288
3330
|
* ContactsApi - object-oriented interface
|
|
@@ -3310,6 +3352,15 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3310
3352
|
* @memberof ContactsApi
|
|
3311
3353
|
*/
|
|
3312
3354
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3355
|
+
/**
|
|
3356
|
+
* Addresses Get
|
|
3357
|
+
* @summary Addresses Get
|
|
3358
|
+
* @param {string} addressId
|
|
3359
|
+
* @param {*} [options] Override http request option.
|
|
3360
|
+
* @throws {RequiredError}
|
|
3361
|
+
* @memberof ContactsApi
|
|
3362
|
+
*/
|
|
3363
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
3313
3364
|
/**
|
|
3314
3365
|
* Addresses Update
|
|
3315
3366
|
* @summary Addresses Update
|
|
@@ -3443,34 +3494,43 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3443
3494
|
*/
|
|
3444
3495
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
3445
3496
|
/**
|
|
3446
|
-
*
|
|
3447
|
-
* @summary
|
|
3497
|
+
* Phones Create
|
|
3498
|
+
* @summary Phones Create
|
|
3448
3499
|
* @param {string} contactId
|
|
3449
|
-
* @param {
|
|
3500
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
3501
|
+
* @param {*} [options] Override http request option.
|
|
3502
|
+
* @throws {RequiredError}
|
|
3503
|
+
* @memberof ContactsApi
|
|
3504
|
+
*/
|
|
3505
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3506
|
+
/**
|
|
3507
|
+
* Phones Delete
|
|
3508
|
+
* @summary Phones Delete
|
|
3509
|
+
* @param {string} phoneId
|
|
3450
3510
|
* @param {*} [options] Override http request option.
|
|
3451
3511
|
* @throws {RequiredError}
|
|
3452
3512
|
* @memberof ContactsApi
|
|
3453
3513
|
*/
|
|
3454
|
-
|
|
3514
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3455
3515
|
/**
|
|
3456
|
-
*
|
|
3457
|
-
* @summary
|
|
3458
|
-
* @param {string}
|
|
3516
|
+
* Phones Get
|
|
3517
|
+
* @summary Phones Get
|
|
3518
|
+
* @param {string} phoneId
|
|
3459
3519
|
* @param {*} [options] Override http request option.
|
|
3460
3520
|
* @throws {RequiredError}
|
|
3461
3521
|
* @memberof ContactsApi
|
|
3462
3522
|
*/
|
|
3463
|
-
|
|
3523
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3464
3524
|
/**
|
|
3465
|
-
*
|
|
3466
|
-
* @summary
|
|
3467
|
-
* @param {string}
|
|
3468
|
-
* @param {
|
|
3525
|
+
* Phones Update
|
|
3526
|
+
* @summary Phones Update
|
|
3527
|
+
* @param {string} phoneId
|
|
3528
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
3469
3529
|
* @param {*} [options] Override http request option.
|
|
3470
3530
|
* @throws {RequiredError}
|
|
3471
3531
|
* @memberof ContactsApi
|
|
3472
3532
|
*/
|
|
3473
|
-
|
|
3533
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
3474
3534
|
}
|
|
3475
3535
|
/**
|
|
3476
3536
|
* ConversationsApi - axios parameter creator
|
|
@@ -4381,6 +4441,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4381
4441
|
* @throws {RequiredError}
|
|
4382
4442
|
*/
|
|
4383
4443
|
addressesDelete: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4444
|
+
/**
|
|
4445
|
+
* Addresses Get
|
|
4446
|
+
* @summary Addresses Get
|
|
4447
|
+
* @param {string} addressId
|
|
4448
|
+
* @param {*} [options] Override http request option.
|
|
4449
|
+
* @throws {RequiredError}
|
|
4450
|
+
*/
|
|
4451
|
+
addressesGet: (addressId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4384
4452
|
/**
|
|
4385
4453
|
* Addresses Update
|
|
4386
4454
|
* @summary Addresses Update
|
|
@@ -4609,31 +4677,39 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4609
4677
|
*/
|
|
4610
4678
|
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
4679
|
/**
|
|
4612
|
-
*
|
|
4613
|
-
* @summary
|
|
4680
|
+
* Phones Create
|
|
4681
|
+
* @summary Phones Create
|
|
4614
4682
|
* @param {string} contactId
|
|
4615
|
-
* @param {
|
|
4683
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
4684
|
+
* @param {*} [options] Override http request option.
|
|
4685
|
+
* @throws {RequiredError}
|
|
4686
|
+
*/
|
|
4687
|
+
phonesCreate: (contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4688
|
+
/**
|
|
4689
|
+
* Phones Delete
|
|
4690
|
+
* @summary Phones Delete
|
|
4691
|
+
* @param {string} phoneId
|
|
4616
4692
|
* @param {*} [options] Override http request option.
|
|
4617
4693
|
* @throws {RequiredError}
|
|
4618
4694
|
*/
|
|
4619
|
-
|
|
4695
|
+
phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4620
4696
|
/**
|
|
4621
|
-
*
|
|
4622
|
-
* @summary
|
|
4623
|
-
* @param {string}
|
|
4697
|
+
* Phones Get
|
|
4698
|
+
* @summary Phones Get
|
|
4699
|
+
* @param {string} phoneId
|
|
4624
4700
|
* @param {*} [options] Override http request option.
|
|
4625
4701
|
* @throws {RequiredError}
|
|
4626
4702
|
*/
|
|
4627
|
-
|
|
4703
|
+
phonesGet: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4628
4704
|
/**
|
|
4629
|
-
*
|
|
4630
|
-
* @summary
|
|
4631
|
-
* @param {string}
|
|
4632
|
-
* @param {
|
|
4705
|
+
* Phones Update
|
|
4706
|
+
* @summary Phones Update
|
|
4707
|
+
* @param {string} phoneId
|
|
4708
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
4633
4709
|
* @param {*} [options] Override http request option.
|
|
4634
4710
|
* @throws {RequiredError}
|
|
4635
4711
|
*/
|
|
4636
|
-
|
|
4712
|
+
phonesUpdate: (phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4637
4713
|
/**
|
|
4638
4714
|
* Providers Create
|
|
4639
4715
|
* @summary Providers Create
|
|
@@ -4726,6 +4802,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4726
4802
|
* @throws {RequiredError}
|
|
4727
4803
|
*/
|
|
4728
4804
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4805
|
+
/**
|
|
4806
|
+
* Addresses Get
|
|
4807
|
+
* @summary Addresses Get
|
|
4808
|
+
* @param {string} addressId
|
|
4809
|
+
* @param {*} [options] Override http request option.
|
|
4810
|
+
* @throws {RequiredError}
|
|
4811
|
+
*/
|
|
4812
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
4729
4813
|
/**
|
|
4730
4814
|
* Addresses Update
|
|
4731
4815
|
* @summary Addresses Update
|
|
@@ -4954,31 +5038,39 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4954
5038
|
*/
|
|
4955
5039
|
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
5040
|
/**
|
|
4957
|
-
*
|
|
4958
|
-
* @summary
|
|
5041
|
+
* Phones Create
|
|
5042
|
+
* @summary Phones Create
|
|
4959
5043
|
* @param {string} contactId
|
|
4960
|
-
* @param {
|
|
5044
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5045
|
+
* @param {*} [options] Override http request option.
|
|
5046
|
+
* @throws {RequiredError}
|
|
5047
|
+
*/
|
|
5048
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
5049
|
+
/**
|
|
5050
|
+
* Phones Delete
|
|
5051
|
+
* @summary Phones Delete
|
|
5052
|
+
* @param {string} phoneId
|
|
4961
5053
|
* @param {*} [options] Override http request option.
|
|
4962
5054
|
* @throws {RequiredError}
|
|
4963
5055
|
*/
|
|
4964
|
-
|
|
5056
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4965
5057
|
/**
|
|
4966
|
-
*
|
|
4967
|
-
* @summary
|
|
4968
|
-
* @param {string}
|
|
5058
|
+
* Phones Get
|
|
5059
|
+
* @summary Phones Get
|
|
5060
|
+
* @param {string} phoneId
|
|
4969
5061
|
* @param {*} [options] Override http request option.
|
|
4970
5062
|
* @throws {RequiredError}
|
|
4971
5063
|
*/
|
|
4972
|
-
|
|
5064
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
4973
5065
|
/**
|
|
4974
|
-
*
|
|
4975
|
-
* @summary
|
|
4976
|
-
* @param {string}
|
|
4977
|
-
* @param {
|
|
5066
|
+
* Phones Update
|
|
5067
|
+
* @summary Phones Update
|
|
5068
|
+
* @param {string} phoneId
|
|
5069
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
4978
5070
|
* @param {*} [options] Override http request option.
|
|
4979
5071
|
* @throws {RequiredError}
|
|
4980
5072
|
*/
|
|
4981
|
-
|
|
5073
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIPhone>>;
|
|
4982
5074
|
/**
|
|
4983
5075
|
* Providers Create
|
|
4984
5076
|
* @summary Providers Create
|
|
@@ -5071,6 +5163,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5071
5163
|
* @throws {RequiredError}
|
|
5072
5164
|
*/
|
|
5073
5165
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5166
|
+
/**
|
|
5167
|
+
* Addresses Get
|
|
5168
|
+
* @summary Addresses Get
|
|
5169
|
+
* @param {string} addressId
|
|
5170
|
+
* @param {*} [options] Override http request option.
|
|
5171
|
+
* @throws {RequiredError}
|
|
5172
|
+
*/
|
|
5173
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
5074
5174
|
/**
|
|
5075
5175
|
* Addresses Update
|
|
5076
5176
|
* @summary Addresses Update
|
|
@@ -5299,31 +5399,39 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5299
5399
|
*/
|
|
5300
5400
|
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
5401
|
/**
|
|
5302
|
-
*
|
|
5303
|
-
* @summary
|
|
5402
|
+
* Phones Create
|
|
5403
|
+
* @summary Phones Create
|
|
5304
5404
|
* @param {string} contactId
|
|
5305
|
-
* @param {
|
|
5405
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5406
|
+
* @param {*} [options] Override http request option.
|
|
5407
|
+
* @throws {RequiredError}
|
|
5408
|
+
*/
|
|
5409
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5410
|
+
/**
|
|
5411
|
+
* Phones Delete
|
|
5412
|
+
* @summary Phones Delete
|
|
5413
|
+
* @param {string} phoneId
|
|
5306
5414
|
* @param {*} [options] Override http request option.
|
|
5307
5415
|
* @throws {RequiredError}
|
|
5308
5416
|
*/
|
|
5309
|
-
|
|
5417
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5310
5418
|
/**
|
|
5311
|
-
*
|
|
5312
|
-
* @summary
|
|
5313
|
-
* @param {string}
|
|
5419
|
+
* Phones Get
|
|
5420
|
+
* @summary Phones Get
|
|
5421
|
+
* @param {string} phoneId
|
|
5314
5422
|
* @param {*} [options] Override http request option.
|
|
5315
5423
|
* @throws {RequiredError}
|
|
5316
5424
|
*/
|
|
5317
|
-
|
|
5425
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5318
5426
|
/**
|
|
5319
|
-
*
|
|
5320
|
-
* @summary
|
|
5321
|
-
* @param {string}
|
|
5322
|
-
* @param {
|
|
5427
|
+
* Phones Update
|
|
5428
|
+
* @summary Phones Update
|
|
5429
|
+
* @param {string} phoneId
|
|
5430
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
5323
5431
|
* @param {*} [options] Override http request option.
|
|
5324
5432
|
* @throws {RequiredError}
|
|
5325
5433
|
*/
|
|
5326
|
-
|
|
5434
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIPhone>;
|
|
5327
5435
|
/**
|
|
5328
5436
|
* Providers Create
|
|
5329
5437
|
* @summary Providers Create
|
|
@@ -5421,6 +5529,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5421
5529
|
* @memberof UnboundApi
|
|
5422
5530
|
*/
|
|
5423
5531
|
addressesDelete(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5532
|
+
/**
|
|
5533
|
+
* Addresses Get
|
|
5534
|
+
* @summary Addresses Get
|
|
5535
|
+
* @param {string} addressId
|
|
5536
|
+
* @param {*} [options] Override http request option.
|
|
5537
|
+
* @throws {RequiredError}
|
|
5538
|
+
* @memberof UnboundApi
|
|
5539
|
+
*/
|
|
5540
|
+
addressesGet(addressId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
5424
5541
|
/**
|
|
5425
5542
|
* Addresses Update
|
|
5426
5543
|
* @summary Addresses Update
|
|
@@ -5673,34 +5790,43 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5673
5790
|
*/
|
|
5674
5791
|
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
5792
|
/**
|
|
5676
|
-
*
|
|
5677
|
-
* @summary
|
|
5793
|
+
* Phones Create
|
|
5794
|
+
* @summary Phones Create
|
|
5678
5795
|
* @param {string} contactId
|
|
5679
|
-
* @param {
|
|
5796
|
+
* @param {APIPhoneCreate} aPIPhoneCreate
|
|
5797
|
+
* @param {*} [options] Override http request option.
|
|
5798
|
+
* @throws {RequiredError}
|
|
5799
|
+
* @memberof UnboundApi
|
|
5800
|
+
*/
|
|
5801
|
+
phonesCreate(contactId: string, aPIPhoneCreate: APIPhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5802
|
+
/**
|
|
5803
|
+
* Phones Delete
|
|
5804
|
+
* @summary Phones Delete
|
|
5805
|
+
* @param {string} phoneId
|
|
5680
5806
|
* @param {*} [options] Override http request option.
|
|
5681
5807
|
* @throws {RequiredError}
|
|
5682
5808
|
* @memberof UnboundApi
|
|
5683
5809
|
*/
|
|
5684
|
-
|
|
5810
|
+
phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5685
5811
|
/**
|
|
5686
|
-
*
|
|
5687
|
-
* @summary
|
|
5688
|
-
* @param {string}
|
|
5812
|
+
* Phones Get
|
|
5813
|
+
* @summary Phones Get
|
|
5814
|
+
* @param {string} phoneId
|
|
5689
5815
|
* @param {*} [options] Override http request option.
|
|
5690
5816
|
* @throws {RequiredError}
|
|
5691
5817
|
* @memberof UnboundApi
|
|
5692
5818
|
*/
|
|
5693
|
-
|
|
5819
|
+
phonesGet(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5694
5820
|
/**
|
|
5695
|
-
*
|
|
5696
|
-
* @summary
|
|
5697
|
-
* @param {string}
|
|
5698
|
-
* @param {
|
|
5821
|
+
* Phones Update
|
|
5822
|
+
* @summary Phones Update
|
|
5823
|
+
* @param {string} phoneId
|
|
5824
|
+
* @param {APIPhoneUpdate} aPIPhoneUpdate
|
|
5699
5825
|
* @param {*} [options] Override http request option.
|
|
5700
5826
|
* @throws {RequiredError}
|
|
5701
5827
|
* @memberof UnboundApi
|
|
5702
5828
|
*/
|
|
5703
|
-
|
|
5829
|
+
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5704
5830
|
/**
|
|
5705
5831
|
* Providers Create
|
|
5706
5832
|
* @summary Providers Create
|
|
@@ -5772,4 +5898,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5772
5898
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
5773
5899
|
}
|
|
5774
5900
|
|
|
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
|
|
5901
|
+
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 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 };
|