Releases: box/box-node-sdk
v10.4.0
v4.4.0
v10.3.0
v4.3.0
Bug Fixes
- boxsdkgen: add taxonomy to Metadata Field (read) definition (box/box-openapi#572) (#1274) (3850e6b)
- boxsdkgen: fix
RetryAfterfunction when there's noRetry-Afterheader (box/box-codegen#903) (#1250) (cd917ee)
New Features and Enhancements
- boxsdkgen: add Metadata Taxonomies api (box/box-openapi#569) (#1256) (12d8c9f)
- boxsdkgen: text input validation for Box Sign (box/box-openapi#568) (#1253) (5d4f8bf)
- boxsdkgen: Treat
nullablefields as Optional (box/box-codegen#906) (#1259) (50d7080) - Reuse auth and network settings between legacy and sdk-gen (#1242) (320c35e)
v10.2.0
Bug Fixes
New Features and Enhancements
- Remove
confidence_scoreandinclude_confidence_scorefrom AI extract (box/box-openapi#567) (#1243) (55d6cd0) - support
includeConfidenceScoreandincludeConfidenceScorefields in AI extract structured (box/box-openapi#566) (#1228) (4bf9f46) - Support new sign request metadata (box/box-openapi#565) (#1226) (8dfc1cc)
- update error message on exception (box/box-codegen#896) (#1233) (b298afa)
v4.2.0
Bug Fixes
- boxsdkgen: Remove duplicated in union type (box/box-codegen#898) (#1241) (c56f808)
- bump
jsonwebtokendependency (#1244) (49692e3)
New Features and Enhancements
- boxsdkgen: Remove
confidence_scoreandinclude_confidence_scorefrom AI extract (box/box-openapi#567) (#1245) (3a74388) - boxsdkgen: support
includeConfidenceScoreandincludeConfidenceScorefields in AI extract structured (box/box-openapi#566) (#1227) (8e2b109) - boxsdkgen: Support new sign request metadata (box/box-openapi#565) (#1225) (955b6ba)
- boxsdkgen: update error message on exception (box/box-codegen#896) (#1232) (b140428)
v4.1.1
v10.1.0
Bug Fixes
- Fix error handling in TS (box/box-codegen#882) (#1180) (2b68145)
- Fix error propagation and empty fetch response handling in node SDK (box/box-codegen#883) (#1192) (5664231)
- Remove enum types from GET enterprise configurations endpoint (box/box-openapi#560) (#1155) (3ba01aa), closes box/box-openapi#558 box/box-openapi#558 box/box-openapi#559 box/box-codegen#869 box/box-codegen#871 box/box-codegen#872
New Features and Enhancements
v4.1.0
Bug Fixes
- boxsdkgen: Fix error handling in TS (box/box-codegen#882) (#1182) (c6c0f50)
- boxsdkgen: Remove enum types from GET enterprise configurations endpoint (box/box-openapi#560) (#1154) (5fd824b), closes box/box-codegen#869 box/box-openapi#559 box/box-codegen#872
New Features and Enhancements
v4.0.0
Introducing a new major version of Box Node SDK v4 that includes two modules — the manually maintained module and the generated module. The coexisting modules provide easier access to the latest Box API features and support gradual migration to the standalone generated module.
Breaking Changes
-
With
v4of Box Node SDK, support for Node version below 18 has been dropped. While it may still be possible to download and use this SDK under Node below 18, we do not provide support for issues encountered on that version. -
We have updated the module export style in the manually maintained
box-node-sdkmodule to support the ES module and be more consistent with the generatedsdk-genmodule. Classes in the manual SDK are now exported as default exports from their respective files. When importing via CommonJS (require), use.defaultto access the class (e.g.,const BoxSDK = require('box-node-sdk').default;).
For more information about migrating to v4 visit v3 to v4 migration guide
What's New in v4
With this SDK version, alongside the existing manually maintained module, we’re introducing a new generated sdk-gen module under box-node-sdk/sdk-gen import path, which gives you access to:
-
Full API Support — Complete coverage of the Box API ecosystem, giving you access to all the latest features and functionalities to build feature-rich applications.
-
Rapid API Updates — Our new auto-generation approach enables Box API additions within days, ensuring you can leverage the most up-to-date features without delay.
-
Embedded Documentation — All objects and parameters are documented directly in the SDK source code, keeping essential information in one place.
-
Enhanced Convenience Methods — New methods for authentication, chunk uploads, automatic retries, retry strategy, and more.
Important Notes
This version allows you to gradually migrate your codebase to the sdk-gen module. The key differences between the modules are documented in the module migration guide.
Ultimately, we recommend to migrate to v10 which includes only the generated sdk-gen module. To migrate from v4 to v10 follow this migration guide.
For more information, see the SDK versioning strategy document. Follow developer changelog for future updates.