Skip to content

Commit 1a65cfe

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.9
Version: v1.22.9
1 parent da2a8ce commit 1a65cfe

641 files changed

Lines changed: 996 additions & 982 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: 23 additions & 9 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.8
42+
version: v1.22.9
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -4247,7 +4247,10 @@ paths:
42474247
- application/json
42484248
/projects/{project_id}/organizations:
42494249
get:
4250-
description: Lists all Enterprise SSO organizations in a project.
4250+
description: |-
4251+
Deprecated: use getProject instead
4252+
4253+
Lists all Enterprise SSO organizations in a project.
42514254
operationId: listOrganizations
42524255
parameters:
42534256
- description: |-
@@ -4337,7 +4340,10 @@ paths:
43374340
x-accepts:
43384341
- application/json
43394342
post:
4340-
description: Creates an Enterprise SSO Organization in a project.
4343+
description: |-
4344+
Deprecated: use setProject or patchProjectWithRevision instead
4345+
4346+
Creates an Enterprise SSO Organization in a project.
43414347
operationId: createOrganization
43424348
parameters:
43434349
- description: |-
@@ -4402,8 +4408,10 @@ paths:
44024408
- application/json
44034409
/projects/{project_id}/organizations/{organization_id}:
44044410
delete:
4405-
description: Irrecoverably deletes an Enterprise SSO Organization in a project
4406-
by its ID.
4411+
description: |-
4412+
Deprecated: use setProject or patchProjectWithRevision instead
4413+
4414+
Irrecoverably deletes an Enterprise SSO Organization in a project by its ID.
44074415
operationId: deleteOrganization
44084416
parameters:
44094417
- description: |-
@@ -4475,7 +4483,10 @@ paths:
44754483
x-accepts:
44764484
- application/json
44774485
get:
4478-
description: Retrieves an Enterprise SSO Organization for a project by its ID
4486+
description: |-
4487+
Deprecated: use getProject instead
4488+
4489+
Retrieves an Enterprise SSO Organization for a project by its ID
44794490
operationId: getOrganization
44804491
parameters:
44814492
- description: |-
@@ -4537,7 +4548,10 @@ paths:
45374548
x-accepts:
45384549
- application/json
45394550
put:
4540-
description: Updates an Enterprise SSO Organization in a project by its ID.
4551+
description: |-
4552+
Deprecated: use setProject or patchProjectWithRevision instead
4553+
4554+
Updates an Enterprise SSO Organization in a project by its ID.
45414555
operationId: updateOrganization
45424556
parameters:
45434557
- description: |-
@@ -6194,7 +6208,7 @@ paths:
61946208
schema:
61956209
type: string
61966210
style: form
6197-
- description: An optional identity schema to use for the registration flow.
6211+
- description: An optional identity schema to use for the login flow.
61986212
explode: true
61996213
in: query
62006214
name: identity_schema
@@ -6336,7 +6350,7 @@ paths:
63366350
schema:
63376351
type: string
63386352
style: form
6339-
- description: An optional identity schema to use for the registration flow.
6353+
- description: An optional identity schema to use for the login flow.
63406354
explode: true
63416355
in: query
63426356
name: identity_schema

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

