import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; /** * A name and the fingerprint of its value. */ export type Var = { /** * Variable name */ name: string; /** * First 8 hex characters of sha256(value). Never the value. */ fingerprint: string; }; /** * A name and the fingerprint of its value. */ export type Secret = { /** * Variable name */ name: string; /** * First 8 hex characters of sha256(value). Never the value. */ fingerprint: string; }; export type NameVarsSecrets = { /** * Environment name — e.g. staging, e2e, prod */ name: string; /** * Non-secret variables: names + fingerprints. */ vars: Array; /** * Secrets: names + fingerprints. Values are encrypted at rest and never returned. */ secrets: Array; /** * ISO timestamp, when the store keeps one. */ createdAt: string | null; /** * ISO timestamp of the last write, when the store keeps one. */ updatedAt: string | null; }; /** @internal */ export declare const Var$inboundSchema: z.ZodMiniType; export declare function varFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Secret$inboundSchema: z.ZodMiniType; export declare function secretFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const NameVarsSecrets$inboundSchema: z.ZodMiniType; export declare function nameVarsSecretsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=name-vars-secrets.d.ts.map