Skip to content

Commit a7114c9

Browse files
Merge pull request #34 from clerk/speakeasy-sdk-regen-1743638751
chore: 🐝 Update SDK - Generate 0.6.3
2 parents f8a3748 + 936d8f6 commit a7114c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+913
-286
lines changed

.speakeasy/gen.lock

+116-136
Large diffs are not rendered by default.

.speakeasy/gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ generation:
1515
oAuth2ClientCredentialsEnabled: true
1616
oAuth2PasswordEnabled: true
1717
csharp:
18-
version: 0.6.2
18+
version: 0.6.3
1919
additionalDependencies:
2020
- package: Microsoft.AspNetCore
2121
version: 2.3.0

.speakeasy/workflow.lock

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
speakeasyVersion: 1.526.0
1+
speakeasyVersion: 1.533.0
22
sources:
33
clerk-backend-api-OAS:
44
sourceNamespace: clerk-openapi
5-
sourceRevisionDigest: sha256:6b8f0e353994e8ebffd72368749596fdbc40c8980843f60e00167ad4e3ffea46
6-
sourceBlobDigest: sha256:c8365d3a47ede89b14cfccf2db48766e3c4e4ea221613255240707f1c338630e
5+
sourceRevisionDigest: sha256:43bdf15676f07e22cf2bb6bad0358eda42994052cd7c6407e00aadcb21ca2b9a
6+
sourceBlobDigest: sha256:bdb0513d5af178caa1ad7b99d0efd1c795975e712a5c4695cadc8d27cfcace05
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1741635900
9+
- speakeasy-sdk-regen-1743638751
1010
- "2024-10-01"
1111
targets:
1212
clerk-backend-api:
1313
source: clerk-backend-api-OAS
1414
sourceNamespace: clerk-openapi
15-
sourceRevisionDigest: sha256:6b8f0e353994e8ebffd72368749596fdbc40c8980843f60e00167ad4e3ffea46
16-
sourceBlobDigest: sha256:c8365d3a47ede89b14cfccf2db48766e3c4e4ea221613255240707f1c338630e
17-
codeSamplesNamespace: clerk-backend-api-oas-csharp-code-samples
18-
codeSamplesRevisionDigest: sha256:f6306db9cf53afe955ac0142afd92ee7366374112e58c8e3ba4b002dc031b4a3
15+
sourceRevisionDigest: sha256:43bdf15676f07e22cf2bb6bad0358eda42994052cd7c6407e00aadcb21ca2b9a
16+
sourceBlobDigest: sha256:bdb0513d5af178caa1ad7b99d0efd1c795975e712a5c4695cadc8d27cfcace05
1917
workflow:
2018
workflowVersion: 1.0.0
2119
speakeasyVersion: latest

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ If the request is correctly authenticated, the token's claims are made available
200200
* [~~Revert~~](docs/sdks/emailsmstemplates/README.md#revert) - Revert a template :warning: **Deprecated**
201201
* [~~ToggleTemplateDelivery~~](docs/sdks/emailsmstemplates/README.md#toggletemplatedelivery) - Toggle the delivery by Clerk for a template of a given type and slug :warning: **Deprecated**
202202

203+
### [ExperimentalAccountlessApplications](docs/sdks/experimentalaccountlessapplications/README.md)
204+
205+
* [Create](docs/sdks/experimentalaccountlessapplications/README.md#create) - Create an accountless application [EXPERIMENTAL]
206+
* [Complete](docs/sdks/experimentalaccountlessapplications/README.md#complete) - Complete an accountless application [EXPERIMENTAL]
207+
203208
### [InstanceSettings](docs/sdks/instancesettings/README.md)
204209

205210
* [Get](docs/sdks/instancesettings/README.md#get) - Fetch the current instance

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,14 @@ Based on:
8888
### Generated
8989
- [csharp v0.6.2] .
9090
### Releases
91-
- [NuGet v0.6.2] https://www.nuget.org/packages/Clerk.BackendAPI/0.6.2 - .
91+
- [NuGet v0.6.2] https://www.nuget.org/packages/Clerk.BackendAPI/0.6.2 - .
92+
93+
## 2025-04-17 00:05:45
94+
### Changes
95+
Based on:
96+
- OpenAPI Doc
97+
- Speakeasy CLI 1.533.0 (2.578.0) https://github.com/speakeasy-api/speakeasy
98+
### Generated
99+
- [csharp v0.6.3] .
100+
### Releases
101+
- [NuGet v0.6.3] https://www.nuget.org/packages/Clerk.BackendAPI/0.6.3 - .
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# AccountlessApplication
2+
3+
Success
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
10+
| `Object` | [AccountlessApplicationObject](../../Models/Components/AccountlessApplicationObject.md) | :heavy_check_mark: | N/A |
11+
| `PublishableKey` | *string* | :heavy_check_mark: | N/A |
12+
| `SecretKey` | *string* | :heavy_minus_sign: | N/A |
13+
| `ClaimUrl` | *string* | :heavy_minus_sign: | N/A |
14+
| `ApiKeysUrl` | *string* | :heavy_minus_sign: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# AccountlessApplicationObject
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------------------------ | ------------------------ |
8+
| `AccountlessApplication` | accountless_application |
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
# ResponseBody
1+
# OAuthAccessToken
2+
3+
Success
24

35

46
## Fields
57

6-
| Field | Type | Required | Description | Example |
7-
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
8-
| `Object` | *string* | :heavy_minus_sign: | N/A | oauth_access_token |
9-
| `ExternalAccountId` | *string* | :heavy_minus_sign: | External account ID | external_account_456 |
10-
| `ProviderUserId` | *string* | :heavy_minus_sign: | The unique ID of the user in the external provider's system | provider_user_789 |
11-
| `Token` | *string* | :heavy_minus_sign: | The access token | access_token_123 |
12-
| `Provider` | *string* | :heavy_minus_sign: | The ID of the provider | oauth_google |
13-
| `PublicMetadata` | Dictionary<String, *object*> | :heavy_minus_sign: | N/A | {} |
14-
| `Label` | *string* | :heavy_minus_sign: | N/A | Primary account |
15-
| `Scopes` | List<*string*> | :heavy_minus_sign: | The list of scopes that the token is valid for.<br/>Only present for OAuth 2.0 tokens. | [<br/>"email",<br/>"profile"<br/>] |
16-
| `TokenSecret` | *string* | :heavy_minus_sign: | The token secret. Only present for OAuth 1.0 tokens. | token_secret_xyz |
17-
| `ExpiresAt` | *long* | :heavy_minus_sign: | Unix timestamp of the access token expiration. | |
8+
| Field | Type | Required | Description |
9+
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
10+
| `Object` | [OAuthAccessTokenObject](../../Models/Components/OAuthAccessTokenObject.md) | :heavy_check_mark: | N/A |
11+
| `ExternalAccountId` | *string* | :heavy_check_mark: | External account ID |
12+
| `ProviderUserId` | *string* | :heavy_check_mark: | The unique ID of the user in the external provider's system |
13+
| `Token` | *string* | :heavy_check_mark: | The access token |
14+
| `ExpiresAt` | *long* | :heavy_check_mark: | Unix timestamp of the access token expiration. |
15+
| `Provider` | *string* | :heavy_check_mark: | The ID of the provider |
16+
| `PublicMetadata` | Dictionary<String, *object*> | :heavy_check_mark: | N/A |
17+
| `Label` | *string* | :heavy_check_mark: | N/A |
18+
| `Scopes` | List<*string*> | :heavy_minus_sign: | The list of scopes that the token is valid for. Only present for OAuth 2.0 tokens. |
19+
| `TokenSecret` | *string* | :heavy_minus_sign: | The token secret. Only present for OAuth 1.0 tokens. |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# OAuthAccessTokenObject
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------------------ | ------------------ |
8+
| `OauthAccessToken` | oauth_access_token |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CompleteAccountlessApplicationResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
8+
| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
9+
| `AccountlessApplication` | [AccountlessApplication](../../Models/Components/AccountlessApplication.md) | :heavy_minus_sign: | Success |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CreateAccountlessApplicationResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
8+
| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
9+
| `AccountlessApplication` | [AccountlessApplication](../../Models/Components/AccountlessApplication.md) | :heavy_minus_sign: | Success |

0 commit comments

Comments
 (0)