@magmamath/frontend-config 1.3.4-rc.6 → 1.3.4
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +0 -3
- package/dist/translation/index.d.ts +0 -3
- package/dist/translation/index.js +6 -49
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs +6 -49
- package/dist/translation/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -343,6 +343,8 @@ type TeachersWebCommon = {
|
|
|
343
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
344
344
|
TOLGEE_API_URL?: string;
|
|
345
345
|
TOLGEE_API_KEY?: string;
|
|
346
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
347
|
+
GOOGLE_API_KEY: string;
|
|
346
348
|
};
|
|
347
349
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
348
350
|
type TeachersWebVarsPreset = {
|
package/dist/index.d.ts
CHANGED
|
@@ -343,6 +343,8 @@ type TeachersWebCommon = {
|
|
|
343
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
344
344
|
TOLGEE_API_URL?: string;
|
|
345
345
|
TOLGEE_API_KEY?: string;
|
|
346
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
347
|
+
GOOGLE_API_KEY: string;
|
|
346
348
|
};
|
|
347
349
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
348
350
|
type TeachersWebVarsPreset = {
|
package/dist/index.js
CHANGED
|
@@ -1373,7 +1373,9 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1373
1373
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1374
1374
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1375
1375
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1376
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1376
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq",
|
|
1377
|
+
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1378
|
+
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc"
|
|
1377
1379
|
};
|
|
1378
1380
|
|
|
1379
1381
|
// src/configs/env/teachers-web/us/env.us.mars.ts
|
|
@@ -1396,7 +1398,9 @@ var ENV_TEACHERS_COMMON_PROD = {
|
|
|
1396
1398
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1397
1399
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1398
1400
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1399
|
-
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0"
|
|
1401
|
+
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1402
|
+
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1403
|
+
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc"
|
|
1400
1404
|
};
|
|
1401
1405
|
|
|
1402
1406
|
// src/configs/env/teachers-web/us/env.us.prod.ts
|