import * as z from "zod"; import { EngineParamBindingPayloadV2, EngineParamBindingPayloadV2$Outbound } from "./engineparambindingpayloadv2.js"; export type ConditionPayloadV2 = { /** * The name of the operation on the subject */ operation: string; /** * List of parameter bindings */ paramBindings: Array; /** * The reference of the subject in the trigger scope */ subject: string; }; /** @internal */ export declare const ConditionPayloadV2$inboundSchema: z.ZodType; /** @internal */ export type ConditionPayloadV2$Outbound = { operation: string; param_bindings: Array; subject: string; }; /** @internal */ export declare const ConditionPayloadV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConditionPayloadV2$ { /** @deprecated use `ConditionPayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConditionPayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConditionPayloadV2$Outbound` instead. */ type Outbound = ConditionPayloadV2$Outbound; } //# sourceMappingURL=conditionpayloadv2.d.ts.map