@magmamath/frontend-config 1.1.2-rc.7 → 1.1.2-rc.9
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +10 -2
- package/dist/translation/index.d.ts +10 -2
- package/dist/translation/index.js +19 -6
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs +19 -6
- package/dist/translation/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -322,6 +322,7 @@ type StudentsWebCommon = {
|
|
|
322
322
|
MYSCRIPT_REST_APP_KEY: string;
|
|
323
323
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
324
324
|
TOLGEE_API_URL?: string;
|
|
325
|
+
TOLGEE_API_KEY?: string;
|
|
325
326
|
};
|
|
326
327
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
327
328
|
type StudentsWebVarsPreset = {
|
|
@@ -340,6 +341,7 @@ type TeachersWebCommon = {
|
|
|
340
341
|
CLARITY_PROJECT_ID: string;
|
|
341
342
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
342
343
|
TOLGEE_API_URL?: string;
|
|
344
|
+
TOLGEE_API_KEY?: string;
|
|
343
345
|
};
|
|
344
346
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
345
347
|
type TeachersWebVarsPreset = {
|
|
@@ -354,6 +356,7 @@ type DistrictCommon = {
|
|
|
354
356
|
CLARITY_PROJECT_ID: string;
|
|
355
357
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
356
358
|
TOLGEE_API_URL?: string;
|
|
359
|
+
TOLGEE_API_KEY?: string;
|
|
357
360
|
};
|
|
358
361
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
359
362
|
type DistrictWebVarsPreset = {
|
package/dist/index.d.ts
CHANGED
|
@@ -322,6 +322,7 @@ type StudentsWebCommon = {
|
|
|
322
322
|
MYSCRIPT_REST_APP_KEY: string;
|
|
323
323
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
324
324
|
TOLGEE_API_URL?: string;
|
|
325
|
+
TOLGEE_API_KEY?: string;
|
|
325
326
|
};
|
|
326
327
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
327
328
|
type StudentsWebVarsPreset = {
|
|
@@ -340,6 +341,7 @@ type TeachersWebCommon = {
|
|
|
340
341
|
CLARITY_PROJECT_ID: string;
|
|
341
342
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
342
343
|
TOLGEE_API_URL?: string;
|
|
344
|
+
TOLGEE_API_KEY?: string;
|
|
343
345
|
};
|
|
344
346
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
345
347
|
type TeachersWebVarsPreset = {
|
|
@@ -354,6 +356,7 @@ type DistrictCommon = {
|
|
|
354
356
|
CLARITY_PROJECT_ID: string;
|
|
355
357
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
356
358
|
TOLGEE_API_URL?: string;
|
|
359
|
+
TOLGEE_API_KEY?: string;
|
|
357
360
|
};
|
|
358
361
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
359
362
|
type DistrictWebVarsPreset = {
|
package/dist/index.js
CHANGED
|
@@ -1186,7 +1186,8 @@ var ENV_STUDENTS_COMMON_MARS = {
|
|
|
1186
1186
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
1187
1187
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1188
1188
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
1189
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se"
|
|
1189
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1190
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1190
1191
|
};
|
|
1191
1192
|
|
|
1192
1193
|
// src/configs/env/students-web/us/env.us.mars.ts
|
|
@@ -1361,7 +1362,8 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1361
1362
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1362
1363
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1363
1364
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1364
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se"
|
|
1365
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1366
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1365
1367
|
};
|
|
1366
1368
|
|
|
1367
1369
|
// src/configs/env/teachers-web/us/env.us.mars.ts
|
|
@@ -1530,7 +1532,8 @@ var ENV_DISTRICT_COMMON_MARS = {
|
|
|
1530
1532
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1531
1533
|
CLARITY_PROJECT_ID: "rb6vbwug3r",
|
|
1532
1534
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1533
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se"
|
|
1535
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1536
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1534
1537
|
};
|
|
1535
1538
|
|
|
1536
1539
|
// src/configs/env/district-dash/us/env.us.mars.ts
|