Skip to content

Commit

Permalink
feat: add optional ending_at property to schedule
Browse files Browse the repository at this point in the history
Co-Authored-By: Christopher Bell <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and cjbell committed Jan 28, 2025
1 parent f08210b commit 927ba3e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/resources/workflows/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export interface CreateSchedulesProps {
recipients: (Recipient | RecipientWithUpsert)[];
actor?: Recipient | RecipientWithUpsert | null;
scheduled_at?: string;
ending_at?: string;
repeats?: ScheduleRepeatProperties[];
tenant?: Tenant | TenantWithUpsert | null;
data?: { [key: string]: any };
Expand Down Expand Up @@ -80,6 +81,7 @@ export interface Schedule {
inserted_at: string;
updated_at: string;
repeats: ScheduleRepeatProperties[];
ending_at?: string | null;

// only when paginating
__cursor?: string;
Expand Down

0 comments on commit 927ba3e

Please sign in to comment.