@appcorp/fusion-storybook 0.3.4 → 0.3.5
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/constants.d.ts +1 -1
- package/constants.js +1 -1
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/constants.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ export declare const STUDENT_FEE_API_ROUTES: {
|
|
|
74
74
|
readonly BULK: "/api/v1/student-fee/bulk";
|
|
75
75
|
readonly BULK_STATUS: (jobId: string) => string;
|
|
76
76
|
readonly CREATE_MONTHLY: "/api/v1/student-fee/create-monthly";
|
|
77
|
-
readonly BY_COMPUTER_NUMBER: "/api/v1/student-fee
|
|
77
|
+
readonly BY_COMPUTER_NUMBER: "/api/v1/student-fee-by-computer-number";
|
|
78
78
|
};
|
|
79
79
|
export declare const STUDENT_PROFILE_API_ROUTES: {
|
|
80
80
|
readonly LIST: "/api/v1/student-profile";
|
package/constants.js
CHANGED
|
@@ -85,7 +85,7 @@ export const STUDENT_FEE_API_ROUTES = {
|
|
|
85
85
|
BULK: "/api/v1/student-fee/bulk",
|
|
86
86
|
BULK_STATUS: (jobId) => `/api/v1/student-fee/bulk/${jobId}`,
|
|
87
87
|
CREATE_MONTHLY: "/api/v1/student-fee/create-monthly",
|
|
88
|
-
BY_COMPUTER_NUMBER: "/api/v1/student-fee
|
|
88
|
+
BY_COMPUTER_NUMBER: "/api/v1/student-fee-by-computer-number",
|
|
89
89
|
};
|
|
90
90
|
export const STUDENT_PROFILE_API_ROUTES = {
|
|
91
91
|
LIST: "/api/v1/student-profile",
|