@steffesgroup/steffes-auth
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -39,4 +39,4 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
export declare class TokenDTO implements ITokenDTO { | ||
accessToken?: string; | ||
refreshToken?: string; | ||
accessToken?: string | undefined; | ||
refreshToken?: string | undefined; | ||
accessTokenExpires?: Date; | ||
@@ -50,4 +50,4 @@ refreshTokenExpires?: Date; | ||
export interface ITokenDTO { | ||
accessToken?: string; | ||
refreshToken?: string; | ||
accessToken?: string | undefined; | ||
refreshToken?: string | undefined; | ||
accessTokenExpires?: Date; | ||
@@ -57,4 +57,4 @@ refreshTokenExpires?: Date; | ||
export declare class LoginDTO implements ILoginDTO { | ||
email?: string; | ||
password?: string; | ||
email: string; | ||
password: string; | ||
constructor(data?: ILoginDTO); | ||
@@ -66,8 +66,8 @@ init(_data?: any): void; | ||
export interface ILoginDTO { | ||
email?: string; | ||
password?: string; | ||
email: string; | ||
password: string; | ||
} | ||
export declare class RefreshTokenDTO implements IRefreshTokenDTO { | ||
expiredToken?: string; | ||
refreshToken?: string; | ||
expiredToken: string; | ||
refreshToken: string; | ||
constructor(data?: IRefreshTokenDTO); | ||
@@ -79,9 +79,9 @@ init(_data?: any): void; | ||
export interface IRefreshTokenDTO { | ||
expiredToken?: string; | ||
refreshToken?: string; | ||
expiredToken: string; | ||
refreshToken: string; | ||
} | ||
export declare class ResetPasswordDTO implements IResetPasswordDTO { | ||
email?: string; | ||
password?: string; | ||
token?: string; | ||
email: string; | ||
password: string; | ||
token: string; | ||
constructor(data?: IResetPasswordDTO); | ||
@@ -93,5 +93,5 @@ init(_data?: any): void; | ||
export interface IResetPasswordDTO { | ||
email?: string; | ||
password?: string; | ||
token?: string; | ||
email: string; | ||
password: string; | ||
token: string; | ||
} | ||
@@ -98,0 +98,0 @@ export declare class UserDTO implements IUserDTO { |
{ | ||
"name": "@steffesgroup/steffes-auth", | ||
"version": "0.2.02", | ||
"version": "0.2.03", | ||
"description": "Steffes Auth", | ||
@@ -5,0 +5,0 @@ "main": "dist/api.js", |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
25712
1