Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🐝 Update SDK - Generate 1.6.0 #46

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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
556 changes: 314 additions & 242 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.488.0
sources:
clerk-java-sdk:
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:bfefe98b41e740defff0a03f01252a3b6267134984b14ede64221006fa1ac063
sourceBlobDigest: sha256:ff770ca4e1220e72028c4285967fd63f63c68a1d27da9815d826384905cadcfa
sourceRevisionDigest: sha256:bcb98699b328480e204452090571115a71f7c636952a62488c6acfb0ae91520b
sourceBlobDigest: sha256:18198faaca06b564dfedef7d25772f510e918b3dc4b4472e4881661173cbfcbf
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:bcb98699b328480e204452090571115a71f7c636952a62488c6acfb0ae91520b
sourceBlobDigest: sha256:18198faaca06b564dfedef7d25772f510e918b3dc4b4472e4881661173cbfcbf
codeSamplesNamespace: clerk-java-sdk-code-samples
codeSamplesRevisionDigest: sha256:bf210dc764b909e1d20c7c06ab5e5d040243afc06d7fe23c731f289006918af8
codeSamplesRevisionDigest: sha256:c678980769c513f9ccbd8ad93090d6e625db5f59d0f077e7e386b4f85586d841
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-12 00:08:53
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.488.0 (2.506.0) 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'
5 changes: 3 additions & 2 deletions docs/models/components/Admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| `status` | [AdminVerificationStatus](../../models/components/AdminVerificationStatus.md) | :heavy_check_mark: | N/A |
| `strategy` | [VerificationStrategy](../../models/components/VerificationStrategy.md) | :heavy_check_mark: | N/A |
| `attempts` | *JsonNullable\<Long>* | :heavy_minus_sign: | N/A |
| `expireAt` | *JsonNullable\<Long>* | :heavy_minus_sign: | N/A |
| `attempts` | *Optional\<Long>* | :heavy_check_mark: | N/A |
| `expireAt` | *Optional\<Long>* | :heavy_check_mark: | N/A |
| `verifiedAtClient` | *JsonNullable\<String>* | :heavy_minus_sign: | N/A |
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/> |
13 changes: 13 additions & 0 deletions docs/models/components/FromOAuth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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` | *Optional\<Long>* | :heavy_check_mark: | N/A |
| `verifiedAtClient` | *JsonNullable\<String>* | :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