diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-02-01 22:14:00 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-02-01 22:14:00 +0000 |
| commit | cf85a79ed3bf5aecf770e996b74e3213eb43de4b (patch) | |
| tree | 74232ce66a62b79f26270e36206f9ed21af152fc /packages/sdk | |
| parent | c52a1b4fa2029f69a22ac342a8b79665a43ecb01 (diff) | |
| download | karakeep-cf85a79ed3bf5aecf770e996b74e3213eb43de4b.tar.zst | |
feat(api): Expose the modifiedAt date in the bookmarks API
Diffstat (limited to 'packages/sdk')
| -rw-r--r-- | packages/sdk/src/hoarder-api.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/sdk/src/hoarder-api.d.ts b/packages/sdk/src/hoarder-api.d.ts index 482f6c3c..8c275b0b 100644 --- a/packages/sdk/src/hoarder-api.d.ts +++ b/packages/sdk/src/hoarder-api.d.ts @@ -246,6 +246,7 @@ export interface paths { "application/json": { id: string; createdAt: string; + modifiedAt: string | null; title?: string | null; archived: boolean; favourited: boolean; @@ -1196,6 +1197,7 @@ export interface components { Bookmark: { id: string; createdAt: string; + modifiedAt: string | null; title?: string | null; archived: boolean; favourited: boolean; |
