sevago-sso-fe 1.0.30 → 1.0.32
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/apis/auth/auth.api.d.ts +1 -3
- package/dist/apis/auth/auth.interface.d.ts +0 -6
- package/dist/common/config/index.d.ts +0 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/index.cjs.js +10528 -14614
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9630 -13716
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/dashboard/index.d.ts +0 -1
- package/dist/redux/account/account.action.d.ts +1 -6
- package/dist/redux/account/account.interface.d.ts +0 -2
- package/package.json +1 -2
- package/dist/common/config/firebase.config.d.ts +0 -3
- package/dist/components/bell/bell.component.d.ts +0 -4
- package/dist/components/bell/index.d.ts +0 -1
- package/dist/firebase-messaging-sw.js +0 -91
- package/dist/pages/dashboard/parts/index.d.ts +0 -1
- package/dist/pages/dashboard/parts/monitor/index.d.ts +0 -1
- package/dist/pages/dashboard/parts/monitor/monitor.part.d.ts +0 -2
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { ForgotPasswordDto, LoginDto, LogoutDto, RefreshTokenDto, ResetPasswordDto, ResponseAuth,
|
|
1
|
+
import { ForgotPasswordDto, LoginDto, LogoutDto, RefreshTokenDto, ResetPasswordDto, ResponseAuth, TokenObject, VerifyOtpDto } from './auth.interface';
|
|
2
2
|
export declare const login: (body: LoginDto) => Promise<ResponseAuth>;
|
|
3
3
|
export declare const logout: (body: LogoutDto) => Promise<import('axios').AxiosResponse<any, any, {}>>;
|
|
4
4
|
export declare const forgotPassword: (body: ForgotPasswordDto) => Promise<import('axios').AxiosResponse<any, any, {}>>;
|
|
5
5
|
export declare const verifyOtp: (body: VerifyOtpDto) => Promise<TokenObject>;
|
|
6
6
|
export declare const resetPassword: (body: ResetPasswordDto) => Promise<ResponseAuth>;
|
|
7
7
|
export declare const refreshToken: (body: RefreshTokenDto) => Promise<Omit<ResponseAuth, "user">>;
|
|
8
|
-
export declare const subscribeTopic: (body: SubscribeUnsubscribeTopicDto) => Promise<ResponseFcm>;
|
|
9
|
-
export declare const unsubscribeTopic: (body: SubscribeUnsubscribeTopicDto) => Promise<import('axios').AxiosResponse<any, any, {}>>;
|
|
@@ -29,9 +29,6 @@ export interface ResetPasswordDto {
|
|
|
29
29
|
password: string;
|
|
30
30
|
type: ResetPasswordType;
|
|
31
31
|
}
|
|
32
|
-
export interface SubscribeUnsubscribeTopicDto {
|
|
33
|
-
fcmToken: string;
|
|
34
|
-
}
|
|
35
32
|
export interface VerifyOtpDto {
|
|
36
33
|
phone: string;
|
|
37
34
|
otp: string;
|
|
@@ -42,9 +39,6 @@ export interface ResponseAuth {
|
|
|
42
39
|
refreshToken: string;
|
|
43
40
|
sidebarCountObj: Record<string, number>;
|
|
44
41
|
}
|
|
45
|
-
export interface ResponseFcm {
|
|
46
|
-
fcmToken: string;
|
|
47
|
-
}
|
|
48
42
|
export interface TokenObject {
|
|
49
43
|
token: string;
|
|
50
44
|
}
|