Aleksandar

Results 28 comments of Aleksandar

I think you're right. Dio changed their API and I didn't migrate properly in every place. Can you test if it works and send a PR?

I've published 0.7.1. Can you check if it fixes the issue?

Please reopen if issue is not fixed

It should return int for file size based on [Directus docs](https://docs.directus.io/reference/files/#the-file-object=) I do not want to add another dependency for mime type, it's out of the scope of this package....

Should be fixed, please try latest version. Reopen if exception still exists

That's a cool idea. But we don't have access to SDK in `DirectusFile`. User would either have to pass sdk or access token as a named param. Something like: `downloadUrl(String...

I do not think there is a way to do it currently. Does Directus have support to adding custom fields in system tables?

For 3 option, it is possible to customize converter with `sdk.users.converter = MyConverter();`. Only make sure that return value extends `DirectusUser` or Dart will throw an exception. Hi, I played...

Can you point me to directus docs where it shows how to do full text search, or how the url should look like

With version 0.9.3, you can pass any filter. Please reopen if there is any issue ```dart final res = await sdk.items('contacts').readMany( filters: Filters( { 'id': 1, 'any_value': {'deep': 'test'} },...