File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @uppy/golden-retriever " : patch
3
+ " @uppy/aws-s3 " : patch
4
+ " @uppy/core " : patch
5
+ ---
6
+
7
+ added missing exports.
Original file line number Diff line number Diff line change @@ -1006,3 +1006,11 @@ export type uploadPartBytes = (typeof AwsS3Multipart<
1006
1006
any ,
1007
1007
any
1008
1008
> ) [ 'uploadPartBytes' ]
1009
+
1010
+ export type {
1011
+ MultipartUploadResult ,
1012
+ MultipartUploadResultWithSignal ,
1013
+ UploadPartBytesResult ,
1014
+ UploadResult ,
1015
+ UploadResultWithSignal ,
1016
+ } from './utils.js'
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export { default as BasePlugin } from './BasePlugin.js'
10
10
export { default as EventManager } from './EventManager.js'
11
11
export { debugLogger } from './loggers.js'
12
12
export type { Restrictions , ValidateableFile } from './Restricter.js'
13
+ export { RestrictionError } from './Restricter.js'
13
14
export type { PluginTarget , UIPluginOptions } from './UIPlugin.js'
14
15
export { default as UIPlugin } from './UIPlugin.js'
15
16
export type {
Original file line number Diff line number Diff line change @@ -438,3 +438,5 @@ export default class GoldenRetriever<
438
438
this . uppy . off ( 'complete' , this . handleComplete )
439
439
}
440
440
}
441
+
442
+ export { default as MetaDataStore } from './MetaDataStore.js'
You can’t perform that action at this time.
0 commit comments