@faiber/faiber-lms 0.2.0 → 0.2.2

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @faiber/faiber-lms
2
2
 
3
- Typed, framework-neutral TypeScript client for Faiber courses, classrooms, assessments, certificates, events, homework, and reports.
3
+ Courses, categories, video sections, classrooms, sessions, enrollments, exams, homework, certificates, events, interactive content, operations, reports, and education configuration.
4
4
 
5
5
  ## Install
6
6
 
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber courses, classrooms, asses
8
8
  npm install @faiber/faiber-lms
9
9
  ```
10
10
 
11
- ## Create a client
11
+ ## Configure
12
12
 
13
13
  ```ts
14
14
  import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
@@ -22,23 +22,56 @@ const client = new FaiberClient("lms", {
22
22
  });
23
23
  const api = new LmsApi(client);
24
24
 
25
- const courses = await api.courses.list({ page_number: 1, page_size: 20 });
25
+ const courses = await api.courses.list({
26
+ "page[number]": 1,
27
+ "page[size]": 20,
28
+ });
29
+ const sessions = await api.courseSessions(courseId);
26
30
  ```
27
31
 
28
- All methods return a full Axios `AxiosResponse`. Entities, named request inputs, response envelopes, pagination models, and shared core types are exported from the package. Use `client.request<TResponse, TBody>()` for project-specific endpoints.
32
+ ## Complete capability
29
33
 
30
- ## Authentication
34
+ This package exposes 127 registered operations from the learning management service. Common workflows have concise methods on `api`; every registered backend route is also available as a named function on `api.operations`. Generated operation input, query, response, path, verb, and permission contracts are exported from `operations.types`.
31
35
 
32
- Pass a `TokenProvider` for bearer authentication, or set `withCredentials: true` for secure cookie sessions. The SDK never reads browser storage or environment variables implicitly.
36
+ | Area | Operations | HTTP methods |
37
+ |---|---:|---|
38
+ | `certificate` | 4 | `GET`, `PATCH`, `POST` |
39
+ | `classroom` | 13 | `DELETE`, `GET`, `PATCH`, `POST` |
40
+ | `config` | 20 | `GET`, `PATCH`, `POST` |
41
+ | `course` | 16 | `GET`, `PATCH`, `POST` |
42
+ | `dashboard` | 1 | `GET` |
43
+ | `docs` | 1 | `GET` |
44
+ | `event` | 12 | `GET`, `PATCH`, `POST` |
45
+ | `exam` | 12 | `GET`, `PATCH`, `POST` |
46
+ | `homework` | 12 | `GET`, `PATCH`, `POST` |
47
+ | `integration` | 1 | `GET` |
48
+ | `interactive` | 12 | `GET`, `PATCH`, `POST` |
49
+ | `ops` | 16 | `GET`, `PATCH`, `POST` |
50
+ | `report` | 3 | `GET` |
51
+ | `router` | 2 | `GET` |
52
+ | `service` | 1 | `GET` |
53
+ | `session` | 1 | `GET` |
33
54
 
34
- ## Errors and cancellation
55
+ Course sessions, classroom users and absences, assignments, invitations, club projects, support interactions, and work-time records have dedicated typed operations. Most LMS updates use `PATCH`; unsupported generic deletes are guarded locally.
56
+
57
+ ## Authentication and authorization
58
+
59
+ Use a `TokenProvider` to forward the signed-in user's Bearer token, or enable `withCredentials` for secure HttpOnly cookie sessions. Permission requirements copied from service route guards are included in each operation's JSDoc. The SDK does not embed API keys, credentials, localhost URLs, sandbox hosts, or production hosts.
60
+
61
+ ## Inputs, queries, responses, and transport
35
62
 
36
- Axios errors are preserved so callers can inspect `response.status`, structured API error bodies, headers, and request IDs. Pass normal Axios options as the final argument:
63
+ All methods return the complete Axios response, including status, headers, and request IDs. Request bodies and query objects are named exported interfaces. Nested pagination uses keys such as `page[number]` and `page[size]` where required by the service. Standard Axios request options, headers, timeouts, adapters, interceptors, and `AbortSignal` cancellation are supported as the final argument.
64
+
65
+ Generic REST resources are capability-guarded. Calling a legacy method that the service does not register throws `UnsupportedOperationError` before sending a request instead of producing a backend `405`.
66
+
67
+ ## Errors and cancellation
37
68
 
38
69
  ```ts
