@ember-home/unbound-ts-client 0.0.67 → 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 +270 -250
- package/dist/index.d.ts +270 -250
- 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
|
|
@@ -3162,6 +3195,85 @@ interface UpdateContactListing {
|
|
|
3162
3195
|
*/
|
|
3163
3196
|
'endDate'?: string | null;
|
|
3164
3197
|
}
|
|
3198
|
+
/**
|
|
3199
|
+
*
|
|
3200
|
+
* @export
|
|
3201
|
+
* @interface UserApi
|
|
3202
|
+
*/
|
|
3203
|
+
interface UserApi {
|
|
3204
|
+
/**
|
|
3205
|
+
*
|
|
3206
|
+
* @type {string}
|
|
3207
|
+
* @memberof UserApi
|
|
3208
|
+
*/
|
|
3209
|
+
'firstName'?: string | null;
|
|
3210
|
+
/**
|
|
3211
|
+
*
|
|
3212
|
+
* @type {string}
|
|
3213
|
+
* @memberof UserApi
|
|
3214
|
+
*/
|
|
3215
|
+
'lastName'?: string | null;
|
|
3216
|
+
/**
|
|
3217
|
+
*
|
|
3218
|
+
* @type {string}
|
|
3219
|
+
* @memberof UserApi
|
|
3220
|
+
*/
|
|
3221
|
+
'phone'?: string | null;
|
|
3222
|
+
/**
|
|
3223
|
+
*
|
|
3224
|
+
* @type {string}
|
|
3225
|
+
* @memberof UserApi
|
|
3226
|
+
*/
|
|
3227
|
+
'streetAddress1'?: string | null;
|
|
3228
|
+
/**
|
|
3229
|
+
*
|
|
3230
|
+
* @type {string}
|
|
3231
|
+
* @memberof UserApi
|
|
3232
|
+
*/
|
|
3233
|
+
'streetAddress2'?: string | null;
|
|
3234
|
+
/**
|
|
3235
|
+
*
|
|
3236
|
+
* @type {string}
|
|
3237
|
+
* @memberof UserApi
|
|
3238
|
+
*/
|
|
3239
|
+
'city'?: string | null;
|
|
3240
|
+
/**
|
|
3241
|
+
*
|
|
3242
|
+
* @type {string}
|
|
3243
|
+
* @memberof UserApi
|
|
3244
|
+
*/
|
|
3245
|
+
'province'?: string | null;
|
|
3246
|
+
/**
|
|
3247
|
+
*
|
|
3248
|
+
* @type {string}
|
|
3249
|
+
* @memberof UserApi
|
|
3250
|
+
*/
|
|
3251
|
+
'postalCode'?: string | null;
|
|
3252
|
+
/**
|
|
3253
|
+
*
|
|
3254
|
+
* @type {string}
|
|
3255
|
+
* @memberof UserApi
|
|
3256
|
+
*/
|
|
3257
|
+
'country'?: string | null;
|
|
3258
|
+
/**
|
|
3259
|
+
*
|
|
3260
|
+
* @type {string}
|
|
3261
|
+
* @memberof UserApi
|
|
3262
|
+
*/
|
|
3263
|
+
'userId': string;
|
|
3264
|
+
/**
|
|
3265
|
+
*
|
|
3266
|
+
* @type {string}
|
|
3267
|
+
* @memberof UserApi
|
|
3268
|
+
*/
|
|
3269
|
+
'userName': string;
|
|
3270
|
+
/**
|
|
3271
|
+
*
|
|
3272
|
+
* @type {string}
|
|
3273
|
+
* @memberof UserApi
|
|
3274
|
+
*/
|
|
3275
|
+
'email': string;
|
|
3276
|
+
}
|
|
3165
3277
|
/**
|
|
3166
3278
|
* AccountsApi - axios parameter creator
|
|
3167
3279
|
* @export
|
|
@@ -3217,6 +3329,61 @@ declare class AccountsApi extends BaseAPI {
|
|
|
3217
3329
|
*/
|
|
3218
3330
|
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
|
|
3219
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
|
+
}
|
|
3220
3387
|
/**
|
|
3221
3388
|
* ContactsApi - axios parameter creator
|
|
3222
3389
|
* @export
|
|
@@ -4003,6 +4170,14 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4003
4170
|
* @throws {RequiredError}
|
|
4004
4171
|
*/
|
|
4005
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>;
|
|
4006
4181
|
/**
|
|
4007
4182
|
* Conversations Update
|
|
4008
4183
|
* @summary Conversations Update
|
|
@@ -4016,11 +4191,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4016
4191
|
* Messages Create
|
|
4017
4192
|
* @summary Messages Create
|
|
4018
4193
|
* @param {string} conversationId
|
|
4019
|
-
* @param {
|
|
4194
|
+
* @param {Messagecreate} messagecreate
|
|
4020
4195
|
* @param {*} [options] Override http request option.
|
|
4021
4196
|
* @throws {RequiredError}
|
|
4022
4197
|
*/
|
|
4023
|
-
messagesCreate: (conversationId: string,
|
|
4198
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4024
4199
|
/**
|
|
4025
4200
|
* Messages Get
|
|
4026
4201
|
* @summary Messages Get
|
|
@@ -4076,6 +4251,14 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4076
4251
|
* @throws {RequiredError}
|
|
4077
4252
|
*/
|
|
4078
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>>>;
|
|
4079
4262
|
/**
|
|
4080
4263
|
* Conversations Update
|
|
4081
4264
|
* @summary Conversations Update
|
|
@@ -4089,11 +4272,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4089
4272
|
* Messages Create
|
|
4090
4273
|
* @summary Messages Create
|
|
4091
4274
|
* @param {string} conversationId
|
|
4092
|
-
* @param {
|
|
4275
|
+
* @param {Messagecreate} messagecreate
|
|
4093
4276
|
* @param {*} [options] Override http request option.
|
|
4094
4277
|
* @throws {RequiredError}
|
|
4095
4278
|
*/
|
|
4096
|
-
messagesCreate(conversationId: string,
|
|
4279
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
4097
4280
|
/**
|
|
4098
4281
|
* Messages Get
|
|
4099
4282
|
* @summary Messages Get
|
|
@@ -4149,6 +4332,14 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4149
4332
|
* @throws {RequiredError}
|
|
4150
4333
|
*/
|
|
4151
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>>;
|
|
4152
4343
|
/**
|
|
4153
4344
|
* Conversations Update
|
|
4154
4345
|
* @summary Conversations Update
|
|
@@ -4162,11 +4353,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4162
4353
|
* Messages Create
|
|
4163
4354
|
* @summary Messages Create
|
|
4164
4355
|
* @param {string} conversationId
|
|
4165
|
-
* @param {
|
|
4356
|
+
* @param {Messagecreate} messagecreate
|
|
4166
4357
|
* @param {*} [options] Override http request option.
|
|
4167
4358
|
* @throws {RequiredError}
|
|
4168
4359
|
*/
|
|
4169
|
-
messagesCreate(conversationId: string,
|
|
4360
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
4170
4361
|
/**
|
|
4171
4362
|
* Messages Get
|
|
4172
4363
|
* @summary Messages Get
|
|
@@ -4226,6 +4417,15 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4226
4417
|
* @memberof ConversationsApi
|
|
4227
4418
|
*/
|
|
4228
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>>;
|
|
4229
4429
|
/**
|
|
4230
4430
|
* Conversations Update
|
|
4231
4431
|
* @summary Conversations Update
|
|
@@ -4240,12 +4440,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4240
4440
|
* Messages Create
|
|
4241
4441
|
* @summary Messages Create
|
|
4242
4442
|
* @param {string} conversationId
|
|
4243
|
-
* @param {
|
|
4443
|
+
* @param {Messagecreate} messagecreate
|
|
4244
4444
|
* @param {*} [options] Override http request option.
|
|
4245
4445
|
* @throws {RequiredError}
|
|
4246
4446
|
* @memberof ConversationsApi
|
|
4247
4447
|
*/
|
|
4248
|
-
messagesCreate(conversationId: string,
|
|
4448
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
4249
4449
|
/**
|
|
4250
4450
|
* Messages Get
|
|
4251
4451
|
* @summary Messages Get
|
|
@@ -4893,98 +5093,6 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
4893
5093
|
*/
|
|
4894
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>>;
|
|
4895
5095
|
}
|
|
4896
|
-
/**
|
|
4897
|
-
* SuggestedRepliesApi - axios parameter creator
|
|
4898
|
-
* @export
|
|
4899
|
-
*/
|
|
4900
|
-
declare const SuggestedRepliesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4901
|
-
/**
|
|
4902
|
-
* SuggestedReplies Create
|
|
4903
|
-
* @summary SuggestedReplies Create
|
|
4904
|
-
* @param {object} body
|
|
4905
|
-
* @param {*} [options] Override http request option.
|
|
4906
|
-
* @throws {RequiredError}
|
|
4907
|
-
*/
|
|
4908
|
-
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4909
|
-
/**
|
|
4910
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
4911
|
-
* @summary SuggestedReplies List
|
|
4912
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4913
|
-
* @param {*} [options] Override http request option.
|
|
4914
|
-
* @throws {RequiredError}
|
|
4915
|
-
*/
|
|
4916
|
-
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4917
|
-
};
|
|
4918
|
-
/**
|
|
4919
|
-
* SuggestedRepliesApi - functional programming interface
|
|
4920
|
-
* @export
|
|
4921
|
-
*/
|
|
4922
|
-
declare const SuggestedRepliesApiFp: (configuration?: Configuration) => {
|
|
4923
|
-
/**
|
|
4924
|
-
* SuggestedReplies Create
|
|
4925
|
-
* @summary SuggestedReplies Create
|
|
4926
|
-
* @param {object} body
|
|
4927
|
-
* @param {*} [options] Override http request option.
|
|
4928
|
-
* @throws {RequiredError}
|
|
4929
|
-
*/
|
|
4930
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
4931
|
-
/**
|
|
4932
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
4933
|
-
* @summary SuggestedReplies List
|
|
4934
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4935
|
-
* @param {*} [options] Override http request option.
|
|
4936
|
-
* @throws {RequiredError}
|
|
4937
|
-
*/
|
|
4938
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
4939
|
-
};
|
|
4940
|
-
/**
|
|
4941
|
-
* SuggestedRepliesApi - factory interface
|
|
4942
|
-
* @export
|
|
4943
|
-
*/
|
|
4944
|
-
declare const SuggestedRepliesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4945
|
-
/**
|
|
4946
|
-
* SuggestedReplies Create
|
|
4947
|
-
* @summary SuggestedReplies Create
|
|
4948
|
-
* @param {object} body
|
|
4949
|
-
* @param {*} [options] Override http request option.
|
|
4950
|
-
* @throws {RequiredError}
|
|
4951
|
-
*/
|
|
4952
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
4953
|
-
/**
|
|
4954
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
4955
|
-
* @summary SuggestedReplies List
|
|
4956
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4957
|
-
* @param {*} [options] Override http request option.
|
|
4958
|
-
* @throws {RequiredError}
|
|
4959
|
-
*/
|
|
4960
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
4961
|
-
};
|
|
4962
|
-
/**
|
|
4963
|
-
* SuggestedRepliesApi - object-oriented interface
|
|
4964
|
-
* @export
|
|
4965
|
-
* @class SuggestedRepliesApi
|
|
4966
|
-
* @extends {BaseAPI}
|
|
4967
|
-
*/
|
|
4968
|
-
declare class SuggestedRepliesApi extends BaseAPI {
|
|
4969
|
-
/**
|
|
4970
|
-
* SuggestedReplies Create
|
|
4971
|
-
* @summary SuggestedReplies Create
|
|
4972
|
-
* @param {object} body
|
|
4973
|
-
* @param {*} [options] Override http request option.
|
|
4974
|
-
* @throws {RequiredError}
|
|
4975
|
-
* @memberof SuggestedRepliesApi
|
|
4976
|
-
*/
|
|
4977
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
4978
|
-
/**
|
|
4979
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
4980
|
-
* @summary SuggestedReplies List
|
|
4981
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4982
|
-
* @param {*} [options] Override http request option.
|
|
4983
|
-
* @throws {RequiredError}
|
|
4984
|
-
* @memberof SuggestedRepliesApi
|
|
4985
|
-
*/
|
|
4986
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
4987
|
-
}
|
|
4988
5096
|
/**
|
|
4989
5097
|
* UnboundApi - axios parameter creator
|
|
4990
5098
|
* @export
|
|
@@ -5130,6 +5238,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5130
5238
|
* @throws {RequiredError}
|
|
5131
5239
|
*/
|
|
5132
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>;
|
|
5133
5249
|
/**
|
|
5134
5250
|
* Conversations Update
|
|
5135
5251
|
* @summary Conversations Update
|
|
@@ -5228,11 +5344,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5228
5344
|
* Messages Create
|
|
5229
5345
|
* @summary Messages Create
|
|
5230
5346
|
* @param {string} conversationId
|
|
5231
|
-
* @param {
|
|
5347
|
+
* @param {Messagecreate} messagecreate
|
|
5232
5348
|
* @param {*} [options] Override http request option.
|
|
5233
5349
|
* @throws {RequiredError}
|
|
5234
5350
|
*/
|
|
5235
|
-
messagesCreate: (conversationId: string,
|
|
5351
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5236
5352
|
/**
|
|
5237
5353
|
* Messages Get
|
|
5238
5354
|
* @summary Messages Get
|
|
@@ -5347,22 +5463,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5347
5463
|
* @throws {RequiredError}
|
|
5348
5464
|
*/
|
|
5349
5465
|
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5350
|
-
/**
|
|
5351
|
-
* SuggestedReplies Create
|
|
5352
|
-
* @summary SuggestedReplies Create
|
|
5353
|
-
* @param {object} body
|
|
5354
|
-
* @param {*} [options] Override http request option.
|
|
5355
|
-
* @throws {RequiredError}
|
|
5356
|
-
*/
|
|
5357
|
-
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5358
|
-
/**
|
|
5359
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5360
|
-
* @summary SuggestedReplies List
|
|
5361
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5362
|
-
* @param {*} [options] Override http request option.
|
|
5363
|
-
* @throws {RequiredError}
|
|
5364
|
-
*/
|
|
5365
|
-
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5366
5466
|
/**
|
|
5367
5467
|
*
|
|
5368
5468
|
* @summary Unifiedwebhook
|
|
@@ -5517,6 +5617,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5517
5617
|
* @throws {RequiredError}
|
|
5518
5618
|
*/
|
|
5519
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>>>;
|
|
5520
5628
|
/**
|
|
5521
5629
|
* Conversations Update
|
|
5522
5630
|
* @summary Conversations Update
|
|
@@ -5566,7 +5674,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5566
5674
|
* @param {*} [options] Override http request option.
|
|
5567
5675
|
* @throws {RequiredError}
|
|
5568
5676
|
*/
|
|
5569
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5677
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
5570
5678
|
/**
|
|
5571
5679
|
* Inboxes List
|
|
5572
5680
|
* @summary Inboxes List
|
|
@@ -5615,11 +5723,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5615
5723
|
* Messages Create
|
|
5616
5724
|
* @summary Messages Create
|
|
5617
5725
|
* @param {string} conversationId
|
|
5618
|
-
* @param {
|
|
5726
|
+
* @param {Messagecreate} messagecreate
|
|
5619
5727
|
* @param {*} [options] Override http request option.
|
|
5620
5728
|
* @throws {RequiredError}
|
|
5621
5729
|
*/
|
|
5622
|
-
messagesCreate(conversationId: string,
|
|
5730
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
5623
5731
|
/**
|
|
5624
5732
|
* Messages Get
|
|
5625
5733
|
* @summary Messages Get
|
|
@@ -5734,22 +5842,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5734
5842
|
* @throws {RequiredError}
|
|
5735
5843
|
*/
|
|
5736
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>>;
|
|
5737
|
-
/**
|
|
5738
|
-
* SuggestedReplies Create
|
|
5739
|
-
* @summary SuggestedReplies Create
|
|
5740
|
-
* @param {object} body
|
|
5741
|
-
* @param {*} [options] Override http request option.
|
|
5742
|
-
* @throws {RequiredError}
|
|
5743
|
-
*/
|
|
5744
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5745
|
-
/**
|
|
5746
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
5747
|
-
* @summary SuggestedReplies List
|
|
5748
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5749
|
-
* @param {*} [options] Override http request option.
|
|
5750
|
-
* @throws {RequiredError}
|
|
5751
|
-
*/
|
|
5752
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
5753
5845
|
/**
|
|
5754
5846
|
*
|
|
5755
5847
|
* @summary Unifiedwebhook
|
|
@@ -5904,6 +5996,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5904
5996
|
* @throws {RequiredError}
|
|
5905
5997
|
*/
|
|
5906
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>>;
|
|
5907
6007
|
/**
|
|
5908
6008
|
* Conversations Update
|
|
5909
6009
|
* @summary Conversations Update
|
|
@@ -5953,7 +6053,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5953
6053
|
* @param {*} [options] Override http request option.
|
|
5954
6054
|
* @throws {RequiredError}
|
|
5955
6055
|
*/
|
|
5956
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6056
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
5957
6057
|
/**
|
|
5958
6058
|
* Inboxes List
|
|
5959
6059
|
* @summary Inboxes List
|
|
@@ -6002,11 +6102,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6002
6102
|
* Messages Create
|
|
6003
6103
|
* @summary Messages Create
|
|
6004
6104
|
* @param {string} conversationId
|
|
6005
|
-
* @param {
|
|
6105
|
+
* @param {Messagecreate} messagecreate
|
|
6006
6106
|
* @param {*} [options] Override http request option.
|
|
6007
6107
|
* @throws {RequiredError}
|
|
6008
6108
|
*/
|
|
6009
|
-
messagesCreate(conversationId: string,
|
|
6109
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
6010
6110
|
/**
|
|
6011
6111
|
* Messages Get
|
|
6012
6112
|
* @summary Messages Get
|
|
@@ -6121,22 +6221,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6121
6221
|
* @throws {RequiredError}
|
|
6122
6222
|
*/
|
|
6123
6223
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
|
|
6124
|
-
/**
|
|
6125
|
-
* SuggestedReplies Create
|
|
6126
|
-
* @summary SuggestedReplies Create
|
|
6127
|
-
* @param {object} body
|
|
6128
|
-
* @param {*} [options] Override http request option.
|
|
6129
|
-
* @throws {RequiredError}
|
|
6130
|
-
*/
|
|
6131
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6132
|
-
/**
|
|
6133
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
6134
|
-
* @summary SuggestedReplies List
|
|
6135
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
6136
|
-
* @param {*} [options] Override http request option.
|
|
6137
|
-
* @throws {RequiredError}
|
|
6138
|
-
*/
|
|
6139
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
6140
6224
|
/**
|
|
6141
6225
|
*
|
|
6142
6226
|
* @summary Unifiedwebhook
|
|
@@ -6308,6 +6392,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6308
6392
|
* @memberof UnboundApi
|
|
6309
6393
|
*/
|
|
6310
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>>;
|
|
6311
6404
|
/**
|
|
6312
6405
|
* Conversations Update
|
|
6313
6406
|
* @summary Conversations Update
|
|
@@ -6363,7 +6456,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6363
6456
|
* @throws {RequiredError}
|
|
6364
6457
|
* @memberof UnboundApi
|
|
6365
6458
|
*/
|
|
6366
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6459
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
6367
6460
|
/**
|
|
6368
6461
|
* Inboxes List
|
|
6369
6462
|
* @summary Inboxes List
|
|
@@ -6417,12 +6510,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6417
6510
|
* Messages Create
|
|
6418
6511
|
* @summary Messages Create
|
|
6419
6512
|
* @param {string} conversationId
|
|
6420
|
-
* @param {
|
|
6513
|
+
* @param {Messagecreate} messagecreate
|
|
6421
6514
|
* @param {*} [options] Override http request option.
|
|
6422
6515
|
* @throws {RequiredError}
|
|
6423
6516
|
* @memberof UnboundApi
|
|
6424
6517
|
*/
|
|
6425
|
-
messagesCreate(conversationId: string,
|
|
6518
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
6426
6519
|
/**
|
|
6427
6520
|
* Messages Get
|
|
6428
6521
|
* @summary Messages Get
|
|
@@ -6549,24 +6642,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6549
6642
|
* @memberof UnboundApi
|
|
6550
6643
|
*/
|
|
6551
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>>;
|
|
6552
|
-
/**
|
|
6553
|
-
* SuggestedReplies Create
|
|
6554
|
-
* @summary SuggestedReplies Create
|
|
6555
|
-
* @param {object} body
|
|
6556
|
-
* @param {*} [options] Override http request option.
|
|
6557
|
-
* @throws {RequiredError}
|
|
6558
|
-
* @memberof UnboundApi
|
|
6559
|
-
*/
|
|
6560
|
-
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6561
|
-
/**
|
|
6562
|
-
* List all suggested replies, optionally filtered by conversation_id
|
|
6563
|
-
* @summary SuggestedReplies List
|
|
6564
|
-
* @param {string | null} [conversationId] Filter by conversation ID
|
|
6565
|
-
* @param {*} [options] Override http request option.
|
|
6566
|
-
* @throws {RequiredError}
|
|
6567
|
-
* @memberof UnboundApi
|
|
6568
|
-
*/
|
|
6569
|
-
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
6570
6645
|
/**
|
|
6571
6646
|
*
|
|
6572
6647
|
* @summary Unifiedwebhook
|
|
@@ -6577,60 +6652,5 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6577
6652
|
*/
|
|
6578
6653
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6579
6654
|
}
|
|
6580
|
-
/**
|
|
6581
|
-
* UsersApi - axios parameter creator
|
|
6582
|
-
* @export
|
|
6583
|
-
*/
|
|
6584
|
-
declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6585
|
-
/**
|
|
6586
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6587
|
-
* @summary Get Me
|
|
6588
|
-
* @param {*} [options] Override http request option.
|
|
6589
|
-
* @throws {RequiredError}
|
|
6590
|
-
*/
|
|
6591
|
-
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6592
|
-
};
|
|
6593
|
-
/**
|
|
6594
|
-
* UsersApi - functional programming interface
|
|
6595
|
-
* @export
|
|
6596
|
-
*/
|
|
6597
|
-
declare const UsersApiFp: (configuration?: Configuration) => {
|
|
6598
|
-
/**
|
|
6599
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6600
|
-
* @summary Get Me
|
|
6601
|
-
* @param {*} [options] Override http request option.
|
|
6602
|
-
* @throws {RequiredError}
|
|
6603
|
-
*/
|
|
6604
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
6605
|
-
};
|
|
6606
|
-
/**
|
|
6607
|
-
* UsersApi - factory interface
|
|
6608
|
-
* @export
|
|
6609
|
-
*/
|
|
6610
|
-
declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6611
|
-
/**
|
|
6612
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6613
|
-
* @summary Get Me
|
|
6614
|
-
* @param {*} [options] Override http request option.
|
|
6615
|
-
* @throws {RequiredError}
|
|
6616
|
-
*/
|
|
6617
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6618
|
-
};
|
|
6619
|
-
/**
|
|
6620
|
-
* UsersApi - object-oriented interface
|
|
6621
|
-
* @export
|
|
6622
|
-
* @class UsersApi
|
|
6623
|
-
* @extends {BaseAPI}
|
|
6624
|
-
*/
|
|
6625
|
-
declare class UsersApi extends BaseAPI {
|
|
6626
|
-
/**
|
|
6627
|
-
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6628
|
-
* @summary Get Me
|
|
6629
|
-
* @param {*} [options] Override http request option.
|
|
6630
|
-
* @throws {RequiredError}
|
|
6631
|
-
* @memberof UsersApi
|
|
6632
|
-
*/
|
|
6633
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6634
|
-
}
|
|
6635
6655
|
|
|
6636
|
-
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 };
|