import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpsertTenantRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; /** * Optional tenant metadata */ body?: components.TenantUpsert | undefined; }; /** @internal */ export declare const UpsertTenantRequest$inboundSchema: z.ZodType; /** @internal */ export type UpsertTenantRequest$Outbound = { tenant_id: string; body?: components.TenantUpsert$Outbound | undefined; }; /** @internal */ export declare const UpsertTenantRequest$outboundSchema: z.ZodType; export declare function upsertTenantRequestToJSON(upsertTenantRequest: UpsertTenantRequest): string; export declare function upsertTenantRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=upserttenant.d.ts.map