From b476e91918706e2534916446889d5fa8da866f05 Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sun, 20 Oct 2024 18:32:36 +0000 Subject: api: Add tag ids and support variable baseURL --- packages/open-api/lib/bookmarks.ts | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'packages/open-api/lib/bookmarks.ts') diff --git a/packages/open-api/lib/bookmarks.ts b/packages/open-api/lib/bookmarks.ts index 28ef7e0d..0ddf921e 100644 --- a/packages/open-api/lib/bookmarks.ts +++ b/packages/open-api/lib/bookmarks.ts @@ -38,6 +38,7 @@ registry.registerPath({ path: "/bookmarks", description: "Get all bookmarks", summary: "Get all bookmarks", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { query: z @@ -64,6 +65,7 @@ registry.registerPath({ path: "/bookmarks", description: "Create a new bookmark", summary: "Create a new bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { body: { @@ -91,6 +93,7 @@ registry.registerPath({ path: "/bookmarks/{bookmarkId}", description: "Get bookmark by its id", summary: "Get a single bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { params: z.object({ bookmarkId: BookmarkIdSchema }), @@ -112,6 +115,7 @@ registry.registerPath({ path: "/bookmarks/{bookmarkId}", description: "Delete bookmark by its id", summary: "Delete a bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { params: z.object({ bookmarkId: BookmarkIdSchema }), @@ -128,6 +132,7 @@ registry.registerPath({ path: "/bookmarks/{bookmarkId}", description: "Update bookmark by its id", summary: "Update a bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { params: z.object({ bookmarkId: BookmarkIdSchema }), @@ -158,6 +163,7 @@ registry.registerPath({ path: "/bookmarks/{bookmarkId}/tags", description: "Attach tags to a bookmark", summary: "Attach tags to a bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { params: z.object({ bookmarkId: BookmarkIdSchema }), @@ -187,6 +193,7 @@ registry.registerPath({ path: "/bookmarks/{bookmarkId}/tags", description: "Detach tags from a bookmark", summary: "Detach tags from a bookmark", + tags: ["Bookmarks"], security: [{ [BearerAuth.name]: [] }], request: { params: z.object({ bookmarkId: BookmarkIdSchema }), -- cgit v1.2.3-70-g09d2