@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.
- package/constants/api-methods.d.mts +13 -0
- package/constants/api-methods.mjs +1 -0
- package/constants/cache-time.d.mts +7 -0
- package/constants/cache-time.mjs +1 -0
- package/constants/countries-timezones.d.mts +8 -0
- package/constants/countries-timezones.mjs +1 -0
- package/constants/currencies.d.mts +14 -0
- package/constants/currencies.mjs +1 -0
- package/constants/dial-codes.d.mts +9 -0
- package/constants/dial-codes.mjs +1 -0
- package/constants/layout-direction.d.mts +6 -0
- package/constants/layout-direction.mjs +1 -0
- package/constants/react-pakistan-meta.d.mts +32 -0
- package/constants/react-pakistan-meta.mjs +1 -0
- package/constants/react-pakistan.d.mts +15 -0
- package/constants/react-pakistan.mjs +12 -0
- package/constants/select-value-delimiter.d.mts +12 -0
- package/constants/select-value-delimiter.mjs +1 -0
- package/constants/social-media-colors.d.mts +40 -0
- package/constants/social-media-colors.mjs +1 -0
- package/constants/social-media-sizes.d.mts +323 -0
- package/constants/social-media-sizes.mjs +1 -0
- package/constants/user-roles.d.mts +7 -0
- package/constants/user-roles.mjs +1 -0
- package/factory/generic-component-factory.d.mts +78 -0
- package/factory/generic-component-factory.mjs +1 -0
- package/factory/generic-module-factory.d.mts +80 -0
- package/factory/generic-module-factory.mjs +1 -0
- package/general/basic-get.d.mts +8 -0
- package/general/basic-get.mjs +1 -0
- package/general/basic-post.d.mts +8 -0
- package/general/basic-post.mjs +1 -0
- package/general/calculate-pages.d.mts +9 -0
- package/general/calculate-pages.mjs +1 -0
- package/general/camel-to-sentence-case.d.mts +12 -0
- package/general/camel-to-sentence-case.mjs +1 -0
- package/general/check-even-odd-length.d.mts +13 -0
- package/general/check-even-odd-length.mjs +1 -0
- package/general/clear-cache.d.mts +10 -0
- package/general/clear-cache.mjs +1 -0
- package/general/cnic-formatter.d.mts +20 -0
- package/general/cnic-formatter.mjs +1 -0
- package/general/convert-url-to-base64.d.mts +57 -0
- package/general/convert-url-to-base64.mjs +1 -0
- package/general/countries.d.mts +268 -0
- package/general/countries.mjs +1 -0
- package/general/create-date.d.mts +12 -0
- package/general/create-date.js +1 -1
- package/general/create-date.mjs +1 -0
- package/general/crypto.d.mts +11 -0
- package/general/crypto.mjs +1 -0
- package/general/currencies.d.mts +2 -0
- package/general/currencies.mjs +0 -0
- package/general/delete-image-from-private-supabase.d.mts +16 -0
- package/general/delete-image-from-private-supabase.mjs +1 -0
- package/general/delete-image-from-public-supabase.d.mts +16 -0
- package/general/delete-image-from-public-supabase.mjs +1 -0
- package/general/download-from-url.d.mts +8 -0
- package/general/download-from-url.mjs +1 -0
- package/general/dynamic-page-limit.d.mts +12 -0
- package/general/dynamic-page-limit.mjs +1 -0
- package/general/enum-to-text.d.mts +8 -0
- package/general/enum-to-text.mjs +1 -0
- package/general/fetch-data.d.mts +25 -0
- package/general/fetch-data.mjs +1 -0
- package/general/fetch-supabase-image.d.mts +16 -0
- package/general/fetch-supabase-image.mjs +1 -0
- package/general/fetch-supabase-private-assets.d.mts +15 -0
- package/general/fetch-supabase-private-assets.mjs +1 -0
- package/general/format-date.d.mts +18 -0
- package/general/format-date.mjs +1 -0
- package/general/format-number.d.mts +16 -0
- package/general/format-number.mjs +1 -0
- package/general/format-phone-display.d.mts +9 -0
- package/general/format-phone-display.js +1 -1
- package/general/format-phone-display.mjs +1 -0
- package/general/format-phone.d.mts +13 -0
- package/general/format-phone.d.ts +1 -3
- package/general/format-phone.js +1 -1
- package/general/format-phone.mjs +1 -0
- package/general/format-pricing.d.mts +8 -0
- package/general/format-pricing.mjs +1 -0
- package/general/format-secs.d.mts +8 -0
- package/general/format-secs.mjs +1 -0
- package/general/format-time.d.mts +11 -0
- package/general/format-time.mjs +1 -0
- package/general/format-value.d.mts +8 -0
- package/general/format-value.mjs +1 -0
- package/general/full-month-range.d.mts +13 -0
- package/general/full-month-range.mjs +1 -0
- package/general/full-year-range.d.mts +12 -0
- package/general/full-year-range.mjs +1 -0
- package/general/generate-article-schema.d.mts +50 -0
- package/general/generate-article-schema.mjs +1 -0
- package/general/generate-blog-schema.d.mts +37 -0
- package/general/generate-blog-schema.mjs +1 -0
- package/general/generate-book-schema.d.mts +58 -0
- package/general/generate-book-schema.mjs +1 -0
- package/general/generate-breadcrumb-schema.d.mts +40 -0
- package/general/generate-breadcrumb-schema.mjs +1 -0
- package/general/generate-carousel-schema.d.mts +52 -0
- package/general/generate-carousel-schema.mjs +1 -0
- package/general/generate-course-schema.d.mts +53 -0
- package/general/generate-course-schema.mjs +1 -0
- package/general/generate-dataset-schema.d.mts +65 -0
- package/general/generate-dataset-schema.mjs +1 -0
- package/general/generate-discussion-forum-schema.d.mts +39 -0
- package/general/generate-discussion-forum-schema.mjs +1 -0
- package/general/generate-education-schema.d.mts +68 -0
- package/general/generate-education-schema.mjs +1 -0
- package/general/generate-employer-aggregate-rating-schema.d.mts +29 -0
- package/general/generate-employer-aggregate-rating-schema.mjs +1 -0
- package/general/generate-event-schema.d.mts +63 -0
- package/general/generate-event-schema.mjs +1 -0
- package/general/generate-faq-schema.d.mts +32 -0
- package/general/generate-faq-schema.mjs +1 -0
- package/general/generate-grid.d.mts +17 -0
- package/general/generate-grid.mjs +1 -0
- package/general/generate-image-metadata-schema.d.mts +36 -0
- package/general/generate-image-metadata-schema.mjs +1 -0
- package/general/generate-job-posting-schema.d.mts +49 -0
- package/general/generate-job-posting-schema.mjs +1 -0
- package/general/generate-local-business-schema.d.mts +42 -0
- package/general/generate-local-business-schema.mjs +1 -0
- package/general/generate-math-solver-schema.d.mts +45 -0
- package/general/generate-math-solver-schema.mjs +1 -0
- package/general/generate-movie-carousel-schema.d.mts +51 -0
- package/general/generate-movie-carousel-schema.mjs +1 -0
- package/general/generate-organization-schema.d.mts +49 -0
- package/general/generate-organization-schema.mjs +1 -0
- package/general/generate-profile-page-schema.d.mts +37 -0
- package/general/generate-profile-page-schema.mjs +1 -0
- package/general/generate-qa-page-schema.d.mts +34 -0
- package/general/generate-qa-page-schema.mjs +1 -0
- package/general/generate-recipe-schema.d.mts +49 -0
- package/general/generate-recipe-schema.mjs +1 -0
- package/general/generate-ref.d.mts +11 -0
- package/general/generate-ref.js +1 -1
- package/general/generate-ref.mjs +1 -0
- package/general/generate-review-snippet-schema.d.mts +52 -0
- package/general/generate-review-snippet-schema.mjs +1 -0
- package/general/generate-shopping-loyalty-program-schema.d.mts +38 -0
- package/general/generate-shopping-loyalty-program-schema.mjs +1 -0
- package/general/generate-shopping-merchant-listing-schema.d.mts +53 -0
- package/general/generate-shopping-merchant-listing-schema.mjs +1 -0
- package/general/generate-shopping-merchant-return-policy-schema.d.mts +32 -0
- package/general/generate-shopping-merchant-return-policy-schema.mjs +1 -0
- package/general/generate-shopping-merchant-shipping-policy-schema.d.mts +36 -0
- package/general/generate-shopping-merchant-shipping-policy-schema.mjs +1 -0
- package/general/generate-shopping-overview-schema.d.mts +52 -0
- package/general/generate-shopping-overview-schema.mjs +1 -0
- package/general/generate-shopping-product-snippet-schema.d.mts +57 -0
- package/general/generate-shopping-product-snippet-schema.mjs +1 -0
- package/general/generate-shopping-variants-schema.d.mts +46 -0
- package/general/generate-shopping-variants-schema.mjs +1 -0
- package/general/generate-software-app-schema.d.mts +62 -0
- package/general/generate-software-app-schema.mjs +1 -0
- package/general/generate-speakable-schema.d.mts +64 -0
- package/general/generate-speakable-schema.mjs +1 -0
- package/general/generate-subscription-schema.d.mts +60 -0
- package/general/generate-subscription-schema.mjs +1 -0
- package/general/generate-vacation-rental-schema.d.mts +67 -0
- package/general/generate-vacation-rental-schema.mjs +1 -0
- package/general/generate-video-schema.d.mts +75 -0
- package/general/generate-video-schema.mjs +1 -0
- package/general/generic-cache.d.mts +193 -0
- package/general/generic-cache.mjs +1 -0
- package/general/get-available-page-limit.d.mts +11 -0
- package/general/get-available-page-limit.mjs +1 -0
- package/general/get-calendar-current-month.d.mts +15 -0
- package/general/get-calendar-current-month.js +1 -1
- package/general/get-calendar-current-month.mjs +1 -0
- package/general/get-calendar-dates.d.mts +15 -0
- package/general/get-calendar-dates.js +1 -1
- package/general/get-calendar-dates.mjs +1 -0
- package/general/get-calendar-next-month.d.mts +17 -0
- package/general/get-calendar-next-month.js +1 -1
- package/general/get-calendar-next-month.mjs +1 -0
- package/general/get-calendar-previous-month.d.mts +17 -0
- package/general/get-calendar-previous-month.js +1 -1
- package/general/get-calendar-previous-month.mjs +1 -0
- package/general/get-current-year.d.mts +7 -0
- package/general/get-current-year.mjs +1 -0
- package/general/get-day-name.d.mts +10 -0
- package/general/get-day-name.mjs +1 -0
- package/general/get-dial-code.d.mts +8 -0
- package/general/get-dial-code.mjs +1 -0
- package/general/get-full-name.d.mts +13 -0
- package/general/get-full-name.mjs +1 -0
- package/general/get-href.d.mts +11 -0
- package/general/get-href.mjs +1 -0
- package/general/get-month-name.d.mts +10 -0
- package/general/get-month-name.mjs +1 -0
- package/general/get-month-number.d.mts +15 -0
- package/general/get-month-number.mjs +1 -0
- package/general/get-number-of-days-in-month.d.mts +13 -0
- package/general/get-number-of-days-in-month.js +1 -1
- package/general/get-number-of-days-in-month.mjs +1 -0
- package/general/get-pathname.d.mts +11 -0
- package/general/get-pathname.mjs +1 -0
- package/general/get-week-day.d.mts +8 -0
- package/general/get-week-day.js +1 -1
- package/general/get-week-day.mjs +1 -0
- package/general/image-url-to-base64.d.mts +9 -0
- package/general/image-url-to-base64.mjs +1 -0
- package/general/is-created-or-updated.d.mts +13 -0
- package/general/is-created-or-updated.mjs +1 -0
- package/general/is-next-button-disabled.d.mts +9 -0
- package/general/is-next-button-disabled.mjs +1 -0
- package/general/is-odd.d.mts +11 -0
- package/general/is-odd.mjs +1 -0
- package/general/is-previous-button-disabled.d.mts +8 -0
- package/general/is-previous-button-disabled.mjs +1 -0
- package/general/linear-gradients.d.mts +14 -0
- package/general/linear-gradients.mjs +1 -0
- package/general/multi-part-search.d.mts +22 -0
- package/general/multi-part-search.mjs +1 -0
- package/general/normalize-phone.d.mts +15 -0
- package/general/normalize-phone.js +1 -1
- package/general/normalize-phone.mjs +1 -0
- package/general/parse-frontmatter.d.mts +36 -0
- package/general/parse-frontmatter.mjs +2 -0
- package/general/remove-data-image-prefix.d.mts +8 -0
- package/general/remove-data-image-prefix.mjs +1 -0
- package/general/repeat-times.d.mts +15 -0
- package/general/repeat-times.mjs +1 -0
- package/general/resolve-anchor-link.d.mts +13 -0
- package/general/resolve-anchor-link.mjs +1 -0
- package/general/resolve-current-date.d.mts +12 -0
- package/general/resolve-current-date.mjs +1 -0
- package/general/resolve-grid.d.mts +14 -0
- package/general/resolve-grid.mjs +1 -0
- package/general/resolve-initials.d.mts +12 -0
- package/general/resolve-initials.mjs +1 -0
- package/general/set-timezone.d.mts +9 -0
- package/general/set-timezone.d.ts +1 -3
- package/general/set-timezone.js +1 -1
- package/general/set-timezone.mjs +1 -0
- package/general/slugify.d.mts +12 -0
- package/general/slugify.mjs +1 -0
- package/general/text-to-enum.d.mts +8 -0
- package/general/text-to-enum.mjs +1 -0
- package/general/text-to-sentence-case.d.mts +12 -0
- package/general/text-to-sentence-case.mjs +1 -0
- package/general/time-out.d.mts +12 -0
- package/general/time-out.mjs +1 -0
- package/general/time-zones.d.mts +11 -0
- package/general/time-zones.mjs +1 -0
- package/general/truncate-text.d.mts +14 -0
- package/general/truncate-text.mjs +1 -0
- package/general/type.d.mts +8 -0
- package/general/type.mjs +0 -0
- package/general/upload-blob-to-private-supabase.d.mts +24 -0
- package/general/upload-blob-to-private-supabase.mjs +1 -0
- package/general/upload-blob-to-public-supabase.d.mts +24 -0
- package/general/upload-blob-to-public-supabase.mjs +1 -0
- package/general/upload-image-to-private-supabase.d.mts +26 -0
- package/general/upload-image-to-private-supabase.mjs +1 -0
- package/general/upload-image-to-public-supabase.d.mts +26 -0
- package/general/upload-image-to-public-supabase.mjs +1 -0
- package/general/url-to-sentence-case.d.mts +12 -0
- package/general/url-to-sentence-case.mjs +1 -0
- package/general/validate-comment.d.mts +14 -0
- package/general/validate-comment.mjs +1 -0
- package/general/validate-email.d.mts +15 -0
- package/general/validate-email.mjs +1 -0
- package/general/validate-form.d.mts +18 -0
- package/general/validate-form.mjs +1 -0
- package/general/validate-name.d.mts +14 -0
- package/general/validate-name.mjs +1 -0
- package/hooks/use-change.d.mts +11 -0
- package/hooks/use-change.mjs +1 -0
- package/hooks/use-debounce.d.mts +10 -0
- package/hooks/use-debounce.mjs +1 -0
- package/hooks/use-fetch.d.mts +42 -0
- package/hooks/use-fetch.mjs +1 -0
- package/hooks/use-force-render.d.mts +14 -0
- package/hooks/use-force-render.mjs +1 -0
- package/hooks/use-ip-geo-location.d.mts +12 -0
- package/hooks/use-ip-geo-location.mjs +1 -0
- package/hooks/use-is-mobile.d.mts +8 -0
- package/hooks/use-is-mobile.mjs +1 -0
- package/hooks/use-module-entity-v2.d.mts +105 -0
- package/hooks/use-module-entity-v2.mjs +1 -0
- package/hooks/use-module-entity.d.mts +98 -0
- package/hooks/use-module-entity.mjs +1 -0
- package/hooks/use-phone-formatter.d.mts +17 -0
- package/hooks/use-phone-formatter.d.ts +1 -3
- package/hooks/use-phone-formatter.js +1 -1
- package/hooks/use-phone-formatter.mjs +1 -0
- package/hooks/use-position.d.mts +29 -0
- package/hooks/use-position.mjs +1 -0
- package/hooks/use-rtl.d.mts +46 -0
- package/hooks/use-rtl.mjs +1 -0
- package/hooks/use-sticky.d.mts +13 -0
- package/hooks/use-sticky.mjs +1 -0
- package/hooks/use-toggle-state.d.mts +14 -0
- package/hooks/use-toggle-state.mjs +1 -0
- package/hooks/use-window-event-listener.d.mts +9 -0
- package/hooks/use-window-event-listener.mjs +1 -0
- package/hooks/with-seo.d.mts +19 -0
- package/hooks/with-seo.mjs +1 -0
- package/local-storage/get-storage-value.d.mts +5 -0
- package/local-storage/get-storage-value.mjs +1 -0
- package/local-storage/remove-storage-value.d.mts +3 -0
- package/local-storage/remove-storage-value.mjs +1 -0
- package/local-storage/set-storage-value.d.mts +3 -0
- package/local-storage/set-storage-value.mjs +1 -0
- package/local-storage/type.d.mts +3 -0
- package/local-storage/type.mjs +0 -0
- package/npm.d.d.mts +2 -0
- package/npm.d.mjs +0 -0
- package/package.json +1 -10
- package/edu-pilot-pro/types/academics.d.ts +0 -2
- package/edu-pilot-pro/types/academics.js +0 -1
- package/edu-pilot-pro/types/admission.d.ts +0 -878
- package/edu-pilot-pro/types/admission.js +0 -1
- package/edu-pilot-pro/types/communication.d.ts +0 -2
- package/edu-pilot-pro/types/communication.js +0 -1
- package/edu-pilot-pro/types/enums.d.ts +0 -413
- package/edu-pilot-pro/types/enums.js +0 -1
- package/edu-pilot-pro/types/finance.d.ts +0 -2
- package/edu-pilot-pro/types/finance.js +0 -1
- package/edu-pilot-pro/types/index.d.ts +0 -2
- package/edu-pilot-pro/types/index.js +0 -1
- package/edu-pilot-pro/types/user-management.d.ts +0 -2
- package/edu-pilot-pro/types/user-management.js +0 -1
- package/stellar-solution/types/common.d.ts +0 -26
- package/stellar-solution/types/common.js +0 -1
- package/stellar-solution/types/erp.d.ts +0 -305
- package/stellar-solution/types/erp.js +0 -1
- package/stellar-solution/types/index.d.ts +0 -3
- package/stellar-solution/types/index.js +0 -1
- package/stellar-solution/types/pos.d.ts +0 -179
- package/stellar-solution/types/pos.js +0 -1
- package/storybook/generate-sitemap.d.ts +0 -16
- package/storybook/generate-sitemap.js +0 -17
- package/storybook/preview.d.ts +0 -148
- package/storybook/preview.js +0 -1
- package/storybook/react-design-story-script.d.ts +0 -12
- package/storybook/react-design-story-script.js +0 -5
- package/storybook/react-emoji-collection.d.ts +0 -13
- package/storybook/react-emoji-collection.js +0 -11
- package/storybook/react-emoji-story-script.d.ts +0 -12
- package/storybook/react-emoji-story-script.js +0 -5
- package/storybook/react-emoji-story-template.d.ts +0 -14
- package/storybook/react-emoji-story-template.js +0 -46
- package/storybook/react-icon-collection.d.ts +0 -13
- package/storybook/react-icon-collection.js +0 -11
- package/storybook/react-icon-story-script.d.ts +0 -12
- package/storybook/react-icon-story-script.js +0 -5
- package/storybook/react-icon-story-template.d.ts +0 -13
- package/storybook/react-icon-story-template.js +0 -46
- package/storybook/react-logo-collection.d.ts +0 -13
- package/storybook/react-logo-collection.js +0 -11
- package/storybook/react-logo-story-script.d.ts +0 -12
- package/storybook/react-logo-story-script.js +0 -5
- package/storybook/react-logo-story-template.d.ts +0 -13
- package/storybook/react-logo-story-template.js +0 -46
- package/storybook/react-pakistan-theme.d.ts +0 -25
- package/storybook/react-pakistan-theme.js +0 -1
- package/storybook/responsive-args.d.ts +0 -22
- package/storybook/responsive-args.js +0 -1
- package/storybook/responsive-component.d.ts +0 -33
- package/storybook/responsive-component.js +0 -37
- package/storybook/responsive-screens.d.ts +0 -108
- package/storybook/responsive-screens.js +0 -1
- package/storybook/theme.d.ts +0 -96
- package/storybook/theme.js +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var r=Object.defineProperty;var o=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var g=(e,t,n,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of a(t))!l.call(e,s)&&s!==n&&r(e,s,{get:()=>t[s],enumerable:!(i=o(t,s))||i.enumerable});return e};var d=e=>g(r({},"__esModule",{value:!0}),e);var m={};module.exports=d(m);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var s=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var g=(n,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of l(t))!a.call(n,e)&&e!==o&&s(n,e,{get:()=>t[e],enumerable:!(r=i(t,e))||r.enumerable});return n};var d=n=>g(s({},"__esModule",{value:!0}),n);var u={};module.exports=d(u);
|
|
@@ -1,413 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* TypeScript Enums Generated from Prisma Schema
|
|
3
|
-
*
|
|
4
|
-
* This file contains TypeScript enums for all database enums
|
|
5
|
-
* following the naming convention SCREAMING_SNAKE_CASE (e.g., USER_ROLE).
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* User roles across the multi-tenant system
|
|
9
|
-
*/
|
|
10
|
-
declare enum USER_ROLE {
|
|
11
|
-
SUPER_ADMIN = "SUPER_ADMIN",
|
|
12
|
-
SCHOOL_ADMIN = "SCHOOL_ADMIN",
|
|
13
|
-
TEACHER = "TEACHER",
|
|
14
|
-
STUDENT = "STUDENT",
|
|
15
|
-
PARENT = "PARENT",
|
|
16
|
-
STAFF = "STAFF"
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Student enrollment status
|
|
20
|
-
*/
|
|
21
|
-
declare enum STUDENT_STATUS {
|
|
22
|
-
ACTIVE = "ACTIVE",
|
|
23
|
-
INACTIVE = "INACTIVE",
|
|
24
|
-
GRADUATED = "GRADUATED",
|
|
25
|
-
TRANSFERRED = "TRANSFERRED",
|
|
26
|
-
DROPPED = "DROPPED"
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Family member roles within a household
|
|
30
|
-
*/
|
|
31
|
-
declare enum FAMILY_MEMBER_ROLE {
|
|
32
|
-
FATHER = "FATHER",
|
|
33
|
-
MOTHER = "MOTHER",
|
|
34
|
-
GUARDIAN = "GUARDIAN",
|
|
35
|
-
STUDENT = "STUDENT"
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Gender options
|
|
39
|
-
*/
|
|
40
|
-
declare enum GENDER {
|
|
41
|
-
MALE = "MALE",
|
|
42
|
-
FEMALE = "FEMALE",
|
|
43
|
-
OTHER = "OTHER",
|
|
44
|
-
PREFER_NOT_TO_SAY = "PREFER_NOT_TO_SAY"
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Day of the week for scheduling
|
|
48
|
-
*/
|
|
49
|
-
declare enum DAY_OF_WEEK {
|
|
50
|
-
MONDAY = "MONDAY",
|
|
51
|
-
TUESDAY = "TUESDAY",
|
|
52
|
-
WEDNESDAY = "WEDNESDAY",
|
|
53
|
-
THURSDAY = "THURSDAY",
|
|
54
|
-
FRIDAY = "FRIDAY",
|
|
55
|
-
SATURDAY = "SATURDAY",
|
|
56
|
-
SUNDAY = "SUNDAY"
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Attendance status
|
|
60
|
-
*/
|
|
61
|
-
declare enum ATTENDANCE_STATUS {
|
|
62
|
-
PRESENT = "PRESENT",
|
|
63
|
-
ABSENT = "ABSENT",
|
|
64
|
-
LATE = "LATE",
|
|
65
|
-
EXCUSED = "EXCUSED",
|
|
66
|
-
HALF_DAY = "HALF_DAY"
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Grade type for assessments
|
|
70
|
-
*/
|
|
71
|
-
declare enum GRADE_TYPE {
|
|
72
|
-
EXAM = "EXAM",
|
|
73
|
-
QUIZ = "QUIZ",
|
|
74
|
-
ASSIGNMENT = "ASSIGNMENT",
|
|
75
|
-
PARTICIPATION = "PARTICIPATION",
|
|
76
|
-
PRACTICAL = "PRACTICAL",
|
|
77
|
-
PROJECT = "PROJECT"
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
|
-
* Fee type categories
|
|
81
|
-
*/
|
|
82
|
-
declare enum FEE_TYPE {
|
|
83
|
-
TUITION = "TUITION",
|
|
84
|
-
ADMISSION = "ADMISSION",
|
|
85
|
-
EXAM = "EXAM",
|
|
86
|
-
LIBRARY = "LIBRARY",
|
|
87
|
-
LABORATORY = "LABORATORY",
|
|
88
|
-
TRANSPORT = "TRANSPORT",
|
|
89
|
-
SPORTS = "SPORTS",
|
|
90
|
-
MISCELLANEOUS = "MISCELLANEOUS",
|
|
91
|
-
LATE = "LATE"
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* Discount type for fee reductions
|
|
95
|
-
*/
|
|
96
|
-
declare enum DISCOUNT_TYPE {
|
|
97
|
-
PERCENTAGE = "PERCENTAGE",
|
|
98
|
-
FIXED = "FIXED"
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* Payment status
|
|
102
|
-
*/
|
|
103
|
-
declare enum PAYMENT_STATUS {
|
|
104
|
-
PENDING = "PENDING",
|
|
105
|
-
PARTIAL = "PARTIAL",
|
|
106
|
-
PAID = "PAID",
|
|
107
|
-
OVERDUE = "OVERDUE",
|
|
108
|
-
CANCELLED = "CANCELLED",
|
|
109
|
-
REFUNDED = "REFUNDED"
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Payment method
|
|
113
|
-
*/
|
|
114
|
-
declare enum PAYMENT_METHOD {
|
|
115
|
-
CASH = "CASH",
|
|
116
|
-
BANK_TRANSFER = "BANK_TRANSFER",
|
|
117
|
-
CREDIT_CARD = "CREDIT_CARD",
|
|
118
|
-
DEBIT_CARD = "DEBIT_CARD",
|
|
119
|
-
CHEQUE = "CHEQUE",
|
|
120
|
-
ONLINE = "ONLINE",
|
|
121
|
-
MOBILE_WALLET = "MOBILE_WALLET"
|
|
122
|
-
}
|
|
123
|
-
/**
|
|
124
|
-
* Expense category types
|
|
125
|
-
*/
|
|
126
|
-
declare enum EXPENSE_CATEGORY {
|
|
127
|
-
SALARY = "SALARY",
|
|
128
|
-
UTILITIES = "UTILITIES",
|
|
129
|
-
MAINTENANCE = "MAINTENANCE",
|
|
130
|
-
SUPPLIES = "SUPPLIES",
|
|
131
|
-
TRANSPORT = "TRANSPORT",
|
|
132
|
-
MARKETING = "MARKETING",
|
|
133
|
-
INSURANCE = "INSURANCE",
|
|
134
|
-
RENT = "RENT",
|
|
135
|
-
TECHNOLOGY = "TECHNOLOGY",
|
|
136
|
-
PROFESSIONAL = "PROFESSIONAL",
|
|
137
|
-
TRAINING = "TRAINING",
|
|
138
|
-
EVENTS = "EVENTS",
|
|
139
|
-
FOOD = "FOOD",
|
|
140
|
-
MISCELLANEOUS = "MISCELLANEOUS"
|
|
141
|
-
}
|
|
142
|
-
/**
|
|
143
|
-
* Expense payment status
|
|
144
|
-
*/
|
|
145
|
-
declare enum EXPENSE_STATUS {
|
|
146
|
-
PENDING = "PENDING",
|
|
147
|
-
APPROVED = "APPROVED",
|
|
148
|
-
PAID = "PAID",
|
|
149
|
-
REJECTED = "REJECTED",
|
|
150
|
-
CANCELLED = "CANCELLED"
|
|
151
|
-
}
|
|
152
|
-
/**
|
|
153
|
-
* Currency options (ISO 4217 codes)
|
|
154
|
-
*/
|
|
155
|
-
declare enum CURRENCY {
|
|
156
|
-
AED = "AED",
|
|
157
|
-
AFN = "AFN",
|
|
158
|
-
ALL = "ALL",
|
|
159
|
-
AMD = "AMD",
|
|
160
|
-
ANG = "ANG",
|
|
161
|
-
AOA = "AOA",
|
|
162
|
-
ARS = "ARS",
|
|
163
|
-
AUD = "AUD",
|
|
164
|
-
AWG = "AWG",
|
|
165
|
-
AZN = "AZN",
|
|
166
|
-
BAM = "BAM",
|
|
167
|
-
BBD = "BBD",
|
|
168
|
-
BDT = "BDT",
|
|
169
|
-
BGN = "BGN",
|
|
170
|
-
BHD = "BHD",
|
|
171
|
-
BIF = "BIF",
|
|
172
|
-
BMD = "BMD",
|
|
173
|
-
BND = "BND",
|
|
174
|
-
BOB = "BOB",
|
|
175
|
-
BRL = "BRL",
|
|
176
|
-
BSD = "BSD",
|
|
177
|
-
BTN = "BTN",
|
|
178
|
-
BWP = "BWP",
|
|
179
|
-
BYN = "BYN",
|
|
180
|
-
BZD = "BZD",
|
|
181
|
-
CAD = "CAD",
|
|
182
|
-
CDF = "CDF",
|
|
183
|
-
CHF = "CHF",
|
|
184
|
-
CLP = "CLP",
|
|
185
|
-
CNY = "CNY",
|
|
186
|
-
COP = "COP",
|
|
187
|
-
CRC = "CRC",
|
|
188
|
-
CVE = "CVE",
|
|
189
|
-
CZK = "CZK",
|
|
190
|
-
DJF = "DJF",
|
|
191
|
-
DKK = "DKK",
|
|
192
|
-
DOP = "DOP",
|
|
193
|
-
DZD = "DZD",
|
|
194
|
-
EGP = "EGP",
|
|
195
|
-
ERN = "ERN",
|
|
196
|
-
ETB = "ETB",
|
|
197
|
-
EUR = "EUR",
|
|
198
|
-
FJD = "FJD",
|
|
199
|
-
FKP = "FKP",
|
|
200
|
-
GBP = "GBP",
|
|
201
|
-
GEL = "GEL",
|
|
202
|
-
GHS = "GHS",
|
|
203
|
-
GIP = "GIP",
|
|
204
|
-
GMD = "GMD",
|
|
205
|
-
GNF = "GNF",
|
|
206
|
-
GTQ = "GTQ",
|
|
207
|
-
GYD = "GYD",
|
|
208
|
-
HKD = "HKD",
|
|
209
|
-
HNL = "HNL",
|
|
210
|
-
HTG = "HTG",
|
|
211
|
-
HUF = "HUF",
|
|
212
|
-
IDR = "IDR",
|
|
213
|
-
ILS = "ILS",
|
|
214
|
-
INR = "INR",
|
|
215
|
-
IQD = "IQD",
|
|
216
|
-
IRR = "IRR",
|
|
217
|
-
ISK = "ISK",
|
|
218
|
-
JMD = "JMD",
|
|
219
|
-
JOD = "JOD",
|
|
220
|
-
JPY = "JPY",
|
|
221
|
-
KES = "KES",
|
|
222
|
-
KGS = "KGS",
|
|
223
|
-
KHR = "KHR",
|
|
224
|
-
KMF = "KMF",
|
|
225
|
-
KPW = "KPW",
|
|
226
|
-
KRW = "KRW",
|
|
227
|
-
KWD = "KWD",
|
|
228
|
-
KYD = "KYD",
|
|
229
|
-
KZT = "KZT",
|
|
230
|
-
LAK = "LAK",
|
|
231
|
-
LBP = "LBP",
|
|
232
|
-
LKR = "LKR",
|
|
233
|
-
LSL = "LSL",
|
|
234
|
-
LYD = "LYD",
|
|
235
|
-
MAD = "MAD",
|
|
236
|
-
MDL = "MDL",
|
|
237
|
-
MGA = "MGA",
|
|
238
|
-
MKD = "MKD",
|
|
239
|
-
MMK = "MMK",
|
|
240
|
-
MNT = "MNT",
|
|
241
|
-
MOP = "MOP",
|
|
242
|
-
MRU = "MRU",
|
|
243
|
-
MUR = "MUR",
|
|
244
|
-
MWK = "MWK",
|
|
245
|
-
MXN = "MXN",
|
|
246
|
-
MYR = "MYR",
|
|
247
|
-
MZN = "MZN",
|
|
248
|
-
NAD = "NAD",
|
|
249
|
-
NGN = "NGN",
|
|
250
|
-
NIO = "NIO",
|
|
251
|
-
NOK = "NOK",
|
|
252
|
-
NPR = "NPR",
|
|
253
|
-
NZD = "NZD",
|
|
254
|
-
OMR = "OMR",
|
|
255
|
-
PAB = "PAB",
|
|
256
|
-
PEN = "PEN",
|
|
257
|
-
PGK = "PGK",
|
|
258
|
-
PHP = "PHP",
|
|
259
|
-
PKR = "PKR",
|
|
260
|
-
PLN = "PLN",
|
|
261
|
-
PYG = "PYG",
|
|
262
|
-
QAR = "QAR",
|
|
263
|
-
RON = "RON",
|
|
264
|
-
RSD = "RSD",
|
|
265
|
-
RUB = "RUB",
|
|
266
|
-
RWF = "RWF",
|
|
267
|
-
SAR = "SAR",
|
|
268
|
-
SBD = "SBD",
|
|
269
|
-
SCR = "SCR",
|
|
270
|
-
SDG = "SDG",
|
|
271
|
-
SEK = "SEK",
|
|
272
|
-
SGD = "SGD",
|
|
273
|
-
SHP = "SHP",
|
|
274
|
-
SLL = "SLL",
|
|
275
|
-
SOS = "SOS",
|
|
276
|
-
SRD = "SRD",
|
|
277
|
-
SYP = "SYP",
|
|
278
|
-
SZL = "SZL",
|
|
279
|
-
THB = "THB",
|
|
280
|
-
TJS = "TJS",
|
|
281
|
-
TMT = "TMT",
|
|
282
|
-
TND = "TND",
|
|
283
|
-
TOP = "TOP",
|
|
284
|
-
TRY = "TRY",
|
|
285
|
-
TTD = "TTD",
|
|
286
|
-
TWD = "TWD",
|
|
287
|
-
TZS = "TZS",
|
|
288
|
-
UAH = "UAH",
|
|
289
|
-
UGX = "UGX",
|
|
290
|
-
USD = "USD",
|
|
291
|
-
UYU = "UYU",
|
|
292
|
-
UZS = "UZS",
|
|
293
|
-
VES = "VES",
|
|
294
|
-
VND = "VND",
|
|
295
|
-
VUV = "VUV",
|
|
296
|
-
WST = "WST",
|
|
297
|
-
XAF = "XAF",
|
|
298
|
-
XCD = "XCD",
|
|
299
|
-
XOF = "XOF",
|
|
300
|
-
XPF = "XPF",
|
|
301
|
-
YER = "YER",
|
|
302
|
-
ZAR = "ZAR",
|
|
303
|
-
ZMW = "ZMW",
|
|
304
|
-
ZWL = "ZWL"
|
|
305
|
-
}
|
|
306
|
-
/**
|
|
307
|
-
* Access level for module-scoped permission grants
|
|
308
|
-
*/
|
|
309
|
-
declare enum ACCESS_LEVEL {
|
|
310
|
-
READ = "READ",
|
|
311
|
-
READ_WRITE = "READ_WRITE"
|
|
312
|
-
}
|
|
313
|
-
/**
|
|
314
|
-
* Plan types for subscription tiers
|
|
315
|
-
*/
|
|
316
|
-
declare enum PLAN_TYPE {
|
|
317
|
-
BASIC = "BASIC",
|
|
318
|
-
PRO = "PRO",
|
|
319
|
-
ENTERPRISE = "ENTERPRISE"
|
|
320
|
-
}
|
|
321
|
-
/**
|
|
322
|
-
* Billing interval used for charging (monthly or yearly)
|
|
323
|
-
*/
|
|
324
|
-
declare enum BILLING_INTERVAL {
|
|
325
|
-
MONTHLY = "MONTHLY",
|
|
326
|
-
YEARLY = "YEARLY"
|
|
327
|
-
}
|
|
328
|
-
/**
|
|
329
|
-
* Admission status for student applications
|
|
330
|
-
*/
|
|
331
|
-
declare enum ADMISSION_STATUS {
|
|
332
|
-
PENDING = "PENDING",
|
|
333
|
-
APPROVED = "APPROVED",
|
|
334
|
-
REJECTED = "REJECTED",
|
|
335
|
-
ENROLLED = "ENROLLED",
|
|
336
|
-
CANCELLED = "CANCELLED"
|
|
337
|
-
}
|
|
338
|
-
declare enum FEE_RISK_LEVEL {
|
|
339
|
-
LOW = "LOW",
|
|
340
|
-
MEDIUM = "MEDIUM",
|
|
341
|
-
HIGH = "HIGH"
|
|
342
|
-
}
|
|
343
|
-
declare enum FEE_AGENT_ACTION_TYPE {
|
|
344
|
-
ANALYSIS = "ANALYSIS",
|
|
345
|
-
MESSAGE = "MESSAGE",
|
|
346
|
-
FOLLOW_UP = "FOLLOW_UP",
|
|
347
|
-
RESPONSE = "RESPONSE"
|
|
348
|
-
}
|
|
349
|
-
declare enum FEE_CONVERSATION_SENDER {
|
|
350
|
-
AGENT = "AGENT",
|
|
351
|
-
PARENT = "PARENT"
|
|
352
|
-
}
|
|
353
|
-
declare enum FEE_CONVERSATION_INTENT {
|
|
354
|
-
PROMISE = "PROMISE",
|
|
355
|
-
PAID = "PAID",
|
|
356
|
-
DISPUTE = "DISPUTE",
|
|
357
|
-
UNKNOWN = "UNKNOWN"
|
|
358
|
-
}
|
|
359
|
-
/**
|
|
360
|
-
* Platform of the mobile device registering a push token
|
|
361
|
-
*/
|
|
362
|
-
declare enum DEVICE_PLATFORM {
|
|
363
|
-
IOS = "IOS",
|
|
364
|
-
ANDROID = "ANDROID",
|
|
365
|
-
WEB = "WEB"
|
|
366
|
-
}
|
|
367
|
-
/**
|
|
368
|
-
* Category of a mobile push notification
|
|
369
|
-
*/
|
|
370
|
-
declare enum NOTIFICATION_TYPE {
|
|
371
|
-
ASSIGNMENT = "ASSIGNMENT",
|
|
372
|
-
ATTENDANCE = "ATTENDANCE",
|
|
373
|
-
PAYMENT = "PAYMENT",
|
|
374
|
-
ALERT = "ALERT",
|
|
375
|
-
GENERAL = "GENERAL"
|
|
376
|
-
}
|
|
377
|
-
/**
|
|
378
|
-
* WhatsApp broadcast campaign status
|
|
379
|
-
*/
|
|
380
|
-
declare enum CAMPAIGN_STATUS {
|
|
381
|
-
DRAFT = "DRAFT",
|
|
382
|
-
RUNNING = "RUNNING",
|
|
383
|
-
COMPLETED = "COMPLETED",
|
|
384
|
-
FAILED = "FAILED",
|
|
385
|
-
PAUSED = "PAUSED"
|
|
386
|
-
}
|
|
387
|
-
/**
|
|
388
|
-
* Delivery status for an individual campaign contact
|
|
389
|
-
*/
|
|
390
|
-
declare enum CAMPAIGN_CONTACT_STATUS {
|
|
391
|
-
PENDING = "PENDING",
|
|
392
|
-
SENT = "SENT",
|
|
393
|
-
FAILED = "FAILED",
|
|
394
|
-
SKIPPED = "SKIPPED"
|
|
395
|
-
}
|
|
396
|
-
/**
|
|
397
|
-
* Channel through which a referral invite was sent
|
|
398
|
-
*/
|
|
399
|
-
declare enum REFERRAL_CHANNEL {
|
|
400
|
-
EMAIL = "EMAIL",
|
|
401
|
-
WHATSAPP = "WHATSAPP",
|
|
402
|
-
BOTH = "BOTH"
|
|
403
|
-
}
|
|
404
|
-
/**
|
|
405
|
-
* Status of a school referral invite
|
|
406
|
-
*/
|
|
407
|
-
declare enum REFERRAL_STATUS {
|
|
408
|
-
PENDING = "PENDING",
|
|
409
|
-
SENT = "SENT",
|
|
410
|
-
FAILED = "FAILED"
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
export { ACCESS_LEVEL, ADMISSION_STATUS, ATTENDANCE_STATUS, BILLING_INTERVAL, CAMPAIGN_CONTACT_STATUS, CAMPAIGN_STATUS, CURRENCY, DAY_OF_WEEK, DEVICE_PLATFORM, DISCOUNT_TYPE, EXPENSE_CATEGORY, EXPENSE_STATUS, FAMILY_MEMBER_ROLE, FEE_AGENT_ACTION_TYPE, FEE_CONVERSATION_INTENT, FEE_CONVERSATION_SENDER, FEE_RISK_LEVEL, FEE_TYPE, GENDER, GRADE_TYPE, NOTIFICATION_TYPE, PAYMENT_METHOD, PAYMENT_STATUS, PLAN_TYPE, REFERRAL_CHANNEL, REFERRAL_STATUS, STUDENT_STATUS, USER_ROLE };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var O=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var w=Object.prototype.hasOwnProperty;var y=(G,M)=>{for(var B in M)O(G,B,{get:M[B],enumerable:!0})},z=(G,M,B,I)=>{if(M&&typeof M=="object"||typeof M=="function")for(let A of v(M))!w.call(G,A)&&A!==B&&O(G,A,{get:()=>M[A],enumerable:!(I=s(M,A))||I.enumerable});return G};var $=G=>z(O({},"__esModule",{value:!0}),G);var T={};y(T,{ACCESS_LEVEL:()=>V,ADMISSION_STATUS:()=>b,ATTENDANCE_STATUS:()=>p,BILLING_INTERVAL:()=>a,CAMPAIGN_CONTACT_STATUS:()=>k,CAMPAIGN_STATUS:()=>j,CURRENCY:()=>Q,DAY_OF_WEEK:()=>o,DEVICE_PLATFORM:()=>h,DISCOUNT_TYPE:()=>u,EXPENSE_CATEGORY:()=>J,EXPENSE_STATUS:()=>F,FAMILY_MEMBER_ROLE:()=>m,FEE_AGENT_ACTION_TYPE:()=>d,FEE_CONVERSATION_INTENT:()=>g,FEE_CONVERSATION_SENDER:()=>f,FEE_RISK_LEVEL:()=>c,FEE_TYPE:()=>t,GENDER:()=>n,GRADE_TYPE:()=>r,NOTIFICATION_TYPE:()=>i,PAYMENT_METHOD:()=>Z,PAYMENT_STATUS:()=>x,PLAN_TYPE:()=>X,REFERRAL_CHANNEL:()=>l,REFERRAL_STATUS:()=>q,STUDENT_STATUS:()=>W,USER_ROLE:()=>S});module.exports=$(T);var S=(P=>(P.SUPER_ADMIN="SUPER_ADMIN",P.SCHOOL_ADMIN="SCHOOL_ADMIN",P.TEACHER="TEACHER",P.STUDENT="STUDENT",P.PARENT="PARENT",P.STAFF="STAFF",P))(S||{}),W=(L=>(L.ACTIVE="ACTIVE",L.INACTIVE="INACTIVE",L.GRADUATED="GRADUATED",L.TRANSFERRED="TRANSFERRED",L.DROPPED="DROPPED",L))(W||{}),m=(A=>(A.FATHER="FATHER",A.MOTHER="MOTHER",A.GUARDIAN="GUARDIAN",A.STUDENT="STUDENT",A))(m||{}),n=(A=>(A.MALE="MALE",A.FEMALE="FEMALE",A.OTHER="OTHER",A.PREFER_NOT_TO_SAY="PREFER_NOT_TO_SAY",A))(n||{}),o=(e=>(e.MONDAY="MONDAY",e.TUESDAY="TUESDAY",e.WEDNESDAY="WEDNESDAY",e.THURSDAY="THURSDAY",e.FRIDAY="FRIDAY",e.SATURDAY="SATURDAY",e.SUNDAY="SUNDAY",e))(o||{}),p=(L=>(L.PRESENT="PRESENT",L.ABSENT="ABSENT",L.LATE="LATE",L.EXCUSED="EXCUSED",L.HALF_DAY="HALF_DAY",L))(p||{}),r=(P=>(P.EXAM="EXAM",P.QUIZ="QUIZ",P.ASSIGNMENT="ASSIGNMENT",P.PARTICIPATION="PARTICIPATION",P.PRACTICAL="PRACTICAL",P.PROJECT="PROJECT",P))(r||{}),t=(H=>(H.TUITION="TUITION",H.ADMISSION="ADMISSION",H.EXAM="EXAM",H.LIBRARY="LIBRARY",H.LABORATORY="LABORATORY",H.TRANSPORT="TRANSPORT",H.SPORTS="SPORTS",H.MISCELLANEOUS="MISCELLANEOUS",H.LATE="LATE",H))(t||{}),u=(B=>(B.PERCENTAGE="PERCENTAGE",B.FIXED="FIXED",B))(u||{}),x=(P=>(P.PENDING="PENDING",P.PARTIAL="PARTIAL",P.PAID="PAID",P.OVERDUE="OVERDUE",P.CANCELLED="CANCELLED",P.REFUNDED="REFUNDED",P))(x||{}),Z=(e=>(e.CASH="CASH",e.BANK_TRANSFER="BANK_TRANSFER",e.CREDIT_CARD="CREDIT_CARD",e.DEBIT_CARD="DEBIT_CARD",e.CHEQUE="CHEQUE",e.ONLINE="ONLINE",e.MOBILE_WALLET="MOBILE_WALLET",e))(Z||{}),J=(K=>(K.SALARY="SALARY",K.UTILITIES="UTILITIES",K.MAINTENANCE="MAINTENANCE",K.SUPPLIES="SUPPLIES",K.TRANSPORT="TRANSPORT",K.MARKETING="MARKETING",K.INSURANCE="INSURANCE",K.RENT="RENT",K.TECHNOLOGY="TECHNOLOGY",K.PROFESSIONAL="PROFESSIONAL",K.TRAINING="TRAINING",K.EVENTS="EVENTS",K.FOOD="FOOD",K.MISCELLANEOUS="MISCELLANEOUS",K))(J||{}),F=(L=>(L.PENDING="PENDING",L.APPROVED="APPROVED",L.PAID="PAID",L.REJECTED="REJECTED",L.CANCELLED="CANCELLED",L))(F||{}),Q=(D=>(D.AED="AED",D.AFN="AFN",D.ALL="ALL",D.AMD="AMD",D.ANG="ANG",D.AOA="AOA",D.ARS="ARS",D.AUD="AUD",D.AWG="AWG",D.AZN="AZN",D.BAM="BAM",D.BBD="BBD",D.BDT="BDT",D.BGN="BGN",D.BHD="BHD",D.BIF="BIF",D.BMD="BMD",D.BND="BND",D.BOB="BOB",D.BRL="BRL",D.BSD="BSD",D.BTN="BTN",D.BWP="BWP",D.BYN="BYN",D.BZD="BZD",D.CAD="CAD",D.CDF="CDF",D.CHF="CHF",D.CLP="CLP",D.CNY="CNY",D.COP="COP",D.CRC="CRC",D.CVE="CVE",D.CZK="CZK",D.DJF="DJF",D.DKK="DKK",D.DOP="DOP",D.DZD="DZD",D.EGP="EGP",D.ERN="ERN",D.ETB="ETB",D.EUR="EUR",D.FJD="FJD",D.FKP="FKP",D.GBP="GBP",D.GEL="GEL",D.GHS="GHS",D.GIP="GIP",D.GMD="GMD",D.GNF="GNF",D.GTQ="GTQ",D.GYD="GYD",D.HKD="HKD",D.HNL="HNL",D.HTG="HTG",D.HUF="HUF",D.IDR="IDR",D.ILS="ILS",D.INR="INR",D.IQD="IQD",D.IRR="IRR",D.ISK="ISK",D.JMD="JMD",D.JOD="JOD",D.JPY="JPY",D.KES="KES",D.KGS="KGS",D.KHR="KHR",D.KMF="KMF",D.KPW="KPW",D.KRW="KRW",D.KWD="KWD",D.KYD="KYD",D.KZT="KZT",D.LAK="LAK",D.LBP="LBP",D.LKR="LKR",D.LSL="LSL",D.LYD="LYD",D.MAD="MAD",D.MDL="MDL",D.MGA="MGA",D.MKD="MKD",D.MMK="MMK",D.MNT="MNT",D.MOP="MOP",D.MRU="MRU",D.MUR="MUR",D.MWK="MWK",D.MXN="MXN",D.MYR="MYR",D.MZN="MZN",D.NAD="NAD",D.NGN="NGN",D.NIO="NIO",D.NOK="NOK",D.NPR="NPR",D.NZD="NZD",D.OMR="OMR",D.PAB="PAB",D.PEN="PEN",D.PGK="PGK",D.PHP="PHP",D.PKR="PKR",D.PLN="PLN",D.PYG="PYG",D.QAR="QAR",D.RON="RON",D.RSD="RSD",D.RUB="RUB",D.RWF="RWF",D.SAR="SAR",D.SBD="SBD",D.SCR="SCR",D.SDG="SDG",D.SEK="SEK",D.SGD="SGD",D.SHP="SHP",D.SLL="SLL",D.SOS="SOS",D.SRD="SRD",D.SYP="SYP",D.SZL="SZL",D.THB="THB",D.TJS="TJS",D.TMT="TMT",D.TND="TND",D.TOP="TOP",D.TRY="TRY",D.TTD="TTD",D.TWD="TWD",D.TZS="TZS",D.UAH="UAH",D.UGX="UGX",D.USD="USD",D.UYU="UYU",D.UZS="UZS",D.VES="VES",D.VND="VND",D.VUV="VUV",D.WST="WST",D.XAF="XAF",D.XCD="XCD",D.XOF="XOF",D.XPF="XPF",D.YER="YER",D.ZAR="ZAR",D.ZMW="ZMW",D.ZWL="ZWL",D))(Q||{}),V=(B=>(B.READ="READ",B.READ_WRITE="READ_WRITE",B))(V||{}),X=(I=>(I.BASIC="BASIC",I.PRO="PRO",I.ENTERPRISE="ENTERPRISE",I))(X||{}),a=(B=>(B.MONTHLY="MONTHLY",B.YEARLY="YEARLY",B))(a||{}),b=(L=>(L.PENDING="PENDING",L.APPROVED="APPROVED",L.REJECTED="REJECTED",L.ENROLLED="ENROLLED",L.CANCELLED="CANCELLED",L))(b||{}),c=(I=>(I.LOW="LOW",I.MEDIUM="MEDIUM",I.HIGH="HIGH",I))(c||{}),d=(A=>(A.ANALYSIS="ANALYSIS",A.MESSAGE="MESSAGE",A.FOLLOW_UP="FOLLOW_UP",A.RESPONSE="RESPONSE",A))(d||{}),f=(B=>(B.AGENT="AGENT",B.PARENT="PARENT",B))(f||{}),g=(A=>(A.PROMISE="PROMISE",A.PAID="PAID",A.DISPUTE="DISPUTE",A.UNKNOWN="UNKNOWN",A))(g||{}),h=(I=>(I.IOS="IOS",I.ANDROID="ANDROID",I.WEB="WEB",I))(h||{}),i=(L=>(L.ASSIGNMENT="ASSIGNMENT",L.ATTENDANCE="ATTENDANCE",L.PAYMENT="PAYMENT",L.ALERT="ALERT",L.GENERAL="GENERAL",L))(i||{}),j=(L=>(L.DRAFT="DRAFT",L.RUNNING="RUNNING",L.COMPLETED="COMPLETED",L.FAILED="FAILED",L.PAUSED="PAUSED",L))(j||{}),k=(A=>(A.PENDING="PENDING",A.SENT="SENT",A.FAILED="FAILED",A.SKIPPED="SKIPPED",A))(k||{}),l=(I=>(I.EMAIL="EMAIL",I.WHATSAPP="WHATSAPP",I.BOTH="BOTH",I))(l||{}),q=(I=>(I.PENDING="PENDING",I.SENT="SENT",I.FAILED="FAILED",I))(q||{});0&&(module.exports={ACCESS_LEVEL,ADMISSION_STATUS,ATTENDANCE_STATUS,BILLING_INTERVAL,CAMPAIGN_CONTACT_STATUS,CAMPAIGN_STATUS,CURRENCY,DAY_OF_WEEK,DEVICE_PLATFORM,DISCOUNT_TYPE,EXPENSE_CATEGORY,EXPENSE_STATUS,FAMILY_MEMBER_ROLE,FEE_AGENT_ACTION_TYPE,FEE_CONVERSATION_INTENT,FEE_CONVERSATION_SENDER,FEE_RISK_LEVEL,FEE_TYPE,GENDER,GRADE_TYPE,NOTIFICATION_TYPE,PAYMENT_METHOD,PAYMENT_STATUS,PLAN_TYPE,REFERRAL_CHANNEL,REFERRAL_STATUS,STUDENT_STATUS,USER_ROLE});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var i=Object.defineProperty;var o=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var E=Object.prototype.hasOwnProperty;var a=(e,t,s,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of l(t))!E.call(e,n)&&n!==s&&i(e,n,{get:()=>t[n],enumerable:!(r=o(t,n))||r.enumerable});return e};var u=e=>a(i({},"__esModule",{value:!0}),e);var d={};module.exports=u(d);
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { ACCESS_LEVEL, ADMISSION_STATUS, ATTENDANCE_STATUS, BILLING_INTERVAL, CAMPAIGN_CONTACT_STATUS, CAMPAIGN_STATUS, CURRENCY, DAY_OF_WEEK, DEVICE_PLATFORM, DISCOUNT_TYPE, EXPENSE_CATEGORY, EXPENSE_STATUS, FAMILY_MEMBER_ROLE, FEE_AGENT_ACTION_TYPE, FEE_CONVERSATION_INTENT, FEE_CONVERSATION_SENDER, FEE_RISK_LEVEL, FEE_TYPE, GENDER, GRADE_TYPE, NOTIFICATION_TYPE, PAYMENT_METHOD, PAYMENT_STATUS, PLAN_TYPE, REFERRAL_CHANNEL, REFERRAL_STATUS, STUDENT_STATUS, USER_ROLE } from './enums.js';
|
|
2
|
-
export { AdmissionAIBE, AdmissionBE, AdmissionDetails, A as AttendanceBE, B as BlogCommentBE, c as BlogCommentClapBE, d as BlogPostBE, e as BlogPostClapBE, C as CampaignBE, f as CampaignContactBE, g as CampusBE, o as ClassBE, p as CourseBE, D as DiscountCodeBE, q as EnrollmentBE, E as ExpenseBE, r as FamilyBE, s as FamilyMemberBE, FatherDetails, F as FeeAgentActivityBE, a as FeeConversationBE, b as FeeStructureBE, G as GradeBE, HomeDetails, M as MobileNotificationBE, MotherDetails, N as NotificationPreferenceBE, OfficeUse, P as PermissionBE, h as PlanBE, R as ReferralBE, i as RoleBE, j as RolePermissionBE, t as ScheduleBE, k as SchoolBE, u as SectionBE, StudentDetails, S as StudentFeeBE, v as StudentProfileBE, w as SubjectBE, T as TeacherBE, l as UserBE, U as UserPushTokenBE, W as WorkspaceBE, m as WorkspaceUserBE, n as WorkspaceUserPermissionBE } from './admission.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var a=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var t=(f,e,p,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let m of c(e))!d.call(f,m)&&m!==p&&a(f,m,{get:()=>e[m],enumerable:!(x=b(e,m))||x.enumerable});return f},r=(f,e,p)=>(t(f,e,"default"),p&&t(p,e,"default"));var g=f=>t(a({},"__esModule",{value:!0}),f);var o={};module.exports=g(o);r(o,require("./enums"),module.exports);r(o,require("./admission"),module.exports);r(o,require("./user-management"),module.exports);r(o,require("./academics"),module.exports);r(o,require("./finance"),module.exports);r(o,require("./communication"),module.exports);0&&(module.exports={...require("./enums"),...require("./admission"),...require("./user-management"),...require("./academics"),...require("./finance"),...require("./communication")});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(s,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of a(e))!l.call(s,r)&&r!==o&&t(s,r,{get:()=>e[r],enumerable:!(n=i(e,r))||n.enumerable});return s};var u=s=>c(t({},"__esModule",{value:!0}),s);var d={};module.exports=u(d);
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
declare enum LS_KEYS {
|
|
2
|
-
BANKS = "stellar_banks_cache",
|
|
3
|
-
BRANCHES = "stellar_branches_cache",
|
|
4
|
-
COMPANIES = "stellar_companies_cache",
|
|
5
|
-
CONTACTS = "stellar_contacts_cache",
|
|
6
|
-
CURRENCIES = "stellar_currencies_cache",
|
|
7
|
-
CUSTOMERS = "stellar_customers_cache",
|
|
8
|
-
EXPENSE_CATEGORIES = "stellar_expense_categories_cache",
|
|
9
|
-
EXPENSES = "stellar_expenses_cache",
|
|
10
|
-
PAYMENT_MODES = "stellar_payment_modes_cache",
|
|
11
|
-
PREFERENCES = "stellar_preferences_cache",
|
|
12
|
-
PRODUCT_CATEGORIES = "stellar_product_categories_cache",
|
|
13
|
-
PRODUCTS = "stellar_products_cache",
|
|
14
|
-
TAXES = "stellar_taxes_cache"
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Base entity interface with common audit fields and meta support
|
|
18
|
-
*/
|
|
19
|
-
interface BaseEntity {
|
|
20
|
-
id: string;
|
|
21
|
-
createdAt: Date;
|
|
22
|
-
updatedAt: Date;
|
|
23
|
-
meta?: any;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export { type BaseEntity, LS_KEYS };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var r=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var n=Object.getOwnPropertyNames;var C=Object.prototype.hasOwnProperty;var o=(c,a)=>{for(var s in a)r(c,s,{get:a[s],enumerable:!0})},p=(c,a,s,l)=>{if(a&&typeof a=="object"||typeof a=="function")for(let t of n(a))!C.call(c,t)&&t!==s&&r(c,t,{get:()=>a[t],enumerable:!(l=h(a,t))||l.enumerable});return c};var A=c=>p(r({},"__esModule",{value:!0}),c);var E={};o(E,{LS_KEYS:()=>_});module.exports=A(E);var _=(e=>(e.BANKS="stellar_banks_cache",e.BRANCHES="stellar_branches_cache",e.COMPANIES="stellar_companies_cache",e.CONTACTS="stellar_contacts_cache",e.CURRENCIES="stellar_currencies_cache",e.CUSTOMERS="stellar_customers_cache",e.EXPENSE_CATEGORIES="stellar_expense_categories_cache",e.EXPENSES="stellar_expenses_cache",e.PAYMENT_MODES="stellar_payment_modes_cache",e.PREFERENCES="stellar_preferences_cache",e.PRODUCT_CATEGORIES="stellar_product_categories_cache",e.PRODUCTS="stellar_products_cache",e.TAXES="stellar_taxes_cache",e))(_||{});0&&(module.exports={LS_KEYS});
|