Skip to content

Commit

Permalink
Point to latest stone and rerun codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Feb 14, 2024
1 parent adb67a7 commit 1b58e7a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ extension DropboxAppBaseRequestBox {
switch self {
case .getThumbnailV2(let swift):
return DBXFilesGetThumbnailDownloadRequestFileV2(swift: swift)
default:
fatalError("For Obj-C compatibility, add this route to the Objective-C compatibility module allow-list")
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ extension DropboxBaseRequestBox {
return DBXPaperDocsUpdateUploadRequest(swift: swift)
case .getSharedLinkFile(let swift):
return DBXSharingGetSharedLinkFileDownloadRequestFile(swift: swift)
default:
fatalError("For Obj-C compatibility, add this route to the Objective-C compatibility module allow-list")
}
}
}
2 changes: 1 addition & 1 deletion stone

0 comments on commit 1b58e7a

Please sign in to comment.