Andreas Korth

Results 13 issues of Andreas Korth

### Steps to reproduce `feathers generate app` `touch src/test.ts` ```javascript // src/test.js import io from 'socket.io-client' import socketio from '@feathersjs/socketio-client' import authentication from '@feathersjs/authentication-client' import { createClient } from './client'...

Hi, I just employed a hack to use a validation library other than **class-validator**. Since `validateModels: true` will import class-validator dynamically, I just fed it a fake package of the...

enhancement
help wanted

I'm using `JSONAPI::Serializable::Resource::KeyFormat` for camel-cased keys. However this breaks inclusion of relationships when the relationship's name is subject to key transformation: ```ruby # app/resources/contact_resource.rb class ContactResource < JSONAPI::Serializable::Resource extend JSONAPI::Serializable::Resource::KeyFormat...

Still considered beta with last commit about a year ago certainly doesn't look like it. Any pointers to alternative approaches / best practices? Thanks!

In order to DRY up the configuration, consider using the default schema location defined in `package.json` for `prisma.schema` unless `zenstack.prisma` is specified. ### Currently **package.json** ```json { "zenstack": { "schema":...

Currently the authenticated User isn't exposed by the API directly but has to be retrieved separately using `ext::auth::Identity`. EdgeDB doesn't have the notion of a User, it knows only identities...

The `generateQueryBuilder` method runs `@edgedb/generate edgeql-js` but if the generated folder doesn't exist will prompt the user to add it to `.gitignore`. Since by default generation is quiet, server startup...

When the `auth/identity` handler is invoked with an invalid token, it'll throw an error when trying to fetch the current user. This sends the application in an infinite loop trying...

`KeyFormat` breaks included relationships when the relationship's name is subject to key transformation. ```ruby class Resource < JSONAPI::Serializable::Resource extend JSONAPI::Serializable::Resource::KeyFormat key_format ->(key) { key.to_s.camelize(:lower) } end ``` ```ruby class ContactResource...

For node projects and especially for those of us who want to keep the number dotfiles low, it'd be lovely if the config could alternatively be specified in `package.json`. As...