@magmamath/frontend-config 1.3.3-rc.1 → 1.3.4-rc.0
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +60 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -0
- package/dist/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
|
|
|
@@ -359,7 +360,7 @@ type DistrictCommon = {
|
|
|
359
360
|
TOLGEE_API_URL?: string;
|
|
360
361
|
TOLGEE_API_KEY?: string;
|
|
361
362
|
};
|
|
362
|
-
type DistrictDashboardVars =
|
|
363
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
363
364
|
type DistrictWebVarsPreset = {
|
|
364
365
|
[key in Locale]: {
|
|
365
366
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -404,7 +405,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
404
405
|
};
|
|
405
406
|
|
|
406
407
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
407
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
408
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL' | 'WEBSOCKETS_URL'> & {
|
|
408
409
|
TOS_URL: string;
|
|
409
410
|
CLARITY_PROJECT_ID: string;
|
|
410
411
|
INTERCOM_APP_ID: string;
|
|
@@ -457,6 +458,7 @@ type MobileBaseVars = {
|
|
|
457
458
|
API_URL: string;
|
|
458
459
|
CDN_HOST: string;
|
|
459
460
|
SOCKET_URL: string;
|
|
461
|
+
WEBSOCKETS_URL: string;
|
|
460
462
|
LOGGLY_TAG: string;
|
|
461
463
|
PROBLEM_CREATOR_URL: string;
|
|
462
464
|
} & 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
|
|
|
@@ -359,7 +360,7 @@ type DistrictCommon = {
|
|
|
359
360
|
TOLGEE_API_URL?: string;
|
|
360
361
|
TOLGEE_API_KEY?: string;
|
|
361
362
|
};
|
|
362
|
-
type DistrictDashboardVars =
|
|
363
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
363
364
|
type DistrictWebVarsPreset = {
|
|
364
365
|
[key in Locale]: {
|
|
365
366
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -404,7 +405,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
404
405
|
};
|
|
405
406
|
|
|
406
407
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
407
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
408
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL' | 'WEBSOCKETS_URL'> & {
|
|
408
409
|
TOS_URL: string;
|
|
409
410
|
CLARITY_PROJECT_ID: string;
|
|
410
411
|
INTERCOM_APP_ID: string;
|
|
@@ -457,6 +458,7 @@ type MobileBaseVars = {
|
|
|
457
458
|
API_URL: string;
|
|
458
459
|
CDN_HOST: string;
|
|
459
460
|
SOCKET_URL: string;
|
|
461
|
+
WEBSOCKETS_URL: string;
|
|
460
462
|
LOGGLY_TAG: string;
|
|
461
463
|
PROBLEM_CREATOR_URL: string;
|
|
462
464
|
} & 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.magmamath.com",
|
|
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.magmamath.com",
|
|
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.ca.magmamath.com",
|
|
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.magmamath.com",
|
|
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.magmamath.com",
|
|
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
|
|
|
@@ -1384,6 +1396,7 @@ var ENV_TEACHERS_WEB_US_MARS = {
|
|
|
1384
1396
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1385
1397
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1386
1398
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1399
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1387
1400
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1388
1401
|
};
|
|
1389
1402
|
|
|
@@ -1407,6 +1420,7 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1407
1420
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1408
1421
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_US",
|
|
1409
1422
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1423
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1410
1424
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1411
1425
|
};
|
|
1412
1426
|
|
|
@@ -1419,6 +1433,7 @@ var ENV_TEACHERS_WEB_SE_MARS = {
|
|
|
1419
1433
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1420
1434
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SE",
|
|
1421
1435
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1436
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1422
1437
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1423
1438
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1424
1439
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1435,6 +1450,7 @@ var ENV_TEACHERS_WEB_SE_PROD = {
|
|
|
1435
1450
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1436
1451
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SE",
|
|
1437
1452
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1453
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1438
1454
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1439
1455
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1440
1456
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1451,6 +1467,7 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1451
1467
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1452
1468
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1453
1469
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1470
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1454
1471
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1455
1472
|
};
|
|
1456
1473
|
|
|
@@ -1463,6 +1480,7 @@ var ENV_TEACHERS_WEB_GB_PROD = {
|
|
|
1463
1480
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1464
1481
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_GB",
|
|
1465
1482
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1483
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1466
1484
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1467
1485
|
};
|
|
1468
1486
|
|
|
@@ -1476,6 +1494,7 @@ var ENV_TEACHERS_WEB_CA_MARS = {
|
|
|
1476
1494
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1477
1495
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
1478
1496
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1497
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1479
1498
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1480
1499
|
};
|
|
1481
1500
|
|
|
@@ -1489,6 +1508,7 @@ var ENV_TEACHERS_WEB_CA_PROD = {
|
|
|
1489
1508
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1490
1509
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_CA",
|
|
1491
1510
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1511
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1492
1512
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1493
1513
|
};
|
|
1494
1514
|
|
|
@@ -1501,6 +1521,7 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
1501
1521
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1502
1522
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
1503
1523
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1524
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1504
1525
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1505
1526
|
};
|
|
1506
1527
|
|
|
@@ -1513,6 +1534,7 @@ var ENV_TEACHERS_WEB_SCT_PROD = {
|
|
|
1513
1534
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1514
1535
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SCT",
|
|
1515
1536
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1537
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1516
1538
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1517
1539
|
};
|
|
1518
1540
|
|
|
@@ -1525,6 +1547,7 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
1525
1547
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1526
1548
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
1527
1549
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1550
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1528
1551
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1529
1552
|
};
|
|
1530
1553
|
|
|
@@ -1537,6 +1560,7 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
1537
1560
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1538
1561
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_DE",
|
|
1539
1562
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1563
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1540
1564
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1541
1565
|
};
|
|
1542
1566
|
|
|
@@ -1557,6 +1581,8 @@ var ENV_DISTRICT_US_MARS = {
|
|
|
1557
1581
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1558
1582
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1559
1583
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
1584
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1585
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1560
1586
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1561
1587
|
};
|
|
1562
1588
|
|
|
@@ -1575,6 +1601,8 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
1575
1601
|
API_URL: "https://api.magmamath.com/v2",
|
|
1576
1602
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1577
1603
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_US",
|
|
1604
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1605
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1578
1606
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1579
1607
|
};
|
|
1580
1608
|
|
|
@@ -1586,6 +1614,8 @@ var ENV_DISTRICT_SE_MARS = {
|
|
|
1586
1614
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1587
1615
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1588
1616
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SE",
|
|
1617
|
+
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1618
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1589
1619
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1590
1620
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1591
1621
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1601,6 +1631,8 @@ var ENV_DISTRICT_SE_PROD = {
|
|
|
1601
1631
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
1602
1632
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1603
1633
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SE",
|
|
1634
|
+
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1635
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1604
1636
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1605
1637
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1606
1638
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1616,6 +1648,8 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
1616
1648
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1617
1649
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1618
1650
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
1651
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1652
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1619
1653
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1620
1654
|
};
|
|
1621
1655
|
|
|
@@ -1627,6 +1661,8 @@ var ENV_DISTRICT_GB_PROD = {
|
|
|
1627
1661
|
API_URL: "https://api.magmamath.com/v2",
|
|
1628
1662
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1629
1663
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_GB",
|
|
1664
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1665
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1630
1666
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1631
1667
|
};
|
|
1632
1668
|
|
|
@@ -1639,6 +1675,8 @@ var ENV_DISTRICT_CA_MARS = {
|
|
|
1639
1675
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1640
1676
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1641
1677
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
1678
|
+
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1679
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1642
1680
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1643
1681
|
};
|
|
1644
1682
|
|
|
@@ -1651,6 +1689,8 @@ var ENV_DISTRICT_CA_PROD = {
|
|
|
1651
1689
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1652
1690
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1653
1691
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_CA",
|
|
1692
|
+
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1693
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1654
1694
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1655
1695
|
};
|
|
1656
1696
|
|
|
@@ -1662,6 +1702,8 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
1662
1702
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1663
1703
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1664
1704
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
1705
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1706
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1665
1707
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1666
1708
|
};
|
|
1667
1709
|
|
|
@@ -1673,6 +1715,8 @@ var ENV_DISTRICT_SCT_PROD = {
|
|
|
1673
1715
|
API_URL: "https://api.magmamath.com/v2",
|
|
1674
1716
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1675
1717
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SCT",
|
|
1718
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1719
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1676
1720
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1677
1721
|
};
|
|
1678
1722
|
|
|
@@ -1684,6 +1728,8 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
1684
1728
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1685
1729
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1686
1730
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
1731
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1732
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1687
1733
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1688
1734
|
};
|
|
1689
1735
|
|
|
@@ -1695,6 +1741,8 @@ var ENV_DISTRICT_DE_PROD = {
|
|
|
1695
1741
|
API_URL: "https://api.magmamath.com/v2",
|
|
1696
1742
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1697
1743
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_DE",
|
|
1744
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1745
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1698
1746
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1699
1747
|
};
|
|
1700
1748
|
|
|
@@ -2039,6 +2087,7 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2039
2087
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2040
2088
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2041
2089
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2090
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2042
2091
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2043
2092
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2044
2093
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2057,6 +2106,7 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2057
2106
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2058
2107
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2059
2108
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2109
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2060
2110
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2061
2111
|
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2062
2112
|
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
@@ -2074,6 +2124,7 @@ var ENV_MOBILE_GB_MARS = {
|
|
|
2074
2124
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2075
2125
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2076
2126
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2127
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2077
2128
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2078
2129
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2079
2130
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2091,6 +2142,7 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2091
2142
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2092
2143
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2093
2144
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2145
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
2094
2146
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
2095
2147
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2096
2148
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2108,6 +2160,7 @@ var ENV_MOBILE_SCT_MARS = {
|
|
|
2108
2160
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2109
2161
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2110
2162
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2163
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2111
2164
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2112
2165
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2113
2166
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2124,6 +2177,7 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2124
2177
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2125
2178
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2126
2179
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2180
|
+
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2127
2181
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2128
2182
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2129
2183
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2157,6 +2211,7 @@ var ENV_MOBILE_US_PROD = {
|
|
|
2157
2211
|
API_URL: "https://api.magmamath.com/v2",
|
|
2158
2212
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2159
2213
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2214
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2160
2215
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_US",
|
|
2161
2216
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2162
2217
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2175,6 +2230,7 @@ var ENV_MOBILE_SE_PROD = {
|
|
|
2175
2230
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
2176
2231
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2177
2232
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
2233
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
2178
2234
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SE",
|
|
2179
2235
|
GOOGLE_AUTH: "https://api.matteappen.se/v2/auth/google",
|
|
2180
2236
|
MICROSOFT_AUTH: "https://api.matteappen.se/v2/auth/microsoft",
|
|
@@ -2192,6 +2248,7 @@ var ENV_MOBILE_GB_PROD = {
|
|
|
2192
2248
|
API_URL: "https://api.magmamath.com/v2",
|
|
2193
2249
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2194
2250
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2251
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2195
2252
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_GB",
|
|
2196
2253
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2197
2254
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2209,6 +2266,7 @@ var ENV_MOBILE_CA_PROD = {
|
|
|
2209
2266
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2210
2267
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2211
2268
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2269
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
2212
2270
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_CA",
|
|
2213
2271
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2214
2272
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2226,6 +2284,7 @@ var ENV_MOBILE_SCT_PROD = {
|
|
|
2226
2284
|
API_URL: "https://api.magmamath.com/v2",
|
|
2227
2285
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2228
2286
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2287
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2229
2288
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SCT",
|
|
2230
2289
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2231
2290
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2242,6 +2301,7 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2242
2301
|
API_URL: "https://api.magmamath.com/v2",
|
|
2243
2302
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2244
2303
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2304
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2245
2305
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2246
2306
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2247
2307
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|