All the MD files via Database

This commit is contained in:
2026-04-11 21:14:09 +02:00
parent c67259ebe0
commit fdb56490dd
14 changed files with 1004 additions and 240 deletions

View File

@@ -88,12 +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
| "deleted"; // Tenant was deleted by admin
| "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;
@@ -104,6 +104,7 @@ export interface TenantRequest {
contactEmail: string;
agentName: string;
soulMd?: string;
agentsMd?: string | null;
packages: string[];
billingAddress: BillingAddress;
billingNotes?: string;
@@ -119,6 +120,7 @@ export interface TenantRequest {
export interface OnboardingInput {
agentName: string;
soulMd?: string;
agentsMd?: string;
packages?: string[];
billingAddress: BillingAddress;
billingNotes?: string;