@react-pakistan/util-functions 2.0.2 → 3.0.1

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.
Files changed (369) hide show
  1. package/constants/api-methods.d.mts +13 -0
  2. package/constants/api-methods.mjs +1 -0
  3. package/constants/cache-time.d.mts +7 -0
  4. package/constants/cache-time.mjs +1 -0
  5. package/constants/countries-timezones.d.mts +8 -0
  6. package/constants/countries-timezones.mjs +1 -0
  7. package/constants/currencies.d.mts +14 -0
  8. package/constants/currencies.mjs +1 -0
  9. package/constants/dial-codes.d.mts +9 -0
  10. package/constants/dial-codes.mjs +1 -0
  11. package/constants/layout-direction.d.mts +6 -0
  12. package/constants/layout-direction.mjs +1 -0
  13. package/constants/react-pakistan-meta.d.mts +32 -0
  14. package/constants/react-pakistan-meta.mjs +1 -0
  15. package/constants/react-pakistan.d.mts +15 -0
  16. package/constants/react-pakistan.mjs +12 -0
  17. package/constants/select-value-delimiter.d.mts +12 -0
  18. package/constants/select-value-delimiter.mjs +1 -0
  19. package/constants/social-media-colors.d.mts +40 -0
  20. package/constants/social-media-colors.mjs +1 -0
  21. package/constants/social-media-sizes.d.mts +323 -0
  22. package/constants/social-media-sizes.mjs +1 -0
  23. package/constants/user-roles.d.mts +7 -0
  24. package/constants/user-roles.mjs +1 -0
  25. package/factory/generic-component-factory.d.mts +78 -0
  26. package/factory/generic-component-factory.mjs +1 -0
  27. package/factory/generic-module-factory.d.mts +80 -0
  28. package/factory/generic-module-factory.mjs +1 -0
  29. package/general/basic-get.d.mts +8 -0
  30. package/general/basic-get.mjs +1 -0
  31. package/general/basic-post.d.mts +8 -0
  32. package/general/basic-post.mjs +1 -0
  33. package/general/calculate-pages.d.mts +9 -0
  34. package/general/calculate-pages.mjs +1 -0
  35. package/general/camel-to-sentence-case.d.mts +12 -0
  36. package/general/camel-to-sentence-case.mjs +1 -0
  37. package/general/check-even-odd-length.d.mts +13 -0
  38. package/general/check-even-odd-length.mjs +1 -0
  39. package/general/clear-cache.d.mts +10 -0
  40. package/general/clear-cache.mjs +1 -0
  41. package/general/cnic-formatter.d.mts +20 -0
  42. package/general/cnic-formatter.mjs +1 -0
  43. package/general/convert-url-to-base64.d.mts +57 -0
  44. package/general/convert-url-to-base64.mjs +1 -0
  45. package/general/countries.d.mts +268 -0
  46. package/general/countries.mjs +1 -0
  47. package/general/create-date.d.mts +12 -0
  48. package/general/create-date.js +1 -1
  49. package/general/create-date.mjs +1 -0
  50. package/general/crypto.d.mts +11 -0
  51. package/general/crypto.mjs +1 -0
  52. package/general/currencies.d.mts +2 -0
  53. package/general/currencies.mjs +0 -0
  54. package/general/delete-image-from-private-supabase.d.mts +16 -0
  55. package/general/delete-image-from-private-supabase.mjs +1 -0
  56. package/general/delete-image-from-public-supabase.d.mts +16 -0
  57. package/general/delete-image-from-public-supabase.mjs +1 -0
  58. package/general/download-from-url.d.mts +8 -0
  59. package/general/download-from-url.mjs +1 -0
  60. package/general/dynamic-page-limit.d.mts +12 -0
  61. package/general/dynamic-page-limit.mjs +1 -0
  62. package/general/enum-to-text.d.mts +8 -0
  63. package/general/enum-to-text.mjs +1 -0
  64. package/general/fetch-data.d.mts +25 -0
  65. package/general/fetch-data.mjs +1 -0
  66. package/general/fetch-supabase-image.d.mts +16 -0
  67. package/general/fetch-supabase-image.mjs +1 -0
  68. package/general/fetch-supabase-private-assets.d.mts +15 -0
  69. package/general/fetch-supabase-private-assets.mjs +1 -0
  70. package/general/format-date.d.mts +18 -0
  71. package/general/format-date.mjs +1 -0
  72. package/general/format-number.d.mts +16 -0
  73. package/general/format-number.mjs +1 -0
  74. package/general/format-phone-display.d.mts +9 -0
  75. package/general/format-phone-display.js +1 -1
  76. package/general/format-phone-display.mjs +1 -0
  77. package/general/format-phone.d.mts +13 -0
  78. package/general/format-phone.d.ts +1 -3
  79. package/general/format-phone.js +1 -1
  80. package/general/format-phone.mjs +1 -0
  81. package/general/format-pricing.d.mts +8 -0
  82. package/general/format-pricing.mjs +1 -0
  83. package/general/format-secs.d.mts +8 -0
  84. package/general/format-secs.mjs +1 -0
  85. package/general/format-time.d.mts +11 -0
  86. package/general/format-time.mjs +1 -0
  87. package/general/format-value.d.mts +8 -0
  88. package/general/format-value.mjs +1 -0
  89. package/general/full-month-range.d.mts +13 -0
  90. package/general/full-month-range.mjs +1 -0
  91. package/general/full-year-range.d.mts +12 -0
  92. package/general/full-year-range.mjs +1 -0
  93. package/general/generate-article-schema.d.mts +50 -0
  94. package/general/generate-article-schema.mjs +1 -0
  95. package/general/generate-blog-schema.d.mts +37 -0
  96. package/general/generate-blog-schema.mjs +1 -0
  97. package/general/generate-book-schema.d.mts +58 -0
  98. package/general/generate-book-schema.mjs +1 -0
  99. package/general/generate-breadcrumb-schema.d.mts +40 -0
  100. package/general/generate-breadcrumb-schema.mjs +1 -0
  101. package/general/generate-carousel-schema.d.mts +52 -0
  102. package/general/generate-carousel-schema.mjs +1 -0
  103. package/general/generate-course-schema.d.mts +53 -0
  104. package/general/generate-course-schema.mjs +1 -0
  105. package/general/generate-dataset-schema.d.mts +65 -0
  106. package/general/generate-dataset-schema.mjs +1 -0
  107. package/general/generate-discussion-forum-schema.d.mts +39 -0
  108. package/general/generate-discussion-forum-schema.mjs +1 -0
  109. package/general/generate-education-schema.d.mts +68 -0
  110. package/general/generate-education-schema.mjs +1 -0
  111. package/general/generate-employer-aggregate-rating-schema.d.mts +29 -0
  112. package/general/generate-employer-aggregate-rating-schema.mjs +1 -0
  113. package/general/generate-event-schema.d.mts +63 -0
  114. package/general/generate-event-schema.mjs +1 -0
  115. package/general/generate-faq-schema.d.mts +32 -0
  116. package/general/generate-faq-schema.mjs +1 -0
  117. package/general/generate-grid.d.mts +17 -0
  118. package/general/generate-grid.mjs +1 -0
  119. package/general/generate-image-metadata-schema.d.mts +36 -0
  120. package/general/generate-image-metadata-schema.mjs +1 -0
  121. package/general/generate-job-posting-schema.d.mts +49 -0
  122. package/general/generate-job-posting-schema.mjs +1 -0
  123. package/general/generate-local-business-schema.d.mts +42 -0
  124. package/general/generate-local-business-schema.mjs +1 -0
  125. package/general/generate-math-solver-schema.d.mts +45 -0
  126. package/general/generate-math-solver-schema.mjs +1 -0
  127. package/general/generate-movie-carousel-schema.d.mts +51 -0
  128. package/general/generate-movie-carousel-schema.mjs +1 -0
  129. package/general/generate-organization-schema.d.mts +49 -0
  130. package/general/generate-organization-schema.mjs +1 -0
  131. package/general/generate-profile-page-schema.d.mts +37 -0
  132. package/general/generate-profile-page-schema.mjs +1 -0
  133. package/general/generate-qa-page-schema.d.mts +34 -0
  134. package/general/generate-qa-page-schema.mjs +1 -0
  135. package/general/generate-recipe-schema.d.mts +49 -0
  136. package/general/generate-recipe-schema.mjs +1 -0
  137. package/general/generate-ref.d.mts +11 -0
  138. package/general/generate-ref.js +1 -1
  139. package/general/generate-ref.mjs +1 -0
  140. package/general/generate-review-snippet-schema.d.mts +52 -0
  141. package/general/generate-review-snippet-schema.mjs +1 -0
  142. package/general/generate-shopping-loyalty-program-schema.d.mts +38 -0
  143. package/general/generate-shopping-loyalty-program-schema.mjs +1 -0
  144. package/general/generate-shopping-merchant-listing-schema.d.mts +53 -0
  145. package/general/generate-shopping-merchant-listing-schema.mjs +1 -0
  146. package/general/generate-shopping-merchant-return-policy-schema.d.mts +32 -0
  147. package/general/generate-shopping-merchant-return-policy-schema.mjs +1 -0
  148. package/general/generate-shopping-merchant-shipping-policy-schema.d.mts +36 -0
  149. package/general/generate-shopping-merchant-shipping-policy-schema.mjs +1 -0
  150. package/general/generate-shopping-overview-schema.d.mts +52 -0
  151. package/general/generate-shopping-overview-schema.mjs +1 -0
  152. package/general/generate-shopping-product-snippet-schema.d.mts +57 -0
  153. package/general/generate-shopping-product-snippet-schema.mjs +1 -0
  154. package/general/generate-shopping-variants-schema.d.mts +46 -0
  155. package/general/generate-shopping-variants-schema.mjs +1 -0
  156. package/general/generate-software-app-schema.d.mts +62 -0
  157. package/general/generate-software-app-schema.mjs +1 -0
  158. package/general/generate-speakable-schema.d.mts +64 -0
  159. package/general/generate-speakable-schema.mjs +1 -0
  160. package/general/generate-subscription-schema.d.mts +60 -0
  161. package/general/generate-subscription-schema.mjs +1 -0
  162. package/general/generate-vacation-rental-schema.d.mts +67 -0
  163. package/general/generate-vacation-rental-schema.mjs +1 -0
  164. package/general/generate-video-schema.d.mts +75 -0
  165. package/general/generate-video-schema.mjs +1 -0
  166. package/general/generic-cache.d.mts +193 -0
  167. package/general/generic-cache.mjs +1 -0
  168. package/general/get-available-page-limit.d.mts +11 -0
  169. package/general/get-available-page-limit.mjs +1 -0
  170. package/general/get-calendar-current-month.d.mts +15 -0
  171. package/general/get-calendar-current-month.js +1 -1
  172. package/general/get-calendar-current-month.mjs +1 -0
  173. package/general/get-calendar-dates.d.mts +15 -0
  174. package/general/get-calendar-dates.js +1 -1
  175. package/general/get-calendar-dates.mjs +1 -0
  176. package/general/get-calendar-next-month.d.mts +17 -0
  177. package/general/get-calendar-next-month.js +1 -1
  178. package/general/get-calendar-next-month.mjs +1 -0
  179. package/general/get-calendar-previous-month.d.mts +17 -0
  180. package/general/get-calendar-previous-month.js +1 -1
  181. package/general/get-calendar-previous-month.mjs +1 -0
  182. package/general/get-current-year.d.mts +7 -0
  183. package/general/get-current-year.mjs +1 -0
  184. package/general/get-day-name.d.mts +10 -0
  185. package/general/get-day-name.mjs +1 -0
  186. package/general/get-dial-code.d.mts +8 -0
  187. package/general/get-dial-code.mjs +1 -0
  188. package/general/get-full-name.d.mts +13 -0
  189. package/general/get-full-name.mjs +1 -0
  190. package/general/get-href.d.mts +11 -0
  191. package/general/get-href.mjs +1 -0
  192. package/general/get-month-name.d.mts +10 -0
  193. package/general/get-month-name.mjs +1 -0
  194. package/general/get-month-number.d.mts +15 -0
  195. package/general/get-month-number.mjs +1 -0
  196. package/general/get-number-of-days-in-month.d.mts +13 -0
  197. package/general/get-number-of-days-in-month.js +1 -1
  198. package/general/get-number-of-days-in-month.mjs +1 -0
  199. package/general/get-pathname.d.mts +11 -0
  200. package/general/get-pathname.mjs +1 -0
  201. package/general/get-week-day.d.mts +8 -0
  202. package/general/get-week-day.js +1 -1
  203. package/general/get-week-day.mjs +1 -0
  204. package/general/image-url-to-base64.d.mts +9 -0
  205. package/general/image-url-to-base64.mjs +1 -0
  206. package/general/is-created-or-updated.d.mts +13 -0
  207. package/general/is-created-or-updated.mjs +1 -0
  208. package/general/is-next-button-disabled.d.mts +9 -0
  209. package/general/is-next-button-disabled.mjs +1 -0
  210. package/general/is-odd.d.mts +11 -0
  211. package/general/is-odd.mjs +1 -0
  212. package/general/is-previous-button-disabled.d.mts +8 -0
  213. package/general/is-previous-button-disabled.mjs +1 -0
  214. package/general/linear-gradients.d.mts +14 -0
  215. package/general/linear-gradients.mjs +1 -0
  216. package/general/multi-part-search.d.mts +22 -0
  217. package/general/multi-part-search.mjs +1 -0
  218. package/general/normalize-phone.d.mts +15 -0
  219. package/general/normalize-phone.js +1 -1
  220. package/general/normalize-phone.mjs +1 -0
  221. package/general/parse-frontmatter.d.mts +36 -0
  222. package/general/parse-frontmatter.mjs +2 -0
  223. package/general/remove-data-image-prefix.d.mts +8 -0
  224. package/general/remove-data-image-prefix.mjs +1 -0
  225. package/general/repeat-times.d.mts +15 -0
  226. package/general/repeat-times.mjs +1 -0
  227. package/general/resolve-anchor-link.d.mts +13 -0
  228. package/general/resolve-anchor-link.mjs +1 -0
  229. package/general/resolve-current-date.d.mts +12 -0
  230. package/general/resolve-current-date.mjs +1 -0
  231. package/general/resolve-grid.d.mts +14 -0
  232. package/general/resolve-grid.mjs +1 -0
  233. package/general/resolve-initials.d.mts +12 -0
  234. package/general/resolve-initials.mjs +1 -0
  235. package/general/set-timezone.d.mts +9 -0
  236. package/general/set-timezone.d.ts +1 -3
  237. package/general/set-timezone.js +1 -1
  238. package/general/set-timezone.mjs +1 -0
  239. package/general/slugify.d.mts +12 -0
  240. package/general/slugify.mjs +1 -0
  241. package/general/text-to-enum.d.mts +8 -0
  242. package/general/text-to-enum.mjs +1 -0
  243. package/general/text-to-sentence-case.d.mts +12 -0
  244. package/general/text-to-sentence-case.mjs +1 -0
  245. package/general/time-out.d.mts +12 -0
  246. package/general/time-out.mjs +1 -0
  247. package/general/time-zones.d.mts +11 -0
  248. package/general/time-zones.mjs +1 -0
  249. package/general/truncate-text.d.mts +14 -0
  250. package/general/truncate-text.mjs +1 -0
  251. package/general/type.d.mts +8 -0
  252. package/general/type.mjs +0 -0
  253. package/general/upload-blob-to-private-supabase.d.mts +24 -0
  254. package/general/upload-blob-to-private-supabase.mjs +1 -0
  255. package/general/upload-blob-to-public-supabase.d.mts +24 -0
  256. package/general/upload-blob-to-public-supabase.mjs +1 -0
  257. package/general/upload-image-to-private-supabase.d.mts +26 -0
  258. package/general/upload-image-to-private-supabase.mjs +1 -0
  259. package/general/upload-image-to-public-supabase.d.mts +26 -0
  260. package/general/upload-image-to-public-supabase.mjs +1 -0
  261. package/general/url-to-sentence-case.d.mts +12 -0
  262. package/general/url-to-sentence-case.mjs +1 -0
  263. package/general/validate-comment.d.mts +14 -0
  264. package/general/validate-comment.mjs +1 -0
  265. package/general/validate-email.d.mts +15 -0
  266. package/general/validate-email.mjs +1 -0
  267. package/general/validate-form.d.mts +18 -0
  268. package/general/validate-form.mjs +1 -0
  269. package/general/validate-name.d.mts +14 -0
  270. package/general/validate-name.mjs +1 -0
  271. package/hooks/use-change.d.mts +11 -0
  272. package/hooks/use-change.mjs +1 -0
  273. package/hooks/use-debounce.d.mts +10 -0
  274. package/hooks/use-debounce.mjs +1 -0
  275. package/hooks/use-fetch.d.mts +42 -0
  276. package/hooks/use-fetch.mjs +1 -0
  277. package/hooks/use-force-render.d.mts +14 -0
  278. package/hooks/use-force-render.mjs +1 -0
  279. package/hooks/use-ip-geo-location.d.mts +12 -0
  280. package/hooks/use-ip-geo-location.mjs +1 -0
  281. package/hooks/use-is-mobile.d.mts +8 -0
  282. package/hooks/use-is-mobile.mjs +1 -0
  283. package/hooks/use-module-entity-v2.d.mts +105 -0
  284. package/hooks/use-module-entity-v2.mjs +1 -0
  285. package/hooks/use-module-entity.d.mts +98 -0
  286. package/hooks/use-module-entity.mjs +1 -0
  287. package/hooks/use-phone-formatter.d.mts +17 -0
  288. package/hooks/use-phone-formatter.d.ts +1 -3
  289. package/hooks/use-phone-formatter.js +1 -1
  290. package/hooks/use-phone-formatter.mjs +1 -0
  291. package/hooks/use-position.d.mts +29 -0
  292. package/hooks/use-position.mjs +1 -0
  293. package/hooks/use-rtl.d.mts +46 -0
  294. package/hooks/use-rtl.mjs +1 -0
  295. package/hooks/use-sticky.d.mts +13 -0
  296. package/hooks/use-sticky.mjs +1 -0
  297. package/hooks/use-toggle-state.d.mts +14 -0
  298. package/hooks/use-toggle-state.mjs +1 -0
  299. package/hooks/use-window-event-listener.d.mts +9 -0
  300. package/hooks/use-window-event-listener.mjs +1 -0
  301. package/hooks/with-seo.d.mts +19 -0
  302. package/hooks/with-seo.mjs +1 -0
  303. package/local-storage/get-storage-value.d.mts +5 -0
  304. package/local-storage/get-storage-value.mjs +1 -0
  305. package/local-storage/remove-storage-value.d.mts +3 -0
  306. package/local-storage/remove-storage-value.mjs +1 -0
  307. package/local-storage/set-storage-value.d.mts +3 -0
  308. package/local-storage/set-storage-value.mjs +1 -0
  309. package/local-storage/type.d.mts +3 -0
  310. package/local-storage/type.mjs +0 -0
  311. package/npm.d.d.mts +2 -0
  312. package/npm.d.mjs +0 -0
  313. package/package.json +1 -10
  314. package/edu-pilot-pro/types/academics.d.ts +0 -2
  315. package/edu-pilot-pro/types/academics.js +0 -1
  316. package/edu-pilot-pro/types/admission.d.ts +0 -878
  317. package/edu-pilot-pro/types/admission.js +0 -1
  318. package/edu-pilot-pro/types/communication.d.ts +0 -2
  319. package/edu-pilot-pro/types/communication.js +0 -1
  320. package/edu-pilot-pro/types/enums.d.ts +0 -413
  321. package/edu-pilot-pro/types/enums.js +0 -1
  322. package/edu-pilot-pro/types/finance.d.ts +0 -2
  323. package/edu-pilot-pro/types/finance.js +0 -1
  324. package/edu-pilot-pro/types/index.d.ts +0 -2
  325. package/edu-pilot-pro/types/index.js +0 -1
  326. package/edu-pilot-pro/types/user-management.d.ts +0 -2
  327. package/edu-pilot-pro/types/user-management.js +0 -1
  328. package/stellar-solution/types/common.d.ts +0 -26
  329. package/stellar-solution/types/common.js +0 -1
  330. package/stellar-solution/types/erp.d.ts +0 -305
  331. package/stellar-solution/types/erp.js +0 -1
  332. package/stellar-solution/types/index.d.ts +0 -3
  333. package/stellar-solution/types/index.js +0 -1
  334. package/stellar-solution/types/pos.d.ts +0 -179
  335. package/stellar-solution/types/pos.js +0 -1
  336. package/storybook/generate-sitemap.d.ts +0 -16
  337. package/storybook/generate-sitemap.js +0 -17
  338. package/storybook/preview.d.ts +0 -148
  339. package/storybook/preview.js +0 -1
  340. package/storybook/react-design-story-script.d.ts +0 -12
  341. package/storybook/react-design-story-script.js +0 -5
  342. package/storybook/react-emoji-collection.d.ts +0 -13
  343. package/storybook/react-emoji-collection.js +0 -11
  344. package/storybook/react-emoji-story-script.d.ts +0 -12
  345. package/storybook/react-emoji-story-script.js +0 -5
  346. package/storybook/react-emoji-story-template.d.ts +0 -14
  347. package/storybook/react-emoji-story-template.js +0 -46
  348. package/storybook/react-icon-collection.d.ts +0 -13
  349. package/storybook/react-icon-collection.js +0 -11
  350. package/storybook/react-icon-story-script.d.ts +0 -12
  351. package/storybook/react-icon-story-script.js +0 -5
  352. package/storybook/react-icon-story-template.d.ts +0 -13
  353. package/storybook/react-icon-story-template.js +0 -46
  354. package/storybook/react-logo-collection.d.ts +0 -13
  355. package/storybook/react-logo-collection.js +0 -11
  356. package/storybook/react-logo-story-script.d.ts +0 -12
  357. package/storybook/react-logo-story-script.js +0 -5
  358. package/storybook/react-logo-story-template.d.ts +0 -13
  359. package/storybook/react-logo-story-template.js +0 -46
  360. package/storybook/react-pakistan-theme.d.ts +0 -25
  361. package/storybook/react-pakistan-theme.js +0 -1
  362. package/storybook/responsive-args.d.ts +0 -22
  363. package/storybook/responsive-args.js +0 -1
  364. package/storybook/responsive-component.d.ts +0 -33
  365. package/storybook/responsive-component.js +0 -37
  366. package/storybook/responsive-screens.d.ts +0 -108
  367. package/storybook/responsive-screens.js +0 -1
  368. package/storybook/theme.d.ts +0 -96
  369. package/storybook/theme.js +0 -1
