@letsping/adapters 0.1.3 → 0.1.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.
- package/README.md +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -81,5 +81,6 @@ Make sure the following compatible versions are installed in your project:
|
|
|
81
81
|
- The `apiKey` is passed per-tool. For most applications you will use the same key across tools.
|
|
82
82
|
- The `schema` (Zod) is used both for type safety and to generate an editable form in the LetsPing dashboard.
|
|
83
83
|
- If the human modifies values in the form, the resolved payload will contain the updated values (`patched_payload` in the LetsPing SDK response).
|
|
84
|
+
- **Important**: These adapters handle the *execution pause* natively within standard framework constructs, but they do *not* automatically rehydrate the framework once the process exits. You must handle webhook delivery and instantiate your framework resumption logic manually.
|
|
84
85
|
|
|
85
86
|
For full LetsPing API documentation, see: https://letsping.co/docs
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@letsping/adapters",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "LetsPing Framework Adapters for Vercel AI SDK and LangChain",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"zod": ">=3.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@letsping/sdk": "0.1.
|
|
31
|
+
"@letsping/sdk": "0.1.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"tsup": "^8.0.0",
|