@closerplatform/spinner-openapi 0.12.1211 → 0.12.1213
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/api.d.ts +9 -3
- package/dist/api.js +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5018,6 +5018,12 @@ export interface PasswordChangeForm {
|
|
|
5018
5018
|
* @memberof PasswordChangeForm
|
|
5019
5019
|
*/
|
|
5020
5020
|
oldPassword: string;
|
|
5021
|
+
/**
|
|
5022
|
+
*
|
|
5023
|
+
* @type {string}
|
|
5024
|
+
* @memberof PasswordChangeForm
|
|
5025
|
+
*/
|
|
5026
|
+
clientId: string;
|
|
5021
5027
|
}
|
|
5022
5028
|
/**
|
|
5023
5029
|
*
|
|
@@ -14857,7 +14863,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
14857
14863
|
* @param {*} [options] Override http request option.
|
|
14858
14864
|
* @throws {RequiredError}
|
|
14859
14865
|
*/
|
|
14860
|
-
changePassword(body: PasswordChangeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
14866
|
+
changePassword(body: PasswordChangeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TokenResponse>;
|
|
14861
14867
|
/**
|
|
14862
14868
|
*
|
|
14863
14869
|
* @summary Send continue conversation link
|
|
@@ -15134,7 +15140,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15134
15140
|
* @param {*} [options] Override http request option.
|
|
15135
15141
|
* @throws {RequiredError}
|
|
15136
15142
|
*/
|
|
15137
|
-
changePassword(body: PasswordChangeForm, options?: any): Promise<
|
|
15143
|
+
changePassword(body: PasswordChangeForm, options?: any): Promise<TokenResponse>;
|
|
15138
15144
|
/**
|
|
15139
15145
|
*
|
|
15140
15146
|
* @summary Send continue conversation link
|
|
@@ -15414,7 +15420,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
15414
15420
|
* @throws {RequiredError}
|
|
15415
15421
|
* @memberof UsersApi
|
|
15416
15422
|
*/
|
|
15417
|
-
changePassword(body: PasswordChangeForm, options?: any): Promise<
|
|
15423
|
+
changePassword(body: PasswordChangeForm, options?: any): Promise<TokenResponse>;
|
|
15418
15424
|
/**
|
|
15419
15425
|
*
|
|
15420
15426
|
* @summary Send continue conversation link
|
package/dist/api.js
CHANGED
|
@@ -16538,7 +16538,7 @@ const UsersApiFp = function (configuration) {
|
|
|
16538
16538
|
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
16539
16539
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
16540
16540
|
if (response.status >= 200 && response.status < 300) {
|
|
16541
|
-
return response;
|
|
16541
|
+
return response.json();
|
|
16542
16542
|
}
|
|
16543
16543
|
else {
|
|
16544
16544
|
throw response;
|