@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.mjs
CHANGED
|
@@ -1361,6 +1361,12 @@ var SSO_VIDIS_CONFIG = {
|
|
|
1361
1361
|
return url.href;
|
|
1362
1362
|
}
|
|
1363
1363
|
};
|
|
1364
|
+
var getVidisLogoutUrl = (envs, { idToken, postLogoutRedirectUri }) => {
|
|
1365
|
+
const url = new URL(envs.VIDIS_LOGOUT);
|
|
1366
|
+
url.searchParams.set("id_token_hint", idToken);
|
|
1367
|
+
url.searchParams.set("post_logout_redirect_uri", postLogoutRedirectUri);
|
|
1368
|
+
return url.href;
|
|
1369
|
+
};
|
|
1364
1370
|
|
|
1365
1371
|
// src/configs/env/env.helpers.ts
|
|
1366
1372
|
var ENV_BY_BUILD_TARGET = {
|
|
@@ -1482,24 +1488,31 @@ var PLATFORM_URLS = {
|
|
|
1482
1488
|
}
|
|
1483
1489
|
};
|
|
1484
1490
|
|
|
1485
|
-
// src/configs/env/auth-web/
|
|
1486
|
-
var
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1491
|
+
// src/configs/env/auth-web/env.common.mars.ts
|
|
1492
|
+
var ENV_AUTH_WEB_COMMON_MARS = {
|
|
1493
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1494
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1490
1495
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1491
1496
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1492
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
1493
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
1494
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
1495
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
1496
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
1497
|
-
AMPLITUDE_API_KEY: "e521466ce715087707e3ba925f4f57d5",
|
|
1498
1497
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1499
1498
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1500
1499
|
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1501
1500
|
};
|
|
1502
1501
|
|
|
1502
|
+
// src/configs/env/auth-web/us/us_main/env.us.mars.ts
|
|
1503
|
+
var ENV_AUTH_WEB_US_MARS = {
|
|
1504
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1505
|
+
...PLATFORM_URLS.MARS,
|
|
1506
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1507
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1508
|
+
GOOGLE_AUTH: "https://api.us.mars.magmamath.com/v2/auth/google",
|
|
1509
|
+
MICROSOFT_AUTH: "https://api.us.mars.magmamath.com/v2/auth/microsoft",
|
|
1510
|
+
CLEVER_AUTH: "https://api.us.mars.magmamath.com/v2/auth/clever",
|
|
1511
|
+
CLASS_LINK_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
1512
|
+
SCHOOLOGY_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink",
|
|
1513
|
+
AMPLITUDE_API_KEY: "e521466ce715087707e3ba925f4f57d5"
|
|
1514
|
+
};
|
|
1515
|
+
|
|
1503
1516
|
// src/configs/env/auth-web/us/us_main/env.us.prod.ts
|
|
1504
1517
|
var ENV_AUTH_WEB_US_PROD = {
|
|
1505
1518
|
...PLATFORM_URLS.PROD,
|
|
@@ -1519,22 +1532,18 @@ var ENV_AUTH_WEB_US_PROD = {
|
|
|
1519
1532
|
|
|
1520
1533
|
// src/configs/env/auth-web/se/env.se.mars.ts
|
|
1521
1534
|
var ENV_AUTH_WEB_SE_MARS = {
|
|
1522
|
-
|
|
1535
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1536
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1537
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1523
1538
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1524
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1525
1539
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1526
1540
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1527
1541
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
1528
1542
|
PARENT_WEB_URL: "https://parents.mars.matteappen.se",
|
|
1529
1543
|
MAGMAMATH_URL: "https://www.magma.se",
|
|
1530
1544
|
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal",
|
|
1531
|
-
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
1532
|
-
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
1533
1545
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/trial/ds/?entityID=TestMatteappen",
|
|
1534
|
-
SKOLON_AUTH: "https://api.mars.
|
|
1535
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1536
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1537
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1546
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon"
|
|
1538
1547
|
};
|
|
1539
1548
|
|
|
1540
1549
|
// src/configs/env/auth-web/se/env.se.prod.ts
|
|
@@ -1557,19 +1566,15 @@ var ENV_AUTH_WEB_SE_PROD = {
|
|
|
1557
1566
|
|
|
1558
1567
|
// src/configs/env/auth-web/gb/env.gb.mars.ts
|
|
1559
1568
|
var ENV_AUTH_WEB_GB_MARS = {
|
|
1569
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1570
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1571
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1560
1572
|
...PLATFORM_URLS.MARS,
|
|
1561
1573
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1562
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1563
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1564
1574
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1565
1575
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
SKOLON_AUTH: "https://api.mars.matteappen.se/v2/auth/skolon",
|
|
1569
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
1570
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1571
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1572
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1576
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
1577
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin"
|
|
1573
1578
|
};
|
|
1574
1579
|
|
|
1575
1580
|
// src/configs/env/auth-web/gb/env.gb.prod.ts
|
|
@@ -1623,46 +1628,42 @@ var ENV_AUTH_WEB_CA_PROD = {
|
|
|
1623
1628
|
|
|
1624
1629
|
// src/configs/env/auth-web/sct/env.sct.mars.ts
|
|
1625
1630
|
var ENV_AUTH_WEB_SCT_MARS = {
|
|
1631
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1632
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1633
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1626
1634
|
...PLATFORM_URLS.MARS,
|
|
1627
1635
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1628
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1629
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1630
1636
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1631
1637
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
SKOLON_AUTH: "https://api.mars.matteappen.se/v2/auth/skolon",
|
|
1635
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
1636
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1637
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1638
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1638
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
1639
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin"
|
|
1639
1640
|
};
|
|
1640
1641
|
|
|
1641
1642
|
// src/configs/env/auth-web/de/env.de.mars.ts
|
|
1642
1643
|
var ENV_AUTH_WEB_DE_MARS = {
|
|
1644
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
1645
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
1646
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
1643
1647
|
...PLATFORM_URLS.MARS,
|
|
1644
1648
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1648
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1649
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
1650
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
1651
|
-
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
1652
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
1653
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1654
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1649
|
+
VIDIS_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/vidis/",
|
|
1650
|
+
VIDIS_LOGOUT: "https://aai-test.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout"
|
|
1655
1651
|
};
|
|
1656
1652
|
|
|
1657
1653
|
// src/configs/env/students-web/env.common.mars.ts
|
|
1658
1654
|
var ENV_STUDENTS_COMMON_MARS = {
|
|
1659
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1655
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1656
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1657
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
1658
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
1659
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
1660
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1660
1661
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1661
1662
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
1662
1663
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1663
1664
|
MYSCRIPT_APPLICATION_KEY: "5c5a5667-9232-405f-a996-89b10ddb9200",
|
|
1664
1665
|
MYSCRIPT_HMAC_KEY: "370da564-11b0-4ac7-a413-9eb61ee7db9f",
|
|
1665
|
-
MYSCRIPT_HOST: "myscript-
|
|
1666
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
1666
1667
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
1667
1668
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1668
1669
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -1674,12 +1675,12 @@ var ENV_STUDENTS_COMMON_MARS = {
|
|
|
1674
1675
|
var ENV_STUDENTS_WEB_US_MARS = {
|
|
1675
1676
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1676
1677
|
...PLATFORM_URLS.MARS,
|
|
1677
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1678
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1678
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1679
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
1680
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1679
1681
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
1680
|
-
SOCKET_URL: "https://sockets
|
|
1681
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com"
|
|
1682
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1682
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
1683
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com"
|
|
1683
1684
|
};
|
|
1684
1685
|
|
|
1685
1686
|
// src/configs/env/students-web/env.common.prod.ts
|
|
@@ -1712,13 +1713,8 @@ var ENV_STUDENTS_WEB_US_PROD = {
|
|
|
1712
1713
|
// src/configs/env/students-web/se/env.se.mars.ts
|
|
1713
1714
|
var ENV_STUDENTS_WEB_SE_MARS = {
|
|
1714
1715
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1715
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1716
1716
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1717
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1718
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1719
1717
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SE",
|
|
1720
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1721
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1722
1718
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1723
1719
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1724
1720
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1748,11 +1744,7 @@ var ENV_STUDENTS_WEB_GB_MARS = {
|
|
|
1748
1744
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1749
1745
|
...PLATFORM_URLS.MARS,
|
|
1750
1746
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1751
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1752
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1753
1747
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_GB",
|
|
1754
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1755
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1756
1748
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1757
1749
|
};
|
|
1758
1750
|
|
|
@@ -1802,11 +1794,7 @@ var ENV_STUDENTS_WEB_SCT_MARS = {
|
|
|
1802
1794
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1803
1795
|
...PLATFORM_URLS.MARS,
|
|
1804
1796
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1805
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1806
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1807
1797
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SCT",
|
|
1808
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1809
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1810
1798
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1811
1799
|
};
|
|
1812
1800
|
|
|
@@ -1828,12 +1816,7 @@ var ENV_STUDENTS_WEB_DE_MARS = {
|
|
|
1828
1816
|
...ENV_STUDENTS_COMMON_MARS,
|
|
1829
1817
|
...PLATFORM_URLS.MARS,
|
|
1830
1818
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1831
|
-
|
|
1832
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1833
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE",
|
|
1834
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1835
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1836
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1819
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE"
|
|
1837
1820
|
};
|
|
1838
1821
|
|
|
1839
1822
|
// src/configs/env/students-web/de/env.de.prod.ts
|
|
@@ -1851,8 +1834,13 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1851
1834
|
|
|
1852
1835
|
// src/configs/env/teachers-web/env.common.mars.ts
|
|
1853
1836
|
var ENV_TEACHERS_COMMON_MARS = {
|
|
1854
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1855
|
-
|
|
1837
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
1838
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
1839
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
1840
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
1841
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
1842
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1843
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
1856
1844
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1857
1845
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
1858
1846
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
@@ -1868,12 +1856,12 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1868
1856
|
var ENV_TEACHERS_WEB_US_MARS = {
|
|
1869
1857
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1870
1858
|
...PLATFORM_URLS.MARS,
|
|
1871
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1872
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1859
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
1860
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
1861
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
1873
1862
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1874
|
-
SOCKET_URL: "https://sockets
|
|
1875
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com"
|
|
1876
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1863
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
1864
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com"
|
|
1877
1865
|
};
|
|
1878
1866
|
|
|
1879
1867
|
// src/configs/env/teachers-web/env.common.prod.ts
|
|
@@ -1905,13 +1893,8 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1905
1893
|
// src/configs/env/teachers-web/se/env.se.mars.ts
|
|
1906
1894
|
var ENV_TEACHERS_WEB_SE_MARS = {
|
|
1907
1895
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1908
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1909
1896
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1910
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1911
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1912
1897
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SE",
|
|
1913
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
1914
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
1915
1898
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1916
1899
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1917
1900
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -1941,11 +1924,7 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1941
1924
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1942
1925
|
...PLATFORM_URLS.MARS,
|
|
1943
1926
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1944
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1945
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1946
1927
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1947
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1948
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
1949
1928
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1950
1929
|
};
|
|
1951
1930
|
|
|
@@ -1995,11 +1974,7 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
1995
1974
|
...ENV_TEACHERS_COMMON_MARS,
|
|
1996
1975
|
...PLATFORM_URLS.MARS,
|
|
1997
1976
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1998
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1999
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2000
1977
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
2001
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2002
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2003
1978
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2004
1979
|
};
|
|
2005
1980
|
|
|
@@ -2021,12 +1996,7 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
2021
1996
|
...ENV_TEACHERS_COMMON_MARS,
|
|
2022
1997
|
...PLATFORM_URLS.MARS,
|
|
2023
1998
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2024
|
-
|
|
2025
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2026
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
2027
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2028
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2029
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1999
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE"
|
|
2030
2000
|
};
|
|
2031
2001
|
|
|
2032
2002
|
// src/configs/env/teachers-web/de/env.de.prod.ts
|
|
@@ -2044,7 +2014,12 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
2044
2014
|
|
|
2045
2015
|
// src/configs/env/district-dash/env.common.mars.ts
|
|
2046
2016
|
var ENV_DISTRICT_COMMON_MARS = {
|
|
2047
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2017
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
2018
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2019
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2020
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
2021
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
2022
|
+
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2048
2023
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
2049
2024
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
2050
2025
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
@@ -2055,12 +2030,12 @@ var ENV_DISTRICT_COMMON_MARS = {
|
|
|
2055
2030
|
var ENV_DISTRICT_US_MARS = {
|
|
2056
2031
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2057
2032
|
...PLATFORM_URLS.MARS,
|
|
2058
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2059
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2033
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2034
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2035
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
2060
2036
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
2061
|
-
SOCKET_URL: "https://sockets
|
|
2062
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2063
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2037
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
2038
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com",
|
|
2064
2039
|
AMPLITUDE_API_KEY: "407ea49ce6e1586815bcfd05ec5f15dc"
|
|
2065
2040
|
};
|
|
2066
2041
|
|
|
@@ -2088,13 +2063,8 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
2088
2063
|
// src/configs/env/district-dash/se/env.se.mars.ts
|
|
2089
2064
|
var ENV_DISTRICT_SE_MARS = {
|
|
2090
2065
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2091
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
2092
2066
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
2093
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2094
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2095
2067
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SE",
|
|
2096
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2097
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2098
2068
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
2099
2069
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
2100
2070
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
@@ -2124,11 +2094,7 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
2124
2094
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2125
2095
|
...PLATFORM_URLS.MARS,
|
|
2126
2096
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2127
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2128
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2129
2097
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
2130
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2131
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2132
2098
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2133
2099
|
};
|
|
2134
2100
|
|
|
@@ -2178,11 +2144,7 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
2178
2144
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2179
2145
|
...PLATFORM_URLS.MARS,
|
|
2180
2146
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2181
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2182
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2183
2147
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
2184
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2185
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2186
2148
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
2187
2149
|
};
|
|
2188
2150
|
|
|
@@ -2204,12 +2166,7 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
2204
2166
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2205
2167
|
...PLATFORM_URLS.MARS,
|
|
2206
2168
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2207
|
-
|
|
2208
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2209
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
2210
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2211
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2212
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2169
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE"
|
|
2213
2170
|
};
|
|
2214
2171
|
|
|
2215
2172
|
// src/configs/env/district-dash/de/env.de.prod.ts
|
|
@@ -2251,6 +2208,7 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
2251
2208
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2252
2209
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2253
2210
|
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2211
|
+
VIDIS_LOGOUT: "https://aai.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2254
2212
|
INTERCOM_APP_ID: "tjidhu4j"
|
|
2255
2213
|
};
|
|
2256
2214
|
|
|
@@ -2440,9 +2398,9 @@ var ENV_WEB_ADMIN_COMMON = {
|
|
|
2440
2398
|
var ENV_WEB_ADMIN_US_MAIN_MARS = {
|
|
2441
2399
|
...ENV_WEB_ADMIN_COMMON,
|
|
2442
2400
|
...PLATFORM_URLS.MARS,
|
|
2443
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2444
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2445
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2401
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2402
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2403
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations"
|
|
2446
2404
|
};
|
|
2447
2405
|
|
|
2448
2406
|
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
@@ -2458,8 +2416,8 @@ var ENV_WEB_ADMIN_US_MAIN_PROD = {
|
|
|
2458
2416
|
var ENV_WEB_ADMIN_CA_MARS = {
|
|
2459
2417
|
...ENV_WEB_ADMIN_COMMON,
|
|
2460
2418
|
...PLATFORM_URLS.MARS,
|
|
2461
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2462
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2419
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2420
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2463
2421
|
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations"
|
|
2464
2422
|
};
|
|
2465
2423
|
|
|
@@ -2476,9 +2434,9 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
2476
2434
|
var ENV_WEB_ADMIN_EU_MARS = {
|
|
2477
2435
|
...ENV_WEB_ADMIN_COMMON,
|
|
2478
2436
|
...PLATFORM_URLS.MARS,
|
|
2479
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2480
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2481
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2437
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2438
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2439
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations"
|
|
2482
2440
|
};
|
|
2483
2441
|
|
|
2484
2442
|
// src/configs/env/web-admin/eu/env.eu.prod.ts
|
|
@@ -2492,7 +2450,11 @@ var ENV_WEB_ADMIN_EU_PROD = {
|
|
|
2492
2450
|
|
|
2493
2451
|
// src/configs/env/mobile/env.common.mars.ts
|
|
2494
2452
|
var ENV_MOBILE_COMMON_MARS = {
|
|
2495
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2453
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.eu.mars.magmamath.com/translations",
|
|
2454
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2455
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com",
|
|
2456
|
+
SOCKET_URL: "https://sockets.eu.mars.magmamath.com",
|
|
2457
|
+
WEBSOCKETS_URL: "https://websockets.eu.mars.magmamath.com",
|
|
2496
2458
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
2497
2459
|
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq",
|
|
2498
2460
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
@@ -2500,7 +2462,7 @@ var ENV_MOBILE_COMMON_MARS = {
|
|
|
2500
2462
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
2501
2463
|
MYSCRIPT_APPLICATION_KEY: "5c5a5667-9232-405f-a996-89b10ddb9200",
|
|
2502
2464
|
MYSCRIPT_HMAC_KEY: "370da564-11b0-4ac7-a413-9eb61ee7db9f",
|
|
2503
|
-
MYSCRIPT_HOST: "myscript-
|
|
2465
|
+
MYSCRIPT_HOST: "myscript-iink.mars.magmamath.com",
|
|
2504
2466
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
2505
2467
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
2506
2468
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -2516,34 +2478,30 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2516
2478
|
...ENV_MOBILE_COMMON_MARS,
|
|
2517
2479
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2518
2480
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
2519
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2520
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2521
|
-
|
|
2522
|
-
|
|
2481
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2482
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2483
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.us.mars.magmamath.com/translations",
|
|
2484
|
+
SOCKET_URL: "https://sockets.us.mars.magmamath.com",
|
|
2485
|
+
WEBSOCKETS_URL: "https://websockets.us.mars.magmamath.com",
|
|
2523
2486
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2524
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2525
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
2526
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
2527
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
2528
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
2487
|
+
GOOGLE_AUTH: "https://api.us.mars.magmamath.com/v2/auth/google",
|
|
2488
|
+
MICROSOFT_AUTH: "https://api.us.mars.magmamath.com/v2/auth/microsoft",
|
|
2489
|
+
CLASS_LINK_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
2490
|
+
SCHOOLOGY_AUTH: "https://api.us.mars.magmamath.com/v2/auth/edlink",
|
|
2491
|
+
CLEVER_AUTH: "https://api.us.mars.magmamath.com/v2/auth/clever",
|
|
2529
2492
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2530
2493
|
};
|
|
2531
2494
|
|
|
2532
2495
|
// src/configs/env/mobile/se/env.se.mars.ts
|
|
2533
2496
|
var ENV_MOBILE_SE_MARS = {
|
|
2534
2497
|
...ENV_MOBILE_COMMON_MARS,
|
|
2498
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2499
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2535
2500
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
2536
2501
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
2537
|
-
API_URL: "https://api.mars.matteappen.se/v2",
|
|
2538
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2539
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
2540
|
-
SOCKET_URL: "https://sockets-mars.matteappen.se",
|
|
2541
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
2542
2502
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SE",
|
|
2543
|
-
GOOGLE_AUTH: "https://api.mars.matteappen.se/v2/auth/google",
|
|
2544
|
-
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
2545
2503
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/trial/ds/?entityID=TestMatteappen",
|
|
2546
|
-
SKOLON_AUTH: "https://api.mars.
|
|
2504
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2547
2505
|
PROBLEM_CREATOR_URL: "https://teachers.mars.matteappen.se/content/react-native/problems/add",
|
|
2548
2506
|
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal"
|
|
2549
2507
|
};
|
|
@@ -2551,17 +2509,13 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
2551
2509
|
// src/configs/env/mobile/gb/env.gb.mars.ts
|
|
2552
2510
|
var ENV_MOBILE_GB_MARS = {
|
|
2553
2511
|
...ENV_MOBILE_COMMON_MARS,
|
|
2512
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2513
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2554
2514
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2555
2515
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2556
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2557
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2558
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2559
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2560
2516
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
SKOLON_AUTH: "https://api.mars.magmamath.com/v2/auth/skolon",
|
|
2564
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
2517
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2518
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin",
|
|
2565
2519
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2566
2520
|
};
|
|
2567
2521
|
|
|
@@ -2587,33 +2541,26 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2587
2541
|
// src/configs/env/mobile/sct/env.sct.mars.ts
|
|
2588
2542
|
var ENV_MOBILE_SCT_MARS = {
|
|
2589
2543
|
...ENV_MOBILE_COMMON_MARS,
|
|
2544
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2545
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2590
2546
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2591
2547
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2592
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2593
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2594
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2595
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2596
2548
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
SKOLON_AUTH: "https://api.mars.magmamath.com/v2/auth/skolon",
|
|
2600
|
-
WONDE_AUTH: "https://api.mars.magmamath.com/v2/auth/mylogin",
|
|
2549
|
+
SKOLON_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/skolon",
|
|
2550
|
+
WONDE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/mylogin",
|
|
2601
2551
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2602
2552
|
};
|
|
2603
2553
|
|
|
2604
2554
|
// src/configs/env/mobile/de/env.de.mars.ts
|
|
2605
2555
|
var ENV_MOBILE_DE_MARS = {
|
|
2606
2556
|
...ENV_MOBILE_COMMON_MARS,
|
|
2557
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2558
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2607
2559
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
2608
2560
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2609
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2610
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2611
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2612
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2613
2561
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
2562
|
+
VIDIS_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/vidis/",
|
|
2563
|
+
VIDIS_LOGOUT: "https://aai-test.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2617
2564
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2618
2565
|
};
|
|
2619
2566
|
|
|
@@ -2740,13 +2687,14 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2740
2687
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2741
2688
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2742
2689
|
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2690
|
+
VIDIS_LOGOUT: "https://aai.vidis.schule/auth/realms/vidis/protocol/openid-connect/logout",
|
|
2743
2691
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.PROD.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2744
2692
|
};
|
|
2745
2693
|
|
|
2746
2694
|
// src/configs/env/parent-web/us/us_main/env.us.mars.ts
|
|
2747
2695
|
var ENV_PARENT_WEB_US_MARS = {
|
|
2748
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2749
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2696
|
+
API_URL: "https://api.us.mars.magmamath.com/v2",
|
|
2697
|
+
CDN_HOST: "https://cdn.us.mars.magmamath.com",
|
|
2750
2698
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
2751
2699
|
};
|
|
2752
2700
|
|
|
@@ -2763,10 +2711,15 @@ var ENV_PARENT_WEB_US_VENUS = {
|
|
|
2763
2711
|
AUTH_WEB_URL: PLATFORM_URLS.VENUS.AUTH_WEB_URL
|
|
2764
2712
|
};
|
|
2765
2713
|
|
|
2714
|
+
// src/configs/env/parent-web/env.common.mars.ts
|
|
2715
|
+
var ENV_PARENT_WEB_COMMON_MARS = {
|
|
2716
|
+
API_URL: "https://api.eu.mars.magmamath.com/v2",
|
|
2717
|
+
CDN_HOST: "https://cdn.eu.mars.magmamath.com"
|
|
2718
|
+
};
|
|
2719
|
+
|
|
2766
2720
|
// src/configs/env/parent-web/se/env.se.mars.ts
|
|
2767
2721
|
var ENV_PARENT_WEB_SE_MARS = {
|
|
2768
|
-
|
|
2769
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
2722
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2770
2723
|
AUTH_WEB_URL: "https://app.mars.matteappen.se"
|
|
2771
2724
|
};
|
|
2772
2725
|
|
|
@@ -2785,8 +2738,7 @@ var ENV_PARENT_WEB_SE_VENUS = {
|
|
|
2785
2738
|
|
|
2786
2739
|
// src/configs/env/parent-web/gb/env.gb.mars.ts
|
|
2787
2740
|
var ENV_PARENT_WEB_GB_MARS = {
|
|
2788
|
-
|
|
2789
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2741
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2790
2742
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`
|
|
2791
2743
|
};
|
|
2792
2744
|
|
|
@@ -2825,8 +2777,7 @@ var ENV_PARENT_WEB_CA_VENUS = {
|
|
|
2825
2777
|
|
|
2826
2778
|
// src/configs/env/parent-web/sct/env.sct.mars.ts
|
|
2827
2779
|
var ENV_PARENT_WEB_SCT_MARS = {
|
|
2828
|
-
|
|
2829
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2780
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2830
2781
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`
|
|
2831
2782
|
};
|
|
2832
2783
|
|
|
@@ -2845,8 +2796,7 @@ var ENV_PARENT_WEB_SCT_VENUS = {
|
|
|
2845
2796
|
|
|
2846
2797
|
// src/configs/env/parent-web/de/env.de.mars.ts
|
|
2847
2798
|
var ENV_PARENT_WEB_DE_MARS = {
|
|
2848
|
-
|
|
2849
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2799
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
2850
2800
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`
|
|
2851
2801
|
};
|
|
2852
2802
|
|
|
@@ -2865,17 +2815,11 @@ var ENV_PARENT_WEB_DE_VENUS = {
|
|
|
2865
2815
|
|
|
2866
2816
|
// src/configs/env/auth-web/pl/env.pl.mars.ts
|
|
2867
2817
|
var ENV_AUTH_WEB_PL_MARS = {
|
|
2818
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
2819
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2820
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
2868
2821
|
...PLATFORM_URLS.MARS,
|
|
2869
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl
|
|
2870
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2871
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2872
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
2873
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
2874
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2875
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
2876
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
2877
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
2878
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
2822
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`
|
|
2879
2823
|
};
|
|
2880
2824
|
|
|
2881
2825
|
// src/configs/env/auth-web/pl/env.pl.prod.ts
|
|
@@ -2903,12 +2847,7 @@ var ENV_STUDENTS_WEB_PL_MARS = {
|
|
|
2903
2847
|
...ENV_STUDENTS_COMMON_MARS,
|
|
2904
2848
|
...PLATFORM_URLS.MARS,
|
|
2905
2849
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2906
|
-
|
|
2907
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2908
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PL",
|
|
2909
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2910
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2911
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2850
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PL"
|
|
2912
2851
|
};
|
|
2913
2852
|
|
|
2914
2853
|
// src/configs/env/students-web/pl/env.pl.prod.ts
|
|
@@ -2936,12 +2875,7 @@ var ENV_TEACHERS_WEB_PL_MARS = {
|
|
|
2936
2875
|
...ENV_TEACHERS_COMMON_MARS,
|
|
2937
2876
|
...PLATFORM_URLS.MARS,
|
|
2938
2877
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2939
|
-
|
|
2940
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2941
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PL",
|
|
2942
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2943
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2944
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2878
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PL"
|
|
2945
2879
|
};
|
|
2946
2880
|
|
|
2947
2881
|
// src/configs/env/teachers-web/pl/env.pl.prod.ts
|
|
@@ -2969,12 +2903,7 @@ var ENV_DISTRICT_PL_MARS = {
|
|
|
2969
2903
|
...ENV_DISTRICT_COMMON_MARS,
|
|
2970
2904
|
...PLATFORM_URLS.MARS,
|
|
2971
2905
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
2972
|
-
|
|
2973
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2974
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PL",
|
|
2975
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2976
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
2977
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
2906
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PL"
|
|
2978
2907
|
};
|
|
2979
2908
|
|
|
2980
2909
|
// src/configs/env/district-dash/pl/env.pl.prod.ts
|
|
@@ -3000,15 +2929,11 @@ var ENV_DISTRICT_PL_VENUS = {
|
|
|
3000
2929
|
// src/configs/env/mobile/pl/env.pl.mars.ts
|
|
3001
2930
|
var ENV_MOBILE_PL_MARS = {
|
|
3002
2931
|
...ENV_MOBILE_COMMON_MARS,
|
|
2932
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2933
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3003
2934
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3004
2935
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`,
|
|
3005
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3006
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3007
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3008
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3009
2936
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_PL",
|
|
3010
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3011
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3012
2937
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3013
2938
|
};
|
|
3014
2939
|
|
|
@@ -3029,8 +2954,7 @@ var ENV_MOBILE_PL_PROD = {
|
|
|
3029
2954
|
|
|
3030
2955
|
// src/configs/env/parent-web/pl/env.pl.mars.ts
|
|
3031
2956
|
var ENV_PARENT_WEB_PL_MARS = {
|
|
3032
|
-
|
|
3033
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2957
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3034
2958
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pl`
|
|
3035
2959
|
};
|
|
3036
2960
|
|
|
@@ -3049,17 +2973,11 @@ var ENV_PARENT_WEB_PL_VENUS = {
|
|
|
3049
2973
|
|
|
3050
2974
|
// src/configs/env/auth-web/it/env.it.mars.ts
|
|
3051
2975
|
var ENV_AUTH_WEB_IT_MARS = {
|
|
2976
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
2977
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
2978
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3052
2979
|
...PLATFORM_URLS.MARS,
|
|
3053
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it
|
|
3054
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3055
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3056
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3057
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3058
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3059
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3060
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3061
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3062
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
2980
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`
|
|
3063
2981
|
};
|
|
3064
2982
|
|
|
3065
2983
|
// src/configs/env/auth-web/it/env.it.prod.ts
|
|
@@ -3087,12 +3005,7 @@ var ENV_STUDENTS_WEB_IT_MARS = {
|
|
|
3087
3005
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3088
3006
|
...PLATFORM_URLS.MARS,
|
|
3089
3007
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3090
|
-
|
|
3091
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3092
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IT",
|
|
3093
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3094
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3095
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3008
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IT"
|
|
3096
3009
|
};
|
|
3097
3010
|
|
|
3098
3011
|
// src/configs/env/students-web/it/env.it.prod.ts
|
|
@@ -3120,12 +3033,7 @@ var ENV_TEACHERS_WEB_IT_MARS = {
|
|
|
3120
3033
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3121
3034
|
...PLATFORM_URLS.MARS,
|
|
3122
3035
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3123
|
-
|
|
3124
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3125
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IT",
|
|
3126
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3127
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3128
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3036
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IT"
|
|
3129
3037
|
};
|
|
3130
3038
|
|
|
3131
3039
|
// src/configs/env/teachers-web/it/env.it.prod.ts
|
|
@@ -3153,12 +3061,7 @@ var ENV_DISTRICT_IT_MARS = {
|
|
|
3153
3061
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3154
3062
|
...PLATFORM_URLS.MARS,
|
|
3155
3063
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3156
|
-
|
|
3157
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3158
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IT",
|
|
3159
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3160
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3161
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3064
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IT"
|
|
3162
3065
|
};
|
|
3163
3066
|
|
|
3164
3067
|
// src/configs/env/district-dash/it/env.it.prod.ts
|
|
@@ -3184,14 +3087,10 @@ var ENV_DISTRICT_IT_VENUS = {
|
|
|
3184
3087
|
// src/configs/env/mobile/it/env.it.mars.ts
|
|
3185
3088
|
var ENV_MOBILE_IT_MARS = {
|
|
3186
3089
|
...ENV_MOBILE_COMMON_MARS,
|
|
3090
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3091
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3187
3092
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3188
3093
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`,
|
|
3189
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3190
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3191
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3192
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3193
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3194
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3195
3094
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IT",
|
|
3196
3095
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3197
3096
|
};
|
|
@@ -3213,8 +3112,7 @@ var ENV_MOBILE_IT_PROD = {
|
|
|
3213
3112
|
|
|
3214
3113
|
// src/configs/env/parent-web/it/env.it.mars.ts
|
|
3215
3114
|
var ENV_PARENT_WEB_IT_MARS = {
|
|
3216
|
-
|
|
3217
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3115
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3218
3116
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/it`
|
|
3219
3117
|
};
|
|
3220
3118
|
|
|
@@ -3233,17 +3131,11 @@ var ENV_PARENT_WEB_IT_VENUS = {
|
|
|
3233
3131
|
|
|
3234
3132
|
// src/configs/env/auth-web/fr/env.fr.mars.ts
|
|
3235
3133
|
var ENV_AUTH_WEB_FR_MARS = {
|
|
3134
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3135
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3136
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3236
3137
|
...PLATFORM_URLS.MARS,
|
|
3237
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr
|
|
3238
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3239
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3240
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3241
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3242
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3243
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3244
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3245
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3246
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3138
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`
|
|
3247
3139
|
};
|
|
3248
3140
|
|
|
3249
3141
|
// src/configs/env/auth-web/fr/env.fr.prod.ts
|
|
@@ -3271,12 +3163,7 @@ var ENV_STUDENTS_WEB_FR_MARS = {
|
|
|
3271
3163
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3272
3164
|
...PLATFORM_URLS.MARS,
|
|
3273
3165
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3274
|
-
|
|
3275
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3276
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FR",
|
|
3277
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3278
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3279
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3166
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FR"
|
|
3280
3167
|
};
|
|
3281
3168
|
|
|
3282
3169
|
// src/configs/env/students-web/fr/env.fr.prod.ts
|
|
@@ -3304,12 +3191,7 @@ var ENV_TEACHERS_WEB_FR_MARS = {
|
|
|
3304
3191
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3305
3192
|
...PLATFORM_URLS.MARS,
|
|
3306
3193
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3307
|
-
|
|
3308
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3309
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FR",
|
|
3310
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3311
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3312
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3194
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FR"
|
|
3313
3195
|
};
|
|
3314
3196
|
|
|
3315
3197
|
// src/configs/env/teachers-web/fr/env.fr.prod.ts
|
|
@@ -3337,12 +3219,7 @@ var ENV_DISTRICT_FR_MARS = {
|
|
|
3337
3219
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3338
3220
|
...PLATFORM_URLS.MARS,
|
|
3339
3221
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3340
|
-
|
|
3341
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3342
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FR",
|
|
3343
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3344
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3345
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3222
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FR"
|
|
3346
3223
|
};
|
|
3347
3224
|
|
|
3348
3225
|
// src/configs/env/district-dash/fr/env.fr.prod.ts
|
|
@@ -3368,14 +3245,10 @@ var ENV_DISTRICT_FR_VENUS = {
|
|
|
3368
3245
|
// src/configs/env/mobile/fr/env.fr.mars.ts
|
|
3369
3246
|
var ENV_MOBILE_FR_MARS = {
|
|
3370
3247
|
...ENV_MOBILE_COMMON_MARS,
|
|
3248
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3249
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3371
3250
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3372
3251
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`,
|
|
3373
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3374
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3375
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3376
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3377
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3378
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3379
3252
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_FR",
|
|
3380
3253
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3381
3254
|
};
|
|
@@ -3397,8 +3270,7 @@ var ENV_MOBILE_FR_PROD = {
|
|
|
3397
3270
|
|
|
3398
3271
|
// src/configs/env/parent-web/fr/env.fr.mars.ts
|
|
3399
3272
|
var ENV_PARENT_WEB_FR_MARS = {
|
|
3400
|
-
|
|
3401
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3273
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3402
3274
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fr`
|
|
3403
3275
|
};
|
|
3404
3276
|
|
|
@@ -3417,17 +3289,11 @@ var ENV_PARENT_WEB_FR_VENUS = {
|
|
|
3417
3289
|
|
|
3418
3290
|
// src/configs/env/auth-web/da/env.da.mars.ts
|
|
3419
3291
|
var ENV_AUTH_WEB_DA_MARS = {
|
|
3292
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3293
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3294
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3420
3295
|
...PLATFORM_URLS.MARS,
|
|
3421
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da
|
|
3422
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3423
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3424
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3425
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3426
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3427
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3428
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3429
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3430
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3296
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`
|
|
3431
3297
|
};
|
|
3432
3298
|
|
|
3433
3299
|
// src/configs/env/auth-web/da/env.da.prod.ts
|
|
@@ -3455,12 +3321,7 @@ var ENV_STUDENTS_WEB_DA_MARS = {
|
|
|
3455
3321
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3456
3322
|
...PLATFORM_URLS.MARS,
|
|
3457
3323
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3458
|
-
|
|
3459
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3460
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DK",
|
|
3461
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3462
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3463
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3324
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DK"
|
|
3464
3325
|
};
|
|
3465
3326
|
|
|
3466
3327
|
// src/configs/env/students-web/da/env.da.prod.ts
|
|
@@ -3488,12 +3349,7 @@ var ENV_TEACHERS_WEB_DA_MARS = {
|
|
|
3488
3349
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3489
3350
|
...PLATFORM_URLS.MARS,
|
|
3490
3351
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3491
|
-
|
|
3492
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3493
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DK",
|
|
3494
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3495
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3496
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3352
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DK"
|
|
3497
3353
|
};
|
|
3498
3354
|
|
|
3499
3355
|
// src/configs/env/teachers-web/da/env.da.prod.ts
|
|
@@ -3521,12 +3377,7 @@ var ENV_DISTRICT_DA_MARS = {
|
|
|
3521
3377
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3522
3378
|
...PLATFORM_URLS.MARS,
|
|
3523
3379
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3524
|
-
|
|
3525
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3526
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DK",
|
|
3527
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3528
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3529
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3380
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DK"
|
|
3530
3381
|
};
|
|
3531
3382
|
|
|
3532
3383
|
// src/configs/env/district-dash/da/env.da.prod.ts
|
|
@@ -3552,14 +3403,10 @@ var ENV_DISTRICT_DA_VENUS = {
|
|
|
3552
3403
|
// src/configs/env/mobile/da/env.da.mars.ts
|
|
3553
3404
|
var ENV_MOBILE_DA_MARS = {
|
|
3554
3405
|
...ENV_MOBILE_COMMON_MARS,
|
|
3406
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3407
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3555
3408
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3556
3409
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`,
|
|
3557
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3558
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3559
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3560
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3561
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3562
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3563
3410
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DK",
|
|
3564
3411
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3565
3412
|
};
|
|
@@ -3581,8 +3428,7 @@ var ENV_MOBILE_DA_PROD = {
|
|
|
3581
3428
|
|
|
3582
3429
|
// src/configs/env/parent-web/da/env.da.mars.ts
|
|
3583
3430
|
var ENV_PARENT_WEB_DA_MARS = {
|
|
3584
|
-
|
|
3585
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3431
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3586
3432
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/da`
|
|
3587
3433
|
};
|
|
3588
3434
|
|
|
@@ -3601,17 +3447,11 @@ var ENV_PARENT_WEB_DA_VENUS = {
|
|
|
3601
3447
|
|
|
3602
3448
|
// src/configs/env/auth-web/no/env.no.mars.ts
|
|
3603
3449
|
var ENV_AUTH_WEB_NO_MARS = {
|
|
3450
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3451
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3452
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3604
3453
|
...PLATFORM_URLS.MARS,
|
|
3605
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no
|
|
3606
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3607
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3608
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3609
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3610
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3611
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3612
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3613
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3614
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3454
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`
|
|
3615
3455
|
};
|
|
3616
3456
|
|
|
3617
3457
|
// src/configs/env/auth-web/no/env.no.prod.ts
|
|
@@ -3639,12 +3479,7 @@ var ENV_STUDENTS_WEB_NO_MARS = {
|
|
|
3639
3479
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3640
3480
|
...PLATFORM_URLS.MARS,
|
|
3641
3481
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3642
|
-
|
|
3643
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3644
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NO",
|
|
3645
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3646
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3647
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3482
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NO"
|
|
3648
3483
|
};
|
|
3649
3484
|
|
|
3650
3485
|
// src/configs/env/students-web/no/env.no.prod.ts
|
|
@@ -3672,12 +3507,7 @@ var ENV_TEACHERS_WEB_NO_MARS = {
|
|
|
3672
3507
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3673
3508
|
...PLATFORM_URLS.MARS,
|
|
3674
3509
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3675
|
-
|
|
3676
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3677
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NO",
|
|
3678
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3679
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3680
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3510
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NO"
|
|
3681
3511
|
};
|
|
3682
3512
|
|
|
3683
3513
|
// src/configs/env/teachers-web/no/env.no.prod.ts
|
|
@@ -3705,12 +3535,7 @@ var ENV_DISTRICT_NO_MARS = {
|
|
|
3705
3535
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3706
3536
|
...PLATFORM_URLS.MARS,
|
|
3707
3537
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3708
|
-
|
|
3709
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3710
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NO",
|
|
3711
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3712
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3713
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3538
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NO"
|
|
3714
3539
|
};
|
|
3715
3540
|
|
|
3716
3541
|
// src/configs/env/district-dash/no/env.no.prod.ts
|
|
@@ -3736,14 +3561,10 @@ var ENV_DISTRICT_NO_VENUS = {
|
|
|
3736
3561
|
// src/configs/env/mobile/no/env.no.mars.ts
|
|
3737
3562
|
var ENV_MOBILE_NO_MARS = {
|
|
3738
3563
|
...ENV_MOBILE_COMMON_MARS,
|
|
3564
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3565
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3739
3566
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3740
3567
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`,
|
|
3741
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3742
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3743
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3744
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3745
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3746
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3747
3568
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NO",
|
|
3748
3569
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3749
3570
|
};
|
|
@@ -3765,8 +3586,7 @@ var ENV_MOBILE_NO_PROD = {
|
|
|
3765
3586
|
|
|
3766
3587
|
// src/configs/env/parent-web/no/env.no.mars.ts
|
|
3767
3588
|
var ENV_PARENT_WEB_NO_MARS = {
|
|
3768
|
-
|
|
3769
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3589
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3770
3590
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/no`
|
|
3771
3591
|
};
|
|
3772
3592
|
|
|
@@ -3785,17 +3605,11 @@ var ENV_PARENT_WEB_NO_VENUS = {
|
|
|
3785
3605
|
|
|
3786
3606
|
// src/configs/env/auth-web/nl/env.nl.mars.ts
|
|
3787
3607
|
var ENV_AUTH_WEB_NL_MARS = {
|
|
3608
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3609
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3610
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3788
3611
|
...PLATFORM_URLS.MARS,
|
|
3789
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl
|
|
3790
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3791
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3792
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3793
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3794
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3795
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3796
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3797
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3798
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3612
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`
|
|
3799
3613
|
};
|
|
3800
3614
|
|
|
3801
3615
|
// src/configs/env/auth-web/nl/env.nl.prod.ts
|
|
@@ -3823,12 +3637,7 @@ var ENV_STUDENTS_WEB_NL_MARS = {
|
|
|
3823
3637
|
...ENV_STUDENTS_COMMON_MARS,
|
|
3824
3638
|
...PLATFORM_URLS.MARS,
|
|
3825
3639
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3826
|
-
|
|
3827
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3828
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL",
|
|
3829
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3830
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3831
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3640
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL"
|
|
3832
3641
|
};
|
|
3833
3642
|
|
|
3834
3643
|
// src/configs/env/students-web/nl/env.nl.prod.ts
|
|
@@ -3856,12 +3665,7 @@ var ENV_TEACHERS_WEB_NL_MARS = {
|
|
|
3856
3665
|
...ENV_TEACHERS_COMMON_MARS,
|
|
3857
3666
|
...PLATFORM_URLS.MARS,
|
|
3858
3667
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3859
|
-
|
|
3860
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3861
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL",
|
|
3862
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3863
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3864
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3668
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL"
|
|
3865
3669
|
};
|
|
3866
3670
|
|
|
3867
3671
|
// src/configs/env/teachers-web/nl/env.nl.prod.ts
|
|
@@ -3889,12 +3693,7 @@ var ENV_DISTRICT_NL_MARS = {
|
|
|
3889
3693
|
...ENV_DISTRICT_COMMON_MARS,
|
|
3890
3694
|
...PLATFORM_URLS.MARS,
|
|
3891
3695
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3892
|
-
|
|
3893
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3894
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL",
|
|
3895
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3896
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3897
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3696
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL"
|
|
3898
3697
|
};
|
|
3899
3698
|
|
|
3900
3699
|
// src/configs/env/district-dash/nl/env.nl.prod.ts
|
|
@@ -3920,14 +3719,10 @@ var ENV_DISTRICT_NL_VENUS = {
|
|
|
3920
3719
|
// src/configs/env/mobile/nl/env.nl.mars.ts
|
|
3921
3720
|
var ENV_MOBILE_NL_MARS = {
|
|
3922
3721
|
...ENV_MOBILE_COMMON_MARS,
|
|
3722
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3723
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3923
3724
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
3924
3725
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`,
|
|
3925
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3926
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3927
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3928
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3929
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
3930
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
3931
3726
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NL",
|
|
3932
3727
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
3933
3728
|
};
|
|
@@ -3949,8 +3744,7 @@ var ENV_MOBILE_NL_PROD = {
|
|
|
3949
3744
|
|
|
3950
3745
|
// src/configs/env/parent-web/nl/env.nl.mars.ts
|
|
3951
3746
|
var ENV_PARENT_WEB_NL_MARS = {
|
|
3952
|
-
|
|
3953
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3747
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
3954
3748
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl`
|
|
3955
3749
|
};
|
|
3956
3750
|
|
|
@@ -3969,17 +3763,11 @@ var ENV_PARENT_WEB_NL_VENUS = {
|
|
|
3969
3763
|
|
|
3970
3764
|
// src/configs/env/auth-web/fi/env.fi.mars.ts
|
|
3971
3765
|
var ENV_AUTH_WEB_FI_MARS = {
|
|
3766
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3767
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3768
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
3972
3769
|
...PLATFORM_URLS.MARS,
|
|
3973
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi
|
|
3974
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
3975
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
3976
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
3977
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
3978
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3979
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3980
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
3981
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
3982
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3770
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`
|
|
3983
3771
|
};
|
|
3984
3772
|
|
|
3985
3773
|
// src/configs/env/auth-web/fi/env.fi.prod.ts
|
|
@@ -4007,12 +3795,7 @@ var ENV_STUDENTS_WEB_FI_MARS = {
|
|
|
4007
3795
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4008
3796
|
...PLATFORM_URLS.MARS,
|
|
4009
3797
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4010
|
-
|
|
4011
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4012
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FI",
|
|
4013
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4014
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4015
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3798
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_FI"
|
|
4016
3799
|
};
|
|
4017
3800
|
|
|
4018
3801
|
// src/configs/env/students-web/fi/env.fi.prod.ts
|
|
@@ -4040,12 +3823,7 @@ var ENV_TEACHERS_WEB_FI_MARS = {
|
|
|
4040
3823
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4041
3824
|
...PLATFORM_URLS.MARS,
|
|
4042
3825
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4043
|
-
|
|
4044
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4045
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FI",
|
|
4046
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4047
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4048
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3826
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_FI"
|
|
4049
3827
|
};
|
|
4050
3828
|
|
|
4051
3829
|
// src/configs/env/teachers-web/fi/env.fi.prod.ts
|
|
@@ -4073,12 +3851,7 @@ var ENV_DISTRICT_FI_MARS = {
|
|
|
4073
3851
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4074
3852
|
...PLATFORM_URLS.MARS,
|
|
4075
3853
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4076
|
-
|
|
4077
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4078
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FI",
|
|
4079
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4080
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4081
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3854
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_FI"
|
|
4082
3855
|
};
|
|
4083
3856
|
|
|
4084
3857
|
// src/configs/env/district-dash/fi/env.fi.prod.ts
|
|
@@ -4104,14 +3877,10 @@ var ENV_DISTRICT_FI_VENUS = {
|
|
|
4104
3877
|
// src/configs/env/mobile/fi/env.fi.mars.ts
|
|
4105
3878
|
var ENV_MOBILE_FI_MARS = {
|
|
4106
3879
|
...ENV_MOBILE_COMMON_MARS,
|
|
3880
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3881
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4107
3882
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4108
3883
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`,
|
|
4109
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4110
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4111
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4112
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4113
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4114
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4115
3884
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_FI",
|
|
4116
3885
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4117
3886
|
};
|
|
@@ -4133,8 +3902,7 @@ var ENV_MOBILE_FI_PROD = {
|
|
|
4133
3902
|
|
|
4134
3903
|
// src/configs/env/parent-web/fi/env.fi.mars.ts
|
|
4135
3904
|
var ENV_PARENT_WEB_FI_MARS = {
|
|
4136
|
-
|
|
4137
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
3905
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4138
3906
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/fi`
|
|
4139
3907
|
};
|
|
4140
3908
|
|
|
@@ -4153,17 +3921,11 @@ var ENV_PARENT_WEB_FI_VENUS = {
|
|
|
4153
3921
|
|
|
4154
3922
|
// src/configs/env/auth-web/nl-be/env.nl-be.mars.ts
|
|
4155
3923
|
var ENV_AUTH_WEB_NL_BE_MARS = {
|
|
3924
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
3925
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
3926
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4156
3927
|
...PLATFORM_URLS.MARS,
|
|
4157
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be
|
|
4158
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4159
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4160
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4161
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4162
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4163
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4164
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4165
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4166
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
3928
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`
|
|
4167
3929
|
};
|
|
4168
3930
|
|
|
4169
3931
|
// src/configs/env/auth-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4191,12 +3953,7 @@ var ENV_STUDENTS_WEB_NL_BE_MARS = {
|
|
|
4191
3953
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4192
3954
|
...PLATFORM_URLS.MARS,
|
|
4193
3955
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4194
|
-
|
|
4195
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4196
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL_BE",
|
|
4197
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4198
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4199
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3956
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_NL_BE"
|
|
4200
3957
|
};
|
|
4201
3958
|
|
|
4202
3959
|
// src/configs/env/students-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4224,12 +3981,7 @@ var ENV_TEACHERS_WEB_NL_BE_MARS = {
|
|
|
4224
3981
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4225
3982
|
...PLATFORM_URLS.MARS,
|
|
4226
3983
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4227
|
-
|
|
4228
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4229
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL_BE",
|
|
4230
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4231
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4232
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
3984
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_NL_BE"
|
|
4233
3985
|
};
|
|
4234
3986
|
|
|
4235
3987
|
// src/configs/env/teachers-web/nl-be/env.nl-be.prod.ts
|
|
@@ -4257,12 +4009,7 @@ var ENV_DISTRICT_NL_BE_MARS = {
|
|
|
4257
4009
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4258
4010
|
...PLATFORM_URLS.MARS,
|
|
4259
4011
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4260
|
-
|
|
4261
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4262
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL_BE",
|
|
4263
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4264
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4265
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4012
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_NL_BE"
|
|
4266
4013
|
};
|
|
4267
4014
|
|
|
4268
4015
|
// src/configs/env/district-dash/nl-be/env.nl-be.prod.ts
|
|
@@ -4288,14 +4035,10 @@ var ENV_DISTRICT_NL_BE_VENUS = {
|
|
|
4288
4035
|
// src/configs/env/mobile/nl-be/env.nl-be.mars.ts
|
|
4289
4036
|
var ENV_MOBILE_NL_BE_MARS = {
|
|
4290
4037
|
...ENV_MOBILE_COMMON_MARS,
|
|
4038
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4039
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4291
4040
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4292
4041
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`,
|
|
4293
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4294
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4295
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4296
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4297
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4298
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4299
4042
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_NL_BE",
|
|
4300
4043
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4301
4044
|
};
|
|
@@ -4317,8 +4060,7 @@ var ENV_MOBILE_NL_BE_PROD = {
|
|
|
4317
4060
|
|
|
4318
4061
|
// src/configs/env/parent-web/nl-be/env.nl-be.mars.ts
|
|
4319
4062
|
var ENV_PARENT_WEB_NL_BE_MARS = {
|
|
4320
|
-
|
|
4321
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4063
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4322
4064
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/nl-be`
|
|
4323
4065
|
};
|
|
4324
4066
|
|
|
@@ -4337,17 +4079,11 @@ var ENV_PARENT_WEB_NL_BE_VENUS = {
|
|
|
4337
4079
|
|
|
4338
4080
|
// src/configs/env/auth-web/ie/env.ie.mars.ts
|
|
4339
4081
|
var ENV_AUTH_WEB_IE_MARS = {
|
|
4082
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4083
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4084
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4340
4085
|
...PLATFORM_URLS.MARS,
|
|
4341
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie
|
|
4342
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4343
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4344
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4345
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4346
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4347
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4348
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4349
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4350
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4086
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`
|
|
4351
4087
|
};
|
|
4352
4088
|
|
|
4353
4089
|
// src/configs/env/auth-web/ie/env.ie.prod.ts
|
|
@@ -4375,12 +4111,7 @@ var ENV_STUDENTS_WEB_IE_MARS = {
|
|
|
4375
4111
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4376
4112
|
...PLATFORM_URLS.MARS,
|
|
4377
4113
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4378
|
-
|
|
4379
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4380
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IE",
|
|
4381
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4382
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4383
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4114
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IE"
|
|
4384
4115
|
};
|
|
4385
4116
|
|
|
4386
4117
|
// src/configs/env/students-web/ie/env.ie.prod.ts
|
|
@@ -4408,12 +4139,7 @@ var ENV_TEACHERS_WEB_IE_MARS = {
|
|
|
4408
4139
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4409
4140
|
...PLATFORM_URLS.MARS,
|
|
4410
4141
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4411
|
-
|
|
4412
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4413
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IE",
|
|
4414
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4415
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4416
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4142
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IE"
|
|
4417
4143
|
};
|
|
4418
4144
|
|
|
4419
4145
|
// src/configs/env/teachers-web/ie/env.ie.prod.ts
|
|
@@ -4441,12 +4167,7 @@ var ENV_DISTRICT_IE_MARS = {
|
|
|
4441
4167
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4442
4168
|
...PLATFORM_URLS.MARS,
|
|
4443
4169
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4444
|
-
|
|
4445
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4446
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IE",
|
|
4447
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4448
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4449
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4170
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IE"
|
|
4450
4171
|
};
|
|
4451
4172
|
|
|
4452
4173
|
// src/configs/env/district-dash/ie/env.ie.prod.ts
|
|
@@ -4472,14 +4193,10 @@ var ENV_DISTRICT_IE_VENUS = {
|
|
|
4472
4193
|
// src/configs/env/mobile/ie/env.ie.mars.ts
|
|
4473
4194
|
var ENV_MOBILE_IE_MARS = {
|
|
4474
4195
|
...ENV_MOBILE_COMMON_MARS,
|
|
4196
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4197
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4475
4198
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4476
4199
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`,
|
|
4477
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4478
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4479
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4480
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4481
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4482
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4483
4200
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IE",
|
|
4484
4201
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4485
4202
|
};
|
|
@@ -4501,8 +4218,7 @@ var ENV_MOBILE_IE_PROD = {
|
|
|
4501
4218
|
|
|
4502
4219
|
// src/configs/env/parent-web/ie/env.ie.mars.ts
|
|
4503
4220
|
var ENV_PARENT_WEB_IE_MARS = {
|
|
4504
|
-
|
|
4505
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4221
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4506
4222
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ie`
|
|
4507
4223
|
};
|
|
4508
4224
|
|
|
@@ -4521,17 +4237,11 @@ var ENV_PARENT_WEB_IE_VENUS = {
|
|
|
4521
4237
|
|
|
4522
4238
|
// src/configs/env/auth-web/is/env.is.mars.ts
|
|
4523
4239
|
var ENV_AUTH_WEB_IS_MARS = {
|
|
4240
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4241
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4242
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4524
4243
|
...PLATFORM_URLS.MARS,
|
|
4525
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is
|
|
4526
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4527
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4528
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4529
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4530
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4531
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4532
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4533
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4534
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4244
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`
|
|
4535
4245
|
};
|
|
4536
4246
|
|
|
4537
4247
|
// src/configs/env/auth-web/is/env.is.prod.ts
|
|
@@ -4559,12 +4269,7 @@ var ENV_STUDENTS_WEB_IS_MARS = {
|
|
|
4559
4269
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4560
4270
|
...PLATFORM_URLS.MARS,
|
|
4561
4271
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4562
|
-
|
|
4563
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4564
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IS",
|
|
4565
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4566
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4567
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4272
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IS"
|
|
4568
4273
|
};
|
|
4569
4274
|
|
|
4570
4275
|
// src/configs/env/students-web/is/env.is.prod.ts
|
|
@@ -4592,12 +4297,7 @@ var ENV_TEACHERS_WEB_IS_MARS = {
|
|
|
4592
4297
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4593
4298
|
...PLATFORM_URLS.MARS,
|
|
4594
4299
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4595
|
-
|
|
4596
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4597
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IS",
|
|
4598
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4599
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4600
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4300
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IS"
|
|
4601
4301
|
};
|
|
4602
4302
|
|
|
4603
4303
|
// src/configs/env/teachers-web/is/env.is.prod.ts
|
|
@@ -4625,12 +4325,7 @@ var ENV_DISTRICT_IS_MARS = {
|
|
|
4625
4325
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4626
4326
|
...PLATFORM_URLS.MARS,
|
|
4627
4327
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4628
|
-
|
|
4629
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4630
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IS",
|
|
4631
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4632
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4633
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4328
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IS"
|
|
4634
4329
|
};
|
|
4635
4330
|
|
|
4636
4331
|
// src/configs/env/district-dash/is/env.is.prod.ts
|
|
@@ -4656,14 +4351,10 @@ var ENV_DISTRICT_IS_VENUS = {
|
|
|
4656
4351
|
// src/configs/env/mobile/is/env.is.mars.ts
|
|
4657
4352
|
var ENV_MOBILE_IS_MARS = {
|
|
4658
4353
|
...ENV_MOBILE_COMMON_MARS,
|
|
4354
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4355
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4659
4356
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4660
4357
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`,
|
|
4661
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4662
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4663
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4664
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4665
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4666
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4667
4358
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IS",
|
|
4668
4359
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4669
4360
|
};
|
|
@@ -4685,8 +4376,7 @@ var ENV_MOBILE_IS_PROD = {
|
|
|
4685
4376
|
|
|
4686
4377
|
// src/configs/env/parent-web/is/env.is.mars.ts
|
|
4687
4378
|
var ENV_PARENT_WEB_IS_MARS = {
|
|
4688
|
-
|
|
4689
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4379
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4690
4380
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/is`
|
|
4691
4381
|
};
|
|
4692
4382
|
|
|
@@ -4705,17 +4395,11 @@ var ENV_PARENT_WEB_IS_VENUS = {
|
|
|
4705
4395
|
|
|
4706
4396
|
// src/configs/env/auth-web/sv-fi/env.sv-fi.mars.ts
|
|
4707
4397
|
var ENV_AUTH_WEB_SV_FI_MARS = {
|
|
4398
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4399
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4400
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4708
4401
|
...PLATFORM_URLS.MARS,
|
|
4709
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi
|
|
4710
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4711
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4712
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4713
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4714
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4715
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4716
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4717
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4718
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4402
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`
|
|
4719
4403
|
};
|
|
4720
4404
|
|
|
4721
4405
|
// src/configs/env/auth-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4743,12 +4427,7 @@ var ENV_STUDENTS_WEB_SV_FI_MARS = {
|
|
|
4743
4427
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4744
4428
|
...PLATFORM_URLS.MARS,
|
|
4745
4429
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4746
|
-
|
|
4747
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4748
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SV_FI",
|
|
4749
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4750
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4751
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4430
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SV_FI"
|
|
4752
4431
|
};
|
|
4753
4432
|
|
|
4754
4433
|
// src/configs/env/students-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4776,12 +4455,7 @@ var ENV_TEACHERS_WEB_SV_FI_MARS = {
|
|
|
4776
4455
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4777
4456
|
...PLATFORM_URLS.MARS,
|
|
4778
4457
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4779
|
-
|
|
4780
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4781
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SV_FI",
|
|
4782
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4783
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4784
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4458
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SV_FI"
|
|
4785
4459
|
};
|
|
4786
4460
|
|
|
4787
4461
|
// src/configs/env/teachers-web/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4809,12 +4483,7 @@ var ENV_DISTRICT_SV_FI_MARS = {
|
|
|
4809
4483
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4810
4484
|
...PLATFORM_URLS.MARS,
|
|
4811
4485
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4812
|
-
|
|
4813
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4814
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SV_FI",
|
|
4815
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4816
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4817
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4486
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SV_FI"
|
|
4818
4487
|
};
|
|
4819
4488
|
|
|
4820
4489
|
// src/configs/env/district-dash/sv-fi/env.sv-fi.prod.ts
|
|
@@ -4840,14 +4509,10 @@ var ENV_DISTRICT_SV_FI_VENUS = {
|
|
|
4840
4509
|
// src/configs/env/mobile/sv-fi/env.sv-fi.mars.ts
|
|
4841
4510
|
var ENV_MOBILE_SV_FI_MARS = {
|
|
4842
4511
|
...ENV_MOBILE_COMMON_MARS,
|
|
4512
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4513
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4843
4514
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
4844
4515
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`,
|
|
4845
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4846
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4847
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4848
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4849
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4850
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4851
4516
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SV_FI",
|
|
4852
4517
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
4853
4518
|
};
|
|
@@ -4869,8 +4534,7 @@ var ENV_MOBILE_SV_FI_PROD = {
|
|
|
4869
4534
|
|
|
4870
4535
|
// src/configs/env/parent-web/sv-fi/env.sv-fi.mars.ts
|
|
4871
4536
|
var ENV_PARENT_WEB_SV_FI_MARS = {
|
|
4872
|
-
|
|
4873
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4537
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
4874
4538
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/sv-fi`
|
|
4875
4539
|
};
|
|
4876
4540
|
|
|
@@ -4889,17 +4553,11 @@ var ENV_PARENT_WEB_SV_FI_VENUS = {
|
|
|
4889
4553
|
|
|
4890
4554
|
// src/configs/env/auth-web/at/env.at.mars.ts
|
|
4891
4555
|
var ENV_AUTH_WEB_AT_MARS = {
|
|
4556
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4557
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4558
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
4892
4559
|
...PLATFORM_URLS.MARS,
|
|
4893
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at
|
|
4894
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
4895
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
4896
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
4897
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
4898
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
4899
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
4900
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
4901
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
4902
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4560
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`
|
|
4903
4561
|
};
|
|
4904
4562
|
|
|
4905
4563
|
// src/configs/env/auth-web/at/env.at.prod.ts
|
|
@@ -4927,12 +4585,7 @@ var ENV_STUDENTS_WEB_AT_MARS = {
|
|
|
4927
4585
|
...ENV_STUDENTS_COMMON_MARS,
|
|
4928
4586
|
...PLATFORM_URLS.MARS,
|
|
4929
4587
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
4930
|
-
|
|
4931
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4932
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_AT",
|
|
4933
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4934
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4935
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4588
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_AT"
|
|
4936
4589
|
};
|
|
4937
4590
|
|
|
4938
4591
|
// src/configs/env/students-web/at/env.at.prod.ts
|
|
@@ -4960,12 +4613,7 @@ var ENV_TEACHERS_WEB_AT_MARS = {
|
|
|
4960
4613
|
...ENV_TEACHERS_COMMON_MARS,
|
|
4961
4614
|
...PLATFORM_URLS.MARS,
|
|
4962
4615
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
4963
|
-
|
|
4964
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4965
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_AT",
|
|
4966
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
4967
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
4968
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4616
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_AT"
|
|
4969
4617
|
};
|
|
4970
4618
|
|
|
4971
4619
|
// src/configs/env/teachers-web/at/env.at.prod.ts
|
|
@@ -4993,12 +4641,7 @@ var ENV_DISTRICT_AT_MARS = {
|
|
|
4993
4641
|
...ENV_DISTRICT_COMMON_MARS,
|
|
4994
4642
|
...PLATFORM_URLS.MARS,
|
|
4995
4643
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
4996
|
-
|
|
4997
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4998
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_AT",
|
|
4999
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5000
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5001
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4644
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_AT"
|
|
5002
4645
|
};
|
|
5003
4646
|
|
|
5004
4647
|
// src/configs/env/district-dash/at/env.at.prod.ts
|
|
@@ -5024,15 +4667,11 @@ var ENV_DISTRICT_AT_VENUS = {
|
|
|
5024
4667
|
// src/configs/env/mobile/at/env.at.mars.ts
|
|
5025
4668
|
var ENV_MOBILE_AT_MARS = {
|
|
5026
4669
|
...ENV_MOBILE_COMMON_MARS,
|
|
4670
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4671
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5027
4672
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5028
4673
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`,
|
|
5029
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5030
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5031
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5032
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5033
4674
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_AT",
|
|
5034
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5035
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5036
4675
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5037
4676
|
};
|
|
5038
4677
|
|
|
@@ -5053,8 +4692,7 @@ var ENV_MOBILE_AT_PROD = {
|
|
|
5053
4692
|
|
|
5054
4693
|
// src/configs/env/parent-web/at/env.at.mars.ts
|
|
5055
4694
|
var ENV_PARENT_WEB_AT_MARS = {
|
|
5056
|
-
|
|
5057
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4695
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5058
4696
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/at`
|
|
5059
4697
|
};
|
|
5060
4698
|
|
|
@@ -5073,17 +4711,11 @@ var ENV_PARENT_WEB_AT_VENUS = {
|
|
|
5073
4711
|
|
|
5074
4712
|
// src/configs/env/auth-web/ch/env.ch.mars.ts
|
|
5075
4713
|
var ENV_AUTH_WEB_CH_MARS = {
|
|
4714
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4715
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4716
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5076
4717
|
...PLATFORM_URLS.MARS,
|
|
5077
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch
|
|
5078
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5079
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5080
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5081
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5082
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5083
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5084
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5085
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5086
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4718
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`
|
|
5087
4719
|
};
|
|
5088
4720
|
|
|
5089
4721
|
// src/configs/env/auth-web/ch/env.ch.prod.ts
|
|
@@ -5111,12 +4743,7 @@ var ENV_STUDENTS_WEB_CH_MARS = {
|
|
|
5111
4743
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5112
4744
|
...PLATFORM_URLS.MARS,
|
|
5113
4745
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5114
|
-
|
|
5115
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5116
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CH",
|
|
5117
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5118
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5119
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4746
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CH"
|
|
5120
4747
|
};
|
|
5121
4748
|
|
|
5122
4749
|
// src/configs/env/students-web/ch/env.ch.prod.ts
|
|
@@ -5144,12 +4771,7 @@ var ENV_TEACHERS_WEB_CH_MARS = {
|
|
|
5144
4771
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5145
4772
|
...PLATFORM_URLS.MARS,
|
|
5146
4773
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5147
|
-
|
|
5148
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5149
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CH",
|
|
5150
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5151
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5152
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4774
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CH"
|
|
5153
4775
|
};
|
|
5154
4776
|
|
|
5155
4777
|
// src/configs/env/teachers-web/ch/env.ch.prod.ts
|
|
@@ -5177,12 +4799,7 @@ var ENV_DISTRICT_CH_MARS = {
|
|
|
5177
4799
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5178
4800
|
...PLATFORM_URLS.MARS,
|
|
5179
4801
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5180
|
-
|
|
5181
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5182
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CH",
|
|
5183
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5184
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5185
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4802
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CH"
|
|
5186
4803
|
};
|
|
5187
4804
|
|
|
5188
4805
|
// src/configs/env/district-dash/ch/env.ch.prod.ts
|
|
@@ -5208,15 +4825,11 @@ var ENV_DISTRICT_CH_VENUS = {
|
|
|
5208
4825
|
// src/configs/env/mobile/ch/env.ch.mars.ts
|
|
5209
4826
|
var ENV_MOBILE_CH_MARS = {
|
|
5210
4827
|
...ENV_MOBILE_COMMON_MARS,
|
|
4828
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4829
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5211
4830
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5212
4831
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`,
|
|
5213
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5214
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5215
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5216
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5217
4832
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CH",
|
|
5218
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5219
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5220
4833
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5221
4834
|
};
|
|
5222
4835
|
|
|
@@ -5237,8 +4850,7 @@ var ENV_MOBILE_CH_PROD = {
|
|
|
5237
4850
|
|
|
5238
4851
|
// src/configs/env/parent-web/ch/env.ch.mars.ts
|
|
5239
4852
|
var ENV_PARENT_WEB_CH_MARS = {
|
|
5240
|
-
|
|
5241
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
4853
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5242
4854
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ch`
|
|
5243
4855
|
};
|
|
5244
4856
|
|
|
@@ -5257,17 +4869,11 @@ var ENV_PARENT_WEB_CH_VENUS = {
|
|
|
5257
4869
|
|
|
5258
4870
|
// src/configs/env/auth-web/es/env.es.mars.ts
|
|
5259
4871
|
var ENV_AUTH_WEB_ES_MARS = {
|
|
4872
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
4873
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4874
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5260
4875
|
...PLATFORM_URLS.MARS,
|
|
5261
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es
|
|
5262
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5263
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5264
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5265
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5266
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5267
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5268
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5269
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5270
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
4876
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`
|
|
5271
4877
|
};
|
|
5272
4878
|
|
|
5273
4879
|
// src/configs/env/auth-web/es/env.es.prod.ts
|
|
@@ -5295,12 +4901,7 @@ var ENV_STUDENTS_WEB_ES_MARS = {
|
|
|
5295
4901
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5296
4902
|
...PLATFORM_URLS.MARS,
|
|
5297
4903
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5298
|
-
|
|
5299
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5300
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_ES",
|
|
5301
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5302
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5303
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4904
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_ES"
|
|
5304
4905
|
};
|
|
5305
4906
|
|
|
5306
4907
|
// src/configs/env/students-web/es/env.es.prod.ts
|
|
@@ -5328,12 +4929,7 @@ var ENV_TEACHERS_WEB_ES_MARS = {
|
|
|
5328
4929
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5329
4930
|
...PLATFORM_URLS.MARS,
|
|
5330
4931
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5331
|
-
|
|
5332
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5333
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_ES",
|
|
5334
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5335
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5336
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4932
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_ES"
|
|
5337
4933
|
};
|
|
5338
4934
|
|
|
5339
4935
|
// src/configs/env/teachers-web/es/env.es.prod.ts
|
|
@@ -5361,12 +4957,7 @@ var ENV_DISTRICT_ES_MARS = {
|
|
|
5361
4957
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5362
4958
|
...PLATFORM_URLS.MARS,
|
|
5363
4959
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5364
|
-
|
|
5365
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5366
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_ES",
|
|
5367
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5368
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5369
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
4960
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_ES"
|
|
5370
4961
|
};
|
|
5371
4962
|
|
|
5372
4963
|
// src/configs/env/district-dash/es/env.es.prod.ts
|
|
@@ -5392,15 +4983,11 @@ var ENV_DISTRICT_ES_VENUS = {
|
|
|
5392
4983
|
// src/configs/env/mobile/es/env.es.mars.ts
|
|
5393
4984
|
var ENV_MOBILE_ES_MARS = {
|
|
5394
4985
|
...ENV_MOBILE_COMMON_MARS,
|
|
4986
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
4987
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5395
4988
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5396
4989
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`,
|
|
5397
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5398
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5399
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5400
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5401
4990
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_ES",
|
|
5402
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5403
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5404
4991
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5405
4992
|
};
|
|
5406
4993
|
|
|
@@ -5421,8 +5008,7 @@ var ENV_MOBILE_ES_PROD = {
|
|
|
5421
5008
|
|
|
5422
5009
|
// src/configs/env/parent-web/es/env.es.mars.ts
|
|
5423
5010
|
var ENV_PARENT_WEB_ES_MARS = {
|
|
5424
|
-
|
|
5425
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5011
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5426
5012
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/es`
|
|
5427
5013
|
};
|
|
5428
5014
|
|
|
@@ -5441,17 +5027,11 @@ var ENV_PARENT_WEB_ES_VENUS = {
|
|
|
5441
5027
|
|
|
5442
5028
|
// src/configs/env/auth-web/pt/env.pt.mars.ts
|
|
5443
5029
|
var ENV_AUTH_WEB_PT_MARS = {
|
|
5030
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5031
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5032
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5444
5033
|
...PLATFORM_URLS.MARS,
|
|
5445
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt
|
|
5446
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5447
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
5448
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
5449
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5450
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5451
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5452
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5453
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5454
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5034
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`
|
|
5455
5035
|
};
|
|
5456
5036
|
|
|
5457
5037
|
// src/configs/env/auth-web/pt/env.pt.prod.ts
|
|
@@ -5479,12 +5059,7 @@ var ENV_STUDENTS_WEB_PT_MARS = {
|
|
|
5479
5059
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5480
5060
|
...PLATFORM_URLS.MARS,
|
|
5481
5061
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5482
|
-
|
|
5483
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5484
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PT",
|
|
5485
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5486
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5487
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5062
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_PT"
|
|
5488
5063
|
};
|
|
5489
5064
|
|
|
5490
5065
|
// src/configs/env/students-web/pt/env.pt.prod.ts
|
|
@@ -5512,12 +5087,7 @@ var ENV_TEACHERS_WEB_PT_MARS = {
|
|
|
5512
5087
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5513
5088
|
...PLATFORM_URLS.MARS,
|
|
5514
5089
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5515
|
-
|
|
5516
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5517
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PT",
|
|
5518
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5519
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5520
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5090
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_PT"
|
|
5521
5091
|
};
|
|
5522
5092
|
|
|
5523
5093
|
// src/configs/env/teachers-web/pt/env.pt.prod.ts
|
|
@@ -5545,12 +5115,7 @@ var ENV_DISTRICT_PT_MARS = {
|
|
|
5545
5115
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5546
5116
|
...PLATFORM_URLS.MARS,
|
|
5547
5117
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5548
|
-
|
|
5549
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5550
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PT",
|
|
5551
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5552
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5553
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5118
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_PT"
|
|
5554
5119
|
};
|
|
5555
5120
|
|
|
5556
5121
|
// src/configs/env/district-dash/pt/env.pt.prod.ts
|
|
@@ -5576,15 +5141,11 @@ var ENV_DISTRICT_PT_VENUS = {
|
|
|
5576
5141
|
// src/configs/env/mobile/pt/env.pt.mars.ts
|
|
5577
5142
|
var ENV_MOBILE_PT_MARS = {
|
|
5578
5143
|
...ENV_MOBILE_COMMON_MARS,
|
|
5144
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5145
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5579
5146
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5580
5147
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`,
|
|
5581
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5582
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5583
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5584
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5585
5148
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_PT",
|
|
5586
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5587
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5588
5149
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5589
5150
|
};
|
|
5590
5151
|
|
|
@@ -5605,8 +5166,7 @@ var ENV_MOBILE_PT_PROD = {
|
|
|
5605
5166
|
|
|
5606
5167
|
// src/configs/env/parent-web/pt/env.pt.mars.ts
|
|
5607
5168
|
var ENV_PARENT_WEB_PT_MARS = {
|
|
5608
|
-
|
|
5609
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5169
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5610
5170
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/pt`
|
|
5611
5171
|
};
|
|
5612
5172
|
|
|
@@ -5625,19 +5185,13 @@ var ENV_PARENT_WEB_PT_VENUS = {
|
|
|
5625
5185
|
|
|
5626
5186
|
// src/configs/env/auth-web/us/eu_main/env.us.mars.ts
|
|
5627
5187
|
var ENV_AUTH_WEB_US_EU_MAIN_MARS = {
|
|
5188
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5189
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5190
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5628
5191
|
...PLATFORM_URLS.MARS,
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5633
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5634
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5635
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5636
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5637
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5638
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5639
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5640
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5192
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5193
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5194
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink"
|
|
5641
5195
|
};
|
|
5642
5196
|
|
|
5643
5197
|
// src/configs/env/auth-web/us/eu_main/env.us.prod.ts
|
|
@@ -5663,19 +5217,13 @@ var ENV_AUTH_WEB_US_EU_MAIN_VENUS = {
|
|
|
5663
5217
|
|
|
5664
5218
|
// src/configs/env/auth-web/ca/eu_main/env.ca.mars.ts
|
|
5665
5219
|
var ENV_AUTH_WEB_CA_EU_MAIN_MARS = {
|
|
5220
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
5221
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5222
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5666
5223
|
...PLATFORM_URLS.MARS,
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
5671
|
-
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
5672
|
-
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
5673
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5674
|
-
CLASS_LINK_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5675
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5676
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
5677
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
5678
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5224
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5225
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5226
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink"
|
|
5679
5227
|
};
|
|
5680
5228
|
|
|
5681
5229
|
// src/configs/env/auth-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5703,12 +5251,7 @@ var ENV_AUTH_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5703
5251
|
var ENV_STUDENTS_WEB_US_EU_MAIN_MARS = {
|
|
5704
5252
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5705
5253
|
...PLATFORM_URLS.MARS,
|
|
5706
|
-
|
|
5707
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5708
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
5709
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5710
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5711
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5254
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US"
|
|
5712
5255
|
};
|
|
5713
5256
|
|
|
5714
5257
|
// src/configs/env/students-web/us/eu_main/env.us.prod.ts
|
|
@@ -5734,13 +5277,7 @@ var ENV_STUDENTS_WEB_US_EU_MAIN_VENUS = {
|
|
|
5734
5277
|
var ENV_STUDENTS_WEB_CA_EU_MAIN_MARS = {
|
|
5735
5278
|
...ENV_STUDENTS_COMMON_MARS,
|
|
5736
5279
|
...PLATFORM_URLS.MARS,
|
|
5737
|
-
|
|
5738
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5739
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5740
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA",
|
|
5741
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5742
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5743
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5280
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA"
|
|
5744
5281
|
};
|
|
5745
5282
|
|
|
5746
5283
|
// src/configs/env/students-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5766,12 +5303,7 @@ var ENV_STUDENTS_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5766
5303
|
var ENV_TEACHERS_WEB_US_EU_MAIN_MARS = {
|
|
5767
5304
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5768
5305
|
...PLATFORM_URLS.MARS,
|
|
5769
|
-
|
|
5770
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5771
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
5772
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5773
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5774
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5306
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US"
|
|
5775
5307
|
};
|
|
5776
5308
|
|
|
5777
5309
|
// src/configs/env/teachers-web/us/eu_main/env.us.prod.ts
|
|
@@ -5797,13 +5329,7 @@ var ENV_TEACHERS_WEB_US_EU_MAIN_VENUS = {
|
|
|
5797
5329
|
var ENV_TEACHERS_WEB_CA_EU_MAIN_MARS = {
|
|
5798
5330
|
...ENV_TEACHERS_COMMON_MARS,
|
|
5799
5331
|
...PLATFORM_URLS.MARS,
|
|
5800
|
-
|
|
5801
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5802
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5803
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
5804
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5805
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5806
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5332
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA"
|
|
5807
5333
|
};
|
|
5808
5334
|
|
|
5809
5335
|
// src/configs/env/teachers-web/ca/eu_main/env.ca.prod.ts
|
|
@@ -5829,12 +5355,7 @@ var ENV_TEACHERS_WEB_CA_EU_MAIN_VENUS = {
|
|
|
5829
5355
|
var ENV_DISTRICT_US_EU_MAIN_MARS = {
|
|
5830
5356
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5831
5357
|
...PLATFORM_URLS.MARS,
|
|
5832
|
-
|
|
5833
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5834
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
5835
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5836
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5837
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5358
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US"
|
|
5838
5359
|
};
|
|
5839
5360
|
|
|
5840
5361
|
// src/configs/env/district-dash/us/eu_main/env.us.prod.ts
|
|
@@ -5860,13 +5381,7 @@ var ENV_DISTRICT_US_EU_MAIN_VENUS = {
|
|
|
5860
5381
|
var ENV_DISTRICT_CA_EU_MAIN_MARS = {
|
|
5861
5382
|
...ENV_DISTRICT_COMMON_MARS,
|
|
5862
5383
|
...PLATFORM_URLS.MARS,
|
|
5863
|
-
|
|
5864
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5865
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5866
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
5867
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5868
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5869
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5384
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA"
|
|
5870
5385
|
};
|
|
5871
5386
|
|
|
5872
5387
|
// src/configs/env/district-dash/ca/eu_main/env.ca.prod.ts
|
|
@@ -5891,18 +5406,14 @@ var ENV_DISTRICT_CA_EU_MAIN_VENUS = {
|
|
|
5891
5406
|
// src/configs/env/mobile/us/eu_main/env.us.mars.ts
|
|
5892
5407
|
var ENV_MOBILE_US_EU_MAIN_MARS = {
|
|
5893
5408
|
...ENV_MOBILE_COMMON_MARS,
|
|
5409
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5410
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5894
5411
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5895
5412
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
5896
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5897
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5898
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5899
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5900
5413
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5905
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5414
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5415
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink",
|
|
5416
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5906
5417
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5907
5418
|
};
|
|
5908
5419
|
|
|
@@ -5928,19 +5439,14 @@ var ENV_MOBILE_US_EU_MAIN_PROD = {
|
|
|
5928
5439
|
// src/configs/env/mobile/ca/eu_main/env.ca.mars.ts
|
|
5929
5440
|
var ENV_MOBILE_CA_EU_MAIN_MARS = {
|
|
5930
5441
|
...ENV_MOBILE_COMMON_MARS,
|
|
5931
|
-
|
|
5442
|
+
GOOGLE_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/google",
|
|
5443
|
+
MICROSOFT_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/microsoft",
|
|
5932
5444
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
5933
5445
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
5934
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
5935
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5936
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
5937
|
-
WEBSOCKETS_URL: "https://websockets.mars.magmamath.com",
|
|
5938
5446
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
SCHOOLOGY_AUTH: "https://api.mars.magmamath.com/v2/auth/edlink",
|
|
5943
|
-
CLEVER_AUTH: "https://api.mars.magmamath.com/v2/auth/clever",
|
|
5447
|
+
CLASS_LINK_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink-classlink",
|
|
5448
|
+
SCHOOLOGY_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/edlink",
|
|
5449
|
+
CLEVER_AUTH: "https://api.eu.mars.magmamath.com/v2/auth/clever",
|
|
5944
5450
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
5945
5451
|
};
|
|
5946
5452
|
|
|
@@ -5965,8 +5471,7 @@ var ENV_MOBILE_CA_EU_MAIN_PROD = {
|
|
|
5965
5471
|
|
|
5966
5472
|
// src/configs/env/parent-web/us/eu_main/env.us.mars.ts
|
|
5967
5473
|
var ENV_PARENT_WEB_US_EU_MAIN_MARS = {
|
|
5968
|
-
|
|
5969
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5474
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5970
5475
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
5971
5476
|
};
|
|
5972
5477
|
|
|
@@ -5985,8 +5490,7 @@ var ENV_PARENT_WEB_US_EU_MAIN_VENUS = {
|
|
|
5985
5490
|
|
|
5986
5491
|
// src/configs/env/parent-web/ca/eu_main/env.ca.mars.ts
|
|
5987
5492
|
var ENV_PARENT_WEB_CA_EU_MAIN_MARS = {
|
|
5988
|
-
|
|
5989
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5493
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
5990
5494
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL
|
|
5991
5495
|
};
|
|
5992
5496
|
|
|
@@ -6005,15 +5509,9 @@ var ENV_PARENT_WEB_CA_EU_MAIN_VENUS = {
|
|
|
6005
5509
|
|
|
6006
5510
|
// src/configs/env/auth-web/ckb/env.ckb.mars.ts
|
|
6007
5511
|
var ENV_AUTH_WEB_IQ_MARS = {
|
|
5512
|
+
...ENV_AUTH_WEB_COMMON_MARS,
|
|
6008
5513
|
...PLATFORM_URLS.MARS,
|
|
6009
|
-
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb
|
|
6010
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
6011
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
6012
|
-
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
6013
|
-
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
6014
|
-
INTERCOM_APP_ID: "tjidhu4j",
|
|
6015
|
-
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
6016
|
-
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
5514
|
+
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`
|
|
6017
5515
|
};
|
|
6018
5516
|
|
|
6019
5517
|
// src/configs/env/auth-web/ckb/env.ckb.prod.ts
|
|
@@ -6039,12 +5537,7 @@ var ENV_STUDENTS_WEB_IQ_MARS = {
|
|
|
6039
5537
|
...ENV_STUDENTS_COMMON_MARS,
|
|
6040
5538
|
...PLATFORM_URLS.MARS,
|
|
6041
5539
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6042
|
-
|
|
6043
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6044
|
-
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IQ",
|
|
6045
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6046
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6047
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5540
|
+
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_IQ"
|
|
6048
5541
|
};
|
|
6049
5542
|
|
|
6050
5543
|
// src/configs/env/students-web/ckb/env.ckb.prod.ts
|
|
@@ -6072,12 +5565,7 @@ var ENV_TEACHERS_WEB_IQ_MARS = {
|
|
|
6072
5565
|
...ENV_TEACHERS_COMMON_MARS,
|
|
6073
5566
|
...PLATFORM_URLS.MARS,
|
|
6074
5567
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6075
|
-
|
|
6076
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6077
|
-
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IQ",
|
|
6078
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6079
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6080
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5568
|
+
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_IQ"
|
|
6081
5569
|
};
|
|
6082
5570
|
|
|
6083
5571
|
// src/configs/env/teachers-web/ckb/env.ckb.prod.ts
|
|
@@ -6105,12 +5593,7 @@ var ENV_DISTRICT_IQ_MARS = {
|
|
|
6105
5593
|
...ENV_DISTRICT_COMMON_MARS,
|
|
6106
5594
|
...PLATFORM_URLS.MARS,
|
|
6107
5595
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6108
|
-
|
|
6109
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6110
|
-
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IQ",
|
|
6111
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6112
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6113
|
-
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
5596
|
+
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_IQ"
|
|
6114
5597
|
};
|
|
6115
5598
|
|
|
6116
5599
|
// src/configs/env/district-dash/ckb/env.ckb.prod.ts
|
|
@@ -6138,10 +5621,6 @@ var ENV_MOBILE_IQ_MARS = {
|
|
|
6138
5621
|
...ENV_MOBILE_COMMON_MARS,
|
|
6139
5622
|
TEACHERS_WEB_URL: PLATFORM_URLS.MARS.TEACHERS_WEB_URL,
|
|
6140
5623
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`,
|
|
6141
|
-
API_URL: "https://api.mars.magmamath.com/v2",
|
|
6142
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
6143
|
-
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
6144
|
-
WEBSOCKETS_URL: "https://websockets.mars.matteappen.se",
|
|
6145
5624
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_IQ",
|
|
6146
5625
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
6147
5626
|
};
|
|
@@ -6161,8 +5640,7 @@ var ENV_MOBILE_IQ_PROD = {
|
|
|
6161
5640
|
|
|
6162
5641
|
// src/configs/env/parent-web/ckb/env.ckb.mars.ts
|
|
6163
5642
|
var ENV_PARENT_WEB_IQ_MARS = {
|
|
6164
|
-
|
|
6165
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
5643
|
+
...ENV_PARENT_WEB_COMMON_MARS,
|
|
6166
5644
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ckb`
|
|
6167
5645
|
};
|
|
6168
5646
|
|
|
@@ -12388,6 +11866,6 @@ var AppConfigManager = class {
|
|
|
12388
11866
|
};
|
|
12389
11867
|
};
|
|
12390
11868
|
|
|
12391
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, CH_CALENDAR_CONFIG, CalculatorType, CalendarLocale, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, Environment, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, HIGH_SCHOOL_STRING_GRADES, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, Locale, LoginSource, MOST_USED_LANGUAGES, MatrixMode, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, Platform, PlatformBuildTarget, ProblemCreatorDescriptionVariant, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, Source, TTSOverrideSymbol, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, isHighSchoolStringGrade };
|
|
11869
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, CH_CALENDAR_CONFIG, CalculatorType, CalendarLocale, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, DrawBoardSectionName, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, Environment, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, HIGH_SCHOOL_STRING_GRADES, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, Locale, LoginSource, MOST_USED_LANGUAGES, MatrixMode, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, Platform, PlatformBuildTarget, ProblemCreatorDescriptionVariant, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, Source, TTSOverrideSymbol, TreeLevel, buildTargetToEnvironment, getMultiplicationSymbol, getVidisLogoutUrl, isHighSchoolStringGrade };
|
|
12392
11870
|
//# sourceMappingURL=index.mjs.map
|
|
12393
11871
|
//# sourceMappingURL=index.mjs.map
|