diff options
| author | MohamedBassem <me@mbassem.com> | 2025-04-08 03:58:31 -0700 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2025-04-08 03:58:31 -0700 |
| commit | a013a338b8a963a942324b91c3c91152a81dc061 (patch) | |
| tree | 37dff5c349cd5c727de53b505aaf6d0b88b04210 /packages | |
| parent | 0b769c3532551e9d0e7077703e4ea861a1179c66 (diff) | |
| download | karakeep-a013a338b8a963a942324b91c3c91152a81dc061.tar.zst | |
build: Regenerate the openapi specs and sdk
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/open-api/hoarder-openapi-spec.json | 28 | ||||
| -rw-r--r-- | packages/sdk/src/hoarder-api.d.ts | 12 |
2 files changed, 40 insertions, 0 deletions
diff --git a/packages/open-api/hoarder-openapi-spec.json b/packages/open-api/hoarder-openapi-spec.json index e0386c8a..384e30f2 100644 --- a/packages/open-api/hoarder-openapi-spec.json +++ b/packages/open-api/hoarder-openapi-spec.json @@ -860,6 +860,34 @@ "createdAt": { "type": "string", "nullable": true + }, + "url": { + "type": "string", + "format": "uri" + }, + "description": { + "type": "string", + "nullable": true + }, + "author": { + "type": "string", + "nullable": true + }, + "publisher": { + "type": "string", + "nullable": true + }, + "datePublished": { + "type": "string", + "nullable": true + }, + "dateModified": { + "type": "string", + "nullable": true + }, + "text": { + "type": "string", + "nullable": true } } } diff --git a/packages/sdk/src/hoarder-api.d.ts b/packages/sdk/src/hoarder-api.d.ts index 60892c05..d0fd8e19 100644 --- a/packages/sdk/src/hoarder-api.d.ts +++ b/packages/sdk/src/hoarder-api.d.ts @@ -233,6 +233,14 @@ export interface paths { note?: string; title?: string | null; createdAt?: string | null; + /** Format: uri */ + url?: string; + description?: string | null; + author?: string | null; + publisher?: string | null; + datePublished?: string | null; + dateModified?: string | null; + text?: string | null; }; }; }; @@ -1370,6 +1378,10 @@ export interface components { favicon?: string | null; htmlContent?: string | null; crawledAt?: string | null; + author?: string | null; + publisher?: string | null; + datePublished?: string | null; + dateModified?: string | null; } | { /** @enum {string} */ |
