@magmamath/frontend-config 1.3.5 → 1.3.6
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
|
@@ -313,6 +313,7 @@ type RegionSpecificVars = {
|
|
|
313
313
|
PARENT_WEB_URL: string;
|
|
314
314
|
SOCKET_URL: string;
|
|
315
315
|
STUDENTS_WEB_URL: string;
|
|
316
|
+
WEBSOCKETS_URL: string;
|
|
316
317
|
TEACHERS_WEB_URL: string;
|
|
317
318
|
};
|
|
318
319
|
|
|
@@ -366,7 +367,7 @@ type DistrictCommon = {
|
|
|
366
367
|
TOLGEE_API_URL?: string;
|
|
367
368
|
TOLGEE_API_KEY?: string;
|
|
368
369
|
};
|
|
369
|
-
type DistrictDashboardVars =
|
|
370
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
370
371
|
type DistrictWebVarsPreset = {
|
|
371
372
|
[key in Locale]: {
|
|
372
373
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -416,7 +417,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
416
417
|
};
|
|
417
418
|
|
|
418
419
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
419
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
420
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL' | 'WEBSOCKETS_URL'> & {
|
|
420
421
|
TOS_URL: string;
|
|
421
422
|
CLARITY_PROJECT_ID: string;
|
|
422
423
|
INTERCOM_APP_ID: string;
|
|
@@ -472,6 +473,7 @@ type MobileBaseVars = {
|
|
|
472
473
|
API_URL: string;
|
|
473
474
|
CDN_HOST: string;
|
|
474
475
|
SOCKET_URL: string;
|
|
476
|
+
WEBSOCKETS_URL: string;
|
|
475
477
|
LOGGLY_TAG: string;
|
|
476
478
|
PROBLEM_CREATOR_URL: string;
|
|
477
479
|
} & MobileCommon;
|
package/dist/index.d.ts
CHANGED
|
@@ -313,6 +313,7 @@ type RegionSpecificVars = {
|
|
|
313
313
|
PARENT_WEB_URL: string;
|
|
314
314
|
SOCKET_URL: string;
|
|
315
315
|
STUDENTS_WEB_URL: string;
|
|
316
|
+
WEBSOCKETS_URL: string;
|
|
316
317
|
TEACHERS_WEB_URL: string;
|
|
317
318
|
};
|
|
318
319
|
|
|
@@ -366,7 +367,7 @@ type DistrictCommon = {
|
|
|
366
367
|
TOLGEE_API_URL?: string;
|
|
367
368
|
TOLGEE_API_KEY?: string;
|
|
368
369
|
};
|
|
369
|
-
type DistrictDashboardVars =
|
|
370
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
370
371
|
type DistrictWebVarsPreset = {
|
|
371
372
|
[key in Locale]: {
|
|
372
373
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -416,7 +417,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
416
417
|
};
|
|
417
418
|
|
|
418
419
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
419
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
420
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL' | 'WEBSOCKETS_URL'> & {
|
|
420
421
|
TOS_URL: string;
|
|
421
422
|
CLARITY_PROJECT_ID: string;
|
|
422
423
|
INTERCOM_APP_ID: string;
|
|
@@ -472,6 +473,7 @@ type MobileBaseVars = {
|
|
|
472
473
|
API_URL: string;
|
|
473
474
|
CDN_HOST: string;
|
|
474
475
|
SOCKET_URL: string;
|
|
476
|
+
WEBSOCKETS_URL: string;
|
|
475
477
|
LOGGLY_TAG: string;
|
|
476
478
|
PROBLEM_CREATOR_URL: string;
|
|
477
479
|
} & MobileCommon;
|
package/dist/index.js
CHANGED
|
@@ -1234,6 +1234,7 @@ var ENV_STUDENTS_WEB_US_MARS = {
|
|
|
1234
1234
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1235
1235
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
1236
1236
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1237
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1237
1238
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1238
1239
|
};
|
|
1239
1240
|
|
|
@@ -1259,6 +1260,7 @@ var ENV_STUDENTS_WEB_US_PROD = {
|
|
|
1259
1260
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1260
1261
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_US",
|
|
1261
1262
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1263
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1262
1264
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1263
1265
|
};
|
|
1264
1266
|
|
|
@@ -1271,6 +1273,7 @@ var ENV_STUDENTS_WEB_SE_MARS = {
|
|
|
1271
1273
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1272
1274
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SE",
|
|
1273
1275
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1276
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1274
1277
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1275
1278
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1276
1279
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1287,6 +1290,7 @@ var ENV_STUDENTS_WEB_SE_PROD = {
|
|
|
1287
1290
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1288
1291
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_SE",
|
|
1289
1292
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1293
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1290
1294
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1291
1295
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1292
1296
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1303,6 +1307,7 @@ var ENV_STUDENTS_WEB_GB_MARS = {
|
|
|
1303
1307
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1304
1308
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_GB",
|
|
1305
1309
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1310
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1306
1311
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1307
1312
|
};
|
|
1308
1313
|
|
|
@@ -1315,6 +1320,7 @@ var ENV_STUDENTS_WEB_GB_PROD = {
|
|
|
1315
1320
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1316
1321
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_GB",
|
|
1317
1322
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1323
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1318
1324
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1319
1325
|
};
|
|
1320
1326
|
|
|
@@ -1328,6 +1334,7 @@ var ENV_STUDENTS_WEB_CA_MARS = {
|
|
|
1328
1334
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1329
1335
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA",
|
|
1330
1336
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1337
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1331
1338
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1332
1339
|
};
|
|
1333
1340
|
|
|
@@ -1341,6 +1348,7 @@ var ENV_STUDENTS_WEB_CA_PROD = {
|
|
|
1341
1348
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1342
1349
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_CA",
|
|
1343
1350
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1351
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1344
1352
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1345
1353
|
};
|
|
1346
1354
|
|
|
@@ -1353,6 +1361,7 @@ var ENV_STUDENTS_WEB_SCT_MARS = {
|
|
|
1353
1361
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1354
1362
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SCT",
|
|
1355
1363
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1364
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1356
1365
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1357
1366
|
};
|
|
1358
1367
|
|
|
@@ -1365,6 +1374,7 @@ var ENV_STUDENTS_WEB_SCT_PROD = {
|
|
|
1365
1374
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1366
1375
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_SCT",
|
|
1367
1376
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1377
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1368
1378
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1369
1379
|
};
|
|
1370
1380
|
|
|
@@ -1377,6 +1387,7 @@ var ENV_STUDENTS_WEB_DE_MARS = {
|
|
|
1377
1387
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1378
1388
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE",
|
|
1379
1389
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1390
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1380
1391
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1381
1392
|
};
|
|
1382
1393
|
|
|
@@ -1389,6 +1400,7 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1389
1400
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1390
1401
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_DE",
|
|
1391
1402
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1403
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1392
1404
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1393
1405
|
};
|
|
1394
1406
|
|
|
@@ -1416,6 +1428,7 @@ var ENV_TEACHERS_WEB_US_MARS = {
|
|
|
1416
1428
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1417
1429
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1418
1430
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1431
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1419
1432
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1420
1433
|
};
|
|
1421
1434
|
|
|
@@ -1441,6 +1454,7 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1441
1454
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1442
1455
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_US",
|
|
1443
1456
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1457
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1444
1458
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1445
1459
|
};
|
|
1446
1460
|
|
|
@@ -1453,6 +1467,7 @@ var ENV_TEACHERS_WEB_SE_MARS = {
|
|
|
1453
1467
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1454
1468
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SE",
|
|
1455
1469
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1470
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1456
1471
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1457
1472
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1458
1473
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1469,6 +1484,7 @@ var ENV_TEACHERS_WEB_SE_PROD = {
|
|
|
1469
1484
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1470
1485
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SE",
|
|
1471
1486
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1487
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1472
1488
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1473
1489
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1474
1490
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1485,6 +1501,7 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1485
1501
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1486
1502
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1487
1503
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1504
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1488
1505
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1489
1506
|
};
|
|
1490
1507
|
|
|
@@ -1497,6 +1514,7 @@ var ENV_TEACHERS_WEB_GB_PROD = {
|
|
|
1497
1514
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1498
1515
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_GB",
|
|
1499
1516
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1517
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1500
1518
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1501
1519
|
};
|
|
1502
1520
|
|
|
@@ -1510,6 +1528,7 @@ var ENV_TEACHERS_WEB_CA_MARS = {
|
|
|
1510
1528
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1511
1529
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
1512
1530
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1531
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1513
1532
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1514
1533
|
};
|
|
1515
1534
|
|
|
@@ -1523,6 +1542,7 @@ var ENV_TEACHERS_WEB_CA_PROD = {
|
|
|
1523
1542
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1524
1543
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_CA",
|
|
1525
1544
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1545
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1526
1546
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1527
1547
|
};
|
|
1528
1548
|
|
|
@@ -1535,6 +1555,7 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
1535
1555
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1536
1556
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
1537
1557
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1558
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1538
1559
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1539
1560
|
};
|
|
1540
1561
|
|
|
@@ -1547,6 +1568,7 @@ var ENV_TEACHERS_WEB_SCT_PROD = {
|
|
|
1547
1568
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1548
1569
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SCT",
|
|
1549
1570
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1571
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1550
1572
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1551
1573
|
};
|
|
1552
1574
|
|
|
@@ -1559,6 +1581,7 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
1559
1581
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1560
1582
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
1561
1583
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1584
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1562
1585
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1563
1586
|
};
|
|
1564
1587
|
|
|
@@ -1571,6 +1594,7 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
1571
1594
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1572
1595
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_DE",
|
|
1573
1596
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1597
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1574
1598
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1575
1599
|
};
|
|
1576
1600
|
|
|
@@ -1591,6 +1615,8 @@ var ENV_DISTRICT_US_MARS = {
|
|
|
1591
1615
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1592
1616
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1593
1617
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
1618
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1619
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1594
1620
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1595
1621
|
};
|
|
1596
1622
|
|
|
@@ -1609,6 +1635,8 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
1609
1635
|
API_URL: "https://api.magmamath.com/v2",
|
|
1610
1636
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1611
1637
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_US",
|
|
1638
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1639
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1612
1640
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1613
1641
|
};
|
|
1614
1642
|
|
|
@@ -1620,6 +1648,8 @@ var ENV_DISTRICT_SE_MARS = {
|
|
|
1620
1648
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1621
1649
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1622
1650
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SE",
|
|
1651
|
+
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1652
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1623
1653
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1624
1654
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1625
1655
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1635,6 +1665,8 @@ var ENV_DISTRICT_SE_PROD = {
|
|
|
1635
1665
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
1636
1666
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1637
1667
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SE",
|
|
1668
|
+
SOCKET_URL: "https://sockets.matteappen.se",
|
|
1669
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
1638
1670
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1639
1671
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1640
1672
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
@@ -1650,6 +1682,8 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
1650
1682
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1651
1683
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1652
1684
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
1685
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1686
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1653
1687
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1654
1688
|
};
|
|
1655
1689
|
|
|
@@ -1661,6 +1695,8 @@ var ENV_DISTRICT_GB_PROD = {
|
|
|
1661
1695
|
API_URL: "https://api.magmamath.com/v2",
|
|
1662
1696
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1663
1697
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_GB",
|
|
1698
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1699
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1664
1700
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1665
1701
|
};
|
|
1666
1702
|
|
|
@@ -1673,6 +1709,8 @@ var ENV_DISTRICT_CA_MARS = {
|
|
|
1673
1709
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1674
1710
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1675
1711
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
1712
|
+
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1713
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1676
1714
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1677
1715
|
};
|
|
1678
1716
|
|
|
@@ -1685,6 +1723,8 @@ var ENV_DISTRICT_CA_PROD = {
|
|
|
1685
1723
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1686
1724
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1687
1725
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_CA",
|
|
1726
|
+
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1727
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
1688
1728
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1689
1729
|
};
|
|
1690
1730
|
|
|
@@ -1696,6 +1736,8 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
1696
1736
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1697
1737
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1698
1738
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
1739
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1740
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1699
1741
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1700
1742
|
};
|
|
1701
1743
|
|
|
@@ -1707,6 +1749,8 @@ var ENV_DISTRICT_SCT_PROD = {
|
|
|
1707
1749
|
API_URL: "https://api.magmamath.com/v2",
|
|
1708
1750
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1709
1751
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SCT",
|
|
1752
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1753
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1710
1754
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1711
1755
|
};
|
|
1712
1756
|
|
|
@@ -1718,6 +1762,8 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
1718
1762
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1719
1763
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1720
1764
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
1765
|
+
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1766
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1721
1767
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1722
1768
|
};
|
|
1723
1769
|
|
|
@@ -1729,6 +1775,8 @@ var ENV_DISTRICT_DE_PROD = {
|
|
|
1729
1775
|
API_URL: "https://api.magmamath.com/v2",
|
|
1730
1776
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1731
1777
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_DE",
|
|
1778
|
+
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1779
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
1732
1780
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1733
1781
|
};
|
|
1734
1782
|
|
|
@@ -2073,6 +2121,7 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2073
2121
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2074
2122
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2075
2123
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2124
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2076
2125
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2077
2126
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2078
2127
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2091,6 +2140,7 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2091
2140
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2092
2141
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2093
2142
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2143
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2094
2144
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2095
2145
|
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2096
2146
|
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
@@ -2108,6 +2158,7 @@ var ENV_MOBILE_GB_MARS = {
|
|
|
2108
2158
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2109
2159
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2110
2160
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2161
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2111
2162
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2112
2163
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2113
2164
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2125,6 +2176,7 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2125
2176
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2126
2177
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2127
2178
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2179
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2128
2180
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
2129
2181
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2130
2182
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2142,6 +2194,7 @@ var ENV_MOBILE_SCT_MARS = {
|
|
|
2142
2194
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2143
2195
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2144
2196
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2197
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2145
2198
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2146
2199
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2147
2200
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2158,6 +2211,7 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2158
2211
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2159
2212
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2160
2213
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2214
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2161
2215
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2162
2216
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2163
2217
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2191,6 +2245,7 @@ var ENV_MOBILE_US_PROD = {
|
|
|
2191
2245
|
API_URL: "https://api.magmamath.com/v2",
|
|
2192
2246
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2193
2247
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2248
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2194
2249
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_US",
|
|
2195
2250
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2196
2251
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2209,6 +2264,7 @@ var ENV_MOBILE_SE_PROD = {
|
|
|
2209
2264
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
2210
2265
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2211
2266
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
2267
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
2212
2268
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SE",
|
|
2213
2269
|
GOOGLE_AUTH: "https://api.matteappen.se/v2/auth/google",
|
|
2214
2270
|
MICROSOFT_AUTH: "https://api.matteappen.se/v2/auth/microsoft",
|
|
@@ -2226,6 +2282,7 @@ var ENV_MOBILE_GB_PROD = {
|
|
|
2226
2282
|
API_URL: "https://api.magmamath.com/v2",
|
|
2227
2283
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2228
2284
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2285
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2229
2286
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_GB",
|
|
2230
2287
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2231
2288
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2243,6 +2300,7 @@ var ENV_MOBILE_CA_PROD = {
|
|
|
2243
2300
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2244
2301
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2245
2302
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2303
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
2246
2304
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_CA",
|
|
2247
2305
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2248
2306
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2260,6 +2318,7 @@ var ENV_MOBILE_SCT_PROD = {
|
|
|
2260
2318
|
API_URL: "https://api.magmamath.com/v2",
|
|
2261
2319
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2262
2320
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2321
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2263
2322
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SCT",
|
|
2264
2323
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2265
2324
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2276,6 +2335,7 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2276
2335
|
API_URL: "https://api.magmamath.com/v2",
|
|
2277
2336
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2278
2337
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2338
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2279
2339
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2280
2340
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2281
2341
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|