@@ -1,878 +0,0 @@
1
- import { ADMISSION_STATUS, GENDER, FEE_TYPE, FEE_RISK_LEVEL, PAYMENT_STATUS, FEE_AGENT_ACTION_TYPE, FEE_CONVERSATION_INTENT, FEE_CONVERSATION_SENDER, DISCOUNT_TYPE, EXPENSE_CATEGORY, PAYMENT_METHOD, EXPENSE_STATUS, NOTIFICATION_TYPE, DEVICE_PLATFORM, CAMPAIGN_STATUS, CAMPAIGN_CONTACT_STATUS, REFERRAL_CHANNEL, REFERRAL_STATUS, CURRENCY, USER_ROLE, ACCESS_LEVEL, BILLING_INTERVAL, PLAN_TYPE, ATTENDANCE_STATUS, FAMILY_MEMBER_ROLE, STUDENT_STATUS, GRADE_TYPE, DAY_OF_WEEK } from './enums.js';
2
-
3
- /**
4
- * TypeScript Types Generated from Prisma Schema - Admission
5
- *
6
- * This file contains TypeScript interfaces for the admission domain models.
7
- */
8
-
9
- interface AdmissionDetails {
10
- classForAdmission: string;
11
- previousSchool: string;
12
- siblings: string;
13
- }
14
- interface FatherDetails {
15
- fatherIdNumber: string;
16
- fatherFirstName: string;
17
- fatherLastName: string;
18
- fatherMobile: string;
19
- fatherOccupation: string;
20
- fatherOrganization: string;
21
- emergencyContact: boolean;
22
- }
23
- interface MotherDetails {
24
- motherIdNumber: string;
25
- motherFirstName: string;
26
- motherLastName: string;
27
- motherMobile: string;
28
- emergencyContact: boolean;
29
- }
30
- interface HomeDetails {
31
- address: string;
32
- city: string;
33
- country: string;
34
- postalCode: string;
35
- state: string;
36
- }
37
- interface StudentDetails {
38
- studentIdNumber: string;
39
- discountCodeId: string;
40
- dob: string;
41
- emergencyContact: string;
42
- firstName: string;
43
- gender: GENDER;
44
- hafiz: boolean;
45
- lastName: string;
46
- orphan: boolean;
47
- registrationCode: string;
48
- }
49
- interface OfficeUse {
50
- admissionNotes: string;
51
- notes: string;
52
- }
53
- /**
54
- * StudentAdmission stores raw application payloads as JSON blobs.
55
- * This model mirrors the Prisma StudentAdmission model which keeps
56
- * structured form data in Json columns so the application layer can
57
- * process/transform it into domain entities on approval.
58
- */
59
- interface AdmissionAIBE {
60
- id: string;
61
- admissionId: string;
62
- schoolId: string;
63
- score: number;
64
- decision: string;
65
- reasons: string[];
66
- confidence: number;
67
- processedAt: string;
68
- createdAt: string;
69
- updatedAt: string;
70
- }
71
- interface AdmissionBE {
72
- admissionDetails: AdmissionDetails | null;
73
- createdAt: string;
74
- enabled: boolean;
75
- fatherDetails: FatherDetails | null;
76
- homeDetails: HomeDetails | null;
77
- id: string;
78
- motherDetails: MotherDetails | null;
79
- officeUse: OfficeUse | null;
80
- schoolId: string;
81
- status: ADMISSION_STATUS;
82
- studentDetails: StudentDetails | null;
83
- updatedAt: string;
84
- school?: SchoolBE;
85
- aiAnalysis?: AdmissionAIBE | null;
86
- }
87
-
88
- /**
89
- * TypeScript Types Generated from Prisma Schema - Finance
90
- *
91
- * This file contains TypeScript interfaces for fee structures, discount codes,
92
- * student fees, expenses, fee agent activities, and fee conversations.
93
- */
94
-
95
- /**
96
- * FeeStructure defines fee templates for different classes/categories
97
- */
98
- interface FeeStructureBE {
99
- amount: number;
100
- classId?: string | null;
101
- createdAt: string;
102
- description: string | null;
103
- enabled: boolean;
104
- feeType: FEE_TYPE;
105
- frequency: string | null;
106
- id: string;
107
- name: string;
108
- schoolId: string;
109
- updatedAt: string;
110
- class?: ClassBE;
111
- school?: SchoolBE;
112
- studentFees?: StudentFeeBE[];
113
- }
114
- /**
115
- * DiscountCode represents discount codes available for fee reductions
116
- */
117
- interface DiscountCodeBE {
118
- code: string;
119
- createdAt: string;
120
- description: string | null;
121
- discountType: DISCOUNT_TYPE;
122
- discountValue: number;
123
- enabled: boolean;
124
- id: string;
125
- schoolId: string;
126
- updatedAt: string;
127
- school?: SchoolBE;
128
- studentFees?: StudentFeeBE[];
129
- }
130
- /**
131
- * StudentFee represents fees assigned to individual students
132
- */
133
- interface StudentFeeBE {
134
- amount: number;
135
- amountDue: number;
136
- amountPaid: number;
137
- createdAt: string;
138
- discountAmount: number | null;
139
- discountCodeId: string | null;
140
- dueDate: Date | string;
141
- enabled: boolean;
142
- familyId: string;
143
- feeStructureId: string;
144
- fine: number | null;
145
- id: string;
146
- lastRemindedAt: Date | string | null;
147
- nextFollowUpAt: Date | string | null;
148
- reliabilityScore: number | null;
149
- paidAt: Date | string | null;
150
- remarks: string | null;
151
- riskLevel: FEE_RISK_LEVEL | null;
152
- schoolId: string;
153
- status: PAYMENT_STATUS;
154
- studentProfileId: string;
155
- updatedAt: string;
156
- agentActivities?: FeeAgentActivityBE[];
157
- conversations?: FeeConversationBE[];
158
- discountCode?: DiscountCodeBE;
159
- family?: FamilyBE;
160
- feeStructure?: FeeStructureBE;
161
- school?: SchoolBE;
162
- studentProfile?: StudentProfileBE;
163
- }
164
- interface FeeAgentActivityBE {
165
- actionType: FEE_AGENT_ACTION_TYPE;
166
- createdAt: string;
167
- id: string;
168
- payload: Record<string, unknown>;
169
- schoolId: string;
170
- status: string;
171
- studentFeeId: string;
172
- updatedAt: string;
173
- }
174
- interface FeeConversationBE {
175
- createdAt: string;
176
- id: string;
177
- intent: FEE_CONVERSATION_INTENT;
178
- message: string;
179
- metadata: Record<string, unknown> | null;
180
- schoolId: string;
181
- sender: FEE_CONVERSATION_SENDER;
182
- studentFeeId: string;
183
- studentId: string;
184
- updatedAt: string;
185
- }
186
- /**
187
- * Expense represents outgoing payments and school expenditure tracking
188
- */
189
- interface ExpenseBE {
190
- amount: number;
191
- approvedBy: string | null;
192
- attachments: string[];
193
- category: EXPENSE_CATEGORY;
194
- createdAt: string;
195
- description: string | null;
196
- enabled: boolean;
197
- expenseDate: Date | string;
198
- id: string;
199
- invoiceNumber: string | null;
200
- paidBy: string | null;
201
- paymentDate: Date | string | null;
202
- paymentMethod: PAYMENT_METHOD | null;
203
- receiptNumber: string | null;
204
- remarks: string | null;
205
- schoolId: string;
206
- status: EXPENSE_STATUS;
207
- title: string;
208
- transactionId: string | null;
209
- updatedAt: string;
210
- vendorContact: string | null;
211
- vendorName: string | null;
212
- school?: SchoolBE;
213
- }
214
-
215
- /**
216
- * TypeScript Types Generated from Prisma Schema - Communication
217
- *
218
- * This file contains TypeScript interfaces for campaigns, blog posts,
219
- * referrals, push tokens, mobile notifications, and notification preferences.
220
- */
221
-
222
- /**
223
- * Individual recipient within a broadcast campaign
224
- */
225
- interface CampaignContactBE {
226
- campaignId: string;
227
- createdAt: string;
228
- errorMessage: string | null;
229
- id: string;
230
- name: string;
231
- phoneNumber: string;
232
- sentAt: string | null;
233
- status: CAMPAIGN_CONTACT_STATUS;
234
- updatedAt: string;
235
- }
236
- /**
237
- * WhatsApp broadcast campaign
238
- */
239
- interface CampaignBE {
240
- createdAt: string;
241
- enabled: boolean;
242
- id: string;
243
- messageTemplate: string;
244
- name: string;
245
- schoolId: string;
246
- status: CAMPAIGN_STATUS;
247
- updatedAt: string;
248
- workerJobId: string | null;
249
- contacts?: CampaignContactBE[];
250
- _count?: {
251
- contacts: number;
252
- };
253
- school?: SchoolBE;
254
- }
255
- /**
256
- * BlogPost metadata and content (MDX/Markdown stored in `content`).
257
- */
258
- interface BlogPostBE {
259
- authorId: string | null;
260
- clapCount: number;
261
- commentCount: number;
262
- content: string;
263
- createdAt: string;
264
- enabled: boolean;
265
- excerpt: string | null;
266
- id: string;
267
- publishedAt: Date | string | null;
268
- schoolId: string | null;
269
- slug: string;
270
- title: string;
271
- updatedAt: string;
272
- author?: UserBE;
273
- claps?: BlogPostClapBE[];
274
- comments?: BlogCommentBE[];
275
- school?: SchoolBE | null;
276
- }
277
- interface BlogCommentBE {
278
- authorId: string | null;
279
- clapCount: number;
280
- content: string;
281
- createdAt: string;
282
- enabled: boolean;
283
- id: string;
284
- parentId: string | null;
285
- postId: string;
286
- updatedAt: string;
287
- author?: UserBE | null;
288
- claps?: BlogCommentClapBE[];
289
- parent?: BlogCommentBE | null;
290
- post?: BlogPostBE;
291
- replies?: BlogCommentBE[];
292
- }
293
- interface BlogPostClapBE {
294
- createdAt: string;
295
- id: string;
296
- postId: string;
297
- sessionId: string | null;
298
- userId: string | null;
299
- post?: BlogPostBE;
300
- user?: UserBE | null;
301
- }
302
- interface BlogCommentClapBE {
303
- commentId: string;
304
- createdAt: string;
305
- id: string;
306
- sessionId: string | null;
307
- userId: string | null;
308
- comment?: BlogCommentBE;
309
- user?: UserBE | null;
310
- }
311
- /**
312
- * A referral invite sent by a school user to encourage another school to join the platform
313
- */
314
- interface ReferralBE {
315
- channel: REFERRAL_CHANNEL;
316
- createdAt: string;
317
- enabled: boolean;
318
- errorMessage: string | null;
319
- id: string;
320
- inviterUserId: string;
321
- personalNote: string | null;
322
- recipientEmail: string | null;
323
- recipientName: string | null;
324
- recipientPhone: string | null;
325
- schoolId: string;
326
- sentAt: string | null;
327
- status: REFERRAL_STATUS;
328
- updatedAt: string;
329
- workerJobId: string | null;
330
- school?: SchoolBE;
331
- }
332
- /**
333
- * Expo push token registered by a mobile device for a specific user
334
- */
335
- interface UserPushTokenBE {
336
- appVersion: string | null;
337
- createdAt: string;
338
- deviceId: string | null;
339
- id: string;
340
- platform: DEVICE_PLATFORM;
341
- pushToken: string;
342
- updatedAt: string;
343
- userId: string;
344
- user?: UserBE;
345
- }
346
- /**
347
- * Push notification delivered to a mobile user
348
- */
349
- interface MobileNotificationBE {
350
- archived: boolean;
351
- body: string;
352
- createdAt: string;
353
- data: Record<string, unknown> | null;
354
- id: string;
355
- read: boolean;
356
- title: string;
357
- type: NOTIFICATION_TYPE;
358
- updatedAt: string;
359
- userId: string;
360
- user?: UserBE;
361
- }
362
- /**
363
- * Per-user notification category and channel preferences
364
- */
365
- interface NotificationPreferenceBE {
366
- alertEnabled: boolean;
367
- assignmentEnabled: boolean;
368
- attendanceEnabled: boolean;
369
- createdAt: string;
370
- emailEnabled: boolean;
371
- generalEnabled: boolean;
372
- id: string;
373
- paymentEnabled: boolean;
374
- pushEnabled: boolean;
375
- updatedAt: string;
376
- userId: string;
377
- user?: UserBE;
378
- }
379
-
380
- /**
381
- * TypeScript Types Generated from Prisma Schema - User Management
382
- *
383
- * This file contains TypeScript interfaces for user, workspace, role,
384
- * permission, plan, school, and campus domain models.
385
- */
386
-
387
- /**
388
- * Subscription plan defining usage limits and features for workspaces
389
- */
390
- interface PlanBE {
391
- createdAt: string;
392
- currency: CURRENCY;
393
- enabled: boolean;
394
- id: string;
395
- maxClasses: number;
396
- maxCourses: number;
397
- maxFamilies: number;
398
- maxStaffAccounts: number;
399
- maxStudents: number;
400
- maxTeachers: number;
401
- name: string;
402
- priceMonthly: number;
403
- priceYearly: number;
404
- storageLimitMB: number;
405
- type: PLAN_TYPE;
406
- updatedAt: string;
407
- workspaces?: WorkspaceBE[];
408
- }
409
- /**
410
- * Workspace represents a tenant in the multi-vendor system
411
- * Each workspace has exactly ONE school (1:1 relationship)
412
- */
413
- interface WorkspaceBE {
414
- agreedCurrency: CURRENCY;
415
- agreedPrice: number;
416
- billingDate: number;
417
- billingInterval: BILLING_INTERVAL;
418
- classesCount: number;
419
- coursesCount: number;
420
- createdAt: string;
421
- description: string | null;
422
- dueDateLength: number;
423
- enabled: boolean;
424
- familiesCount: number;
425
- id: string;
426
- logo: string | null;
427
- name: string;
428
- planEndDate: Date | string | null;
429
- planId: string | null;
430
- planStartDate: Date | string | null;
431
- secrets?: any | null;
432
- staffAccountsCount: number;
433
- storageUsedMB: number;
434
- studentsCount: number;
435
- subdomain: string;
436
- teachersCount: number;
437
- updatedAt: string;
438
- customRoles?: RoleBE[];
439
- plan?: PlanBE;
440
- rolePermissions?: RolePermissionBE[];
441
- school?: SchoolBE;
442
- users?: WorkspaceUserBE[];
443
- }
444
- /**
445
- * Join table managing user-workspace relationships and roles
446
- * Allows users to belong to multiple workspaces with different roles
447
- */
448
- interface WorkspaceUserBE {
449
- createdAt: string;
450
- enabled: boolean;
451
- id: string;
452
- roleId: string | null;
453
- updatedAt: string;
454
- userId: string;
455
- workspaceId: string;
456
- role?: RoleBE;
457
- user?: UserBE;
458
- workspace?: WorkspaceBE;
459
- workspaceUserPermissions?: WorkspaceUserPermissionBE[];
460
- }
461
- /**
462
- * Role defines a named set of default permissions.
463
- * System roles (isSystem = true) are seeded once and map 1:1 with UserRole enum values.
464
- * Workspace custom roles (isSystem = false, workspaceId set) are created by SCHOOL_ADMINs.
465
- */
466
- interface RoleBE {
467
- createdAt: string;
468
- description: string | null;
469
- id: string;
470
- isSystem: boolean;
471
- name: string;
472
- updatedAt: string;
473
- userRole: USER_ROLE | null;
474
- workspaceId: string | null;
475
- rolePermissions?: RolePermissionBE[];
476
- workspace?: WorkspaceBE;
477
- workspaceUsers?: WorkspaceBE[];
478
- }
479
- /**
480
- * Permission describes a module-level capability and access level (e.g., 'courses', READ/READ_WRITE).
481
- */
482
- interface PermissionBE {
483
- access: ACCESS_LEVEL;
484
- createdAt: string;
485
- description: string | null;
486
- id: string;
487
- module: string;
488
- updatedAt: string;
489
- rolePermissions?: RolePermissionBE[];
490
- workspaceUserPermissions?: WorkspaceUserPermissionBE[];
491
- }
492
- /**
493
- * RolePermission links a Permission to a Role, with an optional workspace scope.
494
- * workspaceId IS NULL → global default grant for the role (seeded by system)
495
- * workspaceId IS SET → workspace-level override set by SCHOOL_ADMIN for their workspace
496
- * allowed = true → explicitly grant the permission
497
- * allowed = false → explicitly deny/revoke the permission (overrides the global default)
498
- */
499
- interface RolePermissionBE {
500
- allowed: boolean;
501
- createdAt: string;
502
- id: string;
503
- permissionId: string;
504
- roleId: string;
505
- updatedAt: string;
506
- workspaceId: string | null;
507
- permission?: PermissionBE;
508
- role?: RoleBE;
509
- workspace?: WorkspaceBE;
510
- }
511
- /**
512
- * WorkspaceUserPermission is a per-user override for a given Permission within a workspace.
513
- * allowed indicates explicit allow (true) or deny (false); overrides take precedence over role grants.
514
- */
515
- interface WorkspaceUserPermissionBE {
516
- allowed: boolean;
517
- createdAt: string;
518
- id: string;
519
- permissionId: string;
520
- updatedAt: string;
521
- workspaceUserId: string;
522
- permission?: PermissionBE;
523
- workspaceUser?: WorkspaceUserBE;
524
- }
525
- /**
526
- * School represents an individual educational institution
527
- * Has a 1:1 relationship with Workspace (each school is a separate tenant)
528
- */
529
- interface SchoolBE {
530
- address: string | null;
531
- city: string | null;
532
- code: string;
533
- country: string | null;
534
- createdAt: string;
535
- currency: CURRENCY;
536
- email: string | null;
537
- enabled: boolean;
538
- id: string;
539
- logo: string | null;
540
- name: string;
541
- phone: string | null;
542
- postalCode: string | null;
543
- principalId: string | null;
544
- state: string | null;
545
- updatedAt: string;
546
- website: string | null;
547
- workspaceId: string;
548
- attendances?: AttendanceBE[];
549
- blogPosts?: BlogPostBE[];
550
- classes?: ClassBE[];
551
- courses?: CourseBE[];
552
- expenses?: ExpenseBE[];
553
- families?: FamilyBE[];
554
- feeStructures?: FeeStructureBE[];
555
- discountCodes?: DiscountCodeBE[];
556
- grades?: GradeBE[];
557
- schedules?: ScheduleBE[];
558
- sections?: SectionBE[];
559
- admissions?: AdmissionBE[];
560
- studentFees?: StudentFeeBE[];
561
- subjects?: SubjectBE[];
562
- teachers?: TeacherBE[];
563
- workspace?: WorkspaceBE;
564
- }
565
- /**
566
- * Core user model synchronized with Supabase Auth
567
- * Shared by entire family - parents and students use same login
568
- */
569
- interface UserBE {
570
- avatar: string | null;
571
- createdAt: string;
572
- email: string;
573
- enabled: boolean;
574
- id: string;
575
- name: string | null;
576
- phone: string | null;
577
- updatedAt: string;
578
- blogCommentClaps?: BlogCommentClapBE[];
579
- blogComments?: BlogCommentBE[];
580
- blogPostClaps?: BlogPostClapBE[];
581
- blogPosts?: BlogPostBE[];
582
- mobileNotifications?: MobileNotificationBE[];
583
- notificationPreference?: NotificationPreferenceBE;
584
- pushTokens?: UserPushTokenBE[];
585
- teacherProfile?: TeacherBE;
586
- workspaces?: WorkspaceUserBE[];
587
- }
588
- /**
589
- * Campus represents a physical branch/location of a school
590
- */
591
- interface CampusBE {
592
- address: string | null;
593
- campusId?: string | null;
594
- city: string | null;
595
- code: string;
596
- country: string | null;
597
- createdAt: string;
598
- enabled: boolean;
599
- id: string;
600
- name: string;
601
- phone: string | null;
602
- schoolId: string;
603
- state: string | null;
604
- updatedAt: string;
605
- school?: SchoolBE;
606
- _count?: {
607
- classes: number;
608
- teachers: number;
609
- studentProfiles: number;
610
- };
611
- }
612
-
613
- /**
614
- * TypeScript Types Generated from Prisma Schema - Academics
615
- *
616
- * This file contains TypeScript interfaces for class, section, subject, course,
617
- * teacher, enrollment, attendance, grade, schedule, student profile, family,
618
- * and family member domain models.
619
- */
620
-
621
- /**
622
- * Family represents a household sharing a single user account
623
- * Contains parents and students using the same login credentials
624
- */
625
- interface FamilyBE {
626
- address: string | null;
627
- city: string | null;
628
- country: string | null;
629
- createdAt: string;
630
- enabled: boolean;
631
- familyCode: string;
632
- id: string;
633
- postalCode: string | null;
634
- schoolId: string;
635
- state: string | null;
636
- updatedAt: string;
637
- members?: FamilyMemberBE[];
638
- school?: SchoolBE;
639
- studentFees?: StudentFeeBE[];
640
- }
641
- /**
642
- * FamilyMember represents individuals within a family
643
- * Multiple members (parents + students) share the family's user account
644
- */
645
- interface FamilyMemberBE {
646
- avatar: string | null;
647
- bloodGroup: string | null;
648
- createdAt: string;
649
- dateOfBirth: Date | string | null;
650
- email: string | null;
651
- emergencyPhone: string | null;
652
- enabled: boolean;
653
- familyId: string;
654
- firstName: string;
655
- gender: GENDER;
656
- id: string;
657
- idNumber: string;
658
- isPrimary: boolean;
659
- lastName: string;
660
- occupation: string | null;
661
- organization: string | null;
662
- phone: string | null;
663
- relationship: string;
664
- role: FAMILY_MEMBER_ROLE;
665
- updatedAt: string;
666
- family?: FamilyBE;
667
- studentProfile?: StudentProfileBE;
668
- }
669
- /**
670
- * StudentProfile extends FamilyMember with student-specific data
671
- */
672
- interface StudentProfileBE {
673
- campusId: string | null;
674
- computerNumber: string;
675
- createdAt: string;
676
- discountCodeId: string | null;
677
- enabled: boolean;
678
- familyMemberId: string;
679
- hafiz: boolean;
680
- id: string;
681
- notes: string | null;
682
- orphan: boolean;
683
- previousSchool: string | null;
684
- remarks: string | null;
685
- schoolId: string;
686
- status: STUDENT_STATUS;
687
- studentCode: string;
688
- updatedAt: string;
689
- attendances?: AttendanceBE[];
690
- campus?: CampusBE;
691
- enrollments?: EnrollmentBE[];
692
- familyMember?: FamilyMemberBE;
693
- grades?: GradeBE[];
694
- studentFees?: StudentFeeBE[];
695
- }
696
- /**
697
- * Class represents grade levels (e.g., Grade 1, Grade 2, Grade 10)
698
- */
699
- interface ClassBE {
700
- campusId: string | null;
701
- code: string;
702
- createdAt: string;
703
- description: string | null;
704
- enabled: boolean;
705
- id: string;
706
- name: string;
707
- schoolId: string;
708
- updatedAt: string;
709
- campus?: CampusBE;
710
- feeStructures?: FeeStructureBE[];
711
- school?: SchoolBE;
712
- sections?: SectionBE[];
713
- }
714
- /**
715
- * Section represents a named division within a school (school-wide pool).
716
- */
717
- interface SectionBE {
718
- capacity: number | null;
719
- createdAt: string;
720
- enabled: boolean;
721
- id: string;
722
- name: string;
723
- schoolId: string;
724
- updatedAt: string;
725
- class?: ClassBE;
726
- courses?: CourseBE[];
727
- enrollments?: EnrollmentBE[];
728
- school?: SchoolBE;
729
- }
730
- /**
731
- * Subject represents academic subjects (e.g., Mathematics, English, Science)
732
- */
733
- interface SubjectBE {
734
- code: string;
735
- createdAt: string;
736
- description: string | null;
737
- enabled: boolean;
738
- id: string;
739
- name: string;
740
- schoolId: string;
741
- updatedAt: string;
742
- courses?: CourseBE[];
743
- school?: SchoolBE;
744
- }
745
- /**
746
- * Course represents a subject taught in a specific section by a teacher
747
- */
748
- interface CourseBE {
749
- classId: string;
750
- code: string;
751
- createdAt: string;
752
- enabled: boolean;
753
- id: string;
754
- schoolId: string;
755
- sectionId: string;
756
- subjectId: string;
757
- teacherId: string;
758
- updatedAt: Date;
759
- class?: ClassBE;
760
- grades?: GradeBE[];
761
- schedules?: ScheduleBE[];
762
- school?: SchoolBE;
763
- section?: SectionBE;
764
- subject?: SubjectBE;
765
- teacher?: TeacherBE;
766
- }
767
- /**
768
- * Teacher represents teaching staff
769
- */
770
- interface TeacherBE {
771
- address: string | null;
772
- avatar: string | null;
773
- bio: string | null;
774
- campusId: string | null;
775
- city: string | null;
776
- country: string | null;
777
- createdAt: string;
778
- dateOfBirth: Date | string | null;
779
- emergencyPhone: string | null;
780
- enabled: boolean;
781
- experience: number | null;
782
- firstName: string;
783
- gender: GENDER | null;
784
- id: string;
785
- joiningDate: Date | string;
786
- lastName: string;
787
- phone: string | null;
788
- postalCode: string | null;
789
- qualification: string | null;
790
- schoolId: string;
791
- specialization: string | null;
792
- state: string | null;
793
- teacherCode: string;
794
- updatedAt: Date;
795
- userId: string | null;
796
- campus?: CampusBE;
797
- courses?: CourseBE[];
798
- school?: SchoolBE;
799
- user?: UserBE | null;
800
- }
801
- /**
802
- * Enrollment represents a student enrolled in a section.
803
- * All courses taught in that section are implied.
804
- */
805
- interface EnrollmentBE {
806
- createdAt: string;
807
- enabled: boolean;
808
- enrollmentDate: Date | string;
809
- id: string;
810
- classId: string;
811
- sectionId: string;
812
- studentProfileId: string;
813
- updatedAt: string;
814
- class?: ClassBE;
815
- grades?: GradeBE[];
816
- section?: SectionBE;
817
- studentProfile?: StudentProfileBE;
818
- }
819
- /**
820
- * Attendance tracks daily student presence in courses
821
- */
822
- interface AttendanceBE {
823
- createdAt: string;
824
- date: Date | string;
825
- enabled: boolean;
826
- id: string;
827
- remarks: string | null;
828
- schoolId: string;
829
- status: ATTENDANCE_STATUS;
830
- studentProfileId: string;
831
- updatedAt: string;
832
- school?: SchoolBE;
833
- studentProfile?: StudentProfileBE;
834
- }
835
- /**
836
- * Grade represents student assessment results
837
- */
838
- interface GradeBE {
839
- assessmentDate: Date | string;
840
- courseId: string;
841
- createdAt: Date;
842
- enabled: boolean;
843
- enrollmentId: string;
844
- grade: string | null;
845
- gradeType: GRADE_TYPE;
846
- id: string;
847
- marksObtained: number;
848
- maxMarks: number;
849
- percentage: number | null;
850
- remarks: string | null;
851
- schoolId: string;
852
- studentProfileId: string;
853
- title: string;
854
- updatedAt: Date;
855
- course?: CourseBE;
856
- enrollment?: EnrollmentBE;
857
- school?: SchoolBE;
858
- studentProfile?: StudentProfileBE;
859
- }
860
- /**
861
- * Schedule represents class timetable
862
- */
863
- interface ScheduleBE {
864
- courseId: string;
865
- createdAt: string;
866
- dayOfWeek: DAY_OF_WEEK;
867
- enabled: boolean;
868
- endTime: string;
869
- id: string;
870
- room: string | null;
871
- schoolId: string;
872
- startTime: string;
873
- updatedAt: string;
874
- course?: CourseBE;
875
- school?: SchoolBE;
876
- }
877
-
878
- export type { AttendanceBE as A, AdmissionAIBE, AdmissionBE, AdmissionDetails, BlogCommentBE as B, CampaignBE as C, DiscountCodeBE as D, ExpenseBE as E, FeeAgentActivityBE as F, FatherDetails, GradeBE as G, HomeDetails, MobileNotificationBE as M, MotherDetails, NotificationPreferenceBE as N, OfficeUse, PermissionBE as P, ReferralBE as R, StudentFeeBE as S, StudentDetails, TeacherBE as T, UserPushTokenBE as U, WorkspaceBE as W, FeeConversationBE as a, FeeStructureBE as b, BlogCommentClapBE as c, BlogPostBE as d, BlogPostClapBE as e, CampaignContactBE as f, CampusBE as g, PlanBE as h, RoleBE as i, RolePermissionBE as j, SchoolBE as k, UserBE as l, WorkspaceUserBE as m, WorkspaceUserPermissionBE as n, ClassBE as o, CourseBE as p, EnrollmentBE as q, FamilyBE as r, FamilyMemberBE as s, ScheduleBE as t, SectionBE as u, StudentProfileBE as v, SubjectBE as w };