@magmamath/frontend-config 1.1.2-rc.3 → 1.1.2-rc.4
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +12 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -56
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -389,6 +389,7 @@ type RegionSpecificVars = {
|
|
|
389
389
|
};
|
|
390
390
|
|
|
391
391
|
type StudentsWebCommon = {
|
|
392
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
392
393
|
GOOGLE_API_KEY: string;
|
|
393
394
|
DESMOS_API_KEY: string;
|
|
394
395
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
@@ -407,6 +408,7 @@ type StudentsWebVarsPreset = {
|
|
|
407
408
|
};
|
|
408
409
|
|
|
409
410
|
type TeachersWebCommon = {
|
|
411
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
410
412
|
MYSCRIPT_HOST: string;
|
|
411
413
|
MYSCRIPT_REST_APP_KEY: string;
|
|
412
414
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
@@ -423,6 +425,7 @@ type TeachersWebVarsPreset = {
|
|
|
423
425
|
};
|
|
424
426
|
|
|
425
427
|
type DistrictCommon = {
|
|
428
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
426
429
|
INTERCOM_APP_ID: string;
|
|
427
430
|
CLARITY_PROJECT_ID: string;
|
|
428
431
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
@@ -472,7 +475,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
472
475
|
};
|
|
473
476
|
|
|
474
477
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
475
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
478
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
476
479
|
TOS_URL: string;
|
|
477
480
|
CLARITY_PROJECT_ID: string;
|
|
478
481
|
INTERCOM_APP_ID: string;
|
|
@@ -501,6 +504,7 @@ type AuthWebVarsPreset = {
|
|
|
501
504
|
};
|
|
502
505
|
|
|
503
506
|
type MobileCommon = {
|
|
507
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
504
508
|
DESMOS_API_KEY: string;
|
|
505
509
|
USER_AGENT: string;
|
|
506
510
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
@@ -521,7 +525,6 @@ type MobileBaseVars = {
|
|
|
521
525
|
AUTH_WEB_URL: string;
|
|
522
526
|
API_URL: string;
|
|
523
527
|
CDN_HOST: string;
|
|
524
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
525
528
|
SOCKET_URL: string;
|
|
526
529
|
LOGGLY_TAG: string;
|
|
527
530
|
PROBLEM_CREATOR_URL: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -389,6 +389,7 @@ type RegionSpecificVars = {
|
|
|
389
389
|
};
|
|
390
390
|
|
|
391
391
|
type StudentsWebCommon = {
|
|
392
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
392
393
|
GOOGLE_API_KEY: string;
|
|
393
394
|
DESMOS_API_KEY: string;
|
|
394
395
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
@@ -407,6 +408,7 @@ type StudentsWebVarsPreset = {
|
|
|
407
408
|
};
|
|
408
409
|
|
|
409
410
|
type TeachersWebCommon = {
|
|
411
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
410
412
|
MYSCRIPT_HOST: string;
|
|
411
413
|
MYSCRIPT_REST_APP_KEY: string;
|
|
412
414
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
@@ -423,6 +425,7 @@ type TeachersWebVarsPreset = {
|
|
|
423
425
|
};
|
|
424
426
|
|
|
425
427
|
type DistrictCommon = {
|
|
428
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
426
429
|
INTERCOM_APP_ID: string;
|
|
427
430
|
CLARITY_PROJECT_ID: string;
|
|
428
431
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
@@ -472,7 +475,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
472
475
|
};
|
|
473
476
|
|
|
474
477
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
475
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
478
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
476
479
|
TOS_URL: string;
|
|
477
480
|
CLARITY_PROJECT_ID: string;
|
|
478
481
|
INTERCOM_APP_ID: string;
|
|
@@ -501,6 +504,7 @@ type AuthWebVarsPreset = {
|
|
|
501
504
|
};
|
|
502
505
|
|
|
503
506
|
type MobileCommon = {
|
|
507
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
504
508
|
DESMOS_API_KEY: string;
|
|
505
509
|
USER_AGENT: string;
|
|
506
510
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
@@ -521,7 +525,6 @@ type MobileBaseVars = {
|
|
|
521
525
|
AUTH_WEB_URL: string;
|
|
522
526
|
API_URL: string;
|
|
523
527
|
CDN_HOST: string;
|
|
524
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
525
528
|
SOCKET_URL: string;
|
|
526
529
|
LOGGLY_TAG: string;
|
|
527
530
|
PROBLEM_CREATOR_URL: string;
|
package/dist/index.js
CHANGED
|
@@ -991,7 +991,6 @@ var PLATFORM_URLS = {
|
|
|
991
991
|
var ENV_AUTH_WEB_US_MARS = {
|
|
992
992
|
...PLATFORM_URLS.MARS,
|
|
993
993
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
994
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
995
994
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
996
995
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
997
996
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
@@ -1010,7 +1009,6 @@ var ENV_AUTH_WEB_US_MARS = {
|
|
|
1010
1009
|
var ENV_AUTH_WEB_US_PROD = {
|
|
1011
1010
|
...PLATFORM_URLS.PROD,
|
|
1012
1011
|
API_URL: "https://api.magmamath.com/v2",
|
|
1013
|
-
CDN_HOST: "https://cdn.magmamath.com",
|
|
1014
1012
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1015
1013
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1016
1014
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
@@ -1029,7 +1027,6 @@ var ENV_AUTH_WEB_US_PROD = {
|
|
|
1029
1027
|
var ENV_AUTH_WEB_SE_MARS = {
|
|
1030
1028
|
API_URL: "https://api.mars.matteappen.se/v2",
|
|
1031
1029
|
AUTH_WEB_URL: "https://app.mars.matteappen.se",
|
|
1032
|
-
CDN_HOST: "https://cdn.mars.matteappen.se",
|
|
1033
1030
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1034
1031
|
STUDENTS_WEB_URL: "https://students.mars.matteappen.se",
|
|
1035
1032
|
TEACHERS_WEB_URL: "https://teachers.mars.matteappen.se",
|
|
@@ -1050,7 +1047,6 @@ var ENV_AUTH_WEB_SE_MARS = {
|
|
|
1050
1047
|
var ENV_AUTH_WEB_SE_PROD = {
|
|
1051
1048
|
API_URL: "https://api.matteappen.se/v2",
|
|
1052
1049
|
AUTH_WEB_URL: "https://app.matteappen.se",
|
|
1053
|
-
CDN_HOST: "https://cdn.matteappen.se",
|
|
1054
1050
|
CDN_HOST_TRANSLATIONS: "https://cdn.matteappen.se/translations",
|
|
1055
1051
|
STUDENTS_WEB_URL: "https://students.matteappen.se",
|
|
1056
1052
|
TEACHERS_WEB_URL: "https://teachers.matteappen.se",
|
|
@@ -1072,7 +1068,6 @@ var ENV_AUTH_WEB_GB_MARS = {
|
|
|
1072
1068
|
...PLATFORM_URLS.MARS,
|
|
1073
1069
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1074
1070
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1075
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1076
1071
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1077
1072
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1078
1073
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
@@ -1091,7 +1086,6 @@ var ENV_AUTH_WEB_GB_PROD = {
|
|
|
1091
1086
|
...PLATFORM_URLS.PROD,
|
|
1092
1087
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1093
1088
|
API_URL: "https://api.magmamath.com/v2",
|
|
1094
|
-
CDN_HOST: "https://cdn.magmamath.com",
|
|
1095
1089
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1096
1090
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1097
1091
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
@@ -1110,8 +1104,7 @@ var ENV_AUTH_WEB_CA_MARS = {
|
|
|
1110
1104
|
...PLATFORM_URLS.MARS,
|
|
1111
1105
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
1112
1106
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1113
|
-
|
|
1114
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1107
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1115
1108
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1116
1109
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1117
1110
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
@@ -1130,8 +1123,7 @@ var ENV_AUTH_WEB_CA_PROD = {
|
|
|
1130
1123
|
...PLATFORM_URLS.PROD,
|
|
1131
1124
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/ca`,
|
|
1132
1125
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1133
|
-
|
|
1134
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1126
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1135
1127
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1136
1128
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1137
1129
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
@@ -1150,7 +1142,6 @@ var ENV_AUTH_WEB_SCT_MARS = {
|
|
|
1150
1142
|
...PLATFORM_URLS.MARS,
|
|
1151
1143
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1152
1144
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1153
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1154
1145
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1155
1146
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1156
1147
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
@@ -1169,7 +1160,6 @@ var ENV_AUTH_WEB_DE_MARS = {
|
|
|
1169
1160
|
...PLATFORM_URLS.MARS,
|
|
1170
1161
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1171
1162
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1172
|
-
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1173
1163
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1174
1164
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1175
1165
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
@@ -1183,6 +1173,7 @@ var ENV_AUTH_WEB_DE_MARS = {
|
|
|
1183
1173
|
|
|
1184
1174
|
// src/configs/env/students-web/env.common.mars.ts
|
|
1185
1175
|
var ENV_STUDENTS_COMMON_MARS = {
|
|
1176
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1186
1177
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1187
1178
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
1188
1179
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
@@ -1200,7 +1191,6 @@ var ENV_STUDENTS_WEB_US_MARS = {
|
|
|
1200
1191
|
...PLATFORM_URLS.MARS,
|
|
1201
1192
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1202
1193
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1203
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1204
1194
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_US",
|
|
1205
1195
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1206
1196
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1208,6 +1198,7 @@ var ENV_STUDENTS_WEB_US_MARS = {
|
|
|
1208
1198
|
|
|
1209
1199
|
// src/configs/env/students-web/env.common.prod.ts
|
|
1210
1200
|
var ENV_STUDENTS_COMMON_PROD = {
|
|
1201
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1211
1202
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1212
1203
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
1213
1204
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
@@ -1225,7 +1216,6 @@ var ENV_STUDENTS_WEB_US_PROD = {
|
|
|
1225
1216
|
...PLATFORM_URLS.PROD,
|
|
1226
1217
|
API_URL: "https://api.magmamath.com/v2",
|
|
1227
1218
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1228
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1229
1219
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_US",
|
|
1230
1220
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1231
1221
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1268,7 +1258,6 @@ var ENV_STUDENTS_WEB_GB_MARS = {
|
|
|
1268
1258
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1269
1259
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1270
1260
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1271
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1272
1261
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_GB",
|
|
1273
1262
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1274
1263
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1281,7 +1270,6 @@ var ENV_STUDENTS_WEB_GB_PROD = {
|
|
|
1281
1270
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1282
1271
|
API_URL: "https://api.magmamath.com/v2",
|
|
1283
1272
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1284
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1285
1273
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_GB",
|
|
1286
1274
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1287
1275
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1294,7 +1282,6 @@ var ENV_STUDENTS_WEB_CA_MARS = {
|
|
|
1294
1282
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
1295
1283
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1296
1284
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1297
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1298
1285
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_CA",
|
|
1299
1286
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1300
1287
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1307,7 +1294,6 @@ var ENV_STUDENTS_WEB_CA_PROD = {
|
|
|
1307
1294
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/ca`,
|
|
1308
1295
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1309
1296
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1310
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1311
1297
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_CA",
|
|
1312
1298
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1313
1299
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1320,7 +1306,6 @@ var ENV_STUDENTS_WEB_SCT_MARS = {
|
|
|
1320
1306
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1321
1307
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1322
1308
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1323
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1324
1309
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_SCT",
|
|
1325
1310
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1326
1311
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1333,7 +1318,6 @@ var ENV_STUDENTS_WEB_SCT_PROD = {
|
|
|
1333
1318
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1334
1319
|
API_URL: "https://api.magmamath.com/v2",
|
|
1335
1320
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1336
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1337
1321
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_SCT",
|
|
1338
1322
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1339
1323
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1346,7 +1330,6 @@ var ENV_STUDENTS_WEB_DE_MARS = {
|
|
|
1346
1330
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1347
1331
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1348
1332
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1349
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1350
1333
|
LOGGLY_TAG: "STUDENTS_WEB_MARS,STUDENTS_WEB_MARS_DE",
|
|
1351
1334
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1352
1335
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1359,7 +1342,6 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1359
1342
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/de`,
|
|
1360
1343
|
API_URL: "https://api.magmamath.com/v2",
|
|
1361
1344
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1362
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1363
1345
|
LOGGLY_TAG: "STUDENTS_WEB_PROD,STUDENTS_WEB_PROD_DE",
|
|
1364
1346
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1365
1347
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1367,6 +1349,7 @@ var ENV_STUDENTS_WEB_DE_PROD = {
|
|
|
1367
1349
|
|
|
1368
1350
|
// src/configs/env/teachers-web/env.common.mars.ts
|
|
1369
1351
|
var ENV_TEACHERS_COMMON_MARS = {
|
|
1352
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1370
1353
|
MYSCRIPT_HOST: "myscript-mars-iink.matteappen.se",
|
|
1371
1354
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1372
1355
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -1382,7 +1365,6 @@ var ENV_TEACHERS_WEB_US_MARS = {
|
|
|
1382
1365
|
...PLATFORM_URLS.MARS,
|
|
1383
1366
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1384
1367
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1385
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1386
1368
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_US",
|
|
1387
1369
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1388
1370
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1390,6 +1372,7 @@ var ENV_TEACHERS_WEB_US_MARS = {
|
|
|
1390
1372
|
|
|
1391
1373
|
// src/configs/env/teachers-web/env.common.prod.ts
|
|
1392
1374
|
var ENV_TEACHERS_COMMON_PROD = {
|
|
1375
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1393
1376
|
MYSCRIPT_HOST: "myscript-iink.matteappen.se",
|
|
1394
1377
|
MYSCRIPT_REST_APP_KEY: "856df101-84b4-4f9b-9844-e826f7e85985",
|
|
1395
1378
|
MYSCRIPT_REST_HMAC_KEY: "e51e5489-c4d1-4996-8e22-7f0603b8f45a",
|
|
@@ -1405,7 +1388,6 @@ var ENV_TEACHERS_WEB_US_PROD = {
|
|
|
1405
1388
|
...PLATFORM_URLS.PROD,
|
|
1406
1389
|
API_URL: "https://api.magmamath.com/v2",
|
|
1407
1390
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1408
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1409
1391
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_US",
|
|
1410
1392
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1411
1393
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1448,7 +1430,6 @@ var ENV_TEACHERS_WEB_GB_MARS = {
|
|
|
1448
1430
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1449
1431
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1450
1432
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1451
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1452
1433
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_GB",
|
|
1453
1434
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1454
1435
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1461,7 +1442,6 @@ var ENV_TEACHERS_WEB_GB_PROD = {
|
|
|
1461
1442
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1462
1443
|
API_URL: "https://api.magmamath.com/v2",
|
|
1463
1444
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1464
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1465
1445
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_GB",
|
|
1466
1446
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1467
1447
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1474,7 +1454,6 @@ var ENV_TEACHERS_WEB_CA_MARS = {
|
|
|
1474
1454
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
1475
1455
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1476
1456
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1477
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1478
1457
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_CA",
|
|
1479
1458
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1480
1459
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1487,7 +1466,6 @@ var ENV_TEACHERS_WEB_CA_PROD = {
|
|
|
1487
1466
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/ca`,
|
|
1488
1467
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1489
1468
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1490
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1491
1469
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_CA",
|
|
1492
1470
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
1493
1471
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1500,7 +1478,6 @@ var ENV_TEACHERS_WEB_SCT_MARS = {
|
|
|
1500
1478
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1501
1479
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1502
1480
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1503
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1504
1481
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_SCT",
|
|
1505
1482
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1506
1483
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1513,7 +1490,6 @@ var ENV_TEACHERS_WEB_SCT_PROD = {
|
|
|
1513
1490
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1514
1491
|
API_URL: "https://api.magmamath.com/v2",
|
|
1515
1492
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1516
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1517
1493
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_SCT",
|
|
1518
1494
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1519
1495
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
@@ -1526,7 +1502,6 @@ var ENV_TEACHERS_WEB_DE_MARS = {
|
|
|
1526
1502
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1527
1503
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1528
1504
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1529
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1530
1505
|
LOGGLY_TAG: "TEACHERS_WEB_MARS,TEACHERS_WEB_MARS_DE",
|
|
1531
1506
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
1532
1507
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1539,7 +1514,6 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
1539
1514
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/de`,
|
|
1540
1515
|
API_URL: "https://api.magmamath.com/v2",
|
|
1541
1516
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1542
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1543
1517
|
LOGGLY_TAG: "TEACHERS_WEB_PROD,TEACHERS_WEB_PROD_DE",
|
|
1544
1518
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
1545
1519
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
@@ -1547,6 +1521,7 @@ var ENV_TEACHERS_WEB_DE_PROD = {
|
|
|
1547
1521
|
|
|
1548
1522
|
// src/configs/env/district-dash/env.common.mars.ts
|
|
1549
1523
|
var ENV_DISTRICT_COMMON_MARS = {
|
|
1524
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1550
1525
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1551
1526
|
CLARITY_PROJECT_ID: "rb6vbwug3r",
|
|
1552
1527
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880
|
|
@@ -1558,13 +1533,13 @@ var ENV_DISTRICT_US_MARS = {
|
|
|
1558
1533
|
...PLATFORM_URLS.MARS,
|
|
1559
1534
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1560
1535
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1561
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1562
1536
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_US",
|
|
1563
1537
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1564
1538
|
};
|
|
1565
1539
|
|
|
1566
1540
|
// src/configs/env/district-dash/env.common.prod.ts
|
|
1567
1541
|
var ENV_DISTRICT_COMMON_PROD = {
|
|
1542
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1568
1543
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1569
1544
|
CLARITY_PROJECT_ID: "rb6vbwug3r",
|
|
1570
1545
|
PROBLEM_IMAGE_SIZE_LIMIT: 5242880
|
|
@@ -1576,7 +1551,6 @@ var ENV_DISTRICT_US_PROD = {
|
|
|
1576
1551
|
...PLATFORM_URLS.PROD,
|
|
1577
1552
|
API_URL: "https://api.magmamath.com/v2",
|
|
1578
1553
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1579
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1580
1554
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_US",
|
|
1581
1555
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1582
1556
|
};
|
|
@@ -1616,7 +1590,6 @@ var ENV_DISTRICT_GB_MARS = {
|
|
|
1616
1590
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1617
1591
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1618
1592
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1619
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1620
1593
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_GB",
|
|
1621
1594
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1622
1595
|
};
|
|
@@ -1628,7 +1601,6 @@ var ENV_DISTRICT_GB_PROD = {
|
|
|
1628
1601
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1629
1602
|
API_URL: "https://api.magmamath.com/v2",
|
|
1630
1603
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1631
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1632
1604
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_GB",
|
|
1633
1605
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1634
1606
|
};
|
|
@@ -1640,7 +1612,6 @@ var ENV_DISTRICT_CA_MARS = {
|
|
|
1640
1612
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
1641
1613
|
API_URL: "https://api-ca.mars.magmamath.com/v2",
|
|
1642
1614
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1643
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1644
1615
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_CA",
|
|
1645
1616
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1646
1617
|
};
|
|
@@ -1652,7 +1623,6 @@ var ENV_DISTRICT_CA_PROD = {
|
|
|
1652
1623
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/ca`,
|
|
1653
1624
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
1654
1625
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
1655
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
1656
1626
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_CA",
|
|
1657
1627
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1658
1628
|
};
|
|
@@ -1664,7 +1634,6 @@ var ENV_DISTRICT_SCT_MARS = {
|
|
|
1664
1634
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
1665
1635
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1666
1636
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1667
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1668
1637
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_SCT",
|
|
1669
1638
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1670
1639
|
};
|
|
@@ -1676,7 +1645,6 @@ var ENV_DISTRICT_SCT_PROD = {
|
|
|
1676
1645
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1677
1646
|
API_URL: "https://api.magmamath.com/v2",
|
|
1678
1647
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1679
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1680
1648
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_SCT",
|
|
1681
1649
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk"
|
|
1682
1650
|
};
|
|
@@ -1688,7 +1656,6 @@ var ENV_DISTRICT_DE_MARS = {
|
|
|
1688
1656
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
1689
1657
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
1690
1658
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
1691
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1692
1659
|
LOGGLY_TAG: "DISTRICT_WEB_MARS,DISTRICT_WEB_MARS_DE",
|
|
1693
1660
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1694
1661
|
};
|
|
@@ -1700,7 +1667,6 @@ var ENV_DISTRICT_DE_PROD = {
|
|
|
1700
1667
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/de`,
|
|
1701
1668
|
API_URL: "https://api.magmamath.com/v2",
|
|
1702
1669
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
1703
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1704
1670
|
LOGGLY_TAG: "DISTRICT_WEB_PROD,DISTRICT_WEB_PROD_DE",
|
|
1705
1671
|
MAGMAMATH_URL: "https://www.magmamath.com"
|
|
1706
1672
|
};
|
|
@@ -1710,7 +1676,6 @@ var ENV_AUTH_WEB_SCT_PROD = {
|
|
|
1710
1676
|
...PLATFORM_URLS.PROD,
|
|
1711
1677
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
1712
1678
|
API_URL: "https://api.magmamath.com/v2",
|
|
1713
|
-
CDN_HOST: "https://cdn.magmamath.com",
|
|
1714
1679
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1715
1680
|
MAGMAMATH_URL: "https://www.magmamaths.co.uk",
|
|
1716
1681
|
TOS_URL: "https://www.magmamaths.co.uk/legal-documents/uk-terms-of-use",
|
|
@@ -1729,7 +1694,6 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
1729
1694
|
...PLATFORM_URLS.PROD,
|
|
1730
1695
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/de`,
|
|
1731
1696
|
API_URL: "https://api.magmamath.com/v2",
|
|
1732
|
-
CDN_HOST: "https://cdn.magmamath.com",
|
|
1733
1697
|
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
1734
1698
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
1735
1699
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
@@ -2019,7 +1983,7 @@ var ENV_WEB_ADMIN_CA_MARS = {
|
|
|
2019
1983
|
...PLATFORM_URLS.MARS,
|
|
2020
1984
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2021
1985
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2022
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.
|
|
1986
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2023
1987
|
};
|
|
2024
1988
|
|
|
2025
1989
|
// src/configs/env/web-admin/ca/env.ca.prod.ts
|
|
@@ -2028,11 +1992,12 @@ var ENV_WEB_ADMIN_CA_PROD = {
|
|
|
2028
1992
|
...PLATFORM_URLS.PROD,
|
|
2029
1993
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2030
1994
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2031
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.
|
|
1995
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations"
|
|
2032
1996
|
};
|
|
2033
1997
|
|
|
2034
1998
|
// src/configs/env/mobile/env.common.mars.ts
|
|
2035
1999
|
var ENV_MOBILE_COMMON_MARS = {
|
|
2000
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2036
2001
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
2037
2002
|
USER_AGENT: "Mozilla/5.0 (Linux Android 10 Android SDK built for x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.185 Mobile Safari/537.36",
|
|
2038
2003
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
@@ -2056,7 +2021,6 @@ var ENV_MOBILE_US_MARS = {
|
|
|
2056
2021
|
AUTH_WEB_URL: PLATFORM_URLS.MARS.AUTH_WEB_URL,
|
|
2057
2022
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2058
2023
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2059
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2060
2024
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2061
2025
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_US",
|
|
2062
2026
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
@@ -2092,7 +2056,6 @@ var ENV_MOBILE_GB_MARS = {
|
|
|
2092
2056
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2093
2057
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2094
2058
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2095
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2096
2059
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2097
2060
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_GB",
|
|
2098
2061
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
@@ -2109,7 +2072,6 @@ var ENV_MOBILE_CA_MARS = {
|
|
|
2109
2072
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
2110
2073
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2111
2074
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2112
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
2113
2075
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2114
2076
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_CA",
|
|
2115
2077
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
@@ -2127,7 +2089,6 @@ var ENV_MOBILE_SCT_MARS = {
|
|
|
2127
2089
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/uk`,
|
|
2128
2090
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2129
2091
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2130
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2131
2092
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2132
2093
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_SCT",
|
|
2133
2094
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
@@ -2144,7 +2105,6 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2144
2105
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/de`,
|
|
2145
2106
|
API_URL: "https://api.mars.magmamath.com/v2",
|
|
2146
2107
|
CDN_HOST: "https://cdn.mars.magmamath.com",
|
|
2147
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2148
2108
|
SOCKET_URL: "https://sockets-mars.magmamath.com",
|
|
2149
2109
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2150
2110
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
@@ -2154,6 +2114,7 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2154
2114
|
|
|
2155
2115
|
// src/configs/env/mobile/env.common.prod.ts
|
|
2156
2116
|
var ENV_MOBILE_COMMON_PROD = {
|
|
2117
|
+
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2157
2118
|
DESMOS_API_KEY: "ca152e213f1e4f0ea0a379f070a19cfd",
|
|
2158
2119
|
USER_AGENT: "Mozilla/5.0 (Linux Android 10 Android SDK built for x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.185 Mobile Safari/537.36",
|
|
2159
2120
|
LOGGLY_CUSTOMER_TOKEN: "921d0461-1108-4d44-b9ee-2551b03f1af0",
|
|
@@ -2177,7 +2138,6 @@ var ENV_MOBILE_US_PROD = {
|
|
|
2177
2138
|
AUTH_WEB_URL: PLATFORM_URLS.PROD.AUTH_WEB_URL,
|
|
2178
2139
|
API_URL: "https://api.magmamath.com/v2",
|
|
2179
2140
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2180
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2181
2141
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2182
2142
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_US",
|
|
2183
2143
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
@@ -2213,7 +2173,6 @@ var ENV_MOBILE_GB_PROD = {
|
|
|
2213
2173
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
2214
2174
|
API_URL: "https://api.magmamath.com/v2",
|
|
2215
2175
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2216
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2217
2176
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2218
2177
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_GB",
|
|
2219
2178
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
@@ -2230,7 +2189,6 @@ var ENV_MOBILE_CA_PROD = {
|
|
|
2230
2189
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/ca`,
|
|
2231
2190
|
API_URL: "https://api.ca.magmamath.com/v2",
|
|
2232
2191
|
CDN_HOST: "https://cdn.ca.magmamath.com",
|
|
2233
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.ca.magmamath.com/translations",
|
|
2234
2192
|
SOCKET_URL: "https://sockets.ca.magmamath.com",
|
|
2235
2193
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_CA",
|
|
2236
2194
|
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
@@ -2248,7 +2206,6 @@ var ENV_MOBILE_SCT_PROD = {
|
|
|
2248
2206
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/uk`,
|
|
2249
2207
|
API_URL: "https://api.magmamath.com/v2",
|
|
2250
2208
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2251
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2252
2209
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2253
2210
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_SCT",
|
|
2254
2211
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
@@ -2265,7 +2222,6 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2265
2222
|
AUTH_WEB_URL: `${PLATFORM_URLS.PROD.AUTH_WEB_URL}/de`,
|
|
2266
2223
|
API_URL: "https://api.magmamath.com/v2",
|
|
2267
2224
|
CDN_HOST: "https://cdn.magmamath.com",
|
|
2268
|
-
CDN_HOST_TRANSLATIONS: "https://cdn.magmamath.com/translations",
|
|
2269
2225
|
SOCKET_URL: "https://sockets.magmamath.com",
|
|
2270
2226
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2271
2227
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|