seam 0.60.0 → 0.62.0

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 +2 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -438,7 +438,8 @@ const devices = await request.execute()
438
438
  First, create a webhook using the Seam API or Seam Console
439
439
  and obtain a Seam webhook secret.
440
440
 
441
- _This example is for [Express], see the [Svix docs for more examples in specific frameworks](https://docs.svix.com/receiving/verifying-payloads/how)._
441
+ > [!TIP]
442
+ > This example is for [Express], see the [Svix docs for more examples in specific frameworks](https://docs.svix.com/receiving/verifying-payloads/how).
442
443
 
443
444
  ```js
444
445
  import { SeamWebhook } from 'seam'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seam",
3
- "version": "0.60.0",
3
+ "version": "0.62.0",
4
4
  "description": "JavaScript SDK for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -64,9 +64,9 @@
64
64
  "npm": ">= 9.0.0"
65
65
  },
66
66
  "dependencies": {
67
- "@seamapi/http": "0.28.0",
67
+ "@seamapi/http": "1.0.0-rc.0",
68
68
  "@seamapi/types": "1.166.0",
69
- "@seamapi/webhook": "1.0.0-rc.0",
69
+ "@seamapi/webhook": "1.0.0-rc.1",
70
70
  "seamapi-types": "1.42.0",
71
71
  "zod": "^3.21.4"
72
72
  },