All the UI fixes for now
This commit is contained in:
@@ -69,10 +69,7 @@ export interface UsageSummary {
|
||||
period: string;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Registration & Onboarding
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
// Registration
|
||||
export interface RegistrationInput {
|
||||
companyName: string;
|
||||
givenName: string;
|
||||
@@ -81,6 +78,7 @@ export interface RegistrationInput {
|
||||
preferredLanguage?: string;
|
||||
}
|
||||
|
||||
// Billing address
|
||||
export interface BillingAddress {
|
||||
company?: string;
|
||||
street?: string;
|
||||
@@ -90,11 +88,12 @@ export interface BillingAddress {
|
||||
}
|
||||
|
||||
export type TenantRequestStatus =
|
||||
| "pending" // Submitted, awaiting admin approval
|
||||
| "approved" // Admin approved, provisioning will start
|
||||
| "provisioning" // PiecedTenant CR created, operator reconciling
|
||||
| "active" // Tenant running
|
||||
| "rejected"; // Admin rejected
|
||||
| "pending" // Submitted, awaiting admin approval
|
||||
| "approved" // Admin approved, provisioning will start
|
||||
| "provisioning" // PiecedTenant CR created, operator reconciling
|
||||
| "active" // Tenant running
|
||||
| "rejected" // Admin rejected
|
||||
| "deleted"; // Tenant was deleted by admin
|
||||
|
||||
export interface TenantRequest {
|
||||
id: string;
|
||||
@@ -111,10 +110,12 @@ export interface TenantRequest {
|
||||
status: TenantRequestStatus;
|
||||
adminNotes?: string;
|
||||
tenantName?: string;
|
||||
encryptedSecrets?: Buffer | null;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
// Onboarding wizard input
|
||||
export interface OnboardingInput {
|
||||
agentName: string;
|
||||
soulMd?: string;
|
||||
|
||||
Reference in New Issue
Block a user