Skip to content

Commit

Permalink
Merge branch 'next/release' into auth-bug-bash/enum-to-union-string
Browse files Browse the repository at this point in the history
  • Loading branch information
israx authored Sep 13, 2023
2 parents 4d97235 + 7c21708 commit 446be47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/storage/src/providers/s3/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export {
} from './options';
export {
DownloadDataOutput,
DownloadFileOutput,
GetUrlOutput,
UploadDataOutput,
ListOutputItem,
Expand Down
8 changes: 3 additions & 5 deletions packages/storage/src/providers/s3/types/outputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,17 @@ export interface Item extends StorageItem {

export type DownloadDataOutput = DownloadTask<StorageDownloadDataOutput<Item>>;

export type DownloadFileOutput = Item;

export type GetUrlOutput = StorageGetUrlOutput;

export type UploadDataOutput = UploadTask<Item>;

export type GetPropertiesOutput = Item;

export type ListOutputItem = Item;
export type ListOutputItem = Omit<StorageItem, 'metadata'>;

export type ListAllOutput = StorageListOutput<Item>;
export type ListAllOutput = StorageListOutput<ListOutputItem>;

export type ListPaginateOutput = StorageListOutput<Item> & {
export type ListPaginateOutput = StorageListOutput<ListOutputItem> & {
nextToken?: string;
};

Expand Down

0 comments on commit 446be47

Please sign in to comment.