@magmamath/frontend-config 1.1.2-rc.4 → 1.1.2-rc.5
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 +8 -3
- package/dist/index.d.ts +8 -3
- package/dist/index.js +27 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -399,6 +399,8 @@ type StudentsWebCommon = {
|
|
|
399
399
|
MYSCRIPT_SOCKET_KEY: string;
|
|
400
400
|
MYSCRIPT_REST_APP_KEY: string;
|
|
401
401
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
402
|
+
TOLGEE_API_URL?: string;
|
|
403
|
+
TOLGEE_API_KEY?: string;
|
|
402
404
|
};
|
|
403
405
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
404
406
|
type StudentsWebVarsPreset = {
|
|
@@ -416,6 +418,8 @@ type TeachersWebCommon = {
|
|
|
416
418
|
INTERCOM_APP_ID: string;
|
|
417
419
|
CLARITY_PROJECT_ID: string;
|
|
418
420
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
421
|
+
TOLGEE_API_URL?: string;
|
|
422
|
+
TOLGEE_API_KEY?: string;
|
|
419
423
|
};
|
|
420
424
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
421
425
|
type TeachersWebVarsPreset = {
|
|
@@ -429,6 +433,8 @@ type DistrictCommon = {
|
|
|
429
433
|
INTERCOM_APP_ID: string;
|
|
430
434
|
CLARITY_PROJECT_ID: string;
|
|
431
435
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
436
|
+
TOLGEE_API_URL?: string;
|
|
437
|
+
TOLGEE_API_KEY?: string;
|
|
432
438
|
};
|
|
433
439
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
434
440
|
type DistrictWebVarsPreset = {
|
|
@@ -479,8 +485,8 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
479
485
|
TOS_URL: string;
|
|
480
486
|
CLARITY_PROJECT_ID: string;
|
|
481
487
|
INTERCOM_APP_ID: string;
|
|
482
|
-
TOLGEE_API_URL
|
|
483
|
-
TOLGEE_API_KEY
|
|
488
|
+
TOLGEE_API_URL?: string;
|
|
489
|
+
TOLGEE_API_KEY?: string;
|
|
484
490
|
};
|
|
485
491
|
type AuthWebVarsPreset = {
|
|
486
492
|
[Locale.CA]: {
|
|
@@ -554,7 +560,6 @@ type MobileVarsPreset = {
|
|
|
554
560
|
type RegionSpecificWebAdminVars = {
|
|
555
561
|
API_URL: string;
|
|
556
562
|
CDN_HOST: string;
|
|
557
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
558
563
|
STUDENTS_WEB_URL: string;
|
|
559
564
|
DISTRICT_WEB_URL: string;
|
|
560
565
|
TEACHERS_WEB_URL: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -399,6 +399,8 @@ type StudentsWebCommon = {
|
|
|
399
399
|
MYSCRIPT_SOCKET_KEY: string;
|
|
400
400
|
MYSCRIPT_REST_APP_KEY: string;
|
|
401
401
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
402
|
+
TOLGEE_API_URL?: string;
|
|
403
|
+
TOLGEE_API_KEY?: string;
|
|
402
404
|
};
|
|
403
405
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
404
406
|
type StudentsWebVarsPreset = {
|
|
@@ -416,6 +418,8 @@ type TeachersWebCommon = {
|
|
|
416
418
|
INTERCOM_APP_ID: string;
|
|
417
419
|
CLARITY_PROJECT_ID: string;
|
|
418
420
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
421
|
+
TOLGEE_API_URL?: string;
|
|
422
|
+
TOLGEE_API_KEY?: string;
|
|
419
423
|
};
|
|
420
424
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
421
425
|
type TeachersWebVarsPreset = {
|
|
@@ -429,6 +433,8 @@ type DistrictCommon = {
|
|
|
429
433
|
INTERCOM_APP_ID: string;
|
|
430
434
|
CLARITY_PROJECT_ID: string;
|
|
431
435
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
436
|
+
TOLGEE_API_URL?: string;
|
|
437
|
+
TOLGEE_API_KEY?: string;
|
|
432
438
|
};
|
|
433
439
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
434
440
|
type DistrictWebVarsPreset = {
|
|
@@ -479,8 +485,8 @@ type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOC
|
|
|
479
485
|
TOS_URL: string;
|
|
480
486
|
CLARITY_PROJECT_ID: string;
|
|
481
487
|
INTERCOM_APP_ID: string;
|
|
482
|
-
TOLGEE_API_URL
|
|
483
|
-
TOLGEE_API_KEY
|
|
488
|
+
TOLGEE_API_URL?: string;
|
|
489
|
+
TOLGEE_API_KEY?: string;
|
|
484
490
|
};
|
|
485
491
|
type AuthWebVarsPreset = {
|
|
486
492
|
[Locale.CA]: {
|
|
@@ -554,7 +560,6 @@ type MobileVarsPreset = {
|
|
|
554
560
|
type RegionSpecificWebAdminVars = {
|
|
555
561
|
API_URL: string;
|
|
556
562
|
CDN_HOST: string;
|
|
557
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
558
563
|
STUDENTS_WEB_URL: string;
|
|
559
564
|
DISTRICT_WEB_URL: string;
|
|
560
565
|
TEACHERS_WEB_URL: string;
|
package/dist/index.js
CHANGED
|
@@ -1018,9 +1018,7 @@ var ENV_AUTH_WEB_US_PROD = {
|
|
|
1018
1018
|
CLASS_LINK_AUTH: "https://api.magmamath.com/v2/auth/edlink-classlink",
|
|
1019
1019
|
SCHOOLOGY_AUTH: "https://api.magmamath.com/v2/auth/edlink",
|
|
1020
1020
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1021
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1022
|
-
TOLGEE_API_URL: "",
|
|
1023
|
-
TOLGEE_API_KEY: ""
|
|
1021
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1024
1022
|
};
|
|
1025
1023
|
|
|
1026
1024
|
// src/configs/env/auth-web/se/env.se.mars.ts
|
|
@@ -1058,9 +1056,7 @@ var ENV_AUTH_WEB_SE_PROD = {
|
|
|
1058
1056
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/prod/ds/?entityID=https://matteappen.se",
|
|
1059
1057
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1060
1058
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1061
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1062
|
-
TOLGEE_API_URL: "",
|
|
1063
|
-
TOLGEE_API_KEY: ""
|
|
1059
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1064
1060
|
};
|
|
1065
1061
|
|
|
1066
1062
|
// src/configs/env/auth-web/gb/env.gb.mars.ts
|
|
@@ -1094,9 +1090,7 @@ var ENV_AUTH_WEB_GB_PROD = {
|
|
|
1094
1090
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1095
1091
|
WONDE_AUTH: "https://api.magmamath.com/v2/auth/mylogin",
|
|
1096
1092
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1097
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1098
|
-
TOLGEE_API_URL: "",
|
|
1099
|
-
TOLGEE_API_KEY: ""
|
|
1093
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1100
1094
|
};
|
|
1101
1095
|
|
|
1102
1096
|
// src/configs/env/auth-web/ca/env.ca.mars.ts
|
|
@@ -1132,9 +1126,7 @@ var ENV_AUTH_WEB_CA_PROD = {
|
|
|
1132
1126
|
CLASS_LINK_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink-classlink",
|
|
1133
1127
|
SCHOOLOGY_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink",
|
|
1134
1128
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1135
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1136
|
-
TOLGEE_API_URL: "",
|
|
1137
|
-
TOLGEE_API_KEY: ""
|
|
1129
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1138
1130
|
};
|
|
1139
1131
|
|
|
1140
1132
|
// src/configs/env/auth-web/sct/env.sct.mars.ts
|
|
@@ -1182,7 +1174,9 @@ var ENV_STUDENTS_COMMON_MARS = {
|
|
|
1182
1174
|
MYSCRIPT_HOST: "myscript-mars-iink.matteappen.se",
|
|
1183
1175
|
MYSCRIPT_SOCKET_KEY: "2a36f2ef-1056-4a6d-bd5c-6bd54670f9e2",
|
|
1184
1176
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1185
|
-
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a"
|
|
1177
|
+
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
1178
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1179
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1186
1180
|
};
|
|
1187
1181
|
|
|
1188
1182
|
// src/configs/env/students-web/us/env.us.mars.ts
|
|
@@ -1356,7 +1350,9 @@ var ENV_TEACHERS_COMMON_MARS = {
|
|
|
1356
1350
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1357
1351
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1358
1352
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1359
|
-
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0"
|
|
1353
|
+
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
1354
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1355
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1360
1356
|
};
|
|
1361
1357
|
|
|
1362
1358
|
// src/configs/env/teachers-web/us/env.us.mars.ts
|
|
@@ -1524,7 +1520,9 @@ var ENV_DISTRICT_COMMON_MARS = {
|
|
|
1524
1520
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1525
1521
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1526
1522
|
CLARITY_PROJECT_ID: "rb6vbwug3r",
|
|
1527
|
-
PROBLEM_IMAGE_SIZE_LIMIT: 5242880
|
|
1523
|
+
PROBLEM_IMAGE_SIZE_LIMIT: 5242880,
|
|
1524
|
+
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1525
|
+
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
1528
1526
|
};
|
|
1529
1527
|
|
|
1530
1528
|
// src/configs/env/district-dash/us/env.us.mars.ts
|
|
@@ -1684,9 +1682,7 @@ var ENV_AUTH_WEB_SCT_PROD = {
|
|
|
1684
1682
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1685
1683
|
WONDE_AUTH: "https://api.magmamath.com/v2/auth/mylogin",
|
|
1686
1684
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1687
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1688
|
-
TOLGEE_API_URL: "",
|
|
1689
|
-
TOLGEE_API_KEY: ""
|
|
1685
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1690
1686
|
};
|
|
1691
1687
|
|
|
1692
1688
|
// src/configs/env/auth-web/de/env.de.prod.ts
|
|
@@ -1700,9 +1696,7 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
1700
1696
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
1701
1697
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
1702
1698
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
1703
|
-
INTERCOM_APP_ID: "tjidhu4j"
|
|
1704
|
-
TOLGEE_API_URL: "",
|
|
1705
|
-
TOLGEE_API_KEY: ""
|
|
1699
|
+
INTERCOM_APP_ID: "tjidhu4j"
|
|
1706
1700
|
};
|
|
1707
1701
|
|
|
1708
1702
|
// src/configs/env/auth-web/us/env.us.venus.ts
|
|
@@ -1888,8 +1882,7 @@ var ENV_WEB_ADMIN_US_MARS = {
|
|
|
1888
1882
|
...ENV_WEB_ADMIN_COMMON,
|
|
1889
1883
|
...PLATFORM_URLS.MARS,
|
|
1890
1884
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1891
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1892
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1885
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1893
1886
|
};
|
|
1894
1887
|
|
|
1895
1888
|
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
@@ -1897,8 +1890,7 @@ var ENV_WEB_ADMIN_US_PROD = {
|
|
|
1897
1890
|
...ENV_WEB_ADMIN_COMMON,
|
|
1898
1891
|
...PLATFORM_URLS.PROD,
|
|
1899
1892
|
API_URL: "https://api.magmamath.com/v2",
|
|
1900
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1901
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1893
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1902
1894
|
};
|
|
1903
1895
|
|
|
1904
1896
|
// src/configs/env/web-admin/se/env.se.mars.ts
|
|
@@ -1908,8 +1900,7 @@ var ENV_WEB_ADMIN_SE_MARS = {
|
|
|
1908
1900
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
1909
1901
|
DISTRICT_WEB_URL: "https://district.mars.matteappen.se",
|
|
1910
1902
|
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1911
|
-
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1912
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
1903
|
+
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
1913
1904
|
};
|
|
1914
1905
|
|
|
1915
1906
|
// src/configs/env/web-admin/se/env.se.prod.ts
|
|
@@ -1919,8 +1910,7 @@ var ENV_WEB_ADMIN_SE_PROD = {
|
|
|
1919
1910
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
1920
1911
|
DISTRICT_WEB_URL: "https://district.matteappen.se",
|
|
1921
1912
|
API_URL: "https://api.matteappen.se/v2",
|
|
1922
|
-
CDN_HOST: "https://cdn.matteappen.se"
|
|
1923
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations"
|
|
1913
|
+
CDN_HOST: "https://cdn.matteappen.se"
|
|
1924
1914
|
};
|
|
1925
1915
|
|
|
1926
1916
|
// src/configs/env/web-admin/de/env.de.mars.ts
|
|
@@ -1928,8 +1918,7 @@ var ENV_WEB_ADMIN_DE_MARS = {
|
|
|
1928
1918
|
...ENV_WEB_ADMIN_COMMON,
|
|
1929
1919
|
...PLATFORM_URLS.MARS,
|
|
1930
1920
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1931
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1932
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1921
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1933
1922
|
};
|
|
1934
1923
|
|
|
1935
1924
|
// src/configs/env/web-admin/de/env.de.prod.ts
|
|
@@ -1937,8 +1926,7 @@ var ENV_WEB_ADMIN_DE_PROD = {
|
|
|
1937
1926
|
...ENV_WEB_ADMIN_COMMON,
|
|
1938
1927
|
...PLATFORM_URLS.PROD,
|
|
1939
1928
|
API_URL: "https://api.magmamath.com/v2",
|
|
1940
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1941
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1929
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1942
1930
|
};
|
|
1943
1931
|
|
|
1944
1932
|
// src/configs/env/web-admin/sct/env.sct.mars.ts
|
|
@@ -1946,8 +1934,7 @@ var ENV_WEB_ADMIN_SCT_MARS = {
|
|
|
1946
1934
|
...ENV_WEB_ADMIN_COMMON,
|
|
1947
1935
|
...PLATFORM_URLS.MARS,
|
|
1948
1936
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1949
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1950
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1937
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1951
1938
|
};
|
|
1952
1939
|
|
|
1953
1940
|
// src/configs/env/web-admin/sct/env.sct.prod.ts
|
|
@@ -1955,8 +1942,7 @@ var ENV_WEB_ADMIN_SCT_PROD = {
|
|
|
1955
1942
|
...ENV_WEB_ADMIN_COMMON,
|
|
1956
1943
|
...PLATFORM_URLS.PROD,
|
|
1957
1944
|
API_URL: "https://api.magmamath.com/v2",
|
|
1958
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1959
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1945
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1960
1946
|
};
|
|
1961
1947
|
|
|
1962
1948
|
// src/configs/env/web-admin/gb/env.gb.mars.ts
|
|
@@ -1964,8 +1950,7 @@ var ENV_WEB_ADMIN_GB_MARS = {
|
|
|
1964
1950
|
...ENV_WEB_ADMIN_COMMON,
|
|
1965
1951
|
...PLATFORM_URLS.MARS,
|
|
1966
1952
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1967
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1968
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1953
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1969
1954
|
};
|
|
1970
1955
|
|
|
1971
1956
|
// src/configs/env/web-admin/gb/env.gb.prod.ts
|
|
@@ -1973,8 +1958,7 @@ var ENV_WEB_ADMIN_GB_PROD = {
|
|
|
1973
1958
|
...ENV_WEB_ADMIN_COMMON,
|
|
1974
1959
|
...PLATFORM_URLS.PROD,
|
|
1975
1960
|
API_URL: "https://api.magmamath.com/v2",
|
|
1976
|
-
CDN_HOST: "https://cdn.magmamath.com"
|
|
1977
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1961
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
1978
1962
|
};
|
|
1979
1963
|
|
|
1980
1964
|
// src/configs/env/web-admin/ca/env.ca.mars.ts
|
|
@@ -1982,8 +1966,7 @@ var ENV_WEB_ADMIN_CA_MARS = {
|
|
|
1982
1966
|
...ENV_WEB_ADMIN_COMMON,
|
|
1983
1967
|
...PLATFORM_URLS.MARS,
|
|
1984
1968
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1985
|
-
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1986
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1969
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
1987
1970
|
};
|
|
1988
1971
|
|
|
1989
1972
|
// src/configs/env/web-admin/ca/env.ca.prod.ts
|
|
@@ -1991,8 +1974,7 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
1991
1974
|
...ENV_WEB_ADMIN_COMMON,
|
|
1992
1975
|
...PLATFORM_URLS.PROD,
|
|
1993
1976
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1994
|
-
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
1995
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
1977
|
+
CDN_HOST: "https://cdn.ca.magmamath.com"
|
|
1996
1978
|
};
|
|
1997
1979
|
|
|
1998
1980
|
// src/configs/env/mobile/env.common.mars.ts
|