Skip to content

Commit

Permalink
fix: add task updatedAt property
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie committed Aug 13, 2024
1 parent 5c0bffa commit 0611008
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/gopeed-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,14 @@ export interface Task {
size: number;
/**
* Task created time, ISO 8601 format
* @example 2023-03-04T19:11:01.8468886+08:00
* @example "2023-03-04T19:11:01.8468886+08:00"
*/
createdAt: string;
/**
* Task updated time, ISO 8601 format
* @example "2023-03-04T19:11:01.8468886+08:00"
*/
updatedAt: string;
}

export interface CreateTaskWithResolveResult {
Expand Down

0 comments on commit 0611008

Please sign in to comment.