Skip to content

Commit 9d7bc27

Browse files
committed
squash merge degroff/linking-device-grant to master
1 parent a64da78 commit 9d7bc27

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
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.29.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.28.1",
3+
"version": "1.29.0",
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6339,6 +6339,7 @@ export enum IdentityProviderLinkingStrategy {
63396339
* @author Daniel DeGroff
63406340
*/
63416341
export interface IdentityProviderLinkRequest {
6342+
displayName?: string;
63426343
identityProviderId?: UUID;
63436344
identityProviderUserId?: string;
63446345
pendingIdPLinkId?: string;
@@ -7468,7 +7469,7 @@ export interface PendingIdPLink {
74687469
email?: string;
74697470
identityProviderId?: UUID;
74707471
identityProviderName?: string;
7471-
identityProviderType?: string;
7472+
identityProviderType?: IdentityProviderType;
74727473
identityProviderUserId?: string;
74737474
user?: User;
74747475
username?: string;

0 commit comments

Comments
 (0)