[PR #1329] [MERGED] chore: move sdk-js to langgraphjs #1383

Closed
opened 2026-02-15 20:15:32 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1329
Author: @dqbd
Created: 7/2/2025
Status: Merged
Merged: 7/2/2025
Merged by: @dqbd

Base: mainHead: dqbd/sdk-js


📝 Commits (10+)

📊 Changes

44 files changed (+8842 additions, -30 deletions)

View changed files

📝 .github/workflows/ci.yml (+1 -1)
📝 libs/langgraph/package.json (+1 -0)
libs/sdk-validation/README.md (+9 -0)
libs/sdk-validation/package.json (+36 -0)
libs/sdk-validation/src/tests/stream.test.tsx (+447 -0)
libs/sdk-validation/tsconfig.json (+24 -0)
libs/sdk-validation/vitest.config.ts (+11 -0)
libs/sdk/.gitignore (+28 -0)
libs/sdk/.prettierrc (+1 -0)
libs/sdk/LICENSE (+21 -0)
libs/sdk/README.md (+64 -0)
libs/sdk/jest.config.js (+17 -0)
libs/sdk/langchain.config.js (+27 -0)
libs/sdk/package.json (+134 -0)
libs/sdk/src/auth/error.ts (+80 -0)
libs/sdk/src/auth/index.ts (+46 -0)
libs/sdk/src/auth/types.ts (+411 -0)
libs/sdk/src/client.ts (+1699 -0)
libs/sdk/src/index.ts (+56 -0)
libs/sdk/src/react-ui/client.tsx (+279 -0)

...and 24 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/1329 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 7/2/2025 **Status:** ✅ Merged **Merged:** 7/2/2025 **Merged by:** [@dqbd](https://github.com/dqbd) **Base:** `main` ← **Head:** `dqbd/sdk-js` --- ### 📝 Commits (10+) - [`48734e1`](https://github.com/langchain-ai/langgraphjs/commit/48734e134d4d4655dfeb68c9ed92caf72cec8210) Add submit / stop - [`01202b9`](https://github.com/langchain-ai/langgraphjs/commit/01202b9999a46b91458f99fdcd0a11186a0bdafd) Make sure we clear when switching threads - [`b45e18b`](https://github.com/langchain-ai/langgraphjs/commit/b45e18b45a27c98fcad0f6608c5de1f9f259b949) Update peer dependencies - [`211ae2c`](https://github.com/langchain-ai/langgraphjs/commit/211ae2c0eebaed819f71abb72e588dc2ee2f567f) Fix typo - [`cf920ca`](https://github.com/langchain-ai/langgraphjs/commit/cf920cae39064ea0b343ced962c4bde085af37c8) Branching - [`88ebbc3`](https://github.com/langchain-ai/langgraphjs/commit/88ebbc3cb182a9561cf0b2e79a53627995b0e16f) Allow omitting client - [`6bff6a2`](https://github.com/langchain-ai/langgraphjs/commit/6bff6a2dc7f0b1baa56911bdfd6ef8edb95f9d80) fix(sdk-js): improve SSE parsing performance by 10x - [`abc2eea`](https://github.com/langchain-ai/langgraphjs/commit/abc2eea57d8d027b0cf96142d14cd1274ba1b5f6) Bump to 0.0.39 - [`7642c63`](https://github.com/langchain-ai/langgraphjs/commit/7642c6363f538023d128b59dd6a0398687050436) Make event listeners a callback - [`7bb383c`](https://github.com/langchain-ai/langgraphjs/commit/7bb383cdd718030a76fc098b295b799f3f4d1a7f) Update deps ### 📊 Changes **44 files changed** (+8842 additions, -30 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+1 -1) 📝 `libs/langgraph/package.json` (+1 -0) ➕ `libs/sdk-validation/README.md` (+9 -0) ➕ `libs/sdk-validation/package.json` (+36 -0) ➕ `libs/sdk-validation/src/tests/stream.test.tsx` (+447 -0) ➕ `libs/sdk-validation/tsconfig.json` (+24 -0) ➕ `libs/sdk-validation/vitest.config.ts` (+11 -0) ➕ `libs/sdk/.gitignore` (+28 -0) ➕ `libs/sdk/.prettierrc` (+1 -0) ➕ `libs/sdk/LICENSE` (+21 -0) ➕ `libs/sdk/README.md` (+64 -0) ➕ `libs/sdk/jest.config.js` (+17 -0) ➕ `libs/sdk/langchain.config.js` (+27 -0) ➕ `libs/sdk/package.json` (+134 -0) ➕ `libs/sdk/src/auth/error.ts` (+80 -0) ➕ `libs/sdk/src/auth/index.ts` (+46 -0) ➕ `libs/sdk/src/auth/types.ts` (+411 -0) ➕ `libs/sdk/src/client.ts` (+1699 -0) ➕ `libs/sdk/src/index.ts` (+56 -0) ➕ `libs/sdk/src/react-ui/client.tsx` (+279 -0) _...and 24 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 20:15:32 -05:00
yindo closed this issue 2026-02-15 20:15:32 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#1383