@langchain/langgraph-sdk 0.0.1-rc.4 → 0.0.1-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/types.d.mts +5 -0
  2. package/package.json +1 -1
package/dist/types.d.mts CHANGED
@@ -37,6 +37,11 @@ export interface RunsStreamPayload extends RunsInvokePayload {
37
37
  * afterwards using the `client.runs.listEvents()` method.
38
38
  */
39
39
  streamMode?: StreamMode | Array<StreamMode>;
40
+ /**
41
+ * Pass one or more feedbackKeys if you want to request short-lived signed URLs
42
+ * for submitting feedback to LangSmith with this key for this run.
43
+ */
44
+ feedbackKeys?: string[];
40
45
  }
41
46
  export interface RunsCreatePayload extends RunsInvokePayload {
42
47
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.1-rc.4",
3
+ "version": "0.0.1-rc.5",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@1.22.19",