@diasro/ucsd-its-frontend 0.1.6 → 0.1.8
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/components/authorization/LogoutSuccess.vue.d.ts +2 -0
- package/dist/stores/its-app.d.ts +4 -1
- package/dist/stores/its-auth.d.ts +4 -1
- package/dist/types/UcsdConfig.d.ts +1 -0
- package/dist/ucsd-its-frontend.js +3212 -3089
- package/dist/ucsd-its-frontend.umd.cjs +15 -15
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _sfc_main;
|
package/dist/stores/its-app.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
118
118
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
119
119
|
renderIcon: (menuItem: any) => any;
|
|
120
120
|
invokeLoginCallback: () => Promise<void>;
|
|
121
|
+
invokeLogoutCallback: () => void;
|
|
121
122
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
122
123
|
secureRoutes: () => void;
|
|
123
124
|
startProgTimer: () => void;
|
|
@@ -225,6 +226,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
225
226
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
226
227
|
renderIcon: (menuItem: any) => any;
|
|
227
228
|
invokeLoginCallback: () => Promise<void>;
|
|
229
|
+
invokeLogoutCallback: () => void;
|
|
228
230
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
229
231
|
secureRoutes: () => void;
|
|
230
232
|
startProgTimer: () => void;
|
|
@@ -332,6 +334,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
332
334
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
333
335
|
renderIcon: (menuItem: any) => any;
|
|
334
336
|
invokeLoginCallback: () => Promise<void>;
|
|
337
|
+
invokeLogoutCallback: () => void;
|
|
335
338
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
336
339
|
secureRoutes: () => void;
|
|
337
340
|
startProgTimer: () => void;
|
|
@@ -339,4 +342,4 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
339
342
|
setInProgress: (flag: boolean, message: string, step: number) => void;
|
|
340
343
|
reBuildOnLayoutSwitch: () => void;
|
|
341
344
|
apiClientKeys: () => any;
|
|
342
|
-
}, "toggleTheme" | "setDockVisible" | "setNavDrawer" | "setDockPosition" | "setCurrentTheme" | "setFloatMenu" | "setCurrentPageHdr" | "setCurrentSubHdr" | "init" | "setLayoutRail" | "setCurrentLayout" | "setActiveMenuVal" | "setActiveMenu" | "getBadgeContent" | "execAction" | "renderIcon" | "invokeLoginCallback" | "getCustomAuth" | "secureRoutes" | "startProgTimer" | "setInProgress" | "reBuildOnLayoutSwitch" | "apiClientKeys">>;
|
|
345
|
+
}, "toggleTheme" | "setDockVisible" | "setNavDrawer" | "setDockPosition" | "setCurrentTheme" | "setFloatMenu" | "setCurrentPageHdr" | "setCurrentSubHdr" | "init" | "setLayoutRail" | "setCurrentLayout" | "setActiveMenuVal" | "setActiveMenu" | "getBadgeContent" | "execAction" | "renderIcon" | "invokeLoginCallback" | "invokeLogoutCallback" | "getCustomAuth" | "secureRoutes" | "startProgTimer" | "setInProgress" | "reBuildOnLayoutSwitch" | "apiClientKeys">>;
|
|
@@ -87,6 +87,7 @@ export declare const useItsAuthStore: import("pinia").StoreDefinition<"its-auth"
|
|
|
87
87
|
name: string;
|
|
88
88
|
};
|
|
89
89
|
getUserEmail: () => string;
|
|
90
|
+
logoutSSO: () => void;
|
|
90
91
|
}, "accessToken" | "pkceCodeVerifier" | "userDetails" | "preAuthRoute">, Pick<{
|
|
91
92
|
accessToken: import("vue").Ref<string, string>;
|
|
92
93
|
pkceCodeVerifier: import("vue").Ref<string, string>;
|
|
@@ -140,6 +141,7 @@ export declare const useItsAuthStore: import("pinia").StoreDefinition<"its-auth"
|
|
|
140
141
|
name: string;
|
|
141
142
|
};
|
|
142
143
|
getUserEmail: () => string;
|
|
144
|
+
logoutSSO: () => void;
|
|
143
145
|
}, never>, Pick<{
|
|
144
146
|
accessToken: import("vue").Ref<string, string>;
|
|
145
147
|
pkceCodeVerifier: import("vue").Ref<string, string>;
|
|
@@ -193,4 +195,5 @@ export declare const useItsAuthStore: import("pinia").StoreDefinition<"its-auth"
|
|
|
193
195
|
name: string;
|
|
194
196
|
};
|
|
195
197
|
getUserEmail: () => string;
|
|
196
|
-
|
|
198
|
+
logoutSSO: () => void;
|
|
199
|
+
}, "isAuthenticated" | "decryptedToken" | "isTokenExpired" | "loginUser" | "setUserDetails" | "isUserRolesLoaded" | "getRoleAssignedToUser" | "clearAccessTokenAndUserData" | "authenticateUser" | "authenticate" | "logout" | "getAvatar" | "userInfo" | "getUserEmail" | "logoutSSO">>;
|