diff options
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} */ |
