/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const SecretType = { PrivateKey: "private_key", PublishableKey: "publishable_key", Integration: "integration", } as const; export type SecretType = OpenEnum; /** @internal */ export const SecretType$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(SecretType); /** @internal */ export const SecretType$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(SecretType);