Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.484.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Feb 6, 2025
1 parent 9bc8d24 commit 8f75460
Show file tree
Hide file tree
Showing 351 changed files with 12,608 additions and 5,490 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.speakeasy/reports
# Ignore Gradle project-specific cache directory
.gradle
# Ignore Gradle build output directory
Expand Down
562 changes: 317 additions & 245 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: false
java:
version: 1.5.0
version: 1.6.0
additionalDependencies: []
additionalPlugins: []
artifactID: backend-api
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
speakeasyVersion: 1.456.1
speakeasyVersion: 1.484.1
sources:
clerk-java-sdk:
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:bfefe98b41e740defff0a03f01252a3b6267134984b14ede64221006fa1ac063
sourceBlobDigest: sha256:ff770ca4e1220e72028c4285967fd63f63c68a1d27da9815d826384905cadcfa
sourceRevisionDigest: sha256:3815e8e817585b7486da13da33323e2a36eccc00aa885fd093ba6e90c7e46432
sourceBlobDigest: sha256:e1f23b2e97f6cb972032f14926eda3b920d6fcc5d11174846d19261a8666ce7a
tags:
- latest
- speakeasy-sdk-regen-1733789375
- speakeasy-sdk-regen-1737677328
- v1
targets:
clerk-java:
source: clerk-java-sdk
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:bfefe98b41e740defff0a03f01252a3b6267134984b14ede64221006fa1ac063
sourceBlobDigest: sha256:ff770ca4e1220e72028c4285967fd63f63c68a1d27da9815d826384905cadcfa
sourceRevisionDigest: sha256:3815e8e817585b7486da13da33323e2a36eccc00aa885fd093ba6e90c7e46432
sourceBlobDigest: sha256:e1f23b2e97f6cb972032f14926eda3b920d6fcc5d11174846d19261a8666ce7a
codeSamplesNamespace: clerk-java-sdk-code-samples
codeSamplesRevisionDigest: sha256:bf210dc764b909e1d20c7c06ab5e5d040243afc06d7fe23c731f289006918af8
codeSamplesRevisionDigest: sha256:0f08bd16579a9215acbeef42efc0b88c8ff1be1e620093ffffddec83b2a4a06c
my-first-target:
source: clerk-java-sdk
sourceNamespace: clerk-java-sdk
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.clerk:backend-api:1.5.0'
implementation 'com.clerk:backend-api:1.6.0'
```

Maven:
```xml
<dependency>
<groupId>com.clerk</groupId>
<artifactId>backend-api</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>
```

Expand Down Expand Up @@ -240,6 +240,7 @@ If the request is correctly authenticated, the token's claims are made available

### [instanceSettings()](docs/sdks/instancesettings/README.md)

* [getInstance](docs/sdks/instancesettings/README.md#getinstance) - Fetch the current instance
* [update](docs/sdks/instancesettings/README.md#update) - Update instance settings
* [updateRestrictions](docs/sdks/instancesettings/README.md#updaterestrictions) - Update instance restrictions
* [updateOrganizationSettings](docs/sdks/instancesettings/README.md#updateorganizationsettings) - Update instance organization settings
Expand All @@ -248,6 +249,7 @@ If the request is correctly authenticated, the token's claims are made available

* [create](docs/sdks/invitations/README.md#create) - Create an invitation
* [list](docs/sdks/invitations/README.md#list) - List all invitations
* [createBulkInvitations](docs/sdks/invitations/README.md#createbulkinvitations) - Create multiple invitations
* [revoke](docs/sdks/invitations/README.md#revoke) - Revokes an invitation

### [jwks()](docs/sdks/jwks/README.md)
Expand Down Expand Up @@ -347,9 +349,11 @@ If the request is correctly authenticated, the token's claims are made available
### [sessions()](docs/sdks/sessions/README.md)

* [list](docs/sdks/sessions/README.md#list) - List all sessions
* [createSession](docs/sdks/sessions/README.md#createsession) - Create a new active session
* [get](docs/sdks/sessions/README.md#get) - Retrieve a session
* [revoke](docs/sdks/sessions/README.md#revoke) - Revoke a session
* [~~verify~~](docs/sdks/sessions/README.md#verify) - Verify a session :warning: **Deprecated**
* [createSessionToken](docs/sdks/sessions/README.md#createsessiontoken) - Create a session token
* [createTokenFromTemplate](docs/sdks/sessions/README.md#createtokenfromtemplate) - Create a session token from a jwt template

### [signInTokens()](docs/sdks/signintokens/README.md)
Expand Down Expand Up @@ -393,10 +397,14 @@ If the request is correctly authenticated, the token's claims are made available
* [deleteBackupCodes](docs/sdks/users/README.md#deletebackupcodes) - Disable all user's Backup codes
* [deletePasskey](docs/sdks/users/README.md#deletepasskey) - Delete a user passkey
* [deleteWeb3Wallet](docs/sdks/users/README.md#deleteweb3wallet) - Delete a user web3 wallet
* [createTOTP](docs/sdks/users/README.md#createtotp) - Create a TOTP for a user
* [deleteTotp](docs/sdks/users/README.md#deletetotp) - Delete all the user's TOTPs
* [deleteExternalAccount](docs/sdks/users/README.md#deleteexternalaccount) - Delete External Account

### [waitlistEntries()](docs/sdks/waitlistentries/README.md)

* [listWaitlistEntries](docs/sdks/waitlistentries/README.md#listwaitlistentries) - List all waitlist entries
* [createWaitlistEntry](docs/sdks/waitlistentries/README.md#createwaitlistentry) - Create a waitlist entry

### [webhooks()](docs/sdks/webhooks/README.md)

* [createSvixApp](docs/sdks/webhooks/README.md#createsvixapp) - Create a Svix app
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,14 @@ Based on:
### Generated
- [java v1.5.0] .
### Releases
- [Maven Central v1.5.0] https://central.sonatype.com/artifact/com.clerk/backend-api/1.5.0 - .
- [Maven Central v1.5.0] https://central.sonatype.com/artifact/com.clerk/backend-api/1.5.0 - .

## 2025-02-06 00:08:42
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.484.1 (2.503.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v1.6.0] .
### Releases
- [Maven Central v1.6.0] https://central.sonatype.com/artifact/com.clerk/backend-api/1.6.0 - .
21 changes: 10 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
}

group = "com.clerk"
version = "1.5.0"
version = "1.6.0"

sourcesJar {
archiveBaseName = "backend-api"
Expand Down Expand Up @@ -101,7 +101,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.clerk'
artifactId = 'backend-api'
version = '1.5.0'
version = '1.6.0'

from components.java

Expand Down Expand Up @@ -144,17 +144,16 @@ if (!project.hasProperty('skip.signing')) {
}
}



dependencies {
api 'com.fasterxml.jackson.core:jackson-annotations:2.17.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.2'
api 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2'
api('org.openapitools:jackson-databind-nullable:0.2.6') {exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'}
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
implementation 'commons-io:commons-io:2.15.1'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.4.1'
implementation 'commons-io:commons-io:2.18.0'
}



apply from: 'build-extras.gradle'
1 change: 1 addition & 0 deletions docs/models/components/EmailAddress.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ Success
| `reserved` | *boolean* | :heavy_check_mark: | N/A |
| `verification` | [Optional\<Verification>](../../models/components/Verification.md) | :heavy_check_mark: | N/A |
| `linkedTo` | List\<[IdentificationLink](../../models/components/IdentificationLink.md)> | :heavy_check_mark: | N/A |
| `matchesSsoConnection` | *Optional\<Boolean>* | :heavy_minus_sign: | Indicates whether this email address domain matches an active enterprise connection.<br/> |
| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation<br/> |
| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of creation<br/> |
12 changes: 12 additions & 0 deletions docs/models/components/FromOAuth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# FromOAuth


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `status` | [FromOAuthVerificationStatus](../../models/components/FromOAuthVerificationStatus.md) | :heavy_check_mark: | N/A |
| `strategy` | *String* | :heavy_check_mark: | N/A |
| `error` | [JsonNullable\<Error>](../../models/components/Error.md) | :heavy_minus_sign: | N/A |
| `expireAt` | *Optional\<Long>* | :heavy_check_mark: | N/A |
| `attempts` | *JsonNullable\<Long>* | :heavy_minus_sign: | N/A |
9 changes: 9 additions & 0 deletions docs/models/components/FromOAuthVerificationStatus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# FromOAuthVerificationStatus


## Values

| Name | Value |
| ------------ | ------------ |
| `UNVERIFIED` | unverified |
| `VERIFIED` | verified |
8 changes: 4 additions & 4 deletions docs/models/components/IdentificationLink.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Fields

| Field | Type | Required | Description |
| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
| `type` | [Type](../../models/components/Type.md) | :heavy_check_mark: | N/A |
| `id` | *String* | :heavy_check_mark: | N/A |
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `type` | *String* | :heavy_check_mark: | N/A |
| `id` | *String* | :heavy_check_mark: | N/A |
13 changes: 13 additions & 0 deletions docs/models/components/Instance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Instance

Success


## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `object` | [Optional\<InstanceObject>](../../models/components/InstanceObject.md) | :heavy_minus_sign: | String representing the object's type. Objects of the same type share the same value. | |
| `id` | *Optional\<String>* | :heavy_minus_sign: | N/A | |
| `environmentType` | *Optional\<String>* | :heavy_minus_sign: | N/A | development |
| `allowedOrigins` | List\<*String*> | :heavy_minus_sign: | N/A | [<br/>"http://localhost:3000",<br/>"https://some-domain"<br/>] |
10 changes: 10 additions & 0 deletions docs/models/components/InstanceObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# InstanceObject

String representing the object's type. Objects of the same type share the same value.


## Values

| Name | Value |
| ---------- | ---------- |
| `INSTANCE` | instance |
Loading

0 comments on commit 8f75460

Please sign in to comment.