seam 1.230.2 → 1.232.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 +10 -1
  2. package/package.json +9 -10
package/README.md CHANGED
@@ -554,7 +554,16 @@ const devices = await request.execute()
554
554
 
555
555
  Every `seam` command is interactive and will prompt you for any missing
556
556
  required properties with helpful suggestions. To avoid automatic behavior,
557
- pass `-y`
557
+ pass `-y`.
558
+
559
+ To take a project from zero to a working Seam integration, run the
560
+ [Seam Wizard] from the project's root:
561
+
562
+ ```bash
563
+ seam wizard
564
+ ```
565
+
566
+ For API commands:
558
567
 
559
568
  ```bash
560
569
  # Login to Seam
package/package.json CHANGED
@@ -1,16 +1,14 @@
1
1
  {
2
2
  "name": "seam",
3
- "version": "1.230.2",
3
+ "version": "1.232.0",
4
4
  "description": "JavaScript SDK for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "import": {
11
- "types": "./index.d.ts",
12
- "default": "./index.js"
13
- }
10
+ "types": "./index.d.ts",
11
+ "default": "./index.js"
14
12
  }
15
13
  },
16
14
  "module": "index.js",
@@ -62,13 +60,13 @@
62
60
  "preformat": "eslint --fix ."
63
61
  },
64
62
  "engines": {
65
- "node": ">=22.11.0",
63
+ "node": ">=22.12.0",
66
64
  "npm": ">=10.0.0"
67
65
  },
68
66
  "devEngines": {
69
67
  "runtime": {
70
68
  "name": "node",
71
- "version": "^24.11.0 || ^22.11.0"
69
+ "version": "^24.11.0 || ^22.12.0"
72
70
  },
73
71
  "packageManager": {
74
72
  "name": "npm",
@@ -76,14 +74,15 @@
76
74
  }
77
75
  },
78
76
  "dependencies": {
79
- "@seamapi/cli": "^0.6.1",
80
- "@seamapi/http": "2.2.0",
81
- "@seamapi/webhook": "1.4.0"
77
+ "@seamapi/cli": "0.24.1",
78
+ "@seamapi/http": "2.3.1",
79
+ "@seamapi/webhook": "1.4.1"
82
80
  },
83
81
  "devDependencies": {
84
82
  "@types/node": "^24.10.9",
85
83
  "del-cli": "^7.0.0",
86
84
  "eslint": "^9.31.0",
85
+ "eslint-import-resolver-typescript": "^4.4.5",
87
86
  "eslint-plugin-import": "^2.32.0",
88
87
  "eslint-plugin-simple-import-sort": "^12.1.1",
89
88
  "eslint-plugin-unused-imports": "^4.1.4",