1
0
forked from baron/baron-sso

테넌트 등록 방식을 결정

This commit is contained in:
2026-02-02 14:05:50 +09:00
parent 9e9c622600
commit 5dd425050c
21 changed files with 613 additions and 84 deletions

View File

@@ -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;