/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: a0132548c62d */ import * as z from "zod/v4"; export type ListOperationsPluginsGlobals = { /** * 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 ListOperationsPluginsRequest = { /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type ListOperationsPluginsRequest$Outbound = { project: string; }; /** @internal */ export const ListOperationsPluginsRequest$outboundSchema: z.ZodType< ListOperationsPluginsRequest$Outbound, ListOperationsPluginsRequest > = z.object({ project: z.string(), }); export function listOperationsPluginsRequestToJSON( listOperationsPluginsRequest: ListOperationsPluginsRequest, ): string { return JSON.stringify( ListOperationsPluginsRequest$outboundSchema.parse( listOperationsPluginsRequest, ), ); }