academe-kit 0.3.6 → 0.3.8
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.d.ts +8036 -3255
- package/dist/index.esm.js +347 -48
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +346 -47
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +19 -19
- package/dist/types/roles/applications.d.ts +5 -0
- package/dist/types/services/AuthService.d.ts +132 -0
- package/dist/types/services/CertificateService.d.ts +221 -0
- package/dist/types/services/ClassroomService.d.ts +55 -4
- package/dist/types/services/GroupService.d.ts +515 -0
- package/dist/types/services/InstitutionService.d.ts +26 -19
- package/dist/types/services/QuizService.d.ts +223 -0
- package/dist/types/services/SeatCodeService.d.ts +456 -0
- package/dist/types/services/UserService.d.ts +112 -16
- package/dist/types/services/index.d.ts +32 -17
- package/dist/types/types/academe-api.d.ts +3598 -534
- package/dist/types/types/index.d.ts +18 -9
- package/package.json +1 -1
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
import type { components } from
|
|
2
|
-
export type User = components[
|
|
3
|
-
export type Institution = components[
|
|
4
|
-
export type Classroom = components[
|
|
5
|
-
export type InstitutionClassroom = components[
|
|
6
|
-
export type InstitutionUser = components[
|
|
7
|
-
export type Organization = components[
|
|
8
|
-
export type Serie = components[
|
|
9
|
-
export type Shift = components[
|
|
1
|
+
import type { components } from "./academe-api";
|
|
2
|
+
export type User = components["schemas"]["User"];
|
|
3
|
+
export type Institution = components["schemas"]["Institution"];
|
|
4
|
+
export type Classroom = components["schemas"]["Classroom"];
|
|
5
|
+
export type InstitutionClassroom = components["schemas"]["InstitutionClassroom"];
|
|
6
|
+
export type InstitutionUser = components["schemas"]["InstitutionUser"];
|
|
7
|
+
export type Organization = components["schemas"]["Organization"];
|
|
8
|
+
export type Serie = components["schemas"]["Serie"];
|
|
9
|
+
export type Shift = components["schemas"]["Shift"];
|
|
10
|
+
export type Seat = components["schemas"]["Seats"];
|
|
11
|
+
export type Group = components["schemas"]["Group"];
|
|
12
|
+
export type SeatCode = components["schemas"]["SeatCode"];
|
|
13
|
+
export type SeatCodeWithInstitution = components["schemas"]["SeatCodeWithInstitution"];
|
|
14
|
+
export interface IPaginationMeta {
|
|
15
|
+
total: number;
|
|
16
|
+
page: number;
|
|
17
|
+
limit: number;
|
|
18
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "academe-kit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official React SDK for Academe ecosystem - Authentication, protected routes, API services, and UI components for educational management applications",
|
|
6
6
|
"main": "dist/index.js",
|