feat(cron): allow users to associate cron jobs with specific agents (#835)
This commit is contained in:
committed by
GitHub
Unverified
parent
49518300dc
commit
87ab12849c
@@ -58,6 +58,7 @@ export interface CronJob {
|
||||
updatedAt: string;
|
||||
lastRun?: CronJobLastRun;
|
||||
nextRun?: string;
|
||||
agentId: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -69,6 +70,7 @@ export interface CronJobCreateInput {
|
||||
schedule: string;
|
||||
delivery?: CronJobDelivery;
|
||||
enabled?: boolean;
|
||||
agentId?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -80,6 +82,7 @@ export interface CronJobUpdateInput {
|
||||
schedule?: string;
|
||||
delivery?: CronJobDelivery;
|
||||
enabled?: boolean;
|
||||
agentId?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user