Linus

Results 25 issues of Linus

First off, thanks for this awesome library! I want to pass the following dictionary as get parameter: ["param1": 1, "param2": ["a"]] When passing only non-array values, such as `["param1": 1]`,...

this also fixes #295

I'm using the following code to upload an image in base64 format and I would like to track that upload's progress: var r = URLRequest(url: URL(string: apiURL+"images")!) r.httpMethod = "POST"...

Hey, I'm trying to upload a file as follows: guard let imageData = UIImageJPEGRepresentation(image) else { return } let headers = ["Authorization": Data.accessToken, "Content-Type": "multipart/form-data", "Accept": "application/vnd.api+json"] let parameters: [String:...

I cannot send emails to *some* email addresses. They are rejected with the following message: > Syntax error - line too long and some more info from here: >Action: failed...

Hey there, I noticed that when using the map styles, duplicate street labels are added to the map, cluttering it. Compare those two screenshots: 1. without the styling 2. with...

I'm trying to make a query with pagination, filtering and sorting. My query looks like this: ```Swift try Space.query(on: req).filter(\.isFeatured == true).sort(\.updatedAt, .descending) .paginate(for: req).flatMap { (paginated) in try paginated.data.relationals(req:...

**Motivation Behind Feature** Sometimes, a frontend might want to get all items on a single page. **Feature Description** I'd like to pass a special value for the `per` parameter. This...

enhancement

Example usage with a pdf file from the `Public` folder: let directory = DirectoryConfig.detect() let configDir = "Public/storage/pdf" let pdfData = try Data(contentsOf: URL(fileURLWithPath: directory.workDir) .appendingPathComponent(configDir, isDirectory: true) .appendingPathComponent(some.pdf, isDirectory:...

I cannot send emails to *some* email addresses. They are rejected with the following message: > Syntax error - line too long and some more info from here: >Action: failed...