@magmamath/frontend-config 1.7.6 → 1.7.8
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 +71 -1
- package/dist/index.d.ts +71 -1
- package/dist/index.js +321 -842
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +321 -843
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs.map +1 -1
- package/dist/translation/translation.constants.js.map +1 -1
- package/dist/translation/translation.constants.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1367,6 +1367,12 @@ var SSO_VIDIS_CONFIG = {
|
|
|
1367
1367
|
return url.href;
|
|
1368
1368
|
}
|
|
1369
1369
|
};
|
|
1370
|
+
var getVidisLogoutUrl = (envs, { idToken, postLogoutRedirectUri }) => {
|
|
1371
|
+
const url = new URL(envs.VIDIS_LOGOUT);
|
|
1372
|
+
url.searchParams.set("id_token_hint", idToken);
|
|
1373
|
+
url.searchParams.set("post_logout_redirect_uri", postLogoutRedirectUri);
|
|
1374
|
+
return url.href;
|
|
1375
|
+
};
|
|
1370
1376
|
|
|
1371
1377
|
// src/configs/env/env.helpers.ts
|
|
1372
1378
|
var ENV_BY_BUILD_TARGET = {
|
|
@@ -1488,24 +1494,31 @@ var PLATFORM_URLS = {
|
|
|
1488
1494
|
}
|
|
1489
1495
|
};
|
|
1490
1496
|
|
|
1491
|
-
// src/configs/env/auth-web/
|
|
1492
|
-
var
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1497
|
+
// src/configs/env/auth-web/env.common.mars.ts
|
|
1498
|
+
var ENV_AUTH_WEB_COMMON_MARS = {
|
|
1499
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1500
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1496
1501
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1497
1502
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1498
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
1499
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
1500
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
1501
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
1502
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
1503
|
-
AMPLITUDE_API_KEY: "e521466ce715087707e3ba925f4f57d5",
|
|
1504
1503
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1505
1504
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1506
1505
|
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1507
1506
|
};
|
|
1508
1507
|
|
|
1508
|
+
// src/configs/env/auth-web/us/us_main/env.us.mars.ts
|
|
1509
|
+
var ENV_AUTH_WEB_US_MARS = {
|
|
1510
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1511
|
+
...PLATFORM_URLS.MARS,
|
|
1512
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1513
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1514
|
+
GOOGLE_AUTH: "https://api.us.mars.magmamath.com/v2/auth/google",
|
|
1515
|
+
MICROSOFT_AUTH: "https://api.us.mars.magmamath.com/v2/auth/microsoft",
|
|
1516
|
+
CLEVER_AUTH: "https://api.us.mars.magmamath.com/v2/auth/clever",
|
|
1517
|
+
CLASS_LINK_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
1518
|
+
SCHOOLOGY_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink",
|
|
1519
|
+
AMPLITUDE_API_KEY: "e521466ce715087707e3ba925f4f57d5"
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1509
1522
|
// src/configs/env/auth-web/us/us_main/env.us.prod.ts
|
|
1510
1523
|
var ENV_AUTH_WEB_US_PROD = {
|
|
1511
1524
|
...PLATFORM_URLS.PROD,
|
|
@@ -1525,22 +1538,18 @@ var ENV_AUTH_WEB_US_PROD = {
|
|
|
1525
1538
|
|
|
1526
1539
|
// src/configs/env/auth-web/se/env.se.mars.ts
|
|
1527
1540
|
var ENV_AUTH_WEB_SE_MARS = {
|
|
1528
|
-
|
|
1541
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1542
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1543
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1529
1544
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1530
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1531
1545
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1532
1546
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1533
1547
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
1534
1548
|
PARENT_WEB_URL: "https://parents.mars.matteappen.se",
|
|
1535
1549
|
MAGMAMATH_URL: "https://www.magma.se",
|
|
1536
1550
|
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal",
|
|
1537
|
-
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
1538
|
-
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
1539
1551
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/trial/ds/?entityID=TestMatteappen",
|
|
1540
|
-
SKOLON_AUTH: "https://api.mars.
|
|
1541
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1542
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1543
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1552
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon"
|
|
1544
1553
|
};
|
|
1545
1554
|
|
|
1546
1555
|
// src/configs/env/auth-web/se/env.se.prod.ts
|
|
@@ -1563,19 +1572,15 @@ var ENV_AUTH_WEB_SE_PROD = {
|
|
|
1563
1572
|
|
|
1564
1573
|
// src/configs/env/auth-web/gb/env.gb.mars.ts
|
|
1565
1574
|
var ENV_AUTH_WEB_GB_MARS = {
|
|
1575
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1576
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1577
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1566
1578
|
...PLATFORM_URLS.MARS,
|
|
1567
1579
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1568
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1569
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1570
1580
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1571
1581
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
SKOLON_AUTH: "https://api.mars.matteappen.se/v2/auth/skolon",
|
|
1575
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
1576
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1577
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1578
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1582
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
1583
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin"
|
|
1579
1584
|
};
|
|
1580
1585
|
|
|
1581
1586
|
// src/configs/env/auth-web/gb/env.gb.prod.ts
|
|
@@ -1629,46 +1634,42 @@ var ENV_AUTH_WEB_CA_PROD = {
|
|
|
1629
1634
|
|
|
1630
1635
|
// src/configs/env/auth-web/sct/env.sct.mars.ts
|
|
1631
1636
|
var ENV_AUTH_WEB_SCT_MARS = {
|
|
1637
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1638
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1639
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1632
1640
|
...PLATFORM_URLS.MARS,
|
|
1633
1641
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1634
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1635
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1636
1642
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1637
1643
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
SKOLON_AUTH: "https://api.mars.matteappen.se/v2/auth/skolon",
|
|
1641
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
1642
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1643
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1644
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1644
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
1645
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin"
|
|
1645
1646
|
};
|
|
1646
1647
|
|
|
1647
1648
|
// src/configs/env/auth-web/de/env.de.mars.ts
|
|
1648
1649
|
var ENV_AUTH_WEB_DE_MARS = {
|
|
1650
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1651
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1652
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1649
1653
|
...PLATFORM_URLS.MARS,
|
|
1650
1654
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1654
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1655
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
1656
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
1657
|
-
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
1658
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1659
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1660
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1655
|
+
VIDIS_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/vidis/",
|
|
1656
|
+
VIDIS_LOGOUT: "https://aai-test.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout"
|
|
1661
1657
|
};
|
|
1662
1658
|
|
|
1663
1659
|
// src/configs/env/students-web/env.common.mars.ts
|
|
1664
1660
|
var ENV_STUDENTS_COMMON_MARS = {
|
|
1665
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1661
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1662
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1663
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
1664
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
1665
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
1666
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1666
1667
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1667
1668
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
1668
1669
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1669
1670
|
MYSCRIPT_APPLICATION_KEY: "5c5a5667-9232-405f-a996-89b10ddb9200",
|
|
1670
1671
|
MYSCRIPT_HMAC_KEY: "370da564-11b0-4ac7-a413-9eb61ee7db9f",
|
|
1671
|
-
MYSCRIPT_HOST: "myscript-
|
|
1672
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
1672
1673
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
1673
1674
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1674
1675
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -1680,12 +1681,12 @@ var ENV_STUDENTS_COMMON_MARS = {
|
|
|
1680
1681
|
var ENV_STUDENTS_WEB_US_MARS = {
|
|
1681
1682
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1682
1683
|
...PLATFORM_URLS.MARS,
|
|
1683
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1684
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1684
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1685
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
1686
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1685
1687
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
1686
|
-
SOCKET_URL: "https://sockets
|
|
1687
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com"
|
|
1688
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1688
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
1689
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com"
|
|
1689
1690
|
};
|
|
1690
1691
|
|
|
1691
1692
|
// src/configs/env/students-web/env.common.prod.ts
|
|
@@ -1718,13 +1719,8 @@ var ENV_STUDENTS_WEB_US_PROD = {
|
|
|
1718
1719
|
// src/configs/env/students-web/se/env.se.mars.ts
|
|
1719
1720
|
var ENV_STUDENTS_WEB_SE_MARS = {
|
|
1720
1721
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1721
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1722
1722
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1723
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1724
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1725
1723
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SE",
|
|
1726
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1727
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1728
1724
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1729
1725
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1730
1726
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1754,11 +1750,7 @@ var ENV_STUDENTS_WEB_GB_MARS = {
|
|
|
1754
1750
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1755
1751
|
...PLATFORM_URLS.MARS,
|
|
1756
1752
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1757
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1758
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1759
1753
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_GB",
|
|
1760
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1761
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1762
1754
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1763
1755
|
};
|
|
1764
1756
|
|
|
@@ -1808,11 +1800,7 @@ var ENV_STUDENTS_WEB_SCT_MARS = {
|
|
|
1808
1800
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1809
1801
|
...PLATFORM_URLS.MARS,
|
|
1810
1802
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1811
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1812
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1813
1803
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SCT",
|
|
1814
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1815
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1816
1804
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1817
1805
|
};
|
|
1818
1806
|
|
|
@@ -1834,12 +1822,7 @@ var ENV_STUDENTS_WEB_DE_MARS = {
|
|
|
1834
1822
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1835
1823
|
...PLATFORM_URLS.MARS,
|
|
1836
1824
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1837
|
-
|
|
1838
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1839
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE",
|
|
1840
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1841
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1842
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1825
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE"
|
|
1843
1826
|
};
|
|
1844
1827
|
|
|
1845
1828
|
// src/configs/env/students-web/de/env.de.prod.ts
|
|
@@ -1857,8 +1840,13 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1857
1840
|
|
|
1858
1841
|
// src/configs/env/teachers-web/env.common.mars.ts
|
|
1859
1842
|
var ENV_TEACHERS_COMMON_MARS = {
|
|
1860
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1861
|
-
|
|
1843
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1844
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1845
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
1846
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
1847
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
1848
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1849
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
1862
1850
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1863
1851
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
1864
1852
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
@@ -1874,12 +1862,12 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1874
1862
|
var ENV_TEACHERS_WEB_US_MARS = {
|
|
1875
1863
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1876
1864
|
...PLATFORM_URLS.MARS,
|
|
1877
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1878
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1865
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1866
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
1867
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1879
1868
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1880
|
-
SOCKET_URL: "https://sockets
|
|
1881
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com"
|
|
1882
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1869
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
1870
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com"
|
|
1883
1871
|
};
|
|
1884
1872
|
|
|
1885
1873
|
// src/configs/env/teachers-web/env.common.prod.ts
|
|
@@ -1911,13 +1899,8 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1911
1899
|
// src/configs/env/teachers-web/se/env.se.mars.ts
|
|
1912
1900
|
var ENV_TEACHERS_WEB_SE_MARS = {
|
|
1913
1901
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1914
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1915
1902
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1916
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1917
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1918
1903
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SE",
|
|
1919
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1920
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1921
1904
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1922
1905
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1923
1906
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1947,11 +1930,7 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1947
1930
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1948
1931
|
...PLATFORM_URLS.MARS,
|
|
1949
1932
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1950
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1951
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1952
1933
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1953
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1954
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1955
1934
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1956
1935
|
};
|
|
1957
1936
|
|
|
@@ -2001,11 +1980,7 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
2001
1980
|
...ENV_TEACHERS_COMMON_MARS,
|
|
2002
1981
|
...PLATFORM_URLS.MARS,
|
|
2003
1982
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2004
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2005
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2006
1983
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
2007
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2008
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2009
1984
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2010
1985
|
};
|
|
2011
1986
|
|
|
@@ -2027,12 +2002,7 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
2027
2002
|
...ENV_TEACHERS_COMMON_MARS,
|
|
2028
2003
|
...PLATFORM_URLS.MARS,
|
|
2029
2004
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2030
|
-
|
|
2031
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2032
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
2033
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2034
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2035
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2005
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE"
|
|
2036
2006
|
};
|
|
2037
2007
|
|
|
2038
2008
|
// src/configs/env/teachers-web/de/env.de.prod.ts
|
|
@@ -2050,7 +2020,12 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
2050
2020
|
|
|
2051
2021
|
// src/configs/env/district-dash/env.common.mars.ts
|
|
2052
2022
|
var ENV_DISTRICT_COMMON_MARS = {
|
|
2053
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2023
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
2024
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2025
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2026
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
2027
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
2028
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2054
2029
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
2055
2030
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
2056
2031
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
@@ -2061,12 +2036,12 @@ var ENV_DISTRICT_COMMON_MARS = {
|
|
|
2061
2036
|
var ENV_DISTRICT_US_MARS = {
|
|
2062
2037
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2063
2038
|
...PLATFORM_URLS.MARS,
|
|
2064
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2065
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2039
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2040
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2041
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
2066
2042
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
2067
|
-
SOCKET_URL: "https://sockets
|
|
2068
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2069
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2043
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
2044
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com",
|
|
2070
2045
|
AMPLITUDE_API_KEY: "407ea49ce6e1586815bcfd05ec5f15dc"
|
|
2071
2046
|
};
|
|
2072
2047
|
|
|
@@ -2094,13 +2069,8 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
2094
2069
|
// src/configs/env/district-dash/se/env.se.mars.ts
|
|
2095
2070
|
var ENV_DISTRICT_SE_MARS = {
|
|
2096
2071
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2097
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
2098
2072
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
2099
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2100
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2101
2073
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SE",
|
|
2102
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2103
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2104
2074
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
2105
2075
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
2106
2076
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -2130,11 +2100,7 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
2130
2100
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2131
2101
|
...PLATFORM_URLS.MARS,
|
|
2132
2102
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2133
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2134
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2135
2103
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
2136
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2137
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2138
2104
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2139
2105
|
};
|
|
2140
2106
|
|
|
@@ -2184,11 +2150,7 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
2184
2150
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2185
2151
|
...PLATFORM_URLS.MARS,
|
|
2186
2152
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2187
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2188
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2189
2153
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
2190
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2191
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2192
2154
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2193
2155
|
};
|
|
2194
2156
|
|
|
@@ -2210,12 +2172,7 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
2210
2172
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2211
2173
|
...PLATFORM_URLS.MARS,
|
|
2212
2174
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2213
|
-
|
|
2214
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2215
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
2216
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2217
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2218
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2175
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE"
|
|
2219
2176
|
};
|
|
2220
2177
|
|
|
2221
2178
|
// src/configs/env/district-dash/de/env.de.prod.ts
|
|
@@ -2257,6 +2214,7 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
2257
2214
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2258
2215
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2259
2216
|
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2217
|
+
VIDIS_LOGOUT: "https://aai.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2260
2218
|
INTERCOM_APP_ID: "tjidhu4j"
|
|
2261
2219
|
};
|
|
2262
2220
|
|
|
@@ -2446,9 +2404,9 @@ var ENV_WEB_ADMIN_COMMON = {
|
|
|
2446
2404
|
var ENV_WEB_ADMIN_US_MAIN_MARS = {
|
|
2447
2405
|
...ENV_WEB_ADMIN_COMMON,
|
|
2448
2406
|
...PLATFORM_URLS.MARS,
|
|
2449
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2450
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2451
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2407
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2408
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2409
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations"
|
|
2452
2410
|
};
|
|
2453
2411
|
|
|
2454
2412
|
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
@@ -2464,8 +2422,8 @@ var ENV_WEB_ADMIN_US_MAIN_PROD = {
|
|
|
2464
2422
|
var ENV_WEB_ADMIN_CA_MARS = {
|
|
2465
2423
|
...ENV_WEB_ADMIN_COMMON,
|
|
2466
2424
|
...PLATFORM_URLS.MARS,
|
|
2467
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2468
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2425
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2426
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2469
2427
|
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations"
|
|
2470
2428
|
};
|
|
2471
2429
|
|
|
@@ -2482,9 +2440,9 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
2482
2440
|
var ENV_WEB_ADMIN_EU_MARS = {
|
|
2483
2441
|
...ENV_WEB_ADMIN_COMMON,
|
|
2484
2442
|
...PLATFORM_URLS.MARS,
|
|
2485
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2486
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2487
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2443
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2444
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2445
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations"
|
|
2488
2446
|
};
|
|
2489
2447
|
|
|
2490
2448
|
// src/configs/env/web-admin/eu/env.eu.prod.ts
|
|
@@ -2498,7 +2456,11 @@ var ENV_WEB_ADMIN_EU_PROD = {
|
|
|
2498
2456
|
|
|
2499
2457
|
// src/configs/env/mobile/env.common.mars.ts
|
|
2500
2458
|
var ENV_MOBILE_COMMON_MARS = {
|
|
2501
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2459
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
2460
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2461
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2462
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
2463
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
2502
2464
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
2503
2465
|
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq",
|
|
2504
2466
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
@@ -2506,7 +2468,7 @@ var ENV_MOBILE_COMMON_MARS = {
|
|
|
2506
2468
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
2507
2469
|
MYSCRIPT_APPLICATION_KEY: "5c5a5667-9232-405f-a996-89b10ddb9200",
|
|
2508
2470
|
MYSCRIPT_HMAC_KEY: "370da564-11b0-4ac7-a413-9eb61ee7db9f",
|
|
2509
|
-
MYSCRIPT_HOST: "myscript-
|
|
2471
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
2510
2472
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
2511
2473
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
2512
2474
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -2522,34 +2484,30 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2522
2484
|
...ENV_MOBILE_COMMON_MARS,
|
|
2523
2485
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2524
2486
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
2525
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2526
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2527
|
-
|
|
2528
|
-
|
|
2487
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2488
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2489
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
2490
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
2491
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com",
|
|
2529
2492
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2530
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2531
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
2532
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
2533
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
2534
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
2493
|
+
GOOGLE_AUTH: "https://api.us.mars.magmamath.com/v2/auth/google",
|
|
2494
|
+
MICROSOFT_AUTH: "https://api.us.mars.magmamath.com/v2/auth/microsoft",
|
|
2495
|
+
CLASS_LINK_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
2496
|
+
SCHOOLOGY_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink",
|
|
2497
|
+
CLEVER_AUTH: "https://api.us.mars.magmamath.com/v2/auth/clever",
|
|
2535
2498
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2536
2499
|
};
|
|
2537
2500
|
|
|
2538
2501
|
// src/configs/env/mobile/se/env.se.mars.ts
|
|
2539
2502
|
var ENV_MOBILE_SE_MARS = {
|
|
2540
2503
|
...ENV_MOBILE_COMMON_MARS,
|
|
2504
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2505
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2541
2506
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
2542
2507
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
2543
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
2544
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2545
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2546
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2547
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2548
2508
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2549
|
-
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2550
|
-
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
2551
2509
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/trial/ds/?entityID=TestMatteappen",
|
|
2552
|
-
SKOLON_AUTH: "https://api.mars.
|
|
2510
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2553
2511
|
PROBLEM_CREATOR_URL: "https://teachers.mars.matteappen.se/content/react-native/problems/add",
|
|
2554
2512
|
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal"
|
|
2555
2513
|
};
|
|
@@ -2557,17 +2515,13 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2557
2515
|
// src/configs/env/mobile/gb/env.gb.mars.ts
|
|
2558
2516
|
var ENV_MOBILE_GB_MARS = {
|
|
2559
2517
|
...ENV_MOBILE_COMMON_MARS,
|
|
2518
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2519
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2560
2520
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2561
2521
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2562
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2563
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2564
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2565
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2566
2522
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
SKOLON_AUTH: "https://api.mars.magmamath.com/v2/auth/skolon",
|
|
2570
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
2523
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2524
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin",
|
|
2571
2525
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2572
2526
|
};
|
|
2573
2527
|
|
|
@@ -2593,33 +2547,26 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2593
2547
|
// src/configs/env/mobile/sct/env.sct.mars.ts
|
|
2594
2548
|
var ENV_MOBILE_SCT_MARS = {
|
|
2595
2549
|
...ENV_MOBILE_COMMON_MARS,
|
|
2550
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2551
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2596
2552
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2597
2553
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2598
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2599
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2600
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2601
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2602
2554
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
SKOLON_AUTH: "https://api.mars.magmamath.com/v2/auth/skolon",
|
|
2606
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
2555
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2556
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin",
|
|
2607
2557
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2608
2558
|
};
|
|
2609
2559
|
|
|
2610
2560
|
// src/configs/env/mobile/de/env.de.mars.ts
|
|
2611
2561
|
var ENV_MOBILE_DE_MARS = {
|
|
2612
2562
|
...ENV_MOBILE_COMMON_MARS,
|
|
2563
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2564
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2613
2565
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2614
2566
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2615
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2616
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2617
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2618
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2619
2567
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
2568
|
+
VIDIS_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/vidis/",
|
|
2569
|
+
VIDIS_LOGOUT: "https://aai-test.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2623
2570
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2624
2571
|
};
|
|
2625
2572
|
|
|
@@ -2746,13 +2693,14 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2746
2693
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2747
2694
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2748
2695
|
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2696
|
+
VIDIS_LOGOUT: "https://aai.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2749
2697
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.PROD.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2750
2698
|
};
|
|
2751
2699
|
|
|
2752
2700
|
// src/configs/env/parent-web/us/us_main/env.us.mars.ts
|
|
2753
2701
|
var ENV_PARENT_WEB_US_MARS = {
|
|
2754
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2755
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2702
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2703
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2756
2704
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
2757
2705
|
};
|
|
2758
2706
|
|
|
@@ -2769,10 +2717,15 @@ var ENV_PARENT_WEB_US_VENUS = {
|
|
|
2769
2717
|
AUTH_WEB_URL: PLATFORM_URLS.VENUS.AUTH_WEB_URL
|
|
2770
2718
|
};
|
|
2771
2719
|
|
|
2720
|
+
// src/configs/env/parent-web/env.common.mars.ts
|
|
2721
|
+
var ENV_PARENT_WEB_COMMON_MARS = {
|
|
2722
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2723
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com"
|
|
2724
|
+
};
|
|
2725
|
+
|
|
2772
2726
|
// src/configs/env/parent-web/se/env.se.mars.ts
|
|
2773
2727
|
var ENV_PARENT_WEB_SE_MARS = {
|
|
2774
|
-
|
|
2775
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2728
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2776
2729
|
AUTH_WEB_URL: "https://app.mars.matteappen.se"
|
|
2777
2730
|
};
|
|
2778
2731
|
|
|
@@ -2791,8 +2744,7 @@ var ENV_PARENT_WEB_SE_VENUS = {
|
|
|
2791
2744
|
|
|
2792
2745
|
// src/configs/env/parent-web/gb/env.gb.mars.ts
|
|
2793
2746
|
var ENV_PARENT_WEB_GB_MARS = {
|
|
2794
|
-
|
|
2795
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2747
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2796
2748
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`
|
|
2797
2749
|
};
|
|
2798
2750
|
|
|
@@ -2831,8 +2783,7 @@ var ENV_PARENT_WEB_CA_VENUS = {
|
|
|
2831
2783
|
|
|
2832
2784
|
// src/configs/env/parent-web/sct/env.sct.mars.ts
|
|
2833
2785
|
var ENV_PARENT_WEB_SCT_MARS = {
|
|
2834
|
-
|
|
2835
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2786
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2836
2787
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`
|
|
2837
2788
|
};
|
|
2838
2789
|
|
|
@@ -2851,8 +2802,7 @@ var ENV_PARENT_WEB_SCT_VENUS = {
|
|
|
2851
2802
|
|
|
2852
2803
|
// src/configs/env/parent-web/de/env.de.mars.ts
|
|
2853
2804
|
var ENV_PARENT_WEB_DE_MARS = {
|
|
2854
|
-
|
|
2855
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2805
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2856
2806
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`
|
|
2857
2807
|
};
|
|
2858
2808
|
|
|
@@ -2871,17 +2821,11 @@ var ENV_PARENT_WEB_DE_VENUS = {
|
|
|
2871
2821
|
|
|
2872
2822
|
// src/configs/env/auth-web/pl/env.pl.mars.ts
|
|
2873
2823
|
var ENV_AUTH_WEB_PL_MARS = {
|
|
2824
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
2825
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2826
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2874
2827
|
...PLATFORM_URLS.MARS,
|
|
2875
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl
|
|
2876
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2877
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2878
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2879
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
2880
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2881
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
2882
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
2883
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
2884
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
2828
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`
|
|
2885
2829
|
};
|
|
2886
2830
|
|
|
2887
2831
|
// src/configs/env/auth-web/pl/env.pl.prod.ts
|
|
@@ -2909,12 +2853,7 @@ var ENV_STUDENTS_WEB_PL_MARS = {
|
|
|
2909
2853
|
...ENV_STUDENTS_COMMON_MARS,
|
|
2910
2854
|
...PLATFORM_URLS.MARS,
|
|
2911
2855
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2912
|
-
|
|
2913
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2914
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PL",
|
|
2915
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2916
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2917
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2856
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PL"
|
|
2918
2857
|
};
|
|
2919
2858
|
|
|
2920
2859
|
// src/configs/env/students-web/pl/env.pl.prod.ts
|
|
@@ -2942,12 +2881,7 @@ var ENV_TEACHERS_WEB_PL_MARS = {
|
|
|
2942
2881
|
...ENV_TEACHERS_COMMON_MARS,
|
|
2943
2882
|
...PLATFORM_URLS.MARS,
|
|
2944
2883
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2945
|
-
|
|
2946
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2947
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PL",
|
|
2948
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2949
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2950
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2884
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PL"
|
|
2951
2885
|
};
|
|
2952
2886
|
|
|
2953
2887
|
// src/configs/env/teachers-web/pl/env.pl.prod.ts
|
|
@@ -2975,12 +2909,7 @@ var ENV_DISTRICT_PL_MARS = {
|
|
|
2975
2909
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2976
2910
|
...PLATFORM_URLS.MARS,
|
|
2977
2911
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2978
|
-
|
|
2979
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2980
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PL",
|
|
2981
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2982
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2983
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2912
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PL"
|
|
2984
2913
|
};
|
|
2985
2914
|
|
|
2986
2915
|
// src/configs/env/district-dash/pl/env.pl.prod.ts
|
|
@@ -3006,15 +2935,11 @@ var ENV_DISTRICT_PL_VENUS = {
|
|
|
3006
2935
|
// src/configs/env/mobile/pl/env.pl.mars.ts
|
|
3007
2936
|
var ENV_MOBILE_PL_MARS = {
|
|
3008
2937
|
...ENV_MOBILE_COMMON_MARS,
|
|
2938
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2939
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3009
2940
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3010
2941
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
3011
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3012
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3013
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3014
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3015
2942
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_PL",
|
|
3016
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3017
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3018
2943
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3019
2944
|
};
|
|
3020
2945
|
|
|
@@ -3035,8 +2960,7 @@ var ENV_MOBILE_PL_PROD = {
|
|
|
3035
2960
|
|
|
3036
2961
|
// src/configs/env/parent-web/pl/env.pl.mars.ts
|
|
3037
2962
|
var ENV_PARENT_WEB_PL_MARS = {
|
|
3038
|
-
|
|
3039
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2963
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3040
2964
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`
|
|
3041
2965
|
};
|
|
3042
2966
|
|
|
@@ -3055,17 +2979,11 @@ var ENV_PARENT_WEB_PL_VENUS = {
|
|
|
3055
2979
|
|
|
3056
2980
|
// src/configs/env/auth-web/it/env.it.mars.ts
|
|
3057
2981
|
var ENV_AUTH_WEB_IT_MARS = {
|
|
2982
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
2983
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2984
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3058
2985
|
...PLATFORM_URLS.MARS,
|
|
3059
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it
|
|
3060
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3061
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3062
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3063
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3064
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3065
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3066
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3067
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3068
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
2986
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`
|
|
3069
2987
|
};
|
|
3070
2988
|
|
|
3071
2989
|
// src/configs/env/auth-web/it/env.it.prod.ts
|
|
@@ -3093,12 +3011,7 @@ var ENV_STUDENTS_WEB_IT_MARS = {
|
|
|
3093
3011
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3094
3012
|
...PLATFORM_URLS.MARS,
|
|
3095
3013
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3096
|
-
|
|
3097
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3098
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IT",
|
|
3099
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3100
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3101
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3014
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IT"
|
|
3102
3015
|
};
|
|
3103
3016
|
|
|
3104
3017
|
// src/configs/env/students-web/it/env.it.prod.ts
|
|
@@ -3126,12 +3039,7 @@ var ENV_TEACHERS_WEB_IT_MARS = {
|
|
|
3126
3039
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3127
3040
|
...PLATFORM_URLS.MARS,
|
|
3128
3041
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3129
|
-
|
|
3130
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3131
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IT",
|
|
3132
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3133
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3134
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3042
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IT"
|
|
3135
3043
|
};
|
|
3136
3044
|
|
|
3137
3045
|
// src/configs/env/teachers-web/it/env.it.prod.ts
|
|
@@ -3159,12 +3067,7 @@ var ENV_DISTRICT_IT_MARS = {
|
|
|
3159
3067
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3160
3068
|
...PLATFORM_URLS.MARS,
|
|
3161
3069
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3162
|
-
|
|
3163
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3164
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IT",
|
|
3165
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3166
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3167
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3070
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IT"
|
|
3168
3071
|
};
|
|
3169
3072
|
|
|
3170
3073
|
// src/configs/env/district-dash/it/env.it.prod.ts
|
|
@@ -3190,14 +3093,10 @@ var ENV_DISTRICT_IT_VENUS = {
|
|
|
3190
3093
|
// src/configs/env/mobile/it/env.it.mars.ts
|
|
3191
3094
|
var ENV_MOBILE_IT_MARS = {
|
|
3192
3095
|
...ENV_MOBILE_COMMON_MARS,
|
|
3096
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3097
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3193
3098
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3194
3099
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3195
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3196
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3197
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3198
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3199
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3200
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3201
3100
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IT",
|
|
3202
3101
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3203
3102
|
};
|
|
@@ -3219,8 +3118,7 @@ var ENV_MOBILE_IT_PROD = {
|
|
|
3219
3118
|
|
|
3220
3119
|
// src/configs/env/parent-web/it/env.it.mars.ts
|
|
3221
3120
|
var ENV_PARENT_WEB_IT_MARS = {
|
|
3222
|
-
|
|
3223
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3121
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3224
3122
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`
|
|
3225
3123
|
};
|
|
3226
3124
|
|
|
@@ -3239,17 +3137,11 @@ var ENV_PARENT_WEB_IT_VENUS = {
|
|
|
3239
3137
|
|
|
3240
3138
|
// src/configs/env/auth-web/fr/env.fr.mars.ts
|
|
3241
3139
|
var ENV_AUTH_WEB_FR_MARS = {
|
|
3140
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3141
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3142
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3242
3143
|
...PLATFORM_URLS.MARS,
|
|
3243
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr
|
|
3244
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3245
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3246
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3247
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3248
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3249
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3250
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3251
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3252
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3144
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`
|
|
3253
3145
|
};
|
|
3254
3146
|
|
|
3255
3147
|
// src/configs/env/auth-web/fr/env.fr.prod.ts
|
|
@@ -3277,12 +3169,7 @@ var ENV_STUDENTS_WEB_FR_MARS = {
|
|
|
3277
3169
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3278
3170
|
...PLATFORM_URLS.MARS,
|
|
3279
3171
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3280
|
-
|
|
3281
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3282
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FR",
|
|
3283
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3284
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3285
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3172
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FR"
|
|
3286
3173
|
};
|
|
3287
3174
|
|
|
3288
3175
|
// src/configs/env/students-web/fr/env.fr.prod.ts
|
|
@@ -3310,12 +3197,7 @@ var ENV_TEACHERS_WEB_FR_MARS = {
|
|
|
3310
3197
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3311
3198
|
...PLATFORM_URLS.MARS,
|
|
3312
3199
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3313
|
-
|
|
3314
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3315
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FR",
|
|
3316
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3317
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3318
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3200
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FR"
|
|
3319
3201
|
};
|
|
3320
3202
|
|
|
3321
3203
|
// src/configs/env/teachers-web/fr/env.fr.prod.ts
|
|
@@ -3343,12 +3225,7 @@ var ENV_DISTRICT_FR_MARS = {
|
|
|
3343
3225
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3344
3226
|
...PLATFORM_URLS.MARS,
|
|
3345
3227
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3346
|
-
|
|
3347
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3348
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FR",
|
|
3349
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3350
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3351
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3228
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FR"
|
|
3352
3229
|
};
|
|
3353
3230
|
|
|
3354
3231
|
// src/configs/env/district-dash/fr/env.fr.prod.ts
|
|
@@ -3374,14 +3251,10 @@ var ENV_DISTRICT_FR_VENUS = {
|
|
|
3374
3251
|
// src/configs/env/mobile/fr/env.fr.mars.ts
|
|
3375
3252
|
var ENV_MOBILE_FR_MARS = {
|
|
3376
3253
|
...ENV_MOBILE_COMMON_MARS,
|
|
3254
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3255
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3377
3256
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3378
3257
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3379
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3380
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3381
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3382
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3383
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3384
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3385
3258
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_FR",
|
|
3386
3259
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3387
3260
|
};
|
|
@@ -3403,8 +3276,7 @@ var ENV_MOBILE_FR_PROD = {
|
|
|
3403
3276
|
|
|
3404
3277
|
// src/configs/env/parent-web/fr/env.fr.mars.ts
|
|
3405
3278
|
var ENV_PARENT_WEB_FR_MARS = {
|
|
3406
|
-
|
|
3407
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3279
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3408
3280
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`
|
|
3409
3281
|
};
|
|
3410
3282
|
|
|
@@ -3423,17 +3295,11 @@ var ENV_PARENT_WEB_FR_VENUS = {
|
|
|
3423
3295
|
|
|
3424
3296
|
// src/configs/env/auth-web/da/env.da.mars.ts
|
|
3425
3297
|
var ENV_AUTH_WEB_DA_MARS = {
|
|
3298
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3299
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3300
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3426
3301
|
...PLATFORM_URLS.MARS,
|
|
3427
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da
|
|
3428
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3429
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3430
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3431
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3432
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3433
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3434
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3435
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3436
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3302
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`
|
|
3437
3303
|
};
|
|
3438
3304
|
|
|
3439
3305
|
// src/configs/env/auth-web/da/env.da.prod.ts
|
|
@@ -3461,12 +3327,7 @@ var ENV_STUDENTS_WEB_DA_MARS = {
|
|
|
3461
3327
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3462
3328
|
...PLATFORM_URLS.MARS,
|
|
3463
3329
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3464
|
-
|
|
3465
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3466
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DK",
|
|
3467
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3468
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3469
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3330
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DK"
|
|
3470
3331
|
};
|
|
3471
3332
|
|
|
3472
3333
|
// src/configs/env/students-web/da/env.da.prod.ts
|
|
@@ -3494,12 +3355,7 @@ var ENV_TEACHERS_WEB_DA_MARS = {
|
|
|
3494
3355
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3495
3356
|
...PLATFORM_URLS.MARS,
|
|
3496
3357
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3497
|
-
|
|
3498
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3499
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DK",
|
|
3500
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3501
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3502
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3358
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DK"
|
|
3503
3359
|
};
|
|
3504
3360
|
|
|
3505
3361
|
// src/configs/env/teachers-web/da/env.da.prod.ts
|
|
@@ -3527,12 +3383,7 @@ var ENV_DISTRICT_DA_MARS = {
|
|
|
3527
3383
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3528
3384
|
...PLATFORM_URLS.MARS,
|
|
3529
3385
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3530
|
-
|
|
3531
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3532
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DK",
|
|
3533
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3534
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3535
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3386
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DK"
|
|
3536
3387
|
};
|
|
3537
3388
|
|
|
3538
3389
|
// src/configs/env/district-dash/da/env.da.prod.ts
|
|
@@ -3558,14 +3409,10 @@ var ENV_DISTRICT_DA_VENUS = {
|
|
|
3558
3409
|
// src/configs/env/mobile/da/env.da.mars.ts
|
|
3559
3410
|
var ENV_MOBILE_DA_MARS = {
|
|
3560
3411
|
...ENV_MOBILE_COMMON_MARS,
|
|
3412
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3413
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3561
3414
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3562
3415
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3563
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3564
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3565
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3566
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3567
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3568
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3569
3416
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DK",
|
|
3570
3417
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3571
3418
|
};
|
|
@@ -3587,8 +3434,7 @@ var ENV_MOBILE_DA_PROD = {
|
|
|
3587
3434
|
|
|
3588
3435
|
// src/configs/env/parent-web/da/env.da.mars.ts
|
|
3589
3436
|
var ENV_PARENT_WEB_DA_MARS = {
|
|
3590
|
-
|
|
3591
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3437
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3592
3438
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`
|
|
3593
3439
|
};
|
|
3594
3440
|
|
|
@@ -3607,17 +3453,11 @@ var ENV_PARENT_WEB_DA_VENUS = {
|
|
|
3607
3453
|
|
|
3608
3454
|
// src/configs/env/auth-web/no/env.no.mars.ts
|
|
3609
3455
|
var ENV_AUTH_WEB_NO_MARS = {
|
|
3456
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3457
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3458
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3610
3459
|
...PLATFORM_URLS.MARS,
|
|
3611
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no
|
|
3612
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3613
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3614
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3615
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3616
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3617
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3618
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3619
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3620
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3460
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`
|
|
3621
3461
|
};
|
|
3622
3462
|
|
|
3623
3463
|
// src/configs/env/auth-web/no/env.no.prod.ts
|
|
@@ -3645,12 +3485,7 @@ var ENV_STUDENTS_WEB_NO_MARS = {
|
|
|
3645
3485
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3646
3486
|
...PLATFORM_URLS.MARS,
|
|
3647
3487
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3648
|
-
|
|
3649
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3650
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NO",
|
|
3651
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3652
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3653
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3488
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NO"
|
|
3654
3489
|
};
|
|
3655
3490
|
|
|
3656
3491
|
// src/configs/env/students-web/no/env.no.prod.ts
|
|
@@ -3678,12 +3513,7 @@ var ENV_TEACHERS_WEB_NO_MARS = {
|
|
|
3678
3513
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3679
3514
|
...PLATFORM_URLS.MARS,
|
|
3680
3515
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3681
|
-
|
|
3682
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3683
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NO",
|
|
3684
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3685
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3686
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3516
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NO"
|
|
3687
3517
|
};
|
|
3688
3518
|
|
|
3689
3519
|
// src/configs/env/teachers-web/no/env.no.prod.ts
|
|
@@ -3711,12 +3541,7 @@ var ENV_DISTRICT_NO_MARS = {
|
|
|
3711
3541
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3712
3542
|
...PLATFORM_URLS.MARS,
|
|
3713
3543
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3714
|
-
|
|
3715
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3716
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NO",
|
|
3717
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3718
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3719
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3544
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NO"
|
|
3720
3545
|
};
|
|
3721
3546
|
|
|
3722
3547
|
// src/configs/env/district-dash/no/env.no.prod.ts
|
|
@@ -3742,14 +3567,10 @@ var ENV_DISTRICT_NO_VENUS = {
|
|
|
3742
3567
|
// src/configs/env/mobile/no/env.no.mars.ts
|
|
3743
3568
|
var ENV_MOBILE_NO_MARS = {
|
|
3744
3569
|
...ENV_MOBILE_COMMON_MARS,
|
|
3570
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3571
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3745
3572
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3746
3573
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3747
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3748
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3749
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3750
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3751
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3752
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3753
3574
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NO",
|
|
3754
3575
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3755
3576
|
};
|
|
@@ -3771,8 +3592,7 @@ var ENV_MOBILE_NO_PROD = {
|
|
|
3771
3592
|
|
|
3772
3593
|
// src/configs/env/parent-web/no/env.no.mars.ts
|
|
3773
3594
|
var ENV_PARENT_WEB_NO_MARS = {
|
|
3774
|
-
|
|
3775
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3595
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3776
3596
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`
|
|
3777
3597
|
};
|
|
3778
3598
|
|
|
@@ -3791,17 +3611,11 @@ var ENV_PARENT_WEB_NO_VENUS = {
|
|
|
3791
3611
|
|
|
3792
3612
|
// src/configs/env/auth-web/nl/env.nl.mars.ts
|
|
3793
3613
|
var ENV_AUTH_WEB_NL_MARS = {
|
|
3614
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3615
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3616
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3794
3617
|
...PLATFORM_URLS.MARS,
|
|
3795
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl
|
|
3796
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3797
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3798
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3799
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3800
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3801
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3802
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3803
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3804
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3618
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`
|
|
3805
3619
|
};
|
|
3806
3620
|
|
|
3807
3621
|
// src/configs/env/auth-web/nl/env.nl.prod.ts
|
|
@@ -3829,12 +3643,7 @@ var ENV_STUDENTS_WEB_NL_MARS = {
|
|
|
3829
3643
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3830
3644
|
...PLATFORM_URLS.MARS,
|
|
3831
3645
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3832
|
-
|
|
3833
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3834
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL",
|
|
3835
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3836
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3837
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3646
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL"
|
|
3838
3647
|
};
|
|
3839
3648
|
|
|
3840
3649
|
// src/configs/env/students-web/nl/env.nl.prod.ts
|
|
@@ -3862,12 +3671,7 @@ var ENV_TEACHERS_WEB_NL_MARS = {
|
|
|
3862
3671
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3863
3672
|
...PLATFORM_URLS.MARS,
|
|
3864
3673
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3865
|
-
|
|
3866
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3867
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL",
|
|
3868
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3869
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3870
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3674
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL"
|
|
3871
3675
|
};
|
|
3872
3676
|
|
|
3873
3677
|
// src/configs/env/teachers-web/nl/env.nl.prod.ts
|
|
@@ -3895,12 +3699,7 @@ var ENV_DISTRICT_NL_MARS = {
|
|
|
3895
3699
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3896
3700
|
...PLATFORM_URLS.MARS,
|
|
3897
3701
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3898
|
-
|
|
3899
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3900
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL",
|
|
3901
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3902
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3903
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3702
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL"
|
|
3904
3703
|
};
|
|
3905
3704
|
|
|
3906
3705
|
// src/configs/env/district-dash/nl/env.nl.prod.ts
|
|
@@ -3926,14 +3725,10 @@ var ENV_DISTRICT_NL_VENUS = {
|
|
|
3926
3725
|
// src/configs/env/mobile/nl/env.nl.mars.ts
|
|
3927
3726
|
var ENV_MOBILE_NL_MARS = {
|
|
3928
3727
|
...ENV_MOBILE_COMMON_MARS,
|
|
3728
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3729
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3929
3730
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3930
3731
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3931
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3932
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3933
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3934
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3935
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3936
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3937
3732
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NL",
|
|
3938
3733
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3939
3734
|
};
|
|
@@ -3955,8 +3750,7 @@ var ENV_MOBILE_NL_PROD = {
|
|
|
3955
3750
|
|
|
3956
3751
|
// src/configs/env/parent-web/nl/env.nl.mars.ts
|
|
3957
3752
|
var ENV_PARENT_WEB_NL_MARS = {
|
|
3958
|
-
|
|
3959
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3753
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3960
3754
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`
|
|
3961
3755
|
};
|
|
3962
3756
|
|
|
@@ -3975,17 +3769,11 @@ var ENV_PARENT_WEB_NL_VENUS = {
|
|
|
3975
3769
|
|
|
3976
3770
|
// src/configs/env/auth-web/fi/env.fi.mars.ts
|
|
3977
3771
|
var ENV_AUTH_WEB_FI_MARS = {
|
|
3772
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3773
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3774
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3978
3775
|
...PLATFORM_URLS.MARS,
|
|
3979
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi
|
|
3980
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3981
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3982
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3983
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3984
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3985
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3986
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3987
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3988
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3776
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`
|
|
3989
3777
|
};
|
|
3990
3778
|
|
|
3991
3779
|
// src/configs/env/auth-web/fi/env.fi.prod.ts
|
|
@@ -4013,12 +3801,7 @@ var ENV_STUDENTS_WEB_FI_MARS = {
|
|
|
4013
3801
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4014
3802
|
...PLATFORM_URLS.MARS,
|
|
4015
3803
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4016
|
-
|
|
4017
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4018
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FI",
|
|
4019
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4020
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4021
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3804
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FI"
|
|
4022
3805
|
};
|
|
4023
3806
|
|
|
4024
3807
|
// src/configs/env/students-web/fi/env.fi.prod.ts
|
|
@@ -4046,12 +3829,7 @@ var ENV_TEACHERS_WEB_FI_MARS = {
|
|
|
4046
3829
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4047
3830
|
...PLATFORM_URLS.MARS,
|
|
4048
3831
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4049
|
-
|
|
4050
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4051
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FI",
|
|
4052
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4053
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4054
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3832
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FI"
|
|
4055
3833
|
};
|
|
4056
3834
|
|
|
4057
3835
|
// src/configs/env/teachers-web/fi/env.fi.prod.ts
|
|
@@ -4079,12 +3857,7 @@ var ENV_DISTRICT_FI_MARS = {
|
|
|
4079
3857
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4080
3858
|
...PLATFORM_URLS.MARS,
|
|
4081
3859
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4082
|
-
|
|
4083
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4084
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FI",
|
|
4085
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4086
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4087
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3860
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FI"
|
|
4088
3861
|
};
|
|
4089
3862
|
|
|
4090
3863
|
// src/configs/env/district-dash/fi/env.fi.prod.ts
|
|
@@ -4110,14 +3883,10 @@ var ENV_DISTRICT_FI_VENUS = {
|
|
|
4110
3883
|
// src/configs/env/mobile/fi/env.fi.mars.ts
|
|
4111
3884
|
var ENV_MOBILE_FI_MARS = {
|
|
4112
3885
|
...ENV_MOBILE_COMMON_MARS,
|
|
3886
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3887
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4113
3888
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4114
3889
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4115
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4116
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4117
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4118
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4119
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4120
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4121
3890
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_FI",
|
|
4122
3891
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4123
3892
|
};
|
|
@@ -4139,8 +3908,7 @@ var ENV_MOBILE_FI_PROD = {
|
|
|
4139
3908
|
|
|
4140
3909
|
// src/configs/env/parent-web/fi/env.fi.mars.ts
|
|
4141
3910
|
var ENV_PARENT_WEB_FI_MARS = {
|
|
4142
|
-
|
|
4143
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3911
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4144
3912
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`
|
|
4145
3913
|
};
|
|
4146
3914
|
|
|
@@ -4159,17 +3927,11 @@ var ENV_PARENT_WEB_FI_VENUS = {
|
|
|
4159
3927
|
|
|
4160
3928
|
// src/configs/env/auth-web/nl-be/env.nl-be.mars.ts
|
|
4161
3929
|
var ENV_AUTH_WEB_NL_BE_MARS = {
|
|
3930
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3931
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3932
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4162
3933
|
...PLATFORM_URLS.MARS,
|
|
4163
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be
|
|
4164
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4165
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4166
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4167
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4168
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4169
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4170
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4171
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4172
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3934
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`
|
|
4173
3935
|
};
|
|
4174
3936
|
|
|
4175
3937
|
// src/configs/env/auth-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4197,12 +3959,7 @@ var ENV_STUDENTS_WEB_NL_BE_MARS = {
|
|
|
4197
3959
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4198
3960
|
...PLATFORM_URLS.MARS,
|
|
4199
3961
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4200
|
-
|
|
4201
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4202
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL_BE",
|
|
4203
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4204
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4205
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3962
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL_BE"
|
|
4206
3963
|
};
|
|
4207
3964
|
|
|
4208
3965
|
// src/configs/env/students-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4230,12 +3987,7 @@ var ENV_TEACHERS_WEB_NL_BE_MARS = {
|
|
|
4230
3987
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4231
3988
|
...PLATFORM_URLS.MARS,
|
|
4232
3989
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4233
|
-
|
|
4234
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4235
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL_BE",
|
|
4236
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4237
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4238
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3990
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL_BE"
|
|
4239
3991
|
};
|
|
4240
3992
|
|
|
4241
3993
|
// src/configs/env/teachers-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4263,12 +4015,7 @@ var ENV_DISTRICT_NL_BE_MARS = {
|
|
|
4263
4015
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4264
4016
|
...PLATFORM_URLS.MARS,
|
|
4265
4017
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4266
|
-
|
|
4267
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4268
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL_BE",
|
|
4269
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4270
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4271
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4018
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL_BE"
|
|
4272
4019
|
};
|
|
4273
4020
|
|
|
4274
4021
|
// src/configs/env/district-dash/nl-be/env.nl-be.prod.ts
|
|
@@ -4294,14 +4041,10 @@ var ENV_DISTRICT_NL_BE_VENUS = {
|
|
|
4294
4041
|
// src/configs/env/mobile/nl-be/env.nl-be.mars.ts
|
|
4295
4042
|
var ENV_MOBILE_NL_BE_MARS = {
|
|
4296
4043
|
...ENV_MOBILE_COMMON_MARS,
|
|
4044
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4045
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4297
4046
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4298
4047
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4299
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4300
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4301
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4302
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4303
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4304
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4305
4048
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NL_BE",
|
|
4306
4049
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4307
4050
|
};
|
|
@@ -4323,8 +4066,7 @@ var ENV_MOBILE_NL_BE_PROD = {
|
|
|
4323
4066
|
|
|
4324
4067
|
// src/configs/env/parent-web/nl-be/env.nl-be.mars.ts
|
|
4325
4068
|
var ENV_PARENT_WEB_NL_BE_MARS = {
|
|
4326
|
-
|
|
4327
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4069
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4328
4070
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`
|
|
4329
4071
|
};
|
|
4330
4072
|
|
|
@@ -4343,17 +4085,11 @@ var ENV_PARENT_WEB_NL_BE_VENUS = {
|
|
|
4343
4085
|
|
|
4344
4086
|
// src/configs/env/auth-web/ie/env.ie.mars.ts
|
|
4345
4087
|
var ENV_AUTH_WEB_IE_MARS = {
|
|
4088
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4089
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4090
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4346
4091
|
...PLATFORM_URLS.MARS,
|
|
4347
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie
|
|
4348
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4349
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4350
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4351
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4352
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4353
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4354
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4355
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4356
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4092
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`
|
|
4357
4093
|
};
|
|
4358
4094
|
|
|
4359
4095
|
// src/configs/env/auth-web/ie/env.ie.prod.ts
|
|
@@ -4381,12 +4117,7 @@ var ENV_STUDENTS_WEB_IE_MARS = {
|
|
|
4381
4117
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4382
4118
|
...PLATFORM_URLS.MARS,
|
|
4383
4119
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4384
|
-
|
|
4385
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4386
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IE",
|
|
4387
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4388
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4389
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4120
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IE"
|
|
4390
4121
|
};
|
|
4391
4122
|
|
|
4392
4123
|
// src/configs/env/students-web/ie/env.ie.prod.ts
|
|
@@ -4414,12 +4145,7 @@ var ENV_TEACHERS_WEB_IE_MARS = {
|
|
|
4414
4145
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4415
4146
|
...PLATFORM_URLS.MARS,
|
|
4416
4147
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4417
|
-
|
|
4418
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4419
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IE",
|
|
4420
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4421
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4422
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4148
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IE"
|
|
4423
4149
|
};
|
|
4424
4150
|
|
|
4425
4151
|
// src/configs/env/teachers-web/ie/env.ie.prod.ts
|
|
@@ -4447,12 +4173,7 @@ var ENV_DISTRICT_IE_MARS = {
|
|
|
4447
4173
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4448
4174
|
...PLATFORM_URLS.MARS,
|
|
4449
4175
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4450
|
-
|
|
4451
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4452
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IE",
|
|
4453
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4454
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4455
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4176
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IE"
|
|
4456
4177
|
};
|
|
4457
4178
|
|
|
4458
4179
|
// src/configs/env/district-dash/ie/env.ie.prod.ts
|
|
@@ -4478,14 +4199,10 @@ var ENV_DISTRICT_IE_VENUS = {
|
|
|
4478
4199
|
// src/configs/env/mobile/ie/env.ie.mars.ts
|
|
4479
4200
|
var ENV_MOBILE_IE_MARS = {
|
|
4480
4201
|
...ENV_MOBILE_COMMON_MARS,
|
|
4202
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4203
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4481
4204
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4482
4205
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4483
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4484
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4485
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4486
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4487
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4488
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4489
4206
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IE",
|
|
4490
4207
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4491
4208
|
};
|
|
@@ -4507,8 +4224,7 @@ var ENV_MOBILE_IE_PROD = {
|
|
|
4507
4224
|
|
|
4508
4225
|
// src/configs/env/parent-web/ie/env.ie.mars.ts
|
|
4509
4226
|
var ENV_PARENT_WEB_IE_MARS = {
|
|
4510
|
-
|
|
4511
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4227
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4512
4228
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`
|
|
4513
4229
|
};
|
|
4514
4230
|
|
|
@@ -4527,17 +4243,11 @@ var ENV_PARENT_WEB_IE_VENUS = {
|
|
|
4527
4243
|
|
|
4528
4244
|
// src/configs/env/auth-web/is/env.is.mars.ts
|
|
4529
4245
|
var ENV_AUTH_WEB_IS_MARS = {
|
|
4246
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4247
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4248
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4530
4249
|
...PLATFORM_URLS.MARS,
|
|
4531
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is
|
|
4532
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4533
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4534
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4535
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4536
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4537
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4538
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4539
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4540
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4250
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`
|
|
4541
4251
|
};
|
|
4542
4252
|
|
|
4543
4253
|
// src/configs/env/auth-web/is/env.is.prod.ts
|
|
@@ -4565,12 +4275,7 @@ var ENV_STUDENTS_WEB_IS_MARS = {
|
|
|
4565
4275
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4566
4276
|
...PLATFORM_URLS.MARS,
|
|
4567
4277
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4568
|
-
|
|
4569
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4570
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IS",
|
|
4571
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4572
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4573
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4278
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IS"
|
|
4574
4279
|
};
|
|
4575
4280
|
|
|
4576
4281
|
// src/configs/env/students-web/is/env.is.prod.ts
|
|
@@ -4598,12 +4303,7 @@ var ENV_TEACHERS_WEB_IS_MARS = {
|
|
|
4598
4303
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4599
4304
|
...PLATFORM_URLS.MARS,
|
|
4600
4305
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4601
|
-
|
|
4602
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4603
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IS",
|
|
4604
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4605
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4606
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4306
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IS"
|
|
4607
4307
|
};
|
|
4608
4308
|
|
|
4609
4309
|
// src/configs/env/teachers-web/is/env.is.prod.ts
|
|
@@ -4631,12 +4331,7 @@ var ENV_DISTRICT_IS_MARS = {
|
|
|
4631
4331
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4632
4332
|
...PLATFORM_URLS.MARS,
|
|
4633
4333
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4634
|
-
|
|
4635
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4636
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IS",
|
|
4637
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4638
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4639
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4334
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IS"
|
|
4640
4335
|
};
|
|
4641
4336
|
|
|
4642
4337
|
// src/configs/env/district-dash/is/env.is.prod.ts
|
|
@@ -4662,14 +4357,10 @@ var ENV_DISTRICT_IS_VENUS = {
|
|
|
4662
4357
|
// src/configs/env/mobile/is/env.is.mars.ts
|
|
4663
4358
|
var ENV_MOBILE_IS_MARS = {
|
|
4664
4359
|
...ENV_MOBILE_COMMON_MARS,
|
|
4360
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4361
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4665
4362
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4666
4363
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4667
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4668
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4669
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4670
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4671
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4672
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4673
4364
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IS",
|
|
4674
4365
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4675
4366
|
};
|
|
@@ -4691,8 +4382,7 @@ var ENV_MOBILE_IS_PROD = {
|
|
|
4691
4382
|
|
|
4692
4383
|
// src/configs/env/parent-web/is/env.is.mars.ts
|
|
4693
4384
|
var ENV_PARENT_WEB_IS_MARS = {
|
|
4694
|
-
|
|
4695
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4385
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4696
4386
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`
|
|
4697
4387
|
};
|
|
4698
4388
|
|
|
@@ -4711,17 +4401,11 @@ var ENV_PARENT_WEB_IS_VENUS = {
|
|
|
4711
4401
|
|
|
4712
4402
|
// src/configs/env/auth-web/sv-fi/env.sv-fi.mars.ts
|
|
4713
4403
|
var ENV_AUTH_WEB_SV_FI_MARS = {
|
|
4404
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4405
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4406
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4714
4407
|
...PLATFORM_URLS.MARS,
|
|
4715
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi
|
|
4716
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4717
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4718
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4719
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4720
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4721
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4722
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4723
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4724
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4408
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`
|
|
4725
4409
|
};
|
|
4726
4410
|
|
|
4727
4411
|
// src/configs/env/auth-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4749,12 +4433,7 @@ var ENV_STUDENTS_WEB_SV_FI_MARS = {
|
|
|
4749
4433
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4750
4434
|
...PLATFORM_URLS.MARS,
|
|
4751
4435
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4752
|
-
|
|
4753
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4754
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SV_FI",
|
|
4755
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4756
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4757
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4436
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SV_FI"
|
|
4758
4437
|
};
|
|
4759
4438
|
|
|
4760
4439
|
// src/configs/env/students-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4782,12 +4461,7 @@ var ENV_TEACHERS_WEB_SV_FI_MARS = {
|
|
|
4782
4461
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4783
4462
|
...PLATFORM_URLS.MARS,
|
|
4784
4463
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4785
|
-
|
|
4786
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4787
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SV_FI",
|
|
4788
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4789
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4790
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4464
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SV_FI"
|
|
4791
4465
|
};
|
|
4792
4466
|
|
|
4793
4467
|
// src/configs/env/teachers-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4815,12 +4489,7 @@ var ENV_DISTRICT_SV_FI_MARS = {
|
|
|
4815
4489
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4816
4490
|
...PLATFORM_URLS.MARS,
|
|
4817
4491
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4818
|
-
|
|
4819
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4820
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SV_FI",
|
|
4821
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4822
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4823
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4492
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SV_FI"
|
|
4824
4493
|
};
|
|
4825
4494
|
|
|
4826
4495
|
// src/configs/env/district-dash/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4846,14 +4515,10 @@ var ENV_DISTRICT_SV_FI_VENUS = {
|
|
|
4846
4515
|
// src/configs/env/mobile/sv-fi/env.sv-fi.mars.ts
|
|
4847
4516
|
var ENV_MOBILE_SV_FI_MARS = {
|
|
4848
4517
|
...ENV_MOBILE_COMMON_MARS,
|
|
4518
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4519
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4849
4520
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4850
4521
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4851
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4852
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4853
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4854
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4855
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4856
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4857
4522
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SV_FI",
|
|
4858
4523
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4859
4524
|
};
|
|
@@ -4875,8 +4540,7 @@ var ENV_MOBILE_SV_FI_PROD = {
|
|
|
4875
4540
|
|
|
4876
4541
|
// src/configs/env/parent-web/sv-fi/env.sv-fi.mars.ts
|
|
4877
4542
|
var ENV_PARENT_WEB_SV_FI_MARS = {
|
|
4878
|
-
|
|
4879
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4543
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4880
4544
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`
|
|
4881
4545
|
};
|
|
4882
4546
|
|
|
@@ -4895,17 +4559,11 @@ var ENV_PARENT_WEB_SV_FI_VENUS = {
|
|
|
4895
4559
|
|
|
4896
4560
|
// src/configs/env/auth-web/at/env.at.mars.ts
|
|
4897
4561
|
var ENV_AUTH_WEB_AT_MARS = {
|
|
4562
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4563
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4564
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4898
4565
|
...PLATFORM_URLS.MARS,
|
|
4899
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at
|
|
4900
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4901
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4902
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4903
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4904
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4905
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4906
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4907
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4908
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4566
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`
|
|
4909
4567
|
};
|
|
4910
4568
|
|
|
4911
4569
|
// src/configs/env/auth-web/at/env.at.prod.ts
|
|
@@ -4933,12 +4591,7 @@ var ENV_STUDENTS_WEB_AT_MARS = {
|
|
|
4933
4591
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4934
4592
|
...PLATFORM_URLS.MARS,
|
|
4935
4593
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
4936
|
-
|
|
4937
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4938
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_AT",
|
|
4939
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4940
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4941
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4594
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_AT"
|
|
4942
4595
|
};
|
|
4943
4596
|
|
|
4944
4597
|
// src/configs/env/students-web/at/env.at.prod.ts
|
|
@@ -4966,12 +4619,7 @@ var ENV_TEACHERS_WEB_AT_MARS = {
|
|
|
4966
4619
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4967
4620
|
...PLATFORM_URLS.MARS,
|
|
4968
4621
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
4969
|
-
|
|
4970
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4971
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_AT",
|
|
4972
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4973
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4974
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4622
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_AT"
|
|
4975
4623
|
};
|
|
4976
4624
|
|
|
4977
4625
|
// src/configs/env/teachers-web/at/env.at.prod.ts
|
|
@@ -4999,12 +4647,7 @@ var ENV_DISTRICT_AT_MARS = {
|
|
|
4999
4647
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5000
4648
|
...PLATFORM_URLS.MARS,
|
|
5001
4649
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
5002
|
-
|
|
5003
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5004
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_AT",
|
|
5005
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5006
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5007
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4650
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_AT"
|
|
5008
4651
|
};
|
|
5009
4652
|
|
|
5010
4653
|
// src/configs/env/district-dash/at/env.at.prod.ts
|
|
@@ -5030,15 +4673,11 @@ var ENV_DISTRICT_AT_VENUS = {
|
|
|
5030
4673
|
// src/configs/env/mobile/at/env.at.mars.ts
|
|
5031
4674
|
var ENV_MOBILE_AT_MARS = {
|
|
5032
4675
|
...ENV_MOBILE_COMMON_MARS,
|
|
4676
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4677
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5033
4678
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5034
4679
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
5035
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5036
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5037
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5038
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5039
4680
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_AT",
|
|
5040
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5041
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5042
4681
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5043
4682
|
};
|
|
5044
4683
|
|
|
@@ -5059,8 +4698,7 @@ var ENV_MOBILE_AT_PROD = {
|
|
|
5059
4698
|
|
|
5060
4699
|
// src/configs/env/parent-web/at/env.at.mars.ts
|
|
5061
4700
|
var ENV_PARENT_WEB_AT_MARS = {
|
|
5062
|
-
|
|
5063
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4701
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5064
4702
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`
|
|
5065
4703
|
};
|
|
5066
4704
|
|
|
@@ -5079,17 +4717,11 @@ var ENV_PARENT_WEB_AT_VENUS = {
|
|
|
5079
4717
|
|
|
5080
4718
|
// src/configs/env/auth-web/ch/env.ch.mars.ts
|
|
5081
4719
|
var ENV_AUTH_WEB_CH_MARS = {
|
|
4720
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4721
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4722
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5082
4723
|
...PLATFORM_URLS.MARS,
|
|
5083
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch
|
|
5084
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5085
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5086
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5087
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5088
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5089
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5090
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5091
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5092
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4724
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`
|
|
5093
4725
|
};
|
|
5094
4726
|
|
|
5095
4727
|
// src/configs/env/auth-web/ch/env.ch.prod.ts
|
|
@@ -5117,12 +4749,7 @@ var ENV_STUDENTS_WEB_CH_MARS = {
|
|
|
5117
4749
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5118
4750
|
...PLATFORM_URLS.MARS,
|
|
5119
4751
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5120
|
-
|
|
5121
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5122
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CH",
|
|
5123
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5124
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5125
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4752
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CH"
|
|
5126
4753
|
};
|
|
5127
4754
|
|
|
5128
4755
|
// src/configs/env/students-web/ch/env.ch.prod.ts
|
|
@@ -5150,12 +4777,7 @@ var ENV_TEACHERS_WEB_CH_MARS = {
|
|
|
5150
4777
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5151
4778
|
...PLATFORM_URLS.MARS,
|
|
5152
4779
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5153
|
-
|
|
5154
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5155
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CH",
|
|
5156
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5157
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5158
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4780
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CH"
|
|
5159
4781
|
};
|
|
5160
4782
|
|
|
5161
4783
|
// src/configs/env/teachers-web/ch/env.ch.prod.ts
|
|
@@ -5183,12 +4805,7 @@ var ENV_DISTRICT_CH_MARS = {
|
|
|
5183
4805
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5184
4806
|
...PLATFORM_URLS.MARS,
|
|
5185
4807
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5186
|
-
|
|
5187
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5188
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CH",
|
|
5189
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5190
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5191
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4808
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CH"
|
|
5192
4809
|
};
|
|
5193
4810
|
|
|
5194
4811
|
// src/configs/env/district-dash/ch/env.ch.prod.ts
|
|
@@ -5214,15 +4831,11 @@ var ENV_DISTRICT_CH_VENUS = {
|
|
|
5214
4831
|
// src/configs/env/mobile/ch/env.ch.mars.ts
|
|
5215
4832
|
var ENV_MOBILE_CH_MARS = {
|
|
5216
4833
|
...ENV_MOBILE_COMMON_MARS,
|
|
4834
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4835
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5217
4836
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5218
4837
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5219
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5220
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5221
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5222
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5223
4838
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CH",
|
|
5224
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5225
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5226
4839
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5227
4840
|
};
|
|
5228
4841
|
|
|
@@ -5243,8 +4856,7 @@ var ENV_MOBILE_CH_PROD = {
|
|
|
5243
4856
|
|
|
5244
4857
|
// src/configs/env/parent-web/ch/env.ch.mars.ts
|
|
5245
4858
|
var ENV_PARENT_WEB_CH_MARS = {
|
|
5246
|
-
|
|
5247
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4859
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5248
4860
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`
|
|
5249
4861
|
};
|
|
5250
4862
|
|
|
@@ -5263,17 +4875,11 @@ var ENV_PARENT_WEB_CH_VENUS = {
|
|
|
5263
4875
|
|
|
5264
4876
|
// src/configs/env/auth-web/es/env.es.mars.ts
|
|
5265
4877
|
var ENV_AUTH_WEB_ES_MARS = {
|
|
4878
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4879
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4880
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5266
4881
|
...PLATFORM_URLS.MARS,
|
|
5267
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es
|
|
5268
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5269
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5270
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5271
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5272
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5273
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5274
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5275
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5276
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4882
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`
|
|
5277
4883
|
};
|
|
5278
4884
|
|
|
5279
4885
|
// src/configs/env/auth-web/es/env.es.prod.ts
|
|
@@ -5301,12 +4907,7 @@ var ENV_STUDENTS_WEB_ES_MARS = {
|
|
|
5301
4907
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5302
4908
|
...PLATFORM_URLS.MARS,
|
|
5303
4909
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5304
|
-
|
|
5305
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5306
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_ES",
|
|
5307
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5308
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5309
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4910
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_ES"
|
|
5310
4911
|
};
|
|
5311
4912
|
|
|
5312
4913
|
// src/configs/env/students-web/es/env.es.prod.ts
|
|
@@ -5334,12 +4935,7 @@ var ENV_TEACHERS_WEB_ES_MARS = {
|
|
|
5334
4935
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5335
4936
|
...PLATFORM_URLS.MARS,
|
|
5336
4937
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5337
|
-
|
|
5338
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5339
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_ES",
|
|
5340
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5341
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5342
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4938
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_ES"
|
|
5343
4939
|
};
|
|
5344
4940
|
|
|
5345
4941
|
// src/configs/env/teachers-web/es/env.es.prod.ts
|
|
@@ -5367,12 +4963,7 @@ var ENV_DISTRICT_ES_MARS = {
|
|
|
5367
4963
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5368
4964
|
...PLATFORM_URLS.MARS,
|
|
5369
4965
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5370
|
-
|
|
5371
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5372
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_ES",
|
|
5373
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5374
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5375
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4966
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_ES"
|
|
5376
4967
|
};
|
|
5377
4968
|
|
|
5378
4969
|
// src/configs/env/district-dash/es/env.es.prod.ts
|
|
@@ -5398,15 +4989,11 @@ var ENV_DISTRICT_ES_VENUS = {
|
|
|
5398
4989
|
// src/configs/env/mobile/es/env.es.mars.ts
|
|
5399
4990
|
var ENV_MOBILE_ES_MARS = {
|
|
5400
4991
|
...ENV_MOBILE_COMMON_MARS,
|
|
4992
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4993
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5401
4994
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5402
4995
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5403
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5404
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5405
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5406
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5407
4996
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_ES",
|
|
5408
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5409
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5410
4997
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5411
4998
|
};
|
|
5412
4999
|
|
|
@@ -5427,8 +5014,7 @@ var ENV_MOBILE_ES_PROD = {
|
|
|
5427
5014
|
|
|
5428
5015
|
// src/configs/env/parent-web/es/env.es.mars.ts
|
|
5429
5016
|
var ENV_PARENT_WEB_ES_MARS = {
|
|
5430
|
-
|
|
5431
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5017
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5432
5018
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`
|
|
5433
5019
|
};
|
|
5434
5020
|
|
|
@@ -5447,17 +5033,11 @@ var ENV_PARENT_WEB_ES_VENUS = {
|
|
|
5447
5033
|
|
|
5448
5034
|
// src/configs/env/auth-web/pt/env.pt.mars.ts
|
|
5449
5035
|
var ENV_AUTH_WEB_PT_MARS = {
|
|
5036
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5037
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5038
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5450
5039
|
...PLATFORM_URLS.MARS,
|
|
5451
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt
|
|
5452
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5453
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5454
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5455
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5456
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5457
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5458
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5459
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5460
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5040
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`
|
|
5461
5041
|
};
|
|
5462
5042
|
|
|
5463
5043
|
// src/configs/env/auth-web/pt/env.pt.prod.ts
|
|
@@ -5485,12 +5065,7 @@ var ENV_STUDENTS_WEB_PT_MARS = {
|
|
|
5485
5065
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5486
5066
|
...PLATFORM_URLS.MARS,
|
|
5487
5067
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5488
|
-
|
|
5489
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5490
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PT",
|
|
5491
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5492
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5493
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5068
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PT"
|
|
5494
5069
|
};
|
|
5495
5070
|
|
|
5496
5071
|
// src/configs/env/students-web/pt/env.pt.prod.ts
|
|
@@ -5518,12 +5093,7 @@ var ENV_TEACHERS_WEB_PT_MARS = {
|
|
|
5518
5093
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5519
5094
|
...PLATFORM_URLS.MARS,
|
|
5520
5095
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5521
|
-
|
|
5522
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5523
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PT",
|
|
5524
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5525
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5526
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5096
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PT"
|
|
5527
5097
|
};
|
|
5528
5098
|
|
|
5529
5099
|
// src/configs/env/teachers-web/pt/env.pt.prod.ts
|
|
@@ -5551,12 +5121,7 @@ var ENV_DISTRICT_PT_MARS = {
|
|
|
5551
5121
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5552
5122
|
...PLATFORM_URLS.MARS,
|
|
5553
5123
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5554
|
-
|
|
5555
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5556
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PT",
|
|
5557
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5558
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5559
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5124
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PT"
|
|
5560
5125
|
};
|
|
5561
5126
|
|
|
5562
5127
|
// src/configs/env/district-dash/pt/env.pt.prod.ts
|
|
@@ -5582,15 +5147,11 @@ var ENV_DISTRICT_PT_VENUS = {
|
|
|
5582
5147
|
// src/configs/env/mobile/pt/env.pt.mars.ts
|
|
5583
5148
|
var ENV_MOBILE_PT_MARS = {
|
|
5584
5149
|
...ENV_MOBILE_COMMON_MARS,
|
|
5150
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5151
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5585
5152
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5586
5153
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5587
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5588
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5589
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5590
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5591
5154
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_PT",
|
|
5592
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5593
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5594
5155
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5595
5156
|
};
|
|
5596
5157
|
|
|
@@ -5611,8 +5172,7 @@ var ENV_MOBILE_PT_PROD = {
|
|
|
5611
5172
|
|
|
5612
5173
|
// src/configs/env/parent-web/pt/env.pt.mars.ts
|
|
5613
5174
|
var ENV_PARENT_WEB_PT_MARS = {
|
|
5614
|
-
|
|
5615
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5175
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5616
5176
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`
|
|
5617
5177
|
};
|
|
5618
5178
|
|
|
@@ -5631,19 +5191,13 @@ var ENV_PARENT_WEB_PT_VENUS = {
|
|
|
5631
5191
|
|
|
5632
5192
|
// src/configs/env/auth-web/us/eu_main/env.us.mars.ts
|
|
5633
5193
|
var ENV_AUTH_WEB_US_EU_MAIN_MARS = {
|
|
5194
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5195
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5196
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5634
5197
|
...PLATFORM_URLS.MARS,
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5639
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5640
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5641
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5642
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5643
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5644
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5645
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5646
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5198
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5199
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5200
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink"
|
|
5647
5201
|
};
|
|
5648
5202
|
|
|
5649
5203
|
// src/configs/env/auth-web/us/eu_main/env.us.prod.ts
|
|
@@ -5669,19 +5223,13 @@ var ENV_AUTH_WEB_US_EU_MAIN_VENUS = {
|
|
|
5669
5223
|
|
|
5670
5224
|
// src/configs/env/auth-web/ca/eu_main/env.ca.mars.ts
|
|
5671
5225
|
var ENV_AUTH_WEB_CA_EU_MAIN_MARS = {
|
|
5226
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5227
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5228
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5672
5229
|
...PLATFORM_URLS.MARS,
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5677
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5678
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5679
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5680
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5681
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5682
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5683
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5684
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5230
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5231
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5232
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink"
|
|
5685
5233
|
};
|
|
5686
5234
|
|
|
5687
5235
|
// src/configs/env/auth-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5709,12 +5257,7 @@ var ENV_AUTH_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5709
5257
|
var ENV_STUDENTS_WEB_US_EU_MAIN_MARS = {
|
|
5710
5258
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5711
5259
|
...PLATFORM_URLS.MARS,
|
|
5712
|
-
|
|
5713
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5714
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
5715
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5716
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5717
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5260
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US"
|
|
5718
5261
|
};
|
|
5719
5262
|
|
|
5720
5263
|
// src/configs/env/students-web/us/eu_main/env.us.prod.ts
|
|
@@ -5740,13 +5283,7 @@ var ENV_STUDENTS_WEB_US_EU_MAIN_VENUS = {
|
|
|
5740
5283
|
var ENV_STUDENTS_WEB_CA_EU_MAIN_MARS = {
|
|
5741
5284
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5742
5285
|
...PLATFORM_URLS.MARS,
|
|
5743
|
-
|
|
5744
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5745
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5746
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA",
|
|
5747
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5748
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5749
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5286
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA"
|
|
5750
5287
|
};
|
|
5751
5288
|
|
|
5752
5289
|
// src/configs/env/students-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5772,12 +5309,7 @@ var ENV_STUDENTS_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5772
5309
|
var ENV_TEACHERS_WEB_US_EU_MAIN_MARS = {
|
|
5773
5310
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5774
5311
|
...PLATFORM_URLS.MARS,
|
|
5775
|
-
|
|
5776
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5777
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
5778
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5779
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5780
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5312
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US"
|
|
5781
5313
|
};
|
|
5782
5314
|
|
|
5783
5315
|
// src/configs/env/teachers-web/us/eu_main/env.us.prod.ts
|
|
@@ -5803,13 +5335,7 @@ var ENV_TEACHERS_WEB_US_EU_MAIN_VENUS = {
|
|
|
5803
5335
|
var ENV_TEACHERS_WEB_CA_EU_MAIN_MARS = {
|
|
5804
5336
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5805
5337
|
...PLATFORM_URLS.MARS,
|
|
5806
|
-
|
|
5807
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5808
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5809
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
5810
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5811
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5812
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5338
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA"
|
|
5813
5339
|
};
|
|
5814
5340
|
|
|
5815
5341
|
// src/configs/env/teachers-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5835,12 +5361,7 @@ var ENV_TEACHERS_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5835
5361
|
var ENV_DISTRICT_US_EU_MAIN_MARS = {
|
|
5836
5362
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5837
5363
|
...PLATFORM_URLS.MARS,
|
|
5838
|
-
|
|
5839
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5840
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
5841
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5842
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5843
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5364
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US"
|
|
5844
5365
|
};
|
|
5845
5366
|
|
|
5846
5367
|
// src/configs/env/district-dash/us/eu_main/env.us.prod.ts
|
|
@@ -5866,13 +5387,7 @@ var ENV_DISTRICT_US_EU_MAIN_VENUS = {
|
|
|
5866
5387
|
var ENV_DISTRICT_CA_EU_MAIN_MARS = {
|
|
5867
5388
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5868
5389
|
...PLATFORM_URLS.MARS,
|
|
5869
|
-
|
|
5870
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5871
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5872
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
5873
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5874
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5875
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5390
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA"
|
|
5876
5391
|
};
|
|
5877
5392
|
|
|
5878
5393
|
// src/configs/env/district-dash/ca/eu_main/env.ca.prod.ts
|
|
@@ -5897,18 +5412,14 @@ var ENV_DISTRICT_CA_EU_MAIN_VENUS = {
|
|
|
5897
5412
|
// src/configs/env/mobile/us/eu_main/env.us.mars.ts
|
|
5898
5413
|
var ENV_MOBILE_US_EU_MAIN_MARS = {
|
|
5899
5414
|
...ENV_MOBILE_COMMON_MARS,
|
|
5415
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5416
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5900
5417
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5901
5418
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
5902
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5903
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5904
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5905
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5906
5419
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5911
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5420
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5421
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink",
|
|
5422
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5912
5423
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5913
5424
|
};
|
|
5914
5425
|
|
|
@@ -5934,19 +5445,14 @@ var ENV_MOBILE_US_EU_MAIN_PROD = {
|
|
|
5934
5445
|
// src/configs/env/mobile/ca/eu_main/env.ca.mars.ts
|
|
5935
5446
|
var ENV_MOBILE_CA_EU_MAIN_MARS = {
|
|
5936
5447
|
...ENV_MOBILE_COMMON_MARS,
|
|
5937
|
-
|
|
5448
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5449
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5938
5450
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5939
5451
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
5940
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5941
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5942
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5943
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5944
5452
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5949
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5453
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5454
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink",
|
|
5455
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5950
5456
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5951
5457
|
};
|
|
5952
5458
|
|
|
@@ -5971,8 +5477,7 @@ var ENV_MOBILE_CA_EU_MAIN_PROD = {
|
|
|
5971
5477
|
|
|
5972
5478
|
// src/configs/env/parent-web/us/eu_main/env.us.mars.ts
|
|
5973
5479
|
var ENV_PARENT_WEB_US_EU_MAIN_MARS = {
|
|
5974
|
-
|
|
5975
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5480
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5976
5481
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
5977
5482
|
};
|
|
5978
5483
|
|
|
@@ -5991,8 +5496,7 @@ var ENV_PARENT_WEB_US_EU_MAIN_VENUS = {
|
|
|
5991
5496
|
|
|
5992
5497
|
// src/configs/env/parent-web/ca/eu_main/env.ca.mars.ts
|
|
5993
5498
|
var ENV_PARENT_WEB_CA_EU_MAIN_MARS = {
|
|
5994
|
-
|
|
5995
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5499
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5996
5500
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
5997
5501
|
};
|
|
5998
5502
|
|
|
@@ -6011,15 +5515,9 @@ var ENV_PARENT_WEB_CA_EU_MAIN_VENUS = {
|
|
|
6011
5515
|
|
|
6012
5516
|
// src/configs/env/auth-web/ckb/env.ckb.mars.ts
|
|
6013
5517
|
var ENV_AUTH_WEB_IQ_MARS = {
|
|
5518
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
6014
5519
|
...PLATFORM_URLS.MARS,
|
|
6015
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb
|
|
6016
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
6017
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
6018
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
6019
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
6020
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
6021
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
6022
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5520
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`
|
|
6023
5521
|
};
|
|
6024
5522
|
|
|
6025
5523
|
// src/configs/env/auth-web/ckb/env.ckb.prod.ts
|
|
@@ -6045,12 +5543,7 @@ var ENV_STUDENTS_WEB_IQ_MARS = {
|
|
|
6045
5543
|
...ENV_STUDENTS_COMMON_MARS,
|
|
6046
5544
|
...PLATFORM_URLS.MARS,
|
|
6047
5545
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6048
|
-
|
|
6049
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6050
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IQ",
|
|
6051
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6052
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6053
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5546
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IQ"
|
|
6054
5547
|
};
|
|
6055
5548
|
|
|
6056
5549
|
// src/configs/env/students-web/ckb/env.ckb.prod.ts
|
|
@@ -6078,12 +5571,7 @@ var ENV_TEACHERS_WEB_IQ_MARS = {
|
|
|
6078
5571
|
...ENV_TEACHERS_COMMON_MARS,
|
|
6079
5572
|
...PLATFORM_URLS.MARS,
|
|
6080
5573
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6081
|
-
|
|
6082
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6083
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IQ",
|
|
6084
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6085
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6086
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5574
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IQ"
|
|
6087
5575
|
};
|
|
6088
5576
|
|
|
6089
5577
|
// src/configs/env/teachers-web/ckb/env.ckb.prod.ts
|
|
@@ -6111,12 +5599,7 @@ var ENV_DISTRICT_IQ_MARS = {
|
|
|
6111
5599
|
...ENV_DISTRICT_COMMON_MARS,
|
|
6112
5600
|
...PLATFORM_URLS.MARS,
|
|
6113
5601
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6114
|
-
|
|
6115
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6116
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IQ",
|
|
6117
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6118
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6119
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5602
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IQ"
|
|
6120
5603
|
};
|
|
6121
5604
|
|
|
6122
5605
|
// src/configs/env/district-dash/ckb/env.ckb.prod.ts
|
|
@@ -6144,10 +5627,6 @@ var ENV_MOBILE_IQ_MARS = {
|
|
|
6144
5627
|
...ENV_MOBILE_COMMON_MARS,
|
|
6145
5628
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
6146
5629
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6147
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
6148
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6149
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6150
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6151
5630
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IQ",
|
|
6152
5631
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
6153
5632
|
};
|
|
@@ -6167,8 +5646,7 @@ var ENV_MOBILE_IQ_PROD = {
|
|
|
6167
5646
|
|
|
6168
5647
|
// src/configs/env/parent-web/ckb/env.ckb.mars.ts
|
|
6169
5648
|
var ENV_PARENT_WEB_IQ_MARS = {
|
|
6170
|
-
|
|
6171
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5649
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
6172
5650
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`
|
|
6173
5651
|
};
|
|
6174
5652
|
|
|
@@ -12451,6 +11929,7 @@ exports.TTSOverrideSymbol = TTSOverrideSymbol;
|
|
|
12451
11929
|
exports.TreeLevel = TreeLevel;
|
|
12452
11930
|
exports.buildTargetToEnvironment = buildTargetToEnvironment;
|
|
12453
11931
|
exports.getMultiplicationSymbol = getMultiplicationSymbol;
|
|
11932
|
+
exports.getVidisLogoutUrl = getVidisLogoutUrl;
|
|
12454
11933
|
exports.isHighSchoolStringGrade = isHighSchoolStringGrade;
|
|
12455
11934
|
//# sourceMappingURL=index.js.map
|
|
12456
11935
|
//# sourceMappingURL=index.js.map
|