gst-common 1.5.24 → 1.5.25

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 CHANGED
@@ -268,6 +268,7 @@ var COMMON_ROUTES = {
268
268
  classList: "/class",
269
269
  registeredProgram: "/registered-program",
270
270
  studentClassList: "/student-class",
271
+ wallet: "/wallet",
271
272
  classDetail: (id) => {
272
273
  return `${URL_CLASS_DETAIL}/${id}`;
273
274
  },
package/dist/index.d.cts CHANGED
@@ -481,6 +481,7 @@ declare const COMMON_ROUTES: {
481
481
  classList: string;
482
482
  registeredProgram: string;
483
483
  studentClassList: string;
484
+ wallet: string;
484
485
  classDetail: (id: string) => string;
485
486
  programDetail: (id: string, tab: PROGRAM_DETAIL_TABS) => string;
486
487
  classDetailReport: (classId: string, reportId: string) => string;
package/dist/index.d.ts CHANGED
@@ -481,6 +481,7 @@ declare const COMMON_ROUTES: {
481
481
  classList: string;
482
482
  registeredProgram: string;
483
483
  studentClassList: string;
484
+ wallet: string;
484
485
  classDetail: (id: string) => string;
485
486
  programDetail: (id: string, tab: PROGRAM_DETAIL_TABS) => string;
486
487
  classDetailReport: (classId: string, reportId: string) => string;
package/dist/index.mjs CHANGED
@@ -182,6 +182,7 @@ var COMMON_ROUTES = {
182
182
  classList: "/class",
183
183
  registeredProgram: "/registered-program",
184
184
  studentClassList: "/student-class",
185
+ wallet: "/wallet",
185
186
  classDetail: (id) => {
186
187
  return `${URL_CLASS_DETAIL}/${id}`;
187
188
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.24",
3
+ "version": "1.5.25",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",