Skip to content

Commit 3b2126f

Browse files
committed
squash merge degroff/device-link-update to master
1 parent 84d9cda commit 3b2126f

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
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.28.1", licenses: ["ApacheV2_0"]) {
18+
project(group: "io.fusionauth", name: "fusionauth-typescript-client", version: "1.28.2", 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.28.1",
3+
"version": "1.28.2",
44
"description": "A typescript implementation of the FusionAuth client.",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

src/FusionAuthClient.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6371,6 +6371,7 @@ export interface IdentityProviderLoginRequest extends BaseLoginRequest {
63716371
data?: Record<string, string>;
63726372
encodedJWT?: string;
63736373
identityProviderId?: UUID;
6374+
noLink?: boolean;
63746375
}
63756376

63766377
/**
@@ -8492,6 +8493,12 @@ export interface UIConfiguration {
84928493
export interface UniqueUsernameConfiguration extends Enableable {
84938494
numberOfDigits?: number;
84948495
separator?: string;
8496+
strategy?: UniqueUsernameStrategy;
8497+
}
8498+
8499+
export enum UniqueUsernameStrategy {
8500+
Always = "Always",
8501+
OnCollision = "OnCollision"
84958502
}
84968503

84978504
/**

0 commit comments

Comments
 (0)