gst-common 1.2.74 → 1.2.76
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/index.cjs +8 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +8 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -58,8 +58,15 @@ module.exports = __toCommonJS(index_exports);
|
|
|
58
58
|
// src/constant.ts
|
|
59
59
|
var OTP_RESEND_TIME = 20;
|
|
60
60
|
var COMMON_ROUTES = {
|
|
61
|
+
classList: "/class",
|
|
61
62
|
registeredProgram: "/registered-program",
|
|
62
|
-
studentClassList: "/student-class"
|
|
63
|
+
studentClassList: "/student-class",
|
|
64
|
+
classDetail: (id) => {
|
|
65
|
+
return `/class-detail/${id}`;
|
|
66
|
+
},
|
|
67
|
+
studentClassDetail: (id) => {
|
|
68
|
+
return `/student-class-detail/${id}`;
|
|
69
|
+
}
|
|
63
70
|
};
|
|
64
71
|
var REGISTER_PROGRAM_TIME = 12 * 60 * 60;
|
|
65
72
|
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
declare const OTP_RESEND_TIME = 20;
|
|
2
2
|
declare const COMMON_ROUTES: {
|
|
3
|
+
classList: string;
|
|
3
4
|
registeredProgram: string;
|
|
4
5
|
studentClassList: string;
|
|
6
|
+
classDetail: (id: string) => string;
|
|
7
|
+
studentClassDetail: (id: string) => string;
|
|
5
8
|
};
|
|
6
9
|
declare const REGISTER_PROGRAM_TIME: number;
|
|
7
10
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
declare const OTP_RESEND_TIME = 20;
|
|
2
2
|
declare const COMMON_ROUTES: {
|
|
3
|
+
classList: string;
|
|
3
4
|
registeredProgram: string;
|
|
4
5
|
studentClassList: string;
|
|
6
|
+
classDetail: (id: string) => string;
|
|
7
|
+
studentClassDetail: (id: string) => string;
|
|
5
8
|
};
|
|
6
9
|
declare const REGISTER_PROGRAM_TIME: number;
|
|
7
10
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
// src/constant.ts
|
|
2
2
|
var OTP_RESEND_TIME = 20;
|
|
3
3
|
var COMMON_ROUTES = {
|
|
4
|
+
classList: "/class",
|
|
4
5
|
registeredProgram: "/registered-program",
|
|
5
|
-
studentClassList: "/student-class"
|
|
6
|
+
studentClassList: "/student-class",
|
|
7
|
+
classDetail: (id) => {
|
|
8
|
+
return `/class-detail/${id}`;
|
|
9
|
+
},
|
|
10
|
+
studentClassDetail: (id) => {
|
|
11
|
+
return `/student-class-detail/${id}`;
|
|
12
|
+
}
|
|
6
13
|
};
|
|
7
14
|
var REGISTER_PROGRAM_TIME = 12 * 60 * 60;
|
|
8
15
|
|