import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Status of the trigger */ export declare const TriggerEventResponseDtoStatus: { readonly Error: "error"; readonly TriggerNotActive: "trigger_not_active"; readonly NoWorkflowActiveStepsDefined: "no_workflow_active_steps_defined"; readonly NoWorkflowStepsDefined: "no_workflow_steps_defined"; readonly Processed: "processed"; readonly NoTenantFound: "no_tenant_found"; readonly InvalidRecipients: "invalid_recipients"; }; /** * Status of the trigger */ export type TriggerEventResponseDtoStatus = ClosedEnum; export type JobData = {}; export type TriggerEventResponseDto = { /** * Indicates whether the trigger was acknowledged or not */ acknowledged: boolean; /** * Status of the trigger */ status: TriggerEventResponseDtoStatus; /** * In case of an error, this field will contain the error message(s) */ error?: Array | undefined; /** * The returned transaction ID of the trigger */ transactionId?: string | undefined; /** * Link to the activity feed for this trigger event */ activityFeedLink?: string | undefined; jobData?: JobData | undefined; }; /** @internal */ export declare const TriggerEventResponseDtoStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const JobData$inboundSchema: z.ZodType; export declare function jobDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TriggerEventResponseDto$inboundSchema: z.ZodType; export declare function triggerEventResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=triggereventresponsedto.d.ts.map