/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { SDKOptions } from "./config.js"; export interface Env { GR4VY_BEARER_AUTH?: string | undefined; /** * Sets the merchantAccountId parameter for all supported operations */ GR4VY_MERCHANT_ACCOUNT_ID?: string | undefined; GR4VY_DEBUG?: boolean | undefined; } export const envSchema: z.ZodType = z.object({ GR4VY_BEARER_AUTH: z.string().optional(), GR4VY_MERCHANT_ACCOUNT_ID: z.string().optional(), GR4VY_DEBUG: z.coerce.boolean().optional(), }); /** * Checks for the existence of the Deno global object to determine the environment. * @returns {boolean} True if the runtime is Deno, false otherwise. */ function isDeno() { if ("Deno" in globalThis) { return true; } return false; } let envMemo: Env | undefined = undefined; /** * Reads and validates environment variables. */ export function env(): Env { if (envMemo) { return envMemo; } const globals = globalThis as { Deno?: { env?: { toObject?: () => Record } }; process?: { env?: Record }; }; let envObject: Record = {}; if (isDeno()) { envObject = globals.Deno?.env?.toObject?.() ?? {}; } else { envObject = globals.process?.env ?? {}; } envMemo = envSchema.parse(envObject); return envMemo; } /** * Clears the cached env object. Useful for testing with a fresh environment. */ export function resetEnv() { envMemo = undefined; } /** * Populates global parameters with environment variables. */ export function fillGlobals(options: SDKOptions): SDKOptions { const clone = { ...options }; const envVars = env(); if (typeof envVars.GR4VY_MERCHANT_ACCOUNT_ID !== "undefined") { clone.merchantAccountId ??= envVars.GR4VY_MERCHANT_ACCOUNT_ID; } return clone; }