Skip to content

Commit

Permalink
Merge pull request #14 from clerk/speakeasy-sdk-regen-1719878861
Browse files Browse the repository at this point in the history
chore: 🐝 Update SDK - Generate
  • Loading branch information
speakeasybot authored Jul 3, 2024
2 parents 6a38f15 + 8cd2433 commit 582fd6a
Show file tree
Hide file tree
Showing 33 changed files with 339 additions and 329 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ id: 1d22a5a4-8bac-42e3-b164-121fcacf66c9
management:
docChecksum: 93fd7098475aa331fae95503f8934b72
docVersion: v1
speakeasyVersion: 1.322.3
generationVersion: 2.354.2
releaseVersion: 0.2.0
configChecksum: 26bde6d457c9155f96d34848a5258894
speakeasyVersion: 1.326.0
generationVersion: 2.359.0
releaseVersion: 0.2.0-beta
configChecksum: de7fbb5de3c7c17b46702003b95160f3
repoURL: https://github.com/clerk/clerk-sdk-java.git
published: true
features:
java:
additionalDependencies: 0.1.0
constsAndDefaults: 0.1.1
core: 3.26.0
core: 3.26.1
deprecations: 2.81.1
examples: 2.81.3
flattening: 2.81.1
Expand Down
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.322.3
speakeasyVersion: 1.326.0
sources:
clerk-java-sdk:
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:b7926a5eaa2e16aca0f069b7d62e6350ad1ec5c23a54dc0f9b83e034bdccf601
sourceRevisionDigest: sha256:3a1ad8c4068801685c9f560fef1bafcc7653425ca07dadae6ebf6ff5f4c3dcf7
sourceBlobDigest: sha256:be6a2adf86086a55368c73204dfb84b5ca2f9d8514f771aff33857624a212e56
tags:
- latest
Expand All @@ -11,7 +11,7 @@ targets:
clerk-java:
source: clerk-java-sdk
sourceNamespace: clerk-java-sdk
sourceRevisionDigest: sha256:b7926a5eaa2e16aca0f069b7d62e6350ad1ec5c23a54dc0f9b83e034bdccf601
sourceRevisionDigest: sha256:3a1ad8c4068801685c9f560fef1bafcc7653425ca07dadae6ebf6ff5f4c3dcf7
sourceBlobDigest: sha256:be6a2adf86086a55368c73204dfb84b5ca2f9d8514f771aff33857624a212e56
outLocation: /github/workspace/repo
my-first-target:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.clerk:backend-api:0.2.0'
implementation 'com.clerk:backend-api:0.2.0-beta'
```

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

Expand Down Expand Up @@ -408,7 +408,7 @@ Handling errors in this SDK should largely match your expectations. All operati
| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,410,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

### Example

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,14 @@ Based on:
### Generated
- [java v0.2.0] .
### Releases
- [Maven Central v0.2.0] https://central.sonatype.com/artifact/com.clerk/backend-api/0.2.0 - .
- [Maven Central v0.2.0] https://central.sonatype.com/artifact/com.clerk/backend-api/0.2.0 - .

## 2024-07-03 05:03:45
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.326.0 (2.359.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.2.0-beta] .
### Releases
- [Maven Central v0.2.0-beta] https://central.sonatype.com/artifact/com.clerk/backend-api/0.2.0-beta - .
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
group = "com.clerk"
version = "0.2.0"
version = "0.2.0-beta"

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

from components.java

Expand Down
8 changes: 4 additions & 4 deletions docs/sdks/actors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.CreateActorTokenResponse>](../../models/operations/CreateActorTokenResponse.md)**
**[com.clerk.backend_api.models.operations.CreateActorTokenResponse](../../models/operations/CreateActorTokenResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,402,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## revokeToken

Expand Down Expand Up @@ -145,10 +145,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.RevokeActorTokenResponse>](../../models/operations/RevokeActorTokenResponse.md)**
**[com.clerk.backend_api.models.operations.RevokeActorTokenResponse](../../models/operations/RevokeActorTokenResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
12 changes: 6 additions & 6 deletions docs/sdks/allowlist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.ListAllowlistIdentifiersResponse>](../../models/operations/ListAllowlistIdentifiersResponse.md)**
**[com.clerk.backend_api.models.operations.ListAllowlistIdentifiersResponse](../../models/operations/ListAllowlistIdentifiersResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 401,402 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## create

Expand Down Expand Up @@ -136,13 +136,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.CreateAllowlistIdentifierResponse>](../../models/operations/CreateAllowlistIdentifierResponse.md)**
**[com.clerk.backend_api.models.operations.CreateAllowlistIdentifierResponse](../../models/operations/CreateAllowlistIdentifierResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,402,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## delete

Expand Down Expand Up @@ -206,10 +206,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.DeleteAllowlistIdentifierResponse>](../../models/operations/DeleteAllowlistIdentifierResponse.md)**
**[com.clerk.backend_api.models.operations.DeleteAllowlistIdentifierResponse](../../models/operations/DeleteAllowlistIdentifierResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 402,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
12 changes: 6 additions & 6 deletions docs/sdks/blocklist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.ListBlocklistIdentifiersResponse>](../../models/operations/ListBlocklistIdentifiersResponse.md)**
**[com.clerk.backend_api.models.operations.ListBlocklistIdentifiersResponse](../../models/operations/ListBlocklistIdentifiersResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 401,402 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## create

Expand Down Expand Up @@ -136,13 +136,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.CreateBlocklistIdentifierResponse>](../../models/operations/CreateBlocklistIdentifierResponse.md)**
**[com.clerk.backend_api.models.operations.CreateBlocklistIdentifierResponse](../../models/operations/CreateBlocklistIdentifierResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,402,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## delete

Expand Down Expand Up @@ -206,10 +206,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.DeleteBlocklistIdentifierResponse>](../../models/operations/DeleteBlocklistIdentifierResponse.md)**
**[com.clerk.backend_api.models.operations.DeleteBlocklistIdentifierResponse](../../models/operations/DeleteBlocklistIdentifierResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 402,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
12 changes: 6 additions & 6 deletions docs/sdks/clients/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.GetClientListResponse>](../../models/operations/GetClientListResponse.md)**
**[com.clerk.backend_api.models.operations.GetClientListResponse](../../models/operations/GetClientListResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,410,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## verify

Expand Down Expand Up @@ -145,13 +145,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.VerifyClientResponse>](../../models/operations/VerifyClientResponse.md)**
**[com.clerk.backend_api.models.operations.VerifyClientResponse](../../models/operations/VerifyClientResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## get

Expand Down Expand Up @@ -215,10 +215,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.GetClientResponse>](../../models/operations/GetClientResponse.md)**
**[com.clerk.backend_api.models.operations.GetClientResponse](../../models/operations/GetClientResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
16 changes: 8 additions & 8 deletions docs/sdks/domains/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.ListDomainsResponse>](../../models/operations/ListDomainsResponse.md)**
**[com.clerk.backend_api.models.operations.ListDomainsResponse](../../models/operations/ListDomainsResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ---------------------- | ---------------------- | ---------------------- |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## add

Expand Down Expand Up @@ -139,13 +139,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.AddDomainResponse>](../../models/operations/AddDomainResponse.md)**
**[com.clerk.backend_api.models.operations.AddDomainResponse](../../models/operations/AddDomainResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,402,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## delete

Expand Down Expand Up @@ -210,13 +210,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.DeleteDomainResponse>](../../models/operations/DeleteDomainResponse.md)**
**[com.clerk.backend_api.models.operations.DeleteDomainResponse](../../models/operations/DeleteDomainResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 403,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## update

Expand Down Expand Up @@ -290,10 +290,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.UpdateDomainResponse>](../../models/operations/UpdateDomainResponse.md)**
**[com.clerk.backend_api.models.operations.UpdateDomainResponse](../../models/operations/UpdateDomainResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,404,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
16 changes: 8 additions & 8 deletions docs/sdks/emailaddresses/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.CreateEmailAddressResponse>](../../models/operations/CreateEmailAddressResponse.md)**
**[com.clerk.backend_api.models.operations.CreateEmailAddressResponse](../../models/operations/CreateEmailAddressResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,403,404,422 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## get

Expand Down Expand Up @@ -143,13 +143,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.GetEmailAddressResponse>](../../models/operations/GetEmailAddressResponse.md)**
**[com.clerk.backend_api.models.operations.GetEmailAddressResponse](../../models/operations/GetEmailAddressResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,403,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## delete

Expand Down Expand Up @@ -213,13 +213,13 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.DeleteEmailAddressResponse>](../../models/operations/DeleteEmailAddressResponse.md)**
**[com.clerk.backend_api.models.operations.DeleteEmailAddressResponse](../../models/operations/DeleteEmailAddressResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,403,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |

## update

Expand Down Expand Up @@ -286,10 +286,10 @@ public class Application {

### Response

**[Optional<? extends com.clerk.backend_api.models.operations.UpdateEmailAddressResponse>](../../models/operations/UpdateEmailAddressResponse.md)**
**[com.clerk.backend_api.models.operations.UpdateEmailAddressResponse](../../models/operations/UpdateEmailAddressResponse.md)**
### Errors

| Error Object | Status Code | Content Type |
| ------------------------- | ------------------------- | ------------------------- |
| models/errors/ClerkErrors | 400,401,403,404 | application/json |
| models/errors/SDKError | 4xx-5xx | */* |
| models/errors/SDKError | 4xx-5xx | \*\/* |
Loading

0 comments on commit 582fd6a

Please sign in to comment.