Skip to content

Commit 4b6a76c

Browse files
authored
add missing exports (#5952)
fixes #5940
1 parent f997d8b commit 4b6a76c

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

.changeset/dark-hands-jam.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@uppy/golden-retriever": patch
3+
"@uppy/aws-s3": patch
4+
"@uppy/core": patch
5+
---
6+
7+
added missing exports.

packages/@uppy/aws-s3/src/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,3 +1006,11 @@ export type uploadPartBytes = (typeof AwsS3Multipart<
10061006
any,
10071007
any
10081008
>)['uploadPartBytes']
1009+
1010+
export type {
1011+
MultipartUploadResult,
1012+
MultipartUploadResultWithSignal,
1013+
UploadPartBytesResult,
1014+
UploadResult,
1015+
UploadResultWithSignal,
1016+
} from './utils.js'

packages/@uppy/core/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export { default as BasePlugin } from './BasePlugin.js'
1010
export { default as EventManager } from './EventManager.js'
1111
export { debugLogger } from './loggers.js'
1212
export type { Restrictions, ValidateableFile } from './Restricter.js'
13+
export { RestrictionError } from './Restricter.js'
1314
export type { PluginTarget, UIPluginOptions } from './UIPlugin.js'
1415
export { default as UIPlugin } from './UIPlugin.js'
1516
export type {

packages/@uppy/golden-retriever/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,3 +438,5 @@ export default class GoldenRetriever<
438438
this.uppy.off('complete', this.handleComplete)
439439
}
440440
}
441+
442+
export { default as MetaDataStore } from './MetaDataStore.js'

0 commit comments

Comments
 (0)