@@ -39,6 +39,7 @@ declare global {
3939 const createReactiveFn : typeof import ( '@vueuse/core' ) [ 'createReactiveFn' ]
4040 const createReusableTemplate : typeof import ( '@vueuse/core' ) [ 'createReusableTemplate' ]
4141 const createSharedComposable : typeof import ( '@vueuse/core' ) [ 'createSharedComposable' ]
42+ const createStudent : typeof import ( './utils/studentApiUtils' ) [ 'createStudent' ]
4243 const createTemplatePromise : typeof import ( '@vueuse/core' ) [ 'createTemplatePromise' ]
4344 const createUnrefFn : typeof import ( '@vueuse/core' ) [ 'createUnrefFn' ]
4445 const createUser : typeof import ( './utils/userApiUtils' ) [ 'createUser' ]
@@ -48,6 +49,7 @@ declare global {
4849 const defineAsyncComponent : typeof import ( 'vue' ) [ 'defineAsyncComponent' ]
4950 const defineComponent : typeof import ( 'vue' ) [ 'defineComponent' ]
5051 const defineStore : typeof import ( 'pinia' ) [ 'defineStore' ]
52+ const deleteStudent : typeof import ( './utils/studentApiUtils' ) [ 'deleteStudent' ]
5153 const deleteUser : typeof import ( './utils/userApiUtils' ) [ 'deleteUser' ]
5254 const describe : typeof import ( 'vitest' ) [ 'describe' ]
5355 const difference : typeof import ( './utils/arrayUtils' ) [ 'difference' ]
@@ -57,12 +59,14 @@ declare global {
5759 const expect : typeof import ( 'vitest' ) [ 'expect' ]
5860 const extendRef : typeof import ( '@vueuse/core' ) [ 'extendRef' ]
5961 const getActivePinia : typeof import ( 'pinia' ) [ 'getActivePinia' ]
62+ const getAllStudents : typeof import ( './utils/studentApiUtils' ) [ 'getAllStudents' ]
6063 const getAllUsers : typeof import ( './utils/userApiUtils' ) [ 'getAllUsers' ]
6164 const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
6265 const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
6366 const getLocalStorage : typeof import ( './utils/storageUtils' ) [ 'getLocalStorage' ]
6467 const getQueryParameter : typeof import ( './utils/getQueryRouteUtils' ) [ 'getQueryParameter' ]
6568 const getSessionStorage : typeof import ( './utils/storageUtils' ) [ 'getSessionStorage' ]
69+ const getStudent : typeof import ( './utils/studentApiUtils' ) [ 'getStudent' ]
6670 const getUser : typeof import ( './utils/userApiUtils' ) [ 'getUser' ]
6771 const h : typeof import ( 'vue' ) [ 'h' ]
6872 const handleApiError : typeof import ( './utils/apiErrorUtils' ) [ 'handleApiError' ]
@@ -167,6 +171,7 @@ declare global {
167171 const unref : typeof import ( 'vue' ) [ 'unref' ]
168172 const unrefElement : typeof import ( '@vueuse/core' ) [ 'unrefElement' ]
169173 const until : typeof import ( '@vueuse/core' ) [ 'until' ]
174+ const updateStudent : typeof import ( './utils/studentApiUtils' ) [ 'updateStudent' ]
170175 const updateUser : typeof import ( './utils/userApiUtils' ) [ 'updateUser' ]
171176 const useActiveElement : typeof import ( '@vueuse/core' ) [ 'useActiveElement' ]
172177 const useAnimate : typeof import ( '@vueuse/core' ) [ 'useAnimate' ]
@@ -395,6 +400,7 @@ declare module 'vue' {
395400 readonly createReactiveFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createReactiveFn' ] >
396401 readonly createReusableTemplate : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createReusableTemplate' ] >
397402 readonly createSharedComposable : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createSharedComposable' ] >
403+ readonly createStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'createStudent' ] >
398404 readonly createTemplatePromise : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createTemplatePromise' ] >
399405 readonly createUnrefFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createUnrefFn' ] >
400406 readonly createUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'createUser' ] >
@@ -404,6 +410,7 @@ declare module 'vue' {
404410 readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
405411 readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
406412 readonly defineStore : UnwrapRef < typeof import ( 'pinia' ) [ 'defineStore' ] >
413+ readonly deleteStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'deleteStudent' ] >
407414 readonly deleteUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'deleteUser' ] >
408415 readonly describe : UnwrapRef < typeof import ( 'vitest' ) [ 'describe' ] >
409416 readonly difference : UnwrapRef < typeof import ( './utils/arrayUtils' ) [ 'difference' ] >
@@ -413,12 +420,14 @@ declare module 'vue' {
413420 readonly expect : UnwrapRef < typeof import ( 'vitest' ) [ 'expect' ] >
414421 readonly extendRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'extendRef' ] >
415422 readonly getActivePinia : UnwrapRef < typeof import ( 'pinia' ) [ 'getActivePinia' ] >
423+ readonly getAllStudents : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'getAllStudents' ] >
416424 readonly getAllUsers : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'getAllUsers' ] >
417425 readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
418426 readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
419427 readonly getLocalStorage : UnwrapRef < typeof import ( './utils/storageUtils' ) [ 'getLocalStorage' ] >
420428 readonly getQueryParameter : UnwrapRef < typeof import ( './utils/getQueryRouteUtils' ) [ 'getQueryParameter' ] >
421429 readonly getSessionStorage : UnwrapRef < typeof import ( './utils/storageUtils' ) [ 'getSessionStorage' ] >
430+ readonly getStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'getStudent' ] >
422431 readonly getUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'getUser' ] >
423432 readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
424433 readonly handleApiError : UnwrapRef < typeof import ( './utils/apiErrorUtils' ) [ 'handleApiError' ] >
@@ -519,6 +528,7 @@ declare module 'vue' {
519528 readonly unref : UnwrapRef < typeof import ( 'vue' ) [ 'unref' ] >
520529 readonly unrefElement : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'unrefElement' ] >
521530 readonly until : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'until' ] >
531+ readonly updateStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'updateStudent' ] >
522532 readonly updateUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'updateUser' ] >
523533 readonly useActiveElement : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useActiveElement' ] >
524534 readonly useAnimate : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useAnimate' ] >
@@ -739,6 +749,7 @@ declare module '@vue/runtime-core' {
739749 readonly createReactiveFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createReactiveFn' ] >
740750 readonly createReusableTemplate : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createReusableTemplate' ] >
741751 readonly createSharedComposable : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createSharedComposable' ] >
752+ readonly createStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'createStudent' ] >
742753 readonly createTemplatePromise : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createTemplatePromise' ] >
743754 readonly createUnrefFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createUnrefFn' ] >
744755 readonly createUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'createUser' ] >
@@ -748,6 +759,7 @@ declare module '@vue/runtime-core' {
748759 readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
749760 readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
750761 readonly defineStore : UnwrapRef < typeof import ( 'pinia' ) [ 'defineStore' ] >
762+ readonly deleteStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'deleteStudent' ] >
751763 readonly deleteUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'deleteUser' ] >
752764 readonly describe : UnwrapRef < typeof import ( 'vitest' ) [ 'describe' ] >
753765 readonly difference : UnwrapRef < typeof import ( './utils/arrayUtils' ) [ 'difference' ] >
@@ -757,12 +769,14 @@ declare module '@vue/runtime-core' {
757769 readonly expect : UnwrapRef < typeof import ( 'vitest' ) [ 'expect' ] >
758770 readonly extendRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'extendRef' ] >
759771 readonly getActivePinia : UnwrapRef < typeof import ( 'pinia' ) [ 'getActivePinia' ] >
772+ readonly getAllStudents : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'getAllStudents' ] >
760773 readonly getAllUsers : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'getAllUsers' ] >
761774 readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
762775 readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
763776 readonly getLocalStorage : UnwrapRef < typeof import ( './utils/storageUtils' ) [ 'getLocalStorage' ] >
764777 readonly getQueryParameter : UnwrapRef < typeof import ( './utils/getQueryRouteUtils' ) [ 'getQueryParameter' ] >
765778 readonly getSessionStorage : UnwrapRef < typeof import ( './utils/storageUtils' ) [ 'getSessionStorage' ] >
779+ readonly getStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'getStudent' ] >
766780 readonly getUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'getUser' ] >
767781 readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
768782 readonly handleApiError : UnwrapRef < typeof import ( './utils/apiErrorUtils' ) [ 'handleApiError' ] >
@@ -863,6 +877,7 @@ declare module '@vue/runtime-core' {
863877 readonly unref : UnwrapRef < typeof import ( 'vue' ) [ 'unref' ] >
864878 readonly unrefElement : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'unrefElement' ] >
865879 readonly until : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'until' ] >
880+ readonly updateStudent : UnwrapRef < typeof import ( './utils/studentApiUtils' ) [ 'updateStudent' ] >
866881 readonly updateUser : UnwrapRef < typeof import ( './utils/userApiUtils' ) [ 'updateUser' ] >
867882 readonly useActiveElement : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useActiveElement' ] >
868883 readonly useAnimate : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useAnimate' ] >
0 commit comments