Skip to content

Commit 474cd5a

Browse files
committed
autogen: regenerate OpenAPI client for v1.20.10
Version: v1.20.10
1 parent 99cffc0 commit 474cd5a

618 files changed

Lines changed: 1238 additions & 907 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: 39 additions & 1 deletion
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.20.9
42+
version: v1.20.10
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -8894,13 +8894,24 @@ components:
88948894
CreateProjectNormalizedPayload:
88958895
description: Create project (normalized) request payload
88968896
properties:
8897+
account_experience_default_locale:
8898+
description: Holds the default locale for the account experience.
8899+
type: string
88978900
account_experience_favicon_dark:
88988901
description: Holds the URL to the account experience's dark theme favicon
88998902
(currently unused).
89008903
type: string
89018904
account_experience_favicon_light:
89028905
description: Holds the URL to the account experience's favicon.
89038906
type: string
8907+
account_experience_locale_behavior:
8908+
description: |-
8909+
Holds the URL to the account experience's language behavior.
8910+
8911+
Can be one of:
8912+
`respect_accept_language`: Respect the `Accept-Language` header.
8913+
`force_default`: Force the default language.
8914+
type: string
89048915
account_experience_logo_dark:
89058916
description: Holds the URL to the account experience's dark theme logo (currently
89068917
unused).
@@ -11130,6 +11141,8 @@ components:
1113011141
type: object
1113111142
accountExperienceConfiguration:
1113211143
properties:
11144+
default_locale:
11145+
type: string
1113311146
default_redirect_url:
1113411147
type: string
1113511148
error_ui_url:
@@ -11138,6 +11151,18 @@ components:
1113811151
type: string
1113911152
favicon_light_url:
1114011153
type: string
11154+
locale_behavior:
11155+
description: |2-
11156+
11157+
force_default AccountExperienceLocaleBehaviorForceDefault
11158+
respect_accept_language AccountExperienceLocaleBehaviorRespectAcceptLanguage
11159+
enum:
11160+
- force_default
11161+
- respect_accept_language
11162+
type: string
11163+
x-go-enum-desc: |-
11164+
force_default AccountExperienceLocaleBehaviorForceDefault
11165+
respect_accept_language AccountExperienceLocaleBehaviorRespectAcceptLanguage
1114111166
login_ui_url:
1114211167
type: string
1114311168
logo_dark_url:
@@ -11163,8 +11188,10 @@ components:
1116311188
verification_ui_url:
1116411189
type: string
1116511190
required:
11191+
- default_locale
1116611192
- default_redirect_url
1116711193
- error_ui_url
11194+
- locale_behavior
1116811195
- login_ui_url
1116911196
- name
1117011197
- recovery_enabled
@@ -14656,13 +14683,24 @@ components:
1465614683
type: object
1465714684
normalizedProjectRevision:
1465814685
properties:
14686+
account_experience_default_locale:
14687+
description: Holds the default locale for the account experience.
14688+
type: string
1465914689
account_experience_favicon_dark:
1466014690
description: Holds the URL to the account experience's dark theme favicon
1466114691
(currently unused).
1466214692
type: string
1466314693
account_experience_favicon_light:
1466414694
description: Holds the URL to the account experience's favicon.
1466514695
type: string
14696+
account_experience_locale_behavior:
14697+
description: |-
14698+
Holds the URL to the account experience's language behavior.
14699+
14700+
Can be one of:
14701+
`respect_accept_language`: Respect the `Accept-Language` header.
14702+
`force_default`: Force the default language.
14703+
type: string
1466614704
account_experience_logo_dark:
1466714705
description: Holds the URL to the account experience's dark theme logo (currently
1466814706
unused).

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.20.9'
7+
version = 'v1.20.10'
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.20.9",
5+
version := "v1.20.10",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AccountExperienceConfiguration.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**defaultLocale** | **String** | | |
1011
|**defaultRedirectUrl** | **String** | | |
1112
|**errorUiUrl** | **String** | | |
1213
|**faviconDarkUrl** | **String** | | [optional] |
1314
|**faviconLightUrl** | **String** | | [optional] |
15+
|**localeBehavior** | [**LocaleBehaviorEnum**](#LocaleBehaviorEnum) | force_default AccountExperienceLocaleBehaviorForceDefault respect_accept_language AccountExperienceLocaleBehaviorRespectAcceptLanguage | |
1416
|**loginUiUrl** | **String** | | |
1517
|**logoDarkUrl** | **String** | | [optional] |
1618
|**logoLightUrl** | **String** | | [optional] |
@@ -26,3 +28,12 @@
2628

2729

2830

31+
## Enum: LocaleBehaviorEnum
32+
33+
| Name | Value |
34+
|---- | -----|
35+
| FORCE_DEFAULT | "force_default" |
36+
| RESPECT_ACCEPT_LANGUAGE | "respect_accept_language" |
37+
38+
39+

docs/CreateProjectNormalizedPayload.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ Create project (normalized) request payload
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11+
|**accountExperienceDefaultLocale** | **String** | Holds the default locale for the account experience. | [optional] |
1112
|**accountExperienceFaviconDark** | **String** | Holds the URL to the account experience's dark theme favicon (currently unused). | [optional] |
1213
|**accountExperienceFaviconLight** | **String** | Holds the URL to the account experience's favicon. | [optional] |
14+
|**accountExperienceLocaleBehavior** | **String** | Holds the URL to the account experience's language behavior. Can be one of: `respect_accept_language`: Respect the `Accept-Language` header. `force_default`: Force the default language. | [optional] |
1315
|**accountExperienceLogoDark** | **String** | Holds the URL to the account experience's dark theme logo (currently unused). | [optional] |
1416
|**accountExperienceLogoLight** | **String** | Holds the URL to the account experience's logo. | [optional] |
1517
|**accountExperienceThemeVariablesDark** | **String** | Holds the URL to the account experience's dark theme variables. | [optional] |

docs/NormalizedProjectRevision.md

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

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**accountExperienceDefaultLocale** | **String** | Holds the default locale for the account experience. | [optional] |
1011
|**accountExperienceFaviconDark** | **String** | Holds the URL to the account experience's dark theme favicon (currently unused). | [optional] |
1112
|**accountExperienceFaviconLight** | **String** | Holds the URL to the account experience's favicon. | [optional] |
13+
|**accountExperienceLocaleBehavior** | **String** | Holds the URL to the account experience's language behavior. Can be one of: `respect_accept_language`: Respect the `Accept-Language` header. `force_default`: Force the default language. | [optional] |
1214
|**accountExperienceLogoDark** | **String** | Holds the URL to the account experience's dark theme logo (currently unused). | [optional] |
1315
|**accountExperienceLogoLight** | **String** | Holds the URL to the account experience's logo. | [optional] |
1416
|**accountExperienceThemeVariablesDark** | **String** | Holds the URL to the account experience's dark theme variables. | [optional] |

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.20.9
5+
* The version of the OpenAPI document: v1.20.10
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.20.9
5+
* The version of the OpenAPI document: v1.20.10
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.20.9/java");
234+
setUserAgent("OpenAPI-Generator/v1.20.10/java");
235235

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

src/main/java/sh/ory/ApiException.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.20.9
5+
* The version of the OpenAPI document: v1.20.10
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,7 +21,7 @@
2121
* <p>ApiException class.</p>
2222
*/
2323
@SuppressWarnings("serial")
24-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-04-25T12:14:38.611699860Z[Etc/UTC]", comments = "Generator version: 7.7.0")
24+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-04-29T13:58:36.131201046Z[Etc/UTC]", comments = "Generator version: 7.7.0")
2525
public class ApiException extends Exception {
2626
private static final long serialVersionUID = 1L;
2727

src/main/java/sh/ory/ApiResponse.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.20.9
5+
* The version of the OpenAPI document: v1.20.10
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)