@chopkola/common 1.0.48 → 1.0.50
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/build/types/global.d.ts
CHANGED
|
@@ -19,5 +19,5 @@ export interface SystemLoggedActivityI {
|
|
|
19
19
|
export interface SystemPerformanceI {
|
|
20
20
|
id: string;
|
|
21
21
|
}
|
|
22
|
-
export declare
|
|
23
|
-
export declare
|
|
22
|
+
export declare type FilterTab = "all" | UserAccountTypeEnum;
|
|
23
|
+
export declare const filterTabs: readonly FilterTab[];
|
package/build/types/global.js
CHANGED
|
@@ -4,4 +4,7 @@ exports.filterTabs = exports.REFRESH_TOKEN_EXPIRATION_DURATION = exports.ACCESS_
|
|
|
4
4
|
const user_1 = require("./enum/user");
|
|
5
5
|
exports.ACCESS_TOKEN_EXPIRATION_DURATION = '15m';
|
|
6
6
|
exports.REFRESH_TOKEN_EXPIRATION_DURATION = '1d';
|
|
7
|
-
exports.filterTabs = [
|
|
7
|
+
exports.filterTabs = [
|
|
8
|
+
"all",
|
|
9
|
+
...Object.values(user_1.UserAccountTypeEnum),
|
|
10
|
+
];
|