import * as z from "zod/v4"; import * as models from "../index.js"; export type SetOperationsPluginEnabledGlobals = { /** * 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 SetOperationsPluginEnabledRequest = { /** * Plugin name. */ name: string; /** * Filter by project ID or name. */ project: string; setOperationsPluginEnabledRequest?: models.SetOperationsPluginEnabledRequest | undefined; }; /** @internal */ export type SetOperationsPluginEnabledRequest$Outbound = { name: string; project: string; SetOperationsPluginEnabledRequest?: models.SetOperationsPluginEnabledRequest$Outbound | undefined; }; /** @internal */ export declare const SetOperationsPluginEnabledRequest$outboundSchema: z.ZodType; export declare function setOperationsPluginEnabledRequestToJSON(setOperationsPluginEnabledRequest: SetOperationsPluginEnabledRequest): string; //# sourceMappingURL=setoperationspluginenabled.d.ts.map