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