import { z } from 'zod'; import { StreamStepProgress, TriggerHookType } from '../engine'; import { ExecutionType } from '../flow-run/execution/execution-output'; import { RunEnvironment } from '../flow-run/flow-run'; import { FlowTriggerType } from '../flows/triggers/trigger'; export declare const LATEST_JOB_DATA_SCHEMA_VERSION = 6; export declare const InlineJobPayload: z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>; export declare const RefJobPayload: z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>; export declare const JobPayload: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>], "type">; export declare const JOB_PRIORITY: { critical: number; high: number; medium: number; low: number; veryLow: number; lowest: number; }; export declare const RATE_LIMIT_PRIORITY: keyof typeof JOB_PRIORITY; export declare function getDefaultJobPriority(job: JobData): keyof typeof JOB_PRIORITY; export declare enum WorkerJobType { RENEW_WEBHOOK = "RENEW_WEBHOOK", EXECUTE_POLLING = "EXECUTE_POLLING", EXECUTE_WEBHOOK = "EXECUTE_WEBHOOK", EXECUTE_FLOW = "EXECUTE_FLOW", EXECUTE_VALIDATION = "EXECUTE_VALIDATION", EXECUTE_TRIGGER_HOOK = "EXECUTE_TRIGGER_HOOK", EXECUTE_PROPERTY = "EXECUTE_PROPERTY", EXECUTE_EXTRACT_PIECE_INFORMATION = "EXECUTE_EXTRACT_PIECE_INFORMATION", EVENT_DESTINATION = "EVENT_DESTINATION" } export declare const NON_SCHEDULED_JOB_TYPES: WorkerJobType[]; export declare const RenewWebhookJobData: z.ZodObject<{ schemaVersion: z.ZodNumber; projectId: z.ZodString; platformId: z.ZodString; flowVersionId: z.ZodString; flowId: z.ZodString; jobType: z.ZodLiteral; }, z.core.$strip>; export type RenewWebhookJobData = z.infer; export declare const PollingJobData: z.ZodObject<{ projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; flowVersionId: z.ZodString; flowId: z.ZodString; triggerType: z.ZodEnum; jobType: z.ZodLiteral; }, z.core.$strip>; export type PollingJobData = z.infer; export declare const ExecuteFlowJobData: z.ZodObject<{ projectId: z.ZodString; platformId: z.ZodString; jobType: z.ZodLiteral; environment: z.ZodEnum; schemaVersion: z.ZodNumber; flowId: z.ZodString; flowVersionId: z.ZodString; runId: z.ZodString; workerHandlerId: z.ZodOptional>; httpRequestId: z.ZodOptional; payload: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>], "type">; executeTrigger: z.ZodOptional; executionType: z.ZodEnum; streamStepProgress: z.ZodEnum; stepNameToTest: z.ZodOptional; sampleData: z.ZodOptional>; logsUploadUrl: z.ZodString; logsFileId: z.ZodString; traceContext: z.ZodOptional>; }, z.core.$strip>; export type ExecuteFlowJobData = z.infer; export declare const WebhookJobData: z.ZodObject<{ projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; requestId: z.ZodString; payload: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>], "type">; runEnvironment: z.ZodEnum; flowId: z.ZodString; saveSampleData: z.ZodBoolean; flowVersionIdToRun: z.ZodString; execute: z.ZodBoolean; jobType: z.ZodLiteral; parentRunId: z.ZodOptional; failParentOnFailure: z.ZodOptional; traceContext: z.ZodOptional>; }, z.core.$strip>; export type WebhookJobData = z.infer; export declare const ExecuteValidateAuthJobData: z.ZodObject<{ jobType: z.ZodLiteral; projectId: z.ZodOptional; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; schemaVersion: z.ZodNumber; connectionValue: z.ZodUnknown; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>; export type ExecuteValidateAuthJobData = z.infer; export declare const ExecuteTriggerHookJobData: z.ZodObject<{ jobType: z.ZodLiteral; platformId: z.ZodString; projectId: z.ZodString; schemaVersion: z.ZodNumber; flowId: z.ZodString; flowVersionId: z.ZodString; test: z.ZodBoolean; hookType: z.ZodEnum; triggerPayload: z.ZodOptional; headers: z.ZodRecord; queryParams: z.ZodRecord; }, z.core.$strip>>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>; export type ExecuteTriggerHookJobData = z.infer; export declare const ExecutePropertyJobData: z.ZodObject<{ jobType: z.ZodLiteral; projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; flowVersion: z.ZodOptional; settings: z.ZodObject<{ sampleData: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; lastTestDate: z.ZodOptional; }, z.core.$strip>>; propertySettings: z.ZodRecord; schema: z.ZodOptional; }, z.core.$strip>>; customLogoUrl: z.ZodOptional; pieceName: z.ZodString; pieceVersion: z.ZodString; triggerName: z.ZodOptional; input: z.ZodRecord; }, z.core.$strip>; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral; settings: z.ZodAny; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>]>; updatedBy: z.ZodOptional>; valid: z.ZodBoolean; schemaVersion: z.ZodOptional>; agentIds: z.ZodArray; state: z.ZodEnum; connectionIds: z.ZodArray; backupFiles: z.ZodOptional>>; notes: z.ZodArray>; color: z.ZodEnum; position: z.ZodObject<{ x: z.ZodNumber; y: z.ZodNumber; }, z.core.$strip>; size: z.ZodObject<{ width: z.ZodNumber; height: z.ZodNumber; }, z.core.$strip>; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>>; propertyName: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; actionOrTriggerName: z.ZodString; input: z.ZodRecord; sampleData: z.ZodRecord; searchValue: z.ZodOptional; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>; export type ExecutePropertyJobData = z.infer; export declare const ExecuteExtractPieceMetadataJobData: z.ZodObject<{ schemaVersion: z.ZodNumber; jobType: z.ZodLiteral; projectId: z.ZodUndefined; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>; export type ExecuteExtractPieceMetadataJobData = z.infer; export declare const UserInteractionJobData: z.ZodUnion; projectId: z.ZodOptional; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; schemaVersion: z.ZodNumber; connectionValue: z.ZodUnknown; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ jobType: z.ZodLiteral; platformId: z.ZodString; projectId: z.ZodString; schemaVersion: z.ZodNumber; flowId: z.ZodString; flowVersionId: z.ZodString; test: z.ZodBoolean; hookType: z.ZodEnum; triggerPayload: z.ZodOptional; headers: z.ZodRecord; queryParams: z.ZodRecord; }, z.core.$strip>>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ jobType: z.ZodLiteral; projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; flowVersion: z.ZodOptional; settings: z.ZodObject<{ sampleData: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; lastTestDate: z.ZodOptional; }, z.core.$strip>>; propertySettings: z.ZodRecord; schema: z.ZodOptional; }, z.core.$strip>>; customLogoUrl: z.ZodOptional; pieceName: z.ZodString; pieceVersion: z.ZodString; triggerName: z.ZodOptional; input: z.ZodRecord; }, z.core.$strip>; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral; settings: z.ZodAny; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>]>; updatedBy: z.ZodOptional>; valid: z.ZodBoolean; schemaVersion: z.ZodOptional>; agentIds: z.ZodArray; state: z.ZodEnum; connectionIds: z.ZodArray; backupFiles: z.ZodOptional>>; notes: z.ZodArray>; color: z.ZodEnum; position: z.ZodObject<{ x: z.ZodNumber; y: z.ZodNumber; }, z.core.$strip>; size: z.ZodObject<{ width: z.ZodNumber; height: z.ZodNumber; }, z.core.$strip>; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>>; propertyName: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; actionOrTriggerName: z.ZodString; input: z.ZodRecord; sampleData: z.ZodRecord; searchValue: z.ZodOptional; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ schemaVersion: z.ZodNumber; jobType: z.ZodLiteral; projectId: z.ZodUndefined; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>]>; export type UserInteractionJobData = z.infer; export declare const UserInteractionJobDataWithoutWatchingInformation: z.ZodUnion; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; jobType: z.ZodLiteral; connectionValue: z.ZodUnknown; }, z.core.$strip>, z.ZodObject<{ platformId: z.ZodString; projectId: z.ZodString; test: z.ZodBoolean; flowId: z.ZodString; flowVersionId: z.ZodString; jobType: z.ZodLiteral; hookType: z.ZodEnum; triggerPayload: z.ZodOptional; headers: z.ZodRecord; queryParams: z.ZodRecord; }, z.core.$strip>>; }, z.core.$strip>, z.ZodObject<{ input: z.ZodRecord; platformId: z.ZodString; projectId: z.ZodString; actionOrTriggerName: z.ZodString; propertyName: z.ZodString; searchValue: z.ZodOptional; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; sampleData: z.ZodRecord; flowVersion: z.ZodOptional; settings: z.ZodObject<{ sampleData: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; lastTestDate: z.ZodOptional; }, z.core.$strip>>; propertySettings: z.ZodRecord; schema: z.ZodOptional; }, z.core.$strip>>; customLogoUrl: z.ZodOptional; pieceName: z.ZodString; pieceVersion: z.ZodString; triggerName: z.ZodOptional; input: z.ZodRecord; }, z.core.$strip>; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral; settings: z.ZodAny; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>]>; updatedBy: z.ZodOptional>; valid: z.ZodBoolean; schemaVersion: z.ZodOptional>; agentIds: z.ZodArray; state: z.ZodEnum; connectionIds: z.ZodArray; backupFiles: z.ZodOptional>>; notes: z.ZodArray>; color: z.ZodEnum; position: z.ZodObject<{ x: z.ZodNumber; y: z.ZodNumber; }, z.core.$strip>; size: z.ZodObject<{ width: z.ZodNumber; height: z.ZodNumber; }, z.core.$strip>; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>>; jobType: z.ZodLiteral; }, z.core.$strip>, z.ZodObject<{ platformId: z.ZodString; projectId: z.ZodUndefined; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; jobType: z.ZodLiteral; }, z.core.$strip>]>; export type UserInteractionJobDataWithoutWatchingInformation = z.infer; export declare const EventDestinationJobData: z.ZodObject<{ schemaVersion: z.ZodNumber; platformId: z.ZodString; projectId: z.ZodOptional; webhookId: z.ZodString; webhookUrl: z.ZodString; payload: z.ZodUnknown; jobType: z.ZodLiteral; }, z.core.$strip>; export type EventDestinationJobData = z.infer; export declare const JobData: z.ZodUnion; jobType: z.ZodLiteral; }, z.core.$strip>, z.ZodObject<{ schemaVersion: z.ZodNumber; projectId: z.ZodString; platformId: z.ZodString; flowVersionId: z.ZodString; flowId: z.ZodString; jobType: z.ZodLiteral; }, z.core.$strip>, z.ZodObject<{ projectId: z.ZodString; platformId: z.ZodString; jobType: z.ZodLiteral; environment: z.ZodEnum; schemaVersion: z.ZodNumber; flowId: z.ZodString; flowVersionId: z.ZodString; runId: z.ZodString; workerHandlerId: z.ZodOptional>; httpRequestId: z.ZodOptional; payload: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>], "type">; executeTrigger: z.ZodOptional; executionType: z.ZodEnum; streamStepProgress: z.ZodEnum; stepNameToTest: z.ZodOptional; sampleData: z.ZodOptional>; logsUploadUrl: z.ZodString; logsFileId: z.ZodString; traceContext: z.ZodOptional>; }, z.core.$strip>, z.ZodObject<{ projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; requestId: z.ZodString; payload: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"inline">; value: z.ZodAny; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"ref">; fileId: z.ZodString; }, z.core.$strip>], "type">; runEnvironment: z.ZodEnum; flowId: z.ZodString; saveSampleData: z.ZodBoolean; flowVersionIdToRun: z.ZodString; execute: z.ZodBoolean; jobType: z.ZodLiteral; parentRunId: z.ZodOptional; failParentOnFailure: z.ZodOptional; traceContext: z.ZodOptional>; }, z.core.$strip>, z.ZodUnion; projectId: z.ZodOptional; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; schemaVersion: z.ZodNumber; connectionValue: z.ZodUnknown; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ jobType: z.ZodLiteral; platformId: z.ZodString; projectId: z.ZodString; schemaVersion: z.ZodNumber; flowId: z.ZodString; flowVersionId: z.ZodString; test: z.ZodBoolean; hookType: z.ZodEnum; triggerPayload: z.ZodOptional; headers: z.ZodRecord; queryParams: z.ZodRecord; }, z.core.$strip>>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ jobType: z.ZodLiteral; projectId: z.ZodString; platformId: z.ZodString; schemaVersion: z.ZodNumber; flowVersion: z.ZodOptional; settings: z.ZodObject<{ sampleData: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; lastTestDate: z.ZodOptional; }, z.core.$strip>>; propertySettings: z.ZodRecord; schema: z.ZodOptional; }, z.core.$strip>>; customLogoUrl: z.ZodOptional; pieceName: z.ZodString; pieceVersion: z.ZodString; triggerName: z.ZodOptional; input: z.ZodRecord; }, z.core.$strip>; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral; settings: z.ZodAny; name: z.ZodString; valid: z.ZodBoolean; displayName: z.ZodString; nextAction: z.ZodOptional; lastUpdatedDate: z.ZodString; }, z.core.$strip>]>; updatedBy: z.ZodOptional>; valid: z.ZodBoolean; schemaVersion: z.ZodOptional>; agentIds: z.ZodArray; state: z.ZodEnum; connectionIds: z.ZodArray; backupFiles: z.ZodOptional>>; notes: z.ZodArray>; color: z.ZodEnum; position: z.ZodObject<{ x: z.ZodNumber; y: z.ZodNumber; }, z.core.$strip>; size: z.ZodObject<{ width: z.ZodNumber; height: z.ZodNumber; }, z.core.$strip>; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>>; propertyName: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; actionOrTriggerName: z.ZodString; input: z.ZodRecord; sampleData: z.ZodRecord; searchValue: z.ZodOptional; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ schemaVersion: z.ZodNumber; jobType: z.ZodLiteral; projectId: z.ZodUndefined; platformId: z.ZodString; piece: z.ZodUnion; pieceType: z.ZodEnum; pieceName: z.ZodString; pieceVersion: z.ZodString; archiveId: z.ZodString; platformId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packageType: z.ZodLiteral; pieceType: z.ZodLiteral; pieceName: z.ZodString; pieceVersion: z.ZodString; platformId: z.ZodString; }, z.core.$strip>]>; requestId: z.ZodString; webserverId: z.ZodString; }, z.core.$strip>]>, z.ZodObject<{ schemaVersion: z.ZodNumber; platformId: z.ZodString; projectId: z.ZodOptional; webhookId: z.ZodString; webhookUrl: z.ZodString; payload: z.ZodUnknown; jobType: z.ZodLiteral; }, z.core.$strip>]>; export type JobData = z.infer; export type JobPayload = z.infer; //# sourceMappingURL=job-data.d.ts.map