@magmamath/frontend-config 1.0.21 → 1.0.22-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 +2 -9
- package/dist/index.d.ts +2 -9
- package/dist/index.js +189 -373
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +185 -373
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -519,16 +519,9 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
519
519
|
readonly onEnvsChange: (cb: (cfg: EnvironmentVars<P>) => void) => effector.Subscription;
|
|
520
520
|
readonly onLocaleChange: (cb: (cfg: LocaleConfig<P, L>) => void) => effector.Subscription;
|
|
521
521
|
readonly getPresets: () => {
|
|
522
|
-
envPreset:
|
|
523
|
-
STUDENTS: StudentsWebVarsPreset;
|
|
524
|
-
TEACHERS: TeachersWebVarsPreset;
|
|
525
|
-
DISTRICT: DistrictWebVarsPreset;
|
|
526
|
-
AUTH_WEB: AuthWebVarsPreset;
|
|
527
|
-
WEB_ADMIN: WebAdminVarsPreset;
|
|
528
|
-
MOBILE: MobileVarsPreset;
|
|
529
|
-
}>;
|
|
522
|
+
envPreset: any;
|
|
530
523
|
localePreset: LocalePreset;
|
|
531
524
|
};
|
|
532
525
|
}
|
|
533
526
|
|
|
534
|
-
export { ApiRegion, AppConfigManager, DateFormat, DateLocale, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, SSO, type SSOConfig, Source, buildTargetToEnvironment };
|
|
527
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictWebVarsPreset, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileVars, type MobileVarsPreset, Platform, PlatformBuildTarget, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, buildTargetToEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -519,16 +519,9 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
519
519
|
readonly onEnvsChange: (cb: (cfg: EnvironmentVars<P>) => void) => effector.Subscription;
|
|
520
520
|
readonly onLocaleChange: (cb: (cfg: LocaleConfig<P, L>) => void) => effector.Subscription;
|
|
521
521
|
readonly getPresets: () => {
|
|
522
|
-
envPreset:
|
|
523
|
-
STUDENTS: StudentsWebVarsPreset;
|
|
524
|
-
TEACHERS: TeachersWebVarsPreset;
|
|
525
|
-
DISTRICT: DistrictWebVarsPreset;
|
|
526
|
-
AUTH_WEB: AuthWebVarsPreset;
|
|
527
|
-
WEB_ADMIN: WebAdminVarsPreset;
|
|
528
|
-
MOBILE: MobileVarsPreset;
|
|
529
|
-
}>;
|
|
522
|
+
envPreset: any;
|
|
530
523
|
localePreset: LocalePreset;
|
|
531
524
|
};
|
|
532
525
|
}
|
|
533
526
|
|
|
534
|
-
export { ApiRegion, AppConfigManager, DateFormat, DateLocale, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, SSO, type SSOConfig, Source, buildTargetToEnvironment };
|
|
527
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictWebVarsPreset, type EnvPreset, Environment, type EnvironmentVars, Locale, LoginSource, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileVars, type MobileVarsPreset, Platform, PlatformBuildTarget, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, buildTargetToEnvironment };
|