catchup-library-web 1.21.18 → 1.21.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/utilization/ManagementUtilization.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -845,7 +845,7 @@ declare const filterCoterieTypeByDistinctOptionList: (distinctCoterieTypeOptionL
|
|
|
845
845
|
}[];
|
|
846
846
|
declare const findAISettingsFromCurrentProfile: (userProfileBrand: any, userProfileCampus: any, userProfileInstitution: any) => any;
|
|
847
847
|
declare const formatPriceWithCommas: (number: number, language: string) => string;
|
|
848
|
-
declare const retrieveInstitutionTypeByLevel: (level: number) => "
|
|
848
|
+
declare const retrieveInstitutionTypeByLevel: (level: number) => "EAST_PRIMARY" | "EAST_SECONDARY" | "HIGH_SCHOOL" | undefined;
|
|
849
849
|
|
|
850
850
|
declare const retrieveAnnouncementTypeOptionList: () => {
|
|
851
851
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -845,7 +845,7 @@ declare const filterCoterieTypeByDistinctOptionList: (distinctCoterieTypeOptionL
|
|
|
845
845
|
}[];
|
|
846
846
|
declare const findAISettingsFromCurrentProfile: (userProfileBrand: any, userProfileCampus: any, userProfileInstitution: any) => any;
|
|
847
847
|
declare const formatPriceWithCommas: (number: number, language: string) => string;
|
|
848
|
-
declare const retrieveInstitutionTypeByLevel: (level: number) => "
|
|
848
|
+
declare const retrieveInstitutionTypeByLevel: (level: number) => "EAST_PRIMARY" | "EAST_SECONDARY" | "HIGH_SCHOOL" | undefined;
|
|
849
849
|
|
|
850
850
|
declare const retrieveAnnouncementTypeOptionList: () => {
|
|
851
851
|
value: string;
|
package/dist/index.js
CHANGED
|
@@ -9361,9 +9361,9 @@ var formatPriceWithCommas = (number, language) => {
|
|
|
9361
9361
|
};
|
|
9362
9362
|
var retrieveInstitutionTypeByLevel = (level) => {
|
|
9363
9363
|
if (level < 5) {
|
|
9364
|
-
return "
|
|
9364
|
+
return "EAST_PRIMARY";
|
|
9365
9365
|
} else if (level < 9) {
|
|
9366
|
-
return "
|
|
9366
|
+
return "EAST_SECONDARY";
|
|
9367
9367
|
} else if (level < 13) {
|
|
9368
9368
|
return "HIGH_SCHOOL";
|
|
9369
9369
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -9140,9 +9140,9 @@ var formatPriceWithCommas = (number, language) => {
|
|
|
9140
9140
|
};
|
|
9141
9141
|
var retrieveInstitutionTypeByLevel = (level) => {
|
|
9142
9142
|
if (level < 5) {
|
|
9143
|
-
return "
|
|
9143
|
+
return "EAST_PRIMARY";
|
|
9144
9144
|
} else if (level < 9) {
|
|
9145
|
-
return "
|
|
9145
|
+
return "EAST_SECONDARY";
|
|
9146
9146
|
} else if (level < 13) {
|
|
9147
9147
|
return "HIGH_SCHOOL";
|
|
9148
9148
|
}
|
package/package.json
CHANGED
|
@@ -1223,9 +1223,9 @@ export const formatPriceWithCommas = (number: number, language: string) => {
|
|
|
1223
1223
|
|
|
1224
1224
|
export const retrieveInstitutionTypeByLevel = (level: number) => {
|
|
1225
1225
|
if (level < 5) {
|
|
1226
|
-
return "
|
|
1226
|
+
return "EAST_PRIMARY";
|
|
1227
1227
|
} else if (level < 9) {
|
|
1228
|
-
return "
|
|
1228
|
+
return "EAST_SECONDARY";
|
|
1229
1229
|
} else if (level < 13) {
|
|
1230
1230
|
return "HIGH_SCHOOL";
|
|
1231
1231
|
}
|