FusionAuth / fusionauth-typescript-client

A TypeScript client for FusionAuth
https://fusionauth.io
Apache License 2.0
60 stars 27 forks source link

'loginConfiguration' and 'lambdaConfiguration' not working when createApplication #56

Closed arminetemadi closed 2 years ago

arminetemadi commented 2 years ago

Hi, I'm trying to set some configurations (like 'loginConfiguration', 'lambdaConfiguration') when using createApplication, but none of them is working! in the response it shows that these configs are properly set, but actually its not! Im checking it with another 'get' request, and those are not set! this is my request body: { application: { name: "test", loginConfiguration: { allowTokenRefresh: true, generateRefreshTokens: true }, lambdaConfiguration: { accessTokenPopulateId: "some-id" } } } after creating all those configs will be with default values. If I try createApplication with Postman directly (POST /api/application/), it is working fine!