@yak-io/nextjs 0.6.0 → 0.7.1

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/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -169,7 +169,7 @@ Pattern matching: `"/pricing"` is exact; `"/docs/*"` matches `/docs` and everyth
169
169
 
170
170
  ## Exports
171
171
 
172
- **`@yak-io/nextjs/client`** — re-exports all of `@yak-io/react` (`YakProvider`, `YakWidget`, `useYak`, `useYakToolEvent`, types) with Next-aware `YakProvider` defaults. Plus the `YakChatAPI` type (`= ReturnType<typeof useYak>`).
172
+ **`@yak-io/nextjs/client`** — re-exports all of `@yak-io/react` (`YakProvider`, `YakWidget`, `useYak`, `useYakToolEvent`, `createYakToolset`, `createYakServerAdapter`, types) with Next-aware `YakProvider` defaults. Plus the `YakChatAPI` type (`= ReturnType<typeof useYak>`).
173
173
 
174
174
  **`@yak-io/nextjs/server`:**
175
175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yak-io/nextjs",
3
- "version": "0.6.0",
3
+ "version": "0.7.1",
4
4
  "description": "Next.js SDK for embedding yak chatbot with route manifest generation",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -61,8 +61,8 @@
61
61
  "yak-nextjs": "./dist/cli/generate-manifest.js"
62
62
  },
63
63
  "dependencies": {
64
- "@yak-io/javascript": "0.9.0",
65
- "@yak-io/react": "0.10.0"
64
+ "@yak-io/javascript": "0.10.1",
65
+ "@yak-io/react": "0.11.1"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "next": "^14.0.0 || ^15.0.0 || ^16.0.0",