seam 0.1.0 → 0.3.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 +9 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  JavaScript SDK for the Seam API written in TypeScript.
7
7
 
8
- _This is a preview of the next major version of the Seam SDK.
8
+ _This repository hosts the next major version of the Seam JavaScript SDK.
9
9
  This SDK is available for early preview.
10
10
  It will eventually replace the [seamapi](https://github.com/seamapi/javascript/) package._
11
11
 
@@ -18,11 +18,17 @@ Please refer to the official [Seam Docs] to get started.
18
18
  The SDK is fully tree-shakeable
19
19
  and optimized for use in both client and server applications.
20
20
 
21
- The package does not contain any code, it re-exports from a core set of Seam modules:
21
+ The repository does not contain the SDK code.
22
+ Instead, it re-exports from a core set of Seam modules.
23
+
24
+ _While this SDK is still in preview,
25
+ please refer to the individual README files in these repositories for
26
+ additional usage documentation not yet available in the primary Seam documentation.
27
+ See [this issue for a draft migration guide](https://github.com/seamapi/javascript-next/issues/1) from the seamapi package._
22
28
 
23
- - [@seamapi/types]: TypeScript types for the Seam API.
24
29
  - [@seamapi/http]: JavaScript HTTP client for the Seam API written in TypeScript.
25
30
  - [@seamapi/webhook]: Webhook SDK for the Seam API written in TypeScript.
31
+ - [@seamapi/types]: TypeScript types for the Seam API.
26
32
 
27
33
  [Seam]: https://www.seam.co/
28
34
  [Seam Docs]: https://docs.seam.co/latest/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seam",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "JavaScript SDK for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -59,6 +59,12 @@
59
59
  "node": ">=18.12.0",
60
60
  "npm": ">= 9.0.0"
61
61
  },
62
+ "dependencies": {
63
+ "@seamapi/http": "0.14.0",
64
+ "@seamapi/types": "1.85.1",
65
+ "@seamapi/webhook": "0.1.0",
66
+ "seamapi-types": "1.32.0"
67
+ },
62
68
  "devDependencies": {
63
69
  "@types/node": "^20.8.10",
64
70
  "del-cli": "^5.0.0",
@@ -73,11 +79,5 @@
73
79
  "tsup": "^8.0.1",
74
80
  "tsx": "^4.6.2",
75
81
  "typescript": "^5.1.0"
76
- },
77
- "dependencies": {
78
- "@seamapi/http": "^0.14.0",
79
- "@seamapi/types": "^1.81.0",
80
- "@seamapi/webhook": "^0.1.0",
81
- "seamapi-types": "^1.32.0"
82
82
  }
83
83
  }