add missing exports (#5952)

fixes #5940
This commit is contained in:
Prakash 2025-09-04 22:43:50 +05:30 committed by GitHub
parent f997d8b401
commit 4b6a76cbf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,7 @@
---
"@uppy/golden-retriever": patch
"@uppy/aws-s3": patch
"@uppy/core": patch
---
added missing exports.

View file

@ -1006,3 +1006,11 @@ export type uploadPartBytes = (typeof AwsS3Multipart<
any,
any
>)['uploadPartBytes']
export type {
MultipartUploadResult,
MultipartUploadResultWithSignal,
UploadPartBytesResult,
UploadResult,
UploadResultWithSignal,
} from './utils.js'

View file

@ -10,6 +10,7 @@ export { default as BasePlugin } from './BasePlugin.js'
export { default as EventManager } from './EventManager.js'
export { debugLogger } from './loggers.js'
export type { Restrictions, ValidateableFile } from './Restricter.js'
export { RestrictionError } from './Restricter.js'
export type { PluginTarget, UIPluginOptions } from './UIPlugin.js'
export { default as UIPlugin } from './UIPlugin.js'
export type {

View file

@ -438,3 +438,5 @@ export default class GoldenRetriever<
this.uppy.off('complete', this.handleComplete)
}
}
export { default as MetaDataStore } from './MetaDataStore.js'