/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 626de77e58f2 */ import * as z from "zod/v4"; export type GetOperationsPolicyGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetOperationsPolicyRequest = { /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type GetOperationsPolicyRequest$Outbound = { project: string; }; /** @internal */ export const GetOperationsPolicyRequest$outboundSchema: z.ZodType< GetOperationsPolicyRequest$Outbound, GetOperationsPolicyRequest > = z.object({ project: z.string(), }); export function getOperationsPolicyRequestToJSON( getOperationsPolicyRequest: GetOperationsPolicyRequest, ): string { return JSON.stringify( GetOperationsPolicyRequest$outboundSchema.parse(getOperationsPolicyRequest), ); }