@magmamath/frontend-config 1.7.9 → 1.7.10
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 +65 -1
- package/dist/index.d.ts +65 -1
- package/dist/index.js +311 -843
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +311 -843
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -535,6 +535,25 @@ type StudentsWebCommon = {
|
|
|
535
535
|
TOLGEE_API_KEY?: string;
|
|
536
536
|
};
|
|
537
537
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
538
|
+
type StudentsWebCommonMars = {
|
|
539
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
540
|
+
API_URL: string;
|
|
541
|
+
CDN_HOST: string;
|
|
542
|
+
SOCKET_URL: string;
|
|
543
|
+
WEBSOCKETS_URL: string;
|
|
544
|
+
MAGMAMATH_URL: string;
|
|
545
|
+
GOOGLE_API_KEY: string;
|
|
546
|
+
DESMOS_API_KEY: string;
|
|
547
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
548
|
+
MYSCRIPT_APPLICATION_KEY: string;
|
|
549
|
+
MYSCRIPT_HMAC_KEY: string;
|
|
550
|
+
MYSCRIPT_HOST: string;
|
|
551
|
+
MYSCRIPT_SOCKET_KEY: string;
|
|
552
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
553
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
554
|
+
TOLGEE_API_URL?: string;
|
|
555
|
+
TOLGEE_API_KEY?: string;
|
|
556
|
+
};
|
|
538
557
|
type StudentsWebVarsPreset = {
|
|
539
558
|
[HomeRegion.US_MAIN]: {
|
|
540
559
|
[key in Environment]: StudentsWebVars;
|
|
@@ -563,6 +582,24 @@ type TeachersWebCommon = {
|
|
|
563
582
|
GOOGLE_API_KEY: string;
|
|
564
583
|
};
|
|
565
584
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
585
|
+
type TeachersWebCommonMars = {
|
|
586
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
587
|
+
API_URL: string;
|
|
588
|
+
CDN_HOST: string;
|
|
589
|
+
SOCKET_URL: string;
|
|
590
|
+
WEBSOCKETS_URL: string;
|
|
591
|
+
MAGMAMATH_URL: string;
|
|
592
|
+
MYSCRIPT_HOST: string;
|
|
593
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
594
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
595
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
596
|
+
INTERCOM_APP_ID: string;
|
|
597
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
598
|
+
TOLGEE_API_URL?: string;
|
|
599
|
+
TOLGEE_API_KEY?: string;
|
|
600
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
601
|
+
GOOGLE_API_KEY: string;
|
|
602
|
+
};
|
|
566
603
|
type TeachersWebVarsPreset = {
|
|
567
604
|
[HomeRegion.US_MAIN]: {
|
|
568
605
|
[key in Environment]: TeachersWebVars;
|
|
@@ -586,6 +623,19 @@ type DistrictCommon = {
|
|
|
586
623
|
TOLGEE_API_KEY?: string;
|
|
587
624
|
};
|
|
588
625
|
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
626
|
+
type DistrictCommonMars = {
|
|
627
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
628
|
+
API_URL: string;
|
|
629
|
+
CDN_HOST: string;
|
|
630
|
+
SOCKET_URL: string;
|
|
631
|
+
WEBSOCKETS_URL: string;
|
|
632
|
+
MAGMAMATH_URL: string;
|
|
633
|
+
INTERCOM_APP_ID: string;
|
|
634
|
+
AMPLITUDE_API_KEY?: string;
|
|
635
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
636
|
+
TOLGEE_API_URL?: string;
|
|
637
|
+
TOLGEE_API_KEY?: string;
|
|
638
|
+
};
|
|
589
639
|
type DistrictWebVarsPreset = {
|
|
590
640
|
[HomeRegion.US_MAIN]: {
|
|
591
641
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -612,6 +662,15 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
612
662
|
TOLGEE_API_URL?: string;
|
|
613
663
|
TOLGEE_API_KEY?: string;
|
|
614
664
|
};
|
|
665
|
+
type AuthWebCommonMars = {
|
|
666
|
+
API_URL: string;
|
|
667
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
668
|
+
MAGMAMATH_URL: string;
|
|
669
|
+
TOS_URL: string;
|
|
670
|
+
INTERCOM_APP_ID: string;
|
|
671
|
+
TOLGEE_API_URL?: string;
|
|
672
|
+
TOLGEE_API_KEY?: string;
|
|
673
|
+
};
|
|
615
674
|
type AuthWebEuLocalePreset = {
|
|
616
675
|
[Locale.CA]: {
|
|
617
676
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
@@ -720,6 +779,7 @@ type MobileBaseVars = {
|
|
|
720
779
|
PROBLEM_CREATOR_URL: string;
|
|
721
780
|
} & MobileCommon;
|
|
722
781
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
782
|
+
type MobileCommonMars = MobileCommon & Pick<MobileBaseVars, 'API_URL' | 'CDN_HOST' | 'SOCKET_URL' | 'WEBSOCKETS_URL'>;
|
|
723
783
|
type MobileEuLocalePreset = {
|
|
724
784
|
[Locale.CA]: {
|
|
725
785
|
[key in Environment]: MobileVars<SSO_US>;
|
|
@@ -830,6 +890,10 @@ type ParentWebVars = {
|
|
|
830
890
|
CDN_HOST: string;
|
|
831
891
|
AUTH_WEB_URL: string;
|
|
832
892
|
};
|
|
893
|
+
type ParentWebCommonMars = {
|
|
894
|
+
API_URL: string;
|
|
895
|
+
CDN_HOST: string;
|
|
896
|
+
};
|
|
833
897
|
type ParentWebVarsPreset = {
|
|
834
898
|
[HomeRegion.US_MAIN]: {
|
|
835
899
|
[key in Environment]: ParentWebVars;
|
|
@@ -1183,4 +1247,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1183
1247
|
};
|
|
1184
1248
|
}
|
|
1185
1249
|
|
|
1186
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, HIGH_SCHOOL_STRING_GRADES, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, type ManipulativeOverride, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, type MultiplicationConfig, type MultiplicationGradeRule, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, type NumericGrade, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, getVidisLogoutUrl, isHighSchoolStringGrade };
|
|
1250
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebCommonMars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictCommonMars, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, HIGH_SCHOOL_STRING_GRADES, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, type ManipulativeOverride, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileCommonMars, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, type MultiplicationConfig, type MultiplicationGradeRule, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, type NumericGrade, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebCommonMars, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebCommonMars, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebCommonMars, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, getVidisLogoutUrl, isHighSchoolStringGrade };
|
package/dist/index.d.ts
CHANGED
|
@@ -535,6 +535,25 @@ type StudentsWebCommon = {
|
|
|
535
535
|
TOLGEE_API_KEY?: string;
|
|
536
536
|
};
|
|
537
537
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
538
|
+
type StudentsWebCommonMars = {
|
|
539
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
540
|
+
API_URL: string;
|
|
541
|
+
CDN_HOST: string;
|
|
542
|
+
SOCKET_URL: string;
|
|
543
|
+
WEBSOCKETS_URL: string;
|
|
544
|
+
MAGMAMATH_URL: string;
|
|
545
|
+
GOOGLE_API_KEY: string;
|
|
546
|
+
DESMOS_API_KEY: string;
|
|
547
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
548
|
+
MYSCRIPT_APPLICATION_KEY: string;
|
|
549
|
+
MYSCRIPT_HMAC_KEY: string;
|
|
550
|
+
MYSCRIPT_HOST: string;
|
|
551
|
+
MYSCRIPT_SOCKET_KEY: string;
|
|
552
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
553
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
554
|
+
TOLGEE_API_URL?: string;
|
|
555
|
+
TOLGEE_API_KEY?: string;
|
|
556
|
+
};
|
|
538
557
|
type StudentsWebVarsPreset = {
|
|
539
558
|
[HomeRegion.US_MAIN]: {
|
|
540
559
|
[key in Environment]: StudentsWebVars;
|
|
@@ -563,6 +582,24 @@ type TeachersWebCommon = {
|
|
|
563
582
|
GOOGLE_API_KEY: string;
|
|
564
583
|
};
|
|
565
584
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
585
|
+
type TeachersWebCommonMars = {
|
|
586
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
587
|
+
API_URL: string;
|
|
588
|
+
CDN_HOST: string;
|
|
589
|
+
SOCKET_URL: string;
|
|
590
|
+
WEBSOCKETS_URL: string;
|
|
591
|
+
MAGMAMATH_URL: string;
|
|
592
|
+
MYSCRIPT_HOST: string;
|
|
593
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
594
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
595
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
596
|
+
INTERCOM_APP_ID: string;
|
|
597
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
598
|
+
TOLGEE_API_URL?: string;
|
|
599
|
+
TOLGEE_API_KEY?: string;
|
|
600
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
601
|
+
GOOGLE_API_KEY: string;
|
|
602
|
+
};
|
|
566
603
|
type TeachersWebVarsPreset = {
|
|
567
604
|
[HomeRegion.US_MAIN]: {
|
|
568
605
|
[key in Environment]: TeachersWebVars;
|
|
@@ -586,6 +623,19 @@ type DistrictCommon = {
|
|
|
586
623
|
TOLGEE_API_KEY?: string;
|
|
587
624
|
};
|
|
588
625
|
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
626
|
+
type DistrictCommonMars = {
|
|
627
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
628
|
+
API_URL: string;
|
|
629
|
+
CDN_HOST: string;
|
|
630
|
+
SOCKET_URL: string;
|
|
631
|
+
WEBSOCKETS_URL: string;
|
|
632
|
+
MAGMAMATH_URL: string;
|
|
633
|
+
INTERCOM_APP_ID: string;
|
|
634
|
+
AMPLITUDE_API_KEY?: string;
|
|
635
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
636
|
+
TOLGEE_API_URL?: string;
|
|
637
|
+
TOLGEE_API_KEY?: string;
|
|
638
|
+
};
|
|
589
639
|
type DistrictWebVarsPreset = {
|
|
590
640
|
[HomeRegion.US_MAIN]: {
|
|
591
641
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -612,6 +662,15 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
612
662
|
TOLGEE_API_URL?: string;
|
|
613
663
|
TOLGEE_API_KEY?: string;
|
|
614
664
|
};
|
|
665
|
+
type AuthWebCommonMars = {
|
|
666
|
+
API_URL: string;
|
|
667
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
668
|
+
MAGMAMATH_URL: string;
|
|
669
|
+
TOS_URL: string;
|
|
670
|
+
INTERCOM_APP_ID: string;
|
|
671
|
+
TOLGEE_API_URL?: string;
|
|
672
|
+
TOLGEE_API_KEY?: string;
|
|
673
|
+
};
|
|
615
674
|
type AuthWebEuLocalePreset = {
|
|
616
675
|
[Locale.CA]: {
|
|
617
676
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
@@ -720,6 +779,7 @@ type MobileBaseVars = {
|
|
|
720
779
|
PROBLEM_CREATOR_URL: string;
|
|
721
780
|
} & MobileCommon;
|
|
722
781
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
782
|
+
type MobileCommonMars = MobileCommon & Pick<MobileBaseVars, 'API_URL' | 'CDN_HOST' | 'SOCKET_URL' | 'WEBSOCKETS_URL'>;
|
|
723
783
|
type MobileEuLocalePreset = {
|
|
724
784
|
[Locale.CA]: {
|
|
725
785
|
[key in Environment]: MobileVars<SSO_US>;
|
|
@@ -830,6 +890,10 @@ type ParentWebVars = {
|
|
|
830
890
|
CDN_HOST: string;
|
|
831
891
|
AUTH_WEB_URL: string;
|
|
832
892
|
};
|
|
893
|
+
type ParentWebCommonMars = {
|
|
894
|
+
API_URL: string;
|
|
895
|
+
CDN_HOST: string;
|
|
896
|
+
};
|
|
833
897
|
type ParentWebVarsPreset = {
|
|
834
898
|
[HomeRegion.US_MAIN]: {
|
|
835
899
|
[key in Environment]: ParentWebVars;
|
|
@@ -1183,4 +1247,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1183
1247
|
};
|
|
1184
1248
|
}
|
|
1185
1249
|
|
|
1186
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, HIGH_SCHOOL_STRING_GRADES, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, type ManipulativeOverride, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, type MultiplicationConfig, type MultiplicationGradeRule, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, type NumericGrade, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, getVidisLogoutUrl, isHighSchoolStringGrade };
|
|
1250
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebCommonMars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictCommonMars, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, HIGH_SCHOOL_STRING_GRADES, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, type ManipulativeOverride, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileCommonMars, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, type MultiplicationConfig, type MultiplicationGradeRule, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, type NumericGrade, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebCommonMars, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebCommonMars, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebCommonMars, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, getVidisLogoutUrl, isHighSchoolStringGrade };
|