@magmamath/frontend-config 1.7.0-rc.5 → 1.7.2-rc.10
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/{common.constants-Dd81SRrq.d.mts → common.constants-CKKc_B4a.d.mts} +3 -1
- package/dist/{common.constants-Dd81SRrq.d.ts → common.constants-CKKc_B4a.d.ts} +3 -1
- package/dist/index.d.mts +103 -98
- package/dist/index.d.ts +103 -98
- package/dist/index.js +50 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +51 -5
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +1 -1
- package/dist/translation/index.d.ts +1 -1
- package/package.json +1 -2
|
@@ -75,7 +75,8 @@ declare enum LoginSource {
|
|
|
75
75
|
MICROSOFT = 6,
|
|
76
76
|
APPLE = 7,
|
|
77
77
|
SCHOOLOGY = 8,
|
|
78
|
-
MY_LOGIN = 9
|
|
78
|
+
MY_LOGIN = 9,
|
|
79
|
+
VIDIS = 18
|
|
79
80
|
}
|
|
80
81
|
declare enum SSO {
|
|
81
82
|
APPLE = "APPLE",
|
|
@@ -87,6 +88,7 @@ declare enum SSO {
|
|
|
87
88
|
SKOLFEDERATION = "SKOLFEDERATION",
|
|
88
89
|
SKOLON = "SKOLON",
|
|
89
90
|
WONDE = "WONDE",
|
|
91
|
+
VIDIS = "VIDIS",
|
|
90
92
|
CANVAS = "CANVAS",
|
|
91
93
|
QR_CODE = "QR_CODE"
|
|
92
94
|
}
|
|
@@ -75,7 +75,8 @@ declare enum LoginSource {
|
|
|
75
75
|
MICROSOFT = 6,
|
|
76
76
|
APPLE = 7,
|
|
77
77
|
SCHOOLOGY = 8,
|
|
78
|
-
MY_LOGIN = 9
|
|
78
|
+
MY_LOGIN = 9,
|
|
79
|
+
VIDIS = 18
|
|
79
80
|
}
|
|
80
81
|
declare enum SSO {
|
|
81
82
|
APPLE = "APPLE",
|
|
@@ -87,6 +88,7 @@ declare enum SSO {
|
|
|
87
88
|
SKOLFEDERATION = "SKOLFEDERATION",
|
|
88
89
|
SKOLON = "SKOLON",
|
|
89
90
|
WONDE = "WONDE",
|
|
91
|
+
VIDIS = "VIDIS",
|
|
90
92
|
CANVAS = "CANVAS",
|
|
91
93
|
QR_CODE = "QR_CODE"
|
|
92
94
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SSO, L as LoginSource,
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, a as Locale, H as HomeRegion, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-CKKc_B4a.mjs';
|
|
2
|
+
export { c as Source } from './common.constants-CKKc_B4a.mjs';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -382,101 +382,6 @@ type SSOConfig<E> = Readonly<{
|
|
|
382
382
|
getUrl: (envs: E) => string;
|
|
383
383
|
}>;
|
|
384
384
|
|
|
385
|
-
type RegionSpecificVars = {
|
|
386
|
-
API_URL: string;
|
|
387
|
-
AUTH_WEB_URL: string;
|
|
388
|
-
CDN_HOST: string;
|
|
389
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
390
|
-
DISTRICT_WEB_URL: string;
|
|
391
|
-
LOGGLY_TAG: string;
|
|
392
|
-
MAGMAMATH_URL: string;
|
|
393
|
-
PARENT_WEB_URL: string;
|
|
394
|
-
SOCKET_URL: string;
|
|
395
|
-
STUDENTS_WEB_URL: string;
|
|
396
|
-
WEBSOCKETS_URL: string;
|
|
397
|
-
TEACHERS_WEB_URL: string;
|
|
398
|
-
};
|
|
399
|
-
|
|
400
|
-
type StudentsWebCommon = {
|
|
401
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
402
|
-
GOOGLE_API_KEY: string;
|
|
403
|
-
DESMOS_API_KEY: string;
|
|
404
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
405
|
-
MYSCRIPT_APPLICATION_KEY: string;
|
|
406
|
-
MYSCRIPT_HMAC_KEY: string;
|
|
407
|
-
MYSCRIPT_HOST: string;
|
|
408
|
-
MYSCRIPT_SOCKET_KEY: string;
|
|
409
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
410
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
411
|
-
TOLGEE_API_URL?: string;
|
|
412
|
-
TOLGEE_API_KEY?: string;
|
|
413
|
-
};
|
|
414
|
-
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
415
|
-
type StudentsWebVarsPreset = {
|
|
416
|
-
[HomeRegion.US_MAIN]: {
|
|
417
|
-
[key in Environment]: StudentsWebVars;
|
|
418
|
-
};
|
|
419
|
-
[HomeRegion.CA_MAIN]: {
|
|
420
|
-
[key in Environment]: StudentsWebVars;
|
|
421
|
-
};
|
|
422
|
-
[HomeRegion.EU_MAIN]: {
|
|
423
|
-
[key in Locale]: {
|
|
424
|
-
[key in Environment]: StudentsWebVars;
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
};
|
|
428
|
-
|
|
429
|
-
type TeachersWebCommon = {
|
|
430
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
431
|
-
MYSCRIPT_HOST: string;
|
|
432
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
433
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
434
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
435
|
-
INTERCOM_APP_ID: string;
|
|
436
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
437
|
-
TOLGEE_API_URL?: string;
|
|
438
|
-
TOLGEE_API_KEY?: string;
|
|
439
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
440
|
-
GOOGLE_API_KEY: string;
|
|
441
|
-
};
|
|
442
|
-
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
443
|
-
type TeachersWebVarsPreset = {
|
|
444
|
-
[HomeRegion.US_MAIN]: {
|
|
445
|
-
[key in Environment]: TeachersWebVars;
|
|
446
|
-
};
|
|
447
|
-
[HomeRegion.CA_MAIN]: {
|
|
448
|
-
[key in Environment]: TeachersWebVars;
|
|
449
|
-
};
|
|
450
|
-
[HomeRegion.EU_MAIN]: {
|
|
451
|
-
[key in Locale]: {
|
|
452
|
-
[key in Environment]: TeachersWebVars;
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
};
|
|
456
|
-
|
|
457
|
-
type DistrictCommon = {
|
|
458
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
459
|
-
INTERCOM_APP_ID: string;
|
|
460
|
-
AMPLITUDE_API_KEY?: string;
|
|
461
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
462
|
-
TOLGEE_API_URL?: string;
|
|
463
|
-
TOLGEE_API_KEY?: string;
|
|
464
|
-
};
|
|
465
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
466
|
-
type DistrictWebVarsPreset = {
|
|
467
|
-
[HomeRegion.US_MAIN]: {
|
|
468
|
-
[key in Environment]: DistrictDashboardVars;
|
|
469
|
-
};
|
|
470
|
-
[HomeRegion.CA_MAIN]: {
|
|
471
|
-
[key in Environment]: DistrictDashboardVars;
|
|
472
|
-
};
|
|
473
|
-
[HomeRegion.EU_MAIN]: {
|
|
474
|
-
[key in Locale]: {
|
|
475
|
-
[key in Environment]: DistrictDashboardVars;
|
|
476
|
-
};
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
|
|
480
385
|
type SSO_UK = {
|
|
481
386
|
GOOGLE_AUTH: string;
|
|
482
387
|
MICROSOFT_AUTH: string;
|
|
@@ -499,6 +404,7 @@ type SSO_SE = {
|
|
|
499
404
|
type SSO_DE = {
|
|
500
405
|
GOOGLE_AUTH: string;
|
|
501
406
|
MICROSOFT_AUTH: string;
|
|
407
|
+
VIDIS_AUTH: string;
|
|
502
408
|
};
|
|
503
409
|
type SSO_PL = {
|
|
504
410
|
GOOGLE_AUTH: string;
|
|
@@ -587,6 +493,105 @@ type SSOByLocale = {
|
|
|
587
493
|
[Locale.IQ]: SSO_IQ;
|
|
588
494
|
};
|
|
589
495
|
|
|
496
|
+
declare const SSO_VIDIS_CONFIG: SSOConfig<SSO_DE & {
|
|
497
|
+
AUTH_WEB_URL: string;
|
|
498
|
+
}>;
|
|
499
|
+
|
|
500
|
+
type RegionSpecificVars = {
|
|
501
|
+
API_URL: string;
|
|
502
|
+
AUTH_WEB_URL: string;
|
|
503
|
+
CDN_HOST: string;
|
|
504
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
505
|
+
DISTRICT_WEB_URL: string;
|
|
506
|
+
LOGGLY_TAG: string;
|
|
507
|
+
MAGMAMATH_URL: string;
|
|
508
|
+
PARENT_WEB_URL: string;
|
|
509
|
+
SOCKET_URL: string;
|
|
510
|
+
STUDENTS_WEB_URL: string;
|
|
511
|
+
WEBSOCKETS_URL: string;
|
|
512
|
+
TEACHERS_WEB_URL: string;
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
type StudentsWebCommon = {
|
|
516
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
517
|
+
GOOGLE_API_KEY: string;
|
|
518
|
+
DESMOS_API_KEY: string;
|
|
519
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
520
|
+
MYSCRIPT_APPLICATION_KEY: string;
|
|
521
|
+
MYSCRIPT_HMAC_KEY: string;
|
|
522
|
+
MYSCRIPT_HOST: string;
|
|
523
|
+
MYSCRIPT_SOCKET_KEY: string;
|
|
524
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
525
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
526
|
+
TOLGEE_API_URL?: string;
|
|
527
|
+
TOLGEE_API_KEY?: string;
|
|
528
|
+
};
|
|
529
|
+
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
530
|
+
type StudentsWebVarsPreset = {
|
|
531
|
+
[HomeRegion.US_MAIN]: {
|
|
532
|
+
[key in Environment]: StudentsWebVars;
|
|
533
|
+
};
|
|
534
|
+
[HomeRegion.CA_MAIN]: {
|
|
535
|
+
[key in Environment]: StudentsWebVars;
|
|
536
|
+
};
|
|
537
|
+
[HomeRegion.EU_MAIN]: {
|
|
538
|
+
[key in Locale]: {
|
|
539
|
+
[key in Environment]: StudentsWebVars;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
|
|
544
|
+
type TeachersWebCommon = {
|
|
545
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
546
|
+
MYSCRIPT_HOST: string;
|
|
547
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
548
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
549
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
550
|
+
INTERCOM_APP_ID: string;
|
|
551
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
552
|
+
TOLGEE_API_URL?: string;
|
|
553
|
+
TOLGEE_API_KEY?: string;
|
|
554
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
555
|
+
GOOGLE_API_KEY: string;
|
|
556
|
+
};
|
|
557
|
+
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
558
|
+
type TeachersWebVarsPreset = {
|
|
559
|
+
[HomeRegion.US_MAIN]: {
|
|
560
|
+
[key in Environment]: TeachersWebVars;
|
|
561
|
+
};
|
|
562
|
+
[HomeRegion.CA_MAIN]: {
|
|
563
|
+
[key in Environment]: TeachersWebVars;
|
|
564
|
+
};
|
|
565
|
+
[HomeRegion.EU_MAIN]: {
|
|
566
|
+
[key in Locale]: {
|
|
567
|
+
[key in Environment]: TeachersWebVars;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
type DistrictCommon = {
|
|
573
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
574
|
+
INTERCOM_APP_ID: string;
|
|
575
|
+
AMPLITUDE_API_KEY?: string;
|
|
576
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
577
|
+
TOLGEE_API_URL?: string;
|
|
578
|
+
TOLGEE_API_KEY?: string;
|
|
579
|
+
};
|
|
580
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
581
|
+
type DistrictWebVarsPreset = {
|
|
582
|
+
[HomeRegion.US_MAIN]: {
|
|
583
|
+
[key in Environment]: DistrictDashboardVars;
|
|
584
|
+
};
|
|
585
|
+
[HomeRegion.CA_MAIN]: {
|
|
586
|
+
[key in Environment]: DistrictDashboardVars;
|
|
587
|
+
};
|
|
588
|
+
[HomeRegion.EU_MAIN]: {
|
|
589
|
+
[key in Locale]: {
|
|
590
|
+
[key in Environment]: DistrictDashboardVars;
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
|
|
590
595
|
type Prettify<T> = T extends Function ? T : {
|
|
591
596
|
[K in keyof T]: T[K];
|
|
592
597
|
};
|
|
@@ -1146,4 +1151,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1146
1151
|
};
|
|
1147
1152
|
}
|
|
1148
1153
|
|
|
1149
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
|
1154
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SSO, L as LoginSource,
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, a as Locale, H as HomeRegion, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-CKKc_B4a.js';
|
|
2
|
+
export { c as Source } from './common.constants-CKKc_B4a.js';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -382,101 +382,6 @@ type SSOConfig<E> = Readonly<{
|
|
|
382
382
|
getUrl: (envs: E) => string;
|
|
383
383
|
}>;
|
|
384
384
|
|
|
385
|
-
type RegionSpecificVars = {
|
|
386
|
-
API_URL: string;
|
|
387
|
-
AUTH_WEB_URL: string;
|
|
388
|
-
CDN_HOST: string;
|
|
389
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
390
|
-
DISTRICT_WEB_URL: string;
|
|
391
|
-
LOGGLY_TAG: string;
|
|
392
|
-
MAGMAMATH_URL: string;
|
|
393
|
-
PARENT_WEB_URL: string;
|
|
394
|
-
SOCKET_URL: string;
|
|
395
|
-
STUDENTS_WEB_URL: string;
|
|
396
|
-
WEBSOCKETS_URL: string;
|
|
397
|
-
TEACHERS_WEB_URL: string;
|
|
398
|
-
};
|
|
399
|
-
|
|
400
|
-
type StudentsWebCommon = {
|
|
401
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
402
|
-
GOOGLE_API_KEY: string;
|
|
403
|
-
DESMOS_API_KEY: string;
|
|
404
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
405
|
-
MYSCRIPT_APPLICATION_KEY: string;
|
|
406
|
-
MYSCRIPT_HMAC_KEY: string;
|
|
407
|
-
MYSCRIPT_HOST: string;
|
|
408
|
-
MYSCRIPT_SOCKET_KEY: string;
|
|
409
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
410
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
411
|
-
TOLGEE_API_URL?: string;
|
|
412
|
-
TOLGEE_API_KEY?: string;
|
|
413
|
-
};
|
|
414
|
-
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
415
|
-
type StudentsWebVarsPreset = {
|
|
416
|
-
[HomeRegion.US_MAIN]: {
|
|
417
|
-
[key in Environment]: StudentsWebVars;
|
|
418
|
-
};
|
|
419
|
-
[HomeRegion.CA_MAIN]: {
|
|
420
|
-
[key in Environment]: StudentsWebVars;
|
|
421
|
-
};
|
|
422
|
-
[HomeRegion.EU_MAIN]: {
|
|
423
|
-
[key in Locale]: {
|
|
424
|
-
[key in Environment]: StudentsWebVars;
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
};
|
|
428
|
-
|
|
429
|
-
type TeachersWebCommon = {
|
|
430
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
431
|
-
MYSCRIPT_HOST: string;
|
|
432
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
433
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
434
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
435
|
-
INTERCOM_APP_ID: string;
|
|
436
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
437
|
-
TOLGEE_API_URL?: string;
|
|
438
|
-
TOLGEE_API_KEY?: string;
|
|
439
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
440
|
-
GOOGLE_API_KEY: string;
|
|
441
|
-
};
|
|
442
|
-
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
443
|
-
type TeachersWebVarsPreset = {
|
|
444
|
-
[HomeRegion.US_MAIN]: {
|
|
445
|
-
[key in Environment]: TeachersWebVars;
|
|
446
|
-
};
|
|
447
|
-
[HomeRegion.CA_MAIN]: {
|
|
448
|
-
[key in Environment]: TeachersWebVars;
|
|
449
|
-
};
|
|
450
|
-
[HomeRegion.EU_MAIN]: {
|
|
451
|
-
[key in Locale]: {
|
|
452
|
-
[key in Environment]: TeachersWebVars;
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
};
|
|
456
|
-
|
|
457
|
-
type DistrictCommon = {
|
|
458
|
-
CDN_HOST_TRANSLATIONS: string;
|
|
459
|
-
INTERCOM_APP_ID: string;
|
|
460
|
-
AMPLITUDE_API_KEY?: string;
|
|
461
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
462
|
-
TOLGEE_API_URL?: string;
|
|
463
|
-
TOLGEE_API_KEY?: string;
|
|
464
|
-
};
|
|
465
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
466
|
-
type DistrictWebVarsPreset = {
|
|
467
|
-
[HomeRegion.US_MAIN]: {
|
|
468
|
-
[key in Environment]: DistrictDashboardVars;
|
|
469
|
-
};
|
|
470
|
-
[HomeRegion.CA_MAIN]: {
|
|
471
|
-
[key in Environment]: DistrictDashboardVars;
|
|
472
|
-
};
|
|
473
|
-
[HomeRegion.EU_MAIN]: {
|
|
474
|
-
[key in Locale]: {
|
|
475
|
-
[key in Environment]: DistrictDashboardVars;
|
|
476
|
-
};
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
|
|
480
385
|
type SSO_UK = {
|
|
481
386
|
GOOGLE_AUTH: string;
|
|
482
387
|
MICROSOFT_AUTH: string;
|
|
@@ -499,6 +404,7 @@ type SSO_SE = {
|
|
|
499
404
|
type SSO_DE = {
|
|
500
405
|
GOOGLE_AUTH: string;
|
|
501
406
|
MICROSOFT_AUTH: string;
|
|
407
|
+
VIDIS_AUTH: string;
|
|
502
408
|
};
|
|
503
409
|
type SSO_PL = {
|
|
504
410
|
GOOGLE_AUTH: string;
|
|
@@ -587,6 +493,105 @@ type SSOByLocale = {
|
|
|
587
493
|
[Locale.IQ]: SSO_IQ;
|
|
588
494
|
};
|
|
589
495
|
|
|
496
|
+
declare const SSO_VIDIS_CONFIG: SSOConfig<SSO_DE & {
|
|
497
|
+
AUTH_WEB_URL: string;
|
|
498
|
+
}>;
|
|
499
|
+
|
|
500
|
+
type RegionSpecificVars = {
|
|
501
|
+
API_URL: string;
|
|
502
|
+
AUTH_WEB_URL: string;
|
|
503
|
+
CDN_HOST: string;
|
|
504
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
505
|
+
DISTRICT_WEB_URL: string;
|
|
506
|
+
LOGGLY_TAG: string;
|
|
507
|
+
MAGMAMATH_URL: string;
|
|
508
|
+
PARENT_WEB_URL: string;
|
|
509
|
+
SOCKET_URL: string;
|
|
510
|
+
STUDENTS_WEB_URL: string;
|
|
511
|
+
WEBSOCKETS_URL: string;
|
|
512
|
+
TEACHERS_WEB_URL: string;
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
type StudentsWebCommon = {
|
|
516
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
517
|
+
GOOGLE_API_KEY: string;
|
|
518
|
+
DESMOS_API_KEY: string;
|
|
519
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
520
|
+
MYSCRIPT_APPLICATION_KEY: string;
|
|
521
|
+
MYSCRIPT_HMAC_KEY: string;
|
|
522
|
+
MYSCRIPT_HOST: string;
|
|
523
|
+
MYSCRIPT_SOCKET_KEY: string;
|
|
524
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
525
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
526
|
+
TOLGEE_API_URL?: string;
|
|
527
|
+
TOLGEE_API_KEY?: string;
|
|
528
|
+
};
|
|
529
|
+
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
530
|
+
type StudentsWebVarsPreset = {
|
|
531
|
+
[HomeRegion.US_MAIN]: {
|
|
532
|
+
[key in Environment]: StudentsWebVars;
|
|
533
|
+
};
|
|
534
|
+
[HomeRegion.CA_MAIN]: {
|
|
535
|
+
[key in Environment]: StudentsWebVars;
|
|
536
|
+
};
|
|
537
|
+
[HomeRegion.EU_MAIN]: {
|
|
538
|
+
[key in Locale]: {
|
|
539
|
+
[key in Environment]: StudentsWebVars;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
|
|
544
|
+
type TeachersWebCommon = {
|
|
545
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
546
|
+
MYSCRIPT_HOST: string;
|
|
547
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
548
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
549
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
550
|
+
INTERCOM_APP_ID: string;
|
|
551
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
552
|
+
TOLGEE_API_URL?: string;
|
|
553
|
+
TOLGEE_API_KEY?: string;
|
|
554
|
+
GOOGLE_TRANSLATE_URL: string;
|
|
555
|
+
GOOGLE_API_KEY: string;
|
|
556
|
+
};
|
|
557
|
+
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
558
|
+
type TeachersWebVarsPreset = {
|
|
559
|
+
[HomeRegion.US_MAIN]: {
|
|
560
|
+
[key in Environment]: TeachersWebVars;
|
|
561
|
+
};
|
|
562
|
+
[HomeRegion.CA_MAIN]: {
|
|
563
|
+
[key in Environment]: TeachersWebVars;
|
|
564
|
+
};
|
|
565
|
+
[HomeRegion.EU_MAIN]: {
|
|
566
|
+
[key in Locale]: {
|
|
567
|
+
[key in Environment]: TeachersWebVars;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
type DistrictCommon = {
|
|
573
|
+
CDN_HOST_TRANSLATIONS: string;
|
|
574
|
+
INTERCOM_APP_ID: string;
|
|
575
|
+
AMPLITUDE_API_KEY?: string;
|
|
576
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
577
|
+
TOLGEE_API_URL?: string;
|
|
578
|
+
TOLGEE_API_KEY?: string;
|
|
579
|
+
};
|
|
580
|
+
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
581
|
+
type DistrictWebVarsPreset = {
|
|
582
|
+
[HomeRegion.US_MAIN]: {
|
|
583
|
+
[key in Environment]: DistrictDashboardVars;
|
|
584
|
+
};
|
|
585
|
+
[HomeRegion.CA_MAIN]: {
|
|
586
|
+
[key in Environment]: DistrictDashboardVars;
|
|
587
|
+
};
|
|
588
|
+
[HomeRegion.EU_MAIN]: {
|
|
589
|
+
[key in Locale]: {
|
|
590
|
+
[key in Environment]: DistrictDashboardVars;
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
|
|
590
595
|
type Prettify<T> = T extends Function ? T : {
|
|
591
596
|
[K in keyof T]: T[K];
|
|
592
597
|
};
|
|
@@ -1146,4 +1151,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1146
1151
|
};
|
|
1147
1152
|
}
|
|
1148
1153
|
|
|
1149
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
|
1154
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SSO_VIDIS_CONFIG, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var effector = require('effector');
|
|
4
3
|
var Svg = require('react-native-svg');
|
|
5
4
|
var jsxRuntime = require('react/jsx-runtime');
|
|
5
|
+
var effector = require('effector');
|
|
6
6
|
|
|
7
7
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
8
8
|
|
|
@@ -188,6 +188,7 @@ var LoginSource = /* @__PURE__ */ ((LoginSource2) => {
|
|
|
188
188
|
LoginSource2[LoginSource2["APPLE"] = 7] = "APPLE";
|
|
189
189
|
LoginSource2[LoginSource2["SCHOOLOGY"] = 8] = "SCHOOLOGY";
|
|
190
190
|
LoginSource2[LoginSource2["MY_LOGIN"] = 9] = "MY_LOGIN";
|
|
191
|
+
LoginSource2[LoginSource2["VIDIS"] = 18] = "VIDIS";
|
|
191
192
|
return LoginSource2;
|
|
192
193
|
})(LoginSource || {});
|
|
193
194
|
var SSO = /* @__PURE__ */ ((SSO2) => {
|
|
@@ -200,6 +201,7 @@ var SSO = /* @__PURE__ */ ((SSO2) => {
|
|
|
200
201
|
SSO2["SKOLFEDERATION"] = "SKOLFEDERATION";
|
|
201
202
|
SSO2["SKOLON"] = "SKOLON";
|
|
202
203
|
SSO2["WONDE"] = "WONDE";
|
|
204
|
+
SSO2["VIDIS"] = "VIDIS";
|
|
203
205
|
SSO2["CANVAS"] = "CANVAS";
|
|
204
206
|
SSO2["QR_CODE"] = "QR_CODE";
|
|
205
207
|
return SSO2;
|
|
@@ -1323,6 +1325,40 @@ var IQ_CALENDAR_CONFIG = {
|
|
|
1323
1325
|
monthNamesShort: ["\u06A9\u062F", "\u0634\u0648", "\u0626\u0627", "\u0646\u06CC", "\u0626\u06CC", "\u062D\u0648", "\u062A\u0645", "\u0626\u0628", "\u0626\u0644", "\u062A\u06CC", "\u062A\u062F", "\u06A9\u06CC"],
|
|
1324
1326
|
today: "\u0626\u06D5\u0645\u0695\u06C6"
|
|
1325
1327
|
};
|
|
1328
|
+
var VidisIcon = ({ size = 38 }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1329
|
+
Svg__default.default,
|
|
1330
|
+
{
|
|
1331
|
+
width: size,
|
|
1332
|
+
height: size,
|
|
1333
|
+
viewBox: "0 0 38 38",
|
|
1334
|
+
fill: "none",
|
|
1335
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1336
|
+
children: [
|
|
1337
|
+
/* @__PURE__ */ jsxRuntime.jsx(Svg.Rect, { width: "38", height: "38", rx: "19", fill: "#1F5EFF" }),
|
|
1338
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1339
|
+
Svg.Path,
|
|
1340
|
+
{
|
|
1341
|
+
d: "M10 11.5H14.2L19 25.1L23.8 11.5H28L21.2 28H16.8L10 11.5Z",
|
|
1342
|
+
fill: "white"
|
|
1343
|
+
}
|
|
1344
|
+
)
|
|
1345
|
+
]
|
|
1346
|
+
}
|
|
1347
|
+
);
|
|
1348
|
+
|
|
1349
|
+
// src/configs/sso/sso.vidis.ts
|
|
1350
|
+
var SSO_VIDIS_CONFIG = {
|
|
1351
|
+
name: "VIDIS",
|
|
1352
|
+
type: "VIDIS" /* VIDIS */,
|
|
1353
|
+
loginSource: 18 /* VIDIS */,
|
|
1354
|
+
ownUrl: true,
|
|
1355
|
+
icon: VidisIcon,
|
|
1356
|
+
getUrl: (envs) => {
|
|
1357
|
+
const url = new URL(envs.VIDIS_AUTH);
|
|
1358
|
+
url.searchParams.set("domain", envs.AUTH_WEB_URL);
|
|
1359
|
+
return url.href;
|
|
1360
|
+
}
|
|
1361
|
+
};
|
|
1326
1362
|
|
|
1327
1363
|
// src/configs/env/env.helpers.ts
|
|
1328
1364
|
var ENV_BY_BUILD_TARGET = {
|
|
@@ -1595,6 +1631,7 @@ var ENV_AUTH_WEB_DE_MARS = {
|
|
|
1595
1631
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
1596
1632
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
1597
1633
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
1634
|
+
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
1598
1635
|
INTERCOM_APP_ID: "tjidhu4j",
|
|
1599
1636
|
TOLGEE_API_URL: "https://tolgee.matteappen.se",
|
|
1600
1637
|
TOLGEE_API_KEY: "tgpak_gnptczbqmfzw6mtphbug2olign2wc4djgy2wmmdvnjrgq"
|
|
@@ -2196,6 +2233,7 @@ var ENV_AUTH_WEB_DE_PROD = {
|
|
|
2196
2233
|
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use",
|
|
2197
2234
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2198
2235
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2236
|
+
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2199
2237
|
INTERCOM_APP_ID: "tjidhu4j"
|
|
2200
2238
|
};
|
|
2201
2239
|
|
|
@@ -2552,6 +2590,7 @@ var ENV_MOBILE_DE_MARS = {
|
|
|
2552
2590
|
LOGGLY_TAG: "MOBILE_MARS,MOBILE_MARS_DE",
|
|
2553
2591
|
GOOGLE_AUTH: "https://api.mars.magmamath.com/v2/auth/google",
|
|
2554
2592
|
MICROSOFT_AUTH: "https://api.mars.magmamath.com/v2/auth/microsoft",
|
|
2593
|
+
VIDIS_AUTH: "https://api.mars.magmamath.com/v2/auth/vidis/",
|
|
2555
2594
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.MARS.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2556
2595
|
};
|
|
2557
2596
|
|
|
@@ -2677,6 +2716,7 @@ var ENV_MOBILE_DE_PROD = {
|
|
|
2677
2716
|
LOGGLY_TAG: "MOBILE_PROD,MOBILE_PROD_DE",
|
|
2678
2717
|
GOOGLE_AUTH: "https://api.magmamath.com/v2/auth/google",
|
|
2679
2718
|
MICROSOFT_AUTH: "https://api.magmamath.com/v2/auth/microsoft",
|
|
2719
|
+
VIDIS_AUTH: "https://api.magmamath.com/v2/auth/vidis/",
|
|
2680
2720
|
PROBLEM_CREATOR_URL: `${PLATFORM_URLS.PROD.TEACHERS_WEB_URL}/content/react-native/problems/add`
|
|
2681
2721
|
};
|
|
2682
2722
|
|
|
@@ -9049,7 +9089,7 @@ var LOCALE_AUTHWEB_DE = {
|
|
|
9049
9089
|
signIn: {
|
|
9050
9090
|
withOnboarding: true,
|
|
9051
9091
|
qrCodeSize: "large" /* LARGE */,
|
|
9052
|
-
list: [SSO_GOOGLE_CONFIG, SSO_MICROSOFT_CONFIG, SSO_QR_CODE_CONFIG]
|
|
9092
|
+
list: [SSO_GOOGLE_CONFIG, SSO_MICROSOFT_CONFIG, SSO_VIDIS_CONFIG, SSO_QR_CODE_CONFIG]
|
|
9053
9093
|
},
|
|
9054
9094
|
signUp: {
|
|
9055
9095
|
list: [SSO_GOOGLE_CONFIG, SSO_MICROSOFT_CONFIG]
|
|
@@ -9355,7 +9395,13 @@ var LOCALE_MOBILE_DE = {
|
|
|
9355
9395
|
signIn: {
|
|
9356
9396
|
withOnboarding: false,
|
|
9357
9397
|
qrCodeSize: "medium" /* MEDIUM */,
|
|
9358
|
-
list: [
|
|
9398
|
+
list: [
|
|
9399
|
+
SSO_GOOGLE_CONFIG,
|
|
9400
|
+
SSO_APPLE_CONFIG,
|
|
9401
|
+
SSO_MICROSOFT_CONFIG,
|
|
9402
|
+
SSO_VIDIS_CONFIG,
|
|
9403
|
+
SSO_QR_CODE_CONFIG
|
|
9404
|
+
]
|
|
9359
9405
|
},
|
|
9360
9406
|
signUp: {
|
|
9361
9407
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG]
|
|
@@ -12357,6 +12403,7 @@ exports.ProblemCreatorMathEntryVariant = ProblemCreatorMathEntryVariant;
|
|
|
12357
12403
|
exports.QRCodeSize = QRCodeSize;
|
|
12358
12404
|
exports.SE_CALENDAR_CONFIG = SE_CALENDAR_CONFIG;
|
|
12359
12405
|
exports.SSO = SSO;
|
|
12406
|
+
exports.SSO_VIDIS_CONFIG = SSO_VIDIS_CONFIG;
|
|
12360
12407
|
exports.SV_FI_CALENDAR_CONFIG = SV_FI_CALENDAR_CONFIG;
|
|
12361
12408
|
exports.Source = Source;
|
|
12362
12409
|
exports.TTSOverrideSymbol = TTSOverrideSymbol;
|