aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2026-01-01 14:18:24 +0000
committerMohamed Bassem <me@mbassem.com>2026-01-01 14:18:24 +0000
commit2b89f1777e3c89a1477105b84b9e8fec52929768 (patch)
tree826ba1893035e0e185a4123ca20cb4cfdae40423
parentb63f133e4889697aa49b189aaee2f838a645370f (diff)
downloadkarakeep-2b89f1777e3c89a1477105b84b9e8fec52929768.tar.zst
release(cli,sdk): release cli and sdk v0.30
-rw-r--r--apps/cli/package.json2
-rw-r--r--packages/sdk/package.json2
-rw-r--r--packages/sdk/src/karakeep-api.d.ts16
3 files changed, 15 insertions, 5 deletions
diff --git a/apps/cli/package.json b/apps/cli/package.json
index a65b336c..ca085997 100644
--- a/apps/cli/package.json
+++ b/apps/cli/package.json
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@karakeep/cli",
- "version": "0.29.1",
+ "version": "0.30.0",
"description": "Command Line Interface (CLI) for Karakeep",
"license": "GNU Affero General Public License version 3",
"type": "module",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 6697a37f..584d70d9 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@karakeep/sdk",
- "version": "0.29.0",
+ "version": "0.30.0",
"description": "Typescript SDK for Karakeep",
"license": "GNU Affero General Public License version 3",
"keywords": [
diff --git a/packages/sdk/src/karakeep-api.d.ts b/packages/sdk/src/karakeep-api.d.ts
index d327f1fa..55d3ac59 100644
--- a/packages/sdk/src/karakeep-api.d.ts
+++ b/packages/sdk/src/karakeep-api.d.ts
@@ -696,6 +696,7 @@ export interface paths {
assetType:
| "linkHtmlContent"
| "screenshot"
+ | "pdf"
| "assetScreenshot"
| "bannerImage"
| "fullPageArchive"
@@ -703,6 +704,7 @@ export interface paths {
| "bookmarkAsset"
| "precrawledArchive"
| "userUploaded"
+ | "avatar"
| "unknown";
};
};
@@ -720,6 +722,7 @@ export interface paths {
assetType:
| "linkHtmlContent"
| "screenshot"
+ | "pdf"
| "assetScreenshot"
| "bannerImage"
| "fullPageArchive"
@@ -727,6 +730,7 @@ export interface paths {
| "bookmarkAsset"
| "precrawledArchive"
| "userUploaded"
+ | "avatar"
| "unknown";
fileName?: string | null;
};
@@ -1781,6 +1785,7 @@ export interface paths {
id: string;
name?: string | null;
email?: string | null;
+ image?: string | null;
localUser: boolean;
};
};
@@ -2099,7 +2104,7 @@ export interface paths {
backups: {
id: string;
userId: string;
- assetId: string;
+ assetId: string | null;
createdAt: string;
size: number;
bookmarkCount: number;
@@ -2135,7 +2140,7 @@ export interface paths {
"application/json": {
id: string;
userId: string;
- assetId: string;
+ assetId: string | null;
createdAt: string;
size: number;
bookmarkCount: number;
@@ -2184,7 +2189,7 @@ export interface paths {
"application/json": {
id: string;
userId: string;
- assetId: string;
+ assetId: string | null;
createdAt: string;
size: number;
bookmarkCount: number;
@@ -2361,6 +2366,7 @@ export interface components {
imageUrl?: string | null;
imageAssetId?: string | null;
screenshotAssetId?: string | null;
+ pdfAssetId?: string | null;
fullPageArchiveAssetId?: string | null;
precrawledArchiveAssetId?: string | null;
videoAssetId?: string | null;
@@ -2368,6 +2374,8 @@ export interface components {
htmlContent?: string | null;
contentAssetId?: string | null;
crawledAt?: string | null;
+ /** @enum {string|null} */
+ crawlStatus?: "success" | "failure" | "pending" | null;
author?: string | null;
publisher?: string | null;
datePublished?: string | null;
@@ -2400,6 +2408,7 @@ export interface components {
assetType:
| "linkHtmlContent"
| "screenshot"
+ | "pdf"
| "assetScreenshot"
| "bannerImage"
| "fullPageArchive"
@@ -2407,6 +2416,7 @@ export interface components {
| "bookmarkAsset"
| "precrawledArchive"
| "userUploaded"
+ | "avatar"
| "unknown";
fileName?: string | null;
}[];