Skip to content

Commit

Permalink
feat: add optional ending_at property to schedule (#85)
Browse files Browse the repository at this point in the history
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Christopher Bell <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and cjbell authored Jan 28, 2025
1 parent f08210b commit 46a3126
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 46a3126

Please sign in to comment.