diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-04-16 19:04:25 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-04-16 23:50:17 +0000 |
| commit | ba89a864bb4548623ca1bfcfc9ab6eb7fe782603 (patch) | |
| tree | e3b8ddf9d418255f95c18bee76350d441fdd3081 /packages/sdk/src | |
| parent | 5e0f4de1625957c6ce057ae272aa301fc459d31b (diff) | |
| download | karakeep-ba89a864bb4548623ca1bfcfc9ab6eb7fe782603.tar.zst | |
fix: Add includeContent to search endpoint and document it in the docs
Diffstat (limited to 'packages/sdk/src')
| -rw-r--r-- | packages/sdk/src/hoarder-api.d.ts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/sdk/src/hoarder-api.d.ts b/packages/sdk/src/hoarder-api.d.ts index 2b9986d3..0b434b3d 100644 --- a/packages/sdk/src/hoarder-api.d.ts +++ b/packages/sdk/src/hoarder-api.d.ts @@ -22,6 +22,8 @@ export interface paths { favourited?: boolean; limit?: number; cursor?: components["schemas"]["Cursor"]; + /** @description If set to true, bookmark's content will be included in the response. Note, this content can be large for some bookmarks. */ + includeContent?: boolean; }; header?: never; path?: never; @@ -135,6 +137,8 @@ export interface paths { q: string; limit?: number; cursor?: components["schemas"]["Cursor"]; + /** @description If set to true, bookmark's content will be included in the response. Note, this content can be large for some bookmarks. */ + includeContent?: boolean; }; header?: never; path?: never; @@ -174,7 +178,10 @@ export interface paths { */ get: { parameters: { - query?: never; + query?: { + /** @description If set to true, bookmark's content will be included in the response. Note, this content can be large for some bookmarks. */ + includeContent?: boolean; + }; header?: never; path: { bookmarkId: components["parameters"]["BookmarkId"]; @@ -972,6 +979,8 @@ export interface paths { query?: { limit?: number; cursor?: components["schemas"]["Cursor"]; + /** @description If set to true, bookmark's content will be included in the response. Note, this content can be large for some bookmarks. */ + includeContent?: boolean; }; header?: never; path: { @@ -1313,6 +1322,8 @@ export interface paths { query?: { limit?: number; cursor?: components["schemas"]["Cursor"]; + /** @description If set to true, bookmark's content will be included in the response. Note, this content can be large for some bookmarks. */ + includeContent?: boolean; }; header?: never; path: { |
