mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
feat(onboarding): add emailPasswordEnabled to meta, remove logoDataUrl from org
This commit is contained in:
@@ -6,6 +6,7 @@ export type OnboardingMeta = {
|
|||||||
ssoProviders: OnboardingSsoProvider[];
|
ssoProviders: OnboardingSsoProvider[];
|
||||||
defaultUserMode: boolean;
|
defaultUserMode: boolean;
|
||||||
resumeStepId: string;
|
resumeStepId: string;
|
||||||
|
emailPasswordEnabled: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingAccountData = {
|
export type OnboardingAccountData = {
|
||||||
@@ -15,23 +16,22 @@ export type OnboardingAccountData = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingSecurityData = {
|
export type OnboardingSecurityData = {
|
||||||
method: 'passkey' | 'two-factor' | 'skipped';
|
method: "passkey" | "two-factor" | "skipped";
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingPreferencesData = {
|
export type OnboardingPreferencesData = {
|
||||||
theme: 'light' | 'dark';
|
theme: "light" | "dark";
|
||||||
avatarUrl?: string;
|
avatarUrl?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingOrgData = {
|
export type OnboardingOrgData = {
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
logoDataUrl?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingMember = {
|
export type OnboardingMember = {
|
||||||
email: string;
|
email: string;
|
||||||
role: 'member' | 'admin';
|
role: "member" | "admin";
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingChannel = {
|
export type OnboardingChannel = {
|
||||||
@@ -57,7 +57,7 @@ export type OnboardingAgent = {
|
|||||||
export type OnboardingDatabase = {
|
export type OnboardingDatabase = {
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
engine: 'postgres' | 'mysql' | 'mongodb';
|
engine: "postgres" | "mysql" | "mongodb";
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OnboardingDbSettings = {
|
export type OnboardingDbSettings = {
|
||||||
|
|||||||
Reference in New Issue
Block a user