@magmamath/frontend-config 1.3.6-rc.0 → 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 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +74 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +74 -28
- 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;
|
|
@@ -503,7 +505,6 @@ type MobileVarsPreset = {
|
|
|
503
505
|
type RegionSpecificWebAdminVars = {
|
|
504
506
|
API_URL: string;
|
|
505
507
|
CDN_HOST: string;
|
|
506
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
507
508
|
STUDENTS_WEB_URL: string;
|
|
508
509
|
DISTRICT_WEB_URL: string;
|
|
509
510
|
TEACHERS_WEB_URL: string;
|
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;
|
|
@@ -503,7 +505,6 @@ type MobileVarsPreset = {
|
|
|
503
505
|
type RegionSpecificWebAdminVars = {
|
|
504
506
|
API_URL: string;
|
|
505
507
|
CDN_HOST: string;
|
|
506
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
507
508
|
STUDENTS_WEB_URL: string;
|
|
508
509
|
DISTRICT_WEB_URL: string;
|
|
509
510
|
TEACHERS_WEB_URL: string;
|
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
|
|
|
@@ -1949,8 +1997,7 @@ var ENV_WEB_ADMIN_US_MARS = {
|
|
|
1949
1997
|
...ENV_WEB_ADMIN_COMMON,
|
|
1950
1998
|
...PLATFORM_URLS.MARS,
|
|
1951
1999
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1952
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1953
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2000
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1954
2001
|
};
|
|
1955
2002
|
|
|
1956
2003
|
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
@@ -1958,8 +2005,7 @@ var ENV_WEB_ADMIN_US_PROD = {
|
|
|
1958
2005
|
...ENV_WEB_ADMIN_COMMON,
|
|
1959
2006
|
...PLATFORM_URLS.PROD,
|
|
1960
2007
|
API_URL: "https://api.magmamath.com/v2",
|
|
1961
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1962
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2008
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1963
2009
|
};
|
|
1964
2010
|
|
|
1965
2011
|
// src/configs/env/web-admin/se/env.se.mars.ts
|
|
@@ -1969,8 +2015,7 @@ var ENV_WEB_ADMIN_SE_MARS = {
|
|
|
1969
2015
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1970
2016
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
1971
2017
|
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1972
|
-
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1973
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
2018
|
+
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1974
2019
|
};
|
|
1975
2020
|
|
|
1976
2021
|
// src/configs/env/web-admin/se/env.se.prod.ts
|
|
@@ -1980,8 +2025,7 @@ var ENV_WEB_ADMIN_SE_PROD = {
|
|
|
1980
2025
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1981
2026
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
1982
2027
|
API_URL: "https://api.matteappen.se/v2",
|
|
1983
|
-
CDN_HOST: "https://cdn.matteappen.se"
|
|
1984
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
2028
|
+
CDN_HOST: "https://cdn.matteappen.se"
|
|
1985
2029
|
};
|
|
1986
2030
|
|
|
1987
2031
|
// src/configs/env/web-admin/de/env.de.mars.ts
|
|
@@ -1989,8 +2033,7 @@ var ENV_WEB_ADMIN_DE_MARS = {
|
|
|
1989
2033
|
...ENV_WEB_ADMIN_COMMON,
|
|
1990
2034
|
...PLATFORM_URLS.MARS,
|
|
1991
2035
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1992
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1993
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2036
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1994
2037
|
};
|
|
1995
2038
|
|
|
1996
2039
|
// src/configs/env/web-admin/de/env.de.prod.ts
|
|
@@ -1998,8 +2041,7 @@ var ENV_WEB_ADMIN_DE_PROD = {
|
|
|
1998
2041
|
...ENV_WEB_ADMIN_COMMON,
|
|
1999
2042
|
...PLATFORM_URLS.PROD,
|
|
2000
2043
|
API_URL: "https://api.magmamath.com/v2",
|
|
2001
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
2002
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2044
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
2003
2045
|
};
|
|
2004
2046
|
|
|
2005
2047
|
// src/configs/env/web-admin/sct/env.sct.mars.ts
|
|
@@ -2007,8 +2049,7 @@ var ENV_WEB_ADMIN_SCT_MARS = {
|
|
|
2007
2049
|
...ENV_WEB_ADMIN_COMMON,
|
|
2008
2050
|
...PLATFORM_URLS.MARS,
|
|
2009
2051
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2010
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2011
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2052
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2012
2053
|
};
|
|
2013
2054
|
|
|
2014
2055
|
// src/configs/env/web-admin/sct/env.sct.prod.ts
|
|
@@ -2016,8 +2057,7 @@ var ENV_WEB_ADMIN_SCT_PROD = {
|
|
|
2016
2057
|
...ENV_WEB_ADMIN_COMMON,
|
|
2017
2058
|
...PLATFORM_URLS.PROD,
|
|
2018
2059
|
API_URL: "https://api.magmamath.com/v2",
|
|
2019
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
2020
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2060
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
2021
2061
|
};
|
|
2022
2062
|
|
|
2023
2063
|
// src/configs/env/web-admin/gb/env.gb.mars.ts
|
|
@@ -2025,8 +2065,7 @@ var ENV_WEB_ADMIN_GB_MARS = {
|
|
|
2025
2065
|
...ENV_WEB_ADMIN_COMMON,
|
|
2026
2066
|
...PLATFORM_URLS.MARS,
|
|
2027
2067
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2028
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2029
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2068
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2030
2069
|
};
|
|
2031
2070
|
|
|
2032
2071
|
// src/configs/env/web-admin/gb/env.gb.prod.ts
|
|
@@ -2034,8 +2073,7 @@ var ENV_WEB_ADMIN_GB_PROD = {
|
|
|
2034
2073
|
...ENV_WEB_ADMIN_COMMON,
|
|
2035
2074
|
...PLATFORM_URLS.PROD,
|
|
2036
2075
|
API_URL: "https://api.magmamath.com/v2",
|
|
2037
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
2038
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2076
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
2039
2077
|
};
|
|
2040
2078
|
|
|
2041
2079
|
// src/configs/env/web-admin/ca/env.ca.mars.ts
|
|
@@ -2043,8 +2081,7 @@ var ENV_WEB_ADMIN_CA_MARS = {
|
|
|
2043
2081
|
...ENV_WEB_ADMIN_COMMON,
|
|
2044
2082
|
...PLATFORM_URLS.MARS,
|
|
2045
2083
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2046
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2047
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations"
|
|
2084
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2048
2085
|
};
|
|
2049
2086
|
|
|
2050
2087
|
// src/configs/env/web-admin/ca/env.ca.prod.ts
|
|
@@ -2052,8 +2089,7 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
2052
2089
|
...ENV_WEB_ADMIN_COMMON,
|
|
2053
2090
|
...PLATFORM_URLS.PROD,
|
|
2054
2091
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2055
|
-
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
2056
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations"
|
|
2092
|
+
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
2057
2093
|
};
|
|
2058
2094
|
|
|
2059
2095
|
// src/configs/env/mobile/env.common.mars.ts
|
|
@@ -2085,6 +2121,7 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2085
2121
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2086
2122
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2087
2123
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2124
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2088
2125
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2089
2126
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2090
2127
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2103,6 +2140,7 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2103
2140
|
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2104
2141
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2105
2142
|
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2143
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2106
2144
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2107
2145
|
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2108
2146
|
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
@@ -2120,6 +2158,7 @@ var ENV_MOBILE_GB_MARS = {
|
|
|
2120
2158
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2121
2159
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2122
2160
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2161
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2123
2162
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2124
2163
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2125
2164
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2137,6 +2176,7 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2137
2176
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2138
2177
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2139
2178
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2179
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2140
2180
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
2141
2181
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2142
2182
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2154,6 +2194,7 @@ var ENV_MOBILE_SCT_MARS = {
|
|
|
2154
2194
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2155
2195
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2156
2196
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2197
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2157
2198
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2158
2199
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2159
2200
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2170,6 +2211,7 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2170
2211
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2171
2212
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2172
2213
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2214
|
+
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2173
2215
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2174
2216
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2175
2217
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
@@ -2203,6 +2245,7 @@ var ENV_MOBILE_US_PROD = {
|
|
|
2203
2245
|
API_URL: "https://api.magmamath.com/v2",
|
|
2204
2246
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2205
2247
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2248
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2206
2249
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_US",
|
|
2207
2250
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2208
2251
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2221,6 +2264,7 @@ var ENV_MOBILE_SE_PROD = {
|
|
|
2221
2264
|
CDN_HOST: "https://cdn.matteappen.se",
|
|
2222
2265
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2223
2266
|
SOCKET_URL: "https://sockets.matteappen.se",
|
|
2267
|
+
WEBSOCKETS_URL: "https://websockets.matteappen.se",
|
|
2224
2268
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SE",
|
|
2225
2269
|
GOOGLE_AUTH: "https://api.matteappen.se/v2/auth/google",
|
|
2226
2270
|
MICROSOFT_AUTH: "https://api.matteappen.se/v2/auth/microsoft",
|
|
@@ -2238,6 +2282,7 @@ var ENV_MOBILE_GB_PROD = {
|
|
|
2238
2282
|
API_URL: "https://api.magmamath.com/v2",
|
|
2239
2283
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2240
2284
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2285
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2241
2286
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_GB",
|
|
2242
2287
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2243
2288
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2255,6 +2300,7 @@ var ENV_MOBILE_CA_PROD = {
|
|
|
2255
2300
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2256
2301
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2257
2302
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2303
|
+
WEBSOCKETS_URL: "https://websockets.ca.magmamath.com",
|
|
2258
2304
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_CA",
|
|
2259
2305
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
2260
2306
|
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
@@ -2272,6 +2318,7 @@ var ENV_MOBILE_SCT_PROD = {
|
|
|
2272
2318
|
API_URL: "https://api.magmamath.com/v2",
|
|
2273
2319
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2274
2320
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2321
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2275
2322
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SCT",
|
|
2276
2323
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2277
2324
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2288,6 +2335,7 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2288
2335
|
API_URL: "https://api.magmamath.com/v2",
|
|
2289
2336
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2290
2337
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2338
|
+
WEBSOCKETS_URL: "https://websockets.magmamath.com",
|
|
2291
2339
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2292
2340
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2293
2341
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
@@ -2547,8 +2595,7 @@ var ENV_WEB_ADMIN_PL_MARS = {
|
|
|
2547
2595
|
...ENV_WEB_ADMIN_COMMON,
|
|
2548
2596
|
...PLATFORM_URLS.MARS,
|
|
2549
2597
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2550
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2551
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2598
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
2552
2599
|
};
|
|
2553
2600
|
|
|
2554
2601
|
// src/configs/env/web-admin/pl/env.pl.prod.ts
|
|
@@ -2556,8 +2603,7 @@ var ENV_WEB_ADMIN_PL_PROD = {
|
|
|
2556
2603
|
...ENV_WEB_ADMIN_COMMON,
|
|
2557
2604
|
...PLATFORM_URLS.PROD,
|
|
2558
2605
|
API_URL: "https://api.magmamath.com/v2",
|
|
2559
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
2560
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2606
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
2561
2607
|
};
|
|
2562
2608
|
|
|
2563
2609
|
// src/configs/env/mobile/pl/env.pl.mars.ts
|