Skip to content

Commit 07f5be5

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.6
Version: v1.22.6
1 parent 213f481 commit 07f5be5

642 files changed

Lines changed: 1546 additions & 936 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.

.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ docs/RelationshipApi.md
219219
docs/RelationshipNamespaces.md
220220
docs/RelationshipPatch.md
221221
docs/Relationships.md
222+
docs/RevisionAccountExperienceCustomTranslation.md
222223
docs/SchemaPatch.md
223224
docs/SelfServiceFlowExpiredError.md
224225
docs/Session.md
@@ -558,6 +559,7 @@ src/main/java/sh/ory/model/Relationship.java
558559
src/main/java/sh/ory/model/RelationshipNamespaces.java
559560
src/main/java/sh/ory/model/RelationshipPatch.java
560561
src/main/java/sh/ory/model/Relationships.java
562+
src/main/java/sh/ory/model/RevisionAccountExperienceCustomTranslation.java
561563
src/main/java/sh/ory/model/SchemaPatch.java
562564
src/main/java/sh/ory/model/SelfServiceFlowExpiredError.java
563565
src/main/java/sh/ory/model/Session.java
@@ -864,6 +866,7 @@ src/test/java/sh/ory/model/RelationshipNamespacesTest.java
864866
src/test/java/sh/ory/model/RelationshipPatchTest.java
865867
src/test/java/sh/ory/model/RelationshipTest.java
866868
src/test/java/sh/ory/model/RelationshipsTest.java
869+
src/test/java/sh/ory/model/RevisionAccountExperienceCustomTranslationTest.java
867870
src/test/java/sh/ory/model/SchemaPatchTest.java
868871
src/test/java/sh/ory/model/SelfServiceFlowExpiredErrorTest.java
869872
src/test/java/sh/ory/model/SessionActivityDatapointTest.java

api/openapi.yaml

Lines changed: 34 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.22.5
42+
version: v1.22.6
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -9367,6 +9367,14 @@ components:
93679367
CreateProjectNormalizedPayload:
93689368
description: Create project (normalized) request payload
93699369
properties:
9370+
account_experience_custom_translations:
9371+
description: |-
9372+
The Account Experience's Custom Translations
9373+
9374+
Contains all Custom Translations for this project.
9375+
items:
9376+
$ref: '#/components/schemas/RevisionAccountExperienceCustomTranslation'
9377+
type: array
93709378
account_experience_default_locale:
93719379
description: Holds the default locale for the account experience.
93729380
type: string
@@ -11466,6 +11474,18 @@ components:
1146611474
title: RecoveryAddressType must not exceed 16 characters as that is the limitation
1146711475
in the SQL Schema.
1146811476
type: string
11477+
RevisionAccountExperienceCustomTranslation:
11478+
properties:
11479+
locale:
11480+
description: "The locale (e.g. \"en\", \"de\")"
11481+
type: string
11482+
translations:
11483+
description: The URL where the i18n json can be found
11484+
type: string
11485+
required:
11486+
- locale
11487+
- translations
11488+
type: object
1146911489
SessionActivityDatapoint:
1147011490
properties:
1147111491
country:
@@ -11767,6 +11787,10 @@ components:
1176711787
type: string
1176811788
stylesheet:
1176911789
type: string
11790+
translations:
11791+
items:
11792+
$ref: '#/components/schemas/RevisionAccountExperienceCustomTranslation'
11793+
type: array
1177011794
verification_enabled:
1177111795
type: boolean
1177211796
verification_ui_url:
@@ -11783,6 +11807,7 @@ components:
1178311807
- registration_enabled
1178411808
- registration_ui_url
1178511809
- settings_ui_url
11810+
- translations
1178611811
- verification_enabled
1178711812
- verification_ui_url
1178811813
type: object
@@ -15276,6 +15301,14 @@ components:
1527615301
type: object
1527715302
normalizedProjectRevision:
1527815303
properties:
15304+
account_experience_custom_translations:
15305+
description: |-
15306+
The Account Experience's Custom Translations
15307+
15308+
Contains all Custom Translations for this project.
15309+
items:
15310+
$ref: '#/components/schemas/RevisionAccountExperienceCustomTranslation'
15311+
type: array
1527915312
account_experience_default_locale:
1528015313
description: Holds the default locale for the account experience.
1528115314
type: string

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

docs/AccountExperienceConfiguration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
|**registrationUiUrl** | **String** | | |
2424
|**settingsUiUrl** | **String** | | |
2525
|**stylesheet** | **String** | | [optional] |
26+
|**translations** | [**List<RevisionAccountExperienceCustomTranslation>**](RevisionAccountExperienceCustomTranslation.md) | | |
2627
|**verificationEnabled** | **Boolean** | | |
2728
|**verificationUiUrl** | **String** | | |
2829

docs/CreateProjectNormalizedPayload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Create project (normalized) request payload
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11+
|**accountExperienceCustomTranslations** | [**List<RevisionAccountExperienceCustomTranslation>**](RevisionAccountExperienceCustomTranslation.md) | The Account Experience's Custom Translations Contains all Custom Translations for this project. | [optional] |
1112
|**accountExperienceDefaultLocale** | **String** | Holds the default locale for the account experience. | [optional] |
1213
|**accountExperienceFaviconDark** | **String** | Holds the URL to the account experience's dark theme favicon (currently unused). | [optional] |
1314
|**accountExperienceFaviconLight** | **String** | Holds the URL to the account experience's favicon. | [optional] |

docs/NormalizedProjectRevision.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**accountExperienceCustomTranslations** | [**List<RevisionAccountExperienceCustomTranslation>**](RevisionAccountExperienceCustomTranslation.md) | The Account Experience's Custom Translations Contains all Custom Translations for this project. | [optional] |
1011
|**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] |
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# RevisionAccountExperienceCustomTranslation
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**locale** | **String** | The locale (e.g. \"en\", \"de\") | |
11+
|**translations** | **String** | The URL where the i18n json can be found | |
12+
13+
14+

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

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

0 commit comments

Comments
 (0)