Skip to content

Commit 8a02e99

Browse files
committed
fix(auth): make endpointUrl optional for SsoConnections
The endpointUrl is only really valuable for IAMConnections, but we still add it Optional in SsoConnections to keep TypeScript consistent.
1 parent 7b15b7f commit 8a02e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/auth/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function createSsoProfile(
111111
export interface SsoConnection extends SsoProfile {
112112
readonly id: string
113113
readonly label: string
114-
readonly endpointUrl: string | undefined
114+
readonly endpointUrl?: string | undefined
115115

116116
/**
117117
* Retrieves a bearer token, refreshing or re-authenticating as-needed.

0 commit comments

Comments
 (0)