localization, assign data-base, tenant domain, plan and subscription and data-base connection screen added

This commit is contained in:
Gagan7900
2026-08-07 14:01:25 +05:30
parent 0ed581abc9
commit c29d9450ec
88 changed files with 3489 additions and 2469 deletions
@@ -110,8 +110,11 @@ export interface TestDbConnectionRequest {
}
export interface TestDbConnectionResult {
success: boolean;
message: string;
success?: boolean;
isSuccess?: boolean;
message?: string;
detail?: string;
error?: string;
}
export interface DbConnectionLookupDto {
@@ -122,3 +125,11 @@ export interface DbConnectionLookupDto {
isReadReplica?: boolean;
isActive?: boolean;
}
export interface DbConnectionCodePreviewDto {
code?: string | null;
connectionCode?: string | null;
nextCode?: string | null;
value?: string | null;
}