Use Promise-style APIs for storage operations
masterThe SDK's storage-related APIs support Promise-style asynchronous code. This includes classes such as BucketManager, FormUploader, and ResumeUploader.
While the original Callback-style APIs are still supported, it is highly recommended to switch to the Promise-style API to ensure future compatibility.
Note on Callbacks: If you continue using the Callback style, be aware that errors produced within the callbackFunc will no longer be thrown to the upper layers. You must handle all errors internally within the callbackFunc.