Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions stytch/src/main/kotlin/com/stytch/java/b2b/StytchB2BClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -80,61 +80,24 @@ public class StytchB2BClient
)
private val policyCache: PolicyCache = PolicyCache(RBACImpl(httpClient, coroutineScope), coroutineScope)

@JvmField
public val connectedApp: ConnectedApp = ConnectedAppImpl(httpClient, coroutineScope)

@JvmField
public val debug: Debug = DebugImpl(httpClient, coroutineScope)

@JvmField
public val discovery: Discovery = DiscoveryImpl(httpClient, coroutineScope)

@JvmField
public val fraud: Fraud = FraudImpl(fraudHttpClient, coroutineScope)

@JvmField
public val idp: IDP = IDPImpl(httpClient, coroutineScope, httpsJwks, jwtOptions, policyCache)

@JvmField
public val impersonation: Impersonation = ImpersonationImpl(httpClient, coroutineScope)

@JvmField
public val m2m: M2M = M2MImpl(httpClient, coroutineScope, httpsJwks, jwtOptions)

@JvmField
public val magicLinks: MagicLinks = MagicLinksImpl(httpClient, coroutineScope)

@JvmField
public val oauth: OAuth = OAuthImpl(httpClient, coroutineScope)

@JvmField
public val otps: OTPs = OTPsImpl(httpClient, coroutineScope)

@JvmField
public val organizations: Organizations = OrganizationsImpl(httpClient, coroutineScope)

@JvmField
public val passwords: Passwords = PasswordsImpl(httpClient, coroutineScope)

@JvmField
public val project: Project = ProjectImpl(httpClient, coroutineScope)

@JvmField
public val rbac: RBAC = RBACImpl(httpClient, coroutineScope)

@JvmField
public val recoveryCodes: RecoveryCodes = RecoveryCodesImpl(httpClient, coroutineScope)

@JvmField
public val scim: SCIM = SCIMImpl(httpClient, coroutineScope)

@JvmField
public val sso: SSO = SSOImpl(httpClient, coroutineScope)

@JvmField
public val sessions: Sessions = SessionsImpl(httpClient, coroutineScope, httpsJwks, jwtOptions, policyCache)

@JvmField
public val totps: TOTPs = TOTPsImpl(httpClient, coroutineScope)

/**
Expand Down
2 changes: 1 addition & 1 deletion stytch/src/main/kotlin/com/stytch/java/common/Version.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.stytch.java.common

internal const val VERSION = "10.0.0"
internal const val VERSION = "11.0.0"
33 changes: 0 additions & 33 deletions stytch/src/main/kotlin/com/stytch/java/consumer/StytchClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -74,55 +74,22 @@ public class StytchClient
type = "JWT",
)

@JvmField
public val connectedApp: ConnectedApp = ConnectedAppImpl(httpClient, coroutineScope)

@JvmField
public val cryptoWallets: CryptoWallets = CryptoWalletsImpl(httpClient, coroutineScope)

@JvmField
public val debug: Debug = DebugImpl(httpClient, coroutineScope)

@JvmField
public val fraud: Fraud = FraudImpl(fraudHttpClient, coroutineScope)

@JvmField
public val idp: IDP = IDPImpl(httpClient, coroutineScope, httpsJwks, jwtOptions)

@JvmField
public val impersonation: Impersonation = ImpersonationImpl(httpClient, coroutineScope)

@JvmField
public val m2m: M2M = M2MImpl(httpClient, coroutineScope, httpsJwks, jwtOptions)

@JvmField
public val magicLinks: MagicLinks = MagicLinksImpl(httpClient, coroutineScope)

@JvmField
public val oauth: OAuth = OAuthImpl(httpClient, coroutineScope)

@JvmField
public val otps: OTPs = OTPsImpl(httpClient, coroutineScope)

@JvmField
public val passwords: Passwords = PasswordsImpl(httpClient, coroutineScope)

@JvmField
public val project: Project = ProjectImpl(httpClient, coroutineScope)

@JvmField
public val rbac: RBAC = RBACImpl(httpClient, coroutineScope)

@JvmField
public val sessions: Sessions = SessionsImpl(httpClient, coroutineScope, httpsJwks, jwtOptions)

@JvmField
public val totps: TOTPs = TOTPsImpl(httpClient, coroutineScope)

@JvmField
public val users: Users = UsersImpl(httpClient, coroutineScope)

@JvmField
public val webauthn: WebAuthn = WebAuthnImpl(httpClient, coroutineScope)

/**
Expand Down
2 changes: 1 addition & 1 deletion version.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "10.0.0"
version = "11.0.0"
Loading