new lib version [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2020-12-29 13:35:32 +00:00
parent b7a815076f
commit ec3df312be
33 changed files with 188 additions and 86 deletions

4
dist/models/CreateResetToken.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
export declare type CreateResetToken = {
username?: string;
email?: string;
};

5
dist/models/CreateResetToken.js vendored Normal file
View File

@@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -6,5 +6,6 @@ export declare type CreateUser = {
email?: string;
phone?: string;
password: string;
enabled?: boolean;
groups?: any;
};

View File

@@ -0,0 +1,4 @@
export declare type ResetAlreadyRequestedError = {
name: string;
message: string;
};

View File

@@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });

4
dist/models/ResetPassword.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
export declare type ResetPassword = {
resetToken?: string;
password: string;
};

5
dist/models/ResetPassword.js vendored Normal file
View File

@@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -11,6 +11,7 @@ export declare type User = {
enabled: boolean;
refreshTokenCount: number;
profilePic?: string;
resetRequestedTimestamp?: string;
actions?: any;
id: number;
};

4
dist/models/UserDisabledError.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
export declare type UserDisabledError = {
name: string;
message: string;
};

5
dist/models/UserDisabledError.js vendored Normal file
View File

@@ -0,0 +1,5 @@
"use strict";
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });