Skip to content

Commit 15c73b6

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.4
Version: v1.22.4
1 parent a58779d commit 15c73b6

639 files changed

Lines changed: 954 additions & 1004 deletions

File tree

Some content is hidden

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

api/openapi.yaml

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ info:
3939
url: https://www.apache.org/licenses/LICENSE-2.0.html
4040
termsOfService: /tos
4141
title: Ory APIs
42-
version: v1.22.3
42+
version: v1.22.4
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -3232,7 +3232,7 @@ paths:
32323232
post:
32333233
description: |-
32343234
This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows.
3235-
OAuth2 is a very popular protocol and a library for your programming language will exists.
3235+
OAuth2 is a very popular protocol and a library for your programming language will exist.
32363236

32373237
To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628
32383238
operationId: oAuth2DeviceFlow
@@ -3257,7 +3257,7 @@ paths:
32573257
/oauth2/device/verify:
32583258
get:
32593259
description: This is the device user verification endpoint. The user is redirected
3260-
here when trying to login using the device flow.
3260+
here when trying to log in using the device flow.
32613261
operationId: performOAuth2DeviceVerificationFlow
32623262
responses:
32633263
"302":
@@ -11622,10 +11622,6 @@ components:
1162211622
title: "StringSliceJSONFormat represents []string{} which is encoded to/from\
1162311623
\ JSON for SQL storage."
1162411624
type: array
11625-
handled_at:
11626-
format: date-time
11627-
title: NullTime implements sql.NullTime functionality.
11628-
type: string
1162911625
remember:
1163011626
description: |-
1163111627
Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same
@@ -11663,7 +11659,7 @@ components:
1166311659
acr:
1166411660
description: |-
1166511661
ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it
11666-
to express that, for example, a user authenticated using two factor authentication.
11662+
to express that, for example, a user authenticated using two-factor authentication.
1166711663
type: string
1166811664
amr:
1166911665
items:
@@ -11710,8 +11706,8 @@ components:
1171011706
type: string
1171111707
remember:
1171211708
description: |-
11713-
Remember, if set to true, tells ORY Hydra to remember this user by telling the user agent (browser) to store
11714-
a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, he/she
11709+
Remember, if set to true, tells Ory Hydra to remember this user by telling the user agent (browser) to store
11710+
a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, they
1171511711
will not be asked to log in again.
1171611712
type: boolean
1171711713
remember_for:
@@ -17108,15 +17104,6 @@ components:
1710817104
nullable: true
1710917105
type: string
1711017106
pkce:
17111-
description: |-
17112-
PKCE controls if the OpenID Connect OAuth2 flow should use PKCE (Proof Key for Code Exchange).
17113-
Possible values are: `auto` (default), `never`, `force`.
17114-
`auto`: PKCE is used if the provider supports it. Requires setting `issuer_url`.
17115-
`never`: Disable PKCE entirely for this provider, even if the provider advertises support for it.
17116-
`force`: Always use PKCE, even if the provider does not advertise support for it. OAuth2 flows will fail if the provider does not support PKCE.
17117-
IMPORTANT: If you set this to `force`, you must whitelist a different return URL for your OAuth2 client in the provider's configuration.
17118-
Instead of <base-url>/self-service/methods/oidc/callback/<provider>, you must use <base-url>/self-service/methods/oidc/callback
17119-
(Note the missing <provider> path segment and no trailing slash).
1712017107
enum:
1712117108
- auto
1712217109
- never

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'sh.ory'
7-
version = 'v1.22.3'
7+
version = 'v1.22.4'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "sh.ory",
44
name := "client",
5-
version := "v1.22.3",
5+
version := "v1.22.4",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AcceptOAuth2ConsentRequest.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
|**context** | **Object** | | [optional] |
1111
|**grantAccessTokenAudience** | **List&lt;String&gt;** | | [optional] |
1212
|**grantScope** | **List&lt;String&gt;** | | [optional] |
13-
|**handledAt** | **OffsetDateTime** | | [optional] |
1413
|**remember** | **Boolean** | Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope. | [optional] |
1514
|**rememberFor** | **Long** | RememberFor sets how long the consent authorization should be remembered for in seconds. If set to &#x60;0&#x60;, the authorization will be remembered indefinitely. | [optional] |
1615
|**session** | [**AcceptOAuth2ConsentRequestSession**](AcceptOAuth2ConsentRequestSession.md) | | [optional] |

