@magmamath/frontend-config 1.1.2-rc.4 → 1.1.2-rc.6
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 +23 -8
- package/dist/index.d.ts +23 -8
- package/dist/index.js +85 -59
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +85 -60
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -159,10 +159,10 @@ declare enum NumberDecimalSeparator {
|
|
|
159
159
|
COMMA = ","
|
|
160
160
|
}
|
|
161
161
|
declare enum NumberGroupingSeparator {
|
|
162
|
-
SPACE = "
|
|
163
|
-
COMMA = "
|
|
164
|
-
DOT = "
|
|
165
|
-
APOSTROPHE = "
|
|
162
|
+
SPACE = " ",
|
|
163
|
+
COMMA = ",",
|
|
164
|
+
DOT = ".",
|
|
165
|
+
APOSTROPHE = "'"
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
declare enum TTSOverrideSymbol {
|
|
@@ -399,6 +399,8 @@ type StudentsWebCommon = {
|
|
|
399
399
|
MYSCRIPT_SOCKET_KEY: string;
|
|
400
400
|
MYSCRIPT_REST_APP_KEY: string;
|
|
401
401
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
402
|
+
TOLGEE_API_URL?: string;
|
|
403
|
+
TOLGEE_API_KEY?: string;
|
|
402
404
|
};
|
|
403
405
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
404
406
|
type StudentsWebVarsPreset = {
|
|
@@ -416,6 +418,8 @@ type TeachersWebCommon = {
|
|
|
416
418
|
INTERCOM_APP_ID: string;
|
|
417
419
|
CLARITY_PROJECT_ID: string;
|
|
418
420
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
421
|
+
TOLGEE_API_URL?: string;
|
|
422
|
+
TOLGEE_API_KEY?: string;
|
|
419
423
|
};
|
|
420
424
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
421
425
|
type TeachersWebVarsPreset = {
|
|
@@ -429,6 +433,8 @@ type DistrictCommon = {
|
|
|
429
433
|
INTERCOM_APP_ID: string;
|
|
430
434
|
CLARITY_PROJECT_ID: string;
|
|
431
435
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
436
|
+
TOLGEE_API_URL?: string;
|
|
437
|
+
TOLGEE_API_KEY?: string;
|
|
432
438
|
};
|
|
433
439
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
434
440
|
type DistrictWebVarsPreset = {
|
|
@@ -479,8 +485,8 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
479
485
|
TOS_URL: string;
|
|
480
486
|
CLARITY_PROJECT_ID: string;
|
|
481
487
|
INTERCOM_APP_ID: string;
|
|
482
|
-
TOLGEE_API_URL
|
|
483
|
-
TOLGEE_API_KEY
|
|
488
|
+
TOLGEE_API_URL?: string;
|
|
489
|
+
TOLGEE_API_KEY?: string;
|
|
484
490
|
};
|
|
485
491
|
type AuthWebVarsPreset = {
|
|
486
492
|
[Locale.CA]: {
|
|
@@ -554,7 +560,6 @@ type MobileVarsPreset = {
|
|
|
554
560
|
type RegionSpecificWebAdminVars = {
|
|
555
561
|
API_URL: string;
|
|
556
562
|
CDN_HOST: string;
|
|
557
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
558
563
|
STUDENTS_WEB_URL: string;
|
|
559
564
|
DISTRICT_WEB_URL: string;
|
|
560
565
|
TEACHERS_WEB_URL: string;
|
|
@@ -598,6 +603,15 @@ declare enum KeyboardTimeVariant {
|
|
|
598
603
|
H24 = "H24"
|
|
599
604
|
}
|
|
600
605
|
|
|
606
|
+
declare enum DrawboardCoinVariant {
|
|
607
|
+
DEFAULT = "default",
|
|
608
|
+
US = "us",
|
|
609
|
+
EURO = "euro",
|
|
610
|
+
CA = "ca",
|
|
611
|
+
UK = "uk",
|
|
612
|
+
SE = "se"
|
|
613
|
+
}
|
|
614
|
+
|
|
601
615
|
type KeyboardConfig = {
|
|
602
616
|
preset: KeyboardPreset;
|
|
603
617
|
currencyVariant: KeyboardCurrencyVariant;
|
|
@@ -616,6 +630,7 @@ type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
|
616
630
|
keyboard: KeyboardConfig;
|
|
617
631
|
drawboard: {
|
|
618
632
|
basicManipulativesMaxGrade: number;
|
|
633
|
+
coinVariant: DrawboardCoinVariant;
|
|
619
634
|
};
|
|
620
635
|
exampleSolutions: {
|
|
621
636
|
languageName: string;
|
|
@@ -854,4 +869,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
854
869
|
};
|
|
855
870
|
}
|
|
856
871
|
|
|
857
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
|
872
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -159,10 +159,10 @@ declare enum NumberDecimalSeparator {
|
|
|
159
159
|
COMMA = ","
|
|
160
160
|
}
|
|
161
161
|
declare enum NumberGroupingSeparator {
|
|
162
|
-
SPACE = "
|
|
163
|
-
COMMA = "
|
|
164
|
-
DOT = "
|
|
165
|
-
APOSTROPHE = "
|
|
162
|
+
SPACE = " ",
|
|
163
|
+
COMMA = ",",
|
|
164
|
+
DOT = ".",
|
|
165
|
+
APOSTROPHE = "'"
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
declare enum TTSOverrideSymbol {
|
|
@@ -399,6 +399,8 @@ type StudentsWebCommon = {
|
|
|
399
399
|
MYSCRIPT_SOCKET_KEY: string;
|
|
400
400
|
MYSCRIPT_REST_APP_KEY: string;
|
|
401
401
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
402
|
+
TOLGEE_API_URL?: string;
|
|
403
|
+
TOLGEE_API_KEY?: string;
|
|
402
404
|
};
|
|
403
405
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
404
406
|
type StudentsWebVarsPreset = {
|
|
@@ -416,6 +418,8 @@ type TeachersWebCommon = {
|
|
|
416
418
|
INTERCOM_APP_ID: string;
|
|
417
419
|
CLARITY_PROJECT_ID: string;
|
|
418
420
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
421
|
+
TOLGEE_API_URL?: string;
|
|
422
|
+
TOLGEE_API_KEY?: string;
|
|
419
423
|
};
|
|
420
424
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
421
425
|
type TeachersWebVarsPreset = {
|
|
@@ -429,6 +433,8 @@ type DistrictCommon = {
|
|
|
429
433
|
INTERCOM_APP_ID: string;
|
|
430
434
|
CLARITY_PROJECT_ID: string;
|
|
431
435
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
436
|
+
TOLGEE_API_URL?: string;
|
|
437
|
+
TOLGEE_API_KEY?: string;
|
|
432
438
|
};
|
|
433
439
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
434
440
|
type DistrictWebVarsPreset = {
|
|
@@ -479,8 +485,8 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
479
485
|
TOS_URL: string;
|
|
480
486
|
CLARITY_PROJECT_ID: string;
|
|
481
487
|
INTERCOM_APP_ID: string;
|
|
482
|
-
TOLGEE_API_URL
|
|
483
|
-
TOLGEE_API_KEY
|
|
488
|
+
TOLGEE_API_URL?: string;
|
|
489
|
+
TOLGEE_API_KEY?: string;
|
|
484
490
|
};
|
|
485
491
|
type AuthWebVarsPreset = {
|
|
486
492
|
[Locale.CA]: {
|
|
@@ -554,7 +560,6 @@ type MobileVarsPreset = {
|
|
|
554
560
|
type RegionSpecificWebAdminVars = {
|
|
555
561
|
API_URL: string;
|
|
556
562
|
CDN_HOST: string;
|
|
557
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
558
563
|
STUDENTS_WEB_URL: string;
|
|
559
564
|
DISTRICT_WEB_URL: string;
|
|
560
565
|
TEACHERS_WEB_URL: string;
|
|
@@ -598,6 +603,15 @@ declare enum KeyboardTimeVariant {
|
|
|
598
603
|
H24 = "H24"
|
|
599
604
|
}
|
|
600
605
|
|
|
606
|
+
declare enum DrawboardCoinVariant {
|
|
607
|
+
DEFAULT = "default",
|
|
608
|
+
US = "us",
|
|
609
|
+
EURO = "euro",
|
|
610
|
+
CA = "ca",
|
|
611
|
+
UK = "uk",
|
|
612
|
+
SE = "se"
|
|
613
|
+
}
|
|
614
|
+
|
|
601
615
|
type KeyboardConfig = {
|
|
602
616
|
preset: KeyboardPreset;
|
|
603
617
|
currencyVariant: KeyboardCurrencyVariant;
|
|
@@ -616,6 +630,7 @@ type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
|
616
630
|
keyboard: KeyboardConfig;
|
|
617
631
|
drawboard: {
|
|
618
632
|
basicManipulativesMaxGrade: number;
|
|
633
|
+
coinVariant: DrawboardCoinVariant;
|
|
619
634
|
};
|
|
620
635
|
exampleSolutions: {
|
|
621
636
|
languageName: string;
|
|
@@ -854,4 +869,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
854
869
|
};
|
|
855
870
|
}
|
|
856
871
|
|
|
857
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
|
872
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
package/dist/index.js
CHANGED
|
@@ -183,10 +183,10 @@ var NumberDecimalSeparator = /* @__PURE__ */ ((NumberDecimalSeparator2) => {
|
|
|
183
183
|
return NumberDecimalSeparator2;
|
|
184
184
|
})(NumberDecimalSeparator || {});
|
|
185
185
|
var NumberGroupingSeparator = /* @__PURE__ */ ((NumberGroupingSeparator2) => {
|
|
186
|
-
NumberGroupingSeparator2["SPACE"] = "
|
|
187
|
-
NumberGroupingSeparator2["COMMA"] = "
|
|
188
|
-
NumberGroupingSeparator2["DOT"] = "
|
|
189
|
-
NumberGroupingSeparator2["APOSTROPHE"] = "
|
|
186
|
+
NumberGroupingSeparator2["SPACE"] = " ";
|
|
187
|
+
NumberGroupingSeparator2["COMMA"] = ",";
|
|
188
|
+
NumberGroupingSeparator2["DOT"] = ".";
|
|
189
|
+
NumberGroupingSeparator2["APOSTROPHE"] = "'";
|
|
190
190
|
return NumberGroupingSeparator2;
|
|
191
191
|
})(NumberGroupingSeparator || {});
|
|
192
192
|
|
|
@@ -938,6 +938,17 @@ var KeyboardTimeVariant = /* @__PURE__ */ ((KeyboardTimeVariant2) => {
|
|
|
938
938
|
return KeyboardTimeVariant2;
|
|
939
939
|
})(KeyboardTimeVariant || {});
|
|
940
940
|
|
|
941
|
+
// src/shared/constants/drawboard.constants.ts
|
|
942
|
+
var DrawboardCoinVariant = /* @__PURE__ */ ((DrawboardCoinVariant2) => {
|
|
943
|
+
DrawboardCoinVariant2["DEFAULT"] = "default";
|
|
944
|
+
DrawboardCoinVariant2["US"] = "us";
|
|
945
|
+
DrawboardCoinVariant2["EURO"] = "euro";
|
|
946
|
+
DrawboardCoinVariant2["CA"] = "ca";
|
|
947
|
+
DrawboardCoinVariant2["UK"] = "uk";
|
|
948
|
+
DrawboardCoinVariant2["SE"] = "se";
|
|
949
|
+
return DrawboardCoinVariant2;
|
|
950
|
+
})(DrawboardCoinVariant || {});
|
|
951
|
+
|
|
941
952
|
// src/shared/constants/problemCreatorKeyboard.constants.ts
|
|
942
953
|
var ProblemCreatorKeyboardPreset = /* @__PURE__ */ ((ProblemCreatorKeyboardPreset2) => {
|
|
943
954
|
ProblemCreatorKeyboardPreset2["DOT_MIXED"] = "DotMixed";
|
|
@@ -1018,9 +1029,7 @@ var ENV_AUTH_WEB_US_PROD = {
|
|
|
1018
1029
|
CLASS_LINK_AUTH: "https://api.magmamath.com/v2/auth/edlink-classlink",
|
|
1019
1030
|
SCHOOLOGY_AUTH: "https://api.magmamath.com/v2/auth/edlink",
|
|
1020
1031
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1021
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1022
|
-
TOLGEE_API_URL: "",
|
|
1023
|
-
TOLGEE_API_KEY: ""
|
|
1032
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1024
1033
|
};
|
|
1025
1034
|
|
|
1026
1035
|
// src/configs/env/auth-web/se/env.se.mars.ts
|
|
@@ -1058,9 +1067,7 @@ var ENV_AUTH_WEB_SE_PROD = {
|
|
|
1058
1067
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/prod/ds/?entityID=https://matteappen.se",
|
|
1059
1068
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1060
1069
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1061
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1062
|
-
TOLGEE_API_URL: "",
|
|
1063
|
-
TOLGEE_API_KEY: ""
|
|
1070
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1064
1071
|
};
|
|
1065
1072
|
|
|
1066
1073
|
// src/configs/env/auth-web/gb/env.gb.mars.ts
|
|
@@ -1094,9 +1101,7 @@ var ENV_AUTH_WEB_GB_PROD = {
|
|
|
1094
1101
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1095
1102
|
WONDE_AUTH: "https://api.magmamath.com/v2/auth/mylogin",
|
|
1096
1103
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1097
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1098
|
-
TOLGEE_API_URL: "",
|
|
1099
|
-
TOLGEE_API_KEY: ""
|
|
1104
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1100
1105
|
};
|
|
1101
1106
|
|
|
1102
1107
|
// src/configs/env/auth-web/ca/env.ca.mars.ts
|
|
@@ -1132,9 +1137,7 @@ var ENV_AUTH_WEB_CA_PROD = {
|
|
|
1132
1137
|
CLASS_LINK_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink-classlink",
|
|
1133
1138
|
SCHOOLOGY_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink",
|
|
1134
1139
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1135
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1136
|
-
TOLGEE_API_URL: "",
|
|
1137
|
-
TOLGEE_API_KEY: ""
|
|
1140
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1138
1141
|
};
|
|
1139
1142
|
|
|
1140
1143
|
// src/configs/env/auth-web/sct/env.sct.mars.ts
|
|
@@ -1182,7 +1185,9 @@ var ENV_STUDENTS_COMMON_MARS = {
|
|
|
1182
1185
|
MYSCRIPT_HOST: "myscript-mars-iink.matteappen.se",
|
|
1183
1186
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
1184
1187
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1185
|
-
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a"
|
|
1188
|
+
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
1189
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1190
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1186
1191
|
};
|
|
1187
1192
|
|
|
1188
1193
|
// src/configs/env/students-web/us/env.us.mars.ts
|
|
@@ -1356,7 +1361,9 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1356
1361
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1357
1362
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1358
1363
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1359
|
-
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0"
|
|
1364
|
+
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1365
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1366
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1360
1367
|
};
|
|
1361
1368
|
|
|
1362
1369
|
// src/configs/env/teachers-web/us/env.us.mars.ts
|
|
@@ -1524,7 +1531,9 @@ var ENV_DISTRICT_COMMON_MARS = {
|
|
|
1524
1531
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1525
1532
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1526
1533
|
CLARITY_PROJECT_ID: "rb6vbwug3r",
|
|
1527
|
-
PROBLEM_IMAGE_SIZE_LIMIT: 5242880
|
|
1534
|
+
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1535
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1536
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1528
1537
|
};
|
|
1529
1538
|
|
|
1530
1539
|
// src/configs/env/district-dash/us/env.us.mars.ts
|
|
@@ -1684,9 +1693,7 @@ var ENV_AUTH_WEB_SCT_PROD = {
|
|
|
1684
1693
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1685
1694
|
WONDE_AUTH: "https://api.magmamath.com/v2/auth/mylogin",
|
|
1686
1695
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1687
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1688
|
-
TOLGEE_API_URL: "",
|
|
1689
|
-
TOLGEE_API_KEY: ""
|
|
1696
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1690
1697
|
};
|
|
1691
1698
|
|
|
1692
1699
|
// src/configs/env/auth-web/de/env.de.prod.ts
|
|
@@ -1700,9 +1707,7 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
1700
1707
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
1701
1708
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
1702
1709
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1703
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1704
|
-
TOLGEE_API_URL: "",
|
|
1705
|
-
TOLGEE_API_KEY: ""
|
|
1710
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1706
1711
|
};
|
|
1707
1712
|
|
|
1708
1713
|
// src/configs/env/auth-web/us/env.us.venus.ts
|
|
@@ -1888,8 +1893,7 @@ var ENV_WEB_ADMIN_US_MARS = {
|
|
|
1888
1893
|
...ENV_WEB_ADMIN_COMMON,
|
|
1889
1894
|
...PLATFORM_URLS.MARS,
|
|
1890
1895
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1891
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1892
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1896
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1893
1897
|
};
|
|
1894
1898
|
|
|
1895
1899
|
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
@@ -1897,8 +1901,7 @@ var ENV_WEB_ADMIN_US_PROD = {
|
|
|
1897
1901
|
...ENV_WEB_ADMIN_COMMON,
|
|
1898
1902
|
...PLATFORM_URLS.PROD,
|
|
1899
1903
|
API_URL: "https://api.magmamath.com/v2",
|
|
1900
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1901
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1904
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1902
1905
|
};
|
|
1903
1906
|
|
|
1904
1907
|
// src/configs/env/web-admin/se/env.se.mars.ts
|
|
@@ -1908,8 +1911,7 @@ var ENV_WEB_ADMIN_SE_MARS = {
|
|
|
1908
1911
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1909
1912
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
1910
1913
|
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1911
|
-
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1912
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
1914
|
+
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1913
1915
|
};
|
|
1914
1916
|
|
|
1915
1917
|
// src/configs/env/web-admin/se/env.se.prod.ts
|
|
@@ -1919,8 +1921,7 @@ var ENV_WEB_ADMIN_SE_PROD = {
|
|
|
1919
1921
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1920
1922
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
1921
1923
|
API_URL: "https://api.matteappen.se/v2",
|
|
1922
|
-
CDN_HOST: "https://cdn.matteappen.se"
|
|
1923
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
1924
|
+
CDN_HOST: "https://cdn.matteappen.se"
|
|
1924
1925
|
};
|
|
1925
1926
|
|
|
1926
1927
|
// src/configs/env/web-admin/de/env.de.mars.ts
|
|
@@ -1928,8 +1929,7 @@ var ENV_WEB_ADMIN_DE_MARS = {
|
|
|
1928
1929
|
...ENV_WEB_ADMIN_COMMON,
|
|
1929
1930
|
...PLATFORM_URLS.MARS,
|
|
1930
1931
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1931
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1932
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1932
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1933
1933
|
};
|
|
1934
1934
|
|
|
1935
1935
|
// src/configs/env/web-admin/de/env.de.prod.ts
|
|
@@ -1937,8 +1937,7 @@ var ENV_WEB_ADMIN_DE_PROD = {
|
|
|
1937
1937
|
...ENV_WEB_ADMIN_COMMON,
|
|
1938
1938
|
...PLATFORM_URLS.PROD,
|
|
1939
1939
|
API_URL: "https://api.magmamath.com/v2",
|
|
1940
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1941
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1940
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1942
1941
|
};
|
|
1943
1942
|
|
|
1944
1943
|
// src/configs/env/web-admin/sct/env.sct.mars.ts
|
|
@@ -1946,8 +1945,7 @@ var ENV_WEB_ADMIN_SCT_MARS = {
|
|
|
1946
1945
|
...ENV_WEB_ADMIN_COMMON,
|
|
1947
1946
|
...PLATFORM_URLS.MARS,
|
|
1948
1947
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1949
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1950
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1948
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1951
1949
|
};
|
|
1952
1950
|
|
|
1953
1951
|
// src/configs/env/web-admin/sct/env.sct.prod.ts
|
|
@@ -1955,8 +1953,7 @@ var ENV_WEB_ADMIN_SCT_PROD = {
|
|
|
1955
1953
|
...ENV_WEB_ADMIN_COMMON,
|
|
1956
1954
|
...PLATFORM_URLS.PROD,
|
|
1957
1955
|
API_URL: "https://api.magmamath.com/v2",
|
|
1958
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1959
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1956
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1960
1957
|
};
|
|
1961
1958
|
|
|
1962
1959
|
// src/configs/env/web-admin/gb/env.gb.mars.ts
|
|
@@ -1964,8 +1961,7 @@ var ENV_WEB_ADMIN_GB_MARS = {
|
|
|
1964
1961
|
...ENV_WEB_ADMIN_COMMON,
|
|
1965
1962
|
...PLATFORM_URLS.MARS,
|
|
1966
1963
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1967
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1968
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1964
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1969
1965
|
};
|
|
1970
1966
|
|
|
1971
1967
|
// src/configs/env/web-admin/gb/env.gb.prod.ts
|
|
@@ -1973,8 +1969,7 @@ var ENV_WEB_ADMIN_GB_PROD = {
|
|
|
1973
1969
|
...ENV_WEB_ADMIN_COMMON,
|
|
1974
1970
|
...PLATFORM_URLS.PROD,
|
|
1975
1971
|
API_URL: "https://api.magmamath.com/v2",
|
|
1976
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1977
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1972
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1978
1973
|
};
|
|
1979
1974
|
|
|
1980
1975
|
// src/configs/env/web-admin/ca/env.ca.mars.ts
|
|
@@ -1982,8 +1977,7 @@ var ENV_WEB_ADMIN_CA_MARS = {
|
|
|
1982
1977
|
...ENV_WEB_ADMIN_COMMON,
|
|
1983
1978
|
...PLATFORM_URLS.MARS,
|
|
1984
1979
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1985
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1986
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1980
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1987
1981
|
};
|
|
1988
1982
|
|
|
1989
1983
|
// src/configs/env/web-admin/ca/env.ca.prod.ts
|
|
@@ -1991,8 +1985,7 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
1991
1985
|
...ENV_WEB_ADMIN_COMMON,
|
|
1992
1986
|
...PLATFORM_URLS.PROD,
|
|
1993
1987
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1994
|
-
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
1995
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1988
|
+
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
1996
1989
|
};
|
|
1997
1990
|
|
|
1998
1991
|
// src/configs/env/mobile/env.common.mars.ts
|
|
@@ -2672,7 +2665,7 @@ var LOCALE_COMMON_US = {
|
|
|
2672
2665
|
date: DATE_CONFIG_US,
|
|
2673
2666
|
grades: GRADES_CONFIG_US,
|
|
2674
2667
|
numberFormatting: {
|
|
2675
|
-
groupingSeparator: "
|
|
2668
|
+
groupingSeparator: "," /* COMMA */,
|
|
2676
2669
|
decimalSeparator: "." /* DOT */
|
|
2677
2670
|
},
|
|
2678
2671
|
mathSymbols: {
|
|
@@ -2706,7 +2699,8 @@ var LOCALE_STUDENTS_US = {
|
|
|
2706
2699
|
timeVariant: "H12" /* H12 */
|
|
2707
2700
|
},
|
|
2708
2701
|
drawboard: {
|
|
2709
|
-
basicManipulativesMaxGrade: 5
|
|
2702
|
+
basicManipulativesMaxGrade: 5,
|
|
2703
|
+
coinVariant: "us" /* US */
|
|
2710
2704
|
},
|
|
2711
2705
|
myScript: {
|
|
2712
2706
|
enableSolver: false
|
|
@@ -2727,7 +2721,7 @@ var LOCALE_COMMON_SE = {
|
|
|
2727
2721
|
date: DATE_CONFIG_SE,
|
|
2728
2722
|
grades: GRADES_CONFIG_SE,
|
|
2729
2723
|
numberFormatting: {
|
|
2730
|
-
groupingSeparator: "
|
|
2724
|
+
groupingSeparator: " " /* SPACE */,
|
|
2731
2725
|
decimalSeparator: "," /* COMMA */
|
|
2732
2726
|
},
|
|
2733
2727
|
mathSymbols: {
|
|
@@ -2753,7 +2747,8 @@ var LOCALE_STUDENTS_SE = {
|
|
|
2753
2747
|
timeVariant: "H24" /* H24 */
|
|
2754
2748
|
},
|
|
2755
2749
|
drawboard: {
|
|
2756
|
-
basicManipulativesMaxGrade: 5
|
|
2750
|
+
basicManipulativesMaxGrade: 5,
|
|
2751
|
+
coinVariant: "se" /* SE */
|
|
2757
2752
|
},
|
|
2758
2753
|
myScript: {
|
|
2759
2754
|
enableSolver: true
|
|
@@ -2774,7 +2769,7 @@ var LOCALE_COMMON_GB = {
|
|
|
2774
2769
|
date: DATE_CONFIG_GB,
|
|
2775
2770
|
grades: GRADES_CONFIG_GB,
|
|
2776
2771
|
numberFormatting: {
|
|
2777
|
-
groupingSeparator: "
|
|
2772
|
+
groupingSeparator: "," /* COMMA */,
|
|
2778
2773
|
decimalSeparator: "." /* DOT */
|
|
2779
2774
|
},
|
|
2780
2775
|
mathSymbols: {
|
|
@@ -2799,7 +2794,8 @@ var LOCALE_STUDENTS_GB = {
|
|
|
2799
2794
|
timeVariant: "H24" /* H24 */
|
|
2800
2795
|
},
|
|
2801
2796
|
drawboard: {
|
|
2802
|
-
basicManipulativesMaxGrade: 8
|
|
2797
|
+
basicManipulativesMaxGrade: 8,
|
|
2798
|
+
coinVariant: "uk" /* UK */
|
|
2803
2799
|
},
|
|
2804
2800
|
myScript: {
|
|
2805
2801
|
enableSolver: false
|
|
@@ -2820,7 +2816,7 @@ var LOCALE_COMMON_CA = {
|
|
|
2820
2816
|
date: DATE_CONFIG_CA,
|
|
2821
2817
|
grades: GRADES_CONFIG_CA,
|
|
2822
2818
|
numberFormatting: {
|
|
2823
|
-
groupingSeparator: "
|
|
2819
|
+
groupingSeparator: " " /* SPACE */,
|
|
2824
2820
|
decimalSeparator: "." /* DOT */
|
|
2825
2821
|
},
|
|
2826
2822
|
mathSymbols: {
|
|
@@ -2835,6 +2831,10 @@ var LOCALE_STUDENTS_CA = {
|
|
|
2835
2831
|
practiceMode: {
|
|
2836
2832
|
...LOCALE_STUDENTS_US.practiceMode,
|
|
2837
2833
|
locale: "en-CA" /* CA */
|
|
2834
|
+
},
|
|
2835
|
+
drawboard: {
|
|
2836
|
+
...LOCALE_STUDENTS_US.drawboard,
|
|
2837
|
+
coinVariant: "ca" /* CA */
|
|
2838
2838
|
}
|
|
2839
2839
|
};
|
|
2840
2840
|
|
|
@@ -2849,7 +2849,7 @@ var LOCALE_COMMON_SCT = {
|
|
|
2849
2849
|
date: DATE_CONFIG_SCT,
|
|
2850
2850
|
grades: GRADES_CONFIG_SCT,
|
|
2851
2851
|
numberFormatting: {
|
|
2852
|
-
groupingSeparator: "
|
|
2852
|
+
groupingSeparator: "," /* COMMA */,
|
|
2853
2853
|
decimalSeparator: "." /* DOT */
|
|
2854
2854
|
},
|
|
2855
2855
|
mathSymbols: {
|
|
@@ -2878,7 +2878,7 @@ var LOCALE_COMMON_DE = {
|
|
|
2878
2878
|
date: DATE_CONFIG_DE,
|
|
2879
2879
|
grades: GRADES_CONFIG_DE,
|
|
2880
2880
|
numberFormatting: {
|
|
2881
|
-
groupingSeparator: "
|
|
2881
|
+
groupingSeparator: "." /* DOT */,
|
|
2882
2882
|
decimalSeparator: "," /* COMMA */
|
|
2883
2883
|
},
|
|
2884
2884
|
mathSymbols: {
|
|
@@ -2903,7 +2903,8 @@ var LOCALE_STUDENTS_DE = {
|
|
|
2903
2903
|
timeVariant: "H24" /* H24 */
|
|
2904
2904
|
},
|
|
2905
2905
|
drawboard: {
|
|
2906
|
-
basicManipulativesMaxGrade: 5
|
|
2906
|
+
basicManipulativesMaxGrade: 5,
|
|
2907
|
+
coinVariant: "euro" /* EURO */
|
|
2907
2908
|
},
|
|
2908
2909
|
myScript: {
|
|
2909
2910
|
enableSolver: false
|
|
@@ -3808,6 +3809,10 @@ var LOCALE_MOBILE_US = {
|
|
|
3808
3809
|
...LOCALE_STUDENTS_US.practiceMode,
|
|
3809
3810
|
...LOCALE_TEACHERS_US.practiceMode
|
|
3810
3811
|
},
|
|
3812
|
+
urls: {
|
|
3813
|
+
...LOCALE_TEACHERS_US.urls,
|
|
3814
|
+
...LOCALE_AUTHWEB_US.urls
|
|
3815
|
+
},
|
|
3811
3816
|
sources: {
|
|
3812
3817
|
signIn: {
|
|
3813
3818
|
withOnboarding: true,
|
|
@@ -3840,6 +3845,10 @@ var LOCALE_MOBILE_SE = {
|
|
|
3840
3845
|
...LOCALE_STUDENTS_SE.practiceMode,
|
|
3841
3846
|
...LOCALE_TEACHERS_SE.practiceMode
|
|
3842
3847
|
},
|
|
3848
|
+
urls: {
|
|
3849
|
+
...LOCALE_TEACHERS_SE.urls,
|
|
3850
|
+
...LOCALE_AUTHWEB_SE.urls
|
|
3851
|
+
},
|
|
3843
3852
|
sources: {
|
|
3844
3853
|
signIn: {
|
|
3845
3854
|
withOnboarding: false,
|
|
@@ -3870,6 +3879,10 @@ var LOCALE_MOBILE_GB = {
|
|
|
3870
3879
|
...LOCALE_STUDENTS_GB.practiceMode,
|
|
3871
3880
|
...LOCALE_TEACHERS_GB.practiceMode
|
|
3872
3881
|
},
|
|
3882
|
+
urls: {
|
|
3883
|
+
...LOCALE_TEACHERS_GB.urls,
|
|
3884
|
+
...LOCALE_AUTHWEB_GB.urls
|
|
3885
|
+
},
|
|
3873
3886
|
sources: {
|
|
3874
3887
|
signIn: {
|
|
3875
3888
|
withOnboarding: false,
|
|
@@ -3900,6 +3913,10 @@ var LOCALE_MOBILE_CA = {
|
|
|
3900
3913
|
...LOCALE_STUDENTS_CA.practiceMode,
|
|
3901
3914
|
...LOCALE_TEACHERS_CA.practiceMode
|
|
3902
3915
|
},
|
|
3916
|
+
urls: {
|
|
3917
|
+
...LOCALE_TEACHERS_CA.urls,
|
|
3918
|
+
...LOCALE_AUTHWEB_CA.urls
|
|
3919
|
+
},
|
|
3903
3920
|
sources: {
|
|
3904
3921
|
signIn: {
|
|
3905
3922
|
withOnboarding: true,
|
|
@@ -3932,6 +3949,10 @@ var LOCALE_MOBILE_SCT = {
|
|
|
3932
3949
|
...LOCALE_STUDENTS_SCT.practiceMode,
|
|
3933
3950
|
...LOCALE_TEACHERS_SCT.practiceMode
|
|
3934
3951
|
},
|
|
3952
|
+
urls: {
|
|
3953
|
+
...LOCALE_TEACHERS_SCT.urls,
|
|
3954
|
+
...LOCALE_AUTHWEB_SCT.urls
|
|
3955
|
+
},
|
|
3935
3956
|
sources: {
|
|
3936
3957
|
signIn: {
|
|
3937
3958
|
withOnboarding: false,
|
|
@@ -3962,6 +3983,10 @@ var LOCALE_MOBILE_DE = {
|
|
|
3962
3983
|
...LOCALE_STUDENTS_DE.practiceMode,
|
|
3963
3984
|
...LOCALE_TEACHERS_DE.practiceMode
|
|
3964
3985
|
},
|
|
3986
|
+
urls: {
|
|
3987
|
+
...LOCALE_TEACHERS_DE.urls,
|
|
3988
|
+
...LOCALE_AUTHWEB_DE.urls
|
|
3989
|
+
},
|
|
3965
3990
|
sources: {
|
|
3966
3991
|
signIn: {
|
|
3967
3992
|
withOnboarding: false,
|
|
@@ -4119,6 +4144,7 @@ exports.CalendarLocale = CalendarLocale;
|
|
|
4119
4144
|
exports.DE_CALENDAR_CONFIG = DE_CALENDAR_CONFIG;
|
|
4120
4145
|
exports.DateFormat = DateFormat;
|
|
4121
4146
|
exports.DateLocale = DateLocale;
|
|
4147
|
+
exports.DrawboardCoinVariant = DrawboardCoinVariant;
|
|
4122
4148
|
exports.EN_CALENDAR_CONFIG = EN_CALENDAR_CONFIG;
|
|
4123
4149
|
exports.Environment = Environment;
|
|
4124
4150
|
exports.Grade = Grade;
|