39
- await api.client.get("/health", undefined , { signal: AbortSignal.timeout(5_000) });
70
+ try {
71
+ await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
72
+ } catch (error) {
73
+ // Axios errors retain response.status and the service error body.
74
+ }
40
75
  ```
41
76
 
42
- ## Complete SDK
43
-
44
- Install `@faiber/faiber-ts-sdk` when an application uses multiple Faiber services. The complete package provides shared configuration, authentication, uploads, and error handling across services.
77
+ Use `@faiber/faiber-ts-sdk` when one application needs multiple Faiber services with one configuration.
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68],[67]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"8cb9e8d47cc3a150fe2b7eabc95375a7e69a50774be9b8e4107d1d436af9b593","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"b060635c1b555ff21aa5bab5b038e15d67700d6bec6738323a443715931589f1","impliedFormat":99},{"version":"98cf7f2f15a4c87fca87c49b72e140b49ad079ff077d157ee81a9466173854ba","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"181d571d5e24a6d44ad6f81979c8229937bf83bb36e9ac6c768299bef755c3d5","impliedFormat":99},{"version":"45b21b47f09cb0a406a2542c1edaf8f3a4f1528aeb0eb03f59ebc599e1f86d55","signature":"2b244d684ed307e11016fa77e9beca4cec23e8d6b75a38519d2ebe1166a17ab8","impliedFormat":99}],"root":[68,69],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[69,6],[68,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68,69,70],[67,69],[67]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"138724776c2b7fdf331300e22dfdfb8890d0400164f4996c02062e4e5d117927","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"82ffc9a1d95766c8f6f6bb4316b1d83e9d6a1d4ec41057d1a897cca70176bfc1","impliedFormat":99},{"version":"3f5eeb0a84713ccf640b9a6af4629e006f59d7629abc3fc95af2efb062fd0b83","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"181d571d5e24a6d44ad6f81979c8229937bf83bb36e9ac6c768299bef755c3d5","impliedFormat":99},{"version":"5b0afa7e48c2b7aa63b52f68039ecb5e320fdcdbd006ca76360815ee7ef80bcd","signature":"9a97fbb14e59b89795d61211771e504aa55d398d299f5b0478f5e66912a4ceca","impliedFormat":99},{"version":"ba28c8b45076a6b100bbb0f5d3c5d36cbaef3c709d1488de937f112634654f35","signature":"8858b170c386a618939f96faef7f159340b15f81be760304c9a61c54fe650b8d","impliedFormat":99},{"version":"f4db2e9a29e498648cbf7c69ed2a2e6d132eecca259d6e39efaad4ef81c10ed5","signature":"a7afee005f6194e879f7ec89fb62c540c7087c8b9ce2ad41b97a6b32fb1c5ba9","impliedFormat":99}],"root":[[68,71]],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[71,6],[70,7],[69,8],[68,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  import { RestResource, ServiceApi, type Identifier, type QueryParams, type RequestOptions } from "@faiber/sdk-core";
2
2
  import type * as T from "./types.js";
3
3
  type R<E extends T.LmsEntity, C, U> = RestResource<E, C, U, T.LmsListResponse<E>, T.LmsResponse<E>>;
4
+ import { LmsOperations } from "./operations.js";
4
5
  export declare class LmsApi extends ServiceApi {
6
+ readonly operations: LmsOperations;
5
7
  readonly courses: R<T.Course, T.CreateCourseInput, T.UpdateCourseInput>;
6
8
  readonly courseCategories: R<T.CourseCategory, T.CreateCourseCategoryInput, T.UpdateCourseCategoryInput>;
7
9
  readonly videoSections: R<T.VideoSection, T.CreateVideoSectionInput, T.UpdateVideoSectionInput>;
@@ -25,4 +27,6 @@ export declare class LmsApi extends ServiceApi {
25
27
  }
26
28
  export * from "./types.js";
27
29
  export * from "@faiber/sdk-core";
30
+ export * from "./operations.js";
31
+ export * from "./operations.types.js";
28
32
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,21 +1,23 @@
1
1
  import { RestResource, ServiceApi } from "@faiber/sdk-core";
2
+ import { LmsOperations } from "./operations.js";
2
3
  export class LmsApi extends ServiceApi {
3
- courses = new RestResource(this.client, "/api/v1/courses");
4
- courseCategories = new RestResource(this.client, "/api/v1/courses/categories");
5
- videoSections = new RestResource(this.client, "/api/v1/courses/video-sections");
6
- classrooms = new RestResource(this.client, "/api/v1/classrooms");
7
- classroomSessions = new RestResource(this.client, "/api/v1/classrooms/sessions");
8
- exams = new RestResource(this.client, "/api/v1/exams");
9
- examQuestions = new RestResource(this.client, "/api/v1/exams/questions");
10
- examSessions = new RestResource(this.client, "/api/v1/exams/sessions");
11
- homeworks = new RestResource(this.client, "/api/v1/homeworks");
12
- homeworkQuestions = new RestResource(this.client, "/api/v1/homeworks/questions");
13
- certificates = new RestResource(this.client, "/api/v1/certificates");
14
- events = new RestResource(this.client, "/api/v1/events");
15
- interactiveContent = new RestResource(this.client, "/api/v1/interactive/content");
16
- grades = new RestResource(this.client, "/api/v1/config/grades");
17
- classroomTypes = new RestResource(this.client, "/api/v1/config/classroom-types");
18
- textTemplates = new RestResource(this.client, "/api/v1/config/text-templates");
4
+ operations = new LmsOperations(this.client);
5
+ courses = new RestResource(this.client, "/api/v1/courses", { supported: ["list", "show", "create", "update"] });
6
+ courseCategories = new RestResource(this.client, "/api/v1/courses/categories", { supported: ["list", "show", "create", "update"] });
7
+ videoSections = new RestResource(this.client, "/api/v1/courses/video-sections", { supported: ["list", "show", "create", "update"] });
8
+ classrooms = new RestResource(this.client, "/api/v1/classrooms", { supported: ["list", "show", "create", "update"] });
9
+ classroomSessions = new RestResource(this.client, "/api/v1/classrooms/sessions", { supported: ["list", "show", "create", "update"] });
10
+ exams = new RestResource(this.client, "/api/v1/exams", { supported: ["list", "show", "create", "update"] });
11
+ examQuestions = new RestResource(this.client, "/api/v1/exams/questions", { supported: ["list", "show", "create", "update"] });
12
+ examSessions = new RestResource(this.client, "/api/v1/exams/sessions", { supported: ["list", "show", "create", "update"] });
13
+ homeworks = new RestResource(this.client, "/api/v1/homeworks", { supported: ["list", "show", "create", "update"] });
14
+ homeworkQuestions = new RestResource(this.client, "/api/v1/homeworks/questions", { supported: ["list", "show", "create", "update"] });
15
+ certificates = new RestResource(this.client, "/api/v1/certificates", { supported: ["list", "show", "create", "update"] });
16
+ events = new RestResource(this.client, "/api/v1/events", { supported: ["list", "show", "create", "update"] });
17
+ interactiveContent = new RestResource(this.client, "/api/v1/interactive/content", { supported: ["list", "show", "create", "update"] });
18
+ grades = new RestResource(this.client, "/api/v1/config/grades", { supported: ["list", "show", "create", "update"] });
19
+ classroomTypes = new RestResource(this.client, "/api/v1/config/classroom-types", { supported: ["list", "show", "create", "update"] });
20
+ textTemplates = new RestResource(this.client, "/api/v1/config/text-templates", { supported: ["list", "show", "create", "update"] });
19
21
  dashboard(options) { return this.client.get("/api/v1/dashboard", undefined, options); }
20
22
  courseSessions(id, params, options) { return this.client.get(`/api/v1/courses/${encodeURIComponent(id)}/sessions`, params, options); }
21
23
  addClassroomUser(id, data, options) { return this.client.post(`/api/v1/classrooms/${encodeURIComponent(id)}/users`, data, options); }
@@ -23,4 +25,6 @@ export class LmsApi extends ServiceApi {
23
25
  }
24
26
  export * from "./types.js";
25
27
  export * from "@faiber/sdk-core";
28
+ export * from "./operations.js";
29
+ export * from "./operations.types.js";
26
30
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAA0D,MAAM,kBAAkB,CAAC;AAGpH,MAAM,OAAO,MAAO,SAAQ,UAAU;IACzB,OAAO,GAA0D,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;IAClH,gBAAgB,GAAkF,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,4BAA4B,CAAC,CAAC;IAC9J,aAAa,GAA4E,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAC;IACzJ,UAAU,GAAmE,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,oBAAoB,CAAC,CAAC;IACjI,iBAAiB,GAAwF,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAC;IACtK,KAAK,GAAoD,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IACxG,aAAa,GAA4E,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,yBAAyB,CAAC,CAAC;IAClJ,YAAY,GAAyE,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAC;IAC7I,SAAS,GAAgE,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;IAC5H,iBAAiB,GAAwF,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAC;IACtK,YAAY,GAAyE,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,sBAAsB,CAAC,CAAC;IAC3I,MAAM,GAAuD,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAC7G,kBAAkB,GAA8F,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAC;IAC7K,MAAM,GAAuD,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;IACpH,cAAc,GAA+E,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAC;IAC7J,aAAa,GAA4E,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,+BAA+B,CAAC,CAAC;IACjK,SAAS,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAsB,mBAAmB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC7H,cAAc,CAAC,EAAc,EAAE,MAAoB,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA2B,mBAAmB,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC3M,gBAAgB,CAAC,EAAc,EAAE,IAA0B,EAAE,OAA8C,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAgD,sBAAsB,kBAAkB,CAAC,EAAE,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IAC7P,MAAM,CAAC,IAA4C,EAAE,MAAoB,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAsB,mBAAmB,IAAI,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;CACpM;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,259 @@
1
+ import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
+ import type * as T from "./operations.types.js";
3
+ export declare class LmsOperations extends ServiceApi {
4
+ /** GET /api/openapi.json; permission: public/session-derived. */
5
+ routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
6
+ /** GET /api/v1/auth/self; permission: public/session-derived. */
7
+ sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
8
+ /** GET /api/v1/certificates; permission: lms:certificate:read. */
9
+ certificateIndexCertificateGet(params?: T.CertificateIndexCertificateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CertificateIndexCertificateGetResponse, unknown, {}>>;
10
+ /** POST /api/v1/certificates; permission: lms:certificate:create. */
11
+ certificateStoreCertificatePost(data: T.CertificateStoreCertificatePostInput, options?: RequestOptions<T.CertificateStoreCertificatePostInput>): Promise<import("axios").AxiosResponse<T.CertificateStoreCertificatePostResponse, T.CertificateStoreCertificatePostInput, {}>>;
12
+ /** GET /api/v1/certificates/{id}; permission: lms:certificate:read. */
13
+ certificateShowCertificateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CertificateShowCertificateGetResponse, unknown, {}>>;
14
+ /** PATCH /api/v1/certificates/{id}; permission: lms:certificate:update. */
15
+ certificateUpdateCertificatePatch(id: Identifier, data: T.CertificateUpdateCertificatePatchInput, options?: RequestOptions<T.CertificateUpdateCertificatePatchInput>): Promise<import("axios").AxiosResponse<T.CertificateUpdateCertificatePatchResponse, T.CertificateUpdateCertificatePatchInput, {}>>;
16
+ /** GET /api/v1/classrooms; permission: lms:classroom:read. */
17
+ classroomIndexClassroomGet(params?: T.ClassroomIndexClassroomGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexClassroomGetResponse, unknown, {}>>;
18
+ /** POST /api/v1/classrooms; permission: lms:classroom:create. */
19
+ classroomStoreClassroomPost(data: T.ClassroomStoreClassroomPostInput, options?: RequestOptions<T.ClassroomStoreClassroomPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomStoreClassroomPostResponse, T.ClassroomStoreClassroomPostInput, {}>>;
20
+ /** GET /api/v1/classrooms/{id}; permission: lms:classroom:read. */
21
+ classroomShowClassroomGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomShowClassroomGetResponse, unknown, {}>>;
22
+ /** PATCH /api/v1/classrooms/{id}; permission: lms:classroom:update. */
23
+ classroomUpdateClassroomPatch(id: Identifier, data: T.ClassroomUpdateClassroomPatchInput, options?: RequestOptions<T.ClassroomUpdateClassroomPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateClassroomPatchResponse, T.ClassroomUpdateClassroomPatchInput, {}>>;
24
+ /** GET /api/v1/classrooms/{id}/users; permission: lms:classroom:read. */
25
+ classroomIndexClassroomUsersGet(id: Identifier, params?: T.ClassroomIndexClassroomUsersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexClassroomUsersGetResponse, unknown, {}>>;
26
+ /** POST /api/v1/classrooms/{id}/users; permission: lms:classroom:create. */
27
+ classroomEnrollClassroomUserPost(id: Identifier, data: T.ClassroomEnrollClassroomUserPostInput, options?: RequestOptions<T.ClassroomEnrollClassroomUserPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomEnrollClassroomUserPostResponse, T.ClassroomEnrollClassroomUserPostInput, {}>>;
28
+ /** DELETE /api/v1/classrooms/{id}/users/{user_id}; permission: lms:classroom:update. */
29
+ classroomRemoveClassroomUserDelete(id: Identifier, userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomRemoveClassroomUserDeleteResponse, unknown, {}>>;
30
+ /** PATCH /api/v1/classrooms/{id}/users/{user_id}; permission: lms:classroom:update. */
31
+ classroomUpdateClassroomUserPatch(id: Identifier, userId: Identifier, data: T.ClassroomUpdateClassroomUserPatchInput, options?: RequestOptions<T.ClassroomUpdateClassroomUserPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateClassroomUserPatchResponse, T.ClassroomUpdateClassroomUserPatchInput, {}>>;
32
+ /** GET /api/v1/classrooms/sessions; permission: lms:classroom:read. */
33
+ classroomIndexSessionGet(params?: T.ClassroomIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexSessionGetResponse, unknown, {}>>;
34
+ /** POST /api/v1/classrooms/sessions; permission: lms:classroom:create. */
35
+ classroomStoreSessionPost(data: T.ClassroomStoreSessionPostInput, options?: RequestOptions<T.ClassroomStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomStoreSessionPostResponse, T.ClassroomStoreSessionPostInput, {}>>;
36
+ /** GET /api/v1/classrooms/sessions/{id}; permission: lms:classroom:read. */
37
+ classroomShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomShowSessionGetResponse, unknown, {}>>;
38
+ /** PATCH /api/v1/classrooms/sessions/{id}; permission: lms:classroom:update. */
39
+ classroomUpdateSessionPatch(id: Identifier, data: T.ClassroomUpdateSessionPatchInput, options?: RequestOptions<T.ClassroomUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateSessionPatchResponse, T.ClassroomUpdateSessionPatchInput, {}>>;
40
+ /** GET /api/v1/classrooms/users/sessions/absences; permission: lms:classroom:read. */
41
+ classroomIndexAbsencesGet(params?: T.ClassroomIndexAbsencesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexAbsencesGetResponse, unknown, {}>>;
42
+ /** GET /api/v1/club/projects; permission: lms:ops:read. */
43
+ opsIndexClubProjectGet(params?: T.OpsIndexClubProjectGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexClubProjectGetResponse, unknown, {}>>;
44
+ /** POST /api/v1/club/projects; permission: lms:ops:create. */
45
+ opsStoreClubProjectPost(data: T.OpsStoreClubProjectPostInput, options?: RequestOptions<T.OpsStoreClubProjectPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreClubProjectPostResponse, T.OpsStoreClubProjectPostInput, {}>>;
46
+ /** GET /api/v1/club/projects/{id}; permission: lms:ops:read. */
47
+ opsShowClubProjectGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowClubProjectGetResponse, unknown, {}>>;
48
+ /** PATCH /api/v1/club/projects/{id}; permission: lms:ops:update. */
49
+ opsUpdateClubProjectPatch(id: Identifier, data: T.OpsUpdateClubProjectPatchInput, options?: RequestOptions<T.OpsUpdateClubProjectPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateClubProjectPatchResponse, T.OpsUpdateClubProjectPatchInput, {}>>;
50
+ /** GET /api/v1/config/classroom-types; permission: lms:config:read. */
51
+ configIndexClassroomTypeGet(params?: T.ConfigIndexClassroomTypeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexClassroomTypeGetResponse, unknown, {}>>;
52
+ /** POST /api/v1/config/classroom-types; permission: lms:config:create. */
53
+ configStoreClassroomTypePost(data: T.ConfigStoreClassroomTypePostInput, options?: RequestOptions<T.ConfigStoreClassroomTypePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreClassroomTypePostResponse, T.ConfigStoreClassroomTypePostInput, {}>>;
54
+ /** GET /api/v1/config/classroom-types/{id}; permission: lms:config:read. */
55
+ configShowClassroomTypeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowClassroomTypeGetResponse, unknown, {}>>;
56
+ /** PATCH /api/v1/config/classroom-types/{id}; permission: lms:config:update. */
57
+ configUpdateClassroomTypePatch(id: Identifier, data: T.ConfigUpdateClassroomTypePatchInput, options?: RequestOptions<T.ConfigUpdateClassroomTypePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateClassroomTypePatchResponse, T.ConfigUpdateClassroomTypePatchInput, {}>>;
58
+ /** GET /api/v1/config/education-days; permission: lms:config:read. */
59
+ configIndexEducationDayGet(params?: T.ConfigIndexEducationDayGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexEducationDayGetResponse, unknown, {}>>;
60
+ /** POST /api/v1/config/education-days; permission: lms:config:create. */
61
+ configStoreEducationDayPost(data: T.ConfigStoreEducationDayPostInput, options?: RequestOptions<T.ConfigStoreEducationDayPostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreEducationDayPostResponse, T.ConfigStoreEducationDayPostInput, {}>>;
62
+ /** GET /api/v1/config/education-days/{id}; permission: lms:config:read. */
63
+ configShowEducationDayGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowEducationDayGetResponse, unknown, {}>>;
64
+ /** PATCH /api/v1/config/education-days/{id}; permission: lms:config:update. */
65
+ configUpdateEducationDayPatch(id: Identifier, data: T.ConfigUpdateEducationDayPatchInput, options?: RequestOptions<T.ConfigUpdateEducationDayPatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateEducationDayPatchResponse, T.ConfigUpdateEducationDayPatchInput, {}>>;
66
+ /** GET /api/v1/config/grades; permission: lms:config:read. */
67
+ configIndexGradeGet(params?: T.ConfigIndexGradeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexGradeGetResponse, unknown, {}>>;
68
+ /** POST /api/v1/config/grades; permission: lms:config:create. */
69
+ configStoreGradePost(data: T.ConfigStoreGradePostInput, options?: RequestOptions<T.ConfigStoreGradePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreGradePostResponse, T.ConfigStoreGradePostInput, {}>>;
70
+ /** GET /api/v1/config/grades/{id}; permission: lms:config:read. */
71
+ configShowGradeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowGradeGetResponse, unknown, {}>>;
72
+ /** PATCH /api/v1/config/grades/{id}; permission: lms:config:update. */
73
+ configUpdateGradePatch(id: Identifier, data: T.ConfigUpdateGradePatchInput, options?: RequestOptions<T.ConfigUpdateGradePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateGradePatchResponse, T.ConfigUpdateGradePatchInput, {}>>;
74
+ /** GET /api/v1/config/text-templates; permission: lms:config:read. */
75
+ configIndexTextTemplateGet(params?: T.ConfigIndexTextTemplateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexTextTemplateGetResponse, unknown, {}>>;
76
+ /** POST /api/v1/config/text-templates; permission: lms:config:create. */
77
+ configStoreTextTemplatePost(data: T.ConfigStoreTextTemplatePostInput, options?: RequestOptions<T.ConfigStoreTextTemplatePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreTextTemplatePostResponse, T.ConfigStoreTextTemplatePostInput, {}>>;
78
+ /** GET /api/v1/config/text-templates/{id}; permission: lms:config:read. */
79
+ configShowTextTemplateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowTextTemplateGetResponse, unknown, {}>>;
80
+ /** PATCH /api/v1/config/text-templates/{id}; permission: lms:config:update. */
81
+ configUpdateTextTemplatePatch(id: Identifier, data: T.ConfigUpdateTextTemplatePatchInput, options?: RequestOptions<T.ConfigUpdateTextTemplatePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateTextTemplatePatchResponse, T.ConfigUpdateTextTemplatePatchInput, {}>>;
82
+ /** GET /api/v1/config/weekends; permission: lms:config:read. */
83
+ configIndexWeekendGet(params?: T.ConfigIndexWeekendGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexWeekendGetResponse, unknown, {}>>;
84
+ /** POST /api/v1/config/weekends; permission: lms:config:create. */
85
+ configStoreWeekendPost(data: T.ConfigStoreWeekendPostInput, options?: RequestOptions<T.ConfigStoreWeekendPostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreWeekendPostResponse, T.ConfigStoreWeekendPostInput, {}>>;
86
+ /** GET /api/v1/config/weekends/{id}; permission: lms:config:read. */
87
+ configShowWeekendGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowWeekendGetResponse, unknown, {}>>;
88
+ /** PATCH /api/v1/config/weekends/{id}; permission: lms:config:update. */
89
+ configUpdateWeekendPatch(id: Identifier, data: T.ConfigUpdateWeekendPatchInput, options?: RequestOptions<T.ConfigUpdateWeekendPatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateWeekendPatchResponse, T.ConfigUpdateWeekendPatchInput, {}>>;
90
+ /** GET /api/v1/courses; permission: lms:course:read. */
91
+ courseIndexCourseGet(params?: T.CourseIndexCourseGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexCourseGetResponse, unknown, {}>>;
92
+ /** POST /api/v1/courses; permission: lms:course:create. */
93
+ courseStoreCoursePost(data: T.CourseStoreCoursePostInput, options?: RequestOptions<T.CourseStoreCoursePostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreCoursePostResponse, T.CourseStoreCoursePostInput, {}>>;
94
+ /** GET /api/v1/courses/{course_id}/sessions; permission: lms:course:read. */
95
+ courseIndexSessionGet(courseId: Identifier, params?: T.CourseIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexSessionGetResponse, unknown, {}>>;
96
+ /** POST /api/v1/courses/{course_id}/sessions; permission: lms:course:create. */
97
+ courseStoreSessionPost(courseId: Identifier, data: T.CourseStoreSessionPostInput, options?: RequestOptions<T.CourseStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreSessionPostResponse, T.CourseStoreSessionPostInput, {}>>;
98
+ /** GET /api/v1/courses/{course_id}/sessions/{id}; permission: lms:course:read. */
99
+ courseShowSessionGet(courseId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowSessionGetResponse, unknown, {}>>;
100
+ /** PATCH /api/v1/courses/{course_id}/sessions/{id}; permission: lms:course:update. */
101
+ courseUpdateSessionPatch(courseId: Identifier, id: Identifier, data: T.CourseUpdateSessionPatchInput, options?: RequestOptions<T.CourseUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateSessionPatchResponse, T.CourseUpdateSessionPatchInput, {}>>;
102
+ /** GET /api/v1/courses/{id}; permission: lms:course:read. */
103
+ courseShowCourseGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowCourseGetResponse, unknown, {}>>;
104
+ /** PATCH /api/v1/courses/{id}; permission: lms:course:update. */
105
+ courseUpdateCoursePatch(id: Identifier, data: T.CourseUpdateCoursePatchInput, options?: RequestOptions<T.CourseUpdateCoursePatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateCoursePatchResponse, T.CourseUpdateCoursePatchInput, {}>>;
106
+ /** GET /api/v1/courses/categories; permission: lms:course:read. */
107
+ courseIndexCategoryGet(params?: T.CourseIndexCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexCategoryGetResponse, unknown, {}>>;
108
+ /** POST /api/v1/courses/categories; permission: lms:course:create. */
109
+ courseStoreCategoryPost(data: T.CourseStoreCategoryPostInput, options?: RequestOptions<T.CourseStoreCategoryPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreCategoryPostResponse, T.CourseStoreCategoryPostInput, {}>>;
110
+ /** GET /api/v1/courses/categories/{id}; permission: lms:course:read. */
111
+ courseShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowCategoryGetResponse, unknown, {}>>;
112
+ /** PATCH /api/v1/courses/categories/{id}; permission: lms:course:update. */
113
+ courseUpdateCategoryPatch(id: Identifier, data: T.CourseUpdateCategoryPatchInput, options?: RequestOptions<T.CourseUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateCategoryPatchResponse, T.CourseUpdateCategoryPatchInput, {}>>;
114
+ /** GET /api/v1/courses/video-sections; permission: lms:course:read. */
115
+ courseIndexVideoSectionGet(params?: T.CourseIndexVideoSectionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexVideoSectionGetResponse, unknown, {}>>;
116
+ /** POST /api/v1/courses/video-sections; permission: lms:course:create. */
117
+ courseStoreVideoSectionPost(data: T.CourseStoreVideoSectionPostInput, options?: RequestOptions<T.CourseStoreVideoSectionPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreVideoSectionPostResponse, T.CourseStoreVideoSectionPostInput, {}>>;
118
+ /** GET /api/v1/courses/video-sections/{id}; permission: lms:course:read. */
119
+ courseShowVideoSectionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowVideoSectionGetResponse, unknown, {}>>;
120
+ /** PATCH /api/v1/courses/video-sections/{id}; permission: lms:course:update. */
121
+ courseUpdateVideoSectionPatch(id: Identifier, data: T.CourseUpdateVideoSectionPatchInput, options?: RequestOptions<T.CourseUpdateVideoSectionPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateVideoSectionPatchResponse, T.CourseUpdateVideoSectionPatchInput, {}>>;
122
+ /** GET /api/v1/dashboard; permission: lms:dashboard:read. */
123
+ dashboardIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DashboardIndexGetResponse, unknown, {}>>;
124
+ /** GET /api/v1/docs/integration; permission: lms:docs:read. */
125
+ docsIntegrationGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DocsIntegrationGetResponse, unknown, {}>>;
126
+ /** GET /api/v1/events; permission: lms:event:read. */
127
+ eventIndexEventGet(params?: T.EventIndexEventGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexEventGetResponse, unknown, {}>>;
128
+ /** POST /api/v1/events; permission: lms:event:create. */
129
+ eventStoreEventPost(data: T.EventStoreEventPostInput, options?: RequestOptions<T.EventStoreEventPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreEventPostResponse, T.EventStoreEventPostInput, {}>>;
130
+ /** GET /api/v1/events/{event_id}/users; permission: lms:event:read. */
131
+ eventIndexUserGet(eventId: Identifier, params?: T.EventIndexUserGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexUserGetResponse, unknown, {}>>;
132
+ /** POST /api/v1/events/{event_id}/users; permission: lms:event:create. */
133
+ eventStoreUserPost(eventId: Identifier, data: T.EventStoreUserPostInput, options?: RequestOptions<T.EventStoreUserPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreUserPostResponse, T.EventStoreUserPostInput, {}>>;
134
+ /** GET /api/v1/events/{event_id}/users/{id}; permission: lms:event:read. */
135
+ eventShowUserGet(eventId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowUserGetResponse, unknown, {}>>;
136
+ /** PATCH /api/v1/events/{event_id}/users/{id}; permission: lms:event:update. */
137
+ eventUpdateUserPatch(eventId: Identifier, id: Identifier, data: T.EventUpdateUserPatchInput, options?: RequestOptions<T.EventUpdateUserPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateUserPatchResponse, T.EventUpdateUserPatchInput, {}>>;
138
+ /** GET /api/v1/events/{id}; permission: lms:event:read. */
139
+ eventShowEventGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowEventGetResponse, unknown, {}>>;
140
+ /** PATCH /api/v1/events/{id}; permission: lms:event:update. */
141
+ eventUpdateEventPatch(id: Identifier, data: T.EventUpdateEventPatchInput, options?: RequestOptions<T.EventUpdateEventPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateEventPatchResponse, T.EventUpdateEventPatchInput, {}>>;
142
+ /** GET /api/v1/events/sessions; permission: lms:event:read. */
143
+ eventIndexSessionGet(params?: T.EventIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexSessionGetResponse, unknown, {}>>;
144
+ /** POST /api/v1/events/sessions; permission: lms:event:create. */
145
+ eventStoreSessionPost(data: T.EventStoreSessionPostInput, options?: RequestOptions<T.EventStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreSessionPostResponse, T.EventStoreSessionPostInput, {}>>;
146
+ /** GET /api/v1/events/sessions/{id}; permission: lms:event:read. */
147
+ eventShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowSessionGetResponse, unknown, {}>>;
148
+ /** PATCH /api/v1/events/sessions/{id}; permission: lms:event:update. */
149
+ eventUpdateSessionPatch(id: Identifier, data: T.EventUpdateSessionPatchInput, options?: RequestOptions<T.EventUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateSessionPatchResponse, T.EventUpdateSessionPatchInput, {}>>;
150
+ /** GET /api/v1/exams; permission: lms:exam:read. */
151
+ examIndexExamGet(params?: T.ExamIndexExamGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexExamGetResponse, unknown, {}>>;
152
+ /** POST /api/v1/exams; permission: lms:exam:create. */
153
+ examStoreExamPost(data: T.ExamStoreExamPostInput, options?: RequestOptions<T.ExamStoreExamPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreExamPostResponse, T.ExamStoreExamPostInput, {}>>;
154
+ /** GET /api/v1/exams/{id}; permission: lms:exam:read. */
155
+ examShowExamGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowExamGetResponse, unknown, {}>>;
156
+ /** PATCH /api/v1/exams/{id}; permission: lms:exam:update. */
157
+ examUpdateExamPatch(id: Identifier, data: T.ExamUpdateExamPatchInput, options?: RequestOptions<T.ExamUpdateExamPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateExamPatchResponse, T.ExamUpdateExamPatchInput, {}>>;
158
+ /** GET /api/v1/exams/questions; permission: lms:exam:read. */
159
+ examIndexQuestionGet(params?: T.ExamIndexQuestionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexQuestionGetResponse, unknown, {}>>;
160
+ /** POST /api/v1/exams/questions; permission: lms:exam:create. */
161
+ examStoreQuestionPost(data: T.ExamStoreQuestionPostInput, options?: RequestOptions<T.ExamStoreQuestionPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreQuestionPostResponse, T.ExamStoreQuestionPostInput, {}>>;
162
+ /** GET /api/v1/exams/questions/{id}; permission: lms:exam:read. */
163
+ examShowQuestionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowQuestionGetResponse, unknown, {}>>;
164
+ /** PATCH /api/v1/exams/questions/{id}; permission: lms:exam:update. */
165
+ examUpdateQuestionPatch(id: Identifier, data: T.ExamUpdateQuestionPatchInput, options?: RequestOptions<T.ExamUpdateQuestionPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateQuestionPatchResponse, T.ExamUpdateQuestionPatchInput, {}>>;
166
+ /** GET /api/v1/exams/sessions; permission: lms:exam:read. */
167
+ examIndexSessionGet(params?: T.ExamIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexSessionGetResponse, unknown, {}>>;
168
+ /** POST /api/v1/exams/sessions; permission: lms:exam:create. */
169
+ examStoreSessionPost(data: T.ExamStoreSessionPostInput, options?: RequestOptions<T.ExamStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreSessionPostResponse, T.ExamStoreSessionPostInput, {}>>;
170
+ /** GET /api/v1/exams/sessions/{id}; permission: lms:exam:read. */
171
+ examShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowSessionGetResponse, unknown, {}>>;
172
+ /** PATCH /api/v1/exams/sessions/{id}; permission: lms:exam:update. */
173
+ examUpdateSessionPatch(id: Identifier, data: T.ExamUpdateSessionPatchInput, options?: RequestOptions<T.ExamUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateSessionPatchResponse, T.ExamUpdateSessionPatchInput, {}>>;
174
+ /** GET /api/v1/homeworks; permission: lms:homework:read. */
175
+ homeworkIndexHomeworkGet(params?: T.HomeworkIndexHomeworkGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexHomeworkGetResponse, unknown, {}>>;
176
+ /** POST /api/v1/homeworks; permission: lms:homework:create. */
177
+ homeworkStoreHomeworkPost(data: T.HomeworkStoreHomeworkPostInput, options?: RequestOptions<T.HomeworkStoreHomeworkPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreHomeworkPostResponse, T.HomeworkStoreHomeworkPostInput, {}>>;
178
+ /** GET /api/v1/homeworks/{id}; permission: lms:homework:read. */
179
+ homeworkShowHomeworkGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowHomeworkGetResponse, unknown, {}>>;
180
+ /** PATCH /api/v1/homeworks/{id}; permission: lms:homework:update. */
181
+ homeworkUpdateHomeworkPatch(id: Identifier, data: T.HomeworkUpdateHomeworkPatchInput, options?: RequestOptions<T.HomeworkUpdateHomeworkPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateHomeworkPatchResponse, T.HomeworkUpdateHomeworkPatchInput, {}>>;
182
+ /** GET /api/v1/homeworks/assignments; permission: lms:homework:read. */
183
+ homeworkIndexAssignmentGet(params?: T.HomeworkIndexAssignmentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexAssignmentGetResponse, unknown, {}>>;
184
+ /** POST /api/v1/homeworks/assignments; permission: lms:homework:create. */
185
+ homeworkStoreAssignmentPost(data: T.HomeworkStoreAssignmentPostInput, options?: RequestOptions<T.HomeworkStoreAssignmentPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreAssignmentPostResponse, T.HomeworkStoreAssignmentPostInput, {}>>;
186
+ /** GET /api/v1/homeworks/assignments/{id}; permission: lms:homework:read. */
187
+ homeworkShowAssignmentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowAssignmentGetResponse, unknown, {}>>;
188
+ /** PATCH /api/v1/homeworks/assignments/{id}; permission: lms:homework:update. */
189
+ homeworkUpdateAssignmentPatch(id: Identifier, data: T.HomeworkUpdateAssignmentPatchInput, options?: RequestOptions<T.HomeworkUpdateAssignmentPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateAssignmentPatchResponse, T.HomeworkUpdateAssignmentPatchInput, {}>>;
190
+ /** GET /api/v1/homeworks/questions; permission: lms:homework:read. */
191
+ homeworkIndexQuestionGet(params?: T.HomeworkIndexQuestionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexQuestionGetResponse, unknown, {}>>;
192
+ /** POST /api/v1/homeworks/questions; permission: lms:homework:create. */
193
+ homeworkStoreQuestionPost(data: T.HomeworkStoreQuestionPostInput, options?: RequestOptions<T.HomeworkStoreQuestionPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreQuestionPostResponse, T.HomeworkStoreQuestionPostInput, {}>>;
194
+ /** GET /api/v1/homeworks/questions/{id}; permission: lms:homework:read. */
195
+ homeworkShowQuestionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowQuestionGetResponse, unknown, {}>>;
196
+ /** PATCH /api/v1/homeworks/questions/{id}; permission: lms:homework:update. */
197
+ homeworkUpdateQuestionPatch(id: Identifier, data: T.HomeworkUpdateQuestionPatchInput, options?: RequestOptions<T.HomeworkUpdateQuestionPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateQuestionPatchResponse, T.HomeworkUpdateQuestionPatchInput, {}>>;
198
+ /** GET /api/v1/integration/flow; permission: public/session-derived. */
199
+ integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
200
+ /** GET /api/v1/interactive/categories; permission: lms:interactive:read. */
201
+ interactiveIndexCategoryGet(params?: T.InteractiveIndexCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexCategoryGetResponse, unknown, {}>>;
202
+ /** POST /api/v1/interactive/categories; permission: lms:interactive:create. */
203
+ interactiveStoreCategoryPost(data: T.InteractiveStoreCategoryPostInput, options?: RequestOptions<T.InteractiveStoreCategoryPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreCategoryPostResponse, T.InteractiveStoreCategoryPostInput, {}>>;
204
+ /** GET /api/v1/interactive/categories/{id}; permission: lms:interactive:read. */
205
+ interactiveShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowCategoryGetResponse, unknown, {}>>;
206
+ /** PATCH /api/v1/interactive/categories/{id}; permission: lms:interactive:update. */
207
+ interactiveUpdateCategoryPatch(id: Identifier, data: T.InteractiveUpdateCategoryPatchInput, options?: RequestOptions<T.InteractiveUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateCategoryPatchResponse, T.InteractiveUpdateCategoryPatchInput, {}>>;
208
+ /** GET /api/v1/interactive/classroom-sessions; permission: lms:interactive:read. */
209
+ interactiveIndexClassroomSessionGet(params?: T.InteractiveIndexClassroomSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexClassroomSessionGetResponse, unknown, {}>>;
210
+ /** POST /api/v1/interactive/classroom-sessions; permission: lms:interactive:create. */
211
+ interactiveStoreClassroomSessionPost(data: T.InteractiveStoreClassroomSessionPostInput, options?: RequestOptions<T.InteractiveStoreClassroomSessionPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreClassroomSessionPostResponse, T.InteractiveStoreClassroomSessionPostInput, {}>>;
212
+ /** GET /api/v1/interactive/classroom-sessions/{id}; permission: lms:interactive:read. */
213
+ interactiveShowClassroomSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowClassroomSessionGetResponse, unknown, {}>>;
214
+ /** PATCH /api/v1/interactive/classroom-sessions/{id}; permission: lms:interactive:update. */
215
+ interactiveUpdateClassroomSessionPatch(id: Identifier, data: T.InteractiveUpdateClassroomSessionPatchInput, options?: RequestOptions<T.InteractiveUpdateClassroomSessionPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateClassroomSessionPatchResponse, T.InteractiveUpdateClassroomSessionPatchInput, {}>>;
216
+ /** GET /api/v1/interactive/content; permission: lms:interactive:read. */
217
+ interactiveIndexContentGet(params?: T.InteractiveIndexContentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexContentGetResponse, unknown, {}>>;
218
+ /** POST /api/v1/interactive/content; permission: lms:interactive:create. */
219
+ interactiveStoreContentPost(data: T.InteractiveStoreContentPostInput, options?: RequestOptions<T.InteractiveStoreContentPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreContentPostResponse, T.InteractiveStoreContentPostInput, {}>>;
220
+ /** GET /api/v1/interactive/content/{id}; permission: lms:interactive:read. */
221
+ interactiveShowContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowContentGetResponse, unknown, {}>>;
222
+ /** PATCH /api/v1/interactive/content/{id}; permission: lms:interactive:update. */
223
+ interactiveUpdateContentPatch(id: Identifier, data: T.InteractiveUpdateContentPatchInput, options?: RequestOptions<T.InteractiveUpdateContentPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateContentPatchResponse, T.InteractiveUpdateContentPatchInput, {}>>;
224
+ /** GET /api/v1/invitations; permission: lms:ops:read. */
225
+ opsIndexInvitationGet(params?: T.OpsIndexInvitationGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexInvitationGetResponse, unknown, {}>>;
226
+ /** POST /api/v1/invitations; permission: lms:ops:create. */
227
+ opsStoreInvitationPost(data: T.OpsStoreInvitationPostInput, options?: RequestOptions<T.OpsStoreInvitationPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreInvitationPostResponse, T.OpsStoreInvitationPostInput, {}>>;
228
+ /** GET /api/v1/invitations/{id}; permission: lms:ops:read. */
229
+ opsShowInvitationGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowInvitationGetResponse, unknown, {}>>;
230
+ /** PATCH /api/v1/invitations/{id}; permission: lms:ops:update. */
231
+ opsUpdateInvitationPatch(id: Identifier, data: T.OpsUpdateInvitationPatchInput, options?: RequestOptions<T.OpsUpdateInvitationPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateInvitationPatchResponse, T.OpsUpdateInvitationPatchInput, {}>>;
232
+ /** GET /api/v1/reports/classrooms; permission: lms:report:read. */
233
+ reportClassroomsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportClassroomsGetResponse, unknown, {}>>;
234
+ /** GET /api/v1/reports/students; permission: lms:report:read. */
235
+ reportStudentsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportStudentsGetResponse, unknown, {}>>;
236
+ /** GET /api/v1/reports/teachers; permission: lms:report:read. */
237
+ reportTeachersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportTeachersGetResponse, unknown, {}>>;
238
+ /** GET /api/v1/service/licence/check; permission: public/session-derived. */
239
+ serviceCheckLicenceGet(params?: T.ServiceCheckLicenceGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceCheckLicenceGetResponse, unknown, {}>>;
240
+ /** GET /api/v1/support-interactions; permission: lms:ops:read. */
241
+ opsIndexSupportInteractionGet(params?: T.OpsIndexSupportInteractionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexSupportInteractionGetResponse, unknown, {}>>;
242
+ /** POST /api/v1/support-interactions; permission: lms:ops:create. */
243
+ opsStoreSupportInteractionPost(data: T.OpsStoreSupportInteractionPostInput, options?: RequestOptions<T.OpsStoreSupportInteractionPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreSupportInteractionPostResponse, T.OpsStoreSupportInteractionPostInput, {}>>;
244
+ /** GET /api/v1/support-interactions/{id}; permission: lms:ops:read. */
245
+ opsShowSupportInteractionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowSupportInteractionGetResponse, unknown, {}>>;
246
+ /** PATCH /api/v1/support-interactions/{id}; permission: lms:ops:update. */
247
+ opsUpdateSupportInteractionPatch(id: Identifier, data: T.OpsUpdateSupportInteractionPatchInput, options?: RequestOptions<T.OpsUpdateSupportInteractionPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateSupportInteractionPatchResponse, T.OpsUpdateSupportInteractionPatchInput, {}>>;
248
+ /** GET /api/v1/worktime; permission: lms:ops:read. */
249
+ opsIndexWorktimeGet(params?: T.OpsIndexWorktimeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexWorktimeGetResponse, unknown, {}>>;
250
+ /** POST /api/v1/worktime; permission: lms:ops:create. */
251
+ opsStoreWorktimePost(data: T.OpsStoreWorktimePostInput, options?: RequestOptions<T.OpsStoreWorktimePostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreWorktimePostResponse, T.OpsStoreWorktimePostInput, {}>>;
252
+ /** GET /api/v1/worktime/{id}; permission: lms:ops:read. */
253
+ opsShowWorktimeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowWorktimeGetResponse, unknown, {}>>;
254
+ /** PATCH /api/v1/worktime/{id}; permission: lms:ops:update. */
255
+ opsUpdateWorktimePatch(id: Identifier, data: T.OpsUpdateWorktimePatchInput, options?: RequestOptions<T.OpsUpdateWorktimePatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateWorktimePatchResponse, T.OpsUpdateWorktimePatchInput, {}>>;
256
+ /** GET /health; permission: public/session-derived. */
257
+ routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
258
+ }
259
+ //# sourceMappingURL=operations.d.ts.map