1.13.0

(feat): Add support for multipartform requests with file and non-file parameters. This is useful when you want to send a file along with other form data in a single request.

For example, you can use the following code to upload a file with a description and some metadata:

1await client.UploadAsync(
2 new UploadRequest
3 {
4 File = new FileParameter { Stream = fileStream, FileName = "file.txt" },
5 Description = "This is a test file",
6 Meta = new Meta {
7 Key1 = "value1",
8 Key2 = "value2"
9 }
10 }
11);