2023-05-16 17:34:52 +02:00
|
|
|
import * as management from "./management";
|
|
|
|
|
import * as settings from "./v2/settings";
|
|
|
|
|
import * as session from "./v2/session";
|
|
|
|
|
|
|
|
|
|
import * as login from "./proto/server/zitadel/settings/v2alpha/login_settings";
|
|
|
|
|
import * as password from "./proto/server/zitadel/settings/v2alpha/password_settings";
|
|
|
|
|
import * as legal from "./proto/server/zitadel/settings/v2alpha/legal_settings";
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
BrandingSettings,
|
|
|
|
|
Theme,
|
|
|
|
|
} from "./proto/server/zitadel/settings/v2alpha/branding_settings";
|
2023-04-13 13:26:02 +02:00
|
|
|
|
2023-05-16 17:34:52 +02:00
|
|
|
export { type LegalAndSupportSettings } from "./proto/server/zitadel/settings/v2alpha/legal_settings";
|
|
|
|
|
export { type PasswordComplexitySettings } from "./proto/server/zitadel/settings/v2alpha/password_settings";
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
getServers,
|
|
|
|
|
initializeServer,
|
|
|
|
|
ZitadelServer,
|
|
|
|
|
ZitadelServerOptions,
|
|
|
|
|
} from "./server";
|
|
|
|
|
export * from "./middleware";
|
2023-04-13 13:26:02 +02:00
|
|
|
|
2023-05-16 17:34:52 +02:00
|
|
|
export {
|
|
|
|
|
getServers,
|
|
|
|
|
ZitadelServer,
|
|
|
|
|
type ZitadelServerOptions,
|
|
|
|
|
initializeServer,
|
|
|
|
|
management,
|
|
|
|
|
session,
|
|
|
|
|
settings,
|
|
|
|
|
login,
|
|
|
|
|
password,
|
|
|
|
|
legal,
|
|
|
|
|
};
|