aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-01-02 13:00:58 +0200
committerGitHub <noreply@github.com>2025-01-02 13:00:58 +0200
commit5ecdc36b7d60aa66b49e01e9fec8ba61ad537376 (patch)
tree57577822bb104b95900ba577a265fb4f8cf70b78 /packages/open-api
parent5df0258b2cd884347eabfa866d7e7fbc7225cdb3 (diff)
downloadkarakeep-5ecdc36b7d60aa66b49e01e9fec8ba61ad537376.tar.zst
feat: Add support for smart lists (#802)
* feat: Add support for smart lists * i18n * Fix update list endpoint * Add a test for smart lists * Add header to the query explainer * Hide remove from lists in the smart context list * Add proper validation to list form --------- Co-authored-by: Deepak Kapoor <41769111+orthdron@users.noreply.github.com>
Diffstat (limited to 'packages/open-api')
-rw-r--r--packages/open-api/hoarder-openapi-spec.json28
-rw-r--r--packages/open-api/lib/lists.ts3
2 files changed, 30 insertions, 1 deletions
diff --git a/packages/open-api/hoarder-openapi-spec.json b/packages/open-api/hoarder-openapi-spec.json
index 46e5ea0f..fecea0c2 100644
--- a/packages/open-api/hoarder-openapi-spec.json
+++ b/packages/open-api/hoarder-openapi-spec.json
@@ -362,6 +362,18 @@
"parentId": {
"type": "string",
"nullable": true
+ },
+ "type": {
+ "type": "string",
+ "enum": [
+ "manual",
+ "smart"
+ ],
+ "default": "manual"
+ },
+ "query": {
+ "type": "string",
+ "nullable": true
}
},
"required": [
@@ -1058,6 +1070,18 @@
"icon": {
"type": "string"
},
+ "type": {
+ "type": "string",
+ "enum": [
+ "manual",
+ "smart"
+ ],
+ "default": "manual"
+ },
+ "query": {
+ "type": "string",
+ "minLength": 1
+ },
"parentId": {
"type": "string",
"nullable": true
@@ -1171,6 +1195,10 @@
"parentId": {
"type": "string",
"nullable": true
+ },
+ "query": {
+ "type": "string",
+ "minLength": 1
}
}
}
diff --git a/packages/open-api/lib/lists.ts b/packages/open-api/lib/lists.ts
index 07c9fde9..4b728a1e 100644
--- a/packages/open-api/lib/lists.ts
+++ b/packages/open-api/lib/lists.ts
@@ -6,6 +6,7 @@ import { z } from "zod";
import {
zBookmarkListSchema,
+ zEditBookmarkListSchema,
zNewBookmarkListSchema,
} from "@hoarder/shared/types/lists";
@@ -132,7 +133,7 @@ registry.registerPath({
"The data to update. Only the fields you want to update need to be provided.",
content: {
"application/json": {
- schema: zNewBookmarkListSchema.partial(),
+ schema: zEditBookmarkListSchema.omit({ listId: true }),
},
},
},