sevago-sso-fe 1.0.29 → 1.0.31
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/common/constant/icons.constant.d.ts +29 -0
- package/dist/common/constant/index.d.ts +1 -0
- package/dist/components/sidebar/apps-sidebar.component.d.ts +1 -0
- package/dist/images/icon-apps-sidebar.svg +6 -0
- package/dist/index.cjs.js +567 -4352
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +526 -4311
- package/dist/index.esm.js.map +1 -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/firebase-messaging-sw.js +0 -91
|
@@ -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
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { default as sevagoEHiringIcon } from '../../assets/system/sevago-e-hiring.svg';
|
|
2
|
+
import { default as sevagoHrmIcon } from '../../assets/system/sevago-hrm.svg';
|
|
3
|
+
import { default as sevagoPayrollIcon } from '../../assets/system/sevago-payroll.svg';
|
|
4
|
+
import { default as sevagoChartIcon } from '../../assets/system/sevago-chart.svg';
|
|
5
|
+
import { default as sevagoCheckinIcon } from '../../assets/system/sevago-checkin.svg';
|
|
6
|
+
import { default as sevagoProjectIcon } from '../../assets/system/sevago-project.svg';
|
|
7
|
+
import { default as sevagoRequestIcon } from '../../assets/system/sevago-request.svg';
|
|
8
|
+
import { default as sevagoIcon } from '../../assets/system/sevago.svg';
|
|
9
|
+
import { default as sevagoMessageIcon } from '../../assets/system/sevago-message.svg';
|
|
10
|
+
import { default as sevagoTrainingIcon } from '../../assets/system/sevago-training.svg';
|
|
11
|
+
import { default as sevagoFormIcon } from '../../assets/system/sevago-form.svg';
|
|
12
|
+
import { default as sevagoInsideIcon } from '../../assets/system/sevago-inside.svg';
|
|
13
|
+
import { default as IconAppsSidebar } from '../../assets/system/icon-apps-sidebar.svg';
|
|
14
|
+
export { sevagoEHiringIcon, sevagoHrmIcon, sevagoPayrollIcon, sevagoChartIcon, sevagoCheckinIcon, sevagoProjectIcon, sevagoRequestIcon, sevagoIcon, sevagoMessageIcon, sevagoTrainingIcon, sevagoFormIcon, sevagoInsideIcon, IconAppsSidebar, };
|
|
15
|
+
export declare const ICONS: {
|
|
16
|
+
sevagoEHiringIcon: string;
|
|
17
|
+
sevagoHrmIcon: string;
|
|
18
|
+
sevagoPayrollIcon: string;
|
|
19
|
+
sevagoChartIcon: string;
|
|
20
|
+
sevagoCheckinIcon: string;
|
|
21
|
+
sevagoProjectIcon: string;
|
|
22
|
+
sevagoRequestIcon: string;
|
|
23
|
+
sevagoIcon: string;
|
|
24
|
+
sevagoMessageIcon: string;
|
|
25
|
+
sevagoTrainingIcon: string;
|
|
26
|
+
sevagoFormIcon: string;
|
|
27
|
+
sevagoInsideIcon: string;
|
|
28
|
+
IconAppsSidebar: string;
|
|
29
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 0.100098C1.67452 0.100098 0.6 1.17461 0.6 2.5001V4.9001C0.6 6.22558 1.67452 7.3001 3 7.3001H5.4C6.72548 7.3001 7.8 6.22558 7.8 4.9001V2.5001C7.8 1.17461 6.72548 0.100098 5.4 0.100098H3Z" fill="#111827"/>
|
|
3
|
+
<path d="M3 9.7001C1.67452 9.7001 0.6 10.7746 0.6 12.1001V14.5001C0.6 15.8256 1.67452 16.9001 3 16.9001H5.4C6.72548 16.9001 7.8 15.8256 7.8 14.5001V12.1001C7.8 10.7746 6.72548 9.7001 5.4 9.7001H3Z" fill="#111827"/>
|
|
4
|
+
<path d="M10.2 2.5001C10.2 1.17461 11.2745 0.100098 12.6 0.100098H15C16.3255 0.100098 17.4 1.17461 17.4 2.5001V4.9001C17.4 6.22558 16.3255 7.3001 15 7.3001H12.6C11.2745 7.3001 10.2 6.22558 10.2 4.9001V2.5001Z" fill="#111827"/>
|
|
5
|
+
<path d="M10.2 12.1001C10.2 10.7746 11.2745 9.7001 12.6 9.7001H15C16.3255 9.7001 17.4 10.7746 17.4 12.1001V14.5001C17.4 15.8256 16.3255 16.9001 15 16.9001H12.6C11.2745 16.9001 10.2 15.8256 10.2 14.5001V12.1001Z" fill="#111827"/>
|
|
6
|
+
</svg>
|