Skip to content

Commit 9a16452

Browse files
committed
squash merge authenticators/connectors/advanced-registration to master
1 parent 42ce39b commit 9a16452

File tree

5 files changed

+515
-14
lines changed

5 files changed

+515
-14
lines changed

build.savant

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
savantVersion = "1.0.0"
1717

18-
project(group: "io.fusionauth", name: "fusionauth-typescript-client", version: "1.17.5", licenses: ["ApacheV2_0"]) {
18+
project(group: "io.fusionauth", name: "fusionauth-typescript-client", version: "1.18.0", licenses: ["ApacheV2_0"]) {
1919
workflow {
2020
standard()
2121
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fusionauth/typescript-client",
3-
"version": "1.17.5",
3+
"version": "1.18.0",
44
"description": "A typescript implementation of the FusionAuth client.",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

src/DefaultRESTClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, FusionAuth, All Rights Reserved
2+
* Copyright (c) 2019-2020, FusionAuth, All Rights Reserved
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -83,7 +83,7 @@ export default class DefaultRESTClient<RT, ERT> implements IRESTClient<RT, ERT>
8383
*/
8484
withFormData(body: URLSearchParams): DefaultRESTClient<RT, ERT> {
8585
const body2 = new URLSearchParams();
86-
if (body) {
86+
if (body) {
8787
body.forEach((value, name, searchParams) => {
8888
if (value && value.length > 0 && value != "null" && value != "undefined") {
8989
body2.set(name,value);

0 commit comments

Comments
 (0)