@brite-future-schools-contracts/contracts 2.0.2 → 2.0.4
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/chunk-3OMU2YSE.js +478 -0
- package/dist/chunk-3OMU2YSE.js.map +1 -0
- package/dist/chunk-R4XE3SFR.js +1 -0
- package/dist/chunk-S3BK5YEH.js +131 -0
- package/dist/chunk-S3BK5YEH.js.map +1 -0
- package/dist/contracts/index.cjs +415 -2
- package/dist/contracts/index.cjs.map +1 -1
- package/dist/contracts/index.d.cts +941 -1
- package/dist/contracts/index.d.ts +941 -1
- package/dist/contracts/index.js +32 -4
- package/dist/index.cjs +683 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +134 -2
- package/dist/index.d.ts +134 -2
- package/dist/index.js +265 -5
- package/dist/index.js.map +1 -1
- package/dist/schemas/index.cjs +373 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +564 -1
- package/dist/schemas/index.d.ts +564 -1
- package/dist/schemas/index.js +46 -2
- package/package.json +1 -1
- package/dist/chunk-AEZO7MJD.js +0 -127
- package/dist/chunk-AEZO7MJD.js.map +0 -1
- package/dist/chunk-IR6JUP6L.js +0 -48
- package/dist/chunk-IR6JUP6L.js.map +0 -1
- package/dist/chunk-PCHAGP5X.js +0 -1
- /package/dist/{chunk-PCHAGP5X.js.map → chunk-R4XE3SFR.js.map} +0 -0
package/dist/contracts/index.js
CHANGED
|
@@ -1,24 +1,52 @@
|
|
|
1
1
|
import {
|
|
2
2
|
authContract,
|
|
3
|
+
bulkUploadStudentsContract,
|
|
3
4
|
changePasswordContract,
|
|
5
|
+
createDepartmentContract,
|
|
6
|
+
createStaffContract,
|
|
7
|
+
createStudentContract,
|
|
4
8
|
getMeContract,
|
|
9
|
+
getStaffByIdContract,
|
|
10
|
+
getStudentByIdContract,
|
|
11
|
+
hrContract,
|
|
12
|
+
linkGuardianContract,
|
|
13
|
+
listClassesContract,
|
|
14
|
+
listDepartmentsContract,
|
|
15
|
+
listStaffContract,
|
|
16
|
+
listStudentsContract,
|
|
5
17
|
loginContract,
|
|
6
18
|
logoutContract,
|
|
7
19
|
refreshTokenContract,
|
|
8
20
|
requestPasswordResetContract,
|
|
9
21
|
resetPasswordContract,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
22
|
+
studentsContract,
|
|
23
|
+
switchBranchContract,
|
|
24
|
+
updateStaffStatusContract
|
|
25
|
+
} from "../chunk-S3BK5YEH.js";
|
|
26
|
+
import "../chunk-3OMU2YSE.js";
|
|
13
27
|
export {
|
|
14
28
|
authContract,
|
|
29
|
+
bulkUploadStudentsContract,
|
|
15
30
|
changePasswordContract,
|
|
31
|
+
createDepartmentContract,
|
|
32
|
+
createStaffContract,
|
|
33
|
+
createStudentContract,
|
|
16
34
|
getMeContract,
|
|
35
|
+
getStaffByIdContract,
|
|
36
|
+
getStudentByIdContract,
|
|
37
|
+
hrContract,
|
|
38
|
+
linkGuardianContract,
|
|
39
|
+
listClassesContract,
|
|
40
|
+
listDepartmentsContract,
|
|
41
|
+
listStaffContract,
|
|
42
|
+
listStudentsContract,
|
|
17
43
|
loginContract,
|
|
18
44
|
logoutContract,
|
|
19
45
|
refreshTokenContract,
|
|
20
46
|
requestPasswordResetContract,
|
|
21
47
|
resetPasswordContract,
|
|
22
|
-
|
|
48
|
+
studentsContract,
|
|
49
|
+
switchBranchContract,
|
|
50
|
+
updateStaffStatusContract
|
|
23
51
|
};
|
|
24
52
|
//# sourceMappingURL=index.js.map
|