forked from baron/baron-sso
테넌트 등록 방식을 결정
This commit is contained in:
@@ -25,6 +25,7 @@ export type TenantSummary = {
|
||||
slug: string;
|
||||
description: string;
|
||||
status: string;
|
||||
domains?: string[];
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
};
|
||||
@@ -34,6 +35,7 @@ export type TenantCreateRequest = {
|
||||
slug?: string;
|
||||
description?: string;
|
||||
status?: string;
|
||||
domains?: string[];
|
||||
};
|
||||
|
||||
export type TenantListResponse = {
|
||||
@@ -48,6 +50,7 @@ export type TenantUpdateRequest = {
|
||||
slug?: string;
|
||||
description?: string;
|
||||
status?: string;
|
||||
domains?: string[];
|
||||
};
|
||||
|
||||
export type ApiKeySummary = {
|
||||
@@ -168,6 +171,7 @@ export type UserSummary = {
|
||||
role: string;
|
||||
status: string;
|
||||
companyCode?: string;
|
||||
tenant?: TenantSummary;
|
||||
department?: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
|
||||
Reference in New Issue
Block a user