* | :heavy_minus_sign: | The status of the domain's verification |
\ No newline at end of file
diff --git a/docs/sdks/organizationdomains/README.md b/docs/sdks/organizationdomains/README.md
index 4bc63e3f..30e37d2b 100644
--- a/docs/sdks/organizationdomains/README.md
+++ b/docs/sdks/organizationdomains/README.md
@@ -176,7 +176,7 @@ public class Application {
| Error Type | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
-| models/errors/ClerkErrors | 400, 404, 422 | application/json |
+| models/errors/ClerkErrors | 400, 403, 404, 422 | application/json |
| models/errors/SDKError | 4XX, 5XX | \*/\* |
## delete
@@ -229,7 +229,7 @@ public class Application {
| Error Type | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
-| models/errors/ClerkErrors | 400, 401, 404 | application/json |
+| models/errors/ClerkErrors | 400, 401, 403, 404 | application/json |
| models/errors/SDKError | 4XX, 5XX | \*/\* |
## verifyOwnership
diff --git a/docs/sdks/users/README.md b/docs/sdks/users/README.md
index dc92a7a5..5e100794 100644
--- a/docs/sdks/users/README.md
+++ b/docs/sdks/users/README.md
@@ -1756,6 +1756,8 @@ public class Application {
Sets the given user's password as no longer compromised. The user will no longer be prompted to reset their password on their next sign-in.
+If the user is in reserved-email password quarantine, the quarantine is preserved and the returned user will still have `requires_password_reset` set to `true`. Reserved-email password quarantine can only be cleared by completing a password reset or changing/removing the password.
+
### Example Usage
diff --git a/gradle.properties b/gradle.properties
index 3cd7a5f6..3fe94eee 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
groupId=com.clerk
artifactId=backend-api
-version=5.0.0
+version=5.0.1
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g
diff --git a/src/main/java/com/clerk/backend_api/SDKConfiguration.java b/src/main/java/com/clerk/backend_api/SDKConfiguration.java
index 4794d32b..9eb47047 100644
--- a/src/main/java/com/clerk/backend_api/SDKConfiguration.java
+++ b/src/main/java/com/clerk/backend_api/SDKConfiguration.java
@@ -16,8 +16,8 @@ public class SDKConfiguration {
private static final String LANGUAGE = "java";
public static final String OPENAPI_DOC_VERSION = "2026-05-12";
- public static final String SDK_VERSION = "5.0.0";
- public static final String GEN_VERSION = "2.903.0";
+ public static final String SDK_VERSION = "5.0.1";
+ public static final String GEN_VERSION = "2.911.0";
private static final String BASE_PACKAGE = "com.clerk.backend_api";
public static final String USER_AGENT =
String.format("speakeasy-sdk/%s %s %s %s %s",
diff --git a/src/main/java/com/clerk/backend_api/Users.java b/src/main/java/com/clerk/backend_api/Users.java
index 089dac5d..64a19411 100644
--- a/src/main/java/com/clerk/backend_api/Users.java
+++ b/src/main/java/com/clerk/backend_api/Users.java
@@ -1779,6 +1779,10 @@ public SetUserPasswordCompromisedResponse setPasswordCompromised(
* Sets the given user's password as no longer compromised. The user will no longer be prompted to
* reset their password on their next sign-in.
*
+ *
If the user is in reserved-email password quarantine, the quarantine is preserved and the returned
+ * user will still have `requires_password_reset` set to `true`. Reserved-email password quarantine can
+ * only be cleared by completing a password reset or changing/removing the password.
+ *
* @return The call builder
*/
public UnsetUserPasswordCompromisedRequestBuilder unsetPasswordCompromised() {
@@ -1791,6 +1795,10 @@ public UnsetUserPasswordCompromisedRequestBuilder unsetPasswordCompromised() {
*
Sets the given user's password as no longer compromised. The user will no longer be prompted to
* reset their password on their next sign-in.
*
+ *
If the user is in reserved-email password quarantine, the quarantine is preserved and the returned
+ * user will still have `requires_password_reset` set to `true`. Reserved-email password quarantine can
+ * only be cleared by completing a password reset or changing/removing the password.
+ *
* @param userId The ID of the user to unset the compromised status for
* @return The response from the API call
* @throws RuntimeException subclass if the API call fails
@@ -1805,6 +1813,10 @@ public UnsetUserPasswordCompromisedResponse unsetPasswordCompromised(String user
*
Sets the given user's password as no longer compromised. The user will no longer be prompted to
* reset their password on their next sign-in.
*
+ *
If the user is in reserved-email password quarantine, the quarantine is preserved and the returned
+ * user will still have `requires_password_reset` set to `true`. Reserved-email password quarantine can
+ * only be cleared by completing a password reset or changing/removing the password.
+ *
* @param userId The ID of the user to unset the compromised status for
* @param options additional options
* @return The response from the API call
diff --git a/src/main/java/com/clerk/backend_api/models/components/ClerkError.java b/src/main/java/com/clerk/backend_api/models/components/ClerkError.java
index 13355bb0..fea937df 100644
--- a/src/main/java/com/clerk/backend_api/models/components/ClerkError.java
+++ b/src/main/java/com/clerk/backend_api/models/components/ClerkError.java
@@ -9,9 +9,11 @@
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
+import java.util.Map;
import java.util.Optional;
@@ -31,14 +33,14 @@ public class ClerkError {
@JsonInclude(Include.NON_ABSENT)
@JsonProperty("meta")
- private Optional extends Meta> meta;
+ private Optional extends Map> meta;
@JsonCreator
public ClerkError(
@JsonProperty("message") String message,
@JsonProperty("long_message") String longMessage,
@JsonProperty("code") String code,
- @JsonProperty("meta") Optional extends Meta> meta) {
+ @JsonProperty("meta") Optional extends Map> meta) {
Utils.checkNotNull(message, "message");
Utils.checkNotNull(longMessage, "longMessage");
Utils.checkNotNull(code, "code");
@@ -74,8 +76,8 @@ public String code() {
@SuppressWarnings("unchecked")
@JsonIgnore
- public Optional meta() {
- return (Optional) meta;
+ public Optional