mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-27 12:04:58 +02:00
fix(sdk-js): Release 0.0.14
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@langchain/langgraph-sdk",
|
||||
"version": "0.0.13",
|
||||
"version": "0.0.14",
|
||||
"description": "Client library for interacting with the LangGraph API",
|
||||
"type": "module",
|
||||
"packageManager": "yarn@1.22.19",
|
||||
|
||||
@@ -1050,11 +1050,14 @@ export class StoreClient extends BaseClient {
|
||||
const response = await this.fetch<APIItem>("/store/items", {
|
||||
params: { namespace: namespace.join("."), key },
|
||||
});
|
||||
return {
|
||||
...response,
|
||||
createdAt: response.created_at,
|
||||
updatedAt: response.updated_at,
|
||||
};
|
||||
|
||||
return response
|
||||
? {
|
||||
...response,
|
||||
createdAt: response.created_at,
|
||||
updatedAt: response.updated_at,
|
||||
}
|
||||
: null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user