@ember-home/unbound-ts-client 0.0.26 → 0.0.27
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 +471 -27
- package/dist/index.d.ts +471 -27
- package/dist/index.js +578 -70
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +513 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -167,7 +167,7 @@ interface AccountsList {
|
|
|
167
167
|
* @type {string}
|
|
168
168
|
* @memberof AccountsList
|
|
169
169
|
*/
|
|
170
|
-
'accountId': string
|
|
170
|
+
'accountId': string;
|
|
171
171
|
/**
|
|
172
172
|
*
|
|
173
173
|
* @type {string}
|
|
@@ -179,13 +179,13 @@ interface AccountsList {
|
|
|
179
179
|
* @type {string}
|
|
180
180
|
* @memberof AccountsList
|
|
181
181
|
*/
|
|
182
|
-
'createdAt'?: string
|
|
182
|
+
'createdAt'?: string;
|
|
183
183
|
/**
|
|
184
184
|
*
|
|
185
185
|
* @type {string}
|
|
186
186
|
* @memberof AccountsList
|
|
187
187
|
*/
|
|
188
|
-
'updatedAt'?: string
|
|
188
|
+
'updatedAt'?: string;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
191
191
|
*
|
|
@@ -246,7 +246,7 @@ interface AddressApi {
|
|
|
246
246
|
* @type {boolean}
|
|
247
247
|
* @memberof AddressApi
|
|
248
248
|
*/
|
|
249
|
-
'isPrimary'
|
|
249
|
+
'isPrimary': boolean;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
*
|
|
@@ -405,7 +405,7 @@ interface AddressesCreate {
|
|
|
405
405
|
* @type {boolean}
|
|
406
406
|
* @memberof AddressesCreate
|
|
407
407
|
*/
|
|
408
|
-
'isPrimary'
|
|
408
|
+
'isPrimary': boolean;
|
|
409
409
|
}
|
|
410
410
|
/**
|
|
411
411
|
*
|
|
@@ -466,7 +466,7 @@ interface AddressesUpdate {
|
|
|
466
466
|
* @type {boolean}
|
|
467
467
|
* @memberof AddressesUpdate
|
|
468
468
|
*/
|
|
469
|
-
'isPrimary'
|
|
469
|
+
'isPrimary': boolean;
|
|
470
470
|
}
|
|
471
471
|
/**
|
|
472
472
|
*
|
|
@@ -510,6 +510,12 @@ interface ContactCreate {
|
|
|
510
510
|
* @memberof ContactCreate
|
|
511
511
|
*/
|
|
512
512
|
'primaryPhone'?: string | null;
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* @type {SrcResourceModelsHelperModelsCustomBaseModelCreateApi1}
|
|
516
|
+
* @memberof ContactCreate
|
|
517
|
+
*/
|
|
518
|
+
'primaryAddress'?: SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | null;
|
|
513
519
|
}
|
|
514
520
|
/**
|
|
515
521
|
*
|
|
@@ -1631,7 +1637,7 @@ interface ConversationsUpdate {
|
|
|
1631
1637
|
* @type Conversationtypedata
|
|
1632
1638
|
* @export
|
|
1633
1639
|
*/
|
|
1634
|
-
type Conversationtypedata =
|
|
1640
|
+
type Conversationtypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi3;
|
|
1635
1641
|
/**
|
|
1636
1642
|
* @type Conversationtypedata1
|
|
1637
1643
|
* @export
|
|
@@ -1959,6 +1965,19 @@ interface ListResponseManagedPhoneNumbersList {
|
|
|
1959
1965
|
*/
|
|
1960
1966
|
'data': Array<ManagedPhoneNumbersList>;
|
|
1961
1967
|
}
|
|
1968
|
+
/**
|
|
1969
|
+
*
|
|
1970
|
+
* @export
|
|
1971
|
+
* @interface ListResponseProvidersList
|
|
1972
|
+
*/
|
|
1973
|
+
interface ListResponseProvidersList {
|
|
1974
|
+
/**
|
|
1975
|
+
*
|
|
1976
|
+
* @type {Array<object>}
|
|
1977
|
+
* @memberof ListResponseProvidersList
|
|
1978
|
+
*/
|
|
1979
|
+
'data': Array<object>;
|
|
1980
|
+
}
|
|
1962
1981
|
/**
|
|
1963
1982
|
*
|
|
1964
1983
|
* @export
|
|
@@ -2506,7 +2525,7 @@ interface MessagesGet {
|
|
|
2506
2525
|
* @type Messagetypedata
|
|
2507
2526
|
* @export
|
|
2508
2527
|
*/
|
|
2509
|
-
type Messagetypedata =
|
|
2528
|
+
type Messagetypedata = SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi5;
|
|
2510
2529
|
/**
|
|
2511
2530
|
* @type Messagetypedata1
|
|
2512
2531
|
* @export
|
|
@@ -2857,6 +2876,55 @@ interface PhoneNumbersUpdate {
|
|
|
2857
2876
|
*/
|
|
2858
2877
|
'isPrimary': boolean;
|
|
2859
2878
|
}
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
* @export
|
|
2882
|
+
* @interface ProviderCreate
|
|
2883
|
+
*/
|
|
2884
|
+
interface ProviderCreate {
|
|
2885
|
+
/**
|
|
2886
|
+
*
|
|
2887
|
+
* @type {string}
|
|
2888
|
+
* @memberof ProviderCreate
|
|
2889
|
+
*/
|
|
2890
|
+
'providerApiLogin'?: string | null;
|
|
2891
|
+
/**
|
|
2892
|
+
*
|
|
2893
|
+
* @type {string}
|
|
2894
|
+
* @memberof ProviderCreate
|
|
2895
|
+
*/
|
|
2896
|
+
'providerApiKey'?: string | null;
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @type {string}
|
|
2900
|
+
* @memberof ProviderCreate
|
|
2901
|
+
*/
|
|
2902
|
+
'webhookLogin'?: string | null;
|
|
2903
|
+
/**
|
|
2904
|
+
*
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof ProviderCreate
|
|
2907
|
+
*/
|
|
2908
|
+
'webhookPassword'?: string | null;
|
|
2909
|
+
/**
|
|
2910
|
+
*
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof ProviderCreate
|
|
2913
|
+
*/
|
|
2914
|
+
'providerId'?: string | null;
|
|
2915
|
+
/**
|
|
2916
|
+
*
|
|
2917
|
+
* @type {string}
|
|
2918
|
+
* @memberof ProviderCreate
|
|
2919
|
+
*/
|
|
2920
|
+
'providerType': string;
|
|
2921
|
+
/**
|
|
2922
|
+
*
|
|
2923
|
+
* @type {string}
|
|
2924
|
+
* @memberof ProviderCreate
|
|
2925
|
+
*/
|
|
2926
|
+
'providerAccountId': string;
|
|
2927
|
+
}
|
|
2860
2928
|
/**
|
|
2861
2929
|
*
|
|
2862
2930
|
* @export
|
|
@@ -2874,6 +2942,43 @@ declare const ProviderMessageApiConversationTypeEnum: {
|
|
|
2874
2942
|
readonly Provider: "PROVIDER";
|
|
2875
2943
|
};
|
|
2876
2944
|
type ProviderMessageApiConversationTypeEnum = typeof ProviderMessageApiConversationTypeEnum[keyof typeof ProviderMessageApiConversationTypeEnum];
|
|
2945
|
+
/**
|
|
2946
|
+
*
|
|
2947
|
+
* @export
|
|
2948
|
+
* @interface ProviderUpdate
|
|
2949
|
+
*/
|
|
2950
|
+
interface ProviderUpdate {
|
|
2951
|
+
/**
|
|
2952
|
+
*
|
|
2953
|
+
* @type {string}
|
|
2954
|
+
* @memberof ProviderUpdate
|
|
2955
|
+
*/
|
|
2956
|
+
'providerApiLogin'?: string | null;
|
|
2957
|
+
/**
|
|
2958
|
+
*
|
|
2959
|
+
* @type {string}
|
|
2960
|
+
* @memberof ProviderUpdate
|
|
2961
|
+
*/
|
|
2962
|
+
'providerApiKey'?: string | null;
|
|
2963
|
+
/**
|
|
2964
|
+
*
|
|
2965
|
+
* @type {string}
|
|
2966
|
+
* @memberof ProviderUpdate
|
|
2967
|
+
*/
|
|
2968
|
+
'webhookLogin'?: string | null;
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @type {string}
|
|
2972
|
+
* @memberof ProviderUpdate
|
|
2973
|
+
*/
|
|
2974
|
+
'webhookPassword'?: string | null;
|
|
2975
|
+
/**
|
|
2976
|
+
*
|
|
2977
|
+
* @type {string}
|
|
2978
|
+
* @memberof ProviderUpdate
|
|
2979
|
+
*/
|
|
2980
|
+
'testAttr'?: string | null;
|
|
2981
|
+
}
|
|
2877
2982
|
/**
|
|
2878
2983
|
*
|
|
2879
2984
|
* @export
|
|
@@ -3006,24 +3111,44 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
3006
3111
|
* @type {string}
|
|
3007
3112
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3008
3113
|
*/
|
|
3009
|
-
'
|
|
3114
|
+
'street1': string;
|
|
3010
3115
|
/**
|
|
3011
3116
|
*
|
|
3012
3117
|
* @type {string}
|
|
3013
3118
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3014
3119
|
*/
|
|
3015
|
-
'
|
|
3120
|
+
'street2'?: string | null;
|
|
3016
3121
|
/**
|
|
3017
3122
|
*
|
|
3018
|
-
* @type {
|
|
3123
|
+
* @type {string}
|
|
3019
3124
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3020
3125
|
*/
|
|
3021
|
-
'
|
|
3126
|
+
'country': string;
|
|
3127
|
+
/**
|
|
3128
|
+
*
|
|
3129
|
+
* @type {string}
|
|
3130
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3131
|
+
*/
|
|
3132
|
+
'locality': string;
|
|
3133
|
+
/**
|
|
3134
|
+
*
|
|
3135
|
+
* @type {string}
|
|
3136
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3137
|
+
*/
|
|
3138
|
+
'postalCode': string;
|
|
3139
|
+
/**
|
|
3140
|
+
*
|
|
3141
|
+
* @type {string}
|
|
3142
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3143
|
+
*/
|
|
3144
|
+
'region': string;
|
|
3145
|
+
/**
|
|
3146
|
+
*
|
|
3147
|
+
* @type {boolean}
|
|
3148
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3149
|
+
*/
|
|
3150
|
+
'isPrimary'?: boolean | null;
|
|
3022
3151
|
}
|
|
3023
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum: {
|
|
3024
|
-
readonly Twilio: "TWILIO";
|
|
3025
|
-
};
|
|
3026
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum];
|
|
3027
3152
|
/**
|
|
3028
3153
|
*
|
|
3029
3154
|
* @export
|
|
@@ -3036,15 +3161,21 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
3036
3161
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
3037
3162
|
*/
|
|
3038
3163
|
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum;
|
|
3164
|
+
/**
|
|
3165
|
+
*
|
|
3166
|
+
* @type {string}
|
|
3167
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
3168
|
+
*/
|
|
3169
|
+
'fromManagedPhoneId': string;
|
|
3039
3170
|
/**
|
|
3040
3171
|
*
|
|
3041
3172
|
* @type {Array<string>}
|
|
3042
3173
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
3043
3174
|
*/
|
|
3044
|
-
'
|
|
3175
|
+
'toContactPhoneIds'?: Array<string> | null;
|
|
3045
3176
|
}
|
|
3046
3177
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum: {
|
|
3047
|
-
readonly
|
|
3178
|
+
readonly Twilio: "TWILIO";
|
|
3048
3179
|
};
|
|
3049
3180
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum];
|
|
3050
3181
|
/**
|
|
@@ -3061,13 +3192,13 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 {
|
|
|
3061
3192
|
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum;
|
|
3062
3193
|
/**
|
|
3063
3194
|
*
|
|
3064
|
-
* @type {string}
|
|
3195
|
+
* @type {Array<string>}
|
|
3065
3196
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
3066
3197
|
*/
|
|
3067
|
-
'
|
|
3198
|
+
'emailIds'?: Array<string> | null;
|
|
3068
3199
|
}
|
|
3069
3200
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum: {
|
|
3070
|
-
readonly
|
|
3201
|
+
readonly Email: "EMAIL";
|
|
3071
3202
|
};
|
|
3072
3203
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum];
|
|
3073
3204
|
/**
|
|
@@ -3087,30 +3218,53 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 {
|
|
|
3087
3218
|
* @type {string}
|
|
3088
3219
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
3089
3220
|
*/
|
|
3221
|
+
'body': string;
|
|
3222
|
+
}
|
|
3223
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum: {
|
|
3224
|
+
readonly Twilio: "TWILIO";
|
|
3225
|
+
};
|
|
3226
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum];
|
|
3227
|
+
/**
|
|
3228
|
+
*
|
|
3229
|
+
* @export
|
|
3230
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3231
|
+
*/
|
|
3232
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5 {
|
|
3233
|
+
/**
|
|
3234
|
+
*
|
|
3235
|
+
* @type {string}
|
|
3236
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3237
|
+
*/
|
|
3238
|
+
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum;
|
|
3239
|
+
/**
|
|
3240
|
+
*
|
|
3241
|
+
* @type {string}
|
|
3242
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3243
|
+
*/
|
|
3090
3244
|
'outboundFromManagedEmailId'?: string | null;
|
|
3091
3245
|
/**
|
|
3092
3246
|
*
|
|
3093
3247
|
* @type {string}
|
|
3094
|
-
* @memberof
|
|
3248
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3095
3249
|
*/
|
|
3096
3250
|
'subject': string;
|
|
3097
3251
|
/**
|
|
3098
3252
|
*
|
|
3099
3253
|
* @type {string}
|
|
3100
|
-
* @memberof
|
|
3254
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3101
3255
|
*/
|
|
3102
3256
|
'htmlBody': string | null;
|
|
3103
3257
|
/**
|
|
3104
3258
|
*
|
|
3105
3259
|
* @type {string}
|
|
3106
|
-
* @memberof
|
|
3260
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
3107
3261
|
*/
|
|
3108
3262
|
'plainBody': string | null;
|
|
3109
3263
|
}
|
|
3110
|
-
declare const
|
|
3264
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum: {
|
|
3111
3265
|
readonly Email: "EMAIL";
|
|
3112
3266
|
};
|
|
3113
|
-
type
|
|
3267
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum];
|
|
3114
3268
|
/**
|
|
3115
3269
|
*
|
|
3116
3270
|
* @export
|
|
@@ -5157,6 +5311,164 @@ declare class PhoneNumbersApi extends BaseAPI {
|
|
|
5157
5311
|
*/
|
|
5158
5312
|
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersUpdate, any>>;
|
|
5159
5313
|
}
|
|
5314
|
+
/**
|
|
5315
|
+
* ProvidersApi - axios parameter creator
|
|
5316
|
+
* @export
|
|
5317
|
+
*/
|
|
5318
|
+
declare const ProvidersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5319
|
+
/**
|
|
5320
|
+
*
|
|
5321
|
+
* @summary Providers Create
|
|
5322
|
+
* @param {ProviderCreate} providerCreate
|
|
5323
|
+
* @param {*} [options] Override http request option.
|
|
5324
|
+
* @throws {RequiredError}
|
|
5325
|
+
*/
|
|
5326
|
+
providersCreate: (providerCreate: ProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5327
|
+
/**
|
|
5328
|
+
*
|
|
5329
|
+
* @summary Providers Get
|
|
5330
|
+
* @param {string} providerId
|
|
5331
|
+
* @param {*} [options] Override http request option.
|
|
5332
|
+
* @throws {RequiredError}
|
|
5333
|
+
*/
|
|
5334
|
+
providersGet: (providerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5335
|
+
/**
|
|
5336
|
+
*
|
|
5337
|
+
* @summary Providers List
|
|
5338
|
+
* @param {*} [options] Override http request option.
|
|
5339
|
+
* @throws {RequiredError}
|
|
5340
|
+
*/
|
|
5341
|
+
providersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5342
|
+
/**
|
|
5343
|
+
*
|
|
5344
|
+
* @summary Providers Update
|
|
5345
|
+
* @param {string} providerId
|
|
5346
|
+
* @param {ProviderUpdate} providerUpdate
|
|
5347
|
+
* @param {*} [options] Override http request option.
|
|
5348
|
+
* @throws {RequiredError}
|
|
5349
|
+
*/
|
|
5350
|
+
providersUpdate: (providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5351
|
+
};
|
|
5352
|
+
/**
|
|
5353
|
+
* ProvidersApi - functional programming interface
|
|
5354
|
+
* @export
|
|
5355
|
+
*/
|
|
5356
|
+
declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
5357
|
+
/**
|
|
5358
|
+
*
|
|
5359
|
+
* @summary Providers Create
|
|
5360
|
+
* @param {ProviderCreate} providerCreate
|
|
5361
|
+
* @param {*} [options] Override http request option.
|
|
5362
|
+
* @throws {RequiredError}
|
|
5363
|
+
*/
|
|
5364
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5365
|
+
/**
|
|
5366
|
+
*
|
|
5367
|
+
* @summary Providers Get
|
|
5368
|
+
* @param {string} providerId
|
|
5369
|
+
* @param {*} [options] Override http request option.
|
|
5370
|
+
* @throws {RequiredError}
|
|
5371
|
+
*/
|
|
5372
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5373
|
+
/**
|
|
5374
|
+
*
|
|
5375
|
+
* @summary Providers List
|
|
5376
|
+
* @param {*} [options] Override http request option.
|
|
5377
|
+
* @throws {RequiredError}
|
|
5378
|
+
*/
|
|
5379
|
+
providersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseProvidersList>>;
|
|
5380
|
+
/**
|
|
5381
|
+
*
|
|
5382
|
+
* @summary Providers Update
|
|
5383
|
+
* @param {string} providerId
|
|
5384
|
+
* @param {ProviderUpdate} providerUpdate
|
|
5385
|
+
* @param {*} [options] Override http request option.
|
|
5386
|
+
* @throws {RequiredError}
|
|
5387
|
+
*/
|
|
5388
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5389
|
+
};
|
|
5390
|
+
/**
|
|
5391
|
+
* ProvidersApi - factory interface
|
|
5392
|
+
* @export
|
|
5393
|
+
*/
|
|
5394
|
+
declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5395
|
+
/**
|
|
5396
|
+
*
|
|
5397
|
+
* @summary Providers Create
|
|
5398
|
+
* @param {ProviderCreate} providerCreate
|
|
5399
|
+
* @param {*} [options] Override http request option.
|
|
5400
|
+
* @throws {RequiredError}
|
|
5401
|
+
*/
|
|
5402
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
5403
|
+
/**
|
|
5404
|
+
*
|
|
5405
|
+
* @summary Providers Get
|
|
5406
|
+
* @param {string} providerId
|
|
5407
|
+
* @param {*} [options] Override http request option.
|
|
5408
|
+
* @throws {RequiredError}
|
|
5409
|
+
*/
|
|
5410
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
5411
|
+
/**
|
|
5412
|
+
*
|
|
5413
|
+
* @summary Providers List
|
|
5414
|
+
* @param {*} [options] Override http request option.
|
|
5415
|
+
* @throws {RequiredError}
|
|
5416
|
+
*/
|
|
5417
|
+
providersList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseProvidersList>;
|
|
5418
|
+
/**
|
|
5419
|
+
*
|
|
5420
|
+
* @summary Providers Update
|
|
5421
|
+
* @param {string} providerId
|
|
5422
|
+
* @param {ProviderUpdate} providerUpdate
|
|
5423
|
+
* @param {*} [options] Override http request option.
|
|
5424
|
+
* @throws {RequiredError}
|
|
5425
|
+
*/
|
|
5426
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
5427
|
+
};
|
|
5428
|
+
/**
|
|
5429
|
+
* ProvidersApi - object-oriented interface
|
|
5430
|
+
* @export
|
|
5431
|
+
* @class ProvidersApi
|
|
5432
|
+
* @extends {BaseAPI}
|
|
5433
|
+
*/
|
|
5434
|
+
declare class ProvidersApi extends BaseAPI {
|
|
5435
|
+
/**
|
|
5436
|
+
*
|
|
5437
|
+
* @summary Providers Create
|
|
5438
|
+
* @param {ProviderCreate} providerCreate
|
|
5439
|
+
* @param {*} [options] Override http request option.
|
|
5440
|
+
* @throws {RequiredError}
|
|
5441
|
+
* @memberof ProvidersApi
|
|
5442
|
+
*/
|
|
5443
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
5444
|
+
/**
|
|
5445
|
+
*
|
|
5446
|
+
* @summary Providers Get
|
|
5447
|
+
* @param {string} providerId
|
|
5448
|
+
* @param {*} [options] Override http request option.
|
|
5449
|
+
* @throws {RequiredError}
|
|
5450
|
+
* @memberof ProvidersApi
|
|
5451
|
+
*/
|
|
5452
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
5453
|
+
/**
|
|
5454
|
+
*
|
|
5455
|
+
* @summary Providers List
|
|
5456
|
+
* @param {*} [options] Override http request option.
|
|
5457
|
+
* @throws {RequiredError}
|
|
5458
|
+
* @memberof ProvidersApi
|
|
5459
|
+
*/
|
|
5460
|
+
providersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseProvidersList, any>>;
|
|
5461
|
+
/**
|
|
5462
|
+
*
|
|
5463
|
+
* @summary Providers Update
|
|
5464
|
+
* @param {string} providerId
|
|
5465
|
+
* @param {ProviderUpdate} providerUpdate
|
|
5466
|
+
* @param {*} [options] Override http request option.
|
|
5467
|
+
* @throws {RequiredError}
|
|
5468
|
+
* @memberof ProvidersApi
|
|
5469
|
+
*/
|
|
5470
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
5471
|
+
}
|
|
5160
5472
|
/**
|
|
5161
5473
|
* ReservationsApi - axios parameter creator
|
|
5162
5474
|
* @export
|
|
@@ -5514,6 +5826,38 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5514
5826
|
* @throws {RequiredError}
|
|
5515
5827
|
*/
|
|
5516
5828
|
phoneNumbersUpdate: (phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5829
|
+
/**
|
|
5830
|
+
*
|
|
5831
|
+
* @summary Providers Create
|
|
5832
|
+
* @param {ProviderCreate} providerCreate
|
|
5833
|
+
* @param {*} [options] Override http request option.
|
|
5834
|
+
* @throws {RequiredError}
|
|
5835
|
+
*/
|
|
5836
|
+
providersCreate: (providerCreate: ProviderCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5837
|
+
/**
|
|
5838
|
+
*
|
|
5839
|
+
* @summary Providers Get
|
|
5840
|
+
* @param {string} providerId
|
|
5841
|
+
* @param {*} [options] Override http request option.
|
|
5842
|
+
* @throws {RequiredError}
|
|
5843
|
+
*/
|
|
5844
|
+
providersGet: (providerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5845
|
+
/**
|
|
5846
|
+
*
|
|
5847
|
+
* @summary Providers List
|
|
5848
|
+
* @param {*} [options] Override http request option.
|
|
5849
|
+
* @throws {RequiredError}
|
|
5850
|
+
*/
|
|
5851
|
+
providersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5852
|
+
/**
|
|
5853
|
+
*
|
|
5854
|
+
* @summary Providers Update
|
|
5855
|
+
* @param {string} providerId
|
|
5856
|
+
* @param {ProviderUpdate} providerUpdate
|
|
5857
|
+
* @param {*} [options] Override http request option.
|
|
5858
|
+
* @throws {RequiredError}
|
|
5859
|
+
*/
|
|
5860
|
+
providersUpdate: (providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5517
5861
|
/**
|
|
5518
5862
|
*
|
|
5519
5863
|
* @summary Reservations List
|
|
@@ -5811,6 +6155,38 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5811
6155
|
* @throws {RequiredError}
|
|
5812
6156
|
*/
|
|
5813
6157
|
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhoneNumbersUpdate>>;
|
|
6158
|
+
/**
|
|
6159
|
+
*
|
|
6160
|
+
* @summary Providers Create
|
|
6161
|
+
* @param {ProviderCreate} providerCreate
|
|
6162
|
+
* @param {*} [options] Override http request option.
|
|
6163
|
+
* @throws {RequiredError}
|
|
6164
|
+
*/
|
|
6165
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
6166
|
+
/**
|
|
6167
|
+
*
|
|
6168
|
+
* @summary Providers Get
|
|
6169
|
+
* @param {string} providerId
|
|
6170
|
+
* @param {*} [options] Override http request option.
|
|
6171
|
+
* @throws {RequiredError}
|
|
6172
|
+
*/
|
|
6173
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
6174
|
+
/**
|
|
6175
|
+
*
|
|
6176
|
+
* @summary Providers List
|
|
6177
|
+
* @param {*} [options] Override http request option.
|
|
6178
|
+
* @throws {RequiredError}
|
|
6179
|
+
*/
|
|
6180
|
+
providersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseProvidersList>>;
|
|
6181
|
+
/**
|
|
6182
|
+
*
|
|
6183
|
+
* @summary Providers Update
|
|
6184
|
+
* @param {string} providerId
|
|
6185
|
+
* @param {ProviderUpdate} providerUpdate
|
|
6186
|
+
* @param {*} [options] Override http request option.
|
|
6187
|
+
* @throws {RequiredError}
|
|
6188
|
+
*/
|
|
6189
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5814
6190
|
/**
|
|
5815
6191
|
*
|
|
5816
6192
|
* @summary Reservations List
|
|
@@ -6108,6 +6484,38 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6108
6484
|
* @throws {RequiredError}
|
|
6109
6485
|
*/
|
|
6110
6486
|
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): AxiosPromise<PhoneNumbersUpdate>;
|
|
6487
|
+
/**
|
|
6488
|
+
*
|
|
6489
|
+
* @summary Providers Create
|
|
6490
|
+
* @param {ProviderCreate} providerCreate
|
|
6491
|
+
* @param {*} [options] Override http request option.
|
|
6492
|
+
* @throws {RequiredError}
|
|
6493
|
+
*/
|
|
6494
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6495
|
+
/**
|
|
6496
|
+
*
|
|
6497
|
+
* @summary Providers Get
|
|
6498
|
+
* @param {string} providerId
|
|
6499
|
+
* @param {*} [options] Override http request option.
|
|
6500
|
+
* @throws {RequiredError}
|
|
6501
|
+
*/
|
|
6502
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6503
|
+
/**
|
|
6504
|
+
*
|
|
6505
|
+
* @summary Providers List
|
|
6506
|
+
* @param {*} [options] Override http request option.
|
|
6507
|
+
* @throws {RequiredError}
|
|
6508
|
+
*/
|
|
6509
|
+
providersList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseProvidersList>;
|
|
6510
|
+
/**
|
|
6511
|
+
*
|
|
6512
|
+
* @summary Providers Update
|
|
6513
|
+
* @param {string} providerId
|
|
6514
|
+
* @param {ProviderUpdate} providerUpdate
|
|
6515
|
+
* @param {*} [options] Override http request option.
|
|
6516
|
+
* @throws {RequiredError}
|
|
6517
|
+
*/
|
|
6518
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6111
6519
|
/**
|
|
6112
6520
|
*
|
|
6113
6521
|
* @summary Reservations List
|
|
@@ -6436,6 +6844,42 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6436
6844
|
* @memberof UnboundApi
|
|
6437
6845
|
*/
|
|
6438
6846
|
phoneNumbersUpdate(phoneNumberId: string, phoneNumberUpdate: PhoneNumberUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhoneNumbersUpdate, any>>;
|
|
6847
|
+
/**
|
|
6848
|
+
*
|
|
6849
|
+
* @summary Providers Create
|
|
6850
|
+
* @param {ProviderCreate} providerCreate
|
|
6851
|
+
* @param {*} [options] Override http request option.
|
|
6852
|
+
* @throws {RequiredError}
|
|
6853
|
+
* @memberof UnboundApi
|
|
6854
|
+
*/
|
|
6855
|
+
providersCreate(providerCreate: ProviderCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6856
|
+
/**
|
|
6857
|
+
*
|
|
6858
|
+
* @summary Providers Get
|
|
6859
|
+
* @param {string} providerId
|
|
6860
|
+
* @param {*} [options] Override http request option.
|
|
6861
|
+
* @throws {RequiredError}
|
|
6862
|
+
* @memberof UnboundApi
|
|
6863
|
+
*/
|
|
6864
|
+
providersGet(providerId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6865
|
+
/**
|
|
6866
|
+
*
|
|
6867
|
+
* @summary Providers List
|
|
6868
|
+
* @param {*} [options] Override http request option.
|
|
6869
|
+
* @throws {RequiredError}
|
|
6870
|
+
* @memberof UnboundApi
|
|
6871
|
+
*/
|
|
6872
|
+
providersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseProvidersList, any>>;
|
|
6873
|
+
/**
|
|
6874
|
+
*
|
|
6875
|
+
* @summary Providers Update
|
|
6876
|
+
* @param {string} providerId
|
|
6877
|
+
* @param {ProviderUpdate} providerUpdate
|
|
6878
|
+
* @param {*} [options] Override http request option.
|
|
6879
|
+
* @throws {RequiredError}
|
|
6880
|
+
* @memberof UnboundApi
|
|
6881
|
+
*/
|
|
6882
|
+
providersUpdate(providerId: string, providerUpdate: ProviderUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6439
6883
|
/**
|
|
6440
6884
|
*
|
|
6441
6885
|
* @summary Reservations List
|
|
@@ -6462,4 +6906,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6462
6906
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6463
6907
|
}
|
|
6464
6908
|
|
|
6465
|
-
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, ContactSortBy, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type ConversationCreate, ConversationStatus, type ConversationUpdate, type Conversations, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type ConversationsCreate, type ConversationsGet, type ConversationsUpdate, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, type EmailUpdate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type EmailsUpdate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAccountsList, type ListResponseInquiriesList, type ListResponseManagedPhoneNumbersList, ListingSortBy, type Listings, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsGet, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type ManagedPhoneNumbersList, type MessageCreate, MessageDirection, MessageStatus, type Messages, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type MessagesCreate, type MessagesGet, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseContacts, type PaginatedResponseConversations, type PaginatedResponseListings, type PaginatedResponseMessages, type PaginatedResponseReservations, PaginationDirection, type PhoneApi, type PhoneNumberCreate, type PhoneNumberUpdate, PhoneNumbersApi, PhoneNumbersApiAxiosParamCreator, PhoneNumbersApiFactory, PhoneNumbersApiFp, type PhoneNumbersCreate, type PhoneNumbersUpdate, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type Reservations, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1,
|
|
6909
|
+
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, ContactSortBy, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type ConversationCreate, ConversationStatus, type ConversationUpdate, type Conversations, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type ConversationsCreate, type ConversationsGet, type ConversationsUpdate, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, type EmailUpdate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type EmailsUpdate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAccountsList, type ListResponseInquiriesList, type ListResponseManagedPhoneNumbersList, type ListResponseProvidersList, ListingSortBy, type Listings, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsGet, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type ManagedPhoneNumbersList, type MessageCreate, MessageDirection, MessageStatus, type Messages, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type MessagesCreate, type MessagesGet, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseContacts, type PaginatedResponseConversations, type PaginatedResponseListings, type PaginatedResponseMessages, type PaginatedResponseReservations, PaginationDirection, type PhoneApi, type PhoneNumberCreate, type PhoneNumberUpdate, PhoneNumbersApi, PhoneNumbersApiAxiosParamCreator, PhoneNumbersApiFactory, PhoneNumbersApiFp, type PhoneNumbersCreate, type PhoneNumbersUpdate, type ProviderCreate, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type Reservations, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5, SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|