feathers
feathers copied to clipboard
The API and real-time application framework
Hi it would be helpful if you could also export the OAuthService type here: https://github.com/feathersjs/feathers/blob/09519fb1c454ea718747a09797bc6dfd3b6a79a3/packages/authentication-oauth/src/index.ts#L6
The `memory` package (and maybe other DB adapters?) should take a `selector` option. This service already takes a `matcher` and `sorter` option. See: https://github.com/feathersjs/feathers/blob/09519fb1c454ea718747a09797bc6dfd3b6a79a3/packages/memory/src/index.ts#L25 My main use case is not...
Hi, I added my own authentication strategy to feathers and have one problem with that. I authenticate my user in my strategy and try to get his rights from the...
### Steps to reproduce - Use the `@feathersjs/mongodb` adapter as a datasesource adapter for your project - Add the operator to the queryable fields in the TypeBox querySchema as follows...
https://github.com/feathersjs/feathers/blob/181fedb026e21f5978cc32cecfc16c176cf78e59/packages/schema/src/resolver.ts#L138 this line of code throws with this error: `Cannot convert undefined or null to object` which is unhelpful because I am not really understanding the cause of issue I...
See the node-config custom envrionment variable documentation for more information. ### Summary Fix typo 
This PR adds tests to `@feathersjs/adapter-tests`: 1. add test for id as number: The tests for `NotFound` (`.get`, `.update`, `.patch`) use a string as id. This does not work for...
### Steps to reproduce On a fresh feathersjs app, generate a new service using MongoDB then check out the typings of the `data` and `params` properties (possibly more) within context,...
### Issue Description I need to enable Apple SSO for my feathers.js app, so that user can log in using their Apple IDs. I am following https://gist.github.com/rxb/e596c66b03e3262f26d9ede5d7dbab81 article for enabling...