@magmamath/frontend-config 1.3.4-rc.101 → 1.3.4-rc.2
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 -6
- package/dist/index.d.ts +2 -6
- package/dist/index.js +2 -66
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -66
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +2 -0
- package/dist/translation/index.d.ts +2 -0
- package/dist/translation/index.js +29 -6
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs +29 -6
- package/dist/translation/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -308,7 +308,6 @@ type RegionSpecificVars = {
|
|
|
308
308
|
PARENT_WEB_URL: string;
|
|
309
309
|
SOCKET_URL: string;
|
|
310
310
|
STUDENTS_WEB_URL: string;
|
|
311
|
-
WEBSOCKETS_URL: string;
|
|
312
311
|
TEACHERS_WEB_URL: string;
|
|
313
312
|
};
|
|
314
313
|
|
|
@@ -344,8 +343,6 @@ type TeachersWebCommon = {
|
|
|
344
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
345
344
|
TOLGEE_API_URL?: string;
|
|
346
345
|
TOLGEE_API_KEY?: string;
|
|
347
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
348
|
-
GOOGLE_API_KEY: string;
|
|
349
346
|
};
|
|
350
347
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
351
348
|
type TeachersWebVarsPreset = {
|
|
@@ -362,7 +359,7 @@ type DistrictCommon = {
|
|
|
362
359
|
TOLGEE_API_URL?: string;
|
|
363
360
|
TOLGEE_API_KEY?: string;
|
|
364
361
|
};
|
|
365
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
362
|
+
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
366
363
|
type DistrictWebVarsPreset = {
|
|
367
364
|
[key in Locale]: {
|
|
368
365
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -407,7 +404,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
407
404
|
};
|
|
408
405
|
|
|
409
406
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
410
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'
|
|
407
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
411
408
|
TOS_URL: string;
|
|
412
409
|
CLARITY_PROJECT_ID: string;
|
|
413
410
|
INTERCOM_APP_ID: string;
|
|
@@ -460,7 +457,6 @@ type MobileBaseVars = {
|
|
|
460
457
|
API_URL: string;
|
|
461
458
|
CDN_HOST: string;
|
|
462
459
|
SOCKET_URL: string;
|
|
463
|
-
WEBSOCKETS_URL: string;
|
|
464
460
|
LOGGLY_TAG: string;
|
|
465
461
|
PROBLEM_CREATOR_URL: string;
|
|
466
462
|
} & MobileCommon;
|
package/dist/index.d.ts
CHANGED
|
@@ -308,7 +308,6 @@ type RegionSpecificVars = {
|
|
|
308
308
|
PARENT_WEB_URL: string;
|
|
309
309
|
SOCKET_URL: string;
|
|
310
310
|
STUDENTS_WEB_URL: string;
|
|
311
|
-
WEBSOCKETS_URL: string;
|
|
312
311
|
TEACHERS_WEB_URL: string;
|
|
313
312
|
};
|
|
314
313
|
|
|
@@ -344,8 +343,6 @@ type TeachersWebCommon = {
|
|
|
344
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
345
344
|
TOLGEE_API_URL?: string;
|
|
346
345
|
TOLGEE_API_KEY?: string;
|
|
347
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
348
|
-
GOOGLE_API_KEY: string;
|
|
349
346
|
};
|
|
350
347
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
351
348
|
type TeachersWebVarsPreset = {
|
|
@@ -362,7 +359,7 @@ type DistrictCommon = {
|
|
|
362
359
|
TOLGEE_API_URL?: string;
|
|
363
360
|
TOLGEE_API_KEY?: string;
|
|
364
361
|
};
|
|
365
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
362
|
+
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
366
363
|
type DistrictWebVarsPreset = {
|
|
367
364
|
[key in Locale]: {
|
|
368
365
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -407,7 +404,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
407
404
|
};
|
|
408
405
|
|
|
409
406
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
410
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'
|
|
407
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
411
408
|
TOS_URL: string;
|
|
412
409
|
CLARITY_PROJECT_ID: string;
|
|
413
410
|
INTERCOM_APP_ID: string;
|
|
@@ -460,7 +457,6 @@ type MobileBaseVars = {
|
|
|
460
457
|
API_URL: string;
|
|
461
458
|
CDN_HOST: string;
|
|
462
459
|
SOCKET_URL: string;
|
|
463
|
-
WEBSOCKETS_URL: string;
|
|
464
460
|
LOGGLY_TAG: string;
|
|
465
461
|
PROBLEM_CREATOR_URL: string;
|
|
466
462
|
} & MobileCommon;
|
package/dist/index.js
CHANGED
|
@@ -1204,7 +1204,6 @@ var ENV_STUDENTS_WEB_US_MARS = {
|
|
|
1204
1204
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1205
1205
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
1206
1206
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1207
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1208
1207
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1209
1208
|
};
|
|
1210
1209
|
|
|
@@ -1230,7 +1229,6 @@ var ENV_STUDENTS_WEB_US_PROD = {
|
|
|
1230
1229
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1231
1230
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_US",
|
|
1232
1231
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1233
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1234
1232
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1235
1233
|
};
|
|
1236
1234
|
|
|
@@ -1243,7 +1241,6 @@ var ENV_STUDENTS_WEB_SE_MARS = {
|
|
|
1243
1241
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1244
1242
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SE",
|
|
1245
1243
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1246
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1247
1244
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1248
1245
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1249
1246
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1260,7 +1257,6 @@ var ENV_STUDENTS_WEB_SE_PROD = {
|
|
|
1260
1257
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1261
1258
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_SE",
|
|
1262
1259
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1263
|
-
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1264
1260
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1265
1261
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1266
1262
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1277,7 +1273,6 @@ var ENV_STUDENTS_WEB_GB_MARS = {
|
|
|
1277
1273
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1278
1274
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_GB",
|
|
1279
1275
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1280
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1281
1276
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1282
1277
|
};
|
|
1283
1278
|
|
|
@@ -1290,7 +1285,6 @@ var ENV_STUDENTS_WEB_GB_PROD = {
|
|
|
1290
1285
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1291
1286
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_GB",
|
|
1292
1287
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1293
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1294
1288
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1295
1289
|
};
|
|
1296
1290
|
|
|
@@ -1304,7 +1298,6 @@ var ENV_STUDENTS_WEB_CA_MARS = {
|
|
|
1304
1298
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1305
1299
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA",
|
|
1306
1300
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1307
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1308
1301
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1309
1302
|
};
|
|
1310
1303
|
|
|
@@ -1318,7 +1311,6 @@ var ENV_STUDENTS_WEB_CA_PROD = {
|
|
|
1318
1311
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1319
1312
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_CA",
|
|
1320
1313
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1321
|
-
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1322
1314
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1323
1315
|
};
|
|
1324
1316
|
|
|
@@ -1331,7 +1323,6 @@ var ENV_STUDENTS_WEB_SCT_MARS = {
|
|
|
1331
1323
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1332
1324
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SCT",
|
|
1333
1325
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1334
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1335
1326
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1336
1327
|
};
|
|
1337
1328
|
|
|
@@ -1344,7 +1335,6 @@ var ENV_STUDENTS_WEB_SCT_PROD = {
|
|
|
1344
1335
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1345
1336
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_SCT",
|
|
1346
1337
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1347
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1348
1338
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1349
1339
|
};
|
|
1350
1340
|
|
|
@@ -1357,7 +1347,6 @@ var ENV_STUDENTS_WEB_DE_MARS = {
|
|
|
1357
1347
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1358
1348
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE",
|
|
1359
1349
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1360
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1361
1350
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1362
1351
|
};
|
|
1363
1352
|
|
|
@@ -1370,7 +1359,6 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1370
1359
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1371
1360
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_DE",
|
|
1372
1361
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1373
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1374
1362
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1375
1363
|
};
|
|
1376
1364
|
|
|
@@ -1385,9 +1373,7 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1385
1373
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1386
1374
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1387
1375
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1388
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1389
|
-
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1390
|
-
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc"
|
|
1376
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1391
1377
|
};
|
|
1392
1378
|
|
|
1393
1379
|
// src/configs/env/teachers-web/us/env.us.mars.ts
|
|
@@ -1398,7 +1384,6 @@ var ENV_TEACHERS_WEB_US_MARS = {
|
|
|
1398
1384
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1399
1385
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1400
1386
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1401
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1402
1387
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1403
1388
|
};
|
|
1404
1389
|
|
|
@@ -1411,9 +1396,7 @@ var ENV_TEACHERS_COMMON_PROD = {
|
|
|
1411
1396
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1412
1397
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1413
1398
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1414
|
-
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0"
|
|
1415
|
-
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1416
|
-
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc"
|
|
1399
|
+
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0"
|
|
1417
1400
|
};
|
|
1418
1401
|
|
|
1419
1402
|
// src/configs/env/teachers-web/us/env.us.prod.ts
|
|
@@ -1424,7 +1407,6 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1424
1407
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1425
1408
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_US",
|
|
1426
1409
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1427
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1428
1410
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1429
1411
|
};
|
|
1430
1412
|
|
|
@@ -1437,7 +1419,6 @@ var ENV_TEACHERS_WEB_SE_MARS = {
|
|
|
1437
1419
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1438
1420
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SE",
|
|
1439
1421
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1440
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1441
1422
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1442
1423
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1443
1424
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1454,7 +1435,6 @@ var ENV_TEACHERS_WEB_SE_PROD = {
|
|
|
1454
1435
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1455
1436
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SE",
|
|
1456
1437
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1457
|
-
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1458
1438
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1459
1439
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1460
1440
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1471,7 +1451,6 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1471
1451
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1472
1452
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1473
1453
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1474
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1475
1454
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1476
1455
|
};
|
|
1477
1456
|
|
|
@@ -1484,7 +1463,6 @@ var ENV_TEACHERS_WEB_GB_PROD = {
|
|
|
1484
1463
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1485
1464
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_GB",
|
|
1486
1465
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1487
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1488
1466
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1489
1467
|
};
|
|
1490
1468
|
|
|
@@ -1498,7 +1476,6 @@ var ENV_TEACHERS_WEB_CA_MARS = {
|
|
|
1498
1476
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1499
1477
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
1500
1478
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1501
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1502
1479
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1503
1480
|
};
|
|
1504
1481
|
|
|
@@ -1512,7 +1489,6 @@ var ENV_TEACHERS_WEB_CA_PROD = {
|
|
|
1512
1489
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1513
1490
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_CA",
|
|
1514
1491
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1515
|
-
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1516
1492
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1517
1493
|
};
|
|
1518
1494
|
|
|
@@ -1525,7 +1501,6 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
1525
1501
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1526
1502
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
1527
1503
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1528
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1529
1504
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1530
1505
|
};
|
|
1531
1506
|
|
|
@@ -1538,7 +1513,6 @@ var ENV_TEACHERS_WEB_SCT_PROD = {
|
|
|
1538
1513
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1539
1514
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SCT",
|
|
1540
1515
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1541
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1542
1516
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1543
1517
|
};
|
|
1544
1518
|
|
|
@@ -1551,7 +1525,6 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
1551
1525
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1552
1526
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
1553
1527
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1554
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1555
1528
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1556
1529
|
};
|
|
1557
1530
|
|
|
@@ -1564,7 +1537,6 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
1564
1537
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1565
1538
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_DE",
|
|
1566
1539
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1567
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1568
1540
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1569
1541
|
};
|
|
1570
1542
|
|
|
@@ -1585,8 +1557,6 @@ var ENV_DISTRICT_US_MARS = {
|
|
|
1585
1557
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1586
1558
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1587
1559
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
1588
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1589
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1590
1560
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1591
1561
|
};
|
|
1592
1562
|
|
|
@@ -1605,8 +1575,6 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
1605
1575
|
API_URL: "https://api.magmamath.com/v2",
|
|
1606
1576
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1607
1577
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_US",
|
|
1608
|
-
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1609
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1610
1578
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1611
1579
|
};
|
|
1612
1580
|
|
|
@@ -1618,8 +1586,6 @@ var ENV_DISTRICT_SE_MARS = {
|
|
|
1618
1586
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1619
1587
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1620
1588
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SE",
|
|
1621
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1622
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1623
1589
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1624
1590
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1625
1591
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1635,8 +1601,6 @@ var ENV_DISTRICT_SE_PROD = {
|
|
|
1635
1601
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
1636
1602
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1637
1603
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SE",
|
|
1638
|
-
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1639
|
-
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1640
1604
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1641
1605
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1642
1606
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1652,8 +1616,6 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
1652
1616
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1653
1617
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1654
1618
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
1655
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1656
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1657
1619
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1658
1620
|
};
|
|
1659
1621
|
|
|
@@ -1665,8 +1627,6 @@ var ENV_DISTRICT_GB_PROD = {
|
|
|
1665
1627
|
API_URL: "https://api.magmamath.com/v2",
|
|
1666
1628
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1667
1629
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_GB",
|
|
1668
|
-
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1669
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1670
1630
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1671
1631
|
};
|
|
1672
1632
|
|
|
@@ -1679,8 +1639,6 @@ var ENV_DISTRICT_CA_MARS = {
|
|
|
1679
1639
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1680
1640
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1681
1641
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
1682
|
-
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1683
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1684
1642
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1685
1643
|
};
|
|
1686
1644
|
|
|
@@ -1693,8 +1651,6 @@ var ENV_DISTRICT_CA_PROD = {
|
|
|
1693
1651
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1694
1652
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1695
1653
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_CA",
|
|
1696
|
-
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1697
|
-
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1698
1654
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1699
1655
|
};
|
|
1700
1656
|
|
|
@@ -1706,8 +1662,6 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
1706
1662
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1707
1663
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1708
1664
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
1709
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1710
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1711
1665
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1712
1666
|
};
|
|
1713
1667
|
|
|
@@ -1719,8 +1673,6 @@ var ENV_DISTRICT_SCT_PROD = {
|
|
|
1719
1673
|
API_URL: "https://api.magmamath.com/v2",
|
|
1720
1674
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1721
1675
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SCT",
|
|
1722
|
-
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1723
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1724
1676
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1725
1677
|
};
|
|
1726
1678
|
|
|
@@ -1732,8 +1684,6 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
1732
1684
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1733
1685
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1734
1686
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
1735
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1736
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1737
1687
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1738
1688
|
};
|
|
1739
1689
|
|
|
@@ -1745,8 +1695,6 @@ var ENV_DISTRICT_DE_PROD = {
|
|
|
1745
1695
|
API_URL: "https://api.magmamath.com/v2",
|
|
1746
1696
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1747
1697
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_DE",
|
|
1748
|
-
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1749
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1750
1698
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1751
1699
|
};
|
|
1752
1700
|
|
|
@@ -2091,7 +2039,6 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2091
2039
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2092
2040
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2093
2041
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2094
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2095
2042
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2096
2043
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2097
2044
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2110,7 +2057,6 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2110
2057
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2111
2058
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2112
2059
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2113
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2114
2060
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2115
2061
|
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2116
2062
|
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
@@ -2128,7 +2074,6 @@ var ENV_MOBILE_GB_MARS = {
|
|
|
2128
2074
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2129
2075
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2130
2076
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2131
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2132
2077
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2133
2078
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2134
2079
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2146,7 +2091,6 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2146
2091
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2147
2092
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2148
2093
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2149
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2150
2094
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
2151
2095
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2152
2096
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2164,7 +2108,6 @@ var ENV_MOBILE_SCT_MARS = {
|
|
|
2164
2108
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2165
2109
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2166
2110
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2167
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2168
2111
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2169
2112
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2170
2113
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2181,7 +2124,6 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2181
2124
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2182
2125
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2183
2126
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2184
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2185
2127
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2186
2128
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2187
2129
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2215,7 +2157,6 @@ var ENV_MOBILE_US_PROD = {
|
|
|
2215
2157
|
API_URL: "https://api.magmamath.com/v2",
|
|
2216
2158
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2217
2159
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2218
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2219
2160
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_US",
|
|
2220
2161
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2221
2162
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2234,7 +2175,6 @@ var ENV_MOBILE_SE_PROD = {
|
|
|
2234
2175
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
2235
2176
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2236
2177
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
2237
|
-
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
2238
2178
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SE",
|
|
2239
2179
|
GOOGLE_AUTH: "https://api.matteappen.se/v2/auth/google",
|
|
2240
2180
|
MICROSOFT_AUTH: "https://api.matteappen.se/v2/auth/microsoft",
|
|
@@ -2252,7 +2192,6 @@ var ENV_MOBILE_GB_PROD = {
|
|
|
2252
2192
|
API_URL: "https://api.magmamath.com/v2",
|
|
2253
2193
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2254
2194
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2255
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2256
2195
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_GB",
|
|
2257
2196
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2258
2197
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2270,7 +2209,6 @@ var ENV_MOBILE_CA_PROD = {
|
|
|
2270
2209
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2271
2210
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2272
2211
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2273
|
-
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
2274
2212
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_CA",
|
|
2275
2213
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2276
2214
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2288,7 +2226,6 @@ var ENV_MOBILE_SCT_PROD = {
|
|
|
2288
2226
|
API_URL: "https://api.magmamath.com/v2",
|
|
2289
2227
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2290
2228
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2291
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2292
2229
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SCT",
|
|
2293
2230
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2294
2231
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2305,7 +2242,6 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2305
2242
|
API_URL: "https://api.magmamath.com/v2",
|
|
2306
2243
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2307
2244
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2308
|
-
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2309
2245
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2310
2246
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2311
2247
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|