gst-common 1.6.88 → 1.6.89
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 +4 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -395,6 +395,10 @@ var OTP_RESEND_TIME = 60;
|
|
|
395
395
|
var URL_CLASS_DETAIL = "/class-detail";
|
|
396
396
|
var COMMON_ROUTES = {
|
|
397
397
|
classList: "/class",
|
|
398
|
+
profile: "/trang-ca-nhan",
|
|
399
|
+
profileDetail(accountId) {
|
|
400
|
+
return `${this.profile}/${accountId}`;
|
|
401
|
+
},
|
|
398
402
|
registeredProgram: "/registered-program",
|
|
399
403
|
studentClassList: "/student-class",
|
|
400
404
|
wallet: "/wallet",
|
package/dist/index.d.cts
CHANGED
|
@@ -663,6 +663,8 @@ declare const OTP_RESEND_TIME = 60;
|
|
|
663
663
|
declare const URL_CLASS_DETAIL = "/class-detail";
|
|
664
664
|
declare const COMMON_ROUTES: {
|
|
665
665
|
classList: string;
|
|
666
|
+
profile: string;
|
|
667
|
+
profileDetail(accountId: string): string;
|
|
666
668
|
registeredProgram: string;
|
|
667
669
|
studentClassList: string;
|
|
668
670
|
wallet: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -663,6 +663,8 @@ declare const OTP_RESEND_TIME = 60;
|
|
|
663
663
|
declare const URL_CLASS_DETAIL = "/class-detail";
|
|
664
664
|
declare const COMMON_ROUTES: {
|
|
665
665
|
classList: string;
|
|
666
|
+
profile: string;
|
|
667
|
+
profileDetail(accountId: string): string;
|
|
666
668
|
registeredProgram: string;
|
|
667
669
|
studentClassList: string;
|
|
668
670
|
wallet: string;
|
package/dist/index.mjs
CHANGED
|
@@ -280,6 +280,10 @@ var OTP_RESEND_TIME = 60;
|
|
|
280
280
|
var URL_CLASS_DETAIL = "/class-detail";
|
|
281
281
|
var COMMON_ROUTES = {
|
|
282
282
|
classList: "/class",
|
|
283
|
+
profile: "/trang-ca-nhan",
|
|
284
|
+
profileDetail(accountId) {
|
|
285
|
+
return `${this.profile}/${accountId}`;
|
|
286
|
+
},
|
|
283
287
|
registeredProgram: "/registered-program",
|
|
284
288
|
studentClassList: "/student-class",
|
|
285
289
|
wallet: "/wallet",
|