Skip to content

Commit

Permalink
Add ALL_ALLOWED as a potential option for EmailJitProvisioning and OA…
Browse files Browse the repository at this point in the history
…uthTenantJitProvisioning (#249)
  • Loading branch information
jhaven-stytch authored Feb 3, 2025
1 parent 567a8e0 commit 58d5e02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

extra["PUBLISH_GROUP_ID"] = "com.stytch.sdk"
extra["PUBLISH_VERSION"] = "0.35.0"
extra["PUBLISH_VERSION"] = "0.35.1"
extra["PUBLISH_ARTIFACT_ID"] = "sdk"

apply("${rootProject.projectDir}/scripts/publish-module.gradle")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ public enum class SsoJitProvisioning {

@JsonClass(generateAdapter = false)
public enum class EmailJitProvisioning {
ALL_ALLOWED,
RESTRICTED,
NOT_ALLOWED,
}

@JsonClass(generateAdapter = false)
public enum class OAuthTenantJitProvisioning {
ALL_ALLOWED,
RESTRICTED,
NOT_ALLOWED,
}
Expand Down

0 comments on commit 58d5e02

Please sign in to comment.