fusionauth-typescript-client
fusionauth-typescript-client copied to clipboard
A TypeScript client for FusionAuth
Any plans to release Sveltkit SDK or integrated example. thanks.
I had to create new PR to update the old #37 to the latest codebase sorry @ianwensink. I think this makes sense as most of the time in JS you...
https://github.com/FusionAuth/fusionauth-typescript-client/blob/beaa0c957ee18d6d06bba2e282f5c64715e7003f/src/FusionAuthClient.ts#L548-L560 According to the [official documentation](https://fusionauth.io/docs/apis/groups#add-users-to-a-group) this endpoint and method are to add one or more users to a group. Calling it `Create a member in a group` | `createGroupMembers`...
Hello, I would like to call the `patchUser` method and pass `null` as an argument to remove email address from the user object, however the TS client does not recognise...
## Summary There might be some sort of configuration step that I've overlooked, or some sort of misunderstanding in how things are supposed to work. I'm running into a strange...
We've been receiving a deprecation warning when using the lib: ``` (node:478) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to...
https://fusionauth.io/docs/lifecycle/authenticate-users/oauth/endpoints#complete-the-device-authorization-grant-request
Addresses #92
For the current version of `node-fetch` that the client uses, the default timeout is 0 (OS-dependent). We're noticing our service that only makes calls to fusion auth go to 100%...
Hello, It seems that SearchUsersByIds isn't implemented properly in the SDK, here is the implementation ``` searchUsersByIds(ids: Array): Promise { return this.start() .withUri('/api/user/search') .withParameter('ids', ids) .withMethod("GET") .go(); }f ``` When...