@ember-home/unbound-ts-client 0.0.68 → 0.0.70
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 +241 -265
- package/dist/index.d.ts +241 -265
- package/dist/index.js +358 -490
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +238 -370
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1137,22 +1137,53 @@ interface APIMessage {
|
|
|
1137
1137
|
/**
|
|
1138
1138
|
*
|
|
1139
1139
|
* @export
|
|
1140
|
-
* @interface
|
|
1140
|
+
* @interface APIMessageCreate1
|
|
1141
1141
|
*/
|
|
1142
|
-
interface
|
|
1142
|
+
interface APIMessageCreate1 {
|
|
1143
1143
|
/**
|
|
1144
1144
|
*
|
|
1145
1145
|
* @type {Messagetypedata1}
|
|
1146
|
-
* @memberof
|
|
1146
|
+
* @memberof APIMessageCreate1
|
|
1147
1147
|
*/
|
|
1148
1148
|
'messageTypeData': Messagetypedata1;
|
|
1149
1149
|
/**
|
|
1150
1150
|
*
|
|
1151
1151
|
* @type {string}
|
|
1152
|
-
* @memberof
|
|
1152
|
+
* @memberof APIMessageCreate1
|
|
1153
1153
|
*/
|
|
1154
1154
|
'body': string;
|
|
1155
1155
|
}
|
|
1156
|
+
/**
|
|
1157
|
+
*
|
|
1158
|
+
* @export
|
|
1159
|
+
* @interface APIMessageCreate2
|
|
1160
|
+
*/
|
|
1161
|
+
interface APIMessageCreate2 {
|
|
1162
|
+
/**
|
|
1163
|
+
*
|
|
1164
|
+
* @type {Messagetypedata1}
|
|
1165
|
+
* @memberof APIMessageCreate2
|
|
1166
|
+
*/
|
|
1167
|
+
'messageTypeData': Messagetypedata1;
|
|
1168
|
+
/**
|
|
1169
|
+
*
|
|
1170
|
+
* @type {string}
|
|
1171
|
+
* @memberof APIMessageCreate2
|
|
1172
|
+
*/
|
|
1173
|
+
'body': string;
|
|
1174
|
+
/**
|
|
1175
|
+
*
|
|
1176
|
+
* @type {string}
|
|
1177
|
+
* @memberof APIMessageCreate2
|
|
1178
|
+
*/
|
|
1179
|
+
'suggestionId': string;
|
|
1180
|
+
/**
|
|
1181
|
+
*
|
|
1182
|
+
* @type {SuggestionReason}
|
|
1183
|
+
* @memberof APIMessageCreate2
|
|
1184
|
+
*/
|
|
1185
|
+
'suggestionReason'?: SuggestionReason | null;
|
|
1186
|
+
}
|
|
1156
1187
|
/**
|
|
1157
1188
|
*
|
|
1158
1189
|
* @export
|
|
@@ -2105,19 +2136,6 @@ interface ListResponseAPIProvider {
|
|
|
2105
2136
|
*/
|
|
2106
2137
|
'data': Array<APIProvider>;
|
|
2107
2138
|
}
|
|
2108
|
-
/**
|
|
2109
|
-
*
|
|
2110
|
-
* @export
|
|
2111
|
-
* @interface ListResponseAPISuggestedReply
|
|
2112
|
-
*/
|
|
2113
|
-
interface ListResponseAPISuggestedReply {
|
|
2114
|
-
/**
|
|
2115
|
-
*
|
|
2116
|
-
* @type {Array<object>}
|
|
2117
|
-
* @memberof ListResponseAPISuggestedReply
|
|
2118
|
-
*/
|
|
2119
|
-
'data': Array<object>;
|
|
2120
|
-
}
|
|
2121
2139
|
/**
|
|
2122
2140
|
*
|
|
2123
2141
|
* @export
|
|
@@ -2143,6 +2161,11 @@ declare const MessageStatus: {
|
|
|
2143
2161
|
readonly Paused: "PAUSED";
|
|
2144
2162
|
};
|
|
2145
2163
|
type MessageStatus = typeof MessageStatus[keyof typeof MessageStatus];
|
|
2164
|
+
/**
|
|
2165
|
+
* @type Messagecreate
|
|
2166
|
+
* @export
|
|
2167
|
+
*/
|
|
2168
|
+
type Messagecreate = APIMessageCreate1 | APIMessageCreate2;
|
|
2146
2169
|
/**
|
|
2147
2170
|
* @type Messagetypedata
|
|
2148
2171
|
* @export
|
|
@@ -2675,6 +2698,22 @@ declare const ProviderStaffApiStaffTypeEnum: {
|
|
|
2675
2698
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2676
2699
|
};
|
|
2677
2700
|
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @export
|
|
2704
|
+
* @enum {string}
|
|
2705
|
+
*/
|
|
2706
|
+
declare const ReasonType: {
|
|
2707
|
+
readonly Correct: "CORRECT";
|
|
2708
|
+
readonly FactualError: "FACTUAL_ERROR";
|
|
2709
|
+
readonly MisunderstoodIntent: "MISUNDERSTOOD_INTENT";
|
|
2710
|
+
readonly ChangeTone: "CHANGE_TONE";
|
|
2711
|
+
readonly TooVerbose: "TOO_VERBOSE";
|
|
2712
|
+
readonly TooBrief: "TOO_BRIEF";
|
|
2713
|
+
readonly GrammerSpelling: "GRAMMER_SPELLING";
|
|
2714
|
+
readonly Other: "OTHER";
|
|
2715
|
+
};
|
|
2716
|
+
type ReasonType = typeof ReasonType[keyof typeof ReasonType];
|
|
2678
2717
|
/**
|
|
2679
2718
|
*
|
|
2680
2719
|
* @export
|
|
@@ -2972,6 +3011,35 @@ interface SubjectApi {
|
|
|
2972
3011
|
*/
|
|
2973
3012
|
'listingName': string;
|
|
2974
3013
|
}
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @export
|
|
3017
|
+
* @interface SuggestedReply
|
|
3018
|
+
*/
|
|
3019
|
+
interface SuggestedReply {
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof SuggestedReply
|
|
3024
|
+
*/
|
|
3025
|
+
'suggestedReplyId': string;
|
|
3026
|
+
/**
|
|
3027
|
+
*
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof SuggestedReply
|
|
3030
|
+
*/
|
|
3031
|
+
'suggestedReply': string;
|
|
3032
|
+
}
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
* @export
|
|
3036
|
+
* @enum {string}
|
|
3037
|
+
*/
|
|
3038
|
+
declare const SuggestionReason: {
|
|
3039
|
+
readonly Correct: "CORRECT";
|
|
3040
|
+
readonly Incorrect: "INCORRECT";
|
|
3041
|
+
};
|
|
3042
|
+
type SuggestionReason = typeof SuggestionReason[keyof typeof SuggestionReason];
|
|
2975
3043
|
/**
|
|
2976
3044
|
*
|
|
2977
3045
|
* @export
|
|
@@ -3165,79 +3233,79 @@ interface UpdateContactListing {
|
|
|
3165
3233
|
/**
|
|
3166
3234
|
*
|
|
3167
3235
|
* @export
|
|
3168
|
-
* @interface
|
|
3236
|
+
* @interface UserApi
|
|
3169
3237
|
*/
|
|
3170
|
-
interface
|
|
3238
|
+
interface UserApi {
|
|
3171
3239
|
/**
|
|
3172
3240
|
*
|
|
3173
3241
|
* @type {string}
|
|
3174
|
-
* @memberof
|
|
3242
|
+
* @memberof UserApi
|
|
3175
3243
|
*/
|
|
3176
3244
|
'firstName'?: string | null;
|
|
3177
3245
|
/**
|
|
3178
3246
|
*
|
|
3179
3247
|
* @type {string}
|
|
3180
|
-
* @memberof
|
|
3248
|
+
* @memberof UserApi
|
|
3181
3249
|
*/
|
|
3182
3250
|
'lastName'?: string | null;
|
|
3183
3251
|
/**
|
|
3184
3252
|
*
|
|
3185
3253
|
* @type {string}
|
|
3186
|
-
* @memberof
|
|
3254
|
+
* @memberof UserApi
|
|
3187
3255
|
*/
|
|
3188
3256
|
'phone'?: string | null;
|
|
3189
3257
|
/**
|
|
3190
3258
|
*
|
|
3191
3259
|
* @type {string}
|
|
3192
|
-
* @memberof
|
|
3260
|
+
* @memberof UserApi
|
|
3193
3261
|
*/
|
|
3194
3262
|
'streetAddress1'?: string | null;
|
|
3195
3263
|
/**
|
|
3196
3264
|
*
|
|
3197
3265
|
* @type {string}
|
|
3198
|
-
* @memberof
|
|
3266
|
+
* @memberof UserApi
|
|
3199
3267
|
*/
|
|
3200
3268
|
'streetAddress2'?: string | null;
|
|
3201
3269
|
/**
|
|
3202
3270
|
*
|
|
3203
3271
|
* @type {string}
|
|
3204
|
-
* @memberof
|
|
3272
|
+
* @memberof UserApi
|
|
3205
3273
|
*/
|
|
3206
3274
|
'city'?: string | null;
|
|
3207
3275
|
/**
|
|
3208
3276
|
*
|
|
3209
3277
|
* @type {string}
|
|
3210
|
-
* @memberof
|
|
3278
|
+
* @memberof UserApi
|
|
3211
3279
|
*/
|
|
3212
3280
|
'province'?: string | null;
|
|
3213
3281
|
/**
|
|
3214
3282
|
*
|
|
3215
3283
|
* @type {string}
|
|
3216
|
-
* @memberof
|
|
3284
|
+
* @memberof UserApi
|
|
3217
3285
|
*/
|
|
3218
3286
|
'postalCode'?: string | null;
|
|
3219
3287
|
/**
|
|
3220
3288
|
*
|
|
3221
3289
|
* @type {string}
|
|
3222
|
-
* @memberof
|
|
3290
|
+
* @memberof UserApi
|
|
3223
3291
|
*/
|
|
3224
3292
|
'country'?: string | null;
|
|
3225
3293
|
/**
|
|
3226
3294
|
*
|
|
3227
3295
|
* @type {string}
|
|
3228
|
-
* @memberof
|
|
3296
|
+
* @memberof UserApi
|
|
3229
3297
|
*/
|
|
3230
|
-
'userId': string
|
|
3298
|
+
'userId': string;
|
|
3231
3299
|
/**
|
|
3232
3300
|
*
|
|
3233
3301
|
* @type {string}
|
|
3234
|
-
* @memberof
|
|
3302
|
+
* @memberof UserApi
|
|
3235
3303
|
*/
|
|
3236
3304
|
'userName': string;
|
|
3237
3305
|
/**
|
|
3238
3306
|
*
|
|
3239
3307
|
* @type {string}
|
|
3240
|
-
* @memberof
|
|
3308
|
+
* @memberof UserApi
|
|
3241
3309
|
*/
|
|
3242
3310
|
'email': string;
|
|
3243
3311
|
}
|
|
@@ -3296,6 +3364,61 @@ declare class AccountsApi extends BaseAPI {
|
|
|
3296
3364
|
*/
|
|
3297
3365
|
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
|
|
3298
3366
|
}
|
|
3367
|
+
/**
|
|
3368
|
+
* AuthApi - axios parameter creator
|
|
3369
|
+
* @export
|
|
3370
|
+
*/
|
|
3371
|
+
declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3372
|
+
/**
|
|
3373
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3374
|
+
* @summary Get Me
|
|
3375
|
+
* @param {*} [options] Override http request option.
|
|
3376
|
+
* @throws {RequiredError}
|
|
3377
|
+
*/
|
|
3378
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3379
|
+
};
|
|
3380
|
+
/**
|
|
3381
|
+
* AuthApi - functional programming interface
|
|
3382
|
+
* @export
|
|
3383
|
+
*/
|
|
3384
|
+
declare const AuthApiFp: (configuration?: Configuration) => {
|
|
3385
|
+
/**
|
|
3386
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3387
|
+
* @summary Get Me
|
|
3388
|
+
* @param {*} [options] Override http request option.
|
|
3389
|
+
* @throws {RequiredError}
|
|
3390
|
+
*/
|
|
3391
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
3392
|
+
};
|
|
3393
|
+
/**
|
|
3394
|
+
* AuthApi - factory interface
|
|
3395
|
+
* @export
|
|
3396
|
+
*/
|
|
3397
|
+
declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3398
|
+
/**
|
|
3399
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3400
|
+
* @summary Get Me
|
|
3401
|
+
* @param {*} [options] Override http request option.
|
|
3402
|
+
* @throws {RequiredError}
|
|
3403
|
+
*/
|
|
3404
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
3405
|
+
};
|
|
3406
|
+
/**
|
|
3407
|
+
* AuthApi - object-oriented interface
|
|
3408
|
+
* @export
|
|
3409
|
+
* @class AuthApi
|
|
3410
|
+
* @extends {BaseAPI}
|
|
3411
|
+
*/
|
|
3412
|
+
declare class AuthApi extends BaseAPI {
|
|
3413
|
+
/**
|
|
3414
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3415
|
+
* @summary Get Me
|
|
3416
|
+
* @param {*} [options] Override http request option.
|
|
3417
|
+
* @throws {RequiredError}
|
|
3418
|
+
* @memberof AuthApi
|
|
3419
|
+
*/
|
|
3420
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
3421
|
+
}
|
|
3299
3422
|
/**
|
|
3300
3423
|
* ContactsApi - axios parameter creator
|
|
3301
3424
|
* @export
|
|
@@ -4082,6 +4205,14 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4082
4205
|
* @throws {RequiredError}
|
|
4083
4206
|
*/
|
|
4084
4207
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4208
|
+
/**
|
|
4209
|
+
*
|
|
4210
|
+
* @summary Conversations List Suggestions
|
|
4211
|
+
* @param {string} conversationId
|
|
4212
|
+
* @param {*} [options] Override http request option.
|
|
4213
|
+
* @throws {RequiredError}
|
|
4214
|
+
*/
|
|
4215
|
+
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4085
4216
|
/**
|
|
4086
4217
|
* Conversations Update
|
|
4087
4218
|
* @summary Conversations Update
|
|
@@ -4095,11 +4226,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4095
4226
|
* Messages Create
|
|
4096
4227
|
* @summary Messages Create
|
|
4097
4228
|
* @param {string} conversationId
|
|
4098
|
-
* @param {
|
|
4229
|
+
* @param {Messagecreate} messagecreate
|
|
4099
4230
|
* @param {*} [options] Override http request option.
|
|
4100
4231
|
* @throws {RequiredError}
|
|
4101
4232
|
*/
|
|
4102
|
-
messagesCreate: (conversationId: string,
|
|
4233
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4103
4234
|
/**
|
|
4104
4235
|
* Messages Get
|
|
4105
4236
|
* @summary Messages Get
|
|
@@ -4155,6 +4286,14 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4155
4286
|
* @throws {RequiredError}
|
|
4156
4287
|
*/
|
|
4157
4288
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
4289
|
+
/**
|
|
4290
|
+
*
|
|
4291
|
+
* @summary Conversations List Suggestions
|
|
4292
|
+
* @param {string} conversationId
|
|
4293
|
+
* @param {*} [options] Override http request option.
|
|
4294
|
+
* @throws {RequiredError}
|
|
4295
|
+
*/
|
|
4296
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
4158
4297
|
/**
|
|
4159
4298
|
* Conversations Update
|
|
4160
4299
|
* @summary Conversations Update
|
|
@@ -4168,11 +4307,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4168
4307
|
* Messages Create
|
|
4169
4308
|
* @summary Messages Create
|
|
4170
4309
|
* @param {string} conversationId
|
|
4171
|
-
* @param {
|
|
4310
|
+
* @param {Messagecreate} messagecreate
|
|
4172
4311
|
* @param {*} [options] Override http request option.
|
|
4173
4312
|
* @throws {RequiredError}
|
|
4174
4313
|
*/
|
|
4175
|
-
messagesCreate(conversationId: string,
|
|
4314
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
4176
4315
|
/**
|
|
4177
4316
|
* Messages Get
|
|
4178
4317
|
* @summary Messages Get
|
|
@@ -4228,6 +4367,14 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4228
4367
|
* @throws {RequiredError}
|
|
4229
4368
|
*/
|
|
4230
4369
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4370
|
+
/**
|
|
4371
|
+
*
|
|
4372
|
+
* @summary Conversations List Suggestions
|
|
4373
|
+
* @param {string} conversationId
|
|
4374
|
+
* @param {*} [options] Override http request option.
|
|
4375
|
+
* @throws {RequiredError}
|
|
4376
|
+
*/
|
|
4377
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
4231
4378
|
/**
|
|
4232
4379
|
* Conversations Update
|
|
4233
4380
|
* @summary Conversations Update
|
|
@@ -4241,11 +4388,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4241
4388
|
* Messages Create
|
|
4242
4389
|
* @summary Messages Create
|
|
4243
4390
|
* @param {string} conversationId
|
|
4244
|
-
* @param {
|
|
4391
|
+
* @param {Messagecreate} messagecreate
|
|
4245
4392
|
* @param {*} [options] Override http request option.
|
|
4246
4393
|
* @throws {RequiredError}
|
|
4247
4394
|
*/
|
|
4248
|
-
messagesCreate(conversationId: string,
|
|
4395
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
4249
4396
|
/**
|
|
4250
4397
|
* Messages Get
|
|
4251
4398
|
* @summary Messages Get
|
|
@@ -4305,6 +4452,15 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4305
4452
|
* @memberof ConversationsApi
|
|
4306
4453
|
*/
|
|
4307
4454
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4455
|
+
/**
|
|
4456
|
+
*
|
|
4457
|
+
* @summary Conversations List Suggestions
|
|
4458
|
+
* @param {string} conversationId
|
|
4459
|
+
* @param {*} [options] Override http request option.
|
|
4460
|
+
* @throws {RequiredError}
|
|
4461
|
+
* @memberof ConversationsApi
|
|
4462
|
+
*/
|
|
4463
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
4308
4464
|
/**
|
|
4309
4465
|
* Conversations Update
|
|
4310
4466
|
* @summary Conversations Update
|
|
@@ -4319,12 +4475,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4319
4475
|
* Messages Create
|
|
4320
4476
|
* @summary Messages Create
|
|
4321
4477
|
* @param {string} conversationId
|
|
4322
|
-
* @param {
|
|
4478
|
+
* @param {Messagecreate} messagecreate
|
|
4323
4479
|
* @param {*} [options] Override http request option.
|
|
4324
4480
|
* @throws {RequiredError}
|
|
4325
4481
|
* @memberof ConversationsApi
|
|
4326
4482
|
*/
|
|
4327
|
-
messagesCreate(conversationId: string,
|
|
4483
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
4328
4484
|
/**
|
|
4329
4485
|
* Messages Get
|
|
4330
4486
|
* @summary Messages Get
|
|
@@ -4972,98 +5128,6 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
4972
5128
|
*/
|
|
4973
5129
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
4974
5130
|
}
|
|
4975
|
-
/**
|
|
4976
|
-
* SuggestedRepliesApi - axios parameter creator
|
|
4977
|
-
* @export
|
|
4978
|
-
*/
|
|
4979
|
-
declare const SuggestedRepliesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4980
|
-
/**
|
|
4981
|
-
* SuggestedReplies Create
|
|
4982
|
-
* @summary SuggestedReplies Create
|
|
4983
|
-
* @param {object} body
|
|
4984
|
-
* @param {*} [options] Override http request option.
|
|
4985
|
-
* @throws {RequiredError}
|
|
4986
|
-
*/
|
|
4987
|
-
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4988
|
-
/**
|
|
4989
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
4990
|
-
* @summary SuggestedReplies List
|
|
4991
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4992
|
-
* @param {*} [options] Override http request option.
|
|
4993
|
-
* @throws {RequiredError}
|
|
4994
|
-
*/
|
|
4995
|
-
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4996
|
-
};
|
|
4997
|
-
/**
|
|
4998
|
-
* SuggestedRepliesApi - functional programming interface
|
|
4999
|
-
* @export
|
|
5000
|
-
*/
|
|
5001
|
-
declare const SuggestedRepliesApiFp: (configuration?: Configuration) => {
|
|
5002
|
-
/**
|
|
5003
|
-
* SuggestedReplies Create
|
|
5004
|
-
* @summary SuggestedReplies Create
|
|
5005
|
-
* @param {object} body
|
|
5006
|
-
* @param {*} [options] Override http request option.
|
|
5007
|
-
* @throws {RequiredError}
|
|
5008
|
-
*/
|
|
5009
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5010
|
-
/**
|
|
5011
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5012
|
-
* @summary SuggestedReplies List
|
|
5013
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5014
|
-
* @param {*} [options] Override http request option.
|
|
5015
|
-
* @throws {RequiredError}
|
|
5016
|
-
*/
|
|
5017
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
5018
|
-
};
|
|
5019
|
-
/**
|
|
5020
|
-
* SuggestedRepliesApi - factory interface
|
|
5021
|
-
* @export
|
|
5022
|
-
*/
|
|
5023
|
-
declare const SuggestedRepliesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5024
|
-
/**
|
|
5025
|
-
* SuggestedReplies Create
|
|
5026
|
-
* @summary SuggestedReplies Create
|
|
5027
|
-
* @param {object} body
|
|
5028
|
-
* @param {*} [options] Override http request option.
|
|
5029
|
-
* @throws {RequiredError}
|
|
5030
|
-
*/
|
|
5031
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
5032
|
-
/**
|
|
5033
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5034
|
-
* @summary SuggestedReplies List
|
|
5035
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5036
|
-
* @param {*} [options] Override http request option.
|
|
5037
|
-
* @throws {RequiredError}
|
|
5038
|
-
*/
|
|
5039
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
5040
|
-
};
|
|
5041
|
-
/**
|
|
5042
|
-
* SuggestedRepliesApi - object-oriented interface
|
|
5043
|
-
* @export
|
|
5044
|
-
* @class SuggestedRepliesApi
|
|
5045
|
-
* @extends {BaseAPI}
|
|
5046
|
-
*/
|
|
5047
|
-
declare class SuggestedRepliesApi extends BaseAPI {
|
|
5048
|
-
/**
|
|
5049
|
-
* SuggestedReplies Create
|
|
5050
|
-
* @summary SuggestedReplies Create
|
|
5051
|
-
* @param {object} body
|
|
5052
|
-
* @param {*} [options] Override http request option.
|
|
5053
|
-
* @throws {RequiredError}
|
|
5054
|
-
* @memberof SuggestedRepliesApi
|
|
5055
|
-
*/
|
|
5056
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
5057
|
-
/**
|
|
5058
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5059
|
-
* @summary SuggestedReplies List
|
|
5060
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5061
|
-
* @param {*} [options] Override http request option.
|
|
5062
|
-
* @throws {RequiredError}
|
|
5063
|
-
* @memberof SuggestedRepliesApi
|
|
5064
|
-
*/
|
|
5065
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
5066
|
-
}
|
|
5067
5131
|
/**
|
|
5068
5132
|
* UnboundApi - axios parameter creator
|
|
5069
5133
|
* @export
|
|
@@ -5209,6 +5273,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5209
5273
|
* @throws {RequiredError}
|
|
5210
5274
|
*/
|
|
5211
5275
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5276
|
+
/**
|
|
5277
|
+
*
|
|
5278
|
+
* @summary Conversations List Suggestions
|
|
5279
|
+
* @param {string} conversationId
|
|
5280
|
+
* @param {*} [options] Override http request option.
|
|
5281
|
+
* @throws {RequiredError}
|
|
5282
|
+
*/
|
|
5283
|
+
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5212
5284
|
/**
|
|
5213
5285
|
* Conversations Update
|
|
5214
5286
|
* @summary Conversations Update
|
|
@@ -5307,11 +5379,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5307
5379
|
* Messages Create
|
|
5308
5380
|
* @summary Messages Create
|
|
5309
5381
|
* @param {string} conversationId
|
|
5310
|
-
* @param {
|
|
5382
|
+
* @param {Messagecreate} messagecreate
|
|
5311
5383
|
* @param {*} [options] Override http request option.
|
|
5312
5384
|
* @throws {RequiredError}
|
|
5313
5385
|
*/
|
|
5314
|
-
messagesCreate: (conversationId: string,
|
|
5386
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5315
5387
|
/**
|
|
5316
5388
|
* Messages Get
|
|
5317
5389
|
* @summary Messages Get
|
|
@@ -5426,22 +5498,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5426
5498
|
* @throws {RequiredError}
|
|
5427
5499
|
*/
|
|
5428
5500
|
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5429
|
-
/**
|
|
5430
|
-
* SuggestedReplies Create
|
|
5431
|
-
* @summary SuggestedReplies Create
|
|
5432
|
-
* @param {object} body
|
|
5433
|
-
* @param {*} [options] Override http request option.
|
|
5434
|
-
* @throws {RequiredError}
|
|
5435
|
-
*/
|
|
5436
|
-
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5437
|
-
/**
|
|
5438
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5439
|
-
* @summary SuggestedReplies List
|
|
5440
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5441
|
-
* @param {*} [options] Override http request option.
|
|
5442
|
-
* @throws {RequiredError}
|
|
5443
|
-
*/
|
|
5444
|
-
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5445
5501
|
/**
|
|
5446
5502
|
*
|
|
5447
5503
|
* @summary Unifiedwebhook
|
|
@@ -5596,6 +5652,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5596
5652
|
* @throws {RequiredError}
|
|
5597
5653
|
*/
|
|
5598
5654
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5655
|
+
/**
|
|
5656
|
+
*
|
|
5657
|
+
* @summary Conversations List Suggestions
|
|
5658
|
+
* @param {string} conversationId
|
|
5659
|
+
* @param {*} [options] Override http request option.
|
|
5660
|
+
* @throws {RequiredError}
|
|
5661
|
+
*/
|
|
5662
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
5599
5663
|
/**
|
|
5600
5664
|
* Conversations Update
|
|
5601
5665
|
* @summary Conversations Update
|
|
@@ -5645,7 +5709,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5645
5709
|
* @param {*} [options] Override http request option.
|
|
5646
5710
|
* @throws {RequiredError}
|
|
5647
5711
|
*/
|
|
5648
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5712
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
5649
5713
|
/**
|
|
5650
5714
|
* Inboxes List
|
|
5651
5715
|
* @summary Inboxes List
|
|
@@ -5694,11 +5758,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5694
5758
|
* Messages Create
|
|
5695
5759
|
* @summary Messages Create
|
|
5696
5760
|
* @param {string} conversationId
|
|
5697
|
-
* @param {
|
|
5761
|
+
* @param {Messagecreate} messagecreate
|
|
5698
5762
|
* @param {*} [options] Override http request option.
|
|
5699
5763
|
* @throws {RequiredError}
|
|
5700
5764
|
*/
|
|
5701
|
-
messagesCreate(conversationId: string,
|
|
5765
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
5702
5766
|
/**
|
|
5703
5767
|
* Messages Get
|
|
5704
5768
|
* @summary Messages Get
|
|
@@ -5813,22 +5877,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5813
5877
|
* @throws {RequiredError}
|
|
5814
5878
|
*/
|
|
5815
5879
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIReservation>>;
|
|
5816
|
-
/**
|
|
5817
|
-
* SuggestedReplies Create
|
|
5818
|
-
* @summary SuggestedReplies Create
|
|
5819
|
-
* @param {object} body
|
|
5820
|
-
* @param {*} [options] Override http request option.
|
|
5821
|
-
* @throws {RequiredError}
|
|
5822
|
-
*/
|
|
5823
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5824
|
-
/**
|
|
5825
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5826
|
-
* @summary SuggestedReplies List
|
|
5827
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5828
|
-
* @param {*} [options] Override http request option.
|
|
5829
|
-
* @throws {RequiredError}
|
|
5830
|
-
*/
|
|
5831
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
5832
5880
|
/**
|
|
5833
5881
|
*
|
|
5834
5882
|
* @summary Unifiedwebhook
|
|
@@ -5983,6 +6031,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5983
6031
|
* @throws {RequiredError}
|
|
5984
6032
|
*/
|
|
5985
6033
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
6034
|
+
/**
|
|
6035
|
+
*
|
|
6036
|
+
* @summary Conversations List Suggestions
|
|
6037
|
+
* @param {string} conversationId
|
|
6038
|
+
* @param {*} [options] Override http request option.
|
|
6039
|
+
* @throws {RequiredError}
|
|
6040
|
+
*/
|
|
6041
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
5986
6042
|
/**
|
|
5987
6043
|
* Conversations Update
|
|
5988
6044
|
* @summary Conversations Update
|
|
@@ -6032,7 +6088,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6032
6088
|
* @param {*} [options] Override http request option.
|
|
6033
6089
|
* @throws {RequiredError}
|
|
6034
6090
|
*/
|
|
6035
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6091
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
6036
6092
|
/**
|
|
6037
6093
|
* Inboxes List
|
|
6038
6094
|
* @summary Inboxes List
|
|
@@ -6081,11 +6137,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6081
6137
|
* Messages Create
|
|
6082
6138
|
* @summary Messages Create
|
|
6083
6139
|
* @param {string} conversationId
|
|
6084
|
-
* @param {
|
|
6140
|
+
* @param {Messagecreate} messagecreate
|
|
6085
6141
|
* @param {*} [options] Override http request option.
|
|
6086
6142
|
* @throws {RequiredError}
|
|
6087
6143
|
*/
|
|
6088
|
-
messagesCreate(conversationId: string,
|
|
6144
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
6089
6145
|
/**
|
|
6090
6146
|
* Messages Get
|
|
6091
6147
|
* @summary Messages Get
|
|
@@ -6200,22 +6256,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6200
6256
|
* @throws {RequiredError}
|
|
6201
6257
|
*/
|
|
6202
6258
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
|
|
6203
|
-
/**
|
|
6204
|
-
* SuggestedReplies Create
|
|
6205
|
-
* @summary SuggestedReplies Create
|
|
6206
|
-
* @param {object} body
|
|
6207
|
-
* @param {*} [options] Override http request option.
|
|
6208
|
-
* @throws {RequiredError}
|
|
6209
|
-
*/
|
|
6210
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6211
|
-
/**
|
|
6212
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
6213
|
-
* @summary SuggestedReplies List
|
|
6214
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
6215
|
-
* @param {*} [options] Override http request option.
|
|
6216
|
-
* @throws {RequiredError}
|
|
6217
|
-
*/
|
|
6218
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
6219
6259
|
/**
|
|
6220
6260
|
*
|
|
6221
6261
|
* @summary Unifiedwebhook
|
|
@@ -6387,6 +6427,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6387
6427
|
* @memberof UnboundApi
|
|
6388
6428
|
*/
|
|
6389
6429
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
6430
|
+
/**
|
|
6431
|
+
*
|
|
6432
|
+
* @summary Conversations List Suggestions
|
|
6433
|
+
* @param {string} conversationId
|
|
6434
|
+
* @param {*} [options] Override http request option.
|
|
6435
|
+
* @throws {RequiredError}
|
|
6436
|
+
* @memberof UnboundApi
|
|
6437
|
+
*/
|
|
6438
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
6390
6439
|
/**
|
|
6391
6440
|
* Conversations Update
|
|
6392
6441
|
* @summary Conversations Update
|
|
@@ -6442,7 +6491,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6442
6491
|
* @throws {RequiredError}
|
|
6443
6492
|
* @memberof UnboundApi
|
|
6444
6493
|
*/
|
|
6445
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6494
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
6446
6495
|
/**
|
|
6447
6496
|
* Inboxes List
|
|
6448
6497
|
* @summary Inboxes List
|
|
@@ -6496,12 +6545,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6496
6545
|
* Messages Create
|
|
6497
6546
|
* @summary Messages Create
|
|
6498
6547
|
* @param {string} conversationId
|
|
6499
|
-
* @param {
|
|
6548
|
+
* @param {Messagecreate} messagecreate
|
|
6500
6549
|
* @param {*} [options] Override http request option.
|
|
6501
6550
|
* @throws {RequiredError}
|
|
6502
6551
|
* @memberof UnboundApi
|
|
6503
6552
|
*/
|
|
6504
|
-
messagesCreate(conversationId: string,
|
|
6553
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
6505
6554
|
/**
|
|
6506
6555
|
* Messages Get
|
|
6507
6556
|
* @summary Messages Get
|
|
@@ -6628,24 +6677,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6628
6677
|
* @memberof UnboundApi
|
|
6629
6678
|
*/
|
|
6630
6679
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
6631
|
-
/**
|
|
6632
|
-
* SuggestedReplies Create
|
|
6633
|
-
* @summary SuggestedReplies Create
|
|
6634
|
-
* @param {object} body
|
|
6635
|
-
* @param {*} [options] Override http request option.
|
|
6636
|
-
* @throws {RequiredError}
|
|
6637
|
-
* @memberof UnboundApi
|
|
6638
|
-
*/
|
|
6639
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6640
|
-
/**
|
|
6641
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
6642
|
-
* @summary SuggestedReplies List
|
|
6643
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
6644
|
-
* @param {*} [options] Override http request option.
|
|
6645
|
-
* @throws {RequiredError}
|
|
6646
|
-
* @memberof UnboundApi
|
|
6647
|
-
*/
|
|
6648
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
6649
6680
|
/**
|
|
6650
6681
|
*
|
|
6651
6682
|
* @summary Unifiedwebhook
|
|
@@ -6656,60 +6687,5 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6656
6687
|
*/
|
|
6657
6688
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6658
6689
|
}
|
|
6659
|
-
/**
|
|
6660
|
-
* UsersApi - axios parameter creator
|
|
6661
|
-
* @export
|
|
6662
|
-
*/
|
|
6663
|
-
declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6664
|
-
/**
|
|
6665
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6666
|
-
* @summary Get Me
|
|
6667
|
-
* @param {*} [options] Override http request option.
|
|
6668
|
-
* @throws {RequiredError}
|
|
6669
|
-
*/
|
|
6670
|
-
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6671
|
-
};
|
|
6672
|
-
/**
|
|
6673
|
-
* UsersApi - functional programming interface
|
|
6674
|
-
* @export
|
|
6675
|
-
*/
|
|
6676
|
-
declare const UsersApiFp: (configuration?: Configuration) => {
|
|
6677
|
-
/**
|
|
6678
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6679
|
-
* @summary Get Me
|
|
6680
|
-
* @param {*} [options] Override http request option.
|
|
6681
|
-
* @throws {RequiredError}
|
|
6682
|
-
*/
|
|
6683
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6684
|
-
};
|
|
6685
|
-
/**
|
|
6686
|
-
* UsersApi - factory interface
|
|
6687
|
-
* @export
|
|
6688
|
-
*/
|
|
6689
|
-
declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6690
|
-
/**
|
|
6691
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6692
|
-
* @summary Get Me
|
|
6693
|
-
* @param {*} [options] Override http request option.
|
|
6694
|
-
* @throws {RequiredError}
|
|
6695
|
-
*/
|
|
6696
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
6697
|
-
};
|
|
6698
|
-
/**
|
|
6699
|
-
* UsersApi - object-oriented interface
|
|
6700
|
-
* @export
|
|
6701
|
-
* @class UsersApi
|
|
6702
|
-
* @extends {BaseAPI}
|
|
6703
|
-
*/
|
|
6704
|
-
declare class UsersApi extends BaseAPI {
|
|
6705
|
-
/**
|
|
6706
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6707
|
-
* @summary Get Me
|
|
6708
|
-
* @param {*} [options] Override http request option.
|
|
6709
|
-
* @throws {RequiredError}
|
|
6710
|
-
* @memberof UsersApi
|
|
6711
|
-
*/
|
|
6712
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6713
|
-
}
|
|
6714
6690
|
|
|
6715
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type
|
|
6691
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, 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, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestedReply, SuggestionReason, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|