diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock
index 8695fb8..83eb5c2 100755
--- a/.speakeasy/gen.lock
+++ b/.speakeasy/gen.lock
@@ -1,23 +1,23 @@
lockVersion: 2.0.0
id: 1d22a5a4-8bac-42e3-b164-121fcacf66c9
management:
- docChecksum: 8a8b44e8346bd0bbfc9f9cf4d44c5332
+ docChecksum: f6e25376d224dc39635a7f5eed081de2
docVersion: v1
- speakeasyVersion: 1.355.0
- generationVersion: 2.387.0
- releaseVersion: 0.2.0-beta.2
- configChecksum: 57f8a85077c5d6ca82c3da201d722346
+ speakeasyVersion: 1.363.1
+ generationVersion: 2.396.0
+ releaseVersion: 0.3.0-beta.2
+ configChecksum: 80434d26185e1d667e08dee8aa5c755a
repoURL: https://github.com/clerk/clerk-sdk-java.git
published: true
features:
java:
additionalDependencies: 0.1.0
constsAndDefaults: 0.1.1
- core: 3.27.0
+ core: 3.28.1
deprecations: 2.81.1
examples: 2.81.3
flattening: 2.81.1
- globalSecurity: 2.82.6
+ globalSecurity: 2.82.7
globalSecurityCallbacks: 0.1.0
globalSecurityFlattening: 0.1.0
globalServerURLs: 2.82.1
@@ -26,7 +26,7 @@ features:
nullables: 0.1.0
pagination: 0.2.2
sdkHooks: 0.1.0
- unions: 0.0.4
+ unions: 0.0.5
generatedFiles:
- src/main/java/com/clerk/backend_api/SecuritySource.java
- src/main/java/com/clerk/backend_api/SDKConfiguration.java
diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock
index 77d42e9..1200bf3 100644
--- a/.speakeasy/workflow.lock
+++ b/.speakeasy/workflow.lock
@@ -1,9 +1,9 @@
-speakeasyVersion: 1.355.0
+speakeasyVersion: 1.363.1
sources:
clerk-java-sdk:
sourceNamespace: clerk-java-sdk
- sourceRevisionDigest: sha256:7ac60d05f033a6b76be256a2f662720f9fe030f96984c4f42443865b8ba37128
- sourceBlobDigest: sha256:169753eaf7b084082ad40ccdf4b11222d46b71259ed6c7eb809dbeb9089462c9
+ sourceRevisionDigest: sha256:a1d17471885280f9bc34dcc58e923357e6497e706b83ee918cdc2078413a95f4
+ sourceBlobDigest: sha256:709394a2b429d8bae8f4277a60d93a25c65c9a88cecd5f073ee1b576fd8129f1
tags:
- latest
- main
@@ -11,8 +11,8 @@ targets:
clerk-java:
source: clerk-java-sdk
sourceNamespace: clerk-java-sdk
- sourceRevisionDigest: sha256:7ac60d05f033a6b76be256a2f662720f9fe030f96984c4f42443865b8ba37128
- sourceBlobDigest: sha256:169753eaf7b084082ad40ccdf4b11222d46b71259ed6c7eb809dbeb9089462c9
+ sourceRevisionDigest: sha256:a1d17471885280f9bc34dcc58e923357e6497e706b83ee918cdc2078413a95f4
+ sourceBlobDigest: sha256:709394a2b429d8bae8f4277a60d93a25c65c9a88cecd5f073ee1b576fd8129f1
outLocation: /github/workspace/repo
my-first-target:
source: clerk-java-sdk
diff --git a/README.md b/README.md
index 880e4de..e77987a 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ The samples below show how a published SDK artifact is used:
Gradle:
```groovy
-implementation 'com.clerk:backend-api:0.2.0-beta.2'
+implementation 'com.clerk:backend-api:0.3.0-beta.2'
```
Maven:
@@ -27,7 +27,7 @@ Maven:
com.clerk
backend-api
- 0.2.0-beta.2
+ 0.3.0-beta.2
```
@@ -55,17 +55,7 @@ gradlew.bat publishToMavenLocal -Pskip.signing
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import java.lang.Exception;
public class Application {
@@ -103,17 +93,11 @@ This example shows how to create an actor token that can be used to impersonate
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import com.clerk.backend_api.models.errors.SDKError;
+import com.clerk.backend_api.models.operations.CreateActorTokenRequestBody;
+import com.clerk.backend_api.models.operations.CreateActorTokenResponse;
+import java.lang.Exception;
+import java.util.Map;
public class Application {
@@ -125,8 +109,8 @@ public class Application {
CreateActorTokenRequestBody req = CreateActorTokenRequestBody.builder()
.userId("")
- .actor(java.util.Map.ofEntries(
- entry("sub", "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb")))
+ .actor(Map.ofEntries(
+ Map.entry("sub", "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb")))
.build();
CreateActorTokenResponse res = sdk.actors().createToken()
@@ -139,7 +123,7 @@ public class Application {
} catch (com.clerk.backend_api.models.errors.ClerkErrors e) {
// handle exception
throw e;
- } catch (com.clerk.backend_api.models.errors.SDKError e) {
+ } catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
@@ -356,17 +340,7 @@ Here's an example of one such pagination call:
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import java.lang.Exception;
public class Application {
@@ -413,17 +387,7 @@ Handling errors in this SDK should largely match your expectations. All operati
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import java.lang.Exception;
public class Application {
@@ -471,17 +435,9 @@ You can override the default server globally by passing a server index to the `s
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import com.clerk.backend_api.models.errors.SDKError;
+import com.clerk.backend_api.models.operations.GetPublicInterstitialResponse;
+import java.lang.Exception;
public class Application {
@@ -497,7 +453,7 @@ public class Application {
.call();
// handle response
- } catch (com.clerk.backend_api.models.errors.SDKError e) {
+ } catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
@@ -517,17 +473,9 @@ The default server can also be overridden globally by passing a URL to the `serv
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import com.clerk.backend_api.models.errors.SDKError;
+import com.clerk.backend_api.models.operations.GetPublicInterstitialResponse;
+import java.lang.Exception;
public class Application {
@@ -543,7 +491,7 @@ public class Application {
.call();
// handle response
- } catch (com.clerk.backend_api.models.errors.SDKError e) {
+ } catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
@@ -572,17 +520,9 @@ To authenticate with the API the `bearerAuth` parameter must be set when initial
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import com.clerk.backend_api.models.errors.SDKError;
+import com.clerk.backend_api.models.operations.GetPublicInterstitialResponse;
+import java.lang.Exception;
public class Application {
@@ -598,7 +538,7 @@ public class Application {
.call();
// handle response
- } catch (com.clerk.backend_api.models.errors.SDKError e) {
+ } catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
diff --git a/RELEASES.md b/RELEASES.md
index 013873b..55566e4 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -108,4 +108,14 @@ Based on:
### Generated
- [java v0.2.0-beta.2] .
### Releases
-- [Maven Central v0.2.0-beta.2] https://central.sonatype.com/artifact/com.clerk/backend-api/0.2.0-beta.2 - .
\ No newline at end of file
+- [Maven Central v0.2.0-beta.2] https://central.sonatype.com/artifact/com.clerk/backend-api/0.2.0-beta.2 - .
+
+## 2024-08-13 15:19:32
+### Changes
+Based on:
+- OpenAPI Doc
+- Speakeasy CLI 1.363.1 (2.396.0) https://github.com/speakeasy-api/speakeasy
+### Generated
+- [java v0.3.0-beta.2] .
+### Releases
+- [Maven Central v0.3.0-beta.2] https://central.sonatype.com/artifact/com.clerk/backend-api/0.3.0-beta.2 - .
\ No newline at end of file
diff --git a/USAGE.md b/USAGE.md
index 6a0e69c..ac5863c 100644
--- a/USAGE.md
+++ b/USAGE.md
@@ -3,17 +3,7 @@
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import java.lang.Exception;
public class Application {
@@ -51,17 +41,11 @@ This example shows how to create an actor token that can be used to impersonate
package hello.world;
import com.clerk.backend_api.Clerk;
-import com.clerk.backend_api.models.components.*;
-import com.clerk.backend_api.models.operations.*;
-import com.clerk.backend_api.utils.EventStream;
-import java.math.BigDecimal;
-import java.math.BigDecimal;
-import java.math.BigInteger;
-import java.time.LocalDate;
-import java.time.OffsetDateTime;
-import java.util.Optional;
-import org.openapitools.jackson.nullable.JsonNullable;
-import static java.util.Map.entry;
+import com.clerk.backend_api.models.errors.SDKError;
+import com.clerk.backend_api.models.operations.CreateActorTokenRequestBody;
+import com.clerk.backend_api.models.operations.CreateActorTokenResponse;
+import java.lang.Exception;
+import java.util.Map;
public class Application {
@@ -73,8 +57,8 @@ public class Application {
CreateActorTokenRequestBody req = CreateActorTokenRequestBody.builder()
.userId("")
- .actor(java.util.Map.ofEntries(
- entry("sub", "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb")))
+ .actor(Map.ofEntries(
+ Map.entry("sub", "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb")))
.build();
CreateActorTokenResponse res = sdk.actors().createToken()
@@ -87,7 +71,7 @@ public class Application {
} catch (com.clerk.backend_api.models.errors.ClerkErrors e) {
// handle exception
throw e;
- } catch (com.clerk.backend_api.models.errors.SDKError e) {
+ } catch (SDKError e) {
// handle exception
throw e;
} catch (Exception e) {
diff --git a/build.gradle b/build.gradle
index 42ec431..330898a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -62,7 +62,7 @@ tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
group = "com.clerk"
-version = "0.2.0-beta.2"
+version = "0.3.0-beta.2"
sourcesJar {
archiveBaseName = "backend-api"
@@ -99,7 +99,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.clerk'
artifactId = 'backend-api'
- version = '0.2.0-beta.2'
+ version = '0.3.0-beta.2'
from components.java
diff --git a/docs/models/components/ActorToken.md b/docs/models/components/ActorToken.md
index 9d8c016..6213a1c 100644
--- a/docs/models/components/ActorToken.md
+++ b/docs/models/components/ActorToken.md
@@ -3,14 +3,14 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.ActorTokenObject](../../models/components/ActorTokenObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `status` | [com.clerk.backend_api.models.components.ActorTokenStatus](../../models/components/ActorTokenStatus.md) | :heavy_check_mark: | N/A |
-| `userId` | *String* | :heavy_check_mark: | N/A |
-| `actor` | [com.clerk.backend_api.models.components.ActorTokenActor](../../models/components/ActorTokenActor.md) | :heavy_check_mark: | N/A |
-| `token` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `url` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `object` | [ActorTokenObject](../../models/components/ActorTokenObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `status` | [ActorTokenStatus](../../models/components/ActorTokenStatus.md) | :heavy_check_mark: | N/A |
+| `userId` | *String* | :heavy_check_mark: | N/A |
+| `actor` | [ActorTokenActor](../../models/components/ActorTokenActor.md) | :heavy_check_mark: | N/A |
+| `token` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `url` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/Admin.md b/docs/models/components/Admin.md
index e1090a4..d60f1f5 100644
--- a/docs/models/components/Admin.md
+++ b/docs/models/components/Admin.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.AdminVerificationStatus](../../models/components/AdminVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.VerificationStrategy](../../models/components/VerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `status` | [AdminVerificationStatus](../../models/components/AdminVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [VerificationStrategy](../../models/components/VerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/AllowlistIdentifier.md b/docs/models/components/AllowlistIdentifier.md
index a0ffefd..2be845e 100644
--- a/docs/models/components/AllowlistIdentifier.md
+++ b/docs/models/components/AllowlistIdentifier.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [Optional extends com.clerk.backend_api.models.components.AllowlistIdentifierObject>](../../models/components/AllowlistIdentifierObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `invitationId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `identifier` | *Optional extends String>* | :heavy_minus_sign: | An email address or a phone number.
|
-| `identifierType` | [Optional extends com.clerk.backend_api.models.components.IdentifierType>](../../models/components/IdentifierType.md) | :heavy_minus_sign: | N/A |
-| `instanceId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation
|
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
+| `object` | [Optional](../../models/components/AllowlistIdentifierObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `invitationId` | *Optional* | :heavy_minus_sign: | N/A |
+| `identifier` | *Optional* | :heavy_minus_sign: | An email address or a phone number.
|
+| `identifierType` | [Optional](../../models/components/IdentifierType.md) | :heavy_minus_sign: | N/A |
+| `instanceId` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation
|
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/AttributeMapping.md b/docs/models/components/AttributeMapping.md
index 3ff71d3..de4f9d5 100644
--- a/docs/models/components/AttributeMapping.md
+++ b/docs/models/components/AttributeMapping.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
-| `userId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `emailAddress` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `firstName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `lastName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `userId` | *Optional* | :heavy_minus_sign: | N/A |
+| `emailAddress` | *Optional* | :heavy_minus_sign: | N/A |
+| `firstName` | *Optional* | :heavy_minus_sign: | N/A |
+| `lastName` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/BlocklistIdentifier.md b/docs/models/components/BlocklistIdentifier.md
index c71f4c0..0cb7744 100644
--- a/docs/models/components/BlocklistIdentifier.md
+++ b/docs/models/components/BlocklistIdentifier.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [Optional extends com.clerk.backend_api.models.components.BlocklistIdentifierObject>](../../models/components/BlocklistIdentifierObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `identifier` | *Optional extends String>* | :heavy_minus_sign: | An email address, email domain, phone number or web3 wallet.
|
-| `identifierType` | [Optional extends com.clerk.backend_api.models.components.BlocklistIdentifierIdentifierType>](../../models/components/BlocklistIdentifierIdentifierType.md) | :heavy_minus_sign: | N/A |
-| `instanceId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation
|
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
+| `object` | [Optional](../../models/components/BlocklistIdentifierObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `identifier` | *Optional* | :heavy_minus_sign: | An email address, email domain, phone number or web3 wallet.
|
+| `identifierType` | [Optional](../../models/components/BlocklistIdentifierIdentifierType.md) | :heavy_minus_sign: | N/A |
+| `instanceId` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation
|
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/BlocklistIdentifiers.md b/docs/models/components/BlocklistIdentifiers.md
index 72a8a51..adcfeae 100644
--- a/docs/models/components/BlocklistIdentifiers.md
+++ b/docs/models/components/BlocklistIdentifiers.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.BlocklistIdentifier](../../models/components/BlocklistIdentifier.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of blocklist identifiers
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
+| `data` | List<[BlocklistIdentifier](../../models/components/BlocklistIdentifier.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of blocklist identifiers
|
\ No newline at end of file
diff --git a/docs/models/components/ClerkError.md b/docs/models/components/ClerkError.md
index 00552ed..793ed1a 100644
--- a/docs/models/components/ClerkError.md
+++ b/docs/models/components/ClerkError.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
-| `message` | *String* | :heavy_check_mark: | N/A |
-| `longMessage` | *String* | :heavy_check_mark: | N/A |
-| `code` | *String* | :heavy_check_mark: | N/A |
-| `meta` | [Optional extends com.clerk.backend_api.models.components.Meta>](../../models/components/Meta.md) | :heavy_minus_sign: | N/A |
-| `clerkTraceId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
+| `message` | *String* | :heavy_check_mark: | N/A |
+| `longMessage` | *String* | :heavy_check_mark: | N/A |
+| `code` | *String* | :heavy_check_mark: | N/A |
+| `meta` | [Optional](../../models/components/Meta.md) | :heavy_minus_sign: | N/A |
+| `clerkTraceId` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Client.md b/docs/models/components/Client.md
index 306c40f..9b9cda7 100644
--- a/docs/models/components/Client.md
+++ b/docs/models/components/Client.md
@@ -3,14 +3,14 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.Object](../../models/components/Object.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `id` | *String* | :heavy_check_mark: | String representing the identifier of the session.
|
-| `sessionIds` | List<*String*> | :heavy_check_mark: | N/A |
-| `sessions` | List<[com.clerk.backend_api.models.components.Session](../../models/components/Session.md)> | :heavy_check_mark: | N/A |
-| `signInId` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `signUpId` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `lastActiveSessionId` | *Optional extends String>* | :heavy_check_mark: | Last active session_id.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `object` | [Object](../../models/components/Object.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `id` | *String* | :heavy_check_mark: | String representing the identifier of the session.
|
+| `sessionIds` | List<*String*> | :heavy_check_mark: | N/A |
+| `sessions` | List<[Session](../../models/components/Session.md)> | :heavy_check_mark: | N/A |
+| `signInId` | *Optional* | :heavy_check_mark: | N/A |
+| `signUpId` | *Optional* | :heavy_check_mark: | N/A |
+| `lastActiveSessionId` | *Optional* | :heavy_check_mark: | Last active session_id.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
\ No newline at end of file
diff --git a/docs/models/components/DeletedObject.md b/docs/models/components/DeletedObject.md
index 4465bfe..8985dcb 100644
--- a/docs/models/components/DeletedObject.md
+++ b/docs/models/components/DeletedObject.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
-| `object` | *String* | :heavy_check_mark: | N/A |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `slug` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `deleted` | *boolean* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `object` | *String* | :heavy_check_mark: | N/A |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `slug` | *Optional* | :heavy_minus_sign: | N/A |
+| `deleted` | *boolean* | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Domain.md b/docs/models/components/Domain.md
index 4026ce7..9aa5692 100644
--- a/docs/models/components/Domain.md
+++ b/docs/models/components/Domain.md
@@ -3,14 +3,14 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.DomainObject](../../models/components/DomainObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `isSatellite` | *boolean* | :heavy_check_mark: | N/A |
-| `frontendApiUrl` | *String* | :heavy_check_mark: | N/A |
-| `accountsPortalUrl` | *JsonNullable extends String>* | :heavy_minus_sign: | Null for satellite domains.
|
-| `proxyUrl` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `developmentOrigin` | *String* | :heavy_check_mark: | N/A |
-| `cnameTargets` | List<[com.clerk.backend_api.models.components.CNameTarget](../../models/components/CNameTarget.md)> | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
+| `object` | [DomainObject](../../models/components/DomainObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `isSatellite` | *boolean* | :heavy_check_mark: | N/A |
+| `frontendApiUrl` | *String* | :heavy_check_mark: | N/A |
+| `accountsPortalUrl` | *JsonNullable* | :heavy_minus_sign: | Null for satellite domains.
|
+| `proxyUrl` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `developmentOrigin` | *String* | :heavy_check_mark: | N/A |
+| `cnameTargets` | List<[CNameTarget](../../models/components/CNameTarget.md)> | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Domains.md b/docs/models/components/Domains.md
index a6ff079..712fc28 100644
--- a/docs/models/components/Domains.md
+++ b/docs/models/components/Domains.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.Domain](../../models/components/Domain.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of domains
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
+| `data` | List<[Domain](../../models/components/Domain.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of domains
|
\ No newline at end of file
diff --git a/docs/models/components/EmailAddress.md b/docs/models/components/EmailAddress.md
index 851517e..9594578 100644
--- a/docs/models/components/EmailAddress.md
+++ b/docs/models/components/EmailAddress.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [com.clerk.backend_api.models.components.EmailAddressObject](../../models/components/EmailAddressObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `emailAddress` | *String* | :heavy_check_mark: | N/A |
-| `reserved` | *boolean* | :heavy_check_mark: | N/A |
-| `verification` | [Optional extends com.clerk.backend_api.models.components.Verification>](../../models/components/Verification.md) | :heavy_check_mark: | N/A |
-| `linkedTo` | List<[com.clerk.backend_api.models.components.IdentificationLink](../../models/components/IdentificationLink.md)> | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [EmailAddressObject](../../models/components/EmailAddressObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `emailAddress` | *String* | :heavy_check_mark: | N/A |
+| `reserved` | *boolean* | :heavy_check_mark: | N/A |
+| `verification` | [Optional](../../models/components/Verification.md) | :heavy_check_mark: | N/A |
+| `linkedTo` | List<[IdentificationLink](../../models/components/IdentificationLink.md)> | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
diff --git a/docs/models/components/ErrorClerkError.md b/docs/models/components/ErrorClerkError.md
index 19af3aa..73da77a 100644
--- a/docs/models/components/ErrorClerkError.md
+++ b/docs/models/components/ErrorClerkError.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
-| `message` | *String* | :heavy_check_mark: | N/A |
-| `longMessage` | *String* | :heavy_check_mark: | N/A |
-| `code` | *String* | :heavy_check_mark: | N/A |
-| `meta` | [Optional extends com.clerk.backend_api.models.components.ErrorMeta>](../../models/components/ErrorMeta.md) | :heavy_minus_sign: | N/A |
-| `clerkTraceId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
+| `message` | *String* | :heavy_check_mark: | N/A |
+| `longMessage` | *String* | :heavy_check_mark: | N/A |
+| `code` | *String* | :heavy_check_mark: | N/A |
+| `meta` | [Optional](../../models/components/ErrorMeta.md) | :heavy_minus_sign: | N/A |
+| `clerkTraceId` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/IdentificationLink.md b/docs/models/components/IdentificationLink.md
index b19c2cb..5f6b4ef 100644
--- a/docs/models/components/IdentificationLink.md
+++ b/docs/models/components/IdentificationLink.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
-| `type` | [com.clerk.backend_api.models.components.Type](../../models/components/Type.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `type` | [Type](../../models/components/Type.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/InstanceRestrictions.md b/docs/models/components/InstanceRestrictions.md
index da67f5a..808fbf0 100644
--- a/docs/models/components/InstanceRestrictions.md
+++ b/docs/models/components/InstanceRestrictions.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [Optional extends com.clerk.backend_api.models.components.InstanceRestrictionsObject>](../../models/components/InstanceRestrictionsObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value. |
-| `allowlist` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `blocklist` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `blockEmailSubaddresses` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `ignoreDotsForGmailAddresses` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
+| `object` | [Optional](../../models/components/InstanceRestrictionsObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value. |
+| `allowlist` | *Optional* | :heavy_minus_sign: | N/A |
+| `blocklist` | *Optional* | :heavy_minus_sign: | N/A |
+| `blockEmailSubaddresses` | *Optional* | :heavy_minus_sign: | N/A |
+| `ignoreDotsForGmailAddresses` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/InstanceSettings.md b/docs/models/components/InstanceSettings.md
index 3d457bf..660a8df 100644
--- a/docs/models/components/InstanceSettings.md
+++ b/docs/models/components/InstanceSettings.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [Optional extends com.clerk.backend_api.models.components.InstanceSettingsObject>](../../models/components/InstanceSettingsObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value. |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `restrictedToAllowlist` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `fromEmailAddress` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `progressiveSignUp` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `enhancedEmailDeliverability` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `object` | [Optional](../../models/components/InstanceSettingsObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value. |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `restrictedToAllowlist` | *Optional* | :heavy_minus_sign: | N/A |
+| `fromEmailAddress` | *Optional* | :heavy_minus_sign: | N/A |
+| `progressiveSignUp` | *Optional* | :heavy_minus_sign: | N/A |
+| `enhancedEmailDeliverability` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Invitation.md b/docs/models/components/Invitation.md
index 49cd69c..031e4ff 100644
--- a/docs/models/components/Invitation.md
+++ b/docs/models/components/Invitation.md
@@ -3,14 +3,14 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.InvitationObject](../../models/components/InvitationObject.md) | :heavy_check_mark: | N/A | |
-| `id` | *String* | :heavy_check_mark: | N/A | |
-| `emailAddress` | *String* | :heavy_check_mark: | N/A | |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.InvitationPublicMetadata>](../../models/components/InvitationPublicMetadata.md) | :heavy_minus_sign: | N/A | |
-| `revoked` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | false |
-| `status` | [com.clerk.backend_api.models.components.InvitationStatus](../../models/components/InvitationStatus.md) | :heavy_check_mark: | N/A | pending |
-| `url` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
| |
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
+| `object` | [InvitationObject](../../models/components/InvitationObject.md) | :heavy_check_mark: | N/A | |
+| `id` | *String* | :heavy_check_mark: | N/A | |
+| `emailAddress` | *String* | :heavy_check_mark: | N/A | |
+| `publicMetadata` | [Optional](../../models/components/InvitationPublicMetadata.md) | :heavy_minus_sign: | N/A | |
+| `revoked` | *Optional* | :heavy_minus_sign: | N/A | false |
+| `status` | [InvitationStatus](../../models/components/InvitationStatus.md) | :heavy_check_mark: | N/A | pending |
+| `url` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
| |
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
| |
\ No newline at end of file
diff --git a/docs/models/components/InvitationRevoked.md b/docs/models/components/InvitationRevoked.md
index e4b1dae..807dc10 100644
--- a/docs/models/components/InvitationRevoked.md
+++ b/docs/models/components/InvitationRevoked.md
@@ -3,14 +3,14 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.InvitationRevokedObject](../../models/components/InvitationRevokedObject.md) | :heavy_check_mark: | N/A | |
-| `id` | *String* | :heavy_check_mark: | N/A | |
-| `emailAddress` | *String* | :heavy_check_mark: | N/A | |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.InvitationRevokedPublicMetadata>](../../models/components/InvitationRevokedPublicMetadata.md) | :heavy_minus_sign: | N/A | |
-| `revoked` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | true |
-| `status` | [com.clerk.backend_api.models.components.InvitationRevokedStatus](../../models/components/InvitationRevokedStatus.md) | :heavy_check_mark: | N/A | revoked |
-| `url` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
| |
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
+| `object` | [InvitationRevokedObject](../../models/components/InvitationRevokedObject.md) | :heavy_check_mark: | N/A | |
+| `id` | *String* | :heavy_check_mark: | N/A | |
+| `emailAddress` | *String* | :heavy_check_mark: | N/A | |
+| `publicMetadata` | [Optional](../../models/components/InvitationRevokedPublicMetadata.md) | :heavy_minus_sign: | N/A | |
+| `revoked` | *Optional* | :heavy_minus_sign: | N/A | true |
+| `status` | [InvitationRevokedStatus](../../models/components/InvitationRevokedStatus.md) | :heavy_check_mark: | N/A | revoked |
+| `url` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
| |
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
| |
\ No newline at end of file
diff --git a/docs/models/components/JWTTemplate.md b/docs/models/components/JWTTemplate.md
index 663321c..0ff3d7b 100644
--- a/docs/models/components/JWTTemplate.md
+++ b/docs/models/components/JWTTemplate.md
@@ -3,15 +3,15 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.JWTTemplateObject](../../models/components/JWTTemplateObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `claims` | [com.clerk.backend_api.models.components.Claims](../../models/components/Claims.md) | :heavy_check_mark: | N/A |
-| `lifetime` | *long* | :heavy_check_mark: | N/A |
-| `allowedClockSkew` | *long* | :heavy_check_mark: | N/A |
-| `customSigningKey` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `signingAlgorithm` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `object` | [JWTTemplateObject](../../models/components/JWTTemplateObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `claims` | [Claims](../../models/components/Claims.md) | :heavy_check_mark: | N/A |
+| `lifetime` | *long* | :heavy_check_mark: | N/A |
+| `allowedClockSkew` | *long* | :heavy_check_mark: | N/A |
+| `customSigningKey` | *Optional* | :heavy_minus_sign: | N/A |
+| `signingAlgorithm` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/OAuthApplication.md b/docs/models/components/OAuthApplication.md
index a6cc9b8..44962e4 100644
--- a/docs/models/components/OAuthApplication.md
+++ b/docs/models/components/OAuthApplication.md
@@ -3,18 +3,18 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OAuthApplicationObject](../../models/components/OAuthApplicationObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `instanceId` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `clientId` | *String* | :heavy_check_mark: | N/A |
-| `public_` | *boolean* | :heavy_check_mark: | N/A |
-| `scopes` | *String* | :heavy_check_mark: | N/A |
-| `callbackUrl` | *String* | :heavy_check_mark: | N/A |
-| `authorizeUrl` | *String* | :heavy_check_mark: | N/A |
-| `tokenFetchUrl` | *String* | :heavy_check_mark: | N/A |
-| `userInfoUrl` | *String* | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
+| `object` | [OAuthApplicationObject](../../models/components/OAuthApplicationObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `instanceId` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `clientId` | *String* | :heavy_check_mark: | N/A |
+| `public_` | *boolean* | :heavy_check_mark: | N/A |
+| `scopes` | *String* | :heavy_check_mark: | N/A |
+| `callbackUrl` | *String* | :heavy_check_mark: | N/A |
+| `authorizeUrl` | *String* | :heavy_check_mark: | N/A |
+| `tokenFetchUrl` | *String* | :heavy_check_mark: | N/A |
+| `userInfoUrl` | *String* | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/OAuthApplicationWithSecret.md b/docs/models/components/OAuthApplicationWithSecret.md
index 7ed81ee..3e63c05 100644
--- a/docs/models/components/OAuthApplicationWithSecret.md
+++ b/docs/models/components/OAuthApplicationWithSecret.md
@@ -3,19 +3,19 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OAuthApplicationWithSecretObject](../../models/components/OAuthApplicationWithSecretObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `instanceId` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `clientId` | *String* | :heavy_check_mark: | N/A |
-| `public_` | *boolean* | :heavy_check_mark: | N/A |
-| `scopes` | *String* | :heavy_check_mark: | N/A |
-| `callbackUrl` | *String* | :heavy_check_mark: | N/A |
-| `authorizeUrl` | *String* | :heavy_check_mark: | N/A |
-| `tokenFetchUrl` | *String* | :heavy_check_mark: | N/A |
-| `userInfoUrl` | *String* | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
-| `clientSecret` | *Optional extends String>* | :heavy_minus_sign: | Empty if public client.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `object` | [OAuthApplicationWithSecretObject](../../models/components/OAuthApplicationWithSecretObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `instanceId` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `clientId` | *String* | :heavy_check_mark: | N/A |
+| `public_` | *boolean* | :heavy_check_mark: | N/A |
+| `scopes` | *String* | :heavy_check_mark: | N/A |
+| `callbackUrl` | *String* | :heavy_check_mark: | N/A |
+| `authorizeUrl` | *String* | :heavy_check_mark: | N/A |
+| `tokenFetchUrl` | *String* | :heavy_check_mark: | N/A |
+| `userInfoUrl` | *String* | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
+| `clientSecret` | *Optional* | :heavy_minus_sign: | Empty if public client.
|
\ No newline at end of file
diff --git a/docs/models/components/OAuthApplications.md b/docs/models/components/OAuthApplications.md
index 9f6647c..35f03ef 100644
--- a/docs/models/components/OAuthApplications.md
+++ b/docs/models/components/OAuthApplications.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.OAuthApplication](../../models/components/OAuthApplication.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of OAuth applications
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
+| `data` | List<[OAuthApplication](../../models/components/OAuthApplication.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of OAuth applications
|
\ No newline at end of file
diff --git a/docs/models/components/Oauth.md b/docs/models/components/Oauth.md
index 84f2480..2f32a84 100644
--- a/docs/models/components/Oauth.md
+++ b/docs/models/components/Oauth.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.OauthVerificationStatus](../../models/components/OauthVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.OauthVerificationStrategy](../../models/components/OauthVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `externalVerificationRedirectUrl` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `error` | [JsonNullable extends com.clerk.backend_api.models.components.Error>](../../models/components/Error.md) | :heavy_minus_sign: | N/A |
-| `expireAt` | *long* | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `status` | [OauthVerificationStatus](../../models/components/OauthVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [OauthVerificationStrategy](../../models/components/OauthVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `externalVerificationRedirectUrl` | *Optional* | :heavy_minus_sign: | N/A |
+| `error` | [JsonNullable](../../models/components/Error.md) | :heavy_minus_sign: | N/A |
+| `expireAt` | *long* | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Organization.md b/docs/models/components/Organization.md
index 149093d..da5f751 100644
--- a/docs/models/components/Organization.md
+++ b/docs/models/components/Organization.md
@@ -3,17 +3,17 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OrganizationObject](../../models/components/OrganizationObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `slug` | *String* | :heavy_check_mark: | N/A |
-| `membersCount` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
-| `adminDeleteEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [com.clerk.backend_api.models.components.OrganizationPublicMetadata](../../models/components/OrganizationPublicMetadata.md) | :heavy_check_mark: | N/A |
-| `privateMetadata` | [com.clerk.backend_api.models.components.OrganizationPrivateMetadata](../../models/components/OrganizationPrivateMetadata.md) | :heavy_check_mark: | N/A |
-| `createdBy` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `object` | [OrganizationObject](../../models/components/OrganizationObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `slug` | *String* | :heavy_check_mark: | N/A |
+| `membersCount` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
+| `adminDeleteEnabled` | *Optional* | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [OrganizationPublicMetadata](../../models/components/OrganizationPublicMetadata.md) | :heavy_check_mark: | N/A |
+| `privateMetadata` | [OrganizationPrivateMetadata](../../models/components/OrganizationPrivateMetadata.md) | :heavy_check_mark: | N/A |
+| `createdBy` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/OrganizationInvitation.md b/docs/models/components/OrganizationInvitation.md
index 2711ddd..fdcb823 100644
--- a/docs/models/components/OrganizationInvitation.md
+++ b/docs/models/components/OrganizationInvitation.md
@@ -5,15 +5,15 @@ An organization invitation
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [Optional extends com.clerk.backend_api.models.components.OrganizationInvitationObject>](../../models/components/OrganizationInvitationObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
-| `emailAddress` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `role` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `organizationId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `status` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.OrganizationInvitationPublicMetadata>](../../models/components/OrganizationInvitationPublicMetadata.md) | :heavy_minus_sign: | N/A |
-| `privateMetadata` | [Optional extends com.clerk.backend_api.models.components.OrganizationInvitationPrivateMetadata>](../../models/components/OrganizationInvitationPrivateMetadata.md) | :heavy_minus_sign: | N/A |
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation. |
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [Optional](../../models/components/OrganizationInvitationObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
+| `emailAddress` | *Optional* | :heavy_minus_sign: | N/A |
+| `role` | *Optional* | :heavy_minus_sign: | N/A |
+| `organizationId` | *Optional* | :heavy_minus_sign: | N/A |
+| `status` | *Optional* | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [Optional](../../models/components/OrganizationInvitationPublicMetadata.md) | :heavy_minus_sign: | N/A |
+| `privateMetadata` | [Optional](../../models/components/OrganizationInvitationPrivateMetadata.md) | :heavy_minus_sign: | N/A |
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation. |
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update. |
\ No newline at end of file
diff --git a/docs/models/components/OrganizationInvitations.md b/docs/models/components/OrganizationInvitations.md
index a04087d..eacc98d 100644
--- a/docs/models/components/OrganizationInvitations.md
+++ b/docs/models/components/OrganizationInvitations.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.OrganizationInvitation](../../models/components/OrganizationInvitation.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of organization invitations
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `data` | List<[OrganizationInvitation](../../models/components/OrganizationInvitation.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of organization invitations
|
\ No newline at end of file
diff --git a/docs/models/components/OrganizationMembership.md b/docs/models/components/OrganizationMembership.md
index 031561a..d4178da 100644
--- a/docs/models/components/OrganizationMembership.md
+++ b/docs/models/components/OrganizationMembership.md
@@ -5,15 +5,15 @@ Hello world
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [Optional extends com.clerk.backend_api.models.components.OrganizationMembershipObject>](../../models/components/OrganizationMembershipObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
-| `role` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `permissions` | List<*String*> | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.OrganizationMembershipPublicMetadata>](../../models/components/OrganizationMembershipPublicMetadata.md) | :heavy_minus_sign: | Metadata saved on the organization membership, accessible from both Frontend and Backend APIs |
-| `privateMetadata` | [Optional extends com.clerk.backend_api.models.components.OrganizationMembershipPrivateMetadata>](../../models/components/OrganizationMembershipPrivateMetadata.md) | :heavy_minus_sign: | Metadata saved on the organization membership, accessible only from the Backend API |
-| `organization` | [Optional extends com.clerk.backend_api.models.components.OrganizationMembershipOrganization>](../../models/components/OrganizationMembershipOrganization.md) | :heavy_minus_sign: | N/A |
-| `publicUserData` | [Optional extends com.clerk.backend_api.models.components.PublicUserData>](../../models/components/PublicUserData.md) | :heavy_minus_sign: | N/A |
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation. |
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [Optional](../../models/components/OrganizationMembershipObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
+| `role` | *Optional* | :heavy_minus_sign: | N/A |
+| `permissions` | List<*String*> | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [Optional](../../models/components/OrganizationMembershipPublicMetadata.md) | :heavy_minus_sign: | Metadata saved on the organization membership, accessible from both Frontend and Backend APIs |
+| `privateMetadata` | [Optional](../../models/components/OrganizationMembershipPrivateMetadata.md) | :heavy_minus_sign: | Metadata saved on the organization membership, accessible only from the Backend API |
+| `organization` | [Optional](../../models/components/OrganizationMembershipOrganization.md) | :heavy_minus_sign: | N/A |
+| `publicUserData` | [Optional](../../models/components/PublicUserData.md) | :heavy_minus_sign: | N/A |
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation. |
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update. |
\ No newline at end of file
diff --git a/docs/models/components/OrganizationMembershipOrganization.md b/docs/models/components/OrganizationMembershipOrganization.md
index 22acd4c..4bad1ca 100644
--- a/docs/models/components/OrganizationMembershipOrganization.md
+++ b/docs/models/components/OrganizationMembershipOrganization.md
@@ -3,17 +3,17 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OrganizationMembershipOrganizationObject](../../models/components/OrganizationMembershipOrganizationObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `slug` | *String* | :heavy_check_mark: | N/A |
-| `membersCount` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
-| `adminDeleteEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [com.clerk.backend_api.models.components.OrganizationMembershipOrganizationPublicMetadata](../../models/components/OrganizationMembershipOrganizationPublicMetadata.md) | :heavy_check_mark: | N/A |
-| `privateMetadata` | [com.clerk.backend_api.models.components.OrganizationMembershipOrganizationPrivateMetadata](../../models/components/OrganizationMembershipOrganizationPrivateMetadata.md) | :heavy_check_mark: | N/A |
-| `createdBy` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
+| `object` | [OrganizationMembershipOrganizationObject](../../models/components/OrganizationMembershipOrganizationObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `slug` | *String* | :heavy_check_mark: | N/A |
+| `membersCount` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
+| `adminDeleteEnabled` | *Optional* | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [OrganizationMembershipOrganizationPublicMetadata](../../models/components/OrganizationMembershipOrganizationPublicMetadata.md) | :heavy_check_mark: | N/A |
+| `privateMetadata` | [OrganizationMembershipOrganizationPrivateMetadata](../../models/components/OrganizationMembershipOrganizationPrivateMetadata.md) | :heavy_check_mark: | N/A |
+| `createdBy` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/OrganizationMemberships.md b/docs/models/components/OrganizationMemberships.md
index 9cca8c4..8bbc80e 100644
--- a/docs/models/components/OrganizationMemberships.md
+++ b/docs/models/components/OrganizationMemberships.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.OrganizationMembership](../../models/components/OrganizationMembership.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of organization memberships
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `data` | List<[OrganizationMembership](../../models/components/OrganizationMembership.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of organization memberships
|
\ No newline at end of file
diff --git a/docs/models/components/OrganizationSettings.md b/docs/models/components/OrganizationSettings.md
index 8e1095c..108eac4 100644
--- a/docs/models/components/OrganizationSettings.md
+++ b/docs/models/components/OrganizationSettings.md
@@ -3,15 +3,15 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OrganizationSettingsObject](../../models/components/OrganizationSettingsObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value. |
-| `enabled` | *boolean* | :heavy_check_mark: | N/A |
-| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
-| `maxAllowedRoles` | *Optional extends Long>* | :heavy_minus_sign: | N/A |
-| `maxAllowedPermissions` | *Optional extends Long>* | :heavy_minus_sign: | N/A |
-| `creatorRole` | *String* | :heavy_check_mark: | The role key that a user will be assigned after creating an organization. |
-| `adminDeleteEnabled` | *boolean* | :heavy_check_mark: | The default for whether an admin can delete an organization with the Frontend API. |
-| `domainsEnabled` | *boolean* | :heavy_check_mark: | N/A |
-| `domainsEnrollmentModes` | List<[com.clerk.backend_api.models.components.DomainsEnrollmentModes](../../models/components/DomainsEnrollmentModes.md)> | :heavy_check_mark: | N/A |
-| `domainsDefaultRole` | *String* | :heavy_check_mark: | The role key that it will be used in order to create an organization invitation or suggestion. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
+| `object` | [OrganizationSettingsObject](../../models/components/OrganizationSettingsObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value. |
+| `enabled` | *boolean* | :heavy_check_mark: | N/A |
+| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
+| `maxAllowedRoles` | *Optional* | :heavy_minus_sign: | N/A |
+| `maxAllowedPermissions` | *Optional* | :heavy_minus_sign: | N/A |
+| `creatorRole` | *String* | :heavy_check_mark: | The role key that a user will be assigned after creating an organization. |
+| `adminDeleteEnabled` | *boolean* | :heavy_check_mark: | The default for whether an admin can delete an organization with the Frontend API. |
+| `domainsEnabled` | *boolean* | :heavy_check_mark: | N/A |
+| `domainsEnrollmentModes` | List<[DomainsEnrollmentModes](../../models/components/DomainsEnrollmentModes.md)> | :heavy_check_mark: | N/A |
+| `domainsDefaultRole` | *String* | :heavy_check_mark: | The role key that it will be used in order to create an organization invitation or suggestion. |
\ No newline at end of file
diff --git a/docs/models/components/OrganizationWithLogo.md b/docs/models/components/OrganizationWithLogo.md
index 6764d07..df649a7 100644
--- a/docs/models/components/OrganizationWithLogo.md
+++ b/docs/models/components/OrganizationWithLogo.md
@@ -3,20 +3,20 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.OrganizationWithLogoObject](../../models/components/OrganizationWithLogoObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `slug` | *String* | :heavy_check_mark: | N/A |
-| `membersCount` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
-| `adminDeleteEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [com.clerk.backend_api.models.components.OrganizationWithLogoPublicMetadata](../../models/components/OrganizationWithLogoPublicMetadata.md) | :heavy_check_mark: | N/A |
-| `privateMetadata` | [com.clerk.backend_api.models.components.OrganizationWithLogoPrivateMetadata](../../models/components/OrganizationWithLogoPrivateMetadata.md) | :heavy_check_mark: | N/A |
-| `createdBy` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
-| ~~`logoUrl`~~ | *Optional extends String>* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. |
-| `imageUrl` | *String* | :heavy_check_mark: | N/A |
-| `hasImage` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
+| `object` | [OrganizationWithLogoObject](../../models/components/OrganizationWithLogoObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `slug` | *String* | :heavy_check_mark: | N/A |
+| `membersCount` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `maxAllowedMemberships` | *long* | :heavy_check_mark: | N/A |
+| `adminDeleteEnabled` | *Optional* | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [OrganizationWithLogoPublicMetadata](../../models/components/OrganizationWithLogoPublicMetadata.md) | :heavy_check_mark: | N/A |
+| `privateMetadata` | [OrganizationWithLogoPrivateMetadata](../../models/components/OrganizationWithLogoPrivateMetadata.md) | :heavy_check_mark: | N/A |
+| `createdBy` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
+| ~~`logoUrl`~~ | *Optional* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. |
+| `imageUrl` | *String* | :heavy_check_mark: | N/A |
+| `hasImage` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Organizations.md b/docs/models/components/Organizations.md
index 03cac70..0580a72 100644
--- a/docs/models/components/Organizations.md
+++ b/docs/models/components/Organizations.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.Organization](../../models/components/Organization.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of organizations
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `data` | List<[Organization](../../models/components/Organization.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of organizations
|
\ No newline at end of file
diff --git a/docs/models/components/Otp.md b/docs/models/components/Otp.md
index c92315e..46bdb90 100644
--- a/docs/models/components/Otp.md
+++ b/docs/models/components/Otp.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.VerificationStatus](../../models/components/VerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.Strategy](../../models/components/Strategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *long* | :heavy_check_mark: | N/A |
-| `expireAt` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `status` | [VerificationStatus](../../models/components/VerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [Strategy](../../models/components/Strategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *Optional* | :heavy_minus_sign: | N/A |
+| `expireAt` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Passkey.md b/docs/models/components/Passkey.md
index 9b2202e..b733561 100644
--- a/docs/models/components/Passkey.md
+++ b/docs/models/components/Passkey.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.PasskeyVerificationStatus](../../models/components/PasskeyVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.PasskeyVerificationStrategy](../../models/components/PasskeyVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `nonce` | [Optional extends com.clerk.backend_api.models.components.VerificationNonce>](../../models/components/VerificationNonce.md) | :heavy_minus_sign: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `status` | [PasskeyVerificationStatus](../../models/components/PasskeyVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [PasskeyVerificationStrategy](../../models/components/PasskeyVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `nonce` | [Optional](../../models/components/VerificationNonce.md) | :heavy_minus_sign: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/PhoneNumber.md b/docs/models/components/PhoneNumber.md
index b7607c6..42f2bc3 100644
--- a/docs/models/components/PhoneNumber.md
+++ b/docs/models/components/PhoneNumber.md
@@ -3,16 +3,16 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [com.clerk.backend_api.models.components.PhoneNumberObject](../../models/components/PhoneNumberObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `phoneNumber` | *String* | :heavy_check_mark: | N/A |
-| `reservedForSecondFactor` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `defaultSecondFactor` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `reserved` | *boolean* | :heavy_check_mark: | N/A |
-| `verification` | [Optional extends com.clerk.backend_api.models.components.PhoneNumberVerification>](../../models/components/PhoneNumberVerification.md) | :heavy_check_mark: | N/A |
-| `linkedTo` | List<[com.clerk.backend_api.models.components.IdentificationLink](../../models/components/IdentificationLink.md)> | :heavy_check_mark: | N/A |
-| `backupCodes` | List<*String*> | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [PhoneNumberObject](../../models/components/PhoneNumberObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `phoneNumber` | *String* | :heavy_check_mark: | N/A |
+| `reservedForSecondFactor` | *Optional* | :heavy_minus_sign: | N/A |
+| `defaultSecondFactor` | *Optional* | :heavy_minus_sign: | N/A |
+| `reserved` | *boolean* | :heavy_check_mark: | N/A |
+| `verification` | [Optional](../../models/components/PhoneNumberVerification.md) | :heavy_check_mark: | N/A |
+| `linkedTo` | List<[IdentificationLink](../../models/components/IdentificationLink.md)> | :heavy_check_mark: | N/A |
+| `backupCodes` | List<*String*> | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
diff --git a/docs/models/components/ProxyCheck.md b/docs/models/components/ProxyCheck.md
index 2eeea81..852af45 100644
--- a/docs/models/components/ProxyCheck.md
+++ b/docs/models/components/ProxyCheck.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.ProxyCheckObject](../../models/components/ProxyCheckObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `domainId` | *String* | :heavy_check_mark: | N/A |
-| `lastRunAt` | *long* | :heavy_check_mark: | N/A |
-| `proxyUrl` | *String* | :heavy_check_mark: | N/A |
-| `successful` | *boolean* | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | N/A |
-| `updatedAt` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `object` | [ProxyCheckObject](../../models/components/ProxyCheckObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `domainId` | *String* | :heavy_check_mark: | N/A |
+| `lastRunAt` | *long* | :heavy_check_mark: | N/A |
+| `proxyUrl` | *String* | :heavy_check_mark: | N/A |
+| `successful` | *boolean* | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | N/A |
+| `updatedAt` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/PublicUserData.md b/docs/models/components/PublicUserData.md
index a6bcdea..d51504b 100644
--- a/docs/models/components/PublicUserData.md
+++ b/docs/models/components/PublicUserData.md
@@ -5,10 +5,10 @@
| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
-| `userId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `firstName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `lastName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| ~~`profileImageUrl`~~ | *JsonNullable extends String>* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. |
-| `imageUrl` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `hasImage` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `identifier` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| `userId` | *Optional* | :heavy_minus_sign: | N/A |
+| `firstName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `lastName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| ~~`profileImageUrl`~~ | *JsonNullable* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. |
+| `imageUrl` | *Optional* | :heavy_minus_sign: | N/A |
+| `hasImage` | *Optional* | :heavy_minus_sign: | N/A |
+| `identifier` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/RedirectURL.md b/docs/models/components/RedirectURL.md
index 76b2cfd..4a9782e 100644
--- a/docs/models/components/RedirectURL.md
+++ b/docs/models/components/RedirectURL.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.RedirectURLObject](../../models/components/RedirectURLObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `url` | *String* | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `object` | [RedirectURLObject](../../models/components/RedirectURLObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `url` | *String* | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/SAMLAccount.md b/docs/models/components/SAMLAccount.md
index 7b79076..e69579f 100644
--- a/docs/models/components/SAMLAccount.md
+++ b/docs/models/components/SAMLAccount.md
@@ -3,15 +3,15 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `object` | [com.clerk.backend_api.models.components.SAMLAccountObject](../../models/components/SAMLAccountObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `provider` | *String* | :heavy_check_mark: | N/A |
-| `active` | *boolean* | :heavy_check_mark: | N/A |
-| `emailAddress` | *String* | :heavy_check_mark: | N/A |
-| `firstName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `lastName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `providerUserId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.SAMLAccountPublicMetadata>](../../models/components/SAMLAccountPublicMetadata.md) | :heavy_minus_sign: | N/A |
-| `verification` | [Optional extends com.clerk.backend_api.models.components.SAMLAccountVerification>](../../models/components/SAMLAccountVerification.md) | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `object` | [SAMLAccountObject](../../models/components/SAMLAccountObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `provider` | *String* | :heavy_check_mark: | N/A |
+| `active` | *boolean* | :heavy_check_mark: | N/A |
+| `emailAddress` | *String* | :heavy_check_mark: | N/A |
+| `firstName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `lastName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `providerUserId` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [Optional](../../models/components/SAMLAccountPublicMetadata.md) | :heavy_minus_sign: | N/A |
+| `verification` | [Optional](../../models/components/SAMLAccountVerification.md) | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/SAMLConnection.md b/docs/models/components/SAMLConnection.md
index f9b81aa..e155a68 100644
--- a/docs/models/components/SAMLConnection.md
+++ b/docs/models/components/SAMLConnection.md
@@ -3,26 +3,26 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.SAMLConnectionObject](../../models/components/SAMLConnectionObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `domain` | *String* | :heavy_check_mark: | N/A |
-| `idpEntityId` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `idpSsoUrl` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `idpCertificate` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `idpMetadataUrl` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `idpMetadata` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `acsUrl` | *String* | :heavy_check_mark: | N/A |
-| `spEntityId` | *String* | :heavy_check_mark: | N/A |
-| `spMetadataUrl` | *String* | :heavy_check_mark: | N/A |
-| `attributeMapping` | [Optional extends com.clerk.backend_api.models.components.AttributeMapping>](../../models/components/AttributeMapping.md) | :heavy_minus_sign: | N/A |
-| `active` | *boolean* | :heavy_check_mark: | N/A |
-| `provider` | *String* | :heavy_check_mark: | N/A |
-| `userCount` | *long* | :heavy_check_mark: | N/A |
-| `syncUserAttributes` | *boolean* | :heavy_check_mark: | N/A |
-| `allowSubdomains` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `allowIdpInitiated` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
+| `object` | [SAMLConnectionObject](../../models/components/SAMLConnectionObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `domain` | *String* | :heavy_check_mark: | N/A |
+| `idpEntityId` | *Optional* | :heavy_check_mark: | N/A |
+| `idpSsoUrl` | *Optional* | :heavy_check_mark: | N/A |
+| `idpCertificate` | *Optional* | :heavy_check_mark: | N/A |
+| `idpMetadataUrl` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `idpMetadata` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `acsUrl` | *String* | :heavy_check_mark: | N/A |
+| `spEntityId` | *String* | :heavy_check_mark: | N/A |
+| `spMetadataUrl` | *String* | :heavy_check_mark: | N/A |
+| `attributeMapping` | [Optional](../../models/components/AttributeMapping.md) | :heavy_minus_sign: | N/A |
+| `active` | *boolean* | :heavy_check_mark: | N/A |
+| `provider` | *String* | :heavy_check_mark: | N/A |
+| `userCount` | *long* | :heavy_check_mark: | N/A |
+| `syncUserAttributes` | *boolean* | :heavy_check_mark: | N/A |
+| `allowSubdomains` | *Optional* | :heavy_minus_sign: | N/A |
+| `allowIdpInitiated` | *Optional* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/SAMLConnections.md b/docs/models/components/SAMLConnections.md
index 33a829a..18f5039 100644
--- a/docs/models/components/SAMLConnections.md
+++ b/docs/models/components/SAMLConnections.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `data` | List<[com.clerk.backend_api.models.components.SAMLConnection](../../models/components/SAMLConnection.md)> | :heavy_check_mark: | N/A |
-| `totalCount` | *long* | :heavy_check_mark: | Total number of SAML Connections
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `data` | List<[SAMLConnection](../../models/components/SAMLConnection.md)> | :heavy_check_mark: | N/A |
+| `totalCount` | *long* | :heavy_check_mark: | Total number of SAML Connections
|
\ No newline at end of file
diff --git a/docs/models/components/SAMLErrorClerkError.md b/docs/models/components/SAMLErrorClerkError.md
index 242bc51..3656831 100644
--- a/docs/models/components/SAMLErrorClerkError.md
+++ b/docs/models/components/SAMLErrorClerkError.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
-| `message` | *String* | :heavy_check_mark: | N/A |
-| `longMessage` | *String* | :heavy_check_mark: | N/A |
-| `code` | *String* | :heavy_check_mark: | N/A |
-| `meta` | [Optional extends com.clerk.backend_api.models.components.ClerkErrorErrorMeta>](../../models/components/ClerkErrorErrorMeta.md) | :heavy_minus_sign: | N/A |
-| `clerkTraceId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `message` | *String* | :heavy_check_mark: | N/A |
+| `longMessage` | *String* | :heavy_check_mark: | N/A |
+| `code` | *String* | :heavy_check_mark: | N/A |
+| `meta` | [Optional](../../models/components/ClerkErrorErrorMeta.md) | :heavy_minus_sign: | N/A |
+| `clerkTraceId` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Saml.md b/docs/models/components/Saml.md
index 4ba661e..25d7775 100644
--- a/docs/models/components/Saml.md
+++ b/docs/models/components/Saml.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.SAMLVerificationStatus](../../models/components/SAMLVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.SAMLVerificationStrategy](../../models/components/SAMLVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `externalVerificationRedirectUrl` | *Optional extends String>* | :heavy_check_mark: | N/A |
-| `error` | [JsonNullable extends com.clerk.backend_api.models.components.VerificationError>](../../models/components/VerificationError.md) | :heavy_minus_sign: | N/A |
-| `expireAt` | *long* | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `status` | [SAMLVerificationStatus](../../models/components/SAMLVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [SAMLVerificationStrategy](../../models/components/SAMLVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `externalVerificationRedirectUrl` | *Optional* | :heavy_check_mark: | N/A |
+| `error` | [JsonNullable](../../models/components/VerificationError.md) | :heavy_minus_sign: | N/A |
+| `expireAt` | *long* | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/SchemasPasskey.md b/docs/models/components/SchemasPasskey.md
index dd3a42d..d46c600 100644
--- a/docs/models/components/SchemasPasskey.md
+++ b/docs/models/components/SchemasPasskey.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [com.clerk.backend_api.models.components.SchemasPasskeyObject](../../models/components/SchemasPasskeyObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `name` | *String* | :heavy_check_mark: | N/A |
-| `lastUsedAt` | *long* | :heavy_check_mark: | Unix timestamp of when the passkey was last used.
|
-| `verification` | [Optional extends com.clerk.backend_api.models.components.SchemasPasskeyVerification>](../../models/components/SchemasPasskeyVerification.md) | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [SchemasPasskeyObject](../../models/components/SchemasPasskeyObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `name` | *String* | :heavy_check_mark: | N/A |
+| `lastUsedAt` | *long* | :heavy_check_mark: | Unix timestamp of when the passkey was last used.
|
+| `verification` | [Optional](../../models/components/SchemasPasskeyVerification.md) | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Security.md b/docs/models/components/Security.md
index 494b03f..4934713 100644
--- a/docs/models/components/Security.md
+++ b/docs/models/components/Security.md
@@ -3,6 +3,6 @@
## Fields
-| Field | Type | Required | Description |
-| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
-| `bearerAuth` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `bearerAuth` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Session.md b/docs/models/components/Session.md
index 3d4e989..17e351a 100644
--- a/docs/models/components/Session.md
+++ b/docs/models/components/Session.md
@@ -3,17 +3,17 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.SessionObject](../../models/components/SessionObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `userId` | *String* | :heavy_check_mark: | N/A |
-| `clientId` | *String* | :heavy_check_mark: | N/A |
-| `actor` | [JsonNullable extends com.clerk.backend_api.models.components.Actor>](../../models/components/Actor.md) | :heavy_minus_sign: | N/A |
-| `status` | [com.clerk.backend_api.models.components.Status](../../models/components/Status.md) | :heavy_check_mark: | N/A |
-| `lastActiveOrganizationId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `lastActiveAt` | *long* | :heavy_check_mark: | N/A |
-| `expireAt` | *long* | :heavy_check_mark: | N/A |
-| `abandonAt` | *long* | :heavy_check_mark: | N/A |
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `object` | [SessionObject](../../models/components/SessionObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `userId` | *String* | :heavy_check_mark: | N/A |
+| `clientId` | *String* | :heavy_check_mark: | N/A |
+| `actor` | [JsonNullable](../../models/components/Actor.md) | :heavy_minus_sign: | N/A |
+| `status` | [Status](../../models/components/Status.md) | :heavy_check_mark: | N/A |
+| `lastActiveOrganizationId` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `lastActiveAt` | *long* | :heavy_check_mark: | N/A |
+| `expireAt` | *long* | :heavy_check_mark: | N/A |
+| `abandonAt` | *long* | :heavy_check_mark: | N/A |
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
\ No newline at end of file
diff --git a/docs/models/components/SignInToken.md b/docs/models/components/SignInToken.md
index 537232f..fc26b4b 100644
--- a/docs/models/components/SignInToken.md
+++ b/docs/models/components/SignInToken.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.SignInTokenObject](../../models/components/SignInTokenObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `status` | [com.clerk.backend_api.models.components.SignInTokenStatus](../../models/components/SignInTokenStatus.md) | :heavy_check_mark: | N/A |
-| `userId` | *String* | :heavy_check_mark: | N/A |
-| `token` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `url` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `object` | [SignInTokenObject](../../models/components/SignInTokenObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `status` | [SignInTokenStatus](../../models/components/SignInTokenStatus.md) | :heavy_check_mark: | N/A |
+| `userId` | *String* | :heavy_check_mark: | N/A |
+| `token` | *Optional* | :heavy_minus_sign: | N/A |
+| `url` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.
|
\ No newline at end of file
diff --git a/docs/models/components/SignUp.md b/docs/models/components/SignUp.md
index ec3744d..077af0b 100644
--- a/docs/models/components/SignUp.md
+++ b/docs/models/components/SignUp.md
@@ -3,28 +3,28 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.SignUpObject](../../models/components/SignUpObject.md) | :heavy_check_mark: | N/A |
-| `id` | *String* | :heavy_check_mark: | N/A |
-| `status` | [com.clerk.backend_api.models.components.SignUpStatus](../../models/components/SignUpStatus.md) | :heavy_check_mark: | N/A |
-| `requiredFields` | List<*String*> | :heavy_minus_sign: | N/A |
-| `optionalFields` | List<*String*> | :heavy_minus_sign: | N/A |
-| `missingFields` | List<*String*> | :heavy_minus_sign: | N/A |
-| `unverifiedFields` | List<*String*> | :heavy_minus_sign: | N/A |
-| `verifications` | [Optional extends com.clerk.backend_api.models.components.Verifications>](../../models/components/Verifications.md) | :heavy_minus_sign: | N/A |
-| `username` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `emailAddress` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `phoneNumber` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `web3Wallet` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `passwordEnabled` | *boolean* | :heavy_check_mark: | N/A |
-| `firstName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `lastName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `unsafeMetadata` | [Optional extends com.clerk.backend_api.models.components.SignUpUnsafeMetadata>](../../models/components/SignUpUnsafeMetadata.md) | :heavy_minus_sign: | N/A |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.SignUpPublicMetadata>](../../models/components/SignUpPublicMetadata.md) | :heavy_minus_sign: | N/A |
-| `customAction` | *boolean* | :heavy_check_mark: | N/A |
-| `externalId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `createdSessionId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `createdUserId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A |
-| `abandonAt` | *long* | :heavy_check_mark: | N/A |
-| `externalAccount` | [Optional extends com.clerk.backend_api.models.components.ExternalAccount>](../../models/components/ExternalAccount.md) | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `object` | [SignUpObject](../../models/components/SignUpObject.md) | :heavy_check_mark: | N/A |
+| `id` | *String* | :heavy_check_mark: | N/A |
+| `status` | [SignUpStatus](../../models/components/SignUpStatus.md) | :heavy_check_mark: | N/A |
+| `requiredFields` | List<*String*> | :heavy_minus_sign: | N/A |
+| `optionalFields` | List<*String*> | :heavy_minus_sign: | N/A |
+| `missingFields` | List<*String*> | :heavy_minus_sign: | N/A |
+| `unverifiedFields` | List<*String*> | :heavy_minus_sign: | N/A |
+| `verifications` | [Optional](../../models/components/Verifications.md) | :heavy_minus_sign: | N/A |
+| `username` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `emailAddress` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `phoneNumber` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `web3Wallet` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `passwordEnabled` | *boolean* | :heavy_check_mark: | N/A |
+| `firstName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `lastName` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `unsafeMetadata` | [Optional](../../models/components/SignUpUnsafeMetadata.md) | :heavy_minus_sign: | N/A |
+| `publicMetadata` | [Optional](../../models/components/SignUpPublicMetadata.md) | :heavy_minus_sign: | N/A |
+| `customAction` | *boolean* | :heavy_check_mark: | N/A |
+| `externalId` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `createdSessionId` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `createdUserId` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `abandonAt` | *long* | :heavy_check_mark: | N/A |
+| `externalAccount` | [Optional](../../models/components/ExternalAccount.md) | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Template.md b/docs/models/components/Template.md
index 9c2a3c6..3b9079d 100644
--- a/docs/models/components/Template.md
+++ b/docs/models/components/Template.md
@@ -3,26 +3,26 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [Optional extends com.clerk.backend_api.models.components.TemplateObject>](../../models/components/TemplateObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
-| `instanceId` | *JsonNullable extends String>* | :heavy_minus_sign: | the id of the instance the template belongs to |
-| `resourceType` | *Optional extends String>* | :heavy_minus_sign: | whether this is a system (default) or user overridden) template |
-| `templateType` | *Optional extends String>* | :heavy_minus_sign: | whether this is an email or SMS template |
-| `name` | *Optional extends String>* | :heavy_minus_sign: | user-friendly name of the template |
-| `slug` | *Optional extends String>* | :heavy_minus_sign: | machine-friendly name of the template |
-| `position` | *Optional extends Long>* | :heavy_minus_sign: | position with the listing of templates |
-| `canRevert` | *Optional extends Boolean>* | :heavy_minus_sign: | whether this template can be reverted to the corresponding system default |
-| `canDelete` | *Optional extends Boolean>* | :heavy_minus_sign: | whether this template can be deleted |
-| `canDisable` | *Optional extends Boolean>* | :heavy_minus_sign: | whether this template can be disabled, true only for notification SMS templates |
-| `subject` | *JsonNullable extends String>* | :heavy_minus_sign: | email subject |
-| `markup` | *Optional extends String>* | :heavy_minus_sign: | the editor markup used to generate the body of the template |
-| `body` | *Optional extends String>* | :heavy_minus_sign: | the template body before variable interpolation |
-| `availableVariables` | List<*String*> | :heavy_minus_sign: | list of variables that are available for use in the template body |
-| `requiredVariables` | List<*String*> | :heavy_minus_sign: | list of variables that must be contained in the template body |
-| `fromEmailName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `replyToEmailName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `deliveredByClerk` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A |
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update.
|
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation.
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [Optional](../../models/components/TemplateObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
|
+| `instanceId` | *JsonNullable* | :heavy_minus_sign: | the id of the instance the template belongs to |
+| `resourceType` | *Optional* | :heavy_minus_sign: | whether this is a system (default) or user overridden) template |
+| `templateType` | *Optional* | :heavy_minus_sign: | whether this is an email or SMS template |
+| `name` | *Optional* | :heavy_minus_sign: | user-friendly name of the template |
+| `slug` | *Optional* | :heavy_minus_sign: | machine-friendly name of the template |
+| `position` | *Optional* | :heavy_minus_sign: | position with the listing of templates |
+| `canRevert` | *Optional* | :heavy_minus_sign: | whether this template can be reverted to the corresponding system default |
+| `canDelete` | *Optional* | :heavy_minus_sign: | whether this template can be deleted |
+| `canDisable` | *Optional* | :heavy_minus_sign: | whether this template can be disabled, true only for notification SMS templates |
+| `subject` | *JsonNullable* | :heavy_minus_sign: | email subject |
+| `markup` | *Optional* | :heavy_minus_sign: | the editor markup used to generate the body of the template |
+| `body` | *Optional* | :heavy_minus_sign: | the template body before variable interpolation |
+| `availableVariables` | List<*String*> | :heavy_minus_sign: | list of variables that are available for use in the template body |
+| `requiredVariables` | List<*String*> | :heavy_minus_sign: | list of variables that must be contained in the template body |
+| `fromEmailName` | *Optional* | :heavy_minus_sign: | N/A |
+| `replyToEmailName` | *Optional* | :heavy_minus_sign: | N/A |
+| `deliveredByClerk` | *Optional* | :heavy_minus_sign: | N/A |
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update.
|
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation.
|
\ No newline at end of file
diff --git a/docs/models/components/TestingToken.md b/docs/models/components/TestingToken.md
index 8fc016e..2d03e5d 100644
--- a/docs/models/components/TestingToken.md
+++ b/docs/models/components/TestingToken.md
@@ -5,6 +5,6 @@
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
-| `object` | [com.clerk.backend_api.models.components.TestingTokenObject](../../models/components/TestingTokenObject.md) | :heavy_check_mark: | N/A | |
+| `object` | [TestingTokenObject](../../models/components/TestingTokenObject.md) | :heavy_check_mark: | N/A | |
| `token` | *String* | :heavy_check_mark: | The actual token. This value is meant to be passed in the `__clerk_testing_token` query parameter with requests to the Frontend API. | 1713877200-c_2J2MvPu9PnXcuhbPZNao0LOXqK9A7YrnBn0HmIWxy |
| `expiresAt` | *long* | :heavy_check_mark: | Unix timestamp of the token's expiration time.
| 1713880800 |
\ No newline at end of file
diff --git a/docs/models/components/Ticket.md b/docs/models/components/Ticket.md
index d634dd1..5ca25f7 100644
--- a/docs/models/components/Ticket.md
+++ b/docs/models/components/Ticket.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.TicketVerificationStatus](../../models/components/TicketVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.TicketVerificationStrategy](../../models/components/TicketVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `status` | [TicketVerificationStatus](../../models/components/TicketVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [TicketVerificationStrategy](../../models/components/TicketVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/TotalCount.md b/docs/models/components/TotalCount.md
index b7ba547..01f8e44 100644
--- a/docs/models/components/TotalCount.md
+++ b/docs/models/components/TotalCount.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `object` | [com.clerk.backend_api.models.components.TotalCountObject](../../models/components/TotalCountObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `totalCount` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `object` | [TotalCountObject](../../models/components/TotalCountObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `totalCount` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/User.md b/docs/models/components/User.md
index a8f0598..cc8fbe9 100644
--- a/docs/models/components/User.md
+++ b/docs/models/components/User.md
@@ -5,40 +5,40 @@
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A | |
-| `object` | [Optional extends com.clerk.backend_api.models.components.UserObject>](../../models/components/UserObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
| |
-| `externalId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `primaryEmailAddressId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `primaryPhoneNumberId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `primaryWeb3WalletId` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `username` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `firstName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| `lastName` | *JsonNullable extends String>* | :heavy_minus_sign: | N/A | |
-| ~~`profileImageUrl`~~ | *Optional extends String>* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | |
-| `imageUrl` | *Optional extends String>* | :heavy_minus_sign: | N/A | |
-| `hasImage` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.components.PublicMetadata>](../../models/components/PublicMetadata.md) | :heavy_minus_sign: | N/A | |
-| `privateMetadata` | [JsonNullable extends com.clerk.backend_api.models.components.PrivateMetadata>](../../models/components/PrivateMetadata.md) | :heavy_minus_sign: | N/A | |
-| `unsafeMetadata` | [Optional extends com.clerk.backend_api.models.components.UnsafeMetadata>](../../models/components/UnsafeMetadata.md) | :heavy_minus_sign: | N/A | |
-| `emailAddresses` | List<[com.clerk.backend_api.models.components.EmailAddress](../../models/components/EmailAddress.md)> | :heavy_minus_sign: | N/A | |
-| `phoneNumbers` | List<[com.clerk.backend_api.models.components.PhoneNumber](../../models/components/PhoneNumber.md)> | :heavy_minus_sign: | N/A | |
-| `web3Wallets` | List<[com.clerk.backend_api.models.components.Web3Wallet](../../models/components/Web3Wallet.md)> | :heavy_minus_sign: | N/A | |
-| `passkeys` | List<[com.clerk.backend_api.models.components.SchemasPasskey](../../models/components/SchemasPasskey.md)> | :heavy_minus_sign: | N/A | |
-| `passwordEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | |
-| `twoFactorEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | |
-| `totpEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | |
-| `backupCodeEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | N/A | |
-| `mfaEnabledAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | Unix timestamp of when MFA was last enabled for this user. It should be noted that this field is not nullified if MFA is disabled.
| |
-| `mfaDisabledAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | Unix timestamp of when MFA was last disabled for this user. It should be noted that this field is not nullified if MFA is enabled again.
| |
-| `externalAccounts` | List<[com.clerk.backend_api.models.components.ExternalAccounts](../../models/components/ExternalAccounts.md)> | :heavy_minus_sign: | N/A | |
-| `samlAccounts` | List<[com.clerk.backend_api.models.components.SAMLAccount](../../models/components/SAMLAccount.md)> | :heavy_minus_sign: | N/A | |
-| `lastSignInAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | Unix timestamp of last sign-in.
| |
-| `banned` | *Optional extends Boolean>* | :heavy_minus_sign: | Flag to denote whether user is banned or not.
| |
-| `locked` | *Optional extends Boolean>* | :heavy_minus_sign: | Flag to denote whether user is currently locked, i.e. restricted from signing in or not.
| |
-| `lockoutExpiresInSeconds` | *JsonNullable extends Long>* | :heavy_minus_sign: | The number of seconds remaining until the lockout period expires for a locked user. A null value for a locked user indicates that lockout never expires.
| |
-| `verificationAttemptsRemaining` | *JsonNullable extends Long>* | :heavy_minus_sign: | The number of verification attempts remaining until the user is locked. Null if account lockout is not enabled. Note: if a user is locked explicitly via the Backend API, they may still have verification attempts remaining.
| |
-| `updatedAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of last update.
| |
-| `createdAt` | *Optional extends Long>* | :heavy_minus_sign: | Unix timestamp of creation.
| |
-| `deleteSelfEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | If enabled, user can delete themselves via FAPI.
| |
-| `createOrganizationEnabled` | *Optional extends Boolean>* | :heavy_minus_sign: | If enabled, user can create organizations via FAPI.
| |
-| `lastActiveAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | Unix timestamp of the latest session activity, with day precision.
| 1700690400000 |
\ No newline at end of file
+| `id` | *Optional* | :heavy_minus_sign: | N/A | |
+| `object` | [Optional](../../models/components/UserObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value.
| |
+| `externalId` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `primaryEmailAddressId` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `primaryPhoneNumberId` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `primaryWeb3WalletId` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `username` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `firstName` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| `lastName` | *JsonNullable* | :heavy_minus_sign: | N/A | |
+| ~~`profileImageUrl`~~ | *Optional* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | |
+| `imageUrl` | *Optional* | :heavy_minus_sign: | N/A | |
+| `hasImage` | *Optional* | :heavy_minus_sign: | N/A | |
+| `publicMetadata` | [Optional](../../models/components/PublicMetadata.md) | :heavy_minus_sign: | N/A | |
+| `privateMetadata` | [JsonNullable](../../models/components/PrivateMetadata.md) | :heavy_minus_sign: | N/A | |
+| `unsafeMetadata` | [Optional](../../models/components/UnsafeMetadata.md) | :heavy_minus_sign: | N/A | |
+| `emailAddresses` | List<[EmailAddress](../../models/components/EmailAddress.md)> | :heavy_minus_sign: | N/A | |
+| `phoneNumbers` | List<[PhoneNumber](../../models/components/PhoneNumber.md)> | :heavy_minus_sign: | N/A | |
+| `web3Wallets` | List<[Web3Wallet](../../models/components/Web3Wallet.md)> | :heavy_minus_sign: | N/A | |
+| `passkeys` | List<[SchemasPasskey](../../models/components/SchemasPasskey.md)> | :heavy_minus_sign: | N/A | |
+| `passwordEnabled` | *Optional* | :heavy_minus_sign: | N/A | |
+| `twoFactorEnabled` | *Optional* | :heavy_minus_sign: | N/A | |
+| `totpEnabled` | *Optional* | :heavy_minus_sign: | N/A | |
+| `backupCodeEnabled` | *Optional* | :heavy_minus_sign: | N/A | |
+| `mfaEnabledAt` | *JsonNullable* | :heavy_minus_sign: | Unix timestamp of when MFA was last enabled for this user. It should be noted that this field is not nullified if MFA is disabled.
| |
+| `mfaDisabledAt` | *JsonNullable* | :heavy_minus_sign: | Unix timestamp of when MFA was last disabled for this user. It should be noted that this field is not nullified if MFA is enabled again.
| |
+| `externalAccounts` | List<[ExternalAccounts](../../models/components/ExternalAccounts.md)> | :heavy_minus_sign: | N/A | |
+| `samlAccounts` | List<[SAMLAccount](../../models/components/SAMLAccount.md)> | :heavy_minus_sign: | N/A | |
+| `lastSignInAt` | *JsonNullable* | :heavy_minus_sign: | Unix timestamp of last sign-in.
| |
+| `banned` | *Optional* | :heavy_minus_sign: | Flag to denote whether user is banned or not.
| |
+| `locked` | *Optional* | :heavy_minus_sign: | Flag to denote whether user is currently locked, i.e. restricted from signing in or not.
| |
+| `lockoutExpiresInSeconds` | *JsonNullable* | :heavy_minus_sign: | The number of seconds remaining until the lockout period expires for a locked user. A null value for a locked user indicates that lockout never expires.
| |
+| `verificationAttemptsRemaining` | *JsonNullable* | :heavy_minus_sign: | The number of verification attempts remaining until the user is locked. Null if account lockout is not enabled. Note: if a user is locked explicitly via the Backend API, they may still have verification attempts remaining.
| |
+| `updatedAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of last update.
| |
+| `createdAt` | *Optional* | :heavy_minus_sign: | Unix timestamp of creation.
| |
+| `deleteSelfEnabled` | *Optional* | :heavy_minus_sign: | If enabled, user can delete themselves via FAPI.
| |
+| `createOrganizationEnabled` | *Optional* | :heavy_minus_sign: | If enabled, user can create organizations via FAPI.
| |
+| `lastActiveAt` | *JsonNullable* | :heavy_minus_sign: | Unix timestamp of the latest session activity, with day precision.
| 1700690400000 |
\ No newline at end of file
diff --git a/docs/models/components/VerificationAdmin.md b/docs/models/components/VerificationAdmin.md
index dab3f3a..deb020e 100644
--- a/docs/models/components/VerificationAdmin.md
+++ b/docs/models/components/VerificationAdmin.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.AdminVerificationPhoneNumberStatus](../../models/components/AdminVerificationPhoneNumberStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.AdminVerificationStrategy](../../models/components/AdminVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
+| `status` | [AdminVerificationPhoneNumberStatus](../../models/components/AdminVerificationPhoneNumberStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [AdminVerificationStrategy](../../models/components/AdminVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/VerificationOTP.md b/docs/models/components/VerificationOTP.md
index 4329c98..8dda9c7 100644
--- a/docs/models/components/VerificationOTP.md
+++ b/docs/models/components/VerificationOTP.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.OTPVerificationStatus](../../models/components/OTPVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.OTPVerificationStrategy](../../models/components/OTPVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *long* | :heavy_check_mark: | N/A |
-| `expireAt` | *long* | :heavy_check_mark: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `status` | [OTPVerificationStatus](../../models/components/OTPVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [OTPVerificationStrategy](../../models/components/OTPVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *Optional* | :heavy_minus_sign: | N/A |
+| `expireAt` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Web3Signature.md b/docs/models/components/Web3Signature.md
index 6f2abcd..487884c 100644
--- a/docs/models/components/Web3Signature.md
+++ b/docs/models/components/Web3Signature.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.Web3SignatureVerificationStatus](../../models/components/Web3SignatureVerificationStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.Web3SignatureVerificationStrategy](../../models/components/Web3SignatureVerificationStrategy.md) | :heavy_check_mark: | N/A |
-| `nonce` | [com.clerk.backend_api.models.components.Nonce](../../models/components/Nonce.md) | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
+| `status` | [Web3SignatureVerificationStatus](../../models/components/Web3SignatureVerificationStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [Web3SignatureVerificationStrategy](../../models/components/Web3SignatureVerificationStrategy.md) | :heavy_check_mark: | N/A |
+| `nonce` | [Nonce](../../models/components/Nonce.md) | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/components/Web3Wallet.md b/docs/models/components/Web3Wallet.md
index 08e8e33..28f9560 100644
--- a/docs/models/components/Web3Wallet.md
+++ b/docs/models/components/Web3Wallet.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `object` | [com.clerk.backend_api.models.components.Web3WalletObject](../../models/components/Web3WalletObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
-| `web3Wallet` | *String* | :heavy_check_mark: | N/A |
-| `verification` | [Optional extends com.clerk.backend_api.models.components.Web3WalletVerification>](../../models/components/Web3WalletVerification.md) | :heavy_check_mark: | N/A |
-| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
-| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `id` | *Optional* | :heavy_minus_sign: | N/A |
+| `object` | [Web3WalletObject](../../models/components/Web3WalletObject.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.
|
+| `web3Wallet` | *String* | :heavy_check_mark: | N/A |
+| `verification` | [Optional](../../models/components/Web3WalletVerification.md) | :heavy_check_mark: | N/A |
+| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
+| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation
|
\ No newline at end of file
diff --git a/docs/models/components/Web3WalletVerificationAdmin.md b/docs/models/components/Web3WalletVerificationAdmin.md
index 6de2aa5..e326814 100644
--- a/docs/models/components/Web3WalletVerificationAdmin.md
+++ b/docs/models/components/Web3WalletVerificationAdmin.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
-| `status` | [com.clerk.backend_api.models.components.AdminVerificationWeb3WalletStatus](../../models/components/AdminVerificationWeb3WalletStatus.md) | :heavy_check_mark: | N/A |
-| `strategy` | [com.clerk.backend_api.models.components.AdminVerificationWeb3WalletStrategy](../../models/components/AdminVerificationWeb3WalletStrategy.md) | :heavy_check_mark: | N/A |
-| `attempts` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
-| `expireAt` | *JsonNullable extends Long>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
+| `status` | [AdminVerificationWeb3WalletStatus](../../models/components/AdminVerificationWeb3WalletStatus.md) | :heavy_check_mark: | N/A |
+| `strategy` | [AdminVerificationWeb3WalletStrategy](../../models/components/AdminVerificationWeb3WalletStrategy.md) | :heavy_check_mark: | N/A |
+| `attempts` | *JsonNullable* | :heavy_minus_sign: | N/A |
+| `expireAt` | *JsonNullable* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/errors/ClerkErrors.md b/docs/models/errors/ClerkErrors.md
index ec72b41..958613d 100644
--- a/docs/models/errors/ClerkErrors.md
+++ b/docs/models/errors/ClerkErrors.md
@@ -5,7 +5,7 @@ Request was not successful
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
-| `errors` | List<[com.clerk.backend_api.models.components.ClerkError](../../models/components/ClerkError.md)> | :heavy_check_mark: | N/A |
-| `meta` | [Optional extends com.clerk.backend_api.models.errors.Meta>](../../models/errors/Meta.md) | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
+| `errors` | List<[ClerkError](../../models/components/ClerkError.md)> | :heavy_check_mark: | N/A |
+| `meta` | [Optional](../../models/errors/Meta.md) | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/operations/AddDomainRequestBody.md b/docs/models/operations/AddDomainRequestBody.md
index c8ba329..08ae43d 100644
--- a/docs/models/operations/AddDomainRequestBody.md
+++ b/docs/models/operations/AddDomainRequestBody.md
@@ -7,4 +7,4 @@
| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `name` | *String* | :heavy_check_mark: | The new domain name. Can contain the port for development instances. |
| `isSatellite` | *boolean* | :heavy_check_mark: | Marks the new domain as satellite. Only `true` is accepted at the moment. |
-| `proxyUrl` | *Optional extends String>* | :heavy_minus_sign: | The full URL of the proxy which will forward requests to the Clerk Frontend API for this domain. Applicable only to production instances. |
\ No newline at end of file
+| `proxyUrl` | *Optional* | :heavy_minus_sign: | The full URL of the proxy which will forward requests to the Clerk Frontend API for this domain. Applicable only to production instances. |
\ No newline at end of file
diff --git a/docs/models/operations/AddDomainResponse.md b/docs/models/operations/AddDomainResponse.md
index 58833a8..3d29a1b 100644
--- a/docs/models/operations/AddDomainResponse.md
+++ b/docs/models/operations/AddDomainResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `domain` | [Optional extends com.clerk.backend_api.models.components.Domain>](../../models/components/Domain.md) | :heavy_minus_sign: | A domain |
\ No newline at end of file
+| `domain` | [Optional](../../models/components/Domain.md) | :heavy_minus_sign: | A domain |
\ No newline at end of file
diff --git a/docs/models/operations/AttributeMapping.md b/docs/models/operations/AttributeMapping.md
index f809916..31d3901 100644
--- a/docs/models/operations/AttributeMapping.md
+++ b/docs/models/operations/AttributeMapping.md
@@ -5,9 +5,9 @@ Define the attribute name mapping between Identity Provider and Clerk's user pro
## Fields
-| Field | Type | Required | Description |
-| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
-| `userId` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `emailAddress` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `firstName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
-| `lastName` | *Optional extends String>* | :heavy_minus_sign: | N/A |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `userId` | *Optional* | :heavy_minus_sign: | N/A |
+| `emailAddress` | *Optional* | :heavy_minus_sign: | N/A |
+| `firstName` | *Optional* | :heavy_minus_sign: | N/A |
+| `lastName` | *Optional* | :heavy_minus_sign: | N/A |
\ No newline at end of file
diff --git a/docs/models/operations/BanUserResponse.md b/docs/models/operations/BanUserResponse.md
index d5f3289..8b0b006 100644
--- a/docs/models/operations/BanUserResponse.md
+++ b/docs/models/operations/BanUserResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `user` | [Optional extends com.clerk.backend_api.models.components.User>](../../models/components/User.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| `user` | [Optional](../../models/components/User.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/ChangeProductionInstanceDomainRequestBody.md b/docs/models/operations/ChangeProductionInstanceDomainRequestBody.md
index da4d960..af1c182 100644
--- a/docs/models/operations/ChangeProductionInstanceDomainRequestBody.md
+++ b/docs/models/operations/ChangeProductionInstanceDomainRequestBody.md
@@ -5,4 +5,4 @@
| Field | Type | Required | Description |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ |
-| `homeUrl` | *Optional extends String>* | :heavy_minus_sign: | The new home URL of the production instance e.g. https://www.example.com |
\ No newline at end of file
+| `homeUrl` | *Optional* | :heavy_minus_sign: | The new home URL of the production instance e.g. https://www.example.com |
\ No newline at end of file
diff --git a/docs/models/operations/CreateActorTokenRequestBody.md b/docs/models/operations/CreateActorTokenRequestBody.md
index 2a6e7cb..62beaac 100644
--- a/docs/models/operations/CreateActorTokenRequestBody.md
+++ b/docs/models/operations/CreateActorTokenRequestBody.md
@@ -6,6 +6,6 @@
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `userId` | *String* | :heavy_check_mark: | The ID of the user that can use the newly created sign in token. | |
-| `actor` | Map | :heavy_check_mark: | The actor payload. It needs to include a sub property which should contain the ID of the actor.
This whole payload will be also included in the JWT session token. | {
"sub": "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb"
} |
-| `expiresInSeconds` | *Optional extends Long>* | :heavy_minus_sign: | Optional parameter to specify the life duration of the actor token in seconds.
By default, the duration is 1 hour. | |
-| `sessionMaxDurationInSeconds` | *Optional extends Long>* | :heavy_minus_sign: | The maximum duration that the session which will be created by the generated actor token should last.
By default, the duration of a session created via an actor token, lasts 30 minutes. | |
\ No newline at end of file
+| `actor` | Map | :heavy_check_mark: | The actor payload. It needs to include a sub property which should contain the ID of the actor.
This whole payload will be also included in the JWT session token. | {
"sub": "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb"
} |
+| `expiresInSeconds` | *Optional* | :heavy_minus_sign: | Optional parameter to specify the life duration of the actor token in seconds.
By default, the duration is 1 hour. | |
+| `sessionMaxDurationInSeconds` | *Optional* | :heavy_minus_sign: | The maximum duration that the session which will be created by the generated actor token should last.
By default, the duration of a session created via an actor token, lasts 30 minutes. | |
\ No newline at end of file
diff --git a/docs/models/operations/CreateActorTokenResponse.md b/docs/models/operations/CreateActorTokenResponse.md
index 61e153a..37357dc 100644
--- a/docs/models/operations/CreateActorTokenResponse.md
+++ b/docs/models/operations/CreateActorTokenResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `actorToken` | [Optional extends com.clerk.backend_api.models.components.ActorToken>](../../models/components/ActorToken.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| `actorToken` | [Optional](../../models/components/ActorToken.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateAllowlistIdentifierRequestBody.md b/docs/models/operations/CreateAllowlistIdentifierRequestBody.md
index dad20a9..cb09bac 100644
--- a/docs/models/operations/CreateAllowlistIdentifierRequestBody.md
+++ b/docs/models/operations/CreateAllowlistIdentifierRequestBody.md
@@ -6,4 +6,4 @@
| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `identifier` | *String* | :heavy_check_mark: | The identifier to be added in the allow-list.
This can be an email address, a phone number or a web3 wallet. |
-| `notify_` | *Optional extends Boolean>* | :heavy_minus_sign: | This flag denotes whether the given identifier will receive an invitation to join the application.
Note that this only works for email address and phone number identifiers. |
\ No newline at end of file
+| `notify_` | *Optional* | :heavy_minus_sign: | This flag denotes whether the given identifier will receive an invitation to join the application.
Note that this only works for email address and phone number identifiers. |
\ No newline at end of file
diff --git a/docs/models/operations/CreateAllowlistIdentifierResponse.md b/docs/models/operations/CreateAllowlistIdentifierResponse.md
index a1b3f19..500e1c1 100644
--- a/docs/models/operations/CreateAllowlistIdentifierResponse.md
+++ b/docs/models/operations/CreateAllowlistIdentifierResponse.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
-| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
-| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `allowlistIdentifier` | [Optional extends com.clerk.backend_api.models.components.AllowlistIdentifier>](../../models/components/AllowlistIdentifier.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
+| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
+| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
+| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
+| `allowlistIdentifier` | [Optional](../../models/components/AllowlistIdentifier.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateBlocklistIdentifierResponse.md b/docs/models/operations/CreateBlocklistIdentifierResponse.md
index b6f14b6..e3fab1f 100644
--- a/docs/models/operations/CreateBlocklistIdentifierResponse.md
+++ b/docs/models/operations/CreateBlocklistIdentifierResponse.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
-| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
-| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
-| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `blocklistIdentifier` | [Optional extends com.clerk.backend_api.models.components.BlocklistIdentifier>](../../models/components/BlocklistIdentifier.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
+| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
+| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
+| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
+| `blocklistIdentifier` | [Optional](../../models/components/BlocklistIdentifier.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateEmailAddressRequestBody.md b/docs/models/operations/CreateEmailAddressRequestBody.md
index 5d32bba..c02a8aa 100644
--- a/docs/models/operations/CreateEmailAddressRequestBody.md
+++ b/docs/models/operations/CreateEmailAddressRequestBody.md
@@ -5,7 +5,7 @@
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
-| `userId` | *Optional extends String>* | :heavy_minus_sign: | The ID representing the user |
-| `emailAddress` | *Optional extends String>* | :heavy_minus_sign: | The new email address. Must adhere to the RFC 5322 specification for email address format. |
-| `verified` | *JsonNullable extends Boolean>* | :heavy_minus_sign: | When created, the email address will be marked as verified. |
-| `primary` | *JsonNullable extends Boolean>* | :heavy_minus_sign: | Create this email address as the primary email address for the user.
Default: false, unless it is the first email address. |
\ No newline at end of file
+| `userId` | *Optional* | :heavy_minus_sign: | The ID representing the user |
+| `emailAddress` | *Optional* | :heavy_minus_sign: | The new email address. Must adhere to the RFC 5322 specification for email address format. |
+| `verified` | *JsonNullable* | :heavy_minus_sign: | When created, the email address will be marked as verified. |
+| `primary` | *JsonNullable* | :heavy_minus_sign: | Create this email address as the primary email address for the user.
Default: false, unless it is the first email address. |
\ No newline at end of file
diff --git a/docs/models/operations/CreateEmailAddressResponse.md b/docs/models/operations/CreateEmailAddressResponse.md
index 581622f..a063c98 100644
--- a/docs/models/operations/CreateEmailAddressResponse.md
+++ b/docs/models/operations/CreateEmailAddressResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `emailAddress` | [Optional extends com.clerk.backend_api.models.components.EmailAddress>](../../models/components/EmailAddress.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| `emailAddress` | [Optional](../../models/components/EmailAddress.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateInvitationRequestBody.md b/docs/models/operations/CreateInvitationRequestBody.md
index 07bf90e..216d47a 100644
--- a/docs/models/operations/CreateInvitationRequestBody.md
+++ b/docs/models/operations/CreateInvitationRequestBody.md
@@ -8,7 +8,7 @@ Required parameters
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `emailAddress` | *String* | :heavy_check_mark: | The email address the invitation will be sent to |
-| `publicMetadata` | [Optional extends com.clerk.backend_api.models.operations.CreateInvitationPublicMetadata>](../../models/operations/CreateInvitationPublicMetadata.md) | :heavy_minus_sign: | Metadata that will be attached to the newly created invitation.
The value of this property should be a well-formed JSON object.
Once the user accepts the invitation and signs up, these metadata will end up in the user's public metadata. |
-| `redirectUrl` | *Optional extends String>* | :heavy_minus_sign: | Optional URL which specifies where to redirect the user once they click the invitation link.
This is only required if you have implemented a [custom flow](https://clerk.com/docs/authentication/invitations#custom-flow) and you're not using Clerk Hosted Pages or Clerk Components. |
-| `notify_` | *JsonNullable extends Boolean>* | :heavy_minus_sign: | Optional flag which denotes whether an email invitation should be sent to the given email address.
Defaults to true. |
-| `ignoreExisting` | *JsonNullable extends Boolean>* | :heavy_minus_sign: | Whether an invitation should be created if there is already an existing invitation for this email address, or it's claimed by another user. |
\ No newline at end of file
+| `publicMetadata` | [Optional](../../models/operations/CreateInvitationPublicMetadata.md) | :heavy_minus_sign: | Metadata that will be attached to the newly created invitation.
The value of this property should be a well-formed JSON object.
Once the user accepts the invitation and signs up, these metadata will end up in the user's public metadata. |
+| `redirectUrl` | *Optional* | :heavy_minus_sign: | Optional URL which specifies where to redirect the user once they click the invitation link.
This is only required if you have implemented a [custom flow](https://clerk.com/docs/authentication/invitations#custom-flow) and you're not using Clerk Hosted Pages or Clerk Components. |
+| `notify_` | *JsonNullable* | :heavy_minus_sign: | Optional flag which denotes whether an email invitation should be sent to the given email address.
Defaults to true. |
+| `ignoreExisting` | *JsonNullable* | :heavy_minus_sign: | Whether an invitation should be created if there is already an existing invitation for this email address, or it's claimed by another user. |
\ No newline at end of file
diff --git a/docs/models/operations/CreateInvitationResponse.md b/docs/models/operations/CreateInvitationResponse.md
index ff0b44a..f29e43c 100644
--- a/docs/models/operations/CreateInvitationResponse.md
+++ b/docs/models/operations/CreateInvitationResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `invitation` | [Optional extends com.clerk.backend_api.models.components.Invitation>](../../models/components/Invitation.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| `invitation` | [Optional](../../models/components/Invitation.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateJWTTemplateRequestBody.md b/docs/models/operations/CreateJWTTemplateRequestBody.md
index 9e14cdc..5f0ab31 100644
--- a/docs/models/operations/CreateJWTTemplateRequestBody.md
+++ b/docs/models/operations/CreateJWTTemplateRequestBody.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `name` | *Optional extends String>* | :heavy_minus_sign: | JWT template name |
-| `claims` | [Optional extends com.clerk.backend_api.models.operations.Claims>](../../models/operations/Claims.md) | :heavy_minus_sign: | JWT template claims in JSON format |
-| `lifetime` | *JsonNullable extends Double>* | :heavy_minus_sign: | JWT token lifetime |
-| `allowedClockSkew` | *JsonNullable extends Double>* | :heavy_minus_sign: | JWT token allowed clock skew |
-| `customSigningKey` | *Optional extends Boolean>* | :heavy_minus_sign: | Whether a custom signing key/algorithm is also provided for this template |
-| `signingAlgorithm` | *JsonNullable extends String>* | :heavy_minus_sign: | The custom signing algorithm to use when minting JWTs |
-| `signingKey` | *JsonNullable extends String>* | :heavy_minus_sign: | The custom signing private key to use when minting JWTs |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
+| `name` | *Optional* | :heavy_minus_sign: | JWT template name |
+| `claims` | [Optional](../../models/operations/Claims.md) | :heavy_minus_sign: | JWT template claims in JSON format |
+| `lifetime` | *JsonNullable* | :heavy_minus_sign: | JWT token lifetime |
+| `allowedClockSkew` | *JsonNullable* | :heavy_minus_sign: | JWT token allowed clock skew |
+| `customSigningKey` | *Optional* | :heavy_minus_sign: | Whether a custom signing key/algorithm is also provided for this template |
+| `signingAlgorithm` | *JsonNullable* | :heavy_minus_sign: | The custom signing algorithm to use when minting JWTs |
+| `signingKey` | *JsonNullable* | :heavy_minus_sign: | The custom signing private key to use when minting JWTs |
\ No newline at end of file
diff --git a/docs/models/operations/CreateJWTTemplateResponse.md b/docs/models/operations/CreateJWTTemplateResponse.md
index 3d9366c..052a6ea 100644
--- a/docs/models/operations/CreateJWTTemplateResponse.md
+++ b/docs/models/operations/CreateJWTTemplateResponse.md
@@ -8,4 +8,4 @@
| `contentType` | *String* | :heavy_check_mark: | HTTP response content type for this operation |
| `statusCode` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
| `rawResponse` | [HttpResponse](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
-| `jwtTemplate` | [Optional extends com.clerk.backend_api.models.components.JWTTemplate>](../../models/components/JWTTemplate.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
+| `jwtTemplate` | [Optional](../../models/components/JWTTemplate.md) | :heavy_minus_sign: | Success |
\ No newline at end of file
diff --git a/docs/models/operations/CreateOAuthApplicationRequestBody.md b/docs/models/operations/CreateOAuthApplicationRequestBody.md
index 4086744..e7c68d8 100644
--- a/docs/models/operations/CreateOAuthApplicationRequestBody.md
+++ b/docs/models/operations/CreateOAuthApplicationRequestBody.md
@@ -7,5 +7,5 @@
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `name` | *String* | :heavy_check_mark: | The name of the new OAuth application | |
| `callbackUrl` | *String* | :heavy_check_mark: | The callback URL of the new OAuth application | |
-| `scopes` | *Optional extends String>* | :heavy_minus_sign: | Define the allowed scopes for the new OAuth applications that dictate the user payload of the OAuth user info endpoint. Available scopes are `profile`, `email`, `public_metadata`, `private_metadata`. Provide the requested scopes as a string, separated by spaces. | profile email public_metadata |
-| `public_` | *Optional extends Boolean>* | :heavy_minus_sign: | If true, this client is public and cannot securely store a client secret.
Only the authorization code flow with proof key for code exchange (PKCE) may be used.
Public clients cannot be updated to be confidential clients, and vice versa. | |
\ No newline at end of file
+| `scopes` | *Optional* | :heavy_minus_sign: | Define the allowed scopes for the new OAuth applications that dictate the user payload of the OAuth user info endpoint. Available scopes are `profile`, `email`, `public_metadata`, `private_metadata`. Provide the requested scopes as a string, separated by spaces. | profile email public_metadata |
+| `public_` | *Optional* | :heavy_minus_sign: | If true, this client is public and cannot securely store a client secret.