openfigi-sdk 1.0.3 → 1.0.8
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 +25 -4
- package/dist/index.cjs +511 -397
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +223 -209
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +223 -209
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +464 -368
- package/dist/index.js.map +1 -1
- package/package.json +27 -14
package/README.md
CHANGED
|
@@ -209,11 +209,32 @@ To get an API key, sign up at [OpenFIGI.com](https://www.openfigi.com/).
|
|
|
209
209
|
|
|
210
210
|
This is a **community-driven project** and contributions are welcome! Please feel free to submit a Pull Request.
|
|
211
211
|
|
|
212
|
+
### Development Workflow
|
|
213
|
+
|
|
212
214
|
1. Fork the repository
|
|
213
215
|
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
|
|
214
|
-
3.
|
|
215
|
-
4.
|
|
216
|
-
|
|
216
|
+
3. Make your changes and add tests
|
|
217
|
+
4. Add a changeset to describe your changes:
|
|
218
|
+
```bash
|
|
219
|
+
bun run changeset
|
|
220
|
+
```
|
|
221
|
+
5. Commit your changes (`git commit -m 'feat: add some amazing feature'`)
|
|
222
|
+
6. Push to the branch (`git push origin feature/AmazingFeature`)
|
|
223
|
+
7. Open a Pull Request
|
|
224
|
+
|
|
225
|
+
### Release Process
|
|
226
|
+
|
|
227
|
+
This project uses [Changesets](https://github.com/changesets/changesets) for version management:
|
|
228
|
+
|
|
229
|
+
- **Adding changes**: Run `bun run changeset` to create a changeset describing your changes
|
|
230
|
+
- **Releasing**: When PRs with changesets are merged to main, a release PR is automatically created
|
|
231
|
+
- **Publishing**: Merging the release PR automatically publishes to npm and creates git tags
|
|
232
|
+
|
|
233
|
+
### Changeset Types
|
|
234
|
+
|
|
235
|
+
- `patch` - Bug fixes and small improvements
|
|
236
|
+
- `minor` - New features and enhancements
|
|
237
|
+
- `major` - Breaking changes
|
|
217
238
|
|
|
218
239
|
**Note**: This library is maintained by the community and is not affiliated with OpenFIGI or Bloomberg. For official API support, please contact OpenFIGI directly.
|
|
219
240
|
|
|
@@ -235,5 +256,5 @@ Built with modern tools and technologies:
|
|
|
235
256
|
- [TypeScript](https://www.typescriptlang.org/) - Type-safe JavaScript
|
|
236
257
|
- [Vitest](https://vitest.dev/) - Fast unit testing framework
|
|
237
258
|
- [Biome](https://biomejs.dev/) - Fast formatter and linter
|
|
238
|
-
- [
|
|
259
|
+
- [tsdown](https://tsdown.dev/) - TypeScript bundler
|
|
239
260
|
- [Zod](https://zod.dev/) - TypeScript-first validation
|