@magmamath/frontend-config 1.0.15 → 1.0.16-rc.1
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 +30 -3
- package/dist/index.d.ts +30 -3
- package/dist/index.js +149 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +149 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -34,7 +34,8 @@ declare enum Platform {
|
|
|
34
34
|
STUDENTS_WEB = "STUDENTS",
|
|
35
35
|
TEACHERS_WEB = "TEACHERS",
|
|
36
36
|
DISTRICT_DASHBOARD = "DISTRICT",
|
|
37
|
-
AUTH_WEB = "AUTH_WEB"
|
|
37
|
+
AUTH_WEB = "AUTH_WEB",
|
|
38
|
+
WEB_ADMIN = "WEB_ADMIN"
|
|
38
39
|
}
|
|
39
40
|
declare enum Environment {
|
|
40
41
|
MARS = "MARS",
|
|
@@ -172,9 +173,21 @@ type DistrictCommon = {
|
|
|
172
173
|
CLARITY_PROJECT_ID: string;
|
|
173
174
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
174
175
|
};
|
|
176
|
+
type RegionSpecificWebAdminVars = {
|
|
177
|
+
API_URL: string;
|
|
178
|
+
CDN_HOST: string;
|
|
179
|
+
STUDENTS_WEB_URL: string;
|
|
180
|
+
DISTRICT_WEB_URL: string;
|
|
181
|
+
TEACHERS_WEB_URL: string;
|
|
182
|
+
};
|
|
183
|
+
type WebAdminCommon = {
|
|
184
|
+
MARS_URL: string;
|
|
185
|
+
PROD_URL: string;
|
|
186
|
+
};
|
|
175
187
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
176
188
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
177
189
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
190
|
+
type WebAdminVars = RegionSpecificWebAdminVars & WebAdminCommon;
|
|
178
191
|
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
179
192
|
TOS_URL: string;
|
|
180
193
|
CLARITY_PROJECT_ID: string;
|
|
@@ -217,6 +230,11 @@ type EnvPreset = Readonly<{
|
|
|
217
230
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
218
231
|
};
|
|
219
232
|
};
|
|
233
|
+
[Platform.WEB_ADMIN]: {
|
|
234
|
+
[key in Locale]: {
|
|
235
|
+
[key in Environment]: WebAdminVars;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
220
238
|
}>;
|
|
221
239
|
type EnvironmentVars<P extends Platform> = EnvPreset[P][Locale][Environment];
|
|
222
240
|
|
|
@@ -383,7 +401,15 @@ type LocalePreset = {
|
|
|
383
401
|
[key in Locale]: DistrictLocaleConfig;
|
|
384
402
|
};
|
|
385
403
|
[Platform.AUTH_WEB]: {
|
|
386
|
-
[
|
|
404
|
+
[Locale.CA]: AuthWebLocaleConfig<SSO_US>;
|
|
405
|
+
[Locale.DE]: AuthWebLocaleConfig<SSO_DE>;
|
|
406
|
+
[Locale.GB]: AuthWebLocaleConfig<SSO_UK>;
|
|
407
|
+
[Locale.SCT]: AuthWebLocaleConfig<SSO_UK>;
|
|
408
|
+
[Locale.SE]: AuthWebLocaleConfig<SSO_SE>;
|
|
409
|
+
[Locale.US]: AuthWebLocaleConfig<SSO_US>;
|
|
410
|
+
};
|
|
411
|
+
[Platform.WEB_ADMIN]: {
|
|
412
|
+
[key in Locale]: {};
|
|
387
413
|
};
|
|
388
414
|
};
|
|
389
415
|
type LocaleConfig<P extends Platform> = LocalePreset[P][Locale];
|
|
@@ -433,9 +459,10 @@ declare class AppConfigManager<P extends Platform> {
|
|
|
433
459
|
[Locale.SE]: { [key in Environment]: AuthWebVars<SSO_SE>; };
|
|
434
460
|
[Locale.US]: { [key in Environment]: AuthWebVars<SSO_US>; };
|
|
435
461
|
};
|
|
462
|
+
WEB_ADMIN: { [key in Locale]: { [key_1 in Environment]: WebAdminVars; }; };
|
|
436
463
|
}>;
|
|
437
464
|
localePreset: LocalePreset;
|
|
438
465
|
};
|
|
439
466
|
}
|
|
440
467
|
|
|
441
|
-
export { AppConfigManager, type AuthWebVars, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, type RegionSpecificVars, SSO, type SSOConfig, Source, type StudentsWebCommon, type StudentsWebVars, type TeachersWebCommon, type TeachersWebVars, buildTargetToEnvironment };
|
|
468
|
+
export { AppConfigManager, type AuthWebVars, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, type RegionSpecificVars, type RegionSpecificWebAdminVars, SSO, type SSOConfig, Source, type StudentsWebCommon, type StudentsWebVars, type TeachersWebCommon, type TeachersWebVars, type WebAdminCommon, type WebAdminVars, buildTargetToEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,8 @@ declare enum Platform {
|
|
|
34
34
|
STUDENTS_WEB = "STUDENTS",
|
|
35
35
|
TEACHERS_WEB = "TEACHERS",
|
|
36
36
|
DISTRICT_DASHBOARD = "DISTRICT",
|
|
37
|
-
AUTH_WEB = "AUTH_WEB"
|
|
37
|
+
AUTH_WEB = "AUTH_WEB",
|
|
38
|
+
WEB_ADMIN = "WEB_ADMIN"
|
|
38
39
|
}
|
|
39
40
|
declare enum Environment {
|
|
40
41
|
MARS = "MARS",
|
|
@@ -172,9 +173,21 @@ type DistrictCommon = {
|
|
|
172
173
|
CLARITY_PROJECT_ID: string;
|
|
173
174
|
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
174
175
|
};
|
|
176
|
+
type RegionSpecificWebAdminVars = {
|
|
177
|
+
API_URL: string;
|
|
178
|
+
CDN_HOST: string;
|
|
179
|
+
STUDENTS_WEB_URL: string;
|
|
180
|
+
DISTRICT_WEB_URL: string;
|
|
181
|
+
TEACHERS_WEB_URL: string;
|
|
182
|
+
};
|
|
183
|
+
type WebAdminCommon = {
|
|
184
|
+
MARS_URL: string;
|
|
185
|
+
PROD_URL: string;
|
|
186
|
+
};
|
|
175
187
|
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
176
188
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
177
189
|
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
190
|
+
type WebAdminVars = RegionSpecificWebAdminVars & WebAdminCommon;
|
|
178
191
|
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
179
192
|
TOS_URL: string;
|
|
180
193
|
CLARITY_PROJECT_ID: string;
|
|
@@ -217,6 +230,11 @@ type EnvPreset = Readonly<{
|
|
|
217
230
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
218
231
|
};
|
|
219
232
|
};
|
|
233
|
+
[Platform.WEB_ADMIN]: {
|
|
234
|
+
[key in Locale]: {
|
|
235
|
+
[key in Environment]: WebAdminVars;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
220
238
|
}>;
|
|
221
239
|
type EnvironmentVars<P extends Platform> = EnvPreset[P][Locale][Environment];
|
|
222
240
|
|
|
@@ -383,7 +401,15 @@ type LocalePreset = {
|
|
|
383
401
|
[key in Locale]: DistrictLocaleConfig;
|
|
384
402
|
};
|
|
385
403
|
[Platform.AUTH_WEB]: {
|
|
386
|
-
[
|
|
404
|
+
[Locale.CA]: AuthWebLocaleConfig<SSO_US>;
|
|
405
|
+
[Locale.DE]: AuthWebLocaleConfig<SSO_DE>;
|
|
406
|
+
[Locale.GB]: AuthWebLocaleConfig<SSO_UK>;
|
|
407
|
+
[Locale.SCT]: AuthWebLocaleConfig<SSO_UK>;
|
|
408
|
+
[Locale.SE]: AuthWebLocaleConfig<SSO_SE>;
|
|
409
|
+
[Locale.US]: AuthWebLocaleConfig<SSO_US>;
|
|
410
|
+
};
|
|
411
|
+
[Platform.WEB_ADMIN]: {
|
|
412
|
+
[key in Locale]: {};
|
|
387
413
|
};
|
|
388
414
|
};
|
|
389
415
|
type LocaleConfig<P extends Platform> = LocalePreset[P][Locale];
|
|
@@ -433,9 +459,10 @@ declare class AppConfigManager<P extends Platform> {
|
|
|
433
459
|
[Locale.SE]: { [key in Environment]: AuthWebVars<SSO_SE>; };
|
|
434
460
|
[Locale.US]: { [key in Environment]: AuthWebVars<SSO_US>; };
|
|
435
461
|
};
|
|
462
|
+
WEB_ADMIN: { [key in Locale]: { [key_1 in Environment]: WebAdminVars; }; };
|
|
436
463
|
}>;
|
|
437
464
|
localePreset: LocalePreset;
|
|
438
465
|
};
|
|
439
466
|
}
|
|
440
467
|
|
|
441
|
-
export { AppConfigManager, type AuthWebVars, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, type RegionSpecificVars, SSO, type SSOConfig, Source, type StudentsWebCommon, type StudentsWebVars, type TeachersWebCommon, type TeachersWebVars, buildTargetToEnvironment };
|
|
468
|
+
export { AppConfigManager, type AuthWebVars, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, type RegionSpecificVars, type RegionSpecificWebAdminVars, SSO, type SSOConfig, Source, type StudentsWebCommon, type StudentsWebVars, type TeachersWebCommon, type TeachersWebVars, type WebAdminCommon, type WebAdminVars, buildTargetToEnvironment };
|
package/dist/index.js
CHANGED
|
@@ -3130,6 +3130,7 @@ var Platform = /* @__PURE__ */ ((Platform3) => {
|
|
|
3130
3130
|
Platform3["TEACHERS_WEB"] = "TEACHERS";
|
|
3131
3131
|
Platform3["DISTRICT_DASHBOARD"] = "DISTRICT";
|
|
3132
3132
|
Platform3["AUTH_WEB"] = "AUTH_WEB";
|
|
3133
|
+
Platform3["WEB_ADMIN"] = "WEB_ADMIN";
|
|
3133
3134
|
return Platform3;
|
|
3134
3135
|
})(Platform || {});
|
|
3135
3136
|
var Environment = /* @__PURE__ */ ((Environment3) => {
|
|
@@ -3340,14 +3341,14 @@ var ENV_AUTH_WEB_GB_PROD = {
|
|
|
3340
3341
|
var ENV_AUTH_WEB_CA_MARS = {
|
|
3341
3342
|
...PLATFORM_URLS.MARS,
|
|
3342
3343
|
AUTH_WEB_URL: `${PLATFORM_URLS.MARS.AUTH_WEB_URL}/ca`,
|
|
3343
|
-
API_URL: "https://api
|
|
3344
|
+
API_URL: "https://api.ca.magmamath.com/v2",
|
|
3344
3345
|
MAGMAMATH_URL: "https://www.magmamath.com",
|
|
3345
3346
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
3346
|
-
GOOGLE_AUTH: "https://api
|
|
3347
|
-
MICROSOFT_AUTH: "https://api
|
|
3348
|
-
CLEVER_AUTH: "https://api
|
|
3349
|
-
CLASS_LINK_AUTH: "https://api
|
|
3350
|
-
SCHOOLOGY_AUTH: "https://api
|
|
3347
|
+
GOOGLE_AUTH: "https://api.ca.magmamath.com/v2/auth/google",
|
|
3348
|
+
MICROSOFT_AUTH: "https://api.ca.magmamath.com/v2/auth/microsoft",
|
|
3349
|
+
CLEVER_AUTH: "https://api.ca.magmamath.com/v2/auth/clever",
|
|
3350
|
+
CLASS_LINK_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink-classlink",
|
|
3351
|
+
SCHOOLOGY_AUTH: "https://api.ca.magmamath.com/v2/auth/edlink",
|
|
3351
3352
|
CLARITY_PROJECT_ID: "rb6vqwkahr",
|
|
3352
3353
|
INTERCOM_APP_ID: "tjidhu4j"
|
|
3353
3354
|
};
|
|
@@ -4084,6 +4085,108 @@ var ENV_DISTRICT_DE_VENUS = {
|
|
|
4084
4085
|
AUTH_WEB_URL: `${PLATFORM_URLS.VENUS.AUTH_WEB_URL}/de`
|
|
4085
4086
|
};
|
|
4086
4087
|
|
|
4088
|
+
// src/configs/env/web-admin/env.common.ts
|
|
4089
|
+
var ENV_WEB_ADMIN_COMMON = {
|
|
4090
|
+
MARS_URL: "https://web-admin-v2.mars.matteappen.se",
|
|
4091
|
+
PROD_URL: "https://web-admin-v2.matteappen.se"
|
|
4092
|
+
};
|
|
4093
|
+
|
|
4094
|
+
// src/configs/env/web-admin/us/env.us.mars.ts
|
|
4095
|
+
var ENV_WEB_ADMIN_US_MARS = {
|
|
4096
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4097
|
+
...PLATFORM_URLS.MARS,
|
|
4098
|
+
API_URL: "https://api.mars.magmamath.com",
|
|
4099
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
4100
|
+
};
|
|
4101
|
+
|
|
4102
|
+
// src/configs/env/web-admin/us/env.us.prod.ts
|
|
4103
|
+
var ENV_WEB_ADMIN_US_PROD = {
|
|
4104
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4105
|
+
...PLATFORM_URLS.PROD,
|
|
4106
|
+
API_URL: "https://api.magmamath.com",
|
|
4107
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
4108
|
+
};
|
|
4109
|
+
|
|
4110
|
+
// src/configs/env/web-admin/se/env.se.mars.ts
|
|
4111
|
+
var ENV_WEB_ADMIN_SE_MARS = {
|
|
4112
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4113
|
+
...PLATFORM_URLS.MARS,
|
|
4114
|
+
API_URL: "https://api.mars.matteappen.se",
|
|
4115
|
+
CDN_HOST: "https://cdn.mars.matteappen.se"
|
|
4116
|
+
};
|
|
4117
|
+
|
|
4118
|
+
// src/configs/env/web-admin/se/env.se.prod.ts
|
|
4119
|
+
var ENV_WEB_ADMIN_SE_PROD = {
|
|
4120
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4121
|
+
...PLATFORM_URLS.PROD,
|
|
4122
|
+
API_URL: "https://api.matteappen.se",
|
|
4123
|
+
CDN_HOST: "https://cdn.matteappen.se"
|
|
4124
|
+
};
|
|
4125
|
+
|
|
4126
|
+
// src/configs/env/web-admin/de/env.de.mars.ts
|
|
4127
|
+
var ENV_WEB_ADMIN_DE_MARS = {
|
|
4128
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4129
|
+
...PLATFORM_URLS.MARS,
|
|
4130
|
+
API_URL: "https://api.mars.magmamath.com",
|
|
4131
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
4132
|
+
};
|
|
4133
|
+
|
|
4134
|
+
// src/configs/env/web-admin/de/env.de.prod.ts
|
|
4135
|
+
var ENV_WEB_ADMIN_DE_PROD = {
|
|
4136
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4137
|
+
...PLATFORM_URLS.PROD,
|
|
4138
|
+
API_URL: "https://api.magmamath.com",
|
|
4139
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
4140
|
+
};
|
|
4141
|
+
|
|
4142
|
+
// src/configs/env/web-admin/sct/env.sct.mars.ts
|
|
4143
|
+
var ENV_WEB_ADMIN_SCT_MARS = {
|
|
4144
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4145
|
+
...PLATFORM_URLS.MARS,
|
|
4146
|
+
API_URL: "https://api.mars.magmamath.com",
|
|
4147
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
4148
|
+
};
|
|
4149
|
+
|
|
4150
|
+
// src/configs/env/web-admin/sct/env.sct.prod.ts
|
|
4151
|
+
var ENV_WEB_ADMIN_SCT_PROD = {
|
|
4152
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4153
|
+
...PLATFORM_URLS.PROD,
|
|
4154
|
+
API_URL: "https://api.magmamath.com",
|
|
4155
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
4156
|
+
};
|
|
4157
|
+
|
|
4158
|
+
// src/configs/env/web-admin/gb/env.gb.mars.ts
|
|
4159
|
+
var ENV_WEB_ADMIN_GB_MARS = {
|
|
4160
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4161
|
+
...PLATFORM_URLS.MARS,
|
|
4162
|
+
API_URL: "https://api.mars.magmamath.com",
|
|
4163
|
+
CDN_HOST: "https://cdn.mars.magmamath.com"
|
|
4164
|
+
};
|
|
4165
|
+
|
|
4166
|
+
// src/configs/env/web-admin/gb/env.gb.prod.ts
|
|
4167
|
+
var ENV_WEB_ADMIN_GB_PROD = {
|
|
4168
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4169
|
+
...PLATFORM_URLS.PROD,
|
|
4170
|
+
API_URL: "https://api.magmamath.com",
|
|
4171
|
+
CDN_HOST: "https://cdn.magmamath.com"
|
|
4172
|
+
};
|
|
4173
|
+
|
|
4174
|
+
// src/configs/env/web-admin/ca/env.ca.mars.ts
|
|
4175
|
+
var ENV_WEB_ADMIN_CA_MARS = {
|
|
4176
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4177
|
+
...PLATFORM_URLS.MARS,
|
|
4178
|
+
API_URL: "https://api-ca.mars.magmamath.com",
|
|
4179
|
+
CDN_HOST: "https://cdn-ca.mars.magmamath.com"
|
|
4180
|
+
};
|
|
4181
|
+
|
|
4182
|
+
// src/configs/env/web-admin/ca/env.ca.prod.ts
|
|
4183
|
+
var ENV_WEB_ADMIN_CA_PROD = {
|
|
4184
|
+
...ENV_WEB_ADMIN_COMMON,
|
|
4185
|
+
...PLATFORM_URLS.PROD,
|
|
4186
|
+
API_URL: "https://api-ca.magmamath.com",
|
|
4187
|
+
CDN_HOST: "https://cdn-ca.magmamath.com"
|
|
4188
|
+
};
|
|
4189
|
+
|
|
4087
4190
|
// src/configs/env/env.preset.ts
|
|
4088
4191
|
var ENV_PRESET = {
|
|
4089
4192
|
["AUTH_WEB" /* AUTH_WEB */]: {
|
|
@@ -4213,6 +4316,38 @@ var ENV_PRESET = {
|
|
|
4213
4316
|
["VENUS" /* VENUS */]: ENV_DISTRICT_DE_VENUS,
|
|
4214
4317
|
["PROD" /* PROD */]: ENV_DISTRICT_DE_PROD
|
|
4215
4318
|
}
|
|
4319
|
+
},
|
|
4320
|
+
["WEB_ADMIN" /* WEB_ADMIN */]: {
|
|
4321
|
+
["en-SE" /* US */]: {
|
|
4322
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_US_MARS,
|
|
4323
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_US_MARS,
|
|
4324
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_US_PROD
|
|
4325
|
+
},
|
|
4326
|
+
["sv-SE" /* SE */]: {
|
|
4327
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_SE_MARS,
|
|
4328
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_SE_MARS,
|
|
4329
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_SE_PROD
|
|
4330
|
+
},
|
|
4331
|
+
["en-GB" /* GB */]: {
|
|
4332
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_GB_MARS,
|
|
4333
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_GB_MARS,
|
|
4334
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_GB_PROD
|
|
4335
|
+
},
|
|
4336
|
+
["en-CA" /* CA */]: {
|
|
4337
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_CA_MARS,
|
|
4338
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_CA_MARS,
|
|
4339
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_CA_PROD
|
|
4340
|
+
},
|
|
4341
|
+
["en-SCT" /* SCT */]: {
|
|
4342
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_SCT_MARS,
|
|
4343
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_SCT_MARS,
|
|
4344
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_SCT_PROD
|
|
4345
|
+
},
|
|
4346
|
+
["de-DE" /* DE */]: {
|
|
4347
|
+
["MARS" /* MARS */]: ENV_WEB_ADMIN_DE_MARS,
|
|
4348
|
+
["VENUS" /* VENUS */]: ENV_WEB_ADMIN_DE_MARS,
|
|
4349
|
+
["PROD" /* PROD */]: ENV_WEB_ADMIN_DE_PROD
|
|
4350
|
+
}
|
|
4216
4351
|
}
|
|
4217
4352
|
};
|
|
4218
4353
|
|
|
@@ -5777,6 +5912,14 @@ var LOCALE_PRESET = {
|
|
|
5777
5912
|
["en-CA" /* CA */]: LOCALE_AUTHWEB_CA,
|
|
5778
5913
|
["en-SCT" /* SCT */]: LOCALE_AUTHWEB_SCT,
|
|
5779
5914
|
["de-DE" /* DE */]: LOCALE_AUTHWEB_DE
|
|
5915
|
+
},
|
|
5916
|
+
["WEB_ADMIN" /* WEB_ADMIN */]: {
|
|
5917
|
+
["en-SE" /* US */]: {},
|
|
5918
|
+
["sv-SE" /* SE */]: {},
|
|
5919
|
+
["en-GB" /* GB */]: {},
|
|
5920
|
+
["en-CA" /* CA */]: {},
|
|
5921
|
+
["en-SCT" /* SCT */]: {},
|
|
5922
|
+
["de-DE" /* DE */]: {}
|
|
5780
5923
|
}
|
|
5781
5924
|
};
|
|
5782
5925
|
|