diff options
| author | Mahesh Sanikommu <[email protected]> | 2025-08-21 08:40:44 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-21 08:40:44 -0700 |
| commit | 9e1e392a2b923c9d00e12c0fd27586d9d5b29daf (patch) | |
| tree | 8b10459076bdfb4a2882acd4cccdc3e7dea1e838 /packages/lib | |
| parent | Merge pull request #368 from supermemoryai/mahesh/doc-update (diff) | |
| download | supermemory-9e1e392a2b923c9d00e12c0fd27586d9d5b29daf.tar.xz supermemory-9e1e392a2b923c9d00e12c0fd27586d9d5b29daf.zip | |
Enhanced Text Editor and format fixes with biome (#371)
Diffstat (limited to 'packages/lib')
| -rw-r--r-- | packages/lib/api.ts | 16 | ||||
| -rw-r--r-- | packages/lib/package.json | 20 |
2 files changed, 18 insertions, 18 deletions
diff --git a/packages/lib/api.ts b/packages/lib/api.ts index 3aa00b34..ba609b16 100644 --- a/packages/lib/api.ts +++ b/packages/lib/api.ts @@ -146,14 +146,14 @@ export const apiSchema = createSchema({ input: DocumentsWithMemoriesQuerySchema, output: DocumentsWithMemoriesResponseSchema, }, - "@post/memories/documents/by-ids": { - input: z.object({ - ids: z.array(z.string()), - by: z.enum(["id", "customId"]).optional(), - containerTags: z.array(z.string()).optional(), - }), - output: DocumentsWithMemoriesResponseSchema, - }, + "@post/memories/documents/by-ids": { + input: z.object({ + ids: z.array(z.string()), + by: z.enum(["id", "customId"]).optional(), + containerTags: z.array(z.string()).optional(), + }), + output: DocumentsWithMemoriesResponseSchema, + }, "@post/memories/migrate-mcp": { input: MigrateMCPRequestSchema, output: MigrateMCPResponseSchema, diff --git a/packages/lib/package.json b/packages/lib/package.json index dcd84902..7b548984 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -1,12 +1,12 @@ { - "name": "@repo/lib", - "version": "0.0.0", - "private": true, - "type": "module", - "dependencies": { - "@ai-sdk/anthropic": "^1.2.12", - "@ai-sdk/google": "^1.2.22", - "@ai-sdk/groq": "^1.2.9", - "ai-gateway-provider": "^0.0.11" - } + "name": "@repo/lib", + "version": "0.0.0", + "private": true, + "type": "module", + "dependencies": { + "@ai-sdk/anthropic": "^1.2.12", + "@ai-sdk/google": "^1.2.22", + "@ai-sdk/groq": "^1.2.9", + "ai-gateway-provider": "^0.0.11" + } } |