@magmamath/frontend-config 1.7.6 → 1.7.8
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 +71 -1
- package/dist/index.d.ts +71 -1
- package/dist/index.js +321 -842
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +321 -843
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs.map +1 -1
- package/dist/translation/translation.constants.js.map +1 -1
- package/dist/translation/translation.constants.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -407,6 +407,7 @@ type SSO_DE = {
|
|
|
407
407
|
GOOGLE_AUTH: string;
|
|
408
408
|
MICROSOFT_AUTH: string;
|
|
409
409
|
VIDIS_AUTH: string;
|
|
410
|
+
VIDIS_LOGOUT: string;
|
|
410
411
|
};
|
|
411
412
|
type SSO_PL = {
|
|
412
413
|
GOOGLE_AUTH: string;
|
|
@@ -498,6 +499,11 @@ type SSOByLocale = {
|
|
|
498
499
|
declare const SSO_VIDIS_CONFIG: SSOConfig<SSO_DE & {
|
|
499
500
|
AUTH_WEB_URL: string;
|
|
500
501
|
}>;
|
|
502
|
+
type VidisLogoutParams = {
|
|
503
|
+
idToken: string;
|
|
504
|
+
postLogoutRedirectUri: string;
|
|
505
|
+
};
|
|
506
|
+
declare const getVidisLogoutUrl: (envs: Pick<SSO_DE, "VIDIS_LOGOUT">, { idToken, postLogoutRedirectUri }: VidisLogoutParams) => string;
|
|
501
507
|
|
|
502
508
|
type RegionSpecificVars = {
|
|
503
509
|
API_URL: string;
|
|
@@ -529,6 +535,25 @@ type StudentsWebCommon = {
|
|
|
529
535
|
TOLGEE_API_KEY?: string;
|
|
530
536
|
};
|
|
531
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
|
+
};
|
|
532
557
|
type StudentsWebVarsPreset = {
|
|
533
558
|
[HomeRegion.US_MAIN]: {
|
|
534
559
|
[key in Environment]: StudentsWebVars;
|
|
@@ -557,6 +582,24 @@ type TeachersWebCommon = {
|
|
|
557
582
|
GOOGLE_API_KEY: string;
|
|
558
583
|
};
|
|
559
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
|
+
};
|
|
560
603
|
type TeachersWebVarsPreset = {
|
|
561
604
|
[HomeRegion.US_MAIN]: {
|
|
562
605
|
[key in Environment]: TeachersWebVars;
|
|
@@ -580,6 +623,19 @@ type DistrictCommon = {
|
|
|
580
623
|
TOLGEE_API_KEY?: string;
|
|
581
624
|
};
|
|
582
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
|
+
};
|
|
583
639
|
type DistrictWebVarsPreset = {
|
|
584
640
|
[HomeRegion.US_MAIN]: {
|
|
585
641
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -606,6 +662,15 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
606
662
|
TOLGEE_API_URL?: string;
|
|
607
663
|
TOLGEE_API_KEY?: string;
|
|
608
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
|
+
};
|
|
609
674
|
type AuthWebEuLocalePreset = {
|
|
610
675
|
[Locale.CA]: {
|
|
611
676
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
@@ -714,6 +779,7 @@ type MobileBaseVars = {
|
|
|
714
779
|
PROBLEM_CREATOR_URL: string;
|
|
715
780
|
} & MobileCommon;
|
|
716
781
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
782
|
+
type MobileCommonMars = MobileCommon & Pick<MobileBaseVars, 'API_URL' | 'CDN_HOST' | 'SOCKET_URL' | 'WEBSOCKETS_URL'>;
|
|
717
783
|
type MobileEuLocalePreset = {
|
|
718
784
|
[Locale.CA]: {
|
|
719
785
|
[key in Environment]: MobileVars<SSO_US>;
|
|
@@ -824,6 +890,10 @@ type ParentWebVars = {
|
|
|
824
890
|
CDN_HOST: string;
|
|
825
891
|
AUTH_WEB_URL: string;
|
|
826
892
|
};
|
|
893
|
+
type ParentWebCommonMars = {
|
|
894
|
+
API_URL: string;
|
|
895
|
+
CDN_HOST: string;
|
|
896
|
+
};
|
|
827
897
|
type ParentWebVarsPreset = {
|
|
828
898
|
[HomeRegion.US_MAIN]: {
|
|
829
899
|
[key in Environment]: ParentWebVars;
|
|
@@ -1177,4 +1247,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1177
1247
|
};
|
|
1178
1248
|
}
|
|
1179
1249
|
|
|
1180
|
-
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, 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
|
@@ -407,6 +407,7 @@ type SSO_DE = {
|
|
|
407
407
|
GOOGLE_AUTH: string;
|
|
408
408
|
MICROSOFT_AUTH: string;
|
|
409
409
|
VIDIS_AUTH: string;
|
|
410
|
+
VIDIS_LOGOUT: string;
|
|
410
411
|
};
|
|
411
412
|
type SSO_PL = {
|
|
412
413
|
GOOGLE_AUTH: string;
|
|
@@ -498,6 +499,11 @@ type SSOByLocale = {
|
|
|
498
499
|
declare const SSO_VIDIS_CONFIG: SSOConfig<SSO_DE & {
|
|
499
500
|
AUTH_WEB_URL: string;
|
|
500
501
|
}>;
|
|
502
|
+
type VidisLogoutParams = {
|
|
503
|
+
idToken: string;
|
|
504
|
+
postLogoutRedirectUri: string;
|
|
505
|
+
};
|
|
506
|
+
declare const getVidisLogoutUrl: (envs: Pick<SSO_DE, "VIDIS_LOGOUT">, { idToken, postLogoutRedirectUri }: VidisLogoutParams) => string;
|
|
501
507
|
|
|
502
508
|
type RegionSpecificVars = {
|
|
503
509
|
API_URL: string;
|
|
@@ -529,6 +535,25 @@ type StudentsWebCommon = {
|
|
|
529
535
|
TOLGEE_API_KEY?: string;
|
|
530
536
|
};
|
|
531
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
|
+
};
|
|
532
557
|
type StudentsWebVarsPreset = {
|
|
533
558
|
[HomeRegion.US_MAIN]: {
|
|
534
559
|
[key in Environment]: StudentsWebVars;
|
|
@@ -557,6 +582,24 @@ type TeachersWebCommon = {
|
|
|
557
582
|
GOOGLE_API_KEY: string;
|
|
558
583
|
};
|
|
559
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
|
+
};
|
|
560
603
|
type TeachersWebVarsPreset = {
|
|
561
604
|
[HomeRegion.US_MAIN]: {
|
|
562
605
|
[key in Environment]: TeachersWebVars;
|
|
@@ -580,6 +623,19 @@ type DistrictCommon = {
|
|
|
580
623
|
TOLGEE_API_KEY?: string;
|
|
581
624
|
};
|
|
582
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
|
+
};
|
|
583
639
|
type DistrictWebVarsPreset = {
|
|
584
640
|
[HomeRegion.US_MAIN]: {
|
|
585
641
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -606,6 +662,15 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
606
662
|
TOLGEE_API_URL?: string;
|
|
607
663
|
TOLGEE_API_KEY?: string;
|
|
608
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
|
+
};
|
|
609
674
|
type AuthWebEuLocalePreset = {
|
|
610
675
|
[Locale.CA]: {
|
|
611
676
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
@@ -714,6 +779,7 @@ type MobileBaseVars = {
|
|
|
714
779
|
PROBLEM_CREATOR_URL: string;
|
|
715
780
|
} & MobileCommon;
|
|
716
781
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
782
|
+
type MobileCommonMars = MobileCommon & Pick<MobileBaseVars, 'API_URL' | 'CDN_HOST' | 'SOCKET_URL' | 'WEBSOCKETS_URL'>;
|
|
717
783
|
type MobileEuLocalePreset = {
|
|
718
784
|
[Locale.CA]: {
|
|
719
785
|
[key in Environment]: MobileVars<SSO_US>;
|
|
@@ -824,6 +890,10 @@ type ParentWebVars = {
|
|
|
824
890
|
CDN_HOST: string;
|
|
825
891
|
AUTH_WEB_URL: string;
|
|
826
892
|
};
|
|
893
|
+
type ParentWebCommonMars = {
|
|
894
|
+
API_URL: string;
|
|
895
|
+
CDN_HOST: string;
|
|
896
|
+
};
|
|
827
897
|
type ParentWebVarsPreset = {
|
|
828
898
|
[HomeRegion.US_MAIN]: {
|
|
829
899
|
[key in Environment]: ParentWebVars;
|
|
@@ -1177,4 +1247,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1177
1247
|
};
|
|
1178
1248
|
}
|
|
1179
1249
|
|
|
1180
|
-
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, 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 };
|