@ember-home/unbound-ts-client 0.0.68 → 0.0.69
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 +206 -265
- package/dist/index.d.ts +206 -265
- package/dist/index.js +348 -491
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +227 -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
|
|
@@ -2972,6 +2995,16 @@ interface SubjectApi {
|
|
|
2972
2995
|
*/
|
|
2973
2996
|
'listingName': string;
|
|
2974
2997
|
}
|
|
2998
|
+
/**
|
|
2999
|
+
*
|
|
3000
|
+
* @export
|
|
3001
|
+
* @enum {string}
|
|
3002
|
+
*/
|
|
3003
|
+
declare const SuggestionReason: {
|
|
3004
|
+
readonly Correct: "CORRECT";
|
|
3005
|
+
readonly Incorrect: "INCORRECT";
|
|
3006
|
+
};
|
|
3007
|
+
type SuggestionReason = typeof SuggestionReason[keyof typeof SuggestionReason];
|
|
2975
3008
|
/**
|
|
2976
3009
|
*
|
|
2977
3010
|
* @export
|
|
@@ -3165,79 +3198,79 @@ interface UpdateContactListing {
|
|
|
3165
3198
|
/**
|
|
3166
3199
|
*
|
|
3167
3200
|
* @export
|
|
3168
|
-
* @interface
|
|
3201
|
+
* @interface UserApi
|
|
3169
3202
|
*/
|
|
3170
|
-
interface
|
|
3203
|
+
interface UserApi {
|
|
3171
3204
|
/**
|
|
3172
3205
|
*
|
|
3173
3206
|
* @type {string}
|
|
3174
|
-
* @memberof
|
|
3207
|
+
* @memberof UserApi
|
|
3175
3208
|
*/
|
|
3176
3209
|
'firstName'?: string | null;
|
|
3177
3210
|
/**
|
|
3178
3211
|
*
|
|
3179
3212
|
* @type {string}
|
|
3180
|
-
* @memberof
|
|
3213
|
+
* @memberof UserApi
|
|
3181
3214
|
*/
|
|
3182
3215
|
'lastName'?: string | null;
|
|
3183
3216
|
/**
|
|
3184
3217
|
*
|
|
3185
3218
|
* @type {string}
|
|
3186
|
-
* @memberof
|
|
3219
|
+
* @memberof UserApi
|
|
3187
3220
|
*/
|
|
3188
3221
|
'phone'?: string | null;
|
|
3189
3222
|
/**
|
|
3190
3223
|
*
|
|
3191
3224
|
* @type {string}
|
|
3192
|
-
* @memberof
|
|
3225
|
+
* @memberof UserApi
|
|
3193
3226
|
*/
|
|
3194
3227
|
'streetAddress1'?: string | null;
|
|
3195
3228
|
/**
|
|
3196
3229
|
*
|
|
3197
3230
|
* @type {string}
|
|
3198
|
-
* @memberof
|
|
3231
|
+
* @memberof UserApi
|
|
3199
3232
|
*/
|
|
3200
3233
|
'streetAddress2'?: string | null;
|
|
3201
3234
|
/**
|
|
3202
3235
|
*
|
|
3203
3236
|
* @type {string}
|
|
3204
|
-
* @memberof
|
|
3237
|
+
* @memberof UserApi
|
|
3205
3238
|
*/
|
|
3206
3239
|
'city'?: string | null;
|
|
3207
3240
|
/**
|
|
3208
3241
|
*
|
|
3209
3242
|
* @type {string}
|
|
3210
|
-
* @memberof
|
|
3243
|
+
* @memberof UserApi
|
|
3211
3244
|
*/
|
|
3212
3245
|
'province'?: string | null;
|
|
3213
3246
|
/**
|
|
3214
3247
|
*
|
|
3215
3248
|
* @type {string}
|
|
3216
|
-
* @memberof
|
|
3249
|
+
* @memberof UserApi
|
|
3217
3250
|
*/
|
|
3218
3251
|
'postalCode'?: string | null;
|
|
3219
3252
|
/**
|
|
3220
3253
|
*
|
|
3221
3254
|
* @type {string}
|
|
3222
|
-
* @memberof
|
|
3255
|
+
* @memberof UserApi
|
|
3223
3256
|
*/
|
|
3224
3257
|
'country'?: string | null;
|
|
3225
3258
|
/**
|
|
3226
3259
|
*
|
|
3227
3260
|
* @type {string}
|
|
3228
|
-
* @memberof
|
|
3261
|
+
* @memberof UserApi
|
|
3229
3262
|
*/
|
|
3230
|
-
'userId': string
|
|
3263
|
+
'userId': string;
|
|
3231
3264
|
/**
|
|
3232
3265
|
*
|
|
3233
3266
|
* @type {string}
|
|
3234
|
-
* @memberof
|
|
3267
|
+
* @memberof UserApi
|
|
3235
3268
|
*/
|
|
3236
3269
|
'userName': string;
|
|
3237
3270
|
/**
|
|
3238
3271
|
*
|
|
3239
3272
|
* @type {string}
|
|
3240
|
-
* @memberof
|
|
3273
|
+
* @memberof UserApi
|
|
3241
3274
|
*/
|
|
3242
3275
|
'email': string;
|
|
3243
3276
|
}
|
|
@@ -3296,6 +3329,61 @@ declare class AccountsApi extends BaseAPI {
|
|
|
3296
3329
|
*/
|
|
3297
3330
|
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
|
|
3298
3331
|
}
|
|
3332
|
+
/**
|
|
3333
|
+
* AuthApi - axios parameter creator
|
|
3334
|
+
* @export
|
|
3335
|
+
*/
|
|
3336
|
+
declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3337
|
+
/**
|
|
3338
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3339
|
+
* @summary Get Me
|
|
3340
|
+
* @param {*} [options] Override http request option.
|
|
3341
|
+
* @throws {RequiredError}
|
|
3342
|
+
*/
|
|
3343
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3344
|
+
};
|
|
3345
|
+
/**
|
|
3346
|
+
* AuthApi - functional programming interface
|
|
3347
|
+
* @export
|
|
3348
|
+
*/
|
|
3349
|
+
declare const AuthApiFp: (configuration?: Configuration) => {
|
|
3350
|
+
/**
|
|
3351
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3352
|
+
* @summary Get Me
|
|
3353
|
+
* @param {*} [options] Override http request option.
|
|
3354
|
+
* @throws {RequiredError}
|
|
3355
|
+
*/
|
|
3356
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
3357
|
+
};
|
|
3358
|
+
/**
|
|
3359
|
+
* AuthApi - factory interface
|
|
3360
|
+
* @export
|
|
3361
|
+
*/
|
|
3362
|
+
declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3363
|
+
/**
|
|
3364
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3365
|
+
* @summary Get Me
|
|
3366
|
+
* @param {*} [options] Override http request option.
|
|
3367
|
+
* @throws {RequiredError}
|
|
3368
|
+
*/
|
|
3369
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
3370
|
+
};
|
|
3371
|
+
/**
|
|
3372
|
+
* AuthApi - object-oriented interface
|
|
3373
|
+
* @export
|
|
3374
|
+
* @class AuthApi
|
|
3375
|
+
* @extends {BaseAPI}
|
|
3376
|
+
*/
|
|
3377
|
+
declare class AuthApi extends BaseAPI {
|
|
3378
|
+
/**
|
|
3379
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
3380
|
+
* @summary Get Me
|
|
3381
|
+
* @param {*} [options] Override http request option.
|
|
3382
|
+
* @throws {RequiredError}
|
|
3383
|
+
* @memberof AuthApi
|
|
3384
|
+
*/
|
|
3385
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
3386
|
+
}
|
|
3299
3387
|
/**
|
|
3300
3388
|
* ContactsApi - axios parameter creator
|
|
3301
3389
|
* @export
|
|
@@ -4082,6 +4170,14 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4082
4170
|
* @throws {RequiredError}
|
|
4083
4171
|
*/
|
|
4084
4172
|
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>;
|
|
4173
|
+
/**
|
|
4174
|
+
*
|
|
4175
|
+
* @summary Conversations List Suggestions
|
|
4176
|
+
* @param {string} conversationId
|
|
4177
|
+
* @param {*} [options] Override http request option.
|
|
4178
|
+
* @throws {RequiredError}
|
|
4179
|
+
*/
|
|
4180
|
+
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4085
4181
|
/**
|
|
4086
4182
|
* Conversations Update
|
|
4087
4183
|
* @summary Conversations Update
|
|
@@ -4095,11 +4191,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4095
4191
|
* Messages Create
|
|
4096
4192
|
* @summary Messages Create
|
|
4097
4193
|
* @param {string} conversationId
|
|
4098
|
-
* @param {
|
|
4194
|
+
* @param {Messagecreate} messagecreate
|
|
4099
4195
|
* @param {*} [options] Override http request option.
|
|
4100
4196
|
* @throws {RequiredError}
|
|
4101
4197
|
*/
|
|
4102
|
-
messagesCreate: (conversationId: string,
|
|
4198
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4103
4199
|
/**
|
|
4104
4200
|
* Messages Get
|
|
4105
4201
|
* @summary Messages Get
|
|
@@ -4155,6 +4251,14 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4155
4251
|
* @throws {RequiredError}
|
|
4156
4252
|
*/
|
|
4157
4253
|
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>>;
|
|
4254
|
+
/**
|
|
4255
|
+
*
|
|
4256
|
+
* @summary Conversations List Suggestions
|
|
4257
|
+
* @param {string} conversationId
|
|
4258
|
+
* @param {*} [options] Override http request option.
|
|
4259
|
+
* @throws {RequiredError}
|
|
4260
|
+
*/
|
|
4261
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
4158
4262
|
/**
|
|
4159
4263
|
* Conversations Update
|
|
4160
4264
|
* @summary Conversations Update
|
|
@@ -4168,11 +4272,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4168
4272
|
* Messages Create
|
|
4169
4273
|
* @summary Messages Create
|
|
4170
4274
|
* @param {string} conversationId
|
|
4171
|
-
* @param {
|
|
4275
|
+
* @param {Messagecreate} messagecreate
|
|
4172
4276
|
* @param {*} [options] Override http request option.
|
|
4173
4277
|
* @throws {RequiredError}
|
|
4174
4278
|
*/
|
|
4175
|
-
messagesCreate(conversationId: string,
|
|
4279
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
4176
4280
|
/**
|
|
4177
4281
|
* Messages Get
|
|
4178
4282
|
* @summary Messages Get
|
|
@@ -4228,6 +4332,14 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4228
4332
|
* @throws {RequiredError}
|
|
4229
4333
|
*/
|
|
4230
4334
|
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>;
|
|
4335
|
+
/**
|
|
4336
|
+
*
|
|
4337
|
+
* @summary Conversations List Suggestions
|
|
4338
|
+
* @param {string} conversationId
|
|
4339
|
+
* @param {*} [options] Override http request option.
|
|
4340
|
+
* @throws {RequiredError}
|
|
4341
|
+
*/
|
|
4342
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
4231
4343
|
/**
|
|
4232
4344
|
* Conversations Update
|
|
4233
4345
|
* @summary Conversations Update
|
|
@@ -4241,11 +4353,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4241
4353
|
* Messages Create
|
|
4242
4354
|
* @summary Messages Create
|
|
4243
4355
|
* @param {string} conversationId
|
|
4244
|
-
* @param {
|
|
4356
|
+
* @param {Messagecreate} messagecreate
|
|
4245
4357
|
* @param {*} [options] Override http request option.
|
|
4246
4358
|
* @throws {RequiredError}
|
|
4247
4359
|
*/
|
|
4248
|
-
messagesCreate(conversationId: string,
|
|
4360
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
4249
4361
|
/**
|
|
4250
4362
|
* Messages Get
|
|
4251
4363
|
* @summary Messages Get
|
|
@@ -4305,6 +4417,15 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4305
4417
|
* @memberof ConversationsApi
|
|
4306
4418
|
*/
|
|
4307
4419
|
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>>;
|
|
4420
|
+
/**
|
|
4421
|
+
*
|
|
4422
|
+
* @summary Conversations List Suggestions
|
|
4423
|
+
* @param {string} conversationId
|
|
4424
|
+
* @param {*} [options] Override http request option.
|
|
4425
|
+
* @throws {RequiredError}
|
|
4426
|
+
* @memberof ConversationsApi
|
|
4427
|
+
*/
|
|
4428
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object[], any>>;
|
|
4308
4429
|
/**
|
|
4309
4430
|
* Conversations Update
|
|
4310
4431
|
* @summary Conversations Update
|
|
@@ -4319,12 +4440,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4319
4440
|
* Messages Create
|
|
4320
4441
|
* @summary Messages Create
|
|
4321
4442
|
* @param {string} conversationId
|
|
4322
|
-
* @param {
|
|
4443
|
+
* @param {Messagecreate} messagecreate
|
|
4323
4444
|
* @param {*} [options] Override http request option.
|
|
4324
4445
|
* @throws {RequiredError}
|
|
4325
4446
|
* @memberof ConversationsApi
|
|
4326
4447
|
*/
|
|
4327
|
-
messagesCreate(conversationId: string,
|
|
4448
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
4328
4449
|
/**
|
|
4329
4450
|
* Messages Get
|
|
4330
4451
|
* @summary Messages Get
|
|
@@ -4972,98 +5093,6 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
4972
5093
|
*/
|
|
4973
5094
|
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
5095
|
}
|
|
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
5096
|
/**
|
|
5068
5097
|
* UnboundApi - axios parameter creator
|
|
5069
5098
|
* @export
|
|
@@ -5209,6 +5238,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5209
5238
|
* @throws {RequiredError}
|
|
5210
5239
|
*/
|
|
5211
5240
|
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>;
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @summary Conversations List Suggestions
|
|
5244
|
+
* @param {string} conversationId
|
|
5245
|
+
* @param {*} [options] Override http request option.
|
|
5246
|
+
* @throws {RequiredError}
|
|
5247
|
+
*/
|
|
5248
|
+
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5212
5249
|
/**
|
|
5213
5250
|
* Conversations Update
|
|
5214
5251
|
* @summary Conversations Update
|
|
@@ -5307,11 +5344,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5307
5344
|
* Messages Create
|
|
5308
5345
|
* @summary Messages Create
|
|
5309
5346
|
* @param {string} conversationId
|
|
5310
|
-
* @param {
|
|
5347
|
+
* @param {Messagecreate} messagecreate
|
|
5311
5348
|
* @param {*} [options] Override http request option.
|
|
5312
5349
|
* @throws {RequiredError}
|
|
5313
5350
|
*/
|
|
5314
|
-
messagesCreate: (conversationId: string,
|
|
5351
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5315
5352
|
/**
|
|
5316
5353
|
* Messages Get
|
|
5317
5354
|
* @summary Messages Get
|
|
@@ -5426,22 +5463,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5426
5463
|
* @throws {RequiredError}
|
|
5427
5464
|
*/
|
|
5428
5465
|
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
5466
|
/**
|
|
5446
5467
|
*
|
|
5447
5468
|
* @summary Unifiedwebhook
|
|
@@ -5596,6 +5617,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5596
5617
|
* @throws {RequiredError}
|
|
5597
5618
|
*/
|
|
5598
5619
|
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>>;
|
|
5620
|
+
/**
|
|
5621
|
+
*
|
|
5622
|
+
* @summary Conversations List Suggestions
|
|
5623
|
+
* @param {string} conversationId
|
|
5624
|
+
* @param {*} [options] Override http request option.
|
|
5625
|
+
* @throws {RequiredError}
|
|
5626
|
+
*/
|
|
5627
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
5599
5628
|
/**
|
|
5600
5629
|
* Conversations Update
|
|
5601
5630
|
* @summary Conversations Update
|
|
@@ -5645,7 +5674,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5645
5674
|
* @param {*} [options] Override http request option.
|
|
5646
5675
|
* @throws {RequiredError}
|
|
5647
5676
|
*/
|
|
5648
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5677
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
5649
5678
|
/**
|
|
5650
5679
|
* Inboxes List
|
|
5651
5680
|
* @summary Inboxes List
|
|
@@ -5694,11 +5723,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5694
5723
|
* Messages Create
|
|
5695
5724
|
* @summary Messages Create
|
|
5696
5725
|
* @param {string} conversationId
|
|
5697
|
-
* @param {
|
|
5726
|
+
* @param {Messagecreate} messagecreate
|
|
5698
5727
|
* @param {*} [options] Override http request option.
|
|
5699
5728
|
* @throws {RequiredError}
|
|
5700
5729
|
*/
|
|
5701
|
-
messagesCreate(conversationId: string,
|
|
5730
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
5702
5731
|
/**
|
|
5703
5732
|
* Messages Get
|
|
5704
5733
|
* @summary Messages Get
|
|
@@ -5813,22 +5842,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5813
5842
|
* @throws {RequiredError}
|
|
5814
5843
|
*/
|
|
5815
5844
|
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
5845
|
/**
|
|
5833
5846
|
*
|
|
5834
5847
|
* @summary Unifiedwebhook
|
|
@@ -5983,6 +5996,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5983
5996
|
* @throws {RequiredError}
|
|
5984
5997
|
*/
|
|
5985
5998
|
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>;
|
|
5999
|
+
/**
|
|
6000
|
+
*
|
|
6001
|
+
* @summary Conversations List Suggestions
|
|
6002
|
+
* @param {string} conversationId
|
|
6003
|
+
* @param {*} [options] Override http request option.
|
|
6004
|
+
* @throws {RequiredError}
|
|
6005
|
+
*/
|
|
6006
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
5986
6007
|
/**
|
|
5987
6008
|
* Conversations Update
|
|
5988
6009
|
* @summary Conversations Update
|
|
@@ -6032,7 +6053,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6032
6053
|
* @param {*} [options] Override http request option.
|
|
6033
6054
|
* @throws {RequiredError}
|
|
6034
6055
|
*/
|
|
6035
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6056
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
6036
6057
|
/**
|
|
6037
6058
|
* Inboxes List
|
|
6038
6059
|
* @summary Inboxes List
|
|
@@ -6081,11 +6102,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6081
6102
|
* Messages Create
|
|
6082
6103
|
* @summary Messages Create
|
|
6083
6104
|
* @param {string} conversationId
|
|
6084
|
-
* @param {
|
|
6105
|
+
* @param {Messagecreate} messagecreate
|
|
6085
6106
|
* @param {*} [options] Override http request option.
|
|
6086
6107
|
* @throws {RequiredError}
|
|
6087
6108
|
*/
|
|
6088
|
-
messagesCreate(conversationId: string,
|
|
6109
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
6089
6110
|
/**
|
|
6090
6111
|
* Messages Get
|
|
6091
6112
|
* @summary Messages Get
|
|
@@ -6200,22 +6221,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6200
6221
|
* @throws {RequiredError}
|
|
6201
6222
|
*/
|
|
6202
6223
|
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
6224
|
/**
|
|
6220
6225
|
*
|
|
6221
6226
|
* @summary Unifiedwebhook
|
|
@@ -6387,6 +6392,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6387
6392
|
* @memberof UnboundApi
|
|
6388
6393
|
*/
|
|
6389
6394
|
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>>;
|
|
6395
|
+
/**
|
|
6396
|
+
*
|
|
6397
|
+
* @summary Conversations List Suggestions
|
|
6398
|
+
* @param {string} conversationId
|
|
6399
|
+
* @param {*} [options] Override http request option.
|
|
6400
|
+
* @throws {RequiredError}
|
|
6401
|
+
* @memberof UnboundApi
|
|
6402
|
+
*/
|
|
6403
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object[], any>>;
|
|
6390
6404
|
/**
|
|
6391
6405
|
* Conversations Update
|
|
6392
6406
|
* @summary Conversations Update
|
|
@@ -6442,7 +6456,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6442
6456
|
* @throws {RequiredError}
|
|
6443
6457
|
* @memberof UnboundApi
|
|
6444
6458
|
*/
|
|
6445
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6459
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
6446
6460
|
/**
|
|
6447
6461
|
* Inboxes List
|
|
6448
6462
|
* @summary Inboxes List
|
|
@@ -6496,12 +6510,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6496
6510
|
* Messages Create
|
|
6497
6511
|
* @summary Messages Create
|
|
6498
6512
|
* @param {string} conversationId
|
|
6499
|
-
* @param {
|
|
6513
|
+
* @param {Messagecreate} messagecreate
|
|
6500
6514
|
* @param {*} [options] Override http request option.
|
|
6501
6515
|
* @throws {RequiredError}
|
|
6502
6516
|
* @memberof UnboundApi
|
|
6503
6517
|
*/
|
|
6504
|
-
messagesCreate(conversationId: string,
|
|
6518
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
6505
6519
|
/**
|
|
6506
6520
|
* Messages Get
|
|
6507
6521
|
* @summary Messages Get
|
|
@@ -6628,24 +6642,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6628
6642
|
* @memberof UnboundApi
|
|
6629
6643
|
*/
|
|
6630
6644
|
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
6645
|
/**
|
|
6650
6646
|
*
|
|
6651
6647
|
* @summary Unifiedwebhook
|
|
@@ -6656,60 +6652,5 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6656
6652
|
*/
|
|
6657
6653
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6658
6654
|
}
|
|
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
6655
|
|
|
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
|
|
6656
|
+
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, 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, SuggestionReason, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|