@opensea/cli 0.4.1 → 1.0.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.
- package/README.md +12 -1
- package/dist/cli.js +1484 -72
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +508 -183
- package/dist/index.js +1276 -36
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -167,8 +167,9 @@ console.log(formatToon(data))
|
|
|
167
167
|
## Exit Codes
|
|
168
168
|
|
|
169
169
|
- `0` - Success
|
|
170
|
-
- `1` - API error
|
|
170
|
+
- `1` - API error (non-429)
|
|
171
171
|
- `2` - Authentication error
|
|
172
|
+
- `3` - Rate limited (HTTP 429)
|
|
172
173
|
|
|
173
174
|
## Requirements
|
|
174
175
|
|
|
@@ -197,6 +198,16 @@ npm run type-check # TypeScript type checking
|
|
|
197
198
|
| [Pagination](docs/pagination.md) | Cursor-based pagination patterns for CLI and SDK |
|
|
198
199
|
| [Event Types](docs/events.md) | Event type values and filtering |
|
|
199
200
|
|
|
201
|
+
## Contributing
|
|
202
|
+
|
|
203
|
+
This repository is a read-only mirror synced from an internal monorepo. We can't merge pull requests directly, but we review every one — if your fix or idea is solid, we'll recreate it internally and it will ship in the next release.
|
|
204
|
+
|
|
205
|
+
Issues and bug reports are the best way to contribute. See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
|
|
206
|
+
|
|
207
|
+
## License
|
|
208
|
+
|
|
209
|
+
[MIT](LICENSE)
|
|
210
|
+
|
|
200
211
|
[version-badge]: https://img.shields.io/github/package-json/v/ProjectOpenSea/opensea-cli
|
|
201
212
|
[version-link]: https://github.com/ProjectOpenSea/opensea-cli/releases
|
|
202
213
|
[npm-badge]: https://img.shields.io/npm/v/@opensea/cli?color=red
|