Skip to content

Commit 5d5de7f

Browse files
razor-xseambot
andauthored
fix: Add instructions for peerDependencies (#27)
* Add instructions for peerDependencies * ci: Format code * ci: Generate code * Move section down * Move section up * Fix typo * Collapse sections --------- Co-authored-by: Seam Bot <[email protected]>
1 parent f613414 commit 5d5de7f

File tree

6 files changed

+126
-14
lines changed

6 files changed

+126
-14
lines changed

README.md

+36
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,17 @@ The underlying HTTP client is [Axios].
2222

2323
[Seam]: https://www.seam.co/
2424
[Seam Docs]: https://docs.seam.co/latest/
25+
[seamapi]: https://www.npmjs.com/package/seamapi
2526
[@seamapi/types]: https://github.com/seamapi/types/
2627
[Axios]: https://axios-http.com/
2728

2829
## Installation
2930

31+
_This is a low-level package meant for applications and libraries with particular dependency requirements.
32+
Before using this package, ensure you understand the installation and updating instructions.
33+
This SDK is entirely contained in the [seamapi] package. Seam recommends using that package instead
34+
for simpler dependency management._
35+
3036
Add this as a dependency to your project using [npm] with
3137

3238
```
@@ -35,6 +41,36 @@ $ npm install @seamapi/http
3541

3642
[npm]: https://www.npmjs.com/
3743

44+
### Optional Peer Dependencies for TypeScript
45+
46+
This package has optional peer dependencies for TypeScript users.
47+
Recent versions of npm will automatically install peer dependencies by default.
48+
For those users, no additional steps are necessary for full TypeScript support,
49+
however users should still explicitly install the latest types (see the next section).
50+
51+
Other package managers require peer dependencies to be added manually.
52+
Refer to any warnings generated by your package manager
53+
about missing peer dependencies and install them as needed.
54+
Refer to the next section for keeping the types updated.
55+
56+
#### Keeping up with the latest types
57+
58+
This package depends on [@seamapi/types] for the latest TypeScript types.
59+
New versions of this package are generally not released when new types are published.
60+
Unless your project frequently runs a blanket `npm update`,
61+
the types will become outdated with the Seam API over time.
62+
Thus, users of this package should explicitly install the types
63+
64+
```
65+
$ npm install @seamapi/types
66+
```
67+
68+
and update them when consuming new API features:
69+
70+
```
71+
$ npm install @seamapi/http@latest
72+
```
73+
3874
## Usage
3975

4076
```ts

package-lock.json

+8-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"npm": ">= 8.1.0"
8585
},
8686
"peerDependencies": {
87-
"@seamapi/types": "^1.0.0",
87+
"@seamapi/types": "^1.58.0",
8888
"type-fest": "^4.0.0"
8989
},
9090
"peerDependenciesMeta": {
@@ -98,11 +98,11 @@
9898
"dependencies": {
9999
"axios": "^1.5.0",
100100
"axios-better-stacktrace": "^2.1.5",
101-
"axios-retry": "^3.8.1",
102-
"@seamapi/types": "^1.44.1"
101+
"axios-retry": "^3.8.1"
103102
},
104103
"devDependencies": {
105104
"@seamapi/fake-seam-connect": "^1.43.0",
105+
"@seamapi/types": "^1.58.0",
106106
"@types/eslint": "^8.44.2",
107107
"@types/node": "^18.11.18",
108108
"ava": "^5.0.1",

src/lib/seam/connect/routes/acs-credentials.ts

+33-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/seam/connect/routes/user-identities.ts

+26-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/seam/connect/routes/workspaces.ts

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)