docs/AcceptOAuth2LoginRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**acr** | **String** | ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two factor authentication. | [optional] |
10+
|**acr** | **String** | ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two-factor authentication. | [optional] |
1111
|**amr** | **List&lt;String&gt;** | | [optional] |
1212
|**context** | **Object** | | [optional] |
1313
|**extendSessionLifespan** | **Boolean** | Extend OAuth2 authentication session lifespan If set to &#x60;true&#x60;, the OAuth2 authentication cookie lifespan is extended. This is for example useful if you want the user to be able to use &#x60;prompt&#x3D;none&#x60; continuously. This value can only be set to &#x60;true&#x60; if the user has an authentication, which is the case if the &#x60;skip&#x60; value is &#x60;true&#x60;. | [optional] |
1414
|**forceSubjectIdentifier** | **String** | ForceSubjectIdentifier forces the \&quot;pairwise\&quot; user ID of the end-user that authenticated. The \&quot;pairwise\&quot; user ID refers to the (Pairwise Identifier Algorithm)[http://openid.net/specs/openid-connect-core-1_0.html#PairwiseAlg] of the OpenID Connect specification. It allows you to set an obfuscated subject (\&quot;user\&quot;) identifier that is unique to the client. Please note that this changes the user ID on endpoint /userinfo and sub claim of the ID Token. It does not change the sub claim in the OAuth 2.0 Introspection. Per default, ORY Hydra handles this value with its own algorithm. In case you want to set this yourself you can use this field. Please note that setting this field has no effect if &#x60;pairwise&#x60; is not configured in ORY Hydra or the OAuth 2.0 Client does not expect a pairwise identifier (set via &#x60;subject_type&#x60; key in the client&#39;s configuration). Please also be aware that ORY Hydra is unable to properly compute this value during authentication. This implies that you have to compute this value on every authentication process (probably depending on the client ID or some other unique value). If you fail to compute the proper value, then authentication processes which have id_token_hint set might fail. | [optional] |
1515
|**identityProviderSessionId** | **String** | IdentityProviderSessionID is the session ID of the end-user that authenticated. If specified, we will use this value to propagate the logout. | [optional] |
16-
|**remember** | **Boolean** | Remember, if set to true, tells ORY Hydra to remember this user by telling the user agent (browser) to store a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, he/she will not be asked to log in again. | [optional] |
16+
|**remember** | **Boolean** | Remember, if set to true, tells Ory Hydra to remember this user by telling the user agent (browser) to store a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, they will not be asked to log in again. | [optional] |
1717
|**rememberFor** | **Long** | RememberFor sets how long the authentication should be remembered for in seconds. If set to &#x60;0&#x60;, the authorization will be remembered for the duration of the browser session (using a session cookie). | [optional] |
1818
|**subject** | **String** | Subject is the user ID of the end-user that authenticated. | |
1919

docs/NormalizedProjectRevisionThirdPartyProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
|**mapperUrl** | **String** | Mapper specifies the JSONNet code snippet which uses the OpenID Connect Provider&#39;s data (e.g. GitHub or Google profile information) to hydrate the identity&#39;s data. | [optional] |
2525
|**netIdTokenOriginHeader** | **String** | | [optional] |
2626
|**organizationId** | **String** | | [optional] |
27-
|**pkce** | [**PkceEnum**](#PkceEnum) | PKCE controls if the OpenID Connect OAuth2 flow should use PKCE (Proof Key for Code Exchange). Possible values are: &#x60;auto&#x60; (default), &#x60;never&#x60;, &#x60;force&#x60;. &#x60;auto&#x60;: PKCE is used if the provider supports it. Requires setting &#x60;issuer_url&#x60;. &#x60;never&#x60;: Disable PKCE entirely for this provider, even if the provider advertises support for it. &#x60;force&#x60;: Always use PKCE, even if the provider does not advertise support for it. OAuth2 flows will fail if the provider does not support PKCE. IMPORTANT: If you set this to &#x60;force&#x60;, you must whitelist a different return URL for your OAuth2 client in the provider&#39;s configuration. Instead of &lt;base-url&gt;/self-service/methods/oidc/callback/&lt;provider&gt;, you must use &lt;base-url&gt;/self-service/methods/oidc/callback (Note the missing &lt;provider&gt; path segment and no trailing slash). | [optional] |
27+
|**pkce** | [**PkceEnum**](#PkceEnum) | | [optional] |
2828
|**projectRevisionId** | **String** | The Revision&#39;s ID this schema belongs to | [optional] |
2929
|**provider** | **String** | Provider is either \&quot;generic\&quot; for a generic OAuth 2.0 / OpenID Connect Provider or one of: generic google github gitlab microsoft discord slack facebook vk yandex apple | [optional] |
3030
|**providerId** | **String** | ID is the provider&#39;s ID | [optional] |

docs/OAuth2Api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ No authorization required
12831283
12841284
The OAuth 2.0 Device Authorize Endpoint
12851285

1286-
This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exists. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628
1286+
This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exist. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628
12871287

12881288
### Example
12891289
```java
@@ -1494,7 +1494,7 @@ public class Example {
14941494
14951495
OAuth 2.0 Device Verification Endpoint
14961496

1497-
This is the device user verification endpoint. The user is redirected here when trying to login using the device flow.
1497+
This is the device user verification endpoint. The user is redirected here when trying to log in using the device flow.
14981498

14991499
### Example
15001500
```java

src/main/java/sh/ory/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ory APIs
33
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
44
*
5-
* The version of the OpenAPI document: v1.22.3
5+
* The version of the OpenAPI document: v1.22.4
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/sh/ory/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ory APIs
33
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
44
*
5-
* The version of the OpenAPI document: v1.22.3
5+
* The version of the OpenAPI document: v1.22.4
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -231,7 +231,7 @@ private void init() {
231231
json = new JSON();
232232

233233
// Set default User-Agent.
234-
setUserAgent("OpenAPI-Generator/v1.22.3/java");
234+
setUserAgent("OpenAPI-Generator/v1.22.4/java");
235235

236236
authentications = new HashMap<String, Authentication>();
237237
}

0 commit comments

Comments
 (0)