Skip to content

Commit

Permalink
Merge pull request #166 from internxt/feat/edit-DriveFileData-interface
Browse files Browse the repository at this point in the history
[_]:feat/edit DriveFileData interface
  • Loading branch information
rafijv authored Sep 6, 2023
2 parents 92441ce + 3ff7a64 commit 00cf47d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@internxt/sdk",
"version": "1.4.44",
"version": "1.4.45",
"description": "An sdk for interacting with Internxt's services",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions src/drive/storage/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export interface DriveFileData {
size: number;
type: string;
updatedAt: string;
status: string;
thumbnails: Array<Thumbnail>;
currentThumbnail: Thumbnail | null;
}
Expand Down
1 change: 1 addition & 0 deletions test/drive/storage/mothers/folderContentResponse.mother.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export function randomFolderContentResponse(folderCount: number, fileCount: numb
size: 0,
type: '',
updatedAt: '',
status: '',
thumbnails: [],
currentThumbnail: null,
};
Expand Down

0 comments on commit 00cf47d

Please sign in to comment.