docs/FrontendApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class Example {
6868
String loginChallenge = "loginChallenge_example"; // String | An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).
6969
String organization = "organization_example"; // String | An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
7070
String via = "via_example"; // String | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
71-
String identitySchema = "identitySchema_example"; // String | An optional identity schema to use for the registration flow.
71+
String identitySchema = "identitySchema_example"; // String | An optional identity schema to use for the login flow.
7272
try {
7373
LoginFlow result = apiInstance.createBrowserLoginFlow(refresh, aal, returnTo, cookie, loginChallenge, organization, via, identitySchema);
7474
System.out.println(result);
@@ -94,7 +94,7 @@ public class Example {
9494
| **loginChallenge** | **String**| An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`). | [optional] |
9595
| **organization** | **String**| An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. | [optional] |
9696
| **via** | **String**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional] |
97-
| **identitySchema** | **String**| An optional identity schema to use for the registration flow. | [optional] |
97+
| **identitySchema** | **String**| An optional identity schema to use for the login flow. | [optional] |
9898

9999
### Return type
100100

@@ -544,7 +544,7 @@ public class Example {
544544
String returnTo = "returnTo_example"; // String | The URL to return the browser to after the flow was completed.
545545
String organization = "organization_example"; // String | An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
546546
String via = "via_example"; // String | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
547-
String identitySchema = "identitySchema_example"; // String | An optional identity schema to use for the registration flow.
547+
String identitySchema = "identitySchema_example"; // String | An optional identity schema to use for the login flow.
548548
try {
549549
LoginFlow result = apiInstance.createNativeLoginFlow(refresh, aal, xSessionToken, returnSessionTokenExchangeCode, returnTo, organization, via, identitySchema);
550550
System.out.println(result);
@@ -570,7 +570,7 @@ public class Example {
570570
| **returnTo** | **String**| The URL to return the browser to after the flow was completed. | [optional] |
571571
| **organization** | **String**| An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. | [optional] |
572572
| **via** | **String**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional] |
573-
| **identitySchema** | **String**| An optional identity schema to use for the registration flow. | [optional] |
573+
| **identitySchema** | **String**| An optional identity schema to use for the login flow. | [optional] |
574574

575575
### Return type
576576

docs/ProjectApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ All URIs are relative to *https://playground.projects.oryapis.com*
3333
3434
Create an Enterprise SSO Organization
3535

36-
Creates an Enterprise SSO Organization in a project.
36+
Deprecated: use setProject or patchProjectWithRevision instead Creates an Enterprise SSO Organization in a project.
3737

3838
### Example
3939
```java
@@ -319,7 +319,7 @@ public class Example {
319319
320320
Delete Enterprise SSO Organization
321321

322-
Irrecoverably deletes an Enterprise SSO Organization in a project by its ID.
322+
Deprecated: use setProject or patchProjectWithRevision instead Irrecoverably deletes an Enterprise SSO Organization in a project by its ID.
323323

324324
### Example
325325
```java
@@ -534,7 +534,7 @@ null (empty response body)
534534
535535
Get Enterprise SSO Organization by ID
536536

537-
Retrieves an Enterprise SSO Organization for a project by its ID
537+
Deprecated: use getProject instead Retrieves an Enterprise SSO Organization for a project by its ID
538538

539539
### Example
540540
```java
@@ -819,7 +819,7 @@ public class Example {
819819
820820
List all Enterprise SSO organizations
821821

822-
Lists all Enterprise SSO organizations in a project.
822+
Deprecated: use getProject instead Lists all Enterprise SSO organizations in a project.
823823

824824
### Example
825825
```java
@@ -1395,7 +1395,7 @@ public class Example {
13951395
13961396
Update an Enterprise SSO Organization
13971397

1398-
Updates an Enterprise SSO Organization in a project by its ID.
1398+
Deprecated: use setProject or patchProjectWithRevision instead Updates an Enterprise SSO Organization in a project by its ID.
13991399

14001400
### Example
14011401
```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.8
5+
* The version of the OpenAPI document: v1.22.9
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.8
5+
* The version of the OpenAPI document: v1.22.9
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.8/java");
234+
setUserAgent("OpenAPI-Generator/v1.22.9/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.22.8
5+
* The version of the OpenAPI document: v1.22.9
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-10-31T10:50:14.309220497Z[Etc/UTC]", comments = "Generator version: 7.7.0")
24+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-11-12T13:32:53.986108099Z[Etc/UTC]", comments = "Generator version: 7.7.0")
2525
public class ApiException extends Exception {
2626
private static final long serialVersionUID = 1L;
2727

0 commit comments

Comments
 (0)