Skip to content

Commit 46a3126

Browse files
devin-ai-integration[bot]cjbell
andauthoredJan 28, 2025··
feat: add optional ending_at property to schedule (#85)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Christopher Bell <[email protected]>
1 parent f08210b commit 46a3126

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/resources/workflows/interfaces.ts

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export interface CreateSchedulesProps {
4949
recipients: (Recipient | RecipientWithUpsert)[];
5050
actor?: Recipient | RecipientWithUpsert | null;
5151
scheduled_at?: string;
52+
ending_at?: string;
5253
repeats?: ScheduleRepeatProperties[];
5354
tenant?: Tenant | TenantWithUpsert | null;
5455
data?: { [key: string]: any };
@@ -80,6 +81,7 @@ export interface Schedule {
8081
inserted_at: string;
8182
updated_at: string;
8283
repeats: ScheduleRepeatProperties[];
84+
ending_at?: string | null;
8385

8486
// only when paginating
8587
__cursor?: string;

0 commit comments

Comments
 (0)
Please sign in to comment.