import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const GenerateManagerTokenResponseTokenType: { readonly Bearer: "Bearer"; }; export type GenerateManagerTokenResponseTokenType = ClosedEnum; export type GenerateManagerTokenResponse = { /** * Platform JWT for authenticating with the manager */ accessToken: string; /** * Token lifetime in seconds */ expiresIn: number | null; tokenType: GenerateManagerTokenResponseTokenType; /** * Manager URL for direct access */ managerUrl: string; /** * Log database ID (null if logs not configured) */ databaseId: string | null; /** * Log control plane URL (null if logs not configured) */ controlPlaneUrl: string | null; }; /** @internal */ export declare const GenerateManagerTokenResponseTokenType$inboundSchema: z.ZodEnum; /** @internal */ export declare const GenerateManagerTokenResponse$inboundSchema: z.ZodType; export declare function generateManagerTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=generatemanagertokenresponse.d.ts.map