/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { remap as remap$ } from "../../lib/primitives.js"; import * as z from "zod"; export type Security = { statsigApiKey: string; }; /** @internal */ export const Security$inboundSchema: z.ZodType = z .object({ "STATSIG-API-KEY": z.string(), }) .transform((v) => { return remap$(v, { "STATSIG-API-KEY": "statsigApiKey", }); }); /** @internal */ export type Security$Outbound = { "STATSIG-API-KEY": string; }; /** @internal */ export const Security$outboundSchema: z.ZodType = z .object({ statsigApiKey: z.string(), }) .transform((v) => { return remap$(v, { statsigApiKey: "STATSIG-API-KEY", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace Security$ { /** @deprecated use `Security$inboundSchema` instead. */ export const inboundSchema = Security$inboundSchema; /** @deprecated use `Security$outboundSchema` instead. */ export const outboundSchema = Security$outboundSchema; /** @deprecated use `Security$Outbound` instead. */ export type Outbound = Security$Outbound; }