import type * as HydraDB from "../../../../index.js"; /** * @example * { * database: "acme_corp" * } */ export interface TenantsTenantMetadataSchemaUpdateRequest { /** Database identifier */ database: string; /** New metadata schema fields to add to the database. Additive only — no deletes, renames, or type changes. */ addFields?: HydraDB.TenantsCustomPropertyDefinition